-
Notifications
You must be signed in to change notification settings - Fork 5
Translation sync to add Polish #36
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
Conversation
@@ -158,6 +158,8 @@ async function loadStringsFromJsonFile(locale: string): Promise<StringLookupMap | |||
return (await import(/* webpackChunkName: "ja" */ './simplified.nls.ja.json')).default; | |||
case 'ko': | |||
return (await import(/* webpackChunkName: "ko" */ './simplified.nls.ko.json')).default; | |||
case 'pl': | |||
return (await import(/* webpackChunkName: "nl" */ './simplified.nls.pl.json')).default; |
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.
return (await import(/* webpackChunkName: "nl" */ './simplified.nls.pl.json')).default; | |
return (await import(/* webpackChunkName: "pl" */ './simplified.nls.pl.json')).default; |
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.
Well that would have been unfortunate! I was completely convinced by seeing the language change from English...
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.
Oh, I see it likely makes no difference...
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.
1fc5f9b
and updated in the editor PR too
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.
Looks like they just get bundled together?
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.
One minor change to fix the webpack chunk name. Otherwise, this looks good.
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.
LGTM.
No description provided.