kin: auto-commit after pipeline
This commit is contained in:
parent
12fed3e31f
commit
49ea6542b8
8 changed files with 720 additions and 35 deletions
|
|
@ -2,7 +2,9 @@ import { createI18n } from 'vue-i18n'
|
|||
import ru from './locales/ru.json'
|
||||
import en from './locales/en.json'
|
||||
|
||||
const savedLocale = localStorage.getItem('kin-locale') || 'ru'
|
||||
const savedLocale = (typeof localStorage !== 'undefined' && typeof localStorage.getItem === 'function'
|
||||
? localStorage.getItem('kin-locale')
|
||||
: null) || 'en'
|
||||
|
||||
export const i18n = createI18n({
|
||||
legacy: false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue