File tree 5 files changed +8
-3
lines changed
workbench/__tests__/__snapshots__
5 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 6
6
"menubar" : " 菜单栏" ,
7
7
"menu.file" : " 文件" ,
8
8
"menu.settings" : " 设置" ,
9
+ "menu.account" : " 账号" ,
9
10
"menu.colorTheme" : " 颜色主题" ,
10
11
"menu.newFile" : " 新建文件" ,
11
12
"menu.newFolder" : " 新建文件夹" ,
Original file line number Diff line number Diff line change @@ -54,12 +54,14 @@ export function builtInActivityBar(): IActivityBar {
54
54
{
55
55
id : ACTIVITY_BAR_GLOBAL_ACCOUNT ,
56
56
name : localize ( 'menu.account' , 'Account' ) ,
57
+ title : localize ( 'menu.account' , 'Account' ) ,
57
58
icon : 'account' ,
58
59
type : 'global' ,
59
60
} ,
60
61
{
61
62
id : ACTIVITY_BAR_GLOBAL_SETTINGS ,
62
- name : localize ( 'menu.colorTheme' , 'Color Theme' ) ,
63
+ name : localize ( 'menu.settings' , 'Settings' ) ,
64
+ title : localize ( 'menu.settings' , 'Settings' ) ,
63
65
icon : 'settings-gear' ,
64
66
type : 'global' ,
65
67
contextMenu : [
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ export function builtInExplorerActivityItem() {
60
60
id : EXPLORER_ACTIVITY_ITEM ,
61
61
name : localize ( EXPLORER_ACTIVITY_ITEM , 'Explore' ) ,
62
62
icon : 'files' ,
63
+ title : localize ( EXPLORER_ACTIVITY_ITEM , 'Explore' ) ,
63
64
} ;
64
65
}
65
66
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ export function builtInSearchActivityItem() {
41
41
return {
42
42
id : SEARCH_ACTIVITY_ITEM ,
43
43
name : localize ( SEARCH_ACTIVITY_ITEM , 'Search' ) ,
44
+ title : localize ( SEARCH_ACTIVITY_ITEM , 'Search' ) ,
44
45
icon : 'search' ,
45
46
} ;
46
47
}
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ exports[`Test Workbench Component Match The WorkbenchView snapshot 1`] = `
41
41
>
42
42
<span
43
43
class = " mo-activityBar__label codicon codicon-files"
44
- title = " "
44
+ title = " 浏览 "
45
45
/>
46
46
<div
47
47
class = " mo-activityBar__indicator"
@@ -53,7 +53,7 @@ exports[`Test Workbench Component Match The WorkbenchView snapshot 1`] = `
53
53
>
54
54
<span
55
55
class = " mo-activityBar__label codicon codicon-search"
56
- title = " "
56
+ title = " 搜索 "
57
57
/>
58
58
</li >
59
59
</ul >
You can’t perform that action at this time.
0 commit comments