-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from l1shen/fix-locale-file-name
chore: fix i18n file name
- Loading branch information
Showing
3 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
export const localizationBundle = { | ||
languageId: 'zh-CN', | ||
languageName: 'Chinese', | ||
localizedLanguageName: '中文(中国)', | ||
languageId: 'en-US', | ||
languageName: 'English', | ||
localizedLanguageName: 'English', | ||
contents: { | ||
'common.about': '关于', | ||
'common.preferences': '首选项', | ||
'common.about': 'About', | ||
'common.preferences': 'Preferences', | ||
|
||
'custom.quick_open': '转到文件', | ||
'custom.command_palette': '显示所有命令', | ||
'custom.terminal_panel': '切换终端', | ||
'custom.search_panel': '切换搜索面板', | ||
'custom.quick_open': 'Quick Open', | ||
'custom.command_palette': 'Command Palette', | ||
'custom.terminal_panel': 'Switch to Terminal Panel', | ||
'custom.search_panel': 'Switch to Search Panel', | ||
}, | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
export const localizationBundle = { | ||
languageId: 'en-US', | ||
languageName: 'English', | ||
localizedLanguageName: 'English', | ||
languageId: 'zh-CN', | ||
languageName: 'Chinese', | ||
localizedLanguageName: '中文(中国)', | ||
contents: { | ||
'common.about': 'About', | ||
'common.preferences': 'Preferences', | ||
'common.about': '关于', | ||
'common.preferences': '首选项', | ||
|
||
'custom.quick_open': 'Quick Open', | ||
'custom.command_palette': 'Command Palette', | ||
'custom.terminal_panel': 'Switch to Terminal Panel', | ||
'custom.search_panel': 'Switch to Search Panel', | ||
'custom.quick_open': '转到文件', | ||
'custom.command_palette': '显示所有命令', | ||
'custom.terminal_panel': '切换终端', | ||
'custom.search_panel': '切换搜索面板', | ||
}, | ||
} | ||
}; |