Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/core/i18n/nls.zh-cn.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
"data": "数据",
"decimal": "十进制",
"diff": {
"label": "扩散{0}"
"label": "扩散: {0}"
},
"diff-widget": {
"offset-label": "{0} 偏移",
Expand Down Expand Up @@ -457,10 +457,10 @@
"typeHierarchy": "类型层次结构"
},
"vsx-registry": {
"averageRating": "平均评分:{0} (满分5分",
"downloadCount": "下载次数{0}",
"averageRating": "平均评分: {0} (满分5分)",
"downloadCount": "下载次数: {0}",
"errorFetching": "取出扩展程序时出错。",
"license": "许可证{0}",
"license": "许可证: {0}",
"recommendedExtensions": "建议在该工作区使用的扩展名称的列表。",
"searchPlaceholder": "在{0}中搜索扩展",
"showRecommendedExtensions": "控制是否显示扩展建议的通知。",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ export class VSXExtensionsContribution extends AbstractViewContribution<VSXExten
super.registerMenus(menus);
menus.registerMenuAction(VSXExtensionsContextMenu.COPY, {
commandId: VSXExtensionsCommands.COPY.id,
label: 'Copy',
label: nls.localizeByDefault('Copy'),
order: '0'
});
menus.registerMenuAction(VSXExtensionsContextMenu.COPY, {
commandId: VSXExtensionsCommands.COPY_EXTENSION_ID.id,
label: 'Copy Extension Id',
label: nls.localizeByDefault('Copy Extension Id'),
order: '1'
});
menus.registerMenuAction(VSXExtensionsContextMenu.INSTALL, {
Expand Down