Skip to content

fix missing i18n messages in IDE menu #2215

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

Closed
wants to merge 2 commits into from
Closed
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
102 changes: 102 additions & 0 deletions i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -540,5 +540,107 @@
"invalidExtension": ".{0} is not a valid extension",
"newFileName": "New name for file"
}
},
"vscode": {
"abstractTree": {
"clear": "Clear"
},
"bulkEditService": {
"quit": "Quit"
},
"date": {
"date.fromNow.days.plural.ago": "{0} days ago",
"date.fromNow.days.singular.ago": "{0} day ago",
"date.fromNow.hours.plural.ago": "{0} hours ago",
"date.fromNow.hours.singular.ago": "{0} hour ago",
"date.fromNow.minutes.plural.ago": "{0} minutes ago",
"date.fromNow.minutes.singular.ago": "{0} minute ago",
"date.fromNow.months.plural.ago": "{0} months ago",
"date.fromNow.months.singular.ago": "{0} month ago",
"date.fromNow.weeks.plural.ago": "{0} weeks ago",
"date.fromNow.weeks.singular.ago": "{0} week ago",
"date.fromNow.years.plural.ago": "{0} years ago",
"date.fromNow.years.singular.ago": "{0} year ago"
},
"debug.contribution": {
"startDebuggingHelp": "Start Debugging"
},
"dialog": {
"dialogErrorMessage": "Error"
},
"editor.contribution": {
"close": "Close"
},
"editorStatus": {
"status.editor.mode": "Language"
},
"extensionsActions": {
"reloadRequired": "Reload required"
},
"extensionsUtils": {
"no": "No",
"yes": "Yes"
},
"fileActions": {
"delete": "Delete",
"rename": "Rename"
},
"fileActions.contribution": {
"miAutoSave": "Auto save"
},
"fileCommands": {
"save": "Save"
},
"findController": {
"findNextMatchAction": "Find Next",
"findPreviousMatchAction": "Find Previous",
"startFindAction": "Find",
"startFindWithSelectionAction": "Use Selection for Find"
},
"helpActions": {
"miKeyboardShortcuts": "Keyboard Shortcuts"
},
"issueMainService": {
"cancel": "Cancel",
"ok": "OK"
},
"menubar": {
"mNewTab": "New Tab",
"mShowNextTab": "Next Tab",
"mShowPreviousTab": "Previous Tab"
},
"notificationsCenter": {
"notifications": "NOTIFICATIONS",
"notificationsEmpty": "NO NEW NOTIFICATIONS"
},
"notificationsCommands": {
"clearAllNotifications": "Clear All"
},
"notificationsStatus": {
"hideNotifications": "Hide Notification Center"
},
"output.contribution": {
"clearOutput.label": "Clear Output",
"toggleAutoScroll": "Toggle Autoscroll"
},
"preferences.contribution": {
"openSettings2": "Open Preferences",
"preferences": "Preferences"
},
"settingsTree": {
"settings": "Settings"
},
"standaloneStrings": {
"gotoLineActionLabel": "Go to Line..."
},
"textInputActions": {
"copy": "Copy"
},
"themes.contribution": {
"selectTheme.label": "Theme"
},
"workspaceActions": {
"openFileFolder": "Open..."
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"test": "lerna run test",
"test:slow": "lerna run test:slow",
"update:version": "node ./scripts/update-version.js",
"i18n:generate": "theia nls-extract -e vscode -f \"+(arduino-ide-extension|electron-app|plugins)/**/*.ts?(x)\" -o ./i18n/en.json",
"i18n:generate": "theia nls-extract -f \"+(arduino-ide-extension|electron-app|plugins)/**/*.ts?(x)\" -o ./i18n/en.json",
"i18n:check": "yarn i18n:generate && git add -N ./i18n && git diff --exit-code ./i18n",
"i18n:push": "node ./scripts/i18n/transifex-push.js ./i18n/en.json",
"i18n:pull": "node ./scripts/i18n/transifex-pull.js ./i18n/",
Expand Down