feat(UserPanel): Add "My workshop" link to UserPanelPop.vue (#680)

* feat(userpanel): Add "我的工房" link to UserPanelPop.vue

In UserPanelPop.vue, I added a new menu item to the 'otherLinks' array for quick access to the "My Workshop(我的工房)" page. The new item is:

{ name: t('topbar.user_dropdown.workshop'), url: 'https://gf.bilibili.com?msource=main_station' }

This update enhances the user experience by providing a direct link to the user's workshop from the user dropdown menu.

I believe many creators will use the "My Workshop(我的工房)" option, which can help them quickly jump to their own workshop(B站工房) page to handle some user orders.

* Update cmn-TW.yml

* Update jyut.yml

---------

Co-authored-by: Hakadao <a578457889743@gmail.com>
This commit is contained in:
Karasukaigan
2024-04-27 18:26:50 +08:00
committed by GitHub
parent 39d6d9a91d
commit 825794fb26
5 changed files with 5 additions and 0 deletions

View File

@@ -240,6 +240,7 @@ topbar:
uploads_manager: 投稿管理
b_coins_wallet: B币钱包
orders: 订单中心
workshop: 我的工房
my_stream_info: 直播中心
my_courses: 我的课程
log_out: 退出登录

View File

@@ -243,6 +243,7 @@ topbar:
uploads_manager: 內容管理
b_coins_wallet: B幣錢包
orders: 訂單資訊
workshop: 我的工作坊
my_stream_info: 實況資訊
my_courses: 我的課程
log_out: 退出登入

View File

@@ -241,6 +241,7 @@ topbar:
uploads_manager: Uploads manager
b_coins_wallet: B-coins Wallet
orders: Orders
workshop: My workshop
my_stream_info: My stream info
my_courses: My courses
log_out: Log out

View File

@@ -243,6 +243,7 @@ topbar:
uploads_manager: 內容管理
b_coins_wallet: B銀荷包
orders: 訂單資訊
workshop: 我嘅工作坊
my_stream_info: 實況資訊
my_courses: 我嘅課程
log_out: 登出

View File

@@ -22,6 +22,7 @@ const otherLinks = computed((): { name: string, url: string }[] => {
{ name: t('topbar.user_dropdown.uploads_manager'), url: 'https://member.bilibili.com/v2#/upload-manager/article' },
{ name: t('topbar.user_dropdown.b_coins_wallet'), url: 'https://pay.bilibili.com/' },
{ name: t('topbar.user_dropdown.orders'), url: 'https://show.bilibili.com/orderlist' },
{ name: t('topbar.user_dropdown.workshop'), url: 'https://gf.bilibili.com?msource=main_station' },
{ name: t('topbar.user_dropdown.my_stream_info'), url: 'https://link.bilibili.com/p/center/index' },
{ name: t('topbar.user_dropdown.my_courses'), url: 'https://www.bilibili.com/cheese/mine/list' },
]