Translation for strings in @Theia/* packages #11356
Unanswered
arunswarnam
asked this question in
Improvements
Replies: 1 comment 3 replies
-
@arunswarnam thank you for the discussion:
For other items (theia-specific translations that are not supported in packs) there is a hierarchy: ...
"theia": {
"callhierarchy": {
"open": "Open Call Hierarchy"
},
...
} 2, theia/packages/workspace/src/browser/workspace-commands.ts Lines 97 to 101 in c9b9b43 |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I have a use case where I am interested in providing translations for all user facing strings including the ones that are coming from @Theia scoped packages. Until version @theia/1.19.0 I was able to use the @theia/cli command
yarn extract --output ../output.json --root ../node_modules/@theia/ --logs ../log.txt --files "**/*.tsx" --files "**/*.ts"
which nicely extracted and placed all the strings into output.json but with @theia/1.26.0 I am noticing change in the behavior of the command:@Theia : 1.19.0
@Theia 1.26.0
output.txt
strings with key vscode/fileActions/newFolder seem to be missing in 1.26.0.output_theia1.19.0.txt
output_theia1.26.0.txt
This will prevent us from bringing our own translations.
Beta Was this translation helpful? Give feedback.
All reactions