Move to smartling for translation services

This commit is contained in:
Scott Nonnenberg 2022-09-27 14:01:06 -07:00 committed by GitHub
parent 620067342a
commit 5957c111cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
73 changed files with 1394 additions and 64465 deletions

View file

@ -196,7 +196,7 @@ const PLATFORMS = [
];
describe('createTemplate', () => {
const { messages } = loadLocale({
const { i18n } = loadLocale({
appLocale: 'en',
logger: {
error(arg: unknown) {
@ -237,7 +237,7 @@ describe('createTemplate', () => {
...actions,
};
const actual = createTemplate(options, messages);
const actual = createTemplate(options, i18n);
assert.deepEqual(actual, expectedDefault);
});
@ -265,7 +265,7 @@ describe('createTemplate', () => {
return menuItem;
});
const actual = createTemplate(options, messages);
const actual = createTemplate(options, i18n);
assert.deepEqual(actual, expected);
});
});