OCD use single quotes for `defaultLocale`

This commit is contained in:
Matthew Riley MacPherson 2014-07-31 13:13:16 -04:00
Родитель fa7e1b0323
Коммит 1743514448
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,6 @@
// If fallbacks is set to `true`, this is the language that will be used if
// the current language has no available translation.
I18n.defaultLocale = "en-US";
I18n.defaultLocale = 'en-US';
I18n.locale = window.navigator.language || 'en-US';
// Set to false to show missing translations.
I18n.fallbacks = true;