This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/vue-cli-plugin-vuetify/util/locales.js

41 lines
731 B
JavaScript

const LOCALE_MAP = {
af: 'Afrikaans',
ar: 'Arabic',
ca: 'Catalan',
de: 'German',
es: 'Spanish',
en: 'English',
et: 'Estonian',
fa: 'Farsi',
gr: 'Greek',
fr: 'French',
hr: 'Croatian',
he: 'Hebrew',
hu: 'Hungary',
it: 'Italy',
id: "Indonesian",
ja: 'Japanese',
ko: 'Korean',
lv: 'Latvian',
nl: 'Dutch',
no: 'Norwegian',
pl: 'Polish',
pt: 'Portuguese',
ru: 'Russian',
ro: 'Romanian',
sl: 'Slovenian',
'sr-Cyrl': 'Serbian (cyrillic)',
th: 'Thai',
tr: 'Turkish',
uk: 'Ukrainian',
'zh-Hans': 'Chinese (simplified)',
'zh-Hant': 'Chinese (traditional)'
}
module.exports = Object.keys(LOCALE_MAP).map(key => {
return {
name: LOCALE_MAP[key],
value: key
}
}).sort()