-
Notifications
You must be signed in to change notification settings - Fork 392
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
port localization to stable #2962
Conversation
ace0f0f
to
41191d9
Compare
41191d9
to
1a8e6a5
Compare
@@ -36,6 +36,12 @@ try { | |||
Remove-Item -Path "$stableDirectory\src\*" -Filter "*.ts" | |||
Copy-Item -Path "$insidersDirectory\src\*" -Destination "$stableDirectory\src\" -Filter "*.ts" | |||
|
|||
# copy localization files |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quick question: So if we have this in the script, do we still need the package.nls.*.json files below? Looks like they exist here: https://github.com/dotnet/interactive/tree/main/src/polyglot-notebooks-vscode-insiders
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
package.nls.*.json should override the existing ones to keep in sync with the ones in insiders
@@ -841,6 +841,6 @@ | |||
"vscode-oniguruma": "1.6.1", | |||
"vscode-textmate": "6.0.0", | |||
"vscode-uri": "3.0.6", | |||
"@vscode/l10n": "^0.0.10" | |||
"@vscode/l10n": "0.0.10" | |||
} | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"l10n": "./l10n" needs to be added to package.json like in insiders in order to recognize the strings in l10n\bungle.l10n.json
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cc: @AbhitejJohn
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the release branch has that change already
No description provided.