first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
// https://support.freshservice.com/support/solutions/articles/232303-list-of-languages-supported-in-freshservice
|
||||
|
||||
const RAW_LANGUAGES: { [key: string]: string } = {
|
||||
en: 'English',
|
||||
ar: 'Arabic',
|
||||
ca: 'Catalan',
|
||||
cs: 'Czech',
|
||||
'cy-GB': 'Welsh',
|
||||
da: 'Danish',
|
||||
de: 'German',
|
||||
es: 'Spanish',
|
||||
'es-LA': 'Spanish (Latin America)',
|
||||
et: 'Estonian',
|
||||
fi: 'Finnish',
|
||||
fr: 'French',
|
||||
he: 'Hebrew',
|
||||
hu: 'Hungarian',
|
||||
id: 'Indonesian',
|
||||
it: 'Italian',
|
||||
'ja-JP': 'Japanese',
|
||||
ko: 'Korean',
|
||||
LV: 'Latvian',
|
||||
'nb-NO': 'Norwegian',
|
||||
nl: 'Dutch',
|
||||
pl: 'Polish',
|
||||
pt: 'Portuguese',
|
||||
'pt-BR': 'Portuguese (Brazil)',
|
||||
'pt-PT': 'Portuguese (Portugal)',
|
||||
'ru-RU': 'Russian',
|
||||
sk: 'Slovak',
|
||||
'sk-SK': 'Slovak',
|
||||
sl: 'Slovenian',
|
||||
'sv-SE': 'Swedish',
|
||||
th: 'Thai',
|
||||
tr: 'Turkish',
|
||||
UK: 'Ukrainian',
|
||||
vi: 'Vietnamese',
|
||||
'zh-CN': 'Chinese (Simplified)',
|
||||
'zh-TW': 'Chinese (Traditional)',
|
||||
};
|
||||
|
||||
export const LANGUAGES = Object.keys(RAW_LANGUAGES).map((key) => {
|
||||
return { value: key, name: RAW_LANGUAGES[key] };
|
||||
});
|
||||
Reference in New Issue
Block a user