60 lines
3.5 KiB
JavaScript
60 lines
3.5 KiB
JavaScript
/*
|
|
* (c) Copyright Ascensio System SIA 2010-2014
|
|
*
|
|
* 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. In accordance with
|
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
|
* of any third-party rights.
|
|
*
|
|
* 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: http://www.gnu.org/licenses/agpl-3.0.html
|
|
*
|
|
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
|
* EU, LV-1021.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of the Program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU AGPL version 3.
|
|
*
|
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
|
* grant you any rights under trademark law for use of our trademarks.
|
|
*
|
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
|
* well as technical writing content are licensed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
*
|
|
*/
|
|
var g_spellCheckLanguages = [];
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("ca-ES", 1027));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("cs-CZ", 1029));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("da-DK", 1030));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("de-DE", 1031));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("el-GR", 1032));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("en-US", 1033));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("fr-FR", 1036));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("hu-HU", 1038));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("it-IT", 1040));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("ko-KR", 1042));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("nl-NL", 1043));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("nb-NO", 1044));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("pl-PL", 1045));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("pt-BR", 1046));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("ro-RO", 1048));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("ru-RU", 1049));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("sk-SK", 1051));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("sv-SE", 1053));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("tr-TR", 1055));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("uk-UA", 1058));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("lv-LV", 1062));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("lt-LT", 1063));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("vi-VN", 1066));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("de-CH", 2055));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("nn-NO", 2068));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("pt-PT", 2070));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("de-AT", 3079));
|
|
g_spellCheckLanguages.push(window["Asc"].asc_CLanguage("es-ES", 3082)); |