Skip to content

Commit

Permalink
fix: zh cn localization (#11629)
Browse files Browse the repository at this point in the history
  • Loading branch information
yiliang114 authored Sep 27, 2022
1 parent c091f25 commit 22a5f7e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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 @@ -460,10 +460,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

0 comments on commit 22a5f7e

Please sign in to comment.