24
1
Fork 0

Merge pull request #1290 from mozilla/call-setTranslate-on-android

Call setTranslate on android.
This commit is contained in:
Danny Coates 2019-04-04 11:55:55 -07:00 committed by GitHub
commit 373da3f090
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,8 @@ import share from './pages/share';
import preferences from './pages/preferences';
import error from './pages/error';
import { getTranslator } from '../app/locale';
import { setTranslate } from '../app/utils';
import { delay } from '../app/utils';
if (navigator.userAgent === 'Send Android') {
@ -69,6 +71,7 @@ function body(main) {
}
(async function start() {
const translate = await getTranslator('en-US');
setTranslate(translate);
const { LIMITS, DEFAULTS } = await getConstants();
app.use(state => {
state.LIMITS = LIMITS;