Merge pull request #1015 from Bilb/fix-default-spell-check-dic

default to en_US if locale dictionnary is not found
pull/1018/head
Audric Ackermann 5 years ago committed by GitHub
commit e58e2a4b54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -64,7 +64,7 @@ function setupLinux(locale) {
window.log.info('Detected Linux. Using default en_US spell check dictionary');
return new Typo(locale);
return new Typo('en_US');
}
// We load locale this way and not via app.getLocale() because this call returns

Loading…
Cancel
Save