tswow/tswow-scripts/data/dbc/Localization.ts
2023-08-29 18:07:39 +02:00

27 lines
1 KiB
TypeScript

/*
* This file is part of tswow (https://github.com/tswow)
*
* Copyright (C) 2020 tswow <https://github.com/tswow/>
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
export type Language =
'enGB'|'koKR'|'frFR'|'deDE'|'enCN'|'zhCN'|
'enTW'|'zhTW'|'esES'|'esMX'|'ruRU'|
'ptPT'|'ptBR'|'itIT'|'Unk' | 'Unk2';
export const Languages: Language[] =
[
'enGB', 'koKR', 'frFR', 'deDE', 'enCN', 'zhCN',
'enTW', 'zhTW', 'esES', 'esMX', 'ruRU',
'ptPT', 'ptBR', 'itIT', 'Unk', 'Unk2'
];