Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added support for zh-CN #871

Merged
merged 6 commits into from
Apr 22, 2017
Merged
Changes from 1 commit
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
43 changes: 43 additions & 0 deletions src/i18n/langResources/lang.zhCN.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import { ILangResource } from '../../models/i18n';

export const langzhCN: ILangResource = {
newVersion: '欢迎使用最新版本的 vscode-icons.',
seeReleaseNotes: '关于最新版本的改动',
dontShowThis: '下次不再显示这条消息',
seeReadme: '查看插件的文档',
welcomeBegin: 'vscode-icons 现在支持官方API,去',
welcomeEnd: 'VSCode图标里面点击使用',
activationPath: {
darwin: '代码 > 首选项 > 文件图标主题',
linux: '文件 > 首选项 > 文件图标主题',
win32: '文件 > 首选项 > 文件图标主题',
},
aboutOfficialApi: '查看更多关于文件和文件夹的图标',
learnMore: '想要了解更多消息?',
urlReleaseNote: 'https://github.com/robertohuertasm/vscode-icons/blob/master/CHANGELOG.md',
urlReadme: 'https://github.com/robertohuertasm/vscode-icons/blob/master/README.md',
urlOfficialApi: 'http://code.visualstudio.com/docs/customization/themes#_select-an-icon-theme',
reload: '重启',
autoReload: '自动重启',
disableDetect: '取消自动检测',
iconCustomization: '重新生成图标',
iconRestore: '图标正在被复原',
ngPresetEnabled: '使用Angular的图标',
ngPresetDisabled: '取消使用Angular的图标',
jsOfficialPresetEnabled: '使用官方JS图标',
jsOfficialPresetDisabled: '取消使用官方JS图标',
tsOfficialPresetEnabled: '使用官方TS图标',
tsOfficialPresetDisabled: '取消使用官方TS图标',
jsonOfficialPresetEnabled: '使用官方JSON图标',
jsonOfficialPresetDisabled: '取消使用官方JSON图标',
hideFoldersPresetEnabled: '现在使用文件夹图标',
hideFoldersPresetDisabled: '现在隐藏文件夹图标',
foldersAllDefaultIconPresetEnabled: '现在使用指定的文件夹图标',
foldersAllDefaultIconPresetDisabled: '现在取消使用指定的文件夹图标',
restart: '选择 \'重启\' 使改变生效',
ngDetected: 'vscode-icons 发现当前工程是Angular' +
'选择 \'重启\' 使用Angular的图标',
nonNgDetected: 'vscode-icons 发现当前工程不是Angular' +
'选择 \'重启\' 取消使用Angular的图标',
projectDetecticonReset: '重设自动检测工程文件到默认设置',
};