Closed TylerLeonhardt closed 10 months ago
This is now done. fixed in https://github.com/microsoft/vscode-l10n/pull/146
One thing I wanted to call out is that this required another fix to our engineering system as we have our translated strings in a git repo and when that repo was checked out along side of the extension code, we were using a Windows machine which did autocrlf
... causing the LFs to be checked out as CRLFs... this is fixed by running:
git config --global core.autocrlf input
in our pipeline before checking out the translated strings causing them to be checked out as LF.
verification:
/help
in chatjust look at "to have a great conversation"
Take a look at this big "To have a great conversation" string... that uses newlines in it and in the bundle, they are
\r\n
but on non-Windows we'll be asking for\n
... so we need to normalize these newlines.