Added new languages to lib/lang.

This commit is contained in:
Mike Cao 2023-04-08 15:51:49 -07:00
parent 7b97cb3348
commit 0dc6529cf1
2 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export default function PagesTable({ websiteId, showFilters, ...props }) {
const buttons = [ const buttons = [
{ {
label: formatMessage(labels.url), label: 'URL',
key: 'url', key: 'url',
}, },
{ {

View File

@ -18,6 +18,7 @@ import {
id, id,
it, it,
ja, ja,
km,
ko, ko,
lt, lt,
mn, mn,
@ -66,6 +67,7 @@ export const languages = {
'it-IT': { label: 'Italiano', dateLocale: it }, 'it-IT': { label: 'Italiano', dateLocale: it },
'id-ID': { label: 'Bahasa Indonesia', dateLocale: id }, 'id-ID': { label: 'Bahasa Indonesia', dateLocale: id },
'ja-JP': { label: '日本語', dateLocale: ja }, 'ja-JP': { label: '日本語', dateLocale: ja },
'km-KH': { label: 'ភាសាខ្មែរ', dateLocale: km },
'ko-KR': { label: '한국어', dateLocale: ko }, 'ko-KR': { label: '한국어', dateLocale: ko },
'lt-LT': { label: 'Lietuvių', dateLocale: lt }, 'lt-LT': { label: 'Lietuvių', dateLocale: lt },
'ms-MY': { label: 'Malay', dateLocale: ms }, 'ms-MY': { label: 'Malay', dateLocale: ms },
@ -81,6 +83,7 @@ export const languages = {
'sl-SI': { label: 'Slovenščina', dateLocale: sl }, 'sl-SI': { label: 'Slovenščina', dateLocale: sl },
'fi-FI': { label: 'Suomi', dateLocale: fi }, 'fi-FI': { label: 'Suomi', dateLocale: fi },
'sv-SE': { label: 'Svenska', dateLocale: sv }, 'sv-SE': { label: 'Svenska', dateLocale: sv },
'de-CH': { label: 'Schwiizerdütsch', dateLocale: de },
'ta-IN': { label: 'தமிழ்', dateLocale: ta }, 'ta-IN': { label: 'தமிழ்', dateLocale: ta },
'th-TH': { label: 'ภาษาไทย', dateLocale: th }, 'th-TH': { label: 'ภาษาไทย', dateLocale: th },
'tr-TR': { label: 'Türkçe', dateLocale: tr }, 'tr-TR': { label: 'Türkçe', dateLocale: tr },