2022-09-30 19:43:51 -04:00
|
|
|
import cs from './cs';
|
|
|
|
import da from './da';
|
|
|
|
import de from './de';
|
2022-09-28 20:04:00 -06:00
|
|
|
import en from './en';
|
2022-09-30 19:43:51 -04:00
|
|
|
import es from './es';
|
|
|
|
import ca from './ca';
|
|
|
|
import fr from './fr';
|
|
|
|
import gr from './gr';
|
|
|
|
import hu from './hu';
|
|
|
|
import it from './it';
|
|
|
|
import lt from './lt';
|
|
|
|
import ja from './ja';
|
|
|
|
import nl from './nl';
|
|
|
|
import nb_no from './nb_no';
|
|
|
|
import nn_no from './nn_no';
|
|
|
|
import pl from './pl';
|
|
|
|
import pt from './pt';
|
|
|
|
import ro from './ro';
|
|
|
|
import ru from './ru';
|
|
|
|
import sv from './sv';
|
|
|
|
import th from './th';
|
|
|
|
import tr from './tr';
|
|
|
|
import uk from './uk';
|
|
|
|
import vi from './vi';
|
|
|
|
import zh_Hant from './zh_Hant';
|
|
|
|
import ko from './ko';
|
|
|
|
import hr from './hr';
|
|
|
|
import bg from './bg';
|
|
|
|
import zh_Hans from './zh_Hans';
|
|
|
|
import he from './he';
|
2022-09-28 20:04:00 -06:00
|
|
|
|
2022-10-20 11:57:30 -04:00
|
|
|
import type { LocalePhrasesRoot } from '../interface';
|
|
|
|
|
2022-12-01 19:29:33 -05:00
|
|
|
const locales: Record<string, LocalePhrasesRoot> = {
|
2022-09-30 19:43:51 -04:00
|
|
|
cs,
|
|
|
|
da,
|
|
|
|
de,
|
2022-09-28 20:04:00 -06:00
|
|
|
en,
|
2022-09-30 19:43:51 -04:00
|
|
|
es,
|
|
|
|
ca,
|
|
|
|
fr,
|
|
|
|
gr,
|
|
|
|
hu,
|
|
|
|
it,
|
|
|
|
lt,
|
|
|
|
ja,
|
|
|
|
nl,
|
|
|
|
nb_no,
|
|
|
|
nn_no,
|
|
|
|
pl,
|
|
|
|
pt,
|
|
|
|
ro,
|
|
|
|
ru,
|
|
|
|
sv,
|
|
|
|
th,
|
|
|
|
tr,
|
|
|
|
uk,
|
|
|
|
vi,
|
|
|
|
zh_Hant,
|
|
|
|
ko,
|
|
|
|
hr,
|
|
|
|
bg,
|
|
|
|
zh_Hans,
|
|
|
|
he,
|
2022-09-28 20:04:00 -06:00
|
|
|
};
|
2022-12-01 19:29:33 -05:00
|
|
|
|
|
|
|
export default locales;
|