diff --git a/package-lock.json b/package-lock.json index 1bdcb228867..c64871a087e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,7 +24,7 @@ "immutable": "3.8.2", "scratch-parser": "github:TurboWarp/scratch-parser#master", "scratch-sb1-converter": "0.2.7", - "scratch-translate-extension-languages": "0.0.20191118205314", + "scratch-translate-extension-languages": "^1.0.7", "text-encoding": "0.7.0", "uuid": "8.3.2", "worker-loader": "^1.1.1" @@ -13782,9 +13782,10 @@ } }, "node_modules/scratch-translate-extension-languages": { - "version": "0.0.20191118205314", - "resolved": "https://registry.npmjs.org/scratch-translate-extension-languages/-/scratch-translate-extension-languages-0.0.20191118205314.tgz", - "integrity": "sha512-r0lvpgQjPMjbhI2wROrgoXzBhCvWJdkbAqJMfl2CdNqrwBpUXqLvNNtI3VtNLPJAcp9VfxEylkU9lVZ0gvU46Q==" + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/scratch-translate-extension-languages/-/scratch-translate-extension-languages-1.0.7.tgz", + "integrity": "sha512-6+bQU9iVYv23T8J0SjpV6MTugm0y8myh/4DPgu1BGfccysdkaWzu3MkNGQyQRUlbqAiW9wM7ctfv3USPEkzTgg==", + "license": "BSD-3-Clause" }, "node_modules/script-loader": { "version": "0.7.2", diff --git a/package.json b/package.json index 2c841260adb..c126de34260 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "immutable": "3.8.2", "scratch-parser": "github:TurboWarp/scratch-parser#master", "scratch-sb1-converter": "0.2.7", - "scratch-translate-extension-languages": "0.0.20191118205314", + "scratch-translate-extension-languages": "^1.0.7", "text-encoding": "0.7.0", "uuid": "8.3.2", "worker-loader": "^1.1.1" diff --git a/test/unit/extension_text_to_speech.js b/test/unit/extension_text_to_speech.js index a6fd9dbfa61..83c065493c1 100644 --- a/test/unit/extension_text_to_speech.js +++ b/test/unit/extension_text_to_speech.js @@ -39,6 +39,6 @@ test('use localized spoken language name in place of localized written language ext.getEditorLanguage = () => 'es'; const languageMenu = ext.getLanguageMenu(); const localizedNameForChineseInSpanish = languageMenu.find(el => el.value === 'zh-cn').text; - t.strictEqual(localizedNameForChineseInSpanish, 'Chino (MandarĂ­n)'); // i.e. should not be 'Chino (simplificado)' + t.strictEqual(localizedNameForChineseInSpanish, 'Chino (mandarĂ­n)'); // i.e. should not be 'Chino (simplificado)' t.end(); });