/* * Copyright (C) Ascensio System SIA, 2009-2026 * * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation, together with the * additional terms provided in the LICENSE file. * * This program is distributed WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For * details, see the GNU AGPL at: https://www.gnu.org/licenses/agpl-3.0.html * * You can contact Ascensio System SIA by email at info@onlyoffice.com * or by postal mail at 20A-6 Ernesta Birznieka-Upisha Street, Riga, * LV-1050, Latvia, European Union. * * The interactive user interfaces in modified versions of the Program * are required to display Appropriate Legal Notices in accordance with * Section 5 of the GNU AGPL version 3. * * No trademark rights are granted under this License. * * All non-code elements of the Product, including illustrations, * icon sets, and technical writing content, are licensed under the * Creative Commons Attribution-ShareAlike 4.0 International License: * https://creativecommons.org/licenses/by-sa/4.0/legalcode * * This license applies only to such non-code elements and does not * modify or replace the licensing terms applicable to the Program's * source code, which remains licensed under the GNU Affero General * Public License v3. * * SPDX-License-Identifier: AGPL-3.0-only */ #ifndef _BUILD_TEXT_LANGUAGES_H_ #define _BUILD_TEXT_LANGUAGES_H_ namespace NSTextLanguages { typedef struct DictionaryRec_ { int m_lang; const char* m_name; } DictionaryRec; const int DictionaryRec_count = 49; const DictionaryRec Dictionaries[DictionaryRec_count] = { {1068, "az_Latn_AZ"}, {1026, "bg_BG"}, {1027, "ca_ES"}, {2051, "ca_ES_valencia"}, {1029, "cs_CZ"}, {1030, "da_DK"}, {3079, "de_AT"}, {2055, "de_CH"}, {1031, "de_DE"}, {1032, "el_GR"}, {3081, "en_AU"}, {4105, "en_CA"}, {2057, "en_GB"}, {1033, "en_US"}, {7177, "en_ZA"}, {3082, "es_ES"}, {1069, "eu_ES"}, {1036, "fr_FR"}, {1110, "gl_ES"}, {1050, "hr_HR"}, {1038, "hu_HU"}, {1057, "id_ID"}, {1040, "it_IT"}, {1087, "kk_KZ"}, {1042, "ko_KR"}, {1134, "lb_LU"}, {1063, "lt_LT"}, {1062, "lv_LV"}, {1104, "mn_MN"}, {1044, "nb_NO"}, {1043, "nl_NL"}, {2068, "nn_NO"}, {1154, "oc_FR"}, {1045, "pl_PL"}, {1046, "pt_BR"}, {2070, "pt_PT"}, {1048, "ro_RO"}, {1049, "ru_RU"}, {1051, "sk_SK"}, {1060, "sl_SI"}, {10266,"sr_Cyrl_RS"}, {9242, "sr_Latn_RS"}, {1053, "sv_SE"}, {1055, "tr_TR"}, {1058, "uk_UA"}, {2115, "uz_Cyrl_UZ"}, {1091, "uz_Latn_UZ"}, {1066, "vi_VN"}, {2067, "nl_NL"} }; } #endif // _BUILD_TEXT_LANGUAGES_H_