diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 7a2fba2d3..3d84e1e3e 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -116,13 +116,15 @@ rightMenu: true, hideRightMenu: false, // hide or show right panel on first loading toolbar: true, - header: true, statusBar: true, autosave: true, forcesave: false, commentAuthorOnly: false, showReviewChanges: false, - help: true + help: true, + compactHeader: false, + toolbarBreakTabs: false, + toolbarHideFileName: false }, plugins: { autostart: ['asc.{FFE1F462-1EA2-4391-990D-4CC84940B754}'], @@ -370,6 +372,7 @@ // _config.editorConfig.canBackToFolder = false; if (!_config.editorConfig.customization) _config.editorConfig.customization = {}; _config.editorConfig.customization.about = false; + _config.editorConfig.customization.compactHeader = false; if ( window.AscDesktopEditor ) window.AscDesktopEditor.execCommand('webapps:events', 'loading'); } @@ -664,7 +667,7 @@ app = appMap[config.documentType.toLowerCase()]; } else if (!!config.document && typeof config.document.fileType === 'string') { - var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx|fods)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm|fodp))$/ + var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx|fods|ots)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm|fodp|otp))$/ .exec(config.document.fileType); if (type) { if (typeof type[1] === 'string') app = appMap['spreadsheet']; else diff --git a/apps/common/Analytics.js b/apps/common/Analytics.js index 37a59ab6d..f2985be6c 100644 --- a/apps/common/Analytics.js +++ b/apps/common/Analytics.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/Gateway.js b/apps/common/Gateway.js index 7d173d612..fe0cc2d50 100644 --- a/apps/common/Gateway.js +++ b/apps/common/Gateway.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/IrregularStack.js b/apps/common/IrregularStack.js index 7a9aa5170..4092f0358 100644 --- a/apps/common/IrregularStack.js +++ b/apps/common/IrregularStack.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/embed/lib/controller/modals.js b/apps/common/embed/lib/controller/modals.js index bdf8ac2d1..82de2063c 100644 --- a/apps/common/embed/lib/controller/modals.js +++ b/apps/common/embed/lib/controller/modals.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/embed/lib/util/utils.js b/apps/common/embed/lib/util/utils.js index 5a4b5db1f..0637a0450 100644 --- a/apps/common/embed/lib/util/utils.js +++ b/apps/common/embed/lib/util/utils.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/embed/lib/view/modals.js b/apps/common/embed/lib/view/modals.js index 32b1be5d3..4c9c02e07 100644 --- a/apps/common/embed/lib/view/modals.js +++ b/apps/common/embed/lib/view/modals.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/locale.js b/apps/common/locale.js index b84aa0c37..556ec30d6 100644 --- a/apps/common/locale.js +++ b/apps/common/locale.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/collection/ChatMessages.js b/apps/common/main/lib/collection/ChatMessages.js index afedde6fb..a8f0ae676 100644 --- a/apps/common/main/lib/collection/ChatMessages.js +++ b/apps/common/main/lib/collection/ChatMessages.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/collection/Comments.js b/apps/common/main/lib/collection/Comments.js index 2f34243d7..892192457 100644 --- a/apps/common/main/lib/collection/Comments.js +++ b/apps/common/main/lib/collection/Comments.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/collection/Fonts.js b/apps/common/main/lib/collection/Fonts.js index de2ddfe9c..8058dc271 100644 --- a/apps/common/main/lib/collection/Fonts.js +++ b/apps/common/main/lib/collection/Fonts.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/collection/HistoryVersions.js b/apps/common/main/lib/collection/HistoryVersions.js index 00c929c7f..06ac75267 100644 --- a/apps/common/main/lib/collection/HistoryVersions.js +++ b/apps/common/main/lib/collection/HistoryVersions.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/collection/Plugins.js b/apps/common/main/lib/collection/Plugins.js index cd943fc31..d8d6706cc 100644 --- a/apps/common/main/lib/collection/Plugins.js +++ b/apps/common/main/lib/collection/Plugins.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/collection/ReviewChanges.js b/apps/common/main/lib/collection/ReviewChanges.js index 9f23da3bd..b45a04cfa 100644 --- a/apps/common/main/lib/collection/ReviewChanges.js +++ b/apps/common/main/lib/collection/ReviewChanges.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/collection/TextArt.js b/apps/common/main/lib/collection/TextArt.js index 16d19784e..75d361af2 100644 --- a/apps/common/main/lib/collection/TextArt.js +++ b/apps/common/main/lib/collection/TextArt.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/collection/Users.js b/apps/common/main/lib/collection/Users.js index e3fa41a23..790d87e21 100644 --- a/apps/common/main/lib/collection/Users.js +++ b/apps/common/main/lib/collection/Users.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/component/BaseView.js b/apps/common/main/lib/component/BaseView.js index 853631472..bab307eab 100644 --- a/apps/common/main/lib/component/BaseView.js +++ b/apps/common/main/lib/component/BaseView.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/component/Button.js b/apps/common/main/lib/component/Button.js index 6076f836c..829ec2a76 100644 --- a/apps/common/main/lib/component/Button.js +++ b/apps/common/main/lib/component/Button.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/component/CheckBox.js b/apps/common/main/lib/component/CheckBox.js index 2e3849ac0..fa353ba98 100644 --- a/apps/common/main/lib/component/CheckBox.js +++ b/apps/common/main/lib/component/CheckBox.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/component/ColorButton.js b/apps/common/main/lib/component/ColorButton.js index d9d16c840..da3e9cb64 100644 --- a/apps/common/main/lib/component/ColorButton.js +++ b/apps/common/main/lib/component/ColorButton.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/component/ColorPalette.js b/apps/common/main/lib/component/ColorPalette.js index 1c513290a..106cfb761 100644 --- a/apps/common/main/lib/component/ColorPalette.js +++ b/apps/common/main/lib/component/ColorPalette.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/component/ColorPaletteExt.js b/apps/common/main/lib/component/ColorPaletteExt.js index d8ad4bbaf..98eadf69d 100644 --- a/apps/common/main/lib/component/ColorPaletteExt.js +++ b/apps/common/main/lib/component/ColorPaletteExt.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/component/ComboBorderSize.js b/apps/common/main/lib/component/ComboBorderSize.js index 31c732d9b..3f9cb35f3 100644 --- a/apps/common/main/lib/component/ComboBorderSize.js +++ b/apps/common/main/lib/component/ComboBorderSize.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/component/ComboBox.js b/apps/common/main/lib/component/ComboBox.js index c2e4fefa6..a70154c7e 100644 --- a/apps/common/main/lib/component/ComboBox.js +++ b/apps/common/main/lib/component/ComboBox.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/common/main/lib/component/ComboBoxFonts.js b/apps/common/main/lib/component/ComboBoxFonts.js index f84eb5950..faf8989a9 100644 --- a/apps/common/main/lib/component/ComboBoxFonts.js +++ b/apps/common/main/lib/component/ComboBoxFonts.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -69,7 +69,7 @@ define([ return { template: _.template([ '
', - '', + ' ', '
', '', '
+
<%= scope.textMargins %>
+
+ +
@@ -332,6 +441,18 @@
+
  • + +
    +
    + +
    +
    +
    PDF/A
    +
    +
    +
    +
  • @@ -368,6 +489,30 @@
  • +
  • + +
    +
    + +
    +
    +
    DOTX
    +
    +
    +
    +
  • +
  • + +
    +
    + +
    +
    +
    OTT
    +
    +
    +
    +
  • diff --git a/apps/documenteditor/mobile/app/view/DocumentHolder.js b/apps/documenteditor/mobile/app/view/DocumentHolder.js index fc73b3c1e..b842f656b 100644 --- a/apps/documenteditor/mobile/app/view/DocumentHolder.js +++ b/apps/documenteditor/mobile/app/view/DocumentHolder.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/Editor.js b/apps/documenteditor/mobile/app/view/Editor.js index 2e79b4242..ed888a92a 100644 --- a/apps/documenteditor/mobile/app/view/Editor.js +++ b/apps/documenteditor/mobile/app/view/Editor.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/Search.js b/apps/documenteditor/mobile/app/view/Search.js index 64ff90e86..f8b5e5071 100644 --- a/apps/documenteditor/mobile/app/view/Search.js +++ b/apps/documenteditor/mobile/app/view/Search.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/Settings.js b/apps/documenteditor/mobile/app/view/Settings.js index bb8095528..d6cac7c18 100644 --- a/apps/documenteditor/mobile/app/view/Settings.js +++ b/apps/documenteditor/mobile/app/view/Settings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -56,7 +56,10 @@ define([ _canDownloadOrigin = false, _canReader = false, _canAbout = true, - _canHelp = true; + _canHelp = true, + _canPrint = false, + _canReview = false, + _isReviewOnly = false; return { // el: '.view-main', @@ -97,6 +100,9 @@ define([ _canDownload = mode.canDownload; _canDownloadOrigin = mode.canDownloadOrigin; _canReader = !mode.isEdit && mode.canReader; + _canPrint = mode.canPrint; + _canReview = mode.canReview; + _isReviewOnly = mode.isReviewOnly; if (mode.customization && mode.canBrandingExt) { _canAbout = (mode.customization.about!==false); @@ -116,6 +122,7 @@ define([ $layour.find('#settings-search .item-title').text(this.textFindAndReplace) } else { $layour.find('#settings-document').hide(); + $layour.find('#settings-spellcheck').hide(); } if (!_canReader) $layour.find('#settings-readermode').hide(); @@ -127,6 +134,9 @@ define([ if (!_canDownloadOrigin) $layour.find('#settings-download').hide(); if (!_canAbout) $layour.find('#settings-about').hide(); if (!_canHelp) $layour.find('#settings-help').hide(); + if (!_canPrint) $layour.find('#settings-print').hide(); + if (!_canReview) $layour.find('#settings-review').hide(); + if (_isReviewOnly) $layour.find('#settings-review').addClass('disabled'); return $layour.html(); } @@ -255,7 +265,15 @@ define([ textCustomSize: 'Custom Size', textDocumentFormats: 'Document Formats', textOrientation: 'Orientation', - textPoweredBy: 'Powered by' + textPoweredBy: 'Powered by', + textSpellcheck: 'Spell Checking', + textPrint: 'Print', + textReview: 'Review', + textMargins: 'Margins', + textTop: 'Top', + textLeft: 'Left', + textBottom: 'Bottom', + textRight: 'Right' } })(), DE.Views.Settings || {})) diff --git a/apps/documenteditor/mobile/app/view/Toolbar.js b/apps/documenteditor/mobile/app/view/Toolbar.js index 5be5a4727..135641431 100644 --- a/apps/documenteditor/mobile/app/view/Toolbar.js +++ b/apps/documenteditor/mobile/app/view/Toolbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/add/AddImage.js b/apps/documenteditor/mobile/app/view/add/AddImage.js index ee310fa99..80da59c4d 100644 --- a/apps/documenteditor/mobile/app/view/add/AddImage.js +++ b/apps/documenteditor/mobile/app/view/add/AddImage.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/add/AddOther.js b/apps/documenteditor/mobile/app/view/add/AddOther.js index 32e5318ac..0389eccb7 100644 --- a/apps/documenteditor/mobile/app/view/add/AddOther.js +++ b/apps/documenteditor/mobile/app/view/add/AddOther.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/add/AddShape.js b/apps/documenteditor/mobile/app/view/add/AddShape.js index 5512a42d8..3f0fef87d 100644 --- a/apps/documenteditor/mobile/app/view/add/AddShape.js +++ b/apps/documenteditor/mobile/app/view/add/AddShape.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/add/AddTable.js b/apps/documenteditor/mobile/app/view/add/AddTable.js index aa675fb34..570ab080d 100644 --- a/apps/documenteditor/mobile/app/view/add/AddTable.js +++ b/apps/documenteditor/mobile/app/view/add/AddTable.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/edit/EditChart.js b/apps/documenteditor/mobile/app/view/edit/EditChart.js index d2719baf5..d55da8ea8 100644 --- a/apps/documenteditor/mobile/app/view/edit/EditChart.js +++ b/apps/documenteditor/mobile/app/view/edit/EditChart.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/edit/EditHeader.js b/apps/documenteditor/mobile/app/view/edit/EditHeader.js new file mode 100644 index 000000000..8b53efa7b --- /dev/null +++ b/apps/documenteditor/mobile/app/view/edit/EditHeader.js @@ -0,0 +1,120 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2019 + * + * 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 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * 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 + * + */ + +/** + * EditHeader.js + * Document Editor + * + * Created by Julia Radzhabova on 2/15/19 + * Copyright (c) 2019 Ascensio System SIA. All rights reserved. + * + */ + +define([ + 'text!documenteditor/mobile/app/template/EditHeader.template', + 'jquery', + 'underscore', + 'backbone' +], function (editTemplate, $, _, Backbone) { + 'use strict'; + + DE.Views.EditHeader = Backbone.View.extend(_.extend((function() { + // private + + return { + template: _.template(editTemplate), + + events: { + }, + + initialize: function () { + Common.NotificationCenter.on('editcontainer:show', _.bind(this.initEvents, this)); + }, + + initEvents: function () { + var me = this; + + DE.getController('EditHeader').initSettings(); + }, + + // Render layout + render: function () { + this.layout = $('
    ').append(this.template({ + android : Common.SharedSettings.get('android'), + phone : Common.SharedSettings.get('phone'), + scope : this + })); + + return this; + }, + + rootLayout: function () { + if (this.layout) { + return this.layout + .find('#edit-header-root') + .html(); + } + + return ''; + }, + + showPage: function (templateId, customFireEvent) { + var rootView = DE.getController('EditContainer').rootView; + + if (rootView && this.layout) { + var $content = this.layout.find(templateId); + + // Android fix for navigation + if (Framework7.prototype.device.android) { + $content.find('.page').append($content.find('.navbar')); + } + + rootView.router.load({ + content: $content.html() + }); + + if (customFireEvent !== true) { + this.fireEvent('page:show', [this, templateId]); + } + } + }, + + textDiffFirst: 'Different first page', + textDiffOdd: 'Different odd and even pages', + textSameAs: 'Link to Previous', + textPageNumbering: 'Page Numbering', + textPrev: 'Continue from previous section', + textFrom: 'Start at' + } + })(), DE.Views.EditHeader || {})) +}); \ No newline at end of file diff --git a/apps/documenteditor/mobile/app/view/edit/EditHyperlink.js b/apps/documenteditor/mobile/app/view/edit/EditHyperlink.js index 5cefdd7b0..d08148fbe 100644 --- a/apps/documenteditor/mobile/app/view/edit/EditHyperlink.js +++ b/apps/documenteditor/mobile/app/view/edit/EditHyperlink.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/edit/EditImage.js b/apps/documenteditor/mobile/app/view/edit/EditImage.js index 2680a168c..498de3083 100644 --- a/apps/documenteditor/mobile/app/view/edit/EditImage.js +++ b/apps/documenteditor/mobile/app/view/edit/EditImage.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/edit/EditParagraph.js b/apps/documenteditor/mobile/app/view/edit/EditParagraph.js index 3ec86baea..7d16001f9 100644 --- a/apps/documenteditor/mobile/app/view/edit/EditParagraph.js +++ b/apps/documenteditor/mobile/app/view/edit/EditParagraph.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/edit/EditShape.js b/apps/documenteditor/mobile/app/view/edit/EditShape.js index 3e430abeb..4d0721d78 100644 --- a/apps/documenteditor/mobile/app/view/edit/EditShape.js +++ b/apps/documenteditor/mobile/app/view/edit/EditShape.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/edit/EditTable.js b/apps/documenteditor/mobile/app/view/edit/EditTable.js index 36fe35cd3..f81acea61 100644 --- a/apps/documenteditor/mobile/app/view/edit/EditTable.js +++ b/apps/documenteditor/mobile/app/view/edit/EditTable.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/app/view/edit/EditText.js b/apps/documenteditor/mobile/app/view/edit/EditText.js index f560218ae..a23226e38 100644 --- a/apps/documenteditor/mobile/app/view/edit/EditText.js +++ b/apps/documenteditor/mobile/app/view/edit/EditText.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json new file mode 100644 index 000000000..5c21d0ea6 --- /dev/null +++ b/apps/documenteditor/mobile/locale/bg.json @@ -0,0 +1,411 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Стандартни цветове", + "Common.UI.ThemeColorPalette.textThemeColors": "Цветовете на темата", + "Common.Utils.Metric.txtCm": "см", + "Common.Utils.Metric.txtPt": "pt", + "DE.Controllers.AddContainer.textImage": "Изображение", + "DE.Controllers.AddContainer.textOther": "Друг", + "DE.Controllers.AddContainer.textShape": "форма", + "DE.Controllers.AddContainer.textTable": "маса", + "DE.Controllers.AddImage.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", + "DE.Controllers.AddImage.txtNotUrl": "Това поле трябва да бъде URL адрес във формата „http://www.example.com“", + "DE.Controllers.AddOther.txtNotUrl": "Това поле трябва да бъде URL адрес във формата „http://www.example.com“", + "DE.Controllers.AddTable.textCancel": "Отказ", + "DE.Controllers.AddTable.textColumns": "колони", + "DE.Controllers.AddTable.textRows": "Редове", + "DE.Controllers.AddTable.textTableSize": "Размер на таблицата", + "DE.Controllers.DocumentHolder.menuAccept": "Приемам", + "DE.Controllers.DocumentHolder.menuAcceptAll": "Приемам всичко", + "DE.Controllers.DocumentHolder.menuAddLink": "Добавяне на връзка", + "DE.Controllers.DocumentHolder.menuCopy": "копие", + "DE.Controllers.DocumentHolder.menuCut": "Изрежи", + "DE.Controllers.DocumentHolder.menuDelete": "Изтрий", + "DE.Controllers.DocumentHolder.menuEdit": "редактиране", + "DE.Controllers.DocumentHolder.menuMore": "| Повече ▼", + "DE.Controllers.DocumentHolder.menuOpenLink": "Отвори линк", + "DE.Controllers.DocumentHolder.menuPaste": "паста", + "DE.Controllers.DocumentHolder.menuReject": "Отхвърляне", + "DE.Controllers.DocumentHolder.menuRejectAll": "Отхвърли всички", + "DE.Controllers.DocumentHolder.menuReview": "преглед", + "DE.Controllers.DocumentHolder.sheetCancel": "Отказ", + "DE.Controllers.DocumentHolder.textGuest": "гост", + "DE.Controllers.EditContainer.textChart": "диаграма", + "DE.Controllers.EditContainer.textFooter": "долния", + "DE.Controllers.EditContainer.textHeader": "Заглавие", + "DE.Controllers.EditContainer.textHyperlink": "Хипервръзка", + "DE.Controllers.EditContainer.textImage": "Изображение", + "DE.Controllers.EditContainer.textParagraph": "параграф", + "DE.Controllers.EditContainer.textSettings": "Настройки", + "DE.Controllers.EditContainer.textShape": "форма", + "DE.Controllers.EditContainer.textTable": "маса", + "DE.Controllers.EditContainer.textText": "Текст", + "DE.Controllers.EditImage.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", + "DE.Controllers.EditImage.txtNotUrl": "Това поле трябва да бъде URL адрес във формата „http://www.example.com“", + "DE.Controllers.EditText.textAuto": "Автоматичен", + "DE.Controllers.EditText.textFonts": "Шрифт", + "DE.Controllers.EditText.textPt": "pt", + "DE.Controllers.Main.advDRMEnterPassword": "Въведете паролата си:", + "DE.Controllers.Main.advDRMOptions": "Защитен файл", + "DE.Controllers.Main.advDRMPassword": "Парола", + "DE.Controllers.Main.advTxtOptions": "Изберете опциите за TXT", + "DE.Controllers.Main.applyChangesTextText": "Данните се зареждат ...", + "DE.Controllers.Main.applyChangesTitleText": "Зареждане на данни", + "DE.Controllers.Main.closeButtonText": "Затвори файла", + "DE.Controllers.Main.convertationTimeoutText": "Превишава се времето на изтичане на реализация.", + "DE.Controllers.Main.criticalErrorExtText": "Натиснете 'OK', за да се върнете към списъка с документи.", + "DE.Controllers.Main.criticalErrorTitle": "Грешка", + "DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Редактор на документи", + "DE.Controllers.Main.downloadErrorText": "Изтеглянето се провали.", + "DE.Controllers.Main.downloadMergeText": "Изтегля се ...", + "DE.Controllers.Main.downloadMergeTitle": "Изтеглянето", + "DE.Controllers.Main.downloadTextText": "Документът се изтегли ...", + "DE.Controllers.Main.downloadTitleText": "Изтегляне на документ", + "DE.Controllers.Main.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права.
    Моля, свържете се с администратора на сървъра за документи.", + "DE.Controllers.Main.errorBadImageUrl": "URL адресът на изображението е неправилен", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "Връзката със сървъра е загубена. Вече не можете да редактирате.", + "DE.Controllers.Main.errorConnectToServer": "Документът не можа да бъде запазен. Моля, проверете настройките за връзка или се свържете с администратора си.
    Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа.

    Намерете повече информация за свързването на сървъра за документи тук ", + "DE.Controllers.Main.errorDatabaseConnection": "Външна грешка.
    Грешка при свързване към база данни. Моля, свържете се с екипа за поддръжка.", + "DE.Controllers.Main.errorDataEncrypted": "Получени са криптирани промени, които не могат да се дефинират.", + "DE.Controllers.Main.errorDataRange": "Неправилен обхват от данни.", + "DE.Controllers.Main.errorDefaultMessage": "Код на грешката:% 1", + "DE.Controllers.Main.errorEditingDownloadas": "Възникна грешка по време на работата с документа.
    Използвайте опцията 'Download', за да запишете архивното копие на файла на твърдия диск на компютъра.", + "DE.Controllers.Main.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.", + "DE.Controllers.Main.errorKeyEncrypt": "Дескриптор на неизвестен ключ", + "DE.Controllers.Main.errorKeyExpire": "Дескрипторът на ключовете е изтекъл", + "DE.Controllers.Main.errorMailMergeLoadFile": "Неуспешно зареждане", + "DE.Controllers.Main.errorMailMergeSaveFile": "Сливането не бе успешно.", + "DE.Controllers.Main.errorProcessSaveResult": "Запазването е неуспешно.", + "DE.Controllers.Main.errorServerVersion": "Версията на редактора е актуализирана. Страницата ще бъде презаредена, за да приложи промените.", + "DE.Controllers.Main.errorStockChart": "Неправилен ред на ред. За изграждане на борсова карта поставете данните на листа в следния ред:
    цена на отваряне, максимална цена, мин. Цена, цена на затваряне.", + "DE.Controllers.Main.errorUpdateVersion": "Версията на файла е променена. Страницата ще бъде презаредена.", + "DE.Controllers.Main.errorUserDrop": "Файлът не може да бъде достъпен в момента.", + "DE.Controllers.Main.errorUsersExceed": "Превишен е броят на потребителите", + "DE.Controllers.Main.errorViewerDisconnect": "Връзката е загубена. Все още можете да прегледате документа, но не можете да го изтеглите, докато връзката не бъде възстановена.", + "DE.Controllers.Main.leavePageText": "Имате незапазени промени в този документ. Кликнете върху „Остани на тази страница“, за да изчакате за автоматично запаметяване на документа. Кликнете върху „Оставете тази страница“, за да отхвърлите всички незапазени промени.", + "DE.Controllers.Main.loadFontsTextText": "Данните се зареждат ...", + "DE.Controllers.Main.loadFontsTitleText": "Зареждане на данни", + "DE.Controllers.Main.loadFontTextText": "Данните се зареждат ...", + "DE.Controllers.Main.loadFontTitleText": "Зареждане на данни", + "DE.Controllers.Main.loadImagesTextText": "Изображенията се зареждат ...", + "DE.Controllers.Main.loadImagesTitleText": "Зареждане на изображения", + "DE.Controllers.Main.loadImageTextText": "Изображението се зарежда ...", + "DE.Controllers.Main.loadImageTitleText": "Зареждане на изображението", + "DE.Controllers.Main.loadingDocumentTextText": "Документът се зарежда ...", + "DE.Controllers.Main.loadingDocumentTitleText": "Зареждане на документ", + "DE.Controllers.Main.mailMergeLoadFileText": "Зареждане на източници на данни ...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "Зареждане на източници на данни", + "DE.Controllers.Main.notcriticalErrorTitle": "Внимание", + "DE.Controllers.Main.openErrorText": "Възникна грешка при отварянето на файла", + "DE.Controllers.Main.openTextText": "Отваряне на документа ...", + "DE.Controllers.Main.openTitleText": "Отваряне на документ", + "DE.Controllers.Main.printTextText": "Отпечатване на документ ...", + "DE.Controllers.Main.printTitleText": "Отпечатване на документ", + "DE.Controllers.Main.saveErrorText": "Въздушна грешка при запазване на файла", + "DE.Controllers.Main.savePreparingText": "Подготовка за запазване", + "DE.Controllers.Main.savePreparingTitle": "Подготовка за запазване. Моля Изчакай ... ", + "DE.Controllers.Main.saveTextText": "Документът се запазва ...", + "DE.Controllers.Main.saveTitleText": "Запазване на документа", + "DE.Controllers.Main.scriptLoadError": "Моля, презаредете страницата.", + "DE.Controllers.Main.sendMergeText": "Сливането се изпраща ...", + "DE.Controllers.Main.sendMergeTitle": "Изпращане на обединяване", + "DE.Controllers.Main.splitDividerErrorText": "Броят на редовете трябва да бъде делител на% 1", + "DE.Controllers.Main.splitMaxColsErrorText": "Броят на колоните трябва да бъде по-малък от% 1", + "DE.Controllers.Main.splitMaxRowsErrorText": "Броят на редовете трябва да бъде по-малък от% 1", + "DE.Controllers.Main.textAnonymous": "Анонимен", + "DE.Controllers.Main.textBack": "обратно", + "DE.Controllers.Main.textBuyNow": "Посетете уебсайта", + "DE.Controllers.Main.textCancel": "Отказ", + "DE.Controllers.Main.textClose": "Близо", + "DE.Controllers.Main.textContactUs": "Свържете се с продажбите", + "DE.Controllers.Main.textDone": "Завършен", + "DE.Controllers.Main.textLoadingDocument": "Зареждане на документ", + "DE.Controllers.Main.textNoLicenseTitle": "Ограничение за връзка ONLYOFFICE", + "DE.Controllers.Main.textOK": "Добре", + "DE.Controllers.Main.textPassword": "Парола", + "DE.Controllers.Main.textPreloader": "Зареждане ...", + "DE.Controllers.Main.textTryUndoRedo": "Функциите Undo / Redo са забранени за режима Fast co-edit.", + "DE.Controllers.Main.textUsername": "Потребител", + "DE.Controllers.Main.titleLicenseExp": "Лицензът е изтекъл", + "DE.Controllers.Main.titleServerVersion": "Редакторът е актуализиран", + "DE.Controllers.Main.titleUpdateVersion": "Версията е променена", + "DE.Controllers.Main.txtArt": "Вашият текст тук", + "DE.Controllers.Main.txtDiagramTitle": "Заглавие на диалог", + "DE.Controllers.Main.txtEditingMode": "Задаване на режим на редактиране ...", + "DE.Controllers.Main.txtFooter": "долния", + "DE.Controllers.Main.txtHeader": "Заглавие", + "DE.Controllers.Main.txtProtected": "След като въведете паролата и отворите файла, текущата парола за файла ще бъде нулирана", + "DE.Controllers.Main.txtSeries": "серия", + "DE.Controllers.Main.txtStyle_footnote_text": "Текст на бележка", + "DE.Controllers.Main.txtStyle_Heading_1": "Заглавие 1", + "DE.Controllers.Main.txtStyle_Heading_2": "Функция 2", + "DE.Controllers.Main.txtStyle_Heading_3": "Функция 3", + "DE.Controllers.Main.txtStyle_Heading_4": "Функция 4", + "DE.Controllers.Main.txtStyle_Heading_5": "Функция 5", + "DE.Controllers.Main.txtStyle_Heading_6": "Функция 6", + "DE.Controllers.Main.txtStyle_Heading_7": "Функция 7", + "DE.Controllers.Main.txtStyle_Heading_8": "Функция 8", + "DE.Controllers.Main.txtStyle_Heading_9": "Функция 9", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Интензивен цитат", + "DE.Controllers.Main.txtStyle_List_Paragraph": "Параграф Списък", + "DE.Controllers.Main.txtStyle_No_Spacing": "Без интервал", + "DE.Controllers.Main.txtStyle_Normal": "Нормален", + "DE.Controllers.Main.txtStyle_Quote": "цитат", + "DE.Controllers.Main.txtStyle_Subtitle": "подзаглавие", + "DE.Controllers.Main.txtStyle_Title": "Заглавие", + "DE.Controllers.Main.txtXAxis": "X ос", + "DE.Controllers.Main.txtYAxis": "Y ос", + "DE.Controllers.Main.unknownErrorText": "Неизвестна грешка.", + "DE.Controllers.Main.unsupportedBrowserErrorText": "Вашият браузър не се поддържа.", + "DE.Controllers.Main.uploadImageExtMessage": "Неизвестен формат на изображението.", + "DE.Controllers.Main.uploadImageFileCountMessage": "Няма качени изображения.", + "DE.Controllers.Main.uploadImageSizeMessage": "Превишено е ограничението за максимален размер на изображението.", + "DE.Controllers.Main.uploadImageTextText": "Качва се изображението ...", + "DE.Controllers.Main.uploadImageTitleText": "Качване на изображение", + "DE.Controllers.Main.warnLicenseExceeded": "Броят на едновременните връзки към сървъра за документи е превишен и документът ще бъде отворен само за преглед.
    За повече информация се обърнете към администратора.", + "DE.Controllers.Main.warnLicenseExp": "Вашият лиценз е изтекъл.
    Моля, актуализирайте лиценза си и опреснете страницата.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Броят на едновременните потребители е надхвърлен и документът ще бъде отворен само за преглед.
    За повече информация се свържете с администратора си.", + "DE.Controllers.Main.warnNoLicense": "Тази версия на редакторите на ONLYOFFICE има някои ограничения за едновременни връзки към сървъра за документи.", + "DE.Controllers.Main.warnNoLicenseUsers": "Тази версия на редакторите на ONLYOFFICE има определени ограничения за едновременни потребители.", + "DE.Controllers.Main.warnProcessRightsChange": "На вас е отказано правото да редактирате файла.", + "DE.Controllers.Search.textNoTextFound": "Текстът не е намерен", + "DE.Controllers.Search.textReplaceAll": "Замяна на всички", + "DE.Controllers.Settings.notcriticalErrorTitle": "Внимание", + "DE.Controllers.Settings.txtLoading": "Зареждане ...", + "DE.Controllers.Settings.unknownText": "неизвестен", + "DE.Controllers.Settings.warnDownloadAs": "Ако продължите да записвате в този формат, всички функции, с изключение на текста, ще бъдат загубени.
    Сигурни ли сте, че искате да продължите?", + "DE.Controllers.Toolbar.dlgLeaveMsgText": "Имате незапазени промени в този документ. Кликнете върху „Остани на тази страница“, за да изчакате за автоматично запаметяване на документа. Кликнете върху „Оставете тази страница“, за да отхвърлите всички незапазени промени.", + "DE.Controllers.Toolbar.dlgLeaveTitleText": "Оставяте заявлението", + "DE.Controllers.Toolbar.leaveButtonText": "Излезете от тази страница", + "DE.Controllers.Toolbar.stayButtonText": "Остани на тази страница", + "DE.Views.AddImage.textAddress": "адрес", + "DE.Views.AddImage.textBack": "обратно", + "DE.Views.AddImage.textFromLibrary": "Картина от библиотеката", + "DE.Views.AddImage.textFromURL": "Картина от URL адрес", + "DE.Views.AddImage.textImageURL": "URL адрес на изображение", + "DE.Views.AddImage.textInsertImage": "Вмъкване на изображение", + "DE.Views.AddImage.textLinkSettings": "Настройки на връзката", + "DE.Views.AddOther.textAddLink": "Добавяне на връзка", + "DE.Views.AddOther.textBack": "обратно", + "DE.Views.AddOther.textCenterBottom": "Централно доло", + "DE.Views.AddOther.textCenterTop": "Център горе", + "DE.Views.AddOther.textColumnBreak": "Прекъсване на колони", + "DE.Views.AddOther.textContPage": "Непрекъсната страница", + "DE.Views.AddOther.textCurrentPos": "Текущата позиция", + "DE.Views.AddOther.textDisplay": "показ", + "DE.Views.AddOther.textEvenPage": "Дори страница", + "DE.Views.AddOther.textInsert": "Вмъкни", + "DE.Views.AddOther.textLeftBottom": "Ляво долу", + "DE.Views.AddOther.textLeftTop": "Ляво отгоре", + "DE.Views.AddOther.textLink": "връзка", + "DE.Views.AddOther.textNextPage": "Следваща страница", + "DE.Views.AddOther.textOddPage": "Нечетна страница", + "DE.Views.AddOther.textPageBreak": "Разделител на страница", + "DE.Views.AddOther.textPageNumber": "Номер на страницата", + "DE.Views.AddOther.textPosition": "позиция", + "DE.Views.AddOther.textRightBottom": "Отдясно долу", + "DE.Views.AddOther.textRightTop": "Вдясно отгоре", + "DE.Views.AddOther.textSectionBreak": "Разделителна секция", + "DE.Views.AddOther.textTip": "Съвет на екрана", + "DE.Views.EditChart.textAlign": "Изравнете", + "DE.Views.EditChart.textBack": "обратно", + "DE.Views.EditChart.textBackward": "Преместване назад", + "DE.Views.EditChart.textBehind": "зад", + "DE.Views.EditChart.textBorder": "граница", + "DE.Views.EditChart.textColor": "цвят", + "DE.Views.EditChart.textDistanceText": "Разстояние от текста", + "DE.Views.EditChart.textFill": "Напълнете", + "DE.Views.EditChart.textForward": "Продължавай напред", + "DE.Views.EditChart.textInFront": "Отпред", + "DE.Views.EditChart.textInline": "В текста", + "DE.Views.EditChart.textMoveText": "Преместване с текст", + "DE.Views.EditChart.textOverlap": "Разрешаване на припокриване", + "DE.Views.EditChart.textRemoveChart": "Премахване на диаграмата", + "DE.Views.EditChart.textReorder": "Пренареждане", + "DE.Views.EditChart.textSize": "Размер", + "DE.Views.EditChart.textSquare": "Квадрат", + "DE.Views.EditChart.textStyle": "стил", + "DE.Views.EditChart.textThrough": "През", + "DE.Views.EditChart.textTight": "стегнат", + "DE.Views.EditChart.textToBackground": "Изпращане до фона", + "DE.Views.EditChart.textToForeground": "Доведете до преден план", + "DE.Views.EditChart.textTopBottom": "Отгоре и отдолу", + "DE.Views.EditChart.textType": "Тип", + "DE.Views.EditChart.textWrap": "обвивка", + "DE.Views.EditHeader.textDiffFirst": "Различна първа страница", + "DE.Views.EditHeader.textDiffOdd": "Различни страници", + "DE.Views.EditHeader.textFrom": "Започни от", + "DE.Views.EditHeader.textPageNumbering": "Номериране на страници", + "DE.Views.EditHeader.textPrev": "Продължете от предишния раздел", + "DE.Views.EditHeader.textSameAs": "Връзка към предишна", + "DE.Views.EditHyperlink.textDisplay": "показ", + "DE.Views.EditHyperlink.textEdit": "Редактиране на връзката", + "DE.Views.EditHyperlink.textLink": "връзка", + "DE.Views.EditHyperlink.textRemove": "Премахване на връзката", + "DE.Views.EditHyperlink.textTip": "Съвет на екрана", + "DE.Views.EditImage.textAddress": "адрес", + "DE.Views.EditImage.textAlign": "Изравнете", + "DE.Views.EditImage.textBack": "обратно", + "DE.Views.EditImage.textBackward": "Преместване назад", + "DE.Views.EditImage.textBehind": "зад", + "DE.Views.EditImage.textDefault": "Размер по подразбиране", + "DE.Views.EditImage.textDistanceText": "Разстояние от текста", + "DE.Views.EditImage.textForward": "Продължавай напред", + "DE.Views.EditImage.textFromLibrary": "Картина от библиотеката", + "DE.Views.EditImage.textFromURL": "Картина от URL адрес", + "DE.Views.EditImage.textImageURL": "URL адрес на изображението", + "DE.Views.EditImage.textInFront": "Отпред", + "DE.Views.EditImage.textInline": "В текста", + "DE.Views.EditImage.textLinkSettings": "Настройки на връзката", + "DE.Views.EditImage.textMoveText": "Преместване с текст", + "DE.Views.EditImage.textOverlap": "Разрешаване на припокриване", + "DE.Views.EditImage.textRemove": "Премахване на изображението", + "DE.Views.EditImage.textReorder": "Пренареждане", + "DE.Views.EditImage.textReplace": "Заменете", + "DE.Views.EditImage.textReplaceImg": "Замяна на изображението", + "DE.Views.EditImage.textSquare": "Квадрат", + "DE.Views.EditImage.textThrough": "През", + "DE.Views.EditImage.textTight": "стегнат", + "DE.Views.EditImage.textToBackground": "Изпращане до фона", + "DE.Views.EditImage.textToForeground": "Доведете до преден план", + "DE.Views.EditImage.textTopBottom": "Отгоре и отдолу", + "DE.Views.EditImage.textWrap": "обвивка", + "DE.Views.EditParagraph.textAdvanced": "напреднал", + "DE.Views.EditParagraph.textAdvSettings": "Разширени настройки", + "DE.Views.EditParagraph.textAfter": "След", + "DE.Views.EditParagraph.textAuto": "Автоматичен", + "DE.Views.EditParagraph.textBack": "обратно", + "DE.Views.EditParagraph.textBackground": "Заден план", + "DE.Views.EditParagraph.textBefore": "Преди", + "DE.Views.EditParagraph.textFromText": "Разстояние от текста", + "DE.Views.EditParagraph.textKeepLines": "Поддържайте линиите заедно", + "DE.Views.EditParagraph.textKeepNext": "Продължете със следващия", + "DE.Views.EditParagraph.textOrphan": "Контрол на сираци", + "DE.Views.EditParagraph.textPageBreak": "Страницата е прекъсната преди", + "DE.Views.EditParagraph.textPrgStyles": "Стилове на абзаци", + "DE.Views.EditParagraph.textSpaceBetween": "Пространство между параграфи", + "DE.Views.EditShape.textAlign": "Изравнете", + "DE.Views.EditShape.textBack": "обратно", + "DE.Views.EditShape.textBackward": "Преместване назад", + "DE.Views.EditShape.textBehind": "зад", + "DE.Views.EditShape.textBorder": "граница", + "DE.Views.EditShape.textColor": "цвят", + "DE.Views.EditShape.textEffects": "вещи", + "DE.Views.EditShape.textFill": "Напълнете", + "DE.Views.EditShape.textForward": "Продължавай напред", + "DE.Views.EditShape.textFromText": "Разстояние от текста", + "DE.Views.EditShape.textInFront": "Отпред", + "DE.Views.EditShape.textInline": "В текста", + "DE.Views.EditShape.textOpacity": "непрозрачност", + "DE.Views.EditShape.textOverlap": "Разрешаване на припокриване", + "DE.Views.EditShape.textRemoveShape": "Премахване на формата", + "DE.Views.EditShape.textReorder": "Пренареждане", + "DE.Views.EditShape.textReplace": "Заменете", + "DE.Views.EditShape.textSize": "Размер", + "DE.Views.EditShape.textSquare": "Квадрат", + "DE.Views.EditShape.textStyle": "стил", + "DE.Views.EditShape.textThrough": "През", + "DE.Views.EditShape.textTight": "стегнат", + "DE.Views.EditShape.textToBackground": "Изпращане до фона", + "DE.Views.EditShape.textToForeground": "Доведете до преден план", + "DE.Views.EditShape.textTopAndBottom": "Отгоре и отдолу", + "DE.Views.EditShape.textWithText": "Преместване с текст", + "DE.Views.EditShape.textWrap": "обвивка", + "DE.Views.EditTable.textAlign": "Изравнете", + "DE.Views.EditTable.textBack": "обратно", + "DE.Views.EditTable.textBandedColumn": "Колонна лента", + "DE.Views.EditTable.textBandedRow": "Обвързан ред", + "DE.Views.EditTable.textBorder": "граница", + "DE.Views.EditTable.textCellMargins": "Маржове на клетките", + "DE.Views.EditTable.textColor": "цвят", + "DE.Views.EditTable.textFill": "Напълнете", + "DE.Views.EditTable.textFirstColumn": "Първа колона", + "DE.Views.EditTable.textFlow": "Поток", + "DE.Views.EditTable.textFromText": "Разстояние от текста", + "DE.Views.EditTable.textHeaderRow": "Ред", + "DE.Views.EditTable.textInline": "В редица", + "DE.Views.EditTable.textLastColumn": "Последна колона", + "DE.Views.EditTable.textOptions": "Настроики", + "DE.Views.EditTable.textRemoveTable": "Премахване на таблицата", + "DE.Views.EditTable.textRepeatHeader": "Повторете като ред ред", + "DE.Views.EditTable.textResizeFit": "Преоразмерете, за да поберете съдържанието", + "DE.Views.EditTable.textSize": "Размер", + "DE.Views.EditTable.textStyle": "стил", + "DE.Views.EditTable.textStyleOptions": "Опции за стил", + "DE.Views.EditTable.textTableOptions": "Опции на таблицата", + "DE.Views.EditTable.textTotalRow": "Общо ред", + "DE.Views.EditTable.textWithText": "Преместване с текст", + "DE.Views.EditTable.textWrap": "обвивка", + "DE.Views.EditText.textAdditional": "Допълнителен", + "DE.Views.EditText.textAdditionalFormat": "Допълнително форматиране", + "DE.Views.EditText.textAllCaps": "Всички шапки", + "DE.Views.EditText.textAutomatic": "автоматичен", + "DE.Views.EditText.textBack": "обратно", + "DE.Views.EditText.textBullets": "Маркиран списък", + "DE.Views.EditText.textDblStrikethrough": "Двойно зачертаване", + "DE.Views.EditText.textDblSuperscript": "Горен индекс", + "DE.Views.EditText.textFontColor": "Цвят на шрифта", + "DE.Views.EditText.textFontColors": "Цветове на шрифта", + "DE.Views.EditText.textFonts": "Шрифт", + "DE.Views.EditText.textHighlightColor": "Маркирайте Цвят", + "DE.Views.EditText.textHighlightColors": "Маркирайте Цветове", + "DE.Views.EditText.textLetterSpacing": "Разстояние между буквите", + "DE.Views.EditText.textLineSpacing": "Интервал между редовете", + "DE.Views.EditText.textNone": "Нито един", + "DE.Views.EditText.textNumbers": "численост", + "DE.Views.EditText.textSize": "Размер", + "DE.Views.EditText.textSmallCaps": "Малки букви", + "DE.Views.EditText.textStrikethrough": "зачеркване", + "DE.Views.EditText.textSubscript": "Долен", + "DE.Views.Search.textCase": "Различаващ главни от малки букви", + "DE.Views.Search.textDone": "Завършен", + "DE.Views.Search.textFind": "намирам", + "DE.Views.Search.textFindAndReplace": "Намерете и заменете", + "DE.Views.Search.textHighlight": "Маркирайте резултатите", + "DE.Views.Search.textReplace": "Заменете", + "DE.Views.Search.textSearch": "Търсене", + "DE.Views.Settings.textAbout": "Относно", + "DE.Views.Settings.textAddress": "адрес", + "DE.Views.Settings.textAuthor": "Автор", + "DE.Views.Settings.textBack": "обратно", + "DE.Views.Settings.textBottom": "отдоло", + "DE.Views.Settings.textCreateDate": "Дата на създаване ", + "DE.Views.Settings.textCustom": "Персонализиран", + "DE.Views.Settings.textCustomSize": "Потребителски размер", + "DE.Views.Settings.textDocInfo": "Информация за документа", + "DE.Views.Settings.textDocTitle": "Заглавие на документ", + "DE.Views.Settings.textDocumentFormats": "Формати на документа", + "DE.Views.Settings.textDocumentSettings": "Настройки на документа", + "DE.Views.Settings.textDone": "Завършен", + "DE.Views.Settings.textDownload": "Изтегли", + "DE.Views.Settings.textDownloadAs": "Изтеглете като ...", + "DE.Views.Settings.textEditDoc": "Редактиране на документ", + "DE.Views.Settings.textEmail": "електронна поща", + "DE.Views.Settings.textFind": "намирам", + "DE.Views.Settings.textFindAndReplace": "Намерете и заменете", + "DE.Views.Settings.textFormat": "формат", + "DE.Views.Settings.textHelp": "Помощ", + "DE.Views.Settings.textLandscape": "пейзаж", + "DE.Views.Settings.textLeft": "Наляво", + "DE.Views.Settings.textLoading": "Зареждане ...", + "DE.Views.Settings.textMargins": "Полета", + "DE.Views.Settings.textOrientation": "ориентация", + "DE.Views.Settings.textPages": "Страници", + "DE.Views.Settings.textParagraphs": "Параграфи", + "DE.Views.Settings.textPortrait": "Портрет", + "DE.Views.Settings.textPoweredBy": "Задвижвани от", + "DE.Views.Settings.textPrint": "печат", + "DE.Views.Settings.textReader": "Режим на четене", + "DE.Views.Settings.textReview": "Проследяване на промените", + "DE.Views.Settings.textRight": "прав", + "DE.Views.Settings.textSettings": "Настройки", + "DE.Views.Settings.textSpaces": "Spaces", + "DE.Views.Settings.textSpellcheck": "Проверка на правописа", + "DE.Views.Settings.textStatistic": "Статистика", + "DE.Views.Settings.textSymbols": "Символи", + "DE.Views.Settings.textTel": "тел", + "DE.Views.Settings.textTop": "Отгоре", + "DE.Views.Settings.textVersion": "версия", + "DE.Views.Settings.textWords": "Думи", + "DE.Views.Settings.unknownText": "неизвестен", + "DE.Views.Toolbar.textBack": "обратно" +} \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 13fb18ac1..3d7345af1 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -14,6 +14,8 @@ "DE.Controllers.AddTable.textColumns": "Spalten", "DE.Controllers.AddTable.textRows": "Zeilen", "DE.Controllers.AddTable.textTableSize": "Tabellengröße", + "DE.Controllers.DocumentHolder.menuAccept": "Annehmen", + "DE.Controllers.DocumentHolder.menuAcceptAll": "Alles annehmen", "DE.Controllers.DocumentHolder.menuAddLink": "Link hinzufügen", "DE.Controllers.DocumentHolder.menuCopy": "Kopieren", "DE.Controllers.DocumentHolder.menuCut": "Ausschneiden", @@ -22,9 +24,14 @@ "DE.Controllers.DocumentHolder.menuMore": "Mehr", "DE.Controllers.DocumentHolder.menuOpenLink": "Link öffnen", "DE.Controllers.DocumentHolder.menuPaste": "Einfügen", + "DE.Controllers.DocumentHolder.menuReject": "Ablehnen", + "DE.Controllers.DocumentHolder.menuRejectAll": "Alles ablehnen", + "DE.Controllers.DocumentHolder.menuReview": "Review", "DE.Controllers.DocumentHolder.sheetCancel": "Abbrechen", "DE.Controllers.DocumentHolder.textGuest": "Gast", "DE.Controllers.EditContainer.textChart": "Diagramm", + "DE.Controllers.EditContainer.textFooter": "Fußzeile", + "DE.Controllers.EditContainer.textHeader": "Kopfzeile", "DE.Controllers.EditContainer.textHyperlink": "Hyperlink", "DE.Controllers.EditContainer.textImage": "Bild", "DE.Controllers.EditContainer.textParagraph": "Absatz", @@ -53,6 +60,7 @@ "DE.Controllers.Main.downloadMergeTitle": "Wird heruntergeladen", "DE.Controllers.Main.downloadTextText": "Dokument wird heruntergeladen...", "DE.Controllers.Main.downloadTitleText": "Herunterladen des Dokuments", + "DE.Controllers.Main.errorAccessDeny": "Sie versuchen die Änderungen vorzunehemen, für die Sie keine Berechtigungen haben.
    Wenden Sie sich an Ihren Document Server Serveradministrator.", "DE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Sie können nicht mehr editieren.", "DE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.
    Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.

    Mehr Informationen über die Verbindung zum Dokumentenserver finden Sie hier", @@ -60,6 +68,7 @@ "DE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.", "DE.Controllers.Main.errorDataRange": "Falscher Datenbereich.", "DE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1", + "DE.Controllers.Main.errorEditingDownloadas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
    Verwenden Sie die Option \"Herunterladen\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.", "DE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "DE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "DE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", @@ -222,6 +231,12 @@ "DE.Views.EditChart.textTopBottom": "Oben und unten", "DE.Views.EditChart.textType": "Typ", "DE.Views.EditChart.textWrap": "Umbrechen", + "DE.Views.EditHeader.textDiffFirst": "Erste Seite anders", + "DE.Views.EditHeader.textDiffOdd": "Untersch. gerade/ungerade Seiten", + "DE.Views.EditHeader.textFrom": "Starten mit", + "DE.Views.EditHeader.textPageNumbering": "Seitennummerierung", + "DE.Views.EditHeader.textPrev": "Vom vorherigen Abschnitt fortsetzen", + "DE.Views.EditHeader.textSameAs": "Mit vorheriger verknüpfen", "DE.Views.EditHyperlink.textDisplay": "Anzeigen", "DE.Views.EditHyperlink.textEdit": "Link bearbeiten", "DE.Views.EditHyperlink.textLink": "Link", @@ -352,6 +367,7 @@ "DE.Views.Settings.textAddress": "Adresse", "DE.Views.Settings.textAuthor": "Autor", "DE.Views.Settings.textBack": "Zurück", + "DE.Views.Settings.textBottom": "Unten", "DE.Views.Settings.textCreateDate": "Erstellungsdatum", "DE.Views.Settings.textCustom": "Benutzerdefiniert", "DE.Views.Settings.textCustomSize": "Benutzerdefinierte Größe", @@ -369,18 +385,25 @@ "DE.Views.Settings.textFormat": "Format", "DE.Views.Settings.textHelp": "Hilfe", "DE.Views.Settings.textLandscape": "Querformat", + "DE.Views.Settings.textLeft": "Links", "DE.Views.Settings.textLoading": "Ladevorgang...", + "DE.Views.Settings.textMargins": "Ränder", "DE.Views.Settings.textOrientation": "Orientierung", "DE.Views.Settings.textPages": "Seiten", "DE.Views.Settings.textParagraphs": "Absätze", "DE.Views.Settings.textPortrait": "Hochformat", "DE.Views.Settings.textPoweredBy": "Betrieben von", + "DE.Views.Settings.textPrint": "Drucken", "DE.Views.Settings.textReader": "Lesemodus", + "DE.Views.Settings.textReview": "Nachverfolgen von Änderungen", + "DE.Views.Settings.textRight": "Rechts", "DE.Views.Settings.textSettings": "Einstellungen", "DE.Views.Settings.textSpaces": "Abstände", + "DE.Views.Settings.textSpellcheck": "Rechtschreibprüfung", "DE.Views.Settings.textStatistic": "Statistik", "DE.Views.Settings.textSymbols": "Symbole", "DE.Views.Settings.textTel": "Tel.", + "DE.Views.Settings.textTop": "Oben", "DE.Views.Settings.textVersion": "Version", "DE.Views.Settings.textWords": "Wörter", "DE.Views.Settings.unknownText": "Unbekannt", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index a3854480d..e325b55cb 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -14,6 +14,8 @@ "DE.Controllers.AddTable.textColumns": "Columns", "DE.Controllers.AddTable.textRows": "Rows", "DE.Controllers.AddTable.textTableSize": "Table Size", + "DE.Controllers.DocumentHolder.menuAccept": "Accept", + "DE.Controllers.DocumentHolder.menuAcceptAll": "Accept All", "DE.Controllers.DocumentHolder.menuAddLink": "Add Link", "DE.Controllers.DocumentHolder.menuCopy": "Copy", "DE.Controllers.DocumentHolder.menuCut": "Cut", @@ -22,9 +24,14 @@ "DE.Controllers.DocumentHolder.menuMore": "More", "DE.Controllers.DocumentHolder.menuOpenLink": "Open Link", "DE.Controllers.DocumentHolder.menuPaste": "Paste", + "DE.Controllers.DocumentHolder.menuReject": "Reject", + "DE.Controllers.DocumentHolder.menuRejectAll": "Reject All", + "DE.Controllers.DocumentHolder.menuReview": "Review", "DE.Controllers.DocumentHolder.sheetCancel": "Cancel", "DE.Controllers.DocumentHolder.textGuest": "Guest", "DE.Controllers.EditContainer.textChart": "Chart", + "DE.Controllers.EditContainer.textFooter": "Footer", + "DE.Controllers.EditContainer.textHeader": "Header", "DE.Controllers.EditContainer.textHyperlink": "Hyperlink", "DE.Controllers.EditContainer.textImage": "Image", "DE.Controllers.EditContainer.textParagraph": "Paragraph", @@ -61,6 +68,7 @@ "DE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", "DE.Controllers.Main.errorDataRange": "Incorrect data range.", "DE.Controllers.Main.errorDefaultMessage": "Error code: %1", + "DE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy to your computer hard drive.", "DE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.", "DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", "DE.Controllers.Main.errorKeyExpire": "Key descriptor expired", @@ -223,6 +231,12 @@ "DE.Views.EditChart.textTopBottom": "Top and Bottom", "DE.Views.EditChart.textType": "Type", "DE.Views.EditChart.textWrap": "Wrap", + "DE.Views.EditHeader.textDiffFirst": "Different first page", + "DE.Views.EditHeader.textDiffOdd": "Different odd and even pages", + "DE.Views.EditHeader.textFrom": "Start at", + "DE.Views.EditHeader.textPageNumbering": "Page Numbering", + "DE.Views.EditHeader.textPrev": "Continue from previous section", + "DE.Views.EditHeader.textSameAs": "Link to Previous", "DE.Views.EditHyperlink.textDisplay": "Display", "DE.Views.EditHyperlink.textEdit": "Edit Link", "DE.Views.EditHyperlink.textLink": "Link", @@ -353,6 +367,7 @@ "DE.Views.Settings.textAddress": "address", "DE.Views.Settings.textAuthor": "Author", "DE.Views.Settings.textBack": "Back", + "DE.Views.Settings.textBottom": "Bottom", "DE.Views.Settings.textCreateDate": "Creation date", "DE.Views.Settings.textCustom": "Custom", "DE.Views.Settings.textCustomSize": "Custom Size", @@ -370,18 +385,25 @@ "DE.Views.Settings.textFormat": "Format", "DE.Views.Settings.textHelp": "Help", "DE.Views.Settings.textLandscape": "Landscape", + "DE.Views.Settings.textLeft": "Left", "DE.Views.Settings.textLoading": "Loading...", + "DE.Views.Settings.textMargins": "Margins", "DE.Views.Settings.textOrientation": "Orientation", "DE.Views.Settings.textPages": "Pages", "DE.Views.Settings.textParagraphs": "Paragraphs", "DE.Views.Settings.textPortrait": "Portrait", "DE.Views.Settings.textPoweredBy": "Powered by", + "DE.Views.Settings.textPrint": "Print", "DE.Views.Settings.textReader": "Reader Mode", + "DE.Views.Settings.textReview": "Track Changes", + "DE.Views.Settings.textRight": "Right", "DE.Views.Settings.textSettings": "Settings", "DE.Views.Settings.textSpaces": "Spaces", + "DE.Views.Settings.textSpellcheck": "Spell Checking", "DE.Views.Settings.textStatistic": "Statistic", "DE.Views.Settings.textSymbols": "Symbols", "DE.Views.Settings.textTel": "tel", + "DE.Views.Settings.textTop": "Top", "DE.Views.Settings.textVersion": "Version", "DE.Views.Settings.textWords": "Words", "DE.Views.Settings.unknownText": "Unknown", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index ee1546188..1831c3e17 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -14,6 +14,8 @@ "DE.Controllers.AddTable.textColumns": "Columnas", "DE.Controllers.AddTable.textRows": "Filas", "DE.Controllers.AddTable.textTableSize": "Tamaño de tabla", + "DE.Controllers.DocumentHolder.menuAccept": "Aceptar", + "DE.Controllers.DocumentHolder.menuAcceptAll": "Aceptar todo", "DE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ", "DE.Controllers.DocumentHolder.menuCopy": "Copiar ", "DE.Controllers.DocumentHolder.menuCut": "Cortar", @@ -22,9 +24,14 @@ "DE.Controllers.DocumentHolder.menuMore": "Más", "DE.Controllers.DocumentHolder.menuOpenLink": "Abrir enlace", "DE.Controllers.DocumentHolder.menuPaste": "Pegar", + "DE.Controllers.DocumentHolder.menuReject": "Rechazar", + "DE.Controllers.DocumentHolder.menuRejectAll": "Rechazar todo", + "DE.Controllers.DocumentHolder.menuReview": "Revista", "DE.Controllers.DocumentHolder.sheetCancel": "Cancelar", "DE.Controllers.DocumentHolder.textGuest": "Visitante", "DE.Controllers.EditContainer.textChart": "Gráfico", + "DE.Controllers.EditContainer.textFooter": "Pie de página", + "DE.Controllers.EditContainer.textHeader": "Encabezado", "DE.Controllers.EditContainer.textHyperlink": "Hiperenlace", "DE.Controllers.EditContainer.textImage": "Imagen", "DE.Controllers.EditContainer.textParagraph": "Párrafo", @@ -53,6 +60,7 @@ "DE.Controllers.Main.downloadMergeTitle": "Descargando", "DE.Controllers.Main.downloadTextText": "Cargando documento...", "DE.Controllers.Main.downloadTitleText": "Cargando documento", + "DE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.
    Por favor, contacte con su Administrador del Servidor de Documentos.", "DE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto", "DE.Controllers.Main.errorCoAuthoringDisconnect": "La conexión al servidor se ha perdido. Usted ya no puede editar.", "DE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, verifique los ajustes de conexión o contacte con su administrador.
    Cuando pulsa el botón 'OK', se le solicitará que descargue el documento.

    Encuentre más información acerca de la conexión de Servidor de Documentos aquí", @@ -60,6 +68,7 @@ "DE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.", "DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.", "DE.Controllers.Main.errorDefaultMessage": "Código de error: %1", + "DE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
    Use la opción 'Descargar' para guardar la copia de seguridad de archivo en el disco duro de su computadora.", "DE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "DE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", "DE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", @@ -222,6 +231,12 @@ "DE.Views.EditChart.textTopBottom": "Superior e inferior", "DE.Views.EditChart.textType": "Tipo", "DE.Views.EditChart.textWrap": "Envoltura", + "DE.Views.EditHeader.textDiffFirst": "Primera página diferente", + "DE.Views.EditHeader.textDiffOdd": "Páginas impares y pares diferentes", + "DE.Views.EditHeader.textFrom": "Empezar con", + "DE.Views.EditHeader.textPageNumbering": "Numeración de páginas", + "DE.Views.EditHeader.textPrev": "Continuar desde la sección anterior", + "DE.Views.EditHeader.textSameAs": "Vincular al anterior", "DE.Views.EditHyperlink.textDisplay": "Mostrar", "DE.Views.EditHyperlink.textEdit": "Editar enlace", "DE.Views.EditHyperlink.textLink": "Enlace", @@ -352,6 +367,7 @@ "DE.Views.Settings.textAddress": "dirección", "DE.Views.Settings.textAuthor": "Autor", "DE.Views.Settings.textBack": "Atrás", + "DE.Views.Settings.textBottom": "Abajo ", "DE.Views.Settings.textCreateDate": "Fecha de creación", "DE.Views.Settings.textCustom": "Personalizado", "DE.Views.Settings.textCustomSize": "Tamaño personalizado", @@ -369,18 +385,25 @@ "DE.Views.Settings.textFormat": "Formato", "DE.Views.Settings.textHelp": "Ayuda", "DE.Views.Settings.textLandscape": "Horizontal", + "DE.Views.Settings.textLeft": "A la izquierda", "DE.Views.Settings.textLoading": "Cargando...", + "DE.Views.Settings.textMargins": "Márgenes", "DE.Views.Settings.textOrientation": "Orientación ", "DE.Views.Settings.textPages": "Páginas", "DE.Views.Settings.textParagraphs": "Párrafos", "DE.Views.Settings.textPortrait": "Vertical", "DE.Views.Settings.textPoweredBy": "Desarrollado por", + "DE.Views.Settings.textPrint": "Imprimir", "DE.Views.Settings.textReader": "Modo de lectura", + "DE.Views.Settings.textReview": "Seguimiento de cambios", + "DE.Views.Settings.textRight": "A la derecha", "DE.Views.Settings.textSettings": "Ajustes", "DE.Views.Settings.textSpaces": "Espacios", + "DE.Views.Settings.textSpellcheck": "Сorrección ortográfica", "DE.Views.Settings.textStatistic": "Estadística", "DE.Views.Settings.textSymbols": "Símbolos", "DE.Views.Settings.textTel": "Tel.", + "DE.Views.Settings.textTop": "Superior", "DE.Views.Settings.textVersion": "Versión ", "DE.Views.Settings.textWords": "Palabras", "DE.Views.Settings.unknownText": "Desconocido", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index bafbc74b2..b3dd0d811 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -14,6 +14,8 @@ "DE.Controllers.AddTable.textColumns": "Colonnes", "DE.Controllers.AddTable.textRows": "Lignes", "DE.Controllers.AddTable.textTableSize": "Taille du tableau", + "DE.Controllers.DocumentHolder.menuAccept": "Accepter", + "DE.Controllers.DocumentHolder.menuAcceptAll": "Accepter tout", "DE.Controllers.DocumentHolder.menuAddLink": "Ajouter le lien", "DE.Controllers.DocumentHolder.menuCopy": "Copier", "DE.Controllers.DocumentHolder.menuCut": "Couper", @@ -22,9 +24,14 @@ "DE.Controllers.DocumentHolder.menuMore": "Plus", "DE.Controllers.DocumentHolder.menuOpenLink": "Ouvrir le lien", "DE.Controllers.DocumentHolder.menuPaste": "Coller", + "DE.Controllers.DocumentHolder.menuReject": "Rejeter", + "DE.Controllers.DocumentHolder.menuRejectAll": "Rejeter tout", + "DE.Controllers.DocumentHolder.menuReview": "Révision", "DE.Controllers.DocumentHolder.sheetCancel": "Annuler", "DE.Controllers.DocumentHolder.textGuest": "Invité", "DE.Controllers.EditContainer.textChart": "Graphique", + "DE.Controllers.EditContainer.textFooter": "Pied de page", + "DE.Controllers.EditContainer.textHeader": "En-tête", "DE.Controllers.EditContainer.textHyperlink": "Lien hypertexte", "DE.Controllers.EditContainer.textImage": "Image", "DE.Controllers.EditContainer.textParagraph": "Paragraphe", @@ -53,6 +60,7 @@ "DE.Controllers.Main.downloadMergeTitle": "Téléchargement en cours", "DE.Controllers.Main.downloadTextText": "Téléchargement du document...", "DE.Controllers.Main.downloadTitleText": "Téléchargement du document", + "DE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter l'administrateur de Document Server.", "DE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte", "DE.Controllers.Main.errorCoAuthoringDisconnect": "La connexion au serveur perdue. Désolé, vous ne pouvez plus modifier le document.", "DE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.

    Trouvez plus d'informations sur la connexion au Serveur de Documents ici", @@ -60,6 +68,7 @@ "DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.", "DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.", "DE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1", + "DE.Controllers.Main.errorEditingDownloadas": "Une erreure s'est produite lors du travail sur le document.
    Utilisez l'option \"Télécharger\" pour enregistrer la copie de sauvegarde sur le disque dur de votre ordinateur.", "DE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.", "DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", "DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", @@ -222,6 +231,11 @@ "DE.Views.EditChart.textTopBottom": "Haut et bas", "DE.Views.EditChart.textType": "Type", "DE.Views.EditChart.textWrap": "Enveloppant", + "DE.Views.EditHeader.textDiffFirst": "Première page différente", + "DE.Views.EditHeader.textDiffOdd": "Pages paires et impaires différentes", + "DE.Views.EditHeader.textPageNumbering": "Numérotation des pages", + "DE.Views.EditHeader.textPrev": "Continuer à partir de la section précédente", + "DE.Views.EditHeader.textSameAs": "Lier au précédent", "DE.Views.EditHyperlink.textDisplay": "Afficher", "DE.Views.EditHyperlink.textEdit": "Modifier le lien", "DE.Views.EditHyperlink.textLink": "Lien", @@ -352,6 +366,7 @@ "DE.Views.Settings.textAddress": "adresse", "DE.Views.Settings.textAuthor": "Auteur", "DE.Views.Settings.textBack": "Retour", + "DE.Views.Settings.textBottom": "En bas", "DE.Views.Settings.textCreateDate": "Date de création", "DE.Views.Settings.textCustom": "Personnalisé", "DE.Views.Settings.textCustomSize": "Taille personnalisée", @@ -369,18 +384,25 @@ "DE.Views.Settings.textFormat": "Format", "DE.Views.Settings.textHelp": "Aide", "DE.Views.Settings.textLandscape": "Paysage", + "DE.Views.Settings.textLeft": "A gauche", "DE.Views.Settings.textLoading": "Chargement en cours...", + "DE.Views.Settings.textMargins": "Marges", "DE.Views.Settings.textOrientation": "Orientation", "DE.Views.Settings.textPages": "Pages", "DE.Views.Settings.textParagraphs": "Paragraphes", "DE.Views.Settings.textPortrait": "Portrait", "DE.Views.Settings.textPoweredBy": "Propulsé par ", + "DE.Views.Settings.textPrint": "Imprimer", "DE.Views.Settings.textReader": "Mode de lecture", + "DE.Views.Settings.textReview": "Suivre des modifications", + "DE.Views.Settings.textRight": "A droite", "DE.Views.Settings.textSettings": "Paramètres", "DE.Views.Settings.textSpaces": "Espaces", + "DE.Views.Settings.textSpellcheck": "Vérification de l'orthographe", "DE.Views.Settings.textStatistic": "Statistique", "DE.Views.Settings.textSymbols": "Symboles", "DE.Views.Settings.textTel": "Tél.", + "DE.Views.Settings.textTop": "En haut", "DE.Views.Settings.textVersion": "Version", "DE.Views.Settings.textWords": "Mots", "DE.Views.Settings.unknownText": "Inconnu", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json new file mode 100644 index 000000000..431f07e04 --- /dev/null +++ b/apps/documenteditor/mobile/locale/hu.json @@ -0,0 +1,411 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Sztenderd színek", + "Common.UI.ThemeColorPalette.textThemeColors": "Téma színek", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "DE.Controllers.AddContainer.textImage": "Kép", + "DE.Controllers.AddContainer.textOther": "Egyéb", + "DE.Controllers.AddContainer.textShape": "Alakzat", + "DE.Controllers.AddContainer.textTable": "Táblázat", + "DE.Controllers.AddImage.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", + "DE.Controllers.AddImage.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie", + "DE.Controllers.AddOther.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie", + "DE.Controllers.AddTable.textCancel": "Mégse", + "DE.Controllers.AddTable.textColumns": "Oszlopok", + "DE.Controllers.AddTable.textRows": "Sorok", + "DE.Controllers.AddTable.textTableSize": "Táblázat méret", + "DE.Controllers.DocumentHolder.menuAccept": "Elfogad", + "DE.Controllers.DocumentHolder.menuAcceptAll": "Mindent elfogad", + "DE.Controllers.DocumentHolder.menuAddLink": "Link hozzáadása", + "DE.Controllers.DocumentHolder.menuCopy": "Másol", + "DE.Controllers.DocumentHolder.menuCut": "Kivág", + "DE.Controllers.DocumentHolder.menuDelete": "Töröl", + "DE.Controllers.DocumentHolder.menuEdit": "Szerkeszt", + "DE.Controllers.DocumentHolder.menuMore": "Még", + "DE.Controllers.DocumentHolder.menuOpenLink": "Link megnyitása", + "DE.Controllers.DocumentHolder.menuPaste": "Beilleszt", + "DE.Controllers.DocumentHolder.menuReject": "Elutasít", + "DE.Controllers.DocumentHolder.menuRejectAll": "Elutasít mindent", + "DE.Controllers.DocumentHolder.menuReview": "Összefoglaló", + "DE.Controllers.DocumentHolder.sheetCancel": "Mégse", + "DE.Controllers.DocumentHolder.textGuest": "Vendég", + "DE.Controllers.EditContainer.textChart": "Diagram", + "DE.Controllers.EditContainer.textFooter": "Lábléc", + "DE.Controllers.EditContainer.textHeader": "Fejléc", + "DE.Controllers.EditContainer.textHyperlink": "Hivatkozás", + "DE.Controllers.EditContainer.textImage": "Kép", + "DE.Controllers.EditContainer.textParagraph": "Bekezdés", + "DE.Controllers.EditContainer.textSettings": "Beállítások", + "DE.Controllers.EditContainer.textShape": "Alakzat", + "DE.Controllers.EditContainer.textTable": "Táblázat", + "DE.Controllers.EditContainer.textText": "Szöveg", + "DE.Controllers.EditImage.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", + "DE.Controllers.EditImage.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie", + "DE.Controllers.EditText.textAuto": "Auto", + "DE.Controllers.EditText.textFonts": "Betűtípusok", + "DE.Controllers.EditText.textPt": "pt", + "DE.Controllers.Main.advDRMEnterPassword": "Adja meg a jelszavát:", + "DE.Controllers.Main.advDRMOptions": "Védett fájl", + "DE.Controllers.Main.advDRMPassword": "Jelszó", + "DE.Controllers.Main.advTxtOptions": "TXT beállítások", + "DE.Controllers.Main.applyChangesTextText": "Adatok betöltése...", + "DE.Controllers.Main.applyChangesTitleText": "Adatok betöltése", + "DE.Controllers.Main.closeButtonText": "Fájl bezárása", + "DE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.", + "DE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\"-t a dokumentumok listájához.", + "DE.Controllers.Main.criticalErrorTitle": "Hiba", + "DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Dokumentum Szerkesztő", + "DE.Controllers.Main.downloadErrorText": "Sikertelen letöltés.", + "DE.Controllers.Main.downloadMergeText": "Letöltés...", + "DE.Controllers.Main.downloadMergeTitle": "Letöltés", + "DE.Controllers.Main.downloadTextText": "Dokumentum letöltése...", + "DE.Controllers.Main.downloadTitleText": "Dokumentum letöltése", + "DE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.
    Vegye fel a kapcsolatot a Document Server adminisztrátorával.", + "DE.Controllers.Main.errorBadImageUrl": "Hibás kép URL", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "A szerver elveszítette a kapcsolatot. A további szerkesztés nem lehetséges.", + "DE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.
    Ha az 'OK'-ra kattint letöltheti a dokumentumot.

    Bővebb információk a Dokumentum Szerverhez kapcsolódásról itt találhat.", + "DE.Controllers.Main.errorDatabaseConnection": "Külső hiba.
    Adatbázis kapcsolati hiba. Kérem vegye igénybe támogatásunkat.", + "DE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", + "DE.Controllers.Main.errorDataRange": "Hibás adattartomány.", + "DE.Controllers.Main.errorDefaultMessage": "Hibakód: %1", + "DE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
    Használja a 'Letölt' opciót, hogy elmentse a fájl biztonsági másolatát a számítógép merevlemezére.", + "DE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", + "DE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró", + "DE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró", + "DE.Controllers.Main.errorMailMergeLoadFile": "A betöltés sikertelen", + "DE.Controllers.Main.errorMailMergeSaveFile": "Sikertelen összevonás.", + "DE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés.", + "DE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", + "DE.Controllers.Main.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:
    nyitó ár, maximum ár, minimum ár, záró ár.", + "DE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", + "DE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető", + "DE.Controllers.Main.errorUsersExceed": "A felhasználók száma túllépve", + "DE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is látható a dokumentum,
    de a kapcsolat helyreállításáig nem lehet letölteni.", + "DE.Controllers.Main.leavePageText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ", + "DE.Controllers.Main.loadFontsTextText": "Adatok betöltése...", + "DE.Controllers.Main.loadFontsTitleText": "Adatok betöltése", + "DE.Controllers.Main.loadFontTextText": "Adatok betöltése...", + "DE.Controllers.Main.loadFontTitleText": "Adatok betöltése", + "DE.Controllers.Main.loadImagesTextText": "Képek betöltése...", + "DE.Controllers.Main.loadImagesTitleText": "Képek betöltése", + "DE.Controllers.Main.loadImageTextText": "Kép betöltése...", + "DE.Controllers.Main.loadImageTitleText": "Kép betöltése", + "DE.Controllers.Main.loadingDocumentTextText": "Dokumentum betöltése...", + "DE.Controllers.Main.loadingDocumentTitleText": "Dokumentum betöltése", + "DE.Controllers.Main.mailMergeLoadFileText": "Adat forrás betöltése...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "Adat forrás betöltése", + "DE.Controllers.Main.notcriticalErrorTitle": "Figyelmeztetés", + "DE.Controllers.Main.openErrorText": "Hiba történt a fájl megnyitása során", + "DE.Controllers.Main.openTextText": "Dokumentum megnyitása...", + "DE.Controllers.Main.openTitleText": "Dokumentum megnyitása", + "DE.Controllers.Main.printTextText": "Dokumentum nyomtatása...", + "DE.Controllers.Main.printTitleText": "Dokumentum nyomtatása", + "DE.Controllers.Main.saveErrorText": "Hiba történt a fájl mentése során", + "DE.Controllers.Main.savePreparingText": "Felkészülés mentésre", + "DE.Controllers.Main.savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...", + "DE.Controllers.Main.saveTextText": "Dokumentum mentése...", + "DE.Controllers.Main.saveTitleText": "Dokumentum mentése", + "DE.Controllers.Main.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", + "DE.Controllers.Main.sendMergeText": "Összevont küldés...", + "DE.Controllers.Main.sendMergeTitle": "Összevont küldés", + "DE.Controllers.Main.splitDividerErrorText": "A soroknak számának a(z) %1 osztójának kell lennie", + "DE.Controllers.Main.splitMaxColsErrorText": "Az oszlopok számának kevesebbnek kell lennie mint %1", + "DE.Controllers.Main.splitMaxRowsErrorText": "A soroknak számának kevesebbnek kell lennie, mint %1", + "DE.Controllers.Main.textAnonymous": "Névtelen", + "DE.Controllers.Main.textBack": "Vissza", + "DE.Controllers.Main.textBuyNow": "Weboldalt meglátogat", + "DE.Controllers.Main.textCancel": "Mégse", + "DE.Controllers.Main.textClose": "Bezár", + "DE.Controllers.Main.textContactUs": "Értékesítés elérhetősége", + "DE.Controllers.Main.textDone": "Kész", + "DE.Controllers.Main.textLoadingDocument": "Dokumentum betöltése", + "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE kapcsolódási limitáció", + "DE.Controllers.Main.textOK": "OK", + "DE.Controllers.Main.textPassword": "Jelszó", + "DE.Controllers.Main.textPreloader": "Betöltés...", + "DE.Controllers.Main.textTryUndoRedo": "A Visszavonás/Újra funkciók nem elérhetőek Gyors közös szerkesztés módban.", + "DE.Controllers.Main.textUsername": "Felhasználói név", + "DE.Controllers.Main.titleLicenseExp": "Lejárt licenc", + "DE.Controllers.Main.titleServerVersion": "Szerkesztő frissítve", + "DE.Controllers.Main.titleUpdateVersion": "A verzió megváltozott", + "DE.Controllers.Main.txtArt": "Írja a szöveget ide", + "DE.Controllers.Main.txtDiagramTitle": "Diagram címe", + "DE.Controllers.Main.txtEditingMode": "Szerkesztési mód beállítása...", + "DE.Controllers.Main.txtFooter": "Lábléc", + "DE.Controllers.Main.txtHeader": "Fejléc", + "DE.Controllers.Main.txtProtected": "Amint beírásra került a kód és megnyílt a fájl, a fájl jelenlegi kódja visszaállítódik.", + "DE.Controllers.Main.txtSeries": "Sorozatok", + "DE.Controllers.Main.txtStyle_footnote_text": "Lábjegyzet szövege", + "DE.Controllers.Main.txtStyle_Heading_1": "Címsor 1", + "DE.Controllers.Main.txtStyle_Heading_2": "Címsor 2", + "DE.Controllers.Main.txtStyle_Heading_3": "Címsor 3", + "DE.Controllers.Main.txtStyle_Heading_4": "Címsor 4", + "DE.Controllers.Main.txtStyle_Heading_5": "Címsor 5", + "DE.Controllers.Main.txtStyle_Heading_6": "Címsor 6", + "DE.Controllers.Main.txtStyle_Heading_7": "Címsor 7", + "DE.Controllers.Main.txtStyle_Heading_8": "Címsor 8", + "DE.Controllers.Main.txtStyle_Heading_9": "Címsor 9", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote", + "DE.Controllers.Main.txtStyle_List_Paragraph": "Lista bekezdés", + "DE.Controllers.Main.txtStyle_No_Spacing": "Nincs térköz", + "DE.Controllers.Main.txtStyle_Normal": "Normál", + "DE.Controllers.Main.txtStyle_Quote": "Idézet", + "DE.Controllers.Main.txtStyle_Subtitle": "Alcím", + "DE.Controllers.Main.txtStyle_Title": "Cím", + "DE.Controllers.Main.txtXAxis": "X tengely", + "DE.Controllers.Main.txtYAxis": "Y tengely", + "DE.Controllers.Main.unknownErrorText": "Ismeretlen hiba.", + "DE.Controllers.Main.unsupportedBrowserErrorText": "A böngészője nem támogatott.", + "DE.Controllers.Main.uploadImageExtMessage": "Ismeretlen képformátum.", + "DE.Controllers.Main.uploadImageFileCountMessage": "Nincs kép feltöltve.", + "DE.Controllers.Main.uploadImageSizeMessage": "Elérte a maximum kép méret limitet.", + "DE.Controllers.Main.uploadImageTextText": "Kép feltöltése...", + "DE.Controllers.Main.uploadImageTitleText": "Kép feltöltése", + "DE.Controllers.Main.warnLicenseExceeded": "A párhuzamos kapcsolódások száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.
    Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.", + "DE.Controllers.Main.warnLicenseExp": "A licence lejárt.
    Kérem frissítse a licencét, majd az oldalt.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "A párhuzamos felhasználók száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.
    Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.", + "DE.Controllers.Main.warnNoLicense": "Ez a verziója az ONLYOFFICE Szerkesztőnek bizonyos limitációkat tartalmaz párhuzamos kapcsolódások terén a dokumentum szerverhez.
    Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.", + "DE.Controllers.Main.warnNoLicenseUsers": "Ez a verziója az ONLYOFFICE Szerkesztőnek bizonyos limitációkat tartalmaz párhuzamosan kapcsolódott felhasználók terén.
    Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.", + "DE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.", + "DE.Controllers.Search.textNoTextFound": "A szöveg nem található", + "DE.Controllers.Search.textReplaceAll": "Mindent cserél", + "DE.Controllers.Settings.notcriticalErrorTitle": "Figyelmeztetés", + "DE.Controllers.Settings.txtLoading": "Betöltés...", + "DE.Controllers.Settings.unknownText": "Ismeretlen", + "DE.Controllers.Settings.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
    Biztos benne, hogy folytatni akarja?", + "DE.Controllers.Toolbar.dlgLeaveMsgText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ", + "DE.Controllers.Toolbar.dlgLeaveTitleText": "Bezárja az alkalmazást", + "DE.Controllers.Toolbar.leaveButtonText": "Oldal elhagyása", + "DE.Controllers.Toolbar.stayButtonText": "Maradni az oldalon", + "DE.Views.AddImage.textAddress": "Cím", + "DE.Views.AddImage.textBack": "Vissza", + "DE.Views.AddImage.textFromLibrary": "Kép a galériából", + "DE.Views.AddImage.textFromURL": "Kép URL-en keresztül", + "DE.Views.AddImage.textImageURL": "Kép URL", + "DE.Views.AddImage.textInsertImage": "Kép beszúrása", + "DE.Views.AddImage.textLinkSettings": "Link beállítások", + "DE.Views.AddOther.textAddLink": "Link hozzáadása", + "DE.Views.AddOther.textBack": "Vissza", + "DE.Views.AddOther.textCenterBottom": "Alul középen", + "DE.Views.AddOther.textCenterTop": "Felül középen", + "DE.Views.AddOther.textColumnBreak": "Oszlop törés", + "DE.Views.AddOther.textContPage": "Előző oldal", + "DE.Views.AddOther.textCurrentPos": "Jelenlegi pozíció", + "DE.Views.AddOther.textDisplay": "Megmutat", + "DE.Views.AddOther.textEvenPage": "Páros oldal", + "DE.Views.AddOther.textInsert": "Beszúr", + "DE.Views.AddOther.textLeftBottom": "Bal alsó", + "DE.Views.AddOther.textLeftTop": "Bal felső", + "DE.Views.AddOther.textLink": "Link", + "DE.Views.AddOther.textNextPage": "Következő oldal", + "DE.Views.AddOther.textOddPage": "Páratlan oldal", + "DE.Views.AddOther.textPageBreak": "Lap törés", + "DE.Views.AddOther.textPageNumber": "Oldalszám", + "DE.Views.AddOther.textPosition": "Pozíció", + "DE.Views.AddOther.textRightBottom": "Jobb alsó", + "DE.Views.AddOther.textRightTop": "Jobb felső", + "DE.Views.AddOther.textSectionBreak": "Szekció törés", + "DE.Views.AddOther.textTip": "Gyorstipp", + "DE.Views.EditChart.textAlign": "Rendez", + "DE.Views.EditChart.textBack": "Vissza", + "DE.Views.EditChart.textBackward": "Hátra mozgat", + "DE.Views.EditChart.textBehind": "Mögött", + "DE.Views.EditChart.textBorder": "Szegély", + "DE.Views.EditChart.textColor": "Szín", + "DE.Views.EditChart.textDistanceText": "Távolság a szövegtől", + "DE.Views.EditChart.textFill": "Kitölt", + "DE.Views.EditChart.textForward": "Előre mozgat", + "DE.Views.EditChart.textInFront": "Elött", + "DE.Views.EditChart.textInline": "Sorban", + "DE.Views.EditChart.textMoveText": "Szöveggel mozgat", + "DE.Views.EditChart.textOverlap": "Átfedés engedélyezése", + "DE.Views.EditChart.textRemoveChart": "Diagram eltávolítása", + "DE.Views.EditChart.textReorder": "Újrarendez", + "DE.Views.EditChart.textSize": "Méret", + "DE.Views.EditChart.textSquare": "Négyszögben", + "DE.Views.EditChart.textStyle": "Stílus", + "DE.Views.EditChart.textThrough": "Körbefutva", + "DE.Views.EditChart.textTight": "Szűken", + "DE.Views.EditChart.textToBackground": "Háttérbe küld", + "DE.Views.EditChart.textToForeground": "Előlre hoz", + "DE.Views.EditChart.textTopBottom": "Felül - alul", + "DE.Views.EditChart.textType": "Típus", + "DE.Views.EditChart.textWrap": "Tördel", + "DE.Views.EditHeader.textDiffFirst": "Eltérő első oldal", + "DE.Views.EditHeader.textDiffOdd": "Páros és páratlan oldalak eltérőek", + "DE.Views.EditHeader.textFrom": "Kezdés", + "DE.Views.EditHeader.textPageNumbering": "Oldalszámozás", + "DE.Views.EditHeader.textPrev": "Folytás az előző résztől", + "DE.Views.EditHeader.textSameAs": "Korábbira hivatkozás", + "DE.Views.EditHyperlink.textDisplay": "Megmutat", + "DE.Views.EditHyperlink.textEdit": "Hivatkozás szerkesztése", + "DE.Views.EditHyperlink.textLink": "Link", + "DE.Views.EditHyperlink.textRemove": "Link eltávolítása", + "DE.Views.EditHyperlink.textTip": "Gyorstipp", + "DE.Views.EditImage.textAddress": "Cím", + "DE.Views.EditImage.textAlign": "Rendez", + "DE.Views.EditImage.textBack": "Vissza", + "DE.Views.EditImage.textBackward": "Hátra mozgat", + "DE.Views.EditImage.textBehind": "Mögött", + "DE.Views.EditImage.textDefault": "Alapértelmezett méret", + "DE.Views.EditImage.textDistanceText": "Távolság a szövegtől", + "DE.Views.EditImage.textForward": "Előre mozgat", + "DE.Views.EditImage.textFromLibrary": "Kép a galériából", + "DE.Views.EditImage.textFromURL": "Kép URL-en keresztül", + "DE.Views.EditImage.textImageURL": "Kép URL", + "DE.Views.EditImage.textInFront": "Elöl", + "DE.Views.EditImage.textInline": "Sorban", + "DE.Views.EditImage.textLinkSettings": "Link beállítások", + "DE.Views.EditImage.textMoveText": "Szöveggel mozgat", + "DE.Views.EditImage.textOverlap": "Átfedés engedélyezése", + "DE.Views.EditImage.textRemove": "Kép eltávolítása", + "DE.Views.EditImage.textReorder": "Újrarendez", + "DE.Views.EditImage.textReplace": "Cserél", + "DE.Views.EditImage.textReplaceImg": "Képet cserél", + "DE.Views.EditImage.textSquare": "Négyszögben", + "DE.Views.EditImage.textThrough": "Körbefutva", + "DE.Views.EditImage.textTight": "Szűken", + "DE.Views.EditImage.textToBackground": "Háttérbe küld", + "DE.Views.EditImage.textToForeground": "Elölre hoz", + "DE.Views.EditImage.textTopBottom": "Felül - alul", + "DE.Views.EditImage.textWrap": "Tördel", + "DE.Views.EditParagraph.textAdvanced": "Haladó", + "DE.Views.EditParagraph.textAdvSettings": "Haladó beállítások", + "DE.Views.EditParagraph.textAfter": "Utána", + "DE.Views.EditParagraph.textAuto": "Auto", + "DE.Views.EditParagraph.textBack": "Vissza", + "DE.Views.EditParagraph.textBackground": "Háttér", + "DE.Views.EditParagraph.textBefore": "Elötte", + "DE.Views.EditParagraph.textFromText": "Távolság a szövegtől", + "DE.Views.EditParagraph.textKeepLines": "Sorok egyben tartása", + "DE.Views.EditParagraph.textKeepNext": "Következővel együtt tartás", + "DE.Views.EditParagraph.textOrphan": "Árva sor", + "DE.Views.EditParagraph.textPageBreak": "Oldaltörés", + "DE.Views.EditParagraph.textPrgStyles": "Bekezdés stílusok", + "DE.Views.EditParagraph.textSpaceBetween": "Bekezdések térköze", + "DE.Views.EditShape.textAlign": "Rendez", + "DE.Views.EditShape.textBack": "Vissza", + "DE.Views.EditShape.textBackward": "Hátra mozgat", + "DE.Views.EditShape.textBehind": "Mögött", + "DE.Views.EditShape.textBorder": "Szegély", + "DE.Views.EditShape.textColor": "Szín", + "DE.Views.EditShape.textEffects": "Effektek", + "DE.Views.EditShape.textFill": "Kitölt", + "DE.Views.EditShape.textForward": "Előre mozgat", + "DE.Views.EditShape.textFromText": "Távolság a szövegtől", + "DE.Views.EditShape.textInFront": "Elöl", + "DE.Views.EditShape.textInline": "Sorban", + "DE.Views.EditShape.textOpacity": "Átlátszóság", + "DE.Views.EditShape.textOverlap": "Átfedés engedélyezése", + "DE.Views.EditShape.textRemoveShape": "Alakzat eltávolítása", + "DE.Views.EditShape.textReorder": "Újrarendez", + "DE.Views.EditShape.textReplace": "Cserél", + "DE.Views.EditShape.textSize": "Méret", + "DE.Views.EditShape.textSquare": "Négyszögben", + "DE.Views.EditShape.textStyle": "Stílus", + "DE.Views.EditShape.textThrough": "Körbefutva", + "DE.Views.EditShape.textTight": "Szűken", + "DE.Views.EditShape.textToBackground": "Háttérbe küld", + "DE.Views.EditShape.textToForeground": "Elölre hoz", + "DE.Views.EditShape.textTopAndBottom": "Felül - alul", + "DE.Views.EditShape.textWithText": "Szöveggel mozgat", + "DE.Views.EditShape.textWrap": "Tördel", + "DE.Views.EditTable.textAlign": "Rendez", + "DE.Views.EditTable.textBack": "Vissza", + "DE.Views.EditTable.textBandedColumn": "Oszlopok csíkozása", + "DE.Views.EditTable.textBandedRow": "Sorok csíkozása", + "DE.Views.EditTable.textBorder": "Szegély", + "DE.Views.EditTable.textCellMargins": "Cella margók", + "DE.Views.EditTable.textColor": "Szín", + "DE.Views.EditTable.textFill": "Kitölt", + "DE.Views.EditTable.textFirstColumn": "Első oszlop", + "DE.Views.EditTable.textFlow": "Flow", + "DE.Views.EditTable.textFromText": "Távolság a szövegtől", + "DE.Views.EditTable.textHeaderRow": "Fejléc sor", + "DE.Views.EditTable.textInline": "Sorban", + "DE.Views.EditTable.textLastColumn": "Utolsó oszlop", + "DE.Views.EditTable.textOptions": "Beállítások", + "DE.Views.EditTable.textRemoveTable": "Táblázat eltávolítása", + "DE.Views.EditTable.textRepeatHeader": "Fejléc sorként megismétel", + "DE.Views.EditTable.textResizeFit": "Átméretez, hogy illeszkedjen a tartalom", + "DE.Views.EditTable.textSize": "Méret", + "DE.Views.EditTable.textStyle": "Stílus", + "DE.Views.EditTable.textStyleOptions": "Stílus beállítások", + "DE.Views.EditTable.textTableOptions": "Táblázat beállítások", + "DE.Views.EditTable.textTotalRow": "Összes sor", + "DE.Views.EditTable.textWithText": "Szöveggel mozgat", + "DE.Views.EditTable.textWrap": "Tördel", + "DE.Views.EditText.textAdditional": "További", + "DE.Views.EditText.textAdditionalFormat": "További formázás", + "DE.Views.EditText.textAllCaps": "Minden nagybetű", + "DE.Views.EditText.textAutomatic": "Automatikus", + "DE.Views.EditText.textBack": "Vissza", + "DE.Views.EditText.textBullets": "Felsorolás", + "DE.Views.EditText.textDblStrikethrough": "Dupla áthúzás", + "DE.Views.EditText.textDblSuperscript": "Felső index", + "DE.Views.EditText.textFontColor": "Betűszín", + "DE.Views.EditText.textFontColors": "Betűszínek", + "DE.Views.EditText.textFonts": "Betűtípusok", + "DE.Views.EditText.textHighlightColor": "Színes kiemelés", + "DE.Views.EditText.textHighlightColors": "Kiemelő színek", + "DE.Views.EditText.textLetterSpacing": "Betűtávolság", + "DE.Views.EditText.textLineSpacing": "Sortávolság", + "DE.Views.EditText.textNone": "Nincs", + "DE.Views.EditText.textNumbers": "Számozás", + "DE.Views.EditText.textSize": "Méret", + "DE.Views.EditText.textSmallCaps": "Kisbetűk", + "DE.Views.EditText.textStrikethrough": "Áthúzás", + "DE.Views.EditText.textSubscript": "Alsó index", + "DE.Views.Search.textCase": "Feltétel érzékeny", + "DE.Views.Search.textDone": "Kész", + "DE.Views.Search.textFind": "Keres", + "DE.Views.Search.textFindAndReplace": "Keres és cserél", + "DE.Views.Search.textHighlight": "Kiemelés eredményei", + "DE.Views.Search.textReplace": "Cserél", + "DE.Views.Search.textSearch": "Keresés", + "DE.Views.Settings.textAbout": "Névjegy", + "DE.Views.Settings.textAddress": "Cím", + "DE.Views.Settings.textAuthor": "Szerző", + "DE.Views.Settings.textBack": "Vissza", + "DE.Views.Settings.textBottom": "Alsó", + "DE.Views.Settings.textCreateDate": "Létrehozás dátuma", + "DE.Views.Settings.textCustom": "Egyéni", + "DE.Views.Settings.textCustomSize": "Egyéni méret", + "DE.Views.Settings.textDocInfo": "Dokumentum info", + "DE.Views.Settings.textDocTitle": "Dokumentum címe", + "DE.Views.Settings.textDocumentFormats": "Dokumentum formátum", + "DE.Views.Settings.textDocumentSettings": "Dokumentum beállítások", + "DE.Views.Settings.textDone": "Kész", + "DE.Views.Settings.textDownload": "Letöltés", + "DE.Views.Settings.textDownloadAs": "Letöltés mint...", + "DE.Views.Settings.textEditDoc": "Dokumentum szerkesztése", + "DE.Views.Settings.textEmail": "Email", + "DE.Views.Settings.textFind": "Keres", + "DE.Views.Settings.textFindAndReplace": "Keres és cserél", + "DE.Views.Settings.textFormat": "Formátum", + "DE.Views.Settings.textHelp": "Segítség", + "DE.Views.Settings.textLandscape": "Tájkép", + "DE.Views.Settings.textLeft": "Bal", + "DE.Views.Settings.textLoading": "Betöltés...", + "DE.Views.Settings.textMargins": "Margók", + "DE.Views.Settings.textOrientation": "Tájolás", + "DE.Views.Settings.textPages": "Oldalak", + "DE.Views.Settings.textParagraphs": "Bekezdések", + "DE.Views.Settings.textPortrait": "Portré", + "DE.Views.Settings.textPoweredBy": "Powered by", + "DE.Views.Settings.textPrint": "Nyomtat", + "DE.Views.Settings.textReader": "Olvasási mód", + "DE.Views.Settings.textReview": "Módosítások követése", + "DE.Views.Settings.textRight": "Jobb", + "DE.Views.Settings.textSettings": "Beállítások", + "DE.Views.Settings.textSpaces": "Térközök", + "DE.Views.Settings.textSpellcheck": "Helyesírás-ellenőrzés", + "DE.Views.Settings.textStatistic": "Statisztika", + "DE.Views.Settings.textSymbols": "Szimbólumok", + "DE.Views.Settings.textTel": "Tel.", + "DE.Views.Settings.textTop": "Felső", + "DE.Views.Settings.textVersion": "Verzió", + "DE.Views.Settings.textWords": "Szavak", + "DE.Views.Settings.unknownText": "Ismeretlen", + "DE.Views.Toolbar.textBack": "Vissza" +} \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 983ac0a64..ca2219929 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -14,6 +14,8 @@ "DE.Controllers.AddTable.textColumns": "Colonne", "DE.Controllers.AddTable.textRows": "Righe", "DE.Controllers.AddTable.textTableSize": "Dimensioni tabella", + "DE.Controllers.DocumentHolder.menuAccept": "Accetta", + "DE.Controllers.DocumentHolder.menuAcceptAll": "Accetta tutto", "DE.Controllers.DocumentHolder.menuAddLink": "Aggiungi collegamento", "DE.Controllers.DocumentHolder.menuCopy": "Copia", "DE.Controllers.DocumentHolder.menuCut": "Taglia", @@ -22,9 +24,14 @@ "DE.Controllers.DocumentHolder.menuMore": "Altro", "DE.Controllers.DocumentHolder.menuOpenLink": "Apri collegamento", "DE.Controllers.DocumentHolder.menuPaste": "Incolla", + "DE.Controllers.DocumentHolder.menuReject": "Respingi", + "DE.Controllers.DocumentHolder.menuRejectAll": "Respingi tutti", + "DE.Controllers.DocumentHolder.menuReview": "Revisione", "DE.Controllers.DocumentHolder.sheetCancel": "Annulla", "DE.Controllers.DocumentHolder.textGuest": "Ospite", "DE.Controllers.EditContainer.textChart": "Grafico", + "DE.Controllers.EditContainer.textFooter": "Piè di pagina", + "DE.Controllers.EditContainer.textHeader": "Intestazione", "DE.Controllers.EditContainer.textHyperlink": "Collegamento ipertestuale", "DE.Controllers.EditContainer.textImage": "Immagine", "DE.Controllers.EditContainer.textParagraph": "Paragrafo", @@ -53,6 +60,7 @@ "DE.Controllers.Main.downloadMergeTitle": "Scaricamento", "DE.Controllers.Main.downloadTextText": "Scaricamento del documento in corso...", "DE.Controllers.Main.downloadTitleText": "Scaricamento del documento", + "DE.Controllers.Main.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.
    Si prega di contattare l'amministratore del Server dei Documenti.", "DE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretto", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Scollegato dal server. Non è possibile modificare.", "DE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore.
    Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.

    Per maggiori dettagli sulla connessione al Document Server clicca qui", @@ -60,6 +68,7 @@ "DE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.", "DE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.", "DE.Controllers.Main.errorDefaultMessage": "Codice errore: %1", + "DE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore mentre si lavorava sul documento.
    Utilizzare l'opzione 'Scarica' per salvare la copia di backup del file sul disco rigido del computer.", "DE.Controllers.Main.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto", "DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", @@ -222,6 +231,12 @@ "DE.Views.EditChart.textTopBottom": "Sopra e sotto", "DE.Views.EditChart.textType": "Tipo", "DE.Views.EditChart.textWrap": "Racchiudi", + "DE.Views.EditHeader.textDiffFirst": "Diverso per la prima pagina", + "DE.Views.EditHeader.textDiffOdd": "Diversi per pagine pari e dispari", + "DE.Views.EditHeader.textFrom": "Inizia da", + "DE.Views.EditHeader.textPageNumbering": "Numerazione pagina", + "DE.Views.EditHeader.textPrev": "Continua dalla selezione precedente", + "DE.Views.EditHeader.textSameAs": "Collega a precedente", "DE.Views.EditHyperlink.textDisplay": "Visualizza", "DE.Views.EditHyperlink.textEdit": "Modifica collegamento", "DE.Views.EditHyperlink.textLink": "Collegamento", @@ -352,6 +367,7 @@ "DE.Views.Settings.textAddress": "indirizzo", "DE.Views.Settings.textAuthor": "Autore", "DE.Views.Settings.textBack": "Indietro", + "DE.Views.Settings.textBottom": "In basso", "DE.Views.Settings.textCreateDate": "Data di creazione", "DE.Views.Settings.textCustom": "Personalizzato", "DE.Views.Settings.textCustomSize": "Dimensione personalizzata", @@ -369,18 +385,25 @@ "DE.Views.Settings.textFormat": "Formato", "DE.Views.Settings.textHelp": "Guida", "DE.Views.Settings.textLandscape": "Orizzontale", + "DE.Views.Settings.textLeft": "A sinistra", "DE.Views.Settings.textLoading": "Caricamento in corso...", + "DE.Views.Settings.textMargins": "Margini", "DE.Views.Settings.textOrientation": "Orientamento", "DE.Views.Settings.textPages": "Pagine", "DE.Views.Settings.textParagraphs": "Paragrafi", "DE.Views.Settings.textPortrait": "Verticale", "DE.Views.Settings.textPoweredBy": "Con tecnologia", + "DE.Views.Settings.textPrint": "Stampa", "DE.Views.Settings.textReader": "Modalità Lettore", + "DE.Views.Settings.textReview": "Traccia cambiamenti", + "DE.Views.Settings.textRight": "A destra", "DE.Views.Settings.textSettings": "Impostazioni", "DE.Views.Settings.textSpaces": "Spazi", + "DE.Views.Settings.textSpellcheck": "Controllo ortografia", "DE.Views.Settings.textStatistic": "Statistica", "DE.Views.Settings.textSymbols": "Simboli", "DE.Views.Settings.textTel": "Tel.", + "DE.Views.Settings.textTop": "In alto", "DE.Views.Settings.textVersion": "Versione", "DE.Views.Settings.textWords": "Parole", "DE.Views.Settings.unknownText": "Sconosciuto", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 3eda56394..4cbf8c19b 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -24,6 +24,11 @@ "DE.Controllers.DocumentHolder.menuPaste": "Вставить", "DE.Controllers.DocumentHolder.sheetCancel": "Отмена", "DE.Controllers.DocumentHolder.textGuest": "Гость", + "DE.Controllers.DocumentHolder.menuReview": "Рецензирование", + "DE.Controllers.DocumentHolder.menuAccept": "Принять", + "DE.Controllers.DocumentHolder.menuAcceptAll": "Принять Все", + "DE.Controllers.DocumentHolder.menuReject": "Отклонить", + "DE.Controllers.DocumentHolder.menuRejectAll": "Отклонить Все", "DE.Controllers.EditContainer.textChart": "Диаграмма", "DE.Controllers.EditContainer.textHyperlink": "Гиперссылка", "DE.Controllers.EditContainer.textImage": "Изображение", @@ -32,6 +37,8 @@ "DE.Controllers.EditContainer.textShape": "Фигура", "DE.Controllers.EditContainer.textTable": "Таблица", "DE.Controllers.EditContainer.textText": "Текст", + "DE.Controllers.EditContainer.textHeader": "Колонтитул", + "DE.Controllers.EditContainer.textFooter": "Колонтитул", "DE.Controllers.EditImage.textEmptyImgUrl": "Необходимо указать URL изображения.", "DE.Controllers.EditImage.txtNotUrl": "Это поле должно быть URL-адресом в формате 'http://www.example.com'", "DE.Controllers.EditText.textAuto": "Авто", @@ -53,6 +60,7 @@ "DE.Controllers.Main.downloadMergeTitle": "Загрузка", "DE.Controllers.Main.downloadTextText": "Загрузка документа...", "DE.Controllers.Main.downloadTitleText": "Загрузка документа", + "DE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.
    Пожалуйста, обратитесь к администратору Сервера документов.", "DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Подключение к серверу прервано. Редактирование недоступно.", "DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.
    Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.

    Дополнительную информацию о подключении Сервера документов можно найти здесь", @@ -222,6 +230,12 @@ "DE.Views.EditChart.textTopBottom": "Сверху и снизу", "DE.Views.EditChart.textType": "Тип", "DE.Views.EditChart.textWrap": "Стиль обтекания", + "DE.Views.EditHeader.textDiffFirst": "Особый для первой страницы", + "DE.Views.EditHeader.textDiffOdd": "Разные для четных и нечетных", + "DE.Views.EditHeader.textSameAs": "Связать с предыдущим", + "DE.Views.EditHeader.textPageNumbering": "Нумерация страниц", + "DE.Views.EditHeader.textPrev": "Продолжить", + "DE.Views.EditHeader.textFrom": "Начать с", "DE.Views.EditHyperlink.textDisplay": "Отобразить", "DE.Views.EditHyperlink.textEdit": "Редактировать ссылку", "DE.Views.EditHyperlink.textLink": "Ссылка", @@ -384,5 +398,13 @@ "DE.Views.Settings.textVersion": "Версия", "DE.Views.Settings.textWords": "Слова", "DE.Views.Settings.unknownText": "Неизвестно", + "DE.Views.Settings.textSpellcheck": "Проверка орфографии", + "DE.Views.Settings.textPrint": "Печать", + "DE.Views.Settings.textReview": "Отслеживание изменений", + "DE.Views.Settings.textMargins": "Поля", + "DE.Views.Settings.textTop": "Верхнее", + "DE.Views.Settings.textLeft": "Левое", + "DE.Views.Settings.textBottom": "Нижнее", + "DE.Views.Settings.textRight": "Правое", "DE.Views.Toolbar.textBack": "Назад" } \ No newline at end of file diff --git a/apps/documenteditor/mobile/resources/css/app-ios.css b/apps/documenteditor/mobile/resources/css/app-ios.css index 0a1b0fb72..d5f798e57 100644 --- a/apps/documenteditor/mobile/resources/css/app-ios.css +++ b/apps/documenteditor/mobile/resources/css/app-ios.css @@ -6347,9 +6347,24 @@ i.icon.icon-reader { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpath%20d%3D%22M17%2C21H1V9h6V2l0%2C0h10v5h1V1H6.2L0%2C7.6V22h18v-3h-1V21z%20M6%2C2.8V8H1.1L6%2C2.8z%20M13%2C8c-5.1%2C0-9%2C5-9%2C5s4.1%2C5%2C9%2C5c5%2C0%2C9-5%2C9-5S18%2C8%2C13%2C8z%20M8.7%2C15.5C6.8%2C14.4%2C6.4%2C13%2C6.4%2C13s0.4-1.5%2C2.4-2.6C8.3%2C11.2%2C8%2C12%2C8%2C13C8%2C13.9%2C8.3%2C14.8%2C8.7%2C15.5z%20M13%2C16.7c-2.1%2C0-3.7-1.7-3.7-3.7c0-2.1%2C1.7-3.7%2C3.7-3.7c2.1%2C0%2C3.7%2C1.7%2C3.7%2C3.7C16.7%2C15.1%2C15.1%2C16.7%2C13%2C16.7z%20M17.3%2C15.5c0.4-0.7%2C0.7-1.6%2C0.7-2.5c0-1-0.3-1.8-0.7-2.6c2%2C1.1%2C3.4%2C2.6%2C3.4%2C2.6S19.2%2C14.4%2C17.3%2C15.5z%20M13%2C11.7c-0.7%2C0-1.3%2C0.6-1.3%2C1.3s0.6%2C1.3%2C1.3%2C1.3s1.3-0.6%2C1.3-1.3S13.7%2C11.7%2C13%2C11.7z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } i.icon.icon-download { + width: 22px; + height: 22px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23446995%22%3E%3Cpath%20d%3D%22M12%200H11L11%2014L7.39999%2010.3L6.69999%2011.1L11.5%2016L16.3%2011.1L15.6%2010.3L12%2014L12%200Z%22%2F%3E%3Cpath%20d%3D%22M14%205V6H19V20H4V6H9V5H3V21H20V5H14Z%22%2F%3E%3C%2Fsvg%3E"); +} +i.icon.icon-print { + width: 22px; + height: 22px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-0%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%201H17V6H21V17H17V21H5V17H1V6H5V1ZM6%206H16V2H6V6ZM5%2016V13H2V16H5ZM2%2012H20V7H2V12ZM20%2013H17V16H20V13ZM16%2013H6V20H16V13ZM14%2016H8V15H14V16ZM14%2018H8V17H14V18Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} +i.icon.icon-spellcheck { + width: 22px; + height: 22px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8%201L3%2015H4.2L5.97686%2010H11.0231L11.6768%2011.8394C11.955%2011.5504%2012.262%2011.2892%2012.593%2011.0605L9%201H8ZM8.5%202.9L10.6678%209H6.33223L8.5%202.9Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16%2021C18.7614%2021%2021%2018.7614%2021%2016C21%2013.2386%2018.7614%2011%2016%2011C13.2386%2011%2011%2013.2386%2011%2016C11%2018.7614%2013.2386%2021%2016%2021ZM15.3536%2018.3536L19.3536%2014.3536L18.6464%2013.6464L15%2017.2929L13.3536%2015.6464L12.6464%2016.3536L14.6464%2018.3536L15%2018.7071L15.3536%2018.3536Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} +i.icon.icon-review { width: 22px; height: 28px; - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-1%203%2022%2028%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpolygon%20transform%3D%22rotate(180%2C10.5%2C12.4)%22%20points%3D%2210%2C21.2%2011%2C21.2%2011%2C5.6%2014.6%2C9.3%2015.3%2C8.5%2010.5%2C3.6%205.7%2C8.5%206.4%2C9.3%2010%2C5.6%20%22%20%2F%3E%3Cpolygon%20points%3D%2213%2C12%2013%2C13%2019%2C13%2019%2C30%202%2C30%202%2C13%208%2C13%208%2C12%201%2C12%201%2C13%201%2C30%201%2C31%2020%2C31%2020%2C30%2020%2C13%2020%2C12%20%20%22%20%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-0%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpath%20d%3D%22M2%202H19V6H18V3H3V19H18V13H19V20H2V2Z%22%2F%3E%3Cpath%20d%3D%22M15%207H6V6H15V7Z%22%2F%3E%3Cpath%20d%3D%22M6%209H15V8H6V9Z%22%2F%3E%3Cpath%20d%3D%22M13%2011H6V10H13V11Z%22%2F%3E%3Cpath%20d%3D%22M6%2013H11V12H6V13Z%22%2F%3E%3Cpath%20d%3D%22M10%2015H6V14H10V15Z%22%2F%3E%3Cpath%20d%3D%22M12%2014.5V16H13.5L21.5%208L20%206.5L12%2014.5Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } i.icon.icon-doc-setup { width: 22px; @@ -6665,6 +6680,11 @@ i.icon.icon-format-docx { height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2266px%22%20height%3D%2266px%22%20viewBox%3D%2222.015%2020.75%2066%2066%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D.cls-2%7Bfill%3A%23fff%3B%7D.cls-3%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22g3103%22%20transform%3D%22translate(-21.015556%2C0)%22%20display%3D%22none%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M78.521%2C0h7.475c0%2C3.337%2C0%2C6.663%2C0%2C10%20%20%20c13.375%2C0.075%2C26.738-0.138%2C40.101%2C0.075c2.85-0.288%2C5.087%2C1.925%2C4.825%2C4.775c0.212%2C24.625-0.051%2C49.262%2C0.125%2C73.887%20%20%20c-0.125%2C2.525%2C0.25%2C5.325-1.213%2C7.563c-1.825%2C1.3-4.188%2C1.138-6.313%2C1.237C111.008%2C97.475%2C98.508%2C97.5%2C85.996%2C97.5%20%20%20c0%2C3.338%2C0%2C6.662%2C0%2C10h-7.813c-19.024-3.475-38.1-6.662-57.162-10c-0.013-29.162%2C0-58.325%2C0-87.475%20%20%20C40.183%2C6.675%2C59.359%2C3.413%2C78.521%2C0z%22%20%2F%3E%3Cpath%20class%3D%22cls-2%22%20d%3D%22M85.996%2C13.75c13.75%2C0%2C27.5%2C0%2C41.25%2C0%20%20%20c0%2C26.663%2C0%2C53.338%2C0%2C80c-13.75%2C0-27.5%2C0-41.25%2C0c0-3.338%2C0-6.662%2C0-10c10.838%2C0%2C21.663%2C0%2C32.5%2C0c0-1.662%2C0-3.338%2C0-5%20%20%20c-10.837%2C0-21.662%2C0-32.5%2C0c0-2.088%2C0-4.162%2C0-6.25c10.838%2C0%2C21.663%2C0%2C32.5%2C0c0-1.662%2C0-3.338%2C0-5c-10.837%2C0-21.662%2C0-32.5%2C0%20%20%20c0-2.088%2C0-4.162%2C0-6.25c10.838%2C0%2C21.663%2C0%2C32.5%2C0c0-1.662%2C0-3.338%2C0-5c-10.837%2C0-21.662%2C0-32.5%2C0c0-2.087%2C0-4.163%2C0-6.25%20%20%20c10.838%2C0%2C21.663%2C0%2C32.5%2C0c0-1.663%2C0-3.337%2C0-5c-10.837%2C0-21.662%2C0-32.5%2C0c0-2.087%2C0-4.163%2C0-6.25c10.838%2C0%2C21.663%2C0%2C32.5%2C0%20%20%20c0-1.663%2C0-3.337%2C0-5c-10.837%2C0-21.662%2C0-32.5%2C0c0-2.087%2C0-4.163%2C0-6.25c10.838%2C0%2C21.663%2C0%2C32.5%2C0c0-1.663%2C0-3.337%2C0-5%20%20%20c-10.837%2C0-21.662%2C0-32.5%2C0C85.996%2C19.587%2C85.996%2C16.663%2C85.996%2C13.75z%22%20%2F%3E%3Cpath%20class%3D%22cls-2%22%20d%3D%22M46.846%2C35.837%20%20%20c2.375-0.137%2C4.75-0.237%2C7.125-0.362c1.662%2C8.438%2C3.362%2C16.862%2C5.162%2C25.262c1.413-8.675%2C2.976-17.325%2C4.487-25.987%20%20%20c2.5-0.087%2C5-0.225%2C7.488-0.375c-2.825%2C12.112-5.301%2C24.325-8.388%2C36.362c-2.088%2C1.088-5.213-0.05-7.688%2C0.125%20%20%20c-1.663-8.274-3.601-16.5-5.088-24.813c-1.462%2C8.075-3.362%2C16.075-5.037%2C24.101c-2.4-0.125-4.813-0.275-7.226-0.438%20%20%20c-2.074-11-4.512-21.925-6.449-32.95c2.137-0.1%2C4.287-0.188%2C6.425-0.263c1.287%2C7.962%2C2.75%2C15.888%2C3.875%2C23.862%20%20%20C43.297%2C52.188%2C45.096%2C44.013%2C46.846%2C35.837z%22%20%2F%3E%3C%2Fg%3E%3Cpath%20class%3D%22cls-3%22%20d%3D%22M50.69%2C36.792c2.375-0.137%2C4.75-0.237%2C7.125-0.362%20%20c1.662%2C8.438%2C3.362%2C16.862%2C5.162%2C25.262c1.413-8.675%2C2.976-17.325%2C4.487-25.987c2.5-0.087%2C5-0.225%2C7.488-0.375%20%20c-2.825%2C12.112-5.301%2C24.325-8.388%2C36.362c-2.088%2C1.088-5.213-0.05-7.688%2C0.125c-1.663-8.274-3.601-16.5-5.088-24.813%20%20c-1.462%2C8.075-3.362%2C16.075-5.037%2C24.101c-2.4-0.125-4.813-0.275-7.226-0.438c-2.074-11-4.512-21.925-6.449-32.95%20%20c2.137-0.1%2C4.287-0.188%2C6.425-0.263c1.287%2C7.962%2C2.75%2C15.888%2C3.875%2C23.862C47.14%2C53.143%2C48.94%2C44.968%2C50.69%2C36.792z%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-dotx { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D.cls-2%7Bfill%3A%23fff%3B%7D.cls-3%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_38%22%20data-name%3D%22Path%2038%22%20d%3D%22M12.223%2C119.714c1.251-.066%2C2.5-.115%2C3.752-.177.875%2C4.123%2C1.771%2C8.239%2C2.718%2C12.343.744-4.239%2C1.567-8.464%2C2.363-12.7%2C1.317-.042%2C2.633-.109%2C3.944-.183-1.488%2C5.917-2.792%2C11.886-4.417%2C17.767-1.1.531-2.745-.026-4.049.06-.876-4.042-1.9-8.061-2.679-12.123-.77%2C3.945-1.771%2C7.854-2.653%2C11.775-1.264-.06-2.535-.134-3.805-.213C6.3%2C130.892%2C5.02%2C125.553%2C4%2C120.167c1.125-.049%2C2.258-.093%2C3.384-.129.678%2C3.889%2C1.448%2C7.762%2C2.041%2C11.659C10.353%2C127.7%2C11.3%2C123.708%2C12.223%2C119.714Z%22%20transform%3D%22translate(-2%20-117)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20class%3D%22cls-2%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-txt { width: 30px; height: 30px; @@ -6675,16 +6695,29 @@ i.icon.icon-format-pdf { height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2033%2033%22%20height%3D%2233px%22%20width%3D%2233px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M11.875%2C18.648c0.8-1.567%2C1.709-3.334%2C2.437-5.107l0%2C0%20%20l0.288-0.7c-0.95-3.616-1.52-6.519-1.011-8.396l0%2C0c0.137-0.489%2C0.704-0.786%2C1.31-0.786l0%2C0l0.369%2C0.005h0.068%20%20c0.83-0.013%2C1.22%2C1.042%2C1.264%2C1.453l0%2C0c0.073%2C0.683-0.243%2C1.839-0.243%2C1.839l0%2C0c0-0.467%2C0.018-1.221-0.276-1.873l0%2C0%20%20c-0.343-0.753-0.671-1.204-0.965-1.275l0%2C0c-0.148%2C0.099-0.292%2C0.304-0.342%2C0.699l0%2C0c-0.103%2C0.553-0.133%2C1.252-0.133%2C1.612l0%2C0%20%20c0%2C1.272%2C0.25%2C2.952%2C0.743%2C4.683l0%2C0c0.093-0.268%2C0.174-0.526%2C0.24-0.767l0%2C0c0.101-0.38%2C0.743-2.901%2C0.743-2.901l0%2C0%20%20c0%2C0-0.162%2C3.355-0.388%2C4.371l0%2C0c-0.048%2C0.215-0.102%2C0.427-0.158%2C0.644l0%2C0c0.812%2C2.268%2C2.121%2C4.292%2C3.68%2C5.75l0%2C0%20%20c0.615%2C0.575%2C1.393%2C1.038%2C2.128%2C1.461l0%2C0c1.605-0.229%2C3.084-0.338%2C4.318-0.324l0%2C0c1.637%2C0.021%2C2.838%2C0.264%2C3.324%2C0.743l0%2C0%20%20c0.238%2C0.232%2C0.335%2C0.514%2C0.365%2C0.83l0%2C0c0.007%2C0.122-0.053%2C0.41-0.07%2C0.482l0%2C0c0.018-0.088%2C0.018-0.518-1.297-0.938l0%2C0%20%20c-1.034-0.33-2.971-0.32-5.295-0.073l0%2C0c2.688%2C1.315%2C5.307%2C1.968%2C6.137%2C1.577l0%2C0c0.203-0.1%2C0.449-0.437%2C0.449-0.437l0%2C0%20%20c0%2C0-0.146%2C0.665-0.252%2C0.831l0%2C0c-0.134%2C0.18-0.396%2C0.376-0.646%2C0.441l0%2C0c-1.311%2C0.35-4.722-0.459-7.695-2.158l0%2C0%20%20c-3.322%2C0.489-6.972%2C1.393-9.897%2C2.353l0%2C0c-2.874%2C5.037-5.035%2C7.351-6.793%2C6.471l0%2C0L3.63%2C28.833%20%20c-0.263-0.15-0.303-0.516-0.242-0.813l0%2C0c0.205-1.003%2C1.462-2.513%2C3.988-4.021l0%2C0c0.272-0.165%2C1.483-0.805%2C1.483-0.805l0%2C0%20%20c0%2C0-0.896%2C0.868-1.106%2C1.038l0%2C0c-2.016%2C1.652-3.504%2C3.73-3.467%2C4.536l0%2C0l0.007%2C0.069C6.005%2C28.594%2C8.573%2C25.109%2C11.875%2C18.648%20%20%20M12.921%2C19.184c-0.551%2C1.038-1.09%2C2.001-1.588%2C2.886l0%2C0c2.752-1.153%2C5.715-1.892%2C8.535-2.416l0%2C0%20%20c-0.379-0.262-0.746-0.539-1.093-0.832l0%2C0c-1.554-1.314-2.737-2.955-3.595-4.681l0%2C0C14.636%2C15.607%2C13.989%2C17.166%2C12.921%2C19.184%22%20class%3D%22cls-1%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-pdfa { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2033%2033%22%20height%3D%2233px%22%20width%3D%2233px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.875%2018.648L11.9617%2018.4783C12.7401%2016.954%2013.6102%2015.2503%2014.312%2013.541L14.6%2012.841C13.65%209.225%2013.08%206.322%2013.589%204.445C13.726%203.956%2014.293%203.659%2014.899%203.659L15.268%203.664H15.336C16.166%203.651%2016.556%204.706%2016.6%205.117C16.673%205.8%2016.357%206.956%2016.357%206.956L16.3571%206.87946C16.358%206.40944%2016.3594%205.70047%2016.081%205.083C15.738%204.33%2015.41%203.879%2015.116%203.808C14.968%203.907%2014.824%204.112%2014.774%204.507C14.671%205.06%2014.641%205.759%2014.641%206.119C14.641%207.391%2014.891%209.071%2015.384%2010.802C15.477%2010.534%2015.558%2010.276%2015.624%2010.035C15.725%209.655%2016.367%207.134%2016.367%207.134C16.367%207.134%2016.205%2010.489%2015.979%2011.505C15.931%2011.72%2015.877%2011.932%2015.821%2012.149C16.633%2014.417%2017.942%2016.441%2019.501%2017.899C19.9467%2018.3157%2020.4779%2018.6735%2021.0164%2019H29C30.1046%2019%2031%2019.8954%2031%2021V29C31%2030.1046%2030.1046%2031%2029%2031H17C15.8954%2031%2015%2030.1046%2015%2029V21.5492C13.6156%2021.9019%2012.2807%2022.2896%2011.07%2022.687C8.19599%2027.724%206.03499%2030.038%204.27699%2029.158L3.62999%2028.833C3.36699%2028.683%203.32699%2028.317%203.38799%2028.02C3.59299%2027.017%204.84999%2025.507%207.37599%2023.999C7.64799%2023.834%208.85899%2023.194%208.85899%2023.194C8.85899%2023.194%207.96299%2024.062%207.75299%2024.232C5.73699%2025.884%204.24899%2027.962%204.28599%2028.768L4.29299%2028.837C6.00499%2028.594%208.57299%2025.109%2011.875%2018.648ZM18.775%2018.822C18.8461%2018.882%2018.918%2018.9413%2018.9906%2019H17C15.9681%2019%2015.1187%2019.7815%2015.0114%2020.785C13.7648%2021.146%2012.529%2021.5689%2011.333%2022.07C11.831%2021.185%2012.37%2020.222%2012.921%2019.184C13.989%2017.166%2014.636%2015.607%2015.18%2014.141C16.038%2015.867%2017.221%2017.508%2018.775%2018.822ZM21.5553%2027.3521H24.4447L24.9995%2029H26.7518L23.7581%2021.002H22.231L19.2537%2029H21.006L21.5553%2027.3521ZM23.9998%2026.0172H22.0002L22.9945%2023.0234L23.9998%2026.0172Z%22%20class%3D%22cls-1%22%2F%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-odt { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%20193.631%20193.63%22%20height%3D%22193.63px%22%20width%3D%22193.631px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M193.16%2C59.725v-0.006%20%20c-0.334-0.173-0.671-0.334-1.004-0.497c-5.357-2.586-11.257-4.287-17.526-4.88c-11.083-1.049-21.673%2C1.496-30.622%2C6.678%20%20c-6.13-3.477-13.072-5.741-20.542-6.448c-10.298-0.974-20.17%2C1.16-28.697%2C5.629c-0.084%2C0.044-0.17%2C0.095-0.251%2C0.135%20%20c-0.207%2C0.162-0.347%2C0.414-0.347%2C0.697c0%2C0.492%2C0.392%2C0.89%2C0.889%2C0.89c0.046%2C0%2C0.091-0.007%2C0.139-0.017%20%20c0.021-0.002%2C0.042-0.011%2C0.061-0.015c4.586-0.848%2C9.368-1.088%2C14.243-0.627c13.683%2C1.293%2C25.609%2C5.521%2C33.975%2C15.011%20%20c0.436%2C0.455%2C0.822%2C0.427%2C1.265-0.024c10.524-12.2%2C26.663-17.021%2C44.006-15.382c0.968%2C0.094%2C1.921%2C0.213%2C2.871%2C0.355%20%20c0.33%2C0.05%2C0.836%2C0.134%2C1.133%2C0.167c0.572%2C0.063%2C0.88-0.397%2C0.88-0.891C193.629%2C60.166%2C193.486%2C59.886%2C193.16%2C59.725L193.16%2C59.725z%22%20class%3D%22cls-1%22%20%2F%3E%3Cpath%20d%3D%22M173.053%2C102.654c-0.056-0.029-0.106-0.046-0.154-0.066%20%20c-10.517-4.349-22.02-6.758-34.093-6.758c-19.293%2C0-37.155%2C6.127-51.757%2C16.524c-11.146-4.993-23.497-7.776-36.496-7.776%20%20c-18.485%2C0-35.648%2C5.617-49.895%2C15.237c-0.047%2C0.029-0.095%2C0.066-0.149%2C0.104C0.205%2C120.154%2C0%2C120.528%2C0%2C120.957%20%20c0%2C0.729%2C0.592%2C1.324%2C1.323%2C1.324c0.086%2C0%2C0.174-0.013%2C0.259-0.03c0.058-0.015%2C0.107-0.028%2C0.161-0.048%20%20c8.166-2.456%2C16.832-3.791%2C25.798-3.791c23.836%2C0%2C45.083%2C5.633%2C61.08%2C20.68c0.038%2C0.029%2C0.071%2C0.066%2C0.111%2C0.104%20%20c0.232%2C0.205%2C0.53%2C0.325%2C0.863%2C0.325c0.412%2C0%2C0.774-0.189%2C1.018-0.486c0.006%2C0.004%2C0.515-0.72%2C0.773-1.07%20%20c16.246-22.216%2C43.03-33.172%2C72.846-33.172c2.128%2C0%2C4.246%2C0.08%2C6.337%2C0.225c0.602%2C0.047%2C1.874%2C0.144%2C1.903%2C0.144%20%20c0.726%2C0%2C1.322-0.591%2C1.322-1.324C173.796%2C103.313%2C173.492%2C102.862%2C173.053%2C102.654L173.053%2C102.654z%22%20class%3D%22cls-1%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-ott { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-ott%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22ott%22%20clip-path%3D%22url(%23clip-ott)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_33%22%20data-name%3D%22Path%2033%22%20d%3D%22M125.173%2C121h0c-.046-.03-.093-.059-.141-.088a6.133%2C6.133%2C0%2C0%2C0-2.467-.869%2C6.014%2C6.014%2C0%2C0%2C0-4.309%2C1.188%2C6.223%2C6.223%2C0%2C0%2C0-2.892-1.147%2C5.965%2C5.965%2C0%2C0%2C0-4.039%2C1l-.036.024a.176.176%2C0%2C0%2C0-.049.125.145.145%2C0%2C0%2C0%2C.126.158l.019%2C0a.019.019%2C0%2C0%2C0%2C.009%2C0%2C5.781%2C5.781%2C0%2C0%2C1%2C2.005-.111%2C6.41%2C6.41%2C0%2C0%2C1%2C4.782%2C2.669c.06.081.115.076.178%2C0a6.288%2C6.288%2C0%2C0%2C1%2C6.194-2.735c.136.017.27.038.4.064.047.009.119.024.161.03.08.011.123-.071.123-.159A.155.155%2C0%2C0%2C0%2C125.173%2C121Z%22%20transform%3D%22translate(-94.24%20-116)%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_34%22%20data-name%3D%22Path%2034%22%20d%3D%22M126.894%2C125.978a.175.175%2C0%2C0%2C0-.022-.011%2C11.686%2C11.686%2C0%2C0%2C0-4.905-1.082%2C11.924%2C11.924%2C0%2C0%2C0-7.444%2C2.647%2C11.725%2C11.725%2C0%2C0%2C0-5.251-1.245%2C11.884%2C11.884%2C0%2C0%2C0-7.176%2C2.441.229.229%2C0%2C0%2C0-.022.016.217.217%2C0%2C0%2C0-.073.167.2.2%2C0%2C0%2C0%2C.191.211.167.167%2C0%2C0%2C0%2C.037%2C0%2C.118.118%2C0%2C0%2C0%2C.023-.008%2C11.679%2C11.679%2C0%2C0%2C1%2C3.71-.608c3.429%2C0%2C6.486.9%2C8.787%2C3.315a.093.093%2C0%2C0%2C1%2C.016.016.172.172%2C0%2C0%2C0%2C.123.052.18.18%2C0%2C0%2C0%2C.147-.078s.075-.115.111-.171a12.1%2C12.1%2C0%2C0%2C1%2C10.479-5.315c.306%2C0%2C.611.014.912.037l.273.022a.2.2%2C0%2C0%2C0%2C.191-.211A.211.211%2C0%2C0%2C0%2C126.894%2C125.978Z%22%20transform%3D%22translate(-100%20-115.885)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-html { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2262px%22%20height%3D%2262px%22%20viewBox%3D%220%200%2062%2062%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M24.993%2C38.689L11.34%2C32.753v-3.288l13.653-5.91v3.872l-9.523%2C3.641l9.523%2C3.777V38.689z%22%20%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M27.09%2C41.298l4.931-20.596h2.867l-4.986%2C20.596H27.09z%22%20%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M36.986%2C38.703v-3.845l9.536-3.75L36.986%2C27.4v-3.817l13.666%2C5.91v3.261L36.986%2C38.703z%22%20%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } +.label-switch input[type="checkbox"]:checked + .checkbox { + background: #446995; +} #editor_sdk { position: absolute; left: 0; diff --git a/apps/documenteditor/mobile/resources/css/app-material.css b/apps/documenteditor/mobile/resources/css/app-material.css index f9609bdb5..8963da8e9 100644 --- a/apps/documenteditor/mobile/resources/css/app-material.css +++ b/apps/documenteditor/mobile/resources/css/app-material.css @@ -5936,9 +5936,24 @@ i.icon.icon-reader { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpath%20d%3D%22M17%2C21H1V9h6V2l0%2C0h10v5h1V1H6.2L0%2C7.6V22h18v-3h-1V21z%20M6%2C2.8V8H1.1L6%2C2.8z%20M13%2C8c-5.1%2C0-9%2C5-9%2C5s4.1%2C5%2C9%2C5c5%2C0%2C9-5%2C9-5S18%2C8%2C13%2C8z%20M8.7%2C15.5C6.8%2C14.4%2C6.4%2C13%2C6.4%2C13s0.4-1.5%2C2.4-2.6C8.3%2C11.2%2C8%2C12%2C8%2C13C8%2C13.9%2C8.3%2C14.8%2C8.7%2C15.5z%20M13%2C16.7c-2.1%2C0-3.7-1.7-3.7-3.7c0-2.1%2C1.7-3.7%2C3.7-3.7c2.1%2C0%2C3.7%2C1.7%2C3.7%2C3.7C16.7%2C15.1%2C15.1%2C16.7%2C13%2C16.7z%20M17.3%2C15.5c0.4-0.7%2C0.7-1.6%2C0.7-2.5c0-1-0.3-1.8-0.7-2.6c2%2C1.1%2C3.4%2C2.6%2C3.4%2C2.6S19.2%2C14.4%2C17.3%2C15.5z%20M13%2C11.7c-0.7%2C0-1.3%2C0.6-1.3%2C1.3s0.6%2C1.3%2C1.3%2C1.3s1.3-0.6%2C1.3-1.3S13.7%2C11.7%2C13%2C11.7z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } i.icon.icon-download { + width: 22px; + height: 22px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-0%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpath%20d%3D%22M12%200H11L11%2014L7.39999%2010.3L6.69999%2011.1L11.5%2016L16.3%2011.1L15.6%2010.3L12%2014L12%200Z%22%2F%3E%3Cpath%20d%3D%22M14%205V6H19V20H4V6H9V5H3V21H20V5H14Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} +i.icon.icon-print { + width: 22px; + height: 22px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-0%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%201H17V6H21V17H17V21H5V17H1V6H5V1ZM6%206H16V2H6V6ZM5%2016V13H2V16H5ZM2%2012H20V7H2V12ZM20%2013H17V16H20V13ZM16%2013H6V20H16V13ZM14%2016H8V15H14V16ZM14%2018H8V17H14V18Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} +i.icon.icon-spellcheck { + width: 22px; + height: 22px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8%201L3%2015H4.2L5.97686%2010H11.0231L11.6768%2011.8394C11.955%2011.5504%2012.262%2011.2892%2012.593%2011.0605L9%201H8ZM8.5%202.9L10.6678%209H6.33223L8.5%202.9Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16%2021C18.7614%2021%2021%2018.7614%2021%2016C21%2013.2386%2018.7614%2011%2016%2011C13.2386%2011%2011%2013.2386%2011%2016C11%2018.7614%2013.2386%2021%2016%2021ZM15.3536%2018.3536L19.3536%2014.3536L18.6464%2013.6464L15%2017.2929L13.3536%2015.6464L12.6464%2016.3536L14.6464%2018.3536L15%2018.7071L15.3536%2018.3536Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} +i.icon.icon-review { width: 22px; height: 28px; - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-1%203%2022%2028%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpolygon%20transform%3D%22rotate(180%2C10.5%2C12.4)%22%20points%3D%2210%2C21.2%2011%2C21.2%2011%2C5.6%2014.6%2C9.3%2015.3%2C8.5%2010.5%2C3.6%205.7%2C8.5%206.4%2C9.3%2010%2C5.6%20%22%20%2F%3E%3Cpolygon%20points%3D%2213%2C12%2013%2C13%2019%2C13%2019%2C30%202%2C30%202%2C13%208%2C13%208%2C12%201%2C12%201%2C13%201%2C30%201%2C31%2020%2C31%2020%2C30%2020%2C13%2020%2C12%20%20%22%20%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-0%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23446995%22%3E%3Cg%3E%3Cpath%20d%3D%22M2%202H19V6H18V3H3V19H18V13H19V20H2V2Z%22%2F%3E%3Cpath%20d%3D%22M15%207H6V6H15V7Z%22%2F%3E%3Cpath%20d%3D%22M6%209H15V8H6V9Z%22%2F%3E%3Cpath%20d%3D%22M13%2011H6V10H13V11Z%22%2F%3E%3Cpath%20d%3D%22M6%2013H11V12H6V13Z%22%2F%3E%3Cpath%20d%3D%22M10%2015H6V14H10V15Z%22%2F%3E%3Cpath%20d%3D%22M12%2014.5V16H13.5L21.5%208L20%206.5L12%2014.5Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } i.icon.icon-doc-setup { width: 22px; @@ -6154,6 +6169,11 @@ i.icon.icon-format-docx { height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2266px%22%20height%3D%2266px%22%20viewBox%3D%2222.015%2020.75%2066%2066%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D.cls-2%7Bfill%3A%23fff%3B%7D.cls-3%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22g3103%22%20transform%3D%22translate(-21.015556%2C0)%22%20display%3D%22none%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M78.521%2C0h7.475c0%2C3.337%2C0%2C6.663%2C0%2C10%20%20%20c13.375%2C0.075%2C26.738-0.138%2C40.101%2C0.075c2.85-0.288%2C5.087%2C1.925%2C4.825%2C4.775c0.212%2C24.625-0.051%2C49.262%2C0.125%2C73.887%20%20%20c-0.125%2C2.525%2C0.25%2C5.325-1.213%2C7.563c-1.825%2C1.3-4.188%2C1.138-6.313%2C1.237C111.008%2C97.475%2C98.508%2C97.5%2C85.996%2C97.5%20%20%20c0%2C3.338%2C0%2C6.662%2C0%2C10h-7.813c-19.024-3.475-38.1-6.662-57.162-10c-0.013-29.162%2C0-58.325%2C0-87.475%20%20%20C40.183%2C6.675%2C59.359%2C3.413%2C78.521%2C0z%22%20%2F%3E%3Cpath%20class%3D%22cls-2%22%20d%3D%22M85.996%2C13.75c13.75%2C0%2C27.5%2C0%2C41.25%2C0%20%20%20c0%2C26.663%2C0%2C53.338%2C0%2C80c-13.75%2C0-27.5%2C0-41.25%2C0c0-3.338%2C0-6.662%2C0-10c10.838%2C0%2C21.663%2C0%2C32.5%2C0c0-1.662%2C0-3.338%2C0-5%20%20%20c-10.837%2C0-21.662%2C0-32.5%2C0c0-2.088%2C0-4.162%2C0-6.25c10.838%2C0%2C21.663%2C0%2C32.5%2C0c0-1.662%2C0-3.338%2C0-5c-10.837%2C0-21.662%2C0-32.5%2C0%20%20%20c0-2.088%2C0-4.162%2C0-6.25c10.838%2C0%2C21.663%2C0%2C32.5%2C0c0-1.662%2C0-3.338%2C0-5c-10.837%2C0-21.662%2C0-32.5%2C0c0-2.087%2C0-4.163%2C0-6.25%20%20%20c10.838%2C0%2C21.663%2C0%2C32.5%2C0c0-1.663%2C0-3.337%2C0-5c-10.837%2C0-21.662%2C0-32.5%2C0c0-2.087%2C0-4.163%2C0-6.25c10.838%2C0%2C21.663%2C0%2C32.5%2C0%20%20%20c0-1.663%2C0-3.337%2C0-5c-10.837%2C0-21.662%2C0-32.5%2C0c0-2.087%2C0-4.163%2C0-6.25c10.838%2C0%2C21.663%2C0%2C32.5%2C0c0-1.663%2C0-3.337%2C0-5%20%20%20c-10.837%2C0-21.662%2C0-32.5%2C0C85.996%2C19.587%2C85.996%2C16.663%2C85.996%2C13.75z%22%20%2F%3E%3Cpath%20class%3D%22cls-2%22%20d%3D%22M46.846%2C35.837%20%20%20c2.375-0.137%2C4.75-0.237%2C7.125-0.362c1.662%2C8.438%2C3.362%2C16.862%2C5.162%2C25.262c1.413-8.675%2C2.976-17.325%2C4.487-25.987%20%20%20c2.5-0.087%2C5-0.225%2C7.488-0.375c-2.825%2C12.112-5.301%2C24.325-8.388%2C36.362c-2.088%2C1.088-5.213-0.05-7.688%2C0.125%20%20%20c-1.663-8.274-3.601-16.5-5.088-24.813c-1.462%2C8.075-3.362%2C16.075-5.037%2C24.101c-2.4-0.125-4.813-0.275-7.226-0.438%20%20%20c-2.074-11-4.512-21.925-6.449-32.95c2.137-0.1%2C4.287-0.188%2C6.425-0.263c1.287%2C7.962%2C2.75%2C15.888%2C3.875%2C23.862%20%20%20C43.297%2C52.188%2C45.096%2C44.013%2C46.846%2C35.837z%22%20%2F%3E%3C%2Fg%3E%3Cpath%20class%3D%22cls-3%22%20d%3D%22M50.69%2C36.792c2.375-0.137%2C4.75-0.237%2C7.125-0.362%20%20c1.662%2C8.438%2C3.362%2C16.862%2C5.162%2C25.262c1.413-8.675%2C2.976-17.325%2C4.487-25.987c2.5-0.087%2C5-0.225%2C7.488-0.375%20%20c-2.825%2C12.112-5.301%2C24.325-8.388%2C36.362c-2.088%2C1.088-5.213-0.05-7.688%2C0.125c-1.663-8.274-3.601-16.5-5.088-24.813%20%20c-1.462%2C8.075-3.362%2C16.075-5.037%2C24.101c-2.4-0.125-4.813-0.275-7.226-0.438c-2.074-11-4.512-21.925-6.449-32.95%20%20c2.137-0.1%2C4.287-0.188%2C6.425-0.263c1.287%2C7.962%2C2.75%2C15.888%2C3.875%2C23.862C47.14%2C53.143%2C48.94%2C44.968%2C50.69%2C36.792z%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-dotx { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D.cls-2%7Bfill%3A%23fff%3B%7D.cls-3%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3CclipPath%20id%3D%22clip-dotx%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20id%3D%22dotx%22%20clip-path%3D%22url(%23clip-dotx)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_38%22%20data-name%3D%22Path%2038%22%20d%3D%22M12.223%2C119.714c1.251-.066%2C2.5-.115%2C3.752-.177.875%2C4.123%2C1.771%2C8.239%2C2.718%2C12.343.744-4.239%2C1.567-8.464%2C2.363-12.7%2C1.317-.042%2C2.633-.109%2C3.944-.183-1.488%2C5.917-2.792%2C11.886-4.417%2C17.767-1.1.531-2.745-.026-4.049.06-.876-4.042-1.9-8.061-2.679-12.123-.77%2C3.945-1.771%2C7.854-2.653%2C11.775-1.264-.06-2.535-.134-3.805-.213C6.3%2C130.892%2C5.02%2C125.553%2C4%2C120.167c1.125-.049%2C2.258-.093%2C3.384-.129.678%2C3.889%2C1.448%2C7.762%2C2.041%2C11.659C10.353%2C127.7%2C11.3%2C123.708%2C12.223%2C119.714Z%22%20transform%3D%22translate(-2%20-117)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20class%3D%22cls-2%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-txt { width: 30px; height: 30px; @@ -6164,11 +6184,21 @@ i.icon.icon-format-pdf { height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2033%2033%22%20height%3D%2233px%22%20width%3D%2233px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M11.875%2C18.648c0.8-1.567%2C1.709-3.334%2C2.437-5.107l0%2C0%20%20l0.288-0.7c-0.95-3.616-1.52-6.519-1.011-8.396l0%2C0c0.137-0.489%2C0.704-0.786%2C1.31-0.786l0%2C0l0.369%2C0.005h0.068%20%20c0.83-0.013%2C1.22%2C1.042%2C1.264%2C1.453l0%2C0c0.073%2C0.683-0.243%2C1.839-0.243%2C1.839l0%2C0c0-0.467%2C0.018-1.221-0.276-1.873l0%2C0%20%20c-0.343-0.753-0.671-1.204-0.965-1.275l0%2C0c-0.148%2C0.099-0.292%2C0.304-0.342%2C0.699l0%2C0c-0.103%2C0.553-0.133%2C1.252-0.133%2C1.612l0%2C0%20%20c0%2C1.272%2C0.25%2C2.952%2C0.743%2C4.683l0%2C0c0.093-0.268%2C0.174-0.526%2C0.24-0.767l0%2C0c0.101-0.38%2C0.743-2.901%2C0.743-2.901l0%2C0%20%20c0%2C0-0.162%2C3.355-0.388%2C4.371l0%2C0c-0.048%2C0.215-0.102%2C0.427-0.158%2C0.644l0%2C0c0.812%2C2.268%2C2.121%2C4.292%2C3.68%2C5.75l0%2C0%20%20c0.615%2C0.575%2C1.393%2C1.038%2C2.128%2C1.461l0%2C0c1.605-0.229%2C3.084-0.338%2C4.318-0.324l0%2C0c1.637%2C0.021%2C2.838%2C0.264%2C3.324%2C0.743l0%2C0%20%20c0.238%2C0.232%2C0.335%2C0.514%2C0.365%2C0.83l0%2C0c0.007%2C0.122-0.053%2C0.41-0.07%2C0.482l0%2C0c0.018-0.088%2C0.018-0.518-1.297-0.938l0%2C0%20%20c-1.034-0.33-2.971-0.32-5.295-0.073l0%2C0c2.688%2C1.315%2C5.307%2C1.968%2C6.137%2C1.577l0%2C0c0.203-0.1%2C0.449-0.437%2C0.449-0.437l0%2C0%20%20c0%2C0-0.146%2C0.665-0.252%2C0.831l0%2C0c-0.134%2C0.18-0.396%2C0.376-0.646%2C0.441l0%2C0c-1.311%2C0.35-4.722-0.459-7.695-2.158l0%2C0%20%20c-3.322%2C0.489-6.972%2C1.393-9.897%2C2.353l0%2C0c-2.874%2C5.037-5.035%2C7.351-6.793%2C6.471l0%2C0L3.63%2C28.833%20%20c-0.263-0.15-0.303-0.516-0.242-0.813l0%2C0c0.205-1.003%2C1.462-2.513%2C3.988-4.021l0%2C0c0.272-0.165%2C1.483-0.805%2C1.483-0.805l0%2C0%20%20c0%2C0-0.896%2C0.868-1.106%2C1.038l0%2C0c-2.016%2C1.652-3.504%2C3.73-3.467%2C4.536l0%2C0l0.007%2C0.069C6.005%2C28.594%2C8.573%2C25.109%2C11.875%2C18.648%20%20%20M12.921%2C19.184c-0.551%2C1.038-1.09%2C2.001-1.588%2C2.886l0%2C0c2.752-1.153%2C5.715-1.892%2C8.535-2.416l0%2C0%20%20c-0.379-0.262-0.746-0.539-1.093-0.832l0%2C0c-1.554-1.314-2.737-2.955-3.595-4.681l0%2C0C14.636%2C15.607%2C13.989%2C17.166%2C12.921%2C19.184%22%20class%3D%22cls-1%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-pdfa { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2033%2033%22%20height%3D%2233px%22%20width%3D%2233px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.875%2018.648L11.9617%2018.4783C12.7401%2016.954%2013.6102%2015.2503%2014.312%2013.541L14.6%2012.841C13.65%209.225%2013.08%206.322%2013.589%204.445C13.726%203.956%2014.293%203.659%2014.899%203.659L15.268%203.664H15.336C16.166%203.651%2016.556%204.706%2016.6%205.117C16.673%205.8%2016.357%206.956%2016.357%206.956L16.3571%206.87946C16.358%206.40944%2016.3594%205.70047%2016.081%205.083C15.738%204.33%2015.41%203.879%2015.116%203.808C14.968%203.907%2014.824%204.112%2014.774%204.507C14.671%205.06%2014.641%205.759%2014.641%206.119C14.641%207.391%2014.891%209.071%2015.384%2010.802C15.477%2010.534%2015.558%2010.276%2015.624%2010.035C15.725%209.655%2016.367%207.134%2016.367%207.134C16.367%207.134%2016.205%2010.489%2015.979%2011.505C15.931%2011.72%2015.877%2011.932%2015.821%2012.149C16.633%2014.417%2017.942%2016.441%2019.501%2017.899C19.9467%2018.3157%2020.4779%2018.6735%2021.0164%2019H29C30.1046%2019%2031%2019.8954%2031%2021V29C31%2030.1046%2030.1046%2031%2029%2031H17C15.8954%2031%2015%2030.1046%2015%2029V21.5492C13.6156%2021.9019%2012.2807%2022.2896%2011.07%2022.687C8.19599%2027.724%206.03499%2030.038%204.27699%2029.158L3.62999%2028.833C3.36699%2028.683%203.32699%2028.317%203.38799%2028.02C3.59299%2027.017%204.84999%2025.507%207.37599%2023.999C7.64799%2023.834%208.85899%2023.194%208.85899%2023.194C8.85899%2023.194%207.96299%2024.062%207.75299%2024.232C5.73699%2025.884%204.24899%2027.962%204.28599%2028.768L4.29299%2028.837C6.00499%2028.594%208.57299%2025.109%2011.875%2018.648ZM18.775%2018.822C18.8461%2018.882%2018.918%2018.9413%2018.9906%2019H17C15.9681%2019%2015.1187%2019.7815%2015.0114%2020.785C13.7648%2021.146%2012.529%2021.5689%2011.333%2022.07C11.831%2021.185%2012.37%2020.222%2012.921%2019.184C13.989%2017.166%2014.636%2015.607%2015.18%2014.141C16.038%2015.867%2017.221%2017.508%2018.775%2018.822ZM21.5553%2027.3521H24.4447L24.9995%2029H26.7518L23.7581%2021.002H22.231L19.2537%2029H21.006L21.5553%2027.3521ZM23.9998%2026.0172H22.0002L22.9945%2023.0234L23.9998%2026.0172Z%22%20class%3D%22cls-1%22%2F%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-odt { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%20193.631%20193.63%22%20height%3D%22193.63px%22%20width%3D%22193.631px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M193.16%2C59.725v-0.006%20%20c-0.334-0.173-0.671-0.334-1.004-0.497c-5.357-2.586-11.257-4.287-17.526-4.88c-11.083-1.049-21.673%2C1.496-30.622%2C6.678%20%20c-6.13-3.477-13.072-5.741-20.542-6.448c-10.298-0.974-20.17%2C1.16-28.697%2C5.629c-0.084%2C0.044-0.17%2C0.095-0.251%2C0.135%20%20c-0.207%2C0.162-0.347%2C0.414-0.347%2C0.697c0%2C0.492%2C0.392%2C0.89%2C0.889%2C0.89c0.046%2C0%2C0.091-0.007%2C0.139-0.017%20%20c0.021-0.002%2C0.042-0.011%2C0.061-0.015c4.586-0.848%2C9.368-1.088%2C14.243-0.627c13.683%2C1.293%2C25.609%2C5.521%2C33.975%2C15.011%20%20c0.436%2C0.455%2C0.822%2C0.427%2C1.265-0.024c10.524-12.2%2C26.663-17.021%2C44.006-15.382c0.968%2C0.094%2C1.921%2C0.213%2C2.871%2C0.355%20%20c0.33%2C0.05%2C0.836%2C0.134%2C1.133%2C0.167c0.572%2C0.063%2C0.88-0.397%2C0.88-0.891C193.629%2C60.166%2C193.486%2C59.886%2C193.16%2C59.725L193.16%2C59.725z%22%20class%3D%22cls-1%22%20%2F%3E%3Cpath%20d%3D%22M173.053%2C102.654c-0.056-0.029-0.106-0.046-0.154-0.066%20%20c-10.517-4.349-22.02-6.758-34.093-6.758c-19.293%2C0-37.155%2C6.127-51.757%2C16.524c-11.146-4.993-23.497-7.776-36.496-7.776%20%20c-18.485%2C0-35.648%2C5.617-49.895%2C15.237c-0.047%2C0.029-0.095%2C0.066-0.149%2C0.104C0.205%2C120.154%2C0%2C120.528%2C0%2C120.957%20%20c0%2C0.729%2C0.592%2C1.324%2C1.323%2C1.324c0.086%2C0%2C0.174-0.013%2C0.259-0.03c0.058-0.015%2C0.107-0.028%2C0.161-0.048%20%20c8.166-2.456%2C16.832-3.791%2C25.798-3.791c23.836%2C0%2C45.083%2C5.633%2C61.08%2C20.68c0.038%2C0.029%2C0.071%2C0.066%2C0.111%2C0.104%20%20c0.232%2C0.205%2C0.53%2C0.325%2C0.863%2C0.325c0.412%2C0%2C0.774-0.189%2C1.018-0.486c0.006%2C0.004%2C0.515-0.72%2C0.773-1.07%20%20c16.246-22.216%2C43.03-33.172%2C72.846-33.172c2.128%2C0%2C4.246%2C0.08%2C6.337%2C0.225c0.602%2C0.047%2C1.874%2C0.144%2C1.903%2C0.144%20%20c0.726%2C0%2C1.322-0.591%2C1.322-1.324C173.796%2C103.313%2C173.492%2C102.862%2C173.053%2C102.654L173.053%2C102.654z%22%20class%3D%22cls-1%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-ott { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-ott%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3Cstyle%3E.cls-1%7Bfill%3A%23446995%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22ott%22%20clip-path%3D%22url(%23clip-ott)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_33%22%20data-name%3D%22Path%2033%22%20d%3D%22M125.173%2C121h0c-.046-.03-.093-.059-.141-.088a6.133%2C6.133%2C0%2C0%2C0-2.467-.869%2C6.014%2C6.014%2C0%2C0%2C0-4.309%2C1.188%2C6.223%2C6.223%2C0%2C0%2C0-2.892-1.147%2C5.965%2C5.965%2C0%2C0%2C0-4.039%2C1l-.036.024a.176.176%2C0%2C0%2C0-.049.125.145.145%2C0%2C0%2C0%2C.126.158l.019%2C0a.019.019%2C0%2C0%2C0%2C.009%2C0%2C5.781%2C5.781%2C0%2C0%2C1%2C2.005-.111%2C6.41%2C6.41%2C0%2C0%2C1%2C4.782%2C2.669c.06.081.115.076.178%2C0a6.288%2C6.288%2C0%2C0%2C1%2C6.194-2.735c.136.017.27.038.4.064.047.009.119.024.161.03.08.011.123-.071.123-.159A.155.155%2C0%2C0%2C0%2C125.173%2C121Z%22%20transform%3D%22translate(-94.24%20-116)%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_34%22%20data-name%3D%22Path%2034%22%20d%3D%22M126.894%2C125.978a.175.175%2C0%2C0%2C0-.022-.011%2C11.686%2C11.686%2C0%2C0%2C0-4.905-1.082%2C11.924%2C11.924%2C0%2C0%2C0-7.444%2C2.647%2C11.725%2C11.725%2C0%2C0%2C0-5.251-1.245%2C11.884%2C11.884%2C0%2C0%2C0-7.176%2C2.441.229.229%2C0%2C0%2C0-.022.016.217.217%2C0%2C0%2C0-.073.167.2.2%2C0%2C0%2C0%2C.191.211.167.167%2C0%2C0%2C0%2C.037%2C0%2C.118.118%2C0%2C0%2C0%2C.023-.008%2C11.679%2C11.679%2C0%2C0%2C1%2C3.71-.608c3.429%2C0%2C6.486.9%2C8.787%2C3.315a.093.093%2C0%2C0%2C1%2C.016.016.172.172%2C0%2C0%2C0%2C.123.052.18.18%2C0%2C0%2C0%2C.147-.078s.075-.115.111-.171a12.1%2C12.1%2C0%2C0%2C1%2C10.479-5.315c.306%2C0%2C.611.014.912.037l.273.022a.2.2%2C0%2C0%2C0%2C.191-.211A.211.211%2C0%2C0%2C0%2C126.894%2C125.978Z%22%20transform%3D%22translate(-100%20-115.885)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-html { width: 30px; height: 30px; diff --git a/apps/documenteditor/mobile/resources/less/app-ios.less b/apps/documenteditor/mobile/resources/less/app-ios.less index 67725e2b6..2c7ace91f 100644 --- a/apps/documenteditor/mobile/resources/less/app-ios.less +++ b/apps/documenteditor/mobile/resources/less/app-ios.less @@ -75,6 +75,10 @@ input, textarea { @import url('ios/_search.less'); @import url('ios/_icons.less'); +.label-switch input[type="checkbox"]:checked + .checkbox { + background: @themeColor; +} + // Top offset #editor_sdk { diff --git a/apps/documenteditor/mobile/resources/less/ios/_icons.less b/apps/documenteditor/mobile/resources/less/ios/_icons.less index 4fcb5f35b..33b506ad7 100644 --- a/apps/documenteditor/mobile/resources/less/ios/_icons.less +++ b/apps/documenteditor/mobile/resources/less/ios/_icons.less @@ -36,9 +36,24 @@ i.icon { .encoded-svg-background(''); } &.icon-download { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + &.icon-print { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + &.icon-spellcheck { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + &.icon-review { width: 22px; height: 28px; - .encoded-svg-background(''); + .encoded-svg-background(''); } &.icon-doc-setup { width: 22px; @@ -360,6 +375,11 @@ i.icon { height: 30px; .encoded-svg-background(''); } + &.icon-format-dotx { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-txt { width: 30px; height: 30px; @@ -370,11 +390,21 @@ i.icon { height: 30px; .encoded-svg-background(''); } + &.icon-format-pdfa { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-odt { width: 30px; height: 30px; .encoded-svg-background(''); } + &.icon-format-ott { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-html { width: 30px; height: 30px; diff --git a/apps/documenteditor/mobile/resources/less/material/_icons.less b/apps/documenteditor/mobile/resources/less/material/_icons.less index 139e2a979..2f4d150c3 100644 --- a/apps/documenteditor/mobile/resources/less/material/_icons.less +++ b/apps/documenteditor/mobile/resources/less/material/_icons.less @@ -31,9 +31,24 @@ i.icon { .encoded-svg-background(''); } &.icon-download { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + &.icon-print { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + &.icon-spellcheck { + width: 22px; + height: 22px; + .encoded-svg-background(''); + } + &.icon-review { width: 22px; height: 28px; - .encoded-svg-background(''); + .encoded-svg-background(''); } &.icon-doc-setup { width: 22px; @@ -282,6 +297,11 @@ i.icon { height: 30px; .encoded-svg-background(''); } + &.icon-format-dotx { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-txt { width: 30px; height: 30px; @@ -292,11 +312,21 @@ i.icon { height: 30px; .encoded-svg-background(''); } + &.icon-format-pdfa { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-odt { width: 30px; height: 30px; .encoded-svg-background(''); } + &.icon-format-ott { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-html { width: 30px; height: 30px; diff --git a/apps/documenteditor/mobile/test/tests/de-mobile-edit-tablet-ios.js b/apps/documenteditor/mobile/test/tests/de-mobile-edit-tablet-ios.js index 055ae1995..a985c0f50 100644 --- a/apps/documenteditor/mobile/test/tests/de-mobile-edit-tablet-ios.js +++ b/apps/documenteditor/mobile/test/tests/de-mobile-edit-tablet-ios.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/mobile/test/utils.js b/apps/documenteditor/mobile/test/utils.js index 078af7897..7bf07d425 100644 --- a/apps/documenteditor/mobile/test/utils.js +++ b/apps/documenteditor/mobile/test/utils.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/documenteditor/sdk_dev_scripts.js b/apps/documenteditor/sdk_dev_scripts.js index a935b8bd2..a63161976 100644 --- a/apps/documenteditor/sdk_dev_scripts.js +++ b/apps/documenteditor/sdk_dev_scripts.js @@ -75,6 +75,7 @@ var sdk_dev_scrpipts = [ "../../../../sdkjs/common/Scrolls/iscroll.js", "../../../../sdkjs/common/Scrolls/mobileTouchManagerBase.js", "../../../../sdkjs/common/wordcopypaste.js", + "../../../../sdkjs/common/intervalTree.js", "../../../../sdkjs/word/apiDefines.js", "../../../../sdkjs/cell/utils/utils.js", "../../../../sdkjs/cell/model/WorkbookElems.js", diff --git a/apps/presentationeditor/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js index 2d00e2802..e8625b6f5 100644 --- a/apps/presentationeditor/embed/js/ApplicationController.js +++ b/apps/presentationeditor/embed/js/ApplicationController.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/embed/js/ApplicationView.js b/apps/presentationeditor/embed/js/ApplicationView.js index f8dcfdbeb..dbbdb198d 100644 --- a/apps/presentationeditor/embed/js/ApplicationView.js +++ b/apps/presentationeditor/embed/js/ApplicationView.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/embed/js/application.js b/apps/presentationeditor/embed/js/application.js index 374a14e7c..7d10d275f 100644 --- a/apps/presentationeditor/embed/js/application.js +++ b/apps/presentationeditor/embed/js/application.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app.js b/apps/presentationeditor/main/app.js index ba356b5a7..f7b37369f 100644 --- a/apps/presentationeditor/main/app.js +++ b/apps/presentationeditor/main/app.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app.reporter.js b/apps/presentationeditor/main/app.reporter.js index 9e1b81d9a..504250c20 100644 --- a/apps/presentationeditor/main/app.reporter.js +++ b/apps/presentationeditor/main/app.reporter.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/collection/EquationGroups.js b/apps/presentationeditor/main/app/collection/EquationGroups.js index 0a858fbe4..95bdaeda2 100644 --- a/apps/presentationeditor/main/app/collection/EquationGroups.js +++ b/apps/presentationeditor/main/app/collection/EquationGroups.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/collection/ShapeGroups.js b/apps/presentationeditor/main/app/collection/ShapeGroups.js index 8a503e808..1220835ba 100644 --- a/apps/presentationeditor/main/app/collection/ShapeGroups.js +++ b/apps/presentationeditor/main/app/collection/ShapeGroups.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/collection/SlideLayouts.js b/apps/presentationeditor/main/app/collection/SlideLayouts.js index ea82dbfcf..d101b2d2e 100644 --- a/apps/presentationeditor/main/app/collection/SlideLayouts.js +++ b/apps/presentationeditor/main/app/collection/SlideLayouts.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/collection/SlideThemes.js b/apps/presentationeditor/main/app/collection/SlideThemes.js index 793b68ade..9fe1d7d52 100644 --- a/apps/presentationeditor/main/app/collection/SlideThemes.js +++ b/apps/presentationeditor/main/app/collection/SlideThemes.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/controller/DocumentHolder.js b/apps/presentationeditor/main/app/controller/DocumentHolder.js index 8a60e91d8..48168be0d 100644 --- a/apps/presentationeditor/main/app/controller/DocumentHolder.js +++ b/apps/presentationeditor/main/app/controller/DocumentHolder.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/controller/LeftMenu.js b/apps/presentationeditor/main/app/controller/LeftMenu.js index e21d19dd1..59a776d9b 100644 --- a/apps/presentationeditor/main/app/controller/LeftMenu.js +++ b/apps/presentationeditor/main/app/controller/LeftMenu.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -419,7 +419,7 @@ define([ } if (show) { - var mode = this.mode.isEdit ? (action || undefined) : 'no-replace'; + var mode = this.mode.isEdit && !this.viewmode ? (action || undefined) : 'no-replace'; if (this.dlgSearch.isVisible()) { this.dlgSearch.setMode(mode); this.dlgSearch.focus(); @@ -464,6 +464,13 @@ define([ } }, + setPreviewMode: function(mode) { + if (this.viewmode === mode) return; + this.viewmode = mode; + + this.dlgSearch && this.dlgSearch.setMode(this.viewmode ? 'no-replace' : 'search'); + }, + onApiServerDisconnect: function(enableDownload) { this.mode.isEdit = false; this.leftMenu.close(); diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 3114c960d..ac6732cee 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -70,7 +70,6 @@ define([ toolbar: '#viewport #toolbar', leftMenu: '#viewport #left-menu, #viewport #id-toolbar-full-placeholder-btn-settings, #viewport #id-toolbar-short-placeholder-btn-settings', rightMenu: '#viewport #right-menu', - header: '#viewport #header', statusBar: '#statusbar' }; @@ -229,6 +228,15 @@ define([ event.dataTransfer.dropEffect ="none"; return false; } + }).on('dragstart', function(e) { + var event = e.originalEvent; + if (event.target ) { + var target = $(event.target); + if (target.closest('.combobox').length>0 || target.closest('.dropdown-menu').length>0 || + target.closest('.ribtab').length>0 || target.closest('.combo-dataview').length>0) { + event.preventDefault(); + } + } }); Common.NotificationCenter.on({ @@ -394,7 +402,9 @@ define([ Asc.c_oAscFileType.PPTX, Asc.c_oAscFileType.ODP, Asc.c_oAscFileType.PDF, - Asc.c_oAscFileType.PDFA + Asc.c_oAscFileType.PDFA, + Asc.c_oAscFileType.POTX, + Asc.c_oAscFileType.OTP ]; if ( !_format || _supported.indexOf(_format) < 0 ) @@ -795,7 +805,6 @@ define([ value = (value!==null) ? parseInt(value) : 0; var now = (new Date).getTime(); if (now - value > 86400000) { - Common.localStorage.setItem("pe-license-warning", now); Common.UI.info({ width: 500, title: this.textNoLicenseTitle, @@ -803,6 +812,7 @@ define([ buttons: buttons, primary: primary, callback: function(btn) { + Common.localStorage.setItem("pe-license-warning", now); if (btn == 'buynow') window.open('https://www.onlyoffice.com', "_blank"); else if (btn == 'contact') @@ -898,6 +908,10 @@ define([ this.appOptions.canBranding = (licType === Asc.c_oLicenseResult.Success) && (typeof this.editorConfig.customization == 'object'); if (this.appOptions.canBranding) appHeader.setBranding(this.editorConfig.customization); + else if (typeof this.editorConfig.customization == 'object') { + this.editorConfig.customization.compactHeader = this.editorConfig.customization.toolbarBreakTabs = + this.editorConfig.customization.toolbarHideFileName = false; + } this.appOptions.canRename && appHeader.setCanRename(true); @@ -923,18 +937,12 @@ define([ applyModeCommonElements: function() { window.editor_elements_prepared = true; - // var value = Common.localStorage.getItem("pe-hidden-title"); - // value = this.appOptions.isEdit && (value!==null && parseInt(value) == 1); - var app = this.getApplication(), viewport = app.getController('Viewport').getView('Viewport'), statusbarView = app.getController('Statusbar').getView('Statusbar'), documentHolder = app.getController('DocumentHolder').getView('DocumentHolder'), toolbarController = app.getController('Toolbar'); - // appHeader.setHeaderCaption(this.appOptions.isEdit ? 'Presentation Editor' : 'Presentation Viewer'); - // appHeader.setVisible(!this.appOptions.nativeApp && !value && !this.appOptions.isDesktopApp); - viewport && viewport.setMode(this.appOptions, true); statusbarView && statusbarView.setMode(this.appOptions); toolbarController.setMode(this.appOptions); @@ -1574,7 +1582,7 @@ define([ store.add({ imageUrl : shape.Image, data : {shapeType: shape.Type}, - tip : me.textShape + ' ' + (idx+1), + tip : me['txtShape_' + shape.Type] || (me.textShape + ' ' + (idx+1)), allowSelected : true, selected: false }); @@ -1640,20 +1648,23 @@ define([ }, loadLanguages: function(apiLangs) { - var langs = [], info; - _.each(apiLangs, function(lang, index, list){ - lang = parseInt(lang); - info = Common.util.LanguageInfo.getLocalLanguageName(lang); - langs.push({ - title: info[1], - tip: info[0], - code: lang - }); - }, this); + var langs = [], info, + allLangs = Common.util.LanguageInfo.getLanguages(); + for (var code in allLangs) { + if (allLangs.hasOwnProperty(code)) { + info = allLangs[code]; + info[2] && langs.push({ + displayValue: info[1], + value: info[0], + code: parseInt(code), + spellcheck: _.indexOf(apiLangs, code)>-1 + }); + } + } langs.sort(function(a, b){ - if (a.tip < b.tip) return -1; - if (a.tip > b.tip) return 1; + if (a.value < b.value) return -1; + if (a.value > b.value) return 1; return 0; }); @@ -1662,6 +1673,9 @@ define([ }, setLanguages: function() { + if (!this.languages || this.languages.length<1) { + this.loadLanguages([]); + } if (this.languages && this.languages.length>0) { this.getApplication().getController('DocumentHolder').getView('DocumentHolder').setLanguages(this.languages); this.getApplication().getController('Statusbar').setLanguages(this.languages); @@ -1860,7 +1874,7 @@ define([ var variationsArr = [], pluginVisible = false; item.variations.forEach(function(itemVar){ - var visible = (isEdit || itemVar.isViewer && (itemVar.isDisplayedInViewer!==false)) && _.contains(itemVar.EditorsSupport, 'slide'); + var visible = (isEdit || itemVar.isViewer && (itemVar.isDisplayedInViewer!==false)) && _.contains(itemVar.EditorsSupport, 'slide') && !itemVar.isSystem; if ( visible ) pluginVisible = true; if ( item.isUICustomizer ) { @@ -2112,7 +2126,178 @@ define([ textLicencePaidFeature: 'The feature you are trying to use is available for additional payment.
    If you need it, please contact Sales Department', scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.', errorEditingSaveas: 'An error occurred during the work with the document.
    Use the \'Save as...\' option to save the file backup copy to your computer hard drive.', - errorEditingDownloadas: 'An error occurred during the work with the document.
    Use the \'Download as...\' option to save the file backup copy to your computer hard drive.' + errorEditingDownloadas: 'An error occurred during the work with the document.
    Use the \'Download as...\' option to save the file backup copy to your computer hard drive.', + txtShape_textRect: 'Text Box', + txtShape_rect: 'Rectangle', + txtShape_ellipse: 'Ellipse', + txtShape_triangle: 'Triangle', + txtShape_rtTriangle: 'Right Triangle', + txtShape_parallelogram: 'Parallelogram', + txtShape_trapezoid: 'Trapezoid', + txtShape_diamond: 'Diamond', + txtShape_pentagon: 'Pentagon', + txtShape_hexagon: 'Hexagon', + txtShape_heptagon: 'Heptagon', + txtShape_octagon: 'Octagon', + txtShape_decagon: 'Decagon', + txtShape_dodecagon: 'Dodecagon', + txtShape_pie: 'Pie', + txtShape_chord: 'Chord', + txtShape_teardrop: 'Teardrop', + txtShape_frame: 'Frame', + txtShape_halfFrame: 'Half Frame', + txtShape_corner: 'Corner', + txtShape_diagStripe: 'Diagonal Stripe', + txtShape_plus: 'Plus', + txtShape_plaque: 'Sign', + txtShape_can: 'Can', + txtShape_cube: 'Cube', + txtShape_bevel: 'Bevel', + txtShape_donut: 'Donut', + txtShape_noSmoking: '"No" Symbol', + txtShape_blockArc: 'Block Arc', + txtShape_foldedCorner: 'Folded Corner', + txtShape_smileyFace: 'Smiley Face', + txtShape_heart: 'Heart', + txtShape_lightningBolt: 'Lightning Bolt', + txtShape_sun: 'Sun', + txtShape_moon: 'Moon', + txtShape_cloud: 'Cloud', + txtShape_arc: 'Arc', + txtShape_bracePair: 'Double Brace', + txtShape_leftBracket: 'Left Bracket', + txtShape_rightBracket: 'Right Bracket', + txtShape_leftBrace: 'Left Brace', + txtShape_rightBrace: 'Right Brace', + txtShape_rightArrow: 'Right Arrow', + txtShape_leftArrow: 'Left Arrow', + txtShape_upArrow: 'Up Arrow', + txtShape_downArrow: 'Down Arrow', + txtShape_leftRightArrow: 'Left Right Arrow', + txtShape_upDownArrow: 'Up Down Arrow', + txtShape_quadArrow: 'Quad Arrow', + txtShape_leftRightUpArrow: 'Left Right Up Arrow', + txtShape_bentArrow: 'Bent Arrow', + txtShape_uturnArrow: 'U-Turn Arrow', + txtShape_leftUpArrow: 'Left Up Arrow', + txtShape_bentUpArrow: 'Bent Up Arrow', + txtShape_curvedRightArrow: 'Curved Right Arrow', + txtShape_curvedLeftArrow: 'Curved Left Arrow', + txtShape_curvedUpArrow: 'Curved Up Arrow', + txtShape_curvedDownArrow: 'Curved Down Arrow', + txtShape_stripedRightArrow: 'Striped Right Arrow', + txtShape_notchedRightArrow: 'Notched Right Arrow', + txtShape_homePlate: 'Pentagon', + txtShape_chevron: 'Chevron', + txtShape_rightArrowCallout: 'Right Arrow Callout', + txtShape_downArrowCallout: 'Down Arrow Callout', + txtShape_leftArrowCallout: 'Left Arrow Callout', + txtShape_upArrowCallout: 'Up Arrow Callout', + txtShape_leftRightArrowCallout: 'Left Right Arrow Callout', + txtShape_quadArrowCallout: 'Quad Arrow Callout', + txtShape_circularArrow: 'Circular Arrow', + txtShape_mathPlus: 'Plus', + txtShape_mathMinus: 'Minus', + txtShape_mathMultiply: 'Multiply', + txtShape_mathDivide: 'Division', + txtShape_mathEqual: 'Equal', + txtShape_mathNotEqual: 'Not Equal', + txtShape_flowChartProcess: 'Flowchart: Process', + txtShape_flowChartAlternateProcess: 'Flowchart: Alternate Process', + txtShape_flowChartDecision: 'Flowchart: Decision', + txtShape_flowChartInputOutput: 'Flowchart: Data', + txtShape_flowChartPredefinedProcess: 'Flowchart: Predefined Process', + txtShape_flowChartInternalStorage: 'Flowchart: Internal Storage', + txtShape_flowChartDocument: 'Flowchart: Document', + txtShape_flowChartMultidocument: 'Flowchart: Multidocument ', + txtShape_flowChartTerminator: 'Flowchart: Terminator', + txtShape_flowChartPreparation: 'Flowchart: Preparation', + txtShape_flowChartManualInput: 'Flowchart: Manual Input', + txtShape_flowChartManualOperation: 'Flowchart: Manual Operation', + txtShape_flowChartConnector: 'Flowchart: Connector', + txtShape_flowChartOffpageConnector: 'Flowchart: Off-page Connector', + txtShape_flowChartPunchedCard: 'Flowchart: Card', + txtShape_flowChartPunchedTape: 'Flowchart: Punched Tape', + txtShape_flowChartSummingJunction: 'Flowchart: Summing Junction', + txtShape_flowChartOr: 'Flowchart: Or', + txtShape_flowChartCollate: 'Flowchart: Collate', + txtShape_flowChartSort: 'Flowchart: Sort', + txtShape_flowChartExtract: 'Flowchart: Extract', + txtShape_flowChartMerge: 'Flowchart: Merge', + txtShape_flowChartOnlineStorage: 'Flowchart: Stored Data', + txtShape_flowChartDelay: 'Flowchart: Delay', + txtShape_flowChartMagneticTape: 'Flowchart: Sequential Access Storage', + txtShape_flowChartMagneticDisk: 'Flowchart: Magnetic Disk', + txtShape_flowChartMagneticDrum: 'Flowchart: Direct Access Storage', + txtShape_flowChartDisplay: 'Flowchart: Display', + txtShape_irregularSeal1: 'Explosion 1', + txtShape_irregularSeal2: 'Explosion 2', + txtShape_star4: '4-Point Star', + txtShape_star5: '5-Point Star', + txtShape_star6: '6-Point Star', + txtShape_star7: '7-Point Star', + txtShape_star8: '8-Point Star', + txtShape_star10: '10-Point Star', + txtShape_star12: '12-Point Star', + txtShape_star16: '16-Point Star', + txtShape_star24: '24-Point Star', + txtShape_star32: '32-Point Star', + txtShape_ribbon2: 'Up Ribbon', + txtShape_ribbon: 'Down Ribbon', + txtShape_ellipseRibbon2: 'Curved Up Ribbon', + txtShape_ellipseRibbon: 'Curved Down Ribbon', + txtShape_verticalScroll: 'Vertical Scroll', + txtShape_horizontalScroll: 'Horizontal Scroll', + txtShape_wave: 'Wave', + txtShape_doubleWave: 'Double Wave', + txtShape_wedgeRectCallout: 'Rectangular Callout', + txtShape_wedgeRoundRectCallout: 'Rounded Rectangular Callout', + txtShape_wedgeEllipseCallout: 'Oval Callout', + txtShape_cloudCallout: 'Cloud Callout', + txtShape_borderCallout1: 'Line Callout 1', + txtShape_borderCallout2: 'Line Callout 2', + txtShape_borderCallout3: 'Line Callout 3', + txtShape_accentCallout1: 'Line Callout 1 (Accent Bar)', + txtShape_accentCallout2: 'Line Callout 2 (Accent Bar)', + txtShape_accentCallout3: 'Line Callout 3 (Accent Bar)', + txtShape_callout1: 'Line Callout 1 (No Border)', + txtShape_callout2: 'Line Callout 2 (No Border)', + txtShape_callout3: 'Line Callout 3 (No Border)', + txtShape_accentBorderCallout1: 'Line Callout 1 (Border and Accent Bar)', + txtShape_accentBorderCallout2: 'Line Callout 2 (Border and Accent Bar)', + txtShape_accentBorderCallout3: 'Line Callout 3 (Border and Accent Bar)', + txtShape_actionButtonBackPrevious: 'Back or Previous Button', + txtShape_actionButtonForwardNext: 'Forward or Next Button', + txtShape_actionButtonBeginning: 'Beginning Button', + txtShape_actionButtonEnd: 'End Button', + txtShape_actionButtonHome: 'Home Button', + txtShape_actionButtonInformation: 'Information Button', + txtShape_actionButtonReturn: 'Return Button', + txtShape_actionButtonMovie: 'Movie Button', + txtShape_actionButtonDocument: 'Document Button', + txtShape_actionButtonSound: 'Sound Button', + txtShape_actionButtonHelp: 'Help Button', + txtShape_actionButtonBlank: 'Blank Button', + txtShape_roundRect: 'Round Corner Rectangle', + txtShape_snip1Rect: 'Snip Single Corner Rectangle', + txtShape_snip2SameRect: 'Snip Same Side Corner Rectangle', + txtShape_snip2DiagRect: 'Snip Diagonal Corner Rectangle', + txtShape_snipRoundRect: 'Snip and Round Single Corner Rectangle', + txtShape_round1Rect: 'Round Single Corner Rectangle', + txtShape_round2SameRect: 'Round Same Side Corner Rectangle', + txtShape_round2DiagRect: 'Round Diagonal Corner Rectangle', + txtShape_line: 'Line', + txtShape_lineWithArrow: 'Arrow', + txtShape_lineWithTwoArrows: 'Double Arrow', + txtShape_bentConnector5: 'Elbow Connector', + txtShape_bentConnector5WithArrow: 'Elbow Arrow Connector', + txtShape_bentConnector5WithTwoArrows: 'Elbow Double-Arrow Connector', + txtShape_curvedConnector3: 'Curved Connector', + txtShape_curvedConnector3WithArrow: 'Curved Arrow Connector', + txtShape_curvedConnector3WithTwoArrows: 'Curved Double-Arrow Connector', + txtShape_spline: 'Curve', + txtShape_polyline1: 'Scribble', + txtShape_polyline2: 'Freeform' } })(), PE.Controllers.Main || {})) }); diff --git a/apps/presentationeditor/main/app/controller/RightMenu.js b/apps/presentationeditor/main/app/controller/RightMenu.js index af4b18eaa..7dba2eed8 100644 --- a/apps/presentationeditor/main/app/controller/RightMenu.js +++ b/apps/presentationeditor/main/app/controller/RightMenu.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/controller/Statusbar.js b/apps/presentationeditor/main/app/controller/Statusbar.js index c2635a5ee..401ff7ecd 100644 --- a/apps/presentationeditor/main/app/controller/Statusbar.js +++ b/apps/presentationeditor/main/app/controller/Statusbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -179,8 +179,8 @@ define([ _onTextLanguage: function(langId) { var info = Common.util.LanguageInfo.getLocalLanguageName(langId); this.statusbar.setLanguage({ - tip: info[0], - title: info[1], + value: info[0], + displayValue: info[1], code: langId }); }, @@ -209,21 +209,13 @@ define([ }, onBtnLanguage: function() { - var langs = _.map(this.langs, function(item){ - return { - displayValue: item.title, - value: item.tip, - code: item.code - } - }); - var me = this; (new Common.Views.LanguageDialog({ - languages: langs, + languages: me.langs, current: me.api.asc_getDefaultLanguage(), - handler: function(result, tip) { + handler: function(result, value) { if (result=='ok') { - var record = _.findWhere(langs, {'value':tip}); + var record = _.findWhere(me.langs, {'value':value}); record && me.api.asc_setDefaultLanguage(record.code); } } diff --git a/apps/presentationeditor/main/app/controller/Toolbar.js b/apps/presentationeditor/main/app/controller/Toolbar.js index 492f45054..fc0b93b4c 100644 --- a/apps/presentationeditor/main/app/controller/Toolbar.js +++ b/apps/presentationeditor/main/app/controller/Toolbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -151,7 +151,9 @@ define([ var _supported = [ Asc.c_oAscFileType.PPTX, Asc.c_oAscFileType.ODP, - Asc.c_oAscFileType.PDFA + Asc.c_oAscFileType.PDFA, + Asc.c_oAscFileType.POTX, + Asc.c_oAscFileType.OTP ]; if ( !_format || _supported.indexOf(_format) < 0 ) @@ -295,6 +297,7 @@ define([ $('#id-toolbar-menu-new-fontcolor').on('click', _.bind(this.onNewFontColor, this)); toolbar.btnLineSpace.menu.on('item:toggle', _.bind(this.onLineSpaceToggle, this)); toolbar.btnShapeAlign.menu.on('item:click', _.bind(this.onShapeAlign, this)); + toolbar.btnShapeAlign.menu.on('show:before', _.bind(this.onBeforeShapeAlign, this)); toolbar.btnShapeArrange.menu.on('item:click', _.bind(this.onShapeArrange, this)); toolbar.btnInsertHyperlink.on('click', _.bind(this.onHyperlinkClick, this)); toolbar.mnuTablePicker.on('select', _.bind(this.onTablePickerSelect, this)); @@ -306,6 +309,8 @@ define([ toolbar.mnuInsertChartPicker.on('item:click', _.bind(this.onSelectChart, this)); toolbar.listTheme.on('click', _.bind(this.onListThemeSelect, this)); toolbar.btnInsertEquation.on('click', _.bind(this.onInsertEquationClick, this)); + + this.onSetupCopyStyleButton(); }, setApi: function(api) { @@ -351,8 +356,6 @@ define([ this.api.asc_registerCallback('asc_onCountPages', _.bind(this.onApiCountPages, this)); this.api.asc_registerCallback('asc_onMathTypes', _.bind(this.onMathTypes, this)); this.api.asc_registerCallback('asc_onContextMenu', _.bind(this.onContextMenu, this)); - - this.onSetupCopyStyleButton(); }, onChangeCompactView: function(view, compact) { @@ -1209,16 +1212,27 @@ define([ } }, + onBeforeShapeAlign: function() { + var value = this.api.asc_getSelectedDrawingObjectsCount(), + slide_checked = Common.Utils.InternalSettings.get("pe-align-to-slide") || false; + this.toolbar.mniAlignObjects.setDisabled(value<2); + this.toolbar.mniAlignObjects.setChecked(value>1 && !slide_checked, true); + this.toolbar.mniAlignToSlide.setChecked(value<2 || slide_checked, true); + this.toolbar.mniDistribHor.setDisabled(value<3 && this.toolbar.mniAlignObjects.isChecked()); + this.toolbar.mniDistribVert.setDisabled(value<3 && this.toolbar.mniAlignObjects.isChecked()); + }, + onShapeAlign: function(menu, item) { if (this.api) { - if (item.value < 6) { - this.api.put_ShapesAlign(item.value); + var value = this.toolbar.mniAlignToSlide.isChecked() ? Asc.c_oAscObjectsAlignType.Slide : Asc.c_oAscObjectsAlignType.Selected; + if (item.value>-1 && item.value < 6) { + this.api.put_ShapesAlign(item.value, value); Common.component.Analytics.trackEvent('ToolBar', 'Shape Align'); } else if (item.value == 6) { - this.api.DistributeHorizontally(); + this.api.DistributeHorizontally(value); Common.component.Analytics.trackEvent('ToolBar', 'Distribute'); - } else { - this.api.DistributeVertically(); + } else if (item.value == 7){ + this.api.DistributeVertically(value); Common.component.Analytics.trackEvent('ToolBar', 'Distribute'); } Common.NotificationCenter.trigger('edit:complete', this.toolbar); @@ -1541,16 +1555,6 @@ define([ Common.component.Analytics.trackEvent('ToolBar', 'Style'); }, - onHideTitleBar: function(item, checked) { - var headerView = this.getApplication().getController('Viewport').getView('Common.Views.Header'); - headerView && headerView.setVisible(!checked); - - Common.localStorage.setItem('pe-hidden-title', checked ? 1 : 0); - - Common.NotificationCenter.trigger('layout:changed', 'header'); - Common.NotificationCenter.trigger('edit:complete', this.toolbar); - }, - _clearBullets: function() { this.toolbar.btnMarkers.toggle(false, true); this.toolbar.btnNumbers.toggle(false, true); @@ -1936,18 +1940,12 @@ define([ onSetupCopyStyleButton: function () { this.modeAlwaysSetStyle = false; - var acsCopyFmtStyleState = { - kOff : 0, - kOn : 1, - kMultiple : 2 - }; - var me = this; Common.NotificationCenter.on({ 'edit:complete': function () { if (me.api && me.modeAlwaysSetStyle) { - me.api.SetPaintFormat(acsCopyFmtStyleState.kOff); + me.api.SetPaintFormat(AscCommon.c_oAscFormatPainterState.kOff); me.toolbar.btnCopyStyle.toggle(false, true); me.modeAlwaysSetStyle = false; } @@ -1958,7 +1956,7 @@ define([ if (me.api) { me.modeAlwaysSetStyle = true; me.toolbar.btnCopyStyle.toggle(true, true); - me.api.SetPaintFormat(acsCopyFmtStyleState.kMultiple); + me.api.SetPaintFormat(AscCommon.c_oAscFormatPainterState.kMultiple); } }); }, @@ -2018,15 +2016,18 @@ define([ me.toolbar.addTab(tab, $panel, 3); me.toolbar.btnSave.on('disabled', _.bind(me.onBtnChangeState, me, 'save:disabled')); - // hide 'print' and 'save' buttons group and next separator - me.toolbar.btnPrint.$el.parents('.group').hide().next().hide(); - // hide 'undo' and 'redo' buttons and get container - var $box = me.toolbar.btnUndo.$el.hide().next().hide().parent(); + if (!(config.customization && config.customization.compactHeader)) { + // hide 'print' and 'save' buttons group and next separator + me.toolbar.btnPrint.$el.parents('.group').hide().next().hide(); - // move 'paste' button to the container instead of 'undo' and 'redo' - me.toolbar.btnPaste.$el.detach().appendTo($box); - me.toolbar.btnCopy.$el.removeClass('split'); + // hide 'undo' and 'redo' buttons and get container + var $box = me.toolbar.btnUndo.$el.hide().next().hide().parent(); + + // move 'paste' button to the container instead of 'undo' and 'redo' + me.toolbar.btnPaste.$el.detach().appendTo($box); + me.toolbar.btnCopy.$el.removeClass('split'); + } if ( config.isDesktopApp ) { if ( config.canProtect ) { // don't add protect panel to toolbar diff --git a/apps/presentationeditor/main/app/controller/Viewport.js b/apps/presentationeditor/main/app/controller/Viewport.js index 0f04f3981..26b7f194c 100644 --- a/apps/presentationeditor/main/app/controller/Viewport.js +++ b/apps/presentationeditor/main/app/controller/Viewport.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -77,7 +77,7 @@ define([ 'render:before' : function (toolbar) { var config = PE.getController('Main').appOptions; toolbar.setExtra('right', me.header.getPanel('right', config)); - if (!config.isEdit) + if (!config.isEdit || config.customization && !!config.customization.compactHeader) toolbar.setExtra('left', me.header.getPanel('left', config)); }, 'view:compact' : function (toolbar, state) { @@ -165,7 +165,7 @@ define([ me.viewport.vlayout.getItem('toolbar').height = _intvars.get('toolbar-height-compact'); } - if ( config.isEdit ) { + if ( config.isEdit && (!(config.customization && config.customization.compactHeader))) { var $title = me.viewport.vlayout.getItem('title').el; $title.html(me.header.getPanel('title', config)).show(); $title.find('.extra').html(me.header.getPanel('left', config)); @@ -184,6 +184,14 @@ define([ toolbar = me.getApplication().getController('Toolbar').getView('Toolbar'); toolbar.btnCollabChanges = me.header.btnSave; } + + if ( config.customization ) { + if ( config.customization.toolbarBreakTabs ) + me.viewport.vlayout.getItem('toolbar').el.addClass('style-off-tabs'); + + if ( config.customization.toolbarHideFileName ) + me.viewport.vlayout.getItem('toolbar').el.addClass('style-skip-docname'); + } }, onAppReady: function (config) { @@ -343,6 +351,7 @@ define([ finalMessage: me.previewPanel.txtFinalMessage }; reporterObject.token = me.api.asc_getSessionToken(); + reporterObject.customization = me.viewport.mode.customization; } if (this.previewPanel && !this.previewPanel.isVisible() && this.api) { diff --git a/apps/presentationeditor/main/app/model/EquationGroup.js b/apps/presentationeditor/main/app/model/EquationGroup.js index cb98b5a4f..f1fd2b5aa 100644 --- a/apps/presentationeditor/main/app/model/EquationGroup.js +++ b/apps/presentationeditor/main/app/model/EquationGroup.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/model/Pages.js b/apps/presentationeditor/main/app/model/Pages.js index 66fcb0100..0dbac7721 100644 --- a/apps/presentationeditor/main/app/model/Pages.js +++ b/apps/presentationeditor/main/app/model/Pages.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/model/ShapeGroup.js b/apps/presentationeditor/main/app/model/ShapeGroup.js index 8ee0e99ef..7e333e9c4 100644 --- a/apps/presentationeditor/main/app/model/ShapeGroup.js +++ b/apps/presentationeditor/main/app/model/ShapeGroup.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/model/SlideLayout.js b/apps/presentationeditor/main/app/model/SlideLayout.js index e87d46884..80f096933 100644 --- a/apps/presentationeditor/main/app/model/SlideLayout.js +++ b/apps/presentationeditor/main/app/model/SlideLayout.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/template/StatusBar.template b/apps/presentationeditor/main/app/template/StatusBar.template index 8fe9e79a2..73e44e237 100644 --- a/apps/presentationeditor/main/app/template/StatusBar.template +++ b/apps/presentationeditor/main/app/template/StatusBar.template @@ -29,7 +29,6 @@
    -
    - +
    +
    diff --git a/apps/presentationeditor/main/app/template/ToolbarView.template b/apps/presentationeditor/main/app/template/ToolbarView.template index e92b7992b..ff388fce3 100644 --- a/apps/presentationeditor/main/app/template/ToolbarView.template +++ b/apps/presentationeditor/main/app/template/ToolbarView.template @@ -1,4 +1,4 @@ -
    +
    <%= tabsmarkup %> diff --git a/apps/presentationeditor/main/app/view/ChartSettings.js b/apps/presentationeditor/main/app/view/ChartSettings.js index 6d208a271..5c82c59a5 100644 --- a/apps/presentationeditor/main/app/view/ChartSettings.js +++ b/apps/presentationeditor/main/app/view/ChartSettings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/ChartSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ChartSettingsAdvanced.js index 7ef6aa9e4..0c13c894a 100644 --- a/apps/presentationeditor/main/app/view/ChartSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ChartSettingsAdvanced.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/DocumentHolder.js b/apps/presentationeditor/main/app/view/DocumentHolder.js index 34c6dac5a..528e2258a 100644 --- a/apps/presentationeditor/main/app/view/DocumentHolder.js +++ b/apps/presentationeditor/main/app/view/DocumentHolder.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -1906,7 +1906,7 @@ define([ me.slideMenu.items[5].setVisible(value.isSlideSelect===true || value.fromThumbs!==true); mnuChangeSlide.setVisible(value.isSlideSelect===true || value.fromThumbs!==true); mnuChangeTheme.setVisible(value.isSlideSelect===true || value.fromThumbs!==true); - menuSlideSettings.setVisible(value.fromThumbs!==true); + menuSlideSettings.setVisible(value.isSlideSelect===true || value.fromThumbs!==true); menuSlideSettings.options.value = null; for (var i = 9; i < 13; i++) { @@ -2153,12 +2153,21 @@ define([ me.langTableMenu = new Common.UI.MenuItem({ caption : me.langText, menu : new Common.UI.Menu({ + cls: 'lang-menu', menuAlign: 'tl-tr', maxHeight: 300, + restoreHeight: 300, items : [ ] - }).on('show:after', function(menu) { - // TODO: scroll to checked item + }).on('show:before', function (mnu) { + if (!this.scroller) { + this.scroller = new Common.UI.Scroller({ + el: $(this.el).find('.dropdown-menu '), + useKeyboard: this.enableKeyEvents && !this.handleSelect, + minScrollbarLength: 30, + alwaysVisibleY: true + }); + } }) }); @@ -2222,12 +2231,21 @@ define([ me.langParaMenu = new Common.UI.MenuItem({ caption : me.langText, menu : new Common.UI.Menu({ + cls: 'lang-menu', menuAlign: 'tl-tr', maxHeight: 300, + restoreHeight: 300, items : [ ] - }).on('show:after', function(menu) { - // TODO: scroll to checked item + }).on('show:before', function (mnu) { + if (!this.scroller) { + this.scroller = new Common.UI.Scroller({ + el: $(this.el).find('.dropdown-menu '), + useKeyboard: this.enableKeyEvents && !this.handleSelect, + minScrollbarLength: 30, + alwaysVisibleY: true + }); + } }) }); @@ -2546,11 +2564,20 @@ define([ menu : (function(){ function onItemClick(item) { if (me.api) { - me.api.put_ShapesAlign(item.value); + var value = me.api.asc_getSelectedDrawingObjectsCount()<2 || Common.Utils.InternalSettings.get("pe-align-to-slide"); + value = value ? Asc.c_oAscObjectsAlignType.Slide : Asc.c_oAscObjectsAlignType.Selected; + if (item.value < 6) { + me.api.put_ShapesAlign(item.value, value); + Common.component.Analytics.trackEvent('DocumentHolder', 'Shape Align'); + } else if (item.value == 6) { + me.api.DistributeHorizontally(value); + Common.component.Analytics.trackEvent('DocumentHolder', 'Distribute Horizontally'); + } else if (item.value == 7){ + me.api.DistributeVertically(value); + Common.component.Analytics.trackEvent('DocumentHolder', 'Distribute Vertically'); + } } - me.fireEvent('editcomplete', me); - Common.component.Analytics.trackEvent('DocumentHolder', 'Image Shape Align'); } return new Common.UI.Menu({ @@ -2589,26 +2616,14 @@ define([ {caption : '--'}, new Common.UI.MenuItem({ caption : me.txtDistribHor, - iconCls : 'mnu-distrib-hor' - }).on('click', function(item) { - if (me.api) { - me.api.DistributeHorizontally(); - } - - me.fireEvent('editcomplete', me); - Common.component.Analytics.trackEvent('DocumentHolder', 'Distribute Horizontally'); - }), + iconCls : 'mnu-distrib-hor', + value : 6 + }).on('click', _.bind(onItemClick, me)), new Common.UI.MenuItem({ caption : me.txtDistribVert, - iconCls : 'mnu-distrib-vert' - }).on('click', function(item) { - if (me.api) { - me.api.DistributeVertically(); - } - - me.fireEvent('editcomplete', me); - Common.component.Analytics.trackEvent('DocumentHolder', 'Distribute Vertically'); - }) + iconCls : 'mnu-distrib-vert', + value : 7 + }).on('click', _.bind(onItemClick, me)) ] }) })() @@ -2762,6 +2777,48 @@ define([ }) }); + var onImgRotate = function(item) { + var properties = new Asc.asc_CShapeProperty(); + properties.asc_putRotAdd((item.value==1 ? 90 : 270) * 3.14159265358979 / 180); + me.api.ShapeApply(properties); + me.fireEvent('editcomplete', me); + }; + + var onImgFlip = function(item) { + var properties = new Asc.asc_CShapeProperty(); + if (item.value==1) + properties.asc_putFlipHInvert(true); + else + properties.asc_putFlipVInvert(true); + me.api.ShapeApply(properties); + me.fireEvent('editcomplete', me); + }; + + var menuImgShapeRotate = new Common.UI.MenuItem({ + caption : me.textRotate, + menu : new Common.UI.Menu({ + menuAlign: 'tl-tr', + items: [ + new Common.UI.MenuItem({ + caption: me.textRotate90, + value : 1 + }).on('click', _.bind(onImgRotate, me)), + new Common.UI.MenuItem({ + caption: me.textRotate270, + value : 0 + }).on('click', _.bind(onImgRotate, me)), + new Common.UI.MenuItem({ + caption: me.textFlipH, + value : 1 + }).on('click', _.bind(onImgFlip, me)), + new Common.UI.MenuItem({ + caption: me.textFlipV, + value : 0 + }).on('click', _.bind(onImgFlip, me)) + ] + }) + }); + /** coauthoring begin **/ var menuAddCommentPara = new Common.UI.MenuItem({ caption : me.addCommentText @@ -3163,6 +3220,10 @@ define([ disabled = imgdisabled || shapedisabled || chartdisabled || (value.slideProps!==undefined && value.slideProps.locked), pluginGuid = (value.imgProps) ? value.imgProps.value.asc_getPluginGuid() : null; + menuImgShapeRotate.setVisible(_.isUndefined(value.chartProps) && (pluginGuid===null || pluginGuid===undefined)); + if (menuImgShapeRotate.isVisible()) + menuImgShapeRotate.setDisabled(disabled); + // image properties menuImgOriginalSize.setVisible(isimage); if (menuImgOriginalSize.isVisible()) @@ -3182,6 +3243,12 @@ define([ menuAddCommentImg.setDisabled(disabled); /** coauthoring end **/ menuImgShapeAlign.setDisabled(disabled); + if (!disabled) { + var objcount = me.api.asc_getSelectedDrawingObjectsCount(), + slide_checked = Common.Utils.InternalSettings.get("pe-align-to-slide") || false; + menuImgShapeAlign.menu.items[7].setDisabled(objcount==2 && !slide_checked); + menuImgShapeAlign.menu.items[8].setDisabled(objcount==2 && !slide_checked); + } menuImageAdvanced.setDisabled(disabled); menuShapeAdvanced.setDisabled(disabled); if (menuChartEdit.isVisible()) @@ -3197,6 +3264,7 @@ define([ { caption: '--' }, menuImgShapeArrange, menuImgShapeAlign, + menuImgShapeRotate, menuImgShapeSeparator, menuImgOriginalSize, menuImgReplace, @@ -3241,10 +3309,17 @@ define([ me.langTableMenu.menu.removeAll(); _.each(langs, function(lang, index){ me.langParaMenu.menu.addItem(new Common.UI.MenuItem({ - caption : lang.title, + caption : lang.displayValue, checkable : true, toggleGroup : 'popupparalang', - langid : lang.code + langid : lang.code, + spellcheck : lang.spellcheck, + template: _.template([ + '', + '', + '<%= caption %>', + '' + ].join('')) }).on('click', function(item, e){ if (me.api){ if (!_.isUndefined(item.options.langid)) @@ -3258,10 +3333,17 @@ define([ })); me.langTableMenu.menu.addItem(new Common.UI.MenuItem({ - caption : lang.title, + caption : lang.displayValue, checkable : true, toggleGroup : 'popuptablelang', - langid : lang.code + langid : lang.code, + spellcheck : lang.spellcheck, + template: _.template([ + '', + '', + '<%= caption %>', + '' + ].join('')) }).on('click', function(item, e){ if (me.api){ if (!_.isUndefined(item.options.langid)) @@ -3274,9 +3356,6 @@ define([ } })); }); - - me.langTableMenu.menu.doLayout(); - me.langParaMenu.menu.doLayout(); } }, @@ -3447,7 +3526,12 @@ define([ textDistributeCols: 'Distribute columns', textReplace: 'Replace image', textFromUrl: 'From URL', - textFromFile: 'From File' + textFromFile: 'From File', + textRotate270: 'Rotate 90° Counterclockwise', + textRotate90: 'Rotate 90° Clockwise', + textFlipV: 'Flip Vertically', + textFlipH: 'Flip Horizontally', + textRotate: 'Rotate' }, PE.Views.DocumentHolder || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/DocumentPreview.js b/apps/presentationeditor/main/app/view/DocumentPreview.js index 2350f3951..f701805d0 100644 --- a/apps/presentationeditor/main/app/view/DocumentPreview.js +++ b/apps/presentationeditor/main/app/view/DocumentPreview.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/FileMenu.js b/apps/presentationeditor/main/app/view/FileMenu.js index 772e1dedc..9e4eafa87 100644 --- a/apps/presentationeditor/main/app/view/FileMenu.js +++ b/apps/presentationeditor/main/app/view/FileMenu.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index 33543d62a..f8a4ca404 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -55,8 +55,11 @@ define([ formats: [[ {name: 'PPTX', imgCls: 'pptx', type: Asc.c_oAscFileType.PPTX}, {name: 'PDF', imgCls: 'pdf', type: Asc.c_oAscFileType.PDF}, - {name: 'PDFA', imgCls: 'pdfa', type: Asc.c_oAscFileType.PDFA}, {name: 'ODP', imgCls: 'odp', type: Asc.c_oAscFileType.ODP} + ],[ + {name: 'POTX', imgCls: 'potx', type: Asc.c_oAscFileType.POTX}, + {name: 'PDFA', imgCls: 'pdfa', type: Asc.c_oAscFileType.PDFA}, + {name: 'OTP', imgCls: 'otp', type: Asc.c_oAscFileType.OTP} ]], @@ -109,8 +112,11 @@ define([ formats: [[ {name: 'PPTX', imgCls: 'pptx', type: Asc.c_oAscFileType.PPTX, ext: '.pptx'}, {name: 'PDF', imgCls: 'pdf', type: Asc.c_oAscFileType.PDF, ext: '.pdf'}, - {name: 'PDFA', imgCls: 'pdfa', type: Asc.c_oAscFileType.PDFA, ext: '.pdf'}, {name: 'ODP', imgCls: 'odp', type: Asc.c_oAscFileType.ODP, ext: '.odp'} + ],[ + {name: 'POTX', imgCls: 'potx', type: Asc.c_oAscFileType.POTX, ext: '.potx'}, + {name: 'PDFA', imgCls: 'pdfa', type: Asc.c_oAscFileType.PDFA, ext: '.pdf'}, + {name: 'OTP', imgCls: 'otp', type: Asc.c_oAscFileType.OTP, ext: '.otp'} ]], template: _.template([ diff --git a/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js b/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js index f88c9c372..7f004ceb0 100644 --- a/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js +++ b/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -236,8 +236,11 @@ define([ this.isTextChanged = false; this.inputTip.setValue(props.get_ToolTip()); - if (type==c_oHyperlinkType.WebLink) - me.inputUrl.cmpEl.find('input').focus(); + if (type==c_oHyperlinkType.WebLink) { + _.delay(function(){ + me.inputUrl.cmpEl.find('input').focus(); + },50); + } } }, diff --git a/apps/presentationeditor/main/app/view/ImageSettings.js b/apps/presentationeditor/main/app/view/ImageSettings.js index 313f84233..274cac1ab 100644 --- a/apps/presentationeditor/main/app/view/ImageSettings.js +++ b/apps/presentationeditor/main/app/view/ImageSettings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -220,6 +220,10 @@ define([ this.btnInsertFromFile.setVisible(!value); this.btnEditObject.setVisible(value); this.lblReplace.text(value ? this.textEditObject : this.textInsert); + this.btnRotate270.setDisabled(value); + this.btnRotate90.setDisabled(value); + this.btnFlipV.setDisabled(value); + this.btnFlipH.setDisabled(value); this._state.isOleObject=value; } @@ -354,10 +358,10 @@ define([ textRotation: 'Rotation', textRotate90: 'Rotate 90°', textFlip: 'Flip', - textHint270: 'Rotate Left 90°', - textHint90: 'Rotate Right 90°', - textHintFlipV: 'Flip Vertical', - textHintFlipH: 'Flip Horizontal' + textHint270: 'Rotate 90° Counterclockwise', + textHint90: 'Rotate 90° Clockwise', + textHintFlipV: 'Flip Vertically', + textHintFlipH: 'Flip Horizontally' }, PE.Views.ImageSettings || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/ImageSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ImageSettingsAdvanced.js index b8066688b..3377621fd 100644 --- a/apps/presentationeditor/main/app/view/ImageSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ImageSettingsAdvanced.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/LeftMenu.js b/apps/presentationeditor/main/app/view/LeftMenu.js index e7b1eaca2..f1a0509e6 100644 --- a/apps/presentationeditor/main/app/view/LeftMenu.js +++ b/apps/presentationeditor/main/app/view/LeftMenu.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/ParagraphSettings.js b/apps/presentationeditor/main/app/view/ParagraphSettings.js index 09ee3a182..c848e9748 100644 --- a/apps/presentationeditor/main/app/view/ParagraphSettings.js +++ b/apps/presentationeditor/main/app/view/ParagraphSettings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js index 932bb2931..c29988007 100644 --- a/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/RightMenu.js b/apps/presentationeditor/main/app/view/RightMenu.js index 54c947e9e..2304e2458 100644 --- a/apps/presentationeditor/main/app/view/RightMenu.js +++ b/apps/presentationeditor/main/app/view/RightMenu.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -269,8 +269,10 @@ define([ if ( !target_pane.hasClass('active') ) { target_pane.parent().find('> .active').removeClass('active'); target_pane.addClass("active"); - if (this.scroller) + if (this.scroller) { this.scroller.update(); + this.scroller.scrollTop(0); + } } if (!this._settings[type].btn.isActive()) this._settings[type].btn.toggle(true, false); diff --git a/apps/presentationeditor/main/app/view/ShapeSettings.js b/apps/presentationeditor/main/app/view/ShapeSettings.js index a4d8b716e..32ce9c75e 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettings.js +++ b/apps/presentationeditor/main/app/view/ShapeSettings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -1710,7 +1710,7 @@ define([ textFlip: 'Flip', textHint270: 'Rotate Left 90°', textHint90: 'Rotate Right 90°', - textHintFlipV: 'Flip Vertical', - textHintFlipH: 'Flip Horizontal' + textHintFlipV: 'Flip Vertically', + textHintFlipH: 'Flip Horizontally' }, PE.Views.ShapeSettings || {})); }); diff --git a/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js index 3f4951f61..903103335 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/SignatureSettings.js b/apps/presentationeditor/main/app/view/SignatureSettings.js index 788cc5082..bd40ef48f 100644 --- a/apps/presentationeditor/main/app/view/SignatureSettings.js +++ b/apps/presentationeditor/main/app/view/SignatureSettings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -345,6 +345,7 @@ define([ // var leftMenu = PE.getController('LeftMenu').leftMenu; // leftMenu.btnComments.setDisabled(disable); + PE.getController('LeftMenu').setPreviewMode(disable); var comments = PE.getController('Common.Controllers.Comments'); if (comments) comments.setPreviewMode(disable); diff --git a/apps/presentationeditor/main/app/view/SlideSettings.js b/apps/presentationeditor/main/app/view/SlideSettings.js index e4b639db5..16e55a5ea 100644 --- a/apps/presentationeditor/main/app/view/SlideSettings.js +++ b/apps/presentationeditor/main/app/view/SlideSettings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/SlideSizeSettings.js b/apps/presentationeditor/main/app/view/SlideSizeSettings.js index 28326a2ff..e08a20069 100644 --- a/apps/presentationeditor/main/app/view/SlideSizeSettings.js +++ b/apps/presentationeditor/main/app/view/SlideSizeSettings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/SlideshowSettings.js b/apps/presentationeditor/main/app/view/SlideshowSettings.js index 603171bcf..e7ef9e249 100644 --- a/apps/presentationeditor/main/app/view/SlideshowSettings.js +++ b/apps/presentationeditor/main/app/view/SlideshowSettings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/Statusbar.js b/apps/presentationeditor/main/app/view/Statusbar.js index f1fb78d5f..d3f45ce2e 100644 --- a/apps/presentationeditor/main/app/view/Statusbar.js +++ b/apps/presentationeditor/main/app/view/Statusbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -71,13 +71,8 @@ define([ function _clickLanguage(menu, item, state) { var $parent = menu.$el.parent(); - $parent.find('#status-label-lang').text(item.caption); - $parent.find('.dropdown-toggle > .icon.lang-flag') - .removeClass(this.langMenu.prevTip) - .addClass(item.value.tip); - - this.langMenu.prevTip = item.value.tip; + this.langMenu.prevTip = item.value.value; this.fireEvent('langchanged', [this, item.value.code, item.caption]); } @@ -268,15 +263,26 @@ define([ var panelLang = $('.cnt-lang',this.el); this.langMenu = new Common.UI.Menu({ + cls: 'lang-menu', style: 'margin-top:-5px;', maxHeight: 300, + restoreHeight: 300, itemTemplate: _.template([ - '', - '', + '', + '', '<%= caption %>', '' ].join('')), menuAlign: 'bl-tl' + }).on('show:before', function (mnu) { + if (!this.scroller) { + this.scroller = new Common.UI.Scroller({ + el: $(this.el).find('.dropdown-menu '), + useKeyboard: this.enableKeyEvents && !this.handleSelect, + minScrollbarLength: 30, + alwaysVisibleY: true + }); + } }); this.btnLanguage = new Common.UI.Button({ @@ -348,16 +354,15 @@ define([ this.langMenu.removeAll(); _.each(array, function(item) { this.langMenu.addItem({ - iconCls : item['tip'], - caption : item['title'], - value : {tip: item['tip'], code: item['code']}, + caption : item['displayValue'], + value : {value: item['value'], code: item['code']}, checkable : true, - checked : this.langMenu.saved == item.title, + checked : this.langMenu.saved == item['displayValue'], + spellcheck : item['spellcheck'], toggleGroup : 'language' }); }, this); - this.langMenu.doLayout(); if (this.langMenu.items.length>0) { this.btnLanguage.setDisabled(false || this._state.no_paragraph); this.btnDocLanguage.setDisabled(!!this.mode.isDisconnected); @@ -365,22 +370,18 @@ define([ }, setLanguage: function(info) { - if (this.langMenu.prevTip != info.tip && info.code !== undefined) { + if (this.langMenu.prevTip != info.value && info.code !== undefined) { var $parent = $(this.langMenu.el.parentNode, this.$el); - $parent.find('.dropdown-toggle > .icon.lang-flag') - .removeClass(this.langMenu.prevTip) - .addClass(info.tip); + $parent.find('#status-label-lang').text(info.displayValue); - this.langMenu.prevTip = info.tip; + this.langMenu.prevTip = info.value; - $parent.find('#status-label-lang').text(info.title); - - var index = $parent.find('ul li a:contains("'+info.title+'")').parent().index(); + var index = $parent.find('ul li a:contains("'+info.displayValue+'")').parent().index(); if (index < 0) { - this.langMenu.saved = info.title; + this.langMenu.saved = info.displayValue; this.langMenu.clearAll(); } else - this.langMenu.items[index-1].setChecked(true); + this.langMenu.items[index].setChecked(true); } }, diff --git a/apps/presentationeditor/main/app/view/TableSettings.js b/apps/presentationeditor/main/app/view/TableSettings.js index 8b0f4c512..d651e5f19 100644 --- a/apps/presentationeditor/main/app/view/TableSettings.js +++ b/apps/presentationeditor/main/app/view/TableSettings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/TableSettingsAdvanced.js b/apps/presentationeditor/main/app/view/TableSettingsAdvanced.js index 9273ea3be..eee1f882c 100644 --- a/apps/presentationeditor/main/app/view/TableSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/TableSettingsAdvanced.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/TextArtSettings.js b/apps/presentationeditor/main/app/view/TextArtSettings.js index 157c33695..b045b2fa0 100644 --- a/apps/presentationeditor/main/app/view/TextArtSettings.js +++ b/apps/presentationeditor/main/app/view/TextArtSettings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index 431e1d0bb..99b8f77f2 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -254,7 +254,8 @@ define([ {value: 28, displayValue: "28"}, {value: 36, displayValue: "36"}, {value: 48, displayValue: "48"}, - {value: 72, displayValue: "72"} + {value: 72, displayValue: "72"}, + {value: 96, displayValue: "96"} ] }); me.paragraphControls.push(me.cmbFontSize); @@ -590,6 +591,34 @@ define([ }); me.slideOnlyControls.push(me.btnColorSchemas); + me.mniAlignToSlide = new Common.UI.MenuItem({ + caption: me.txtSlideAlign, + checkable: true, + toggleGroup: 'slidealign', + value: -1 + }).on('click', function (mnu) { + Common.Utils.InternalSettings.set("pe-align-to-slide", true); + }); + me.mniAlignObjects = new Common.UI.MenuItem({ + caption: me.txtObjectsAlign, + checkable: true, + toggleGroup: 'slidealign', + value: -1 + }).on('click', function (mnu) { + Common.Utils.InternalSettings.set("pe-align-to-slide", false); + }); + + me.mniDistribHor = new Common.UI.MenuItem({ + caption: me.txtDistribHor, + iconCls: 'mnu-distrib-hor', + value: 6 + }); + me.mniDistribVert = new Common.UI.MenuItem({ + caption: me.txtDistribVert, + iconCls: 'mnu-distrib-vert', + value: 7 + }); + me.btnShapeAlign = new Common.UI.Button({ id: 'id-toolbar-btn-shape-align', cls: 'btn-toolbar', @@ -628,16 +657,11 @@ define([ value: Asc.c_oAscAlignShapeType.ALIGN_BOTTOM }, {caption: '--'}, - { - caption: me.txtDistribHor, - iconCls: 'mnu-distrib-hor', - value: 6 - }, - { - caption: me.txtDistribVert, - iconCls: 'mnu-distrib-vert', - value: 7 - } + me.mniDistribHor, + me.mniDistribVert, + {caption: '--'}, + me.mniAlignToSlide, + me.mniAlignObjects ] }) }); @@ -1429,7 +1453,7 @@ define([ createSynchTip: function () { this.synchTooltip = new Common.UI.SynchronizeTip({ - extCls: 'inc-index', + extCls: (this.mode.customization && !!this.mode.customization.compactHeader) ? undefined : 'inc-index', target: this.btnCollabChanges.$el }); this.synchTooltip.on('dontshowclick', function () { @@ -1738,7 +1762,9 @@ define([ textShowPresenterView: 'Show presenter view', textTabCollaboration: 'Collaboration', textTabProtect: 'Protection', - mniImageFromStorage: 'Image from Storage' + mniImageFromStorage: 'Image from Storage', + txtSlideAlign: 'Align to Slide', + txtObjectsAlign: 'Align Selected Objects' } }()), PE.Views.Toolbar || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/Viewport.js b/apps/presentationeditor/main/app/view/Viewport.js index 62652613f..c9b46d980 100644 --- a/apps/presentationeditor/main/app/view/Viewport.js +++ b/apps/presentationeditor/main/app/view/Viewport.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app_dev.js b/apps/presentationeditor/main/app_dev.js index e7fbad44b..ef7679451 100644 --- a/apps/presentationeditor/main/app_dev.js +++ b/apps/presentationeditor/main/app_dev.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/app_dev.reporter.js b/apps/presentationeditor/main/app_dev.reporter.js index 8b562eeee..0e385f135 100644 --- a/apps/presentationeditor/main/app_dev.reporter.js +++ b/apps/presentationeditor/main/app_dev.reporter.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/index.html b/apps/presentationeditor/main/index.html index 340badc67..27f64755b 100644 --- a/apps/presentationeditor/main/index.html +++ b/apps/presentationeditor/main/index.html @@ -262,9 +262,11 @@ + + @@ -90,7 +91,8 @@ info.title.slice(position[0], position[0] + position[1]), "", info.title.slice(position[0] + position[1]) - ].join('') + ].join(''), + onclick: "onhyperlinkclick(this)" }) ) .append($('

    ').text(info.body.substring(0, 250) + "...")) @@ -124,7 +126,7 @@ } if (commonLength > 450 && sentenceCount > 2) { - displayBody = displayBody.substring(0, 450) + "..." + displayBody = displayBody.substring(0, 450) + "..."; return false; } }); @@ -134,7 +136,8 @@ .append( $('', { href: "../" + result.ref, - html: info.title.substring(0, 150) + html: info.title.substring(0, 150), + onclick: "onhyperlinkclick(this)" }) ) .append( diff --git a/apps/presentationeditor/main/resources/help/en/callback.js b/apps/presentationeditor/main/resources/help/en/callback.js index b8087d149..ed573d83e 100644 --- a/apps/presentationeditor/main/resources/help/en/callback.js +++ b/apps/presentationeditor/main/resources/help/en/callback.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/resources/help/en/search/search.html b/apps/presentationeditor/main/resources/help/en/search/search.html index 97576e91e..9efeae6f4 100644 --- a/apps/presentationeditor/main/resources/help/en/search/search.html +++ b/apps/presentationeditor/main/resources/help/en/search/search.html @@ -5,6 +5,7 @@ + @@ -89,7 +90,8 @@ info.title.slice(position[0], position[0] + position[1]), "", info.title.slice(position[0] + position[1]) - ].join('') + ].join(''), + onclick: "onhyperlinkclick(this)" }) ) .append($('

    ').text(info.body.substring(0, 250) + "...")) @@ -123,7 +125,7 @@ } if (commonLength > 450 && sentenceCount > 2) { - displayBody = displayBody.substring(0, 450) + "..." + displayBody = displayBody.substring(0, 450) + "..."; return false; } }); @@ -133,7 +135,8 @@ .append( $('', { href: "../" + result.ref, - html: info.title.substring(0, 150) + html: info.title.substring(0, 150), + onclick: "onhyperlinkclick(this)" }) ) .append( diff --git a/apps/presentationeditor/main/resources/help/es/callback.js b/apps/presentationeditor/main/resources/help/es/callback.js index b8087d149..ed573d83e 100644 --- a/apps/presentationeditor/main/resources/help/es/callback.js +++ b/apps/presentationeditor/main/resources/help/es/callback.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/resources/help/es/search/search.html b/apps/presentationeditor/main/resources/help/es/search/search.html index 318efd8e2..5ecef254f 100644 --- a/apps/presentationeditor/main/resources/help/es/search/search.html +++ b/apps/presentationeditor/main/resources/help/es/search/search.html @@ -5,6 +5,7 @@ + @@ -90,7 +91,8 @@ info.title.slice(position[0], position[0] + position[1]), "", info.title.slice(position[0] + position[1]) - ].join('') + ].join(''), + onclick: "onhyperlinkclick(this)" }) ) .append($('

    ').text(info.body.substring(0, 250) + "...")) @@ -124,7 +126,7 @@ } if (commonLength > 450 && sentenceCount > 2) { - displayBody = displayBody.substring(0, 450) + "..." + displayBody = displayBody.substring(0, 450) + "..."; return false; } }); @@ -134,7 +136,8 @@ .append( $('', { href: "../" + result.ref, - html: info.title.substring(0, 150) + html: info.title.substring(0, 150), + onclick: "onhyperlinkclick(this)" }) ) .append( diff --git a/apps/presentationeditor/main/resources/help/fr/callback.js b/apps/presentationeditor/main/resources/help/fr/callback.js index b8087d149..ed573d83e 100644 --- a/apps/presentationeditor/main/resources/help/fr/callback.js +++ b/apps/presentationeditor/main/resources/help/fr/callback.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/resources/help/fr/search/search.html b/apps/presentationeditor/main/resources/help/fr/search/search.html index ac32537c0..4dc05a3f9 100644 --- a/apps/presentationeditor/main/resources/help/fr/search/search.html +++ b/apps/presentationeditor/main/resources/help/fr/search/search.html @@ -5,6 +5,7 @@ + @@ -89,7 +90,8 @@ info.title.slice(position[0], position[0] + position[1]), "", info.title.slice(position[0] + position[1]) - ].join('') + ].join(''), + onclick: "onhyperlinkclick(this)" }) ) .append($('

    ').text(info.body.substring(0, 250) + "...")) @@ -123,7 +125,7 @@ } if (commonLength > 450 && sentenceCount > 2) { - displayBody = displayBody.substring(0, 450) + "..." + displayBody = displayBody.substring(0, 450) + "..."; return false; } }); @@ -133,7 +135,8 @@ .append( $('', { href: "../" + result.ref, - html: info.title.substring(0, 150) + html: info.title.substring(0, 150), + onclick: "onhyperlinkclick(this)" }) ) .append( diff --git a/apps/presentationeditor/main/resources/help/it_/callback.js b/apps/presentationeditor/main/resources/help/it_/callback.js index b8087d149..ed573d83e 100644 --- a/apps/presentationeditor/main/resources/help/it_/callback.js +++ b/apps/presentationeditor/main/resources/help/it_/callback.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/resources/help/ru/callback.js b/apps/presentationeditor/main/resources/help/ru/callback.js index b8087d149..ed573d83e 100644 --- a/apps/presentationeditor/main/resources/help/ru/callback.js +++ b/apps/presentationeditor/main/resources/help/ru/callback.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/main/resources/help/ru/search/search.html b/apps/presentationeditor/main/resources/help/ru/search/search.html index 12e867c23..e49d47f87 100644 --- a/apps/presentationeditor/main/resources/help/ru/search/search.html +++ b/apps/presentationeditor/main/resources/help/ru/search/search.html @@ -5,6 +5,7 @@ + @@ -90,7 +91,8 @@ info.title.slice(position[0], position[0] + position[1]), "", info.title.slice(position[0] + position[1]) - ].join('') + ].join(''), + onclick: "onhyperlinkclick(this)" }) ) .append($('

    ').text(info.body.substring(0, 250) + "...")) @@ -124,7 +126,7 @@ } if (commonLength > 450 && sentenceCount > 2) { - displayBody = displayBody.substring(0, 450) + "..." + displayBody = displayBody.substring(0, 450) + "..."; return false; } }); @@ -134,7 +136,8 @@ .append( $('', { href: "../" + result.ref, - html: info.title.substring(0, 150) + html: info.title.substring(0, 150), + onclick: "onhyperlinkclick(this)" }) ) .append( diff --git a/apps/presentationeditor/main/resources/img/toolbar-menu.png b/apps/presentationeditor/main/resources/img/toolbar-menu.png index 09999738b..109fb6ec7 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar-menu.png and b/apps/presentationeditor/main/resources/img/toolbar-menu.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar-menu@2x.png b/apps/presentationeditor/main/resources/img/toolbar-menu@2x.png index 1392b298c..9842d4dce 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar-menu@2x.png and b/apps/presentationeditor/main/resources/img/toolbar-menu@2x.png differ diff --git a/apps/presentationeditor/main/resources/less/statusbar.less b/apps/presentationeditor/main/resources/less/statusbar.less index 06db67d6d..533e62d1e 100644 --- a/apps/presentationeditor/main/resources/less/statusbar.less +++ b/apps/presentationeditor/main/resources/less/statusbar.less @@ -91,14 +91,6 @@ color: #000; margin-left: 6px; - .dropdown-toggle > .icon.lang-flag { - position: relative; - top: 3px; - margin-left: 3px; - margin-right: 2px; - display: inline-block; - } - .caret.up { background-position: @arrow-up-small-offset-x @arrow-up-small-offset-y; @@ -111,17 +103,9 @@ cursor: pointer; } - .dropdown-menu { - > li .icon { - display: inline-block; - vertical-align: text-bottom; - margin: 1px 5px 0 2px; - } - } - &.disabled { cursor: default; - label, .icon.lang-flag { + label { cursor: default; opacity: 0.4; } @@ -215,3 +199,5 @@ } } } + +.button-normal-icon(spellcheck-lang, 76, @toolbar-icon-size); \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/less/toolbar.less b/apps/presentationeditor/main/resources/less/toolbar.less index 3b92700ab..3995f1dc7 100644 --- a/apps/presentationeditor/main/resources/less/toolbar.less +++ b/apps/presentationeditor/main/resources/less/toolbar.less @@ -17,17 +17,6 @@ } } -.toolbar-mask { - position: absolute; - top: 32px; - left: 48px; - right: 0; - bottom: 0; - opacity: 0; - background-color: @gray-light; - /*z-index: @zindex-tooltip + 1;*/ -} - .menu-layouts { .dataview.inner { & > div:not(.grouped-data):not([class^=ps-scrollbar]) { diff --git a/apps/presentationeditor/mobile/app-dev.js b/apps/presentationeditor/mobile/app-dev.js index 5445061a0..9e246a7cd 100644 --- a/apps/presentationeditor/mobile/app-dev.js +++ b/apps/presentationeditor/mobile/app-dev.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app.js b/apps/presentationeditor/mobile/app.js index 714b8840b..d3ad21b28 100644 --- a/apps/presentationeditor/mobile/app.js +++ b/apps/presentationeditor/mobile/app.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/DocumentHolder.js b/apps/presentationeditor/mobile/app/controller/DocumentHolder.js index 0746d7c6a..a40c6c814 100644 --- a/apps/presentationeditor/mobile/app/controller/DocumentHolder.js +++ b/apps/presentationeditor/mobile/app/controller/DocumentHolder.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/DocumentPreview.js b/apps/presentationeditor/mobile/app/controller/DocumentPreview.js index d52655d40..d968cd82e 100644 --- a/apps/presentationeditor/mobile/app/controller/DocumentPreview.js +++ b/apps/presentationeditor/mobile/app/controller/DocumentPreview.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/Editor.js b/apps/presentationeditor/mobile/app/controller/Editor.js index ee8eb2d5a..133c4ace1 100644 --- a/apps/presentationeditor/mobile/app/controller/Editor.js +++ b/apps/presentationeditor/mobile/app/controller/Editor.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/Main.js b/apps/presentationeditor/mobile/app/controller/Main.js index fc7e0a79b..e93084d06 100644 --- a/apps/presentationeditor/mobile/app/controller/Main.js +++ b/apps/presentationeditor/mobile/app/controller/Main.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -485,7 +485,8 @@ define([ var zf = (value!==null) ? parseInt(value) : (me.appOptions.customization && me.appOptions.customization.zoom ? parseInt(me.appOptions.customization.zoom) : -1); (zf == -1) ? me.api.zoomFitToPage() : ((zf == -2) ? me.api.zoomFitToWidth() : me.api.zoom(zf>0 ? zf : 100)); - me.api.asc_setSpellCheck(false); // don't use spellcheck for mobile mode + value = Common.localStorage.getBool("pe-mobile-spellcheck", false); + me.api.asc_setSpellCheck(value); me.api.asc_registerCallback('asc_onStartAction', _.bind(me.onLongActionBegin, me)); me.api.asc_registerCallback('asc_onEndAction', _.bind(me.onLongActionEnd, me)); @@ -847,6 +848,10 @@ define([ config.msg = this.errorAccessDeny; break; + case Asc.c_oAscError.ID.EditingError: + config.msg = this.errorEditingDownloadas; + break; + default: config.msg = this.errorDefaultMessage.replace('%1', id); break; @@ -952,15 +957,6 @@ define([ }, hidePreloader: function() { - // if (!!this.appOptions.customization && !this.appOptions.customization.done) { - // this.appOptions.customization.done = true; - // if (!this.appOptions.isDesktopApp) - // this.appOptions.customization.about = true; - // Common.Utils.applyCustomization(this.appOptions.customization, mapCustomizationElements); - // if (this.appOptions.canBrandingExt) - // Common.Utils.applyCustomization(this.appOptions.customization, mapCustomizationExtElements); - // } - $('#loading-mask').hide().remove(); }, @@ -1152,7 +1148,7 @@ define([ if (!this.appOptions.canPrint) return; if (this.api) - this.api.asc_Print(Common.Utils.isChrome || Common.Utils.isSafari || Common.Utils.isOpera); // if isChrome or isSafari or isOpera == true use asc_onPrintUrl event + this.api.asc_Print(); Common.component.Analytics.trackEvent('Print'); }, @@ -1357,7 +1353,8 @@ define([ errorDataEncrypted: 'Encrypted changes have been received, they cannot be deciphered.', closeButtonText: 'Close File', scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.', - errorAccessDeny: 'You are trying to perform an action you do not have rights for.
    Please contact your Document Server administrator.' + errorAccessDeny: 'You are trying to perform an action you do not have rights for.
    Please contact your Document Server administrator.', + errorEditingDownloadas: 'An error occurred during the work with the document.
    Use the \'Download\' option to save the file backup copy to your computer hard drive.' } })(), PE.Controllers.Main || {})) }); \ No newline at end of file diff --git a/apps/presentationeditor/mobile/app/controller/Search.js b/apps/presentationeditor/mobile/app/controller/Search.js index ea53666bc..85c7590c4 100644 --- a/apps/presentationeditor/mobile/app/controller/Search.js +++ b/apps/presentationeditor/mobile/app/controller/Search.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/Settings.js b/apps/presentationeditor/mobile/app/controller/Settings.js index d33751306..53ba46997 100644 --- a/apps/presentationeditor/mobile/app/controller/Settings.js +++ b/apps/presentationeditor/mobile/app/controller/Settings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -153,10 +153,13 @@ define([ onPageShow: function(view, pageId) { var me = this; + $('#settings-spellcheck input:checkbox').attr('checked', Common.localStorage.getBool("pe-mobile-spellcheck", false)); $('#settings-search').single('click', _.bind(me._onSearch, me)); $('#settings-readermode input:checkbox').single('change', _.bind(me._onReaderMode, me)); + $('#settings-spellcheck input:checkbox').single('change', _.bind(me._onSpellcheck, me)); $(modalView).find('.formats a').single('click', _.bind(me._onSaveFormat, me)); $('#page-settings-setup-view li').single('click', _.bind(me._onSlideSize, me)); + $('#settings-print').single('click', _.bind(me._onPrint, me)); me.initSettings(pageId); }, @@ -233,6 +236,22 @@ define([ this.hideModal(); }, + _onPrint: function(e) { + var me = this; + + _.defer(function () { + me.api.asc_Print(); + }); + me.hideModal(); + }, + + _onSpellcheck: function (e) { + var $checkbox = $(e.currentTarget), + state = $checkbox.is(':checked'); + Common.localStorage.setItem("pe-mobile-spellcheck", state ? 1 : 0); + this.api && this.api.asc_setSpellCheck(state); + }, + _onReaderMode: function (e) { var me = this; diff --git a/apps/presentationeditor/mobile/app/controller/Toolbar.js b/apps/presentationeditor/mobile/app/controller/Toolbar.js index 65670c686..9d09739b4 100644 --- a/apps/presentationeditor/mobile/app/controller/Toolbar.js +++ b/apps/presentationeditor/mobile/app/controller/Toolbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/add/AddContainer.js b/apps/presentationeditor/mobile/app/controller/add/AddContainer.js index 35772918c..4a38ed5ad 100644 --- a/apps/presentationeditor/mobile/app/controller/add/AddContainer.js +++ b/apps/presentationeditor/mobile/app/controller/add/AddContainer.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/add/AddImage.js b/apps/presentationeditor/mobile/app/controller/add/AddImage.js index d639bc617..afeda226a 100644 --- a/apps/presentationeditor/mobile/app/controller/add/AddImage.js +++ b/apps/presentationeditor/mobile/app/controller/add/AddImage.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/add/AddLink.js b/apps/presentationeditor/mobile/app/controller/add/AddLink.js index e1036bf0a..009113f21 100644 --- a/apps/presentationeditor/mobile/app/controller/add/AddLink.js +++ b/apps/presentationeditor/mobile/app/controller/add/AddLink.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/add/AddShape.js b/apps/presentationeditor/mobile/app/controller/add/AddShape.js index 38f22fdbe..12c4c9f17 100644 --- a/apps/presentationeditor/mobile/app/controller/add/AddShape.js +++ b/apps/presentationeditor/mobile/app/controller/add/AddShape.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/add/AddSlide.js b/apps/presentationeditor/mobile/app/controller/add/AddSlide.js index 2b8a939d6..054001224 100644 --- a/apps/presentationeditor/mobile/app/controller/add/AddSlide.js +++ b/apps/presentationeditor/mobile/app/controller/add/AddSlide.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/add/AddTable.js b/apps/presentationeditor/mobile/app/controller/add/AddTable.js index 42490257f..3ba0638ec 100644 --- a/apps/presentationeditor/mobile/app/controller/add/AddTable.js +++ b/apps/presentationeditor/mobile/app/controller/add/AddTable.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/edit/EditChart.js b/apps/presentationeditor/mobile/app/controller/edit/EditChart.js index 8d74ad35d..e03437470 100644 --- a/apps/presentationeditor/mobile/app/controller/edit/EditChart.js +++ b/apps/presentationeditor/mobile/app/controller/edit/EditChart.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/edit/EditContainer.js b/apps/presentationeditor/mobile/app/controller/edit/EditContainer.js index d70ae3b8e..2be10986d 100644 --- a/apps/presentationeditor/mobile/app/controller/edit/EditContainer.js +++ b/apps/presentationeditor/mobile/app/controller/edit/EditContainer.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/edit/EditImage.js b/apps/presentationeditor/mobile/app/controller/edit/EditImage.js index 0d5b740e8..332c2fbef 100644 --- a/apps/presentationeditor/mobile/app/controller/edit/EditImage.js +++ b/apps/presentationeditor/mobile/app/controller/edit/EditImage.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/edit/EditLink.js b/apps/presentationeditor/mobile/app/controller/edit/EditLink.js index 73685cd87..876aa3313 100644 --- a/apps/presentationeditor/mobile/app/controller/edit/EditLink.js +++ b/apps/presentationeditor/mobile/app/controller/edit/EditLink.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/edit/EditShape.js b/apps/presentationeditor/mobile/app/controller/edit/EditShape.js index 70d907454..8ca49d3d0 100644 --- a/apps/presentationeditor/mobile/app/controller/edit/EditShape.js +++ b/apps/presentationeditor/mobile/app/controller/edit/EditShape.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/edit/EditSlide.js b/apps/presentationeditor/mobile/app/controller/edit/EditSlide.js index ede4bcbf0..b44e68185 100644 --- a/apps/presentationeditor/mobile/app/controller/edit/EditSlide.js +++ b/apps/presentationeditor/mobile/app/controller/edit/EditSlide.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/edit/EditTable.js b/apps/presentationeditor/mobile/app/controller/edit/EditTable.js index ebb72ade6..4837138b7 100644 --- a/apps/presentationeditor/mobile/app/controller/edit/EditTable.js +++ b/apps/presentationeditor/mobile/app/controller/edit/EditTable.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/controller/edit/EditText.js b/apps/presentationeditor/mobile/app/controller/edit/EditText.js index 48e8deb3a..b89a43cfd 100644 --- a/apps/presentationeditor/mobile/app/controller/edit/EditText.js +++ b/apps/presentationeditor/mobile/app/controller/edit/EditText.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/template/AddLink.template b/apps/presentationeditor/mobile/app/template/AddLink.template index 122bff622..c9ada4f6a 100644 --- a/apps/presentationeditor/mobile/app/template/AddLink.template +++ b/apps/presentationeditor/mobile/app/template/AddLink.template @@ -156,9 +156,9 @@

    diff --git a/apps/presentationeditor/mobile/app/template/EditLink.template b/apps/presentationeditor/mobile/app/template/EditLink.template index af56452c5..55a566493 100644 --- a/apps/presentationeditor/mobile/app/template/EditLink.template +++ b/apps/presentationeditor/mobile/app/template/EditLink.template @@ -160,9 +160,9 @@
    <% if (!android) { %><% } %>

    - <% if (android) { %><% } else { %>-<% } %> + <% if (android) { %><% } else { %>-<% } %> <% if (android) { %><% } %> - <% if (android) { %><% } else { %>+<% } %> + <% if (android) { %><% } else { %>+<% } %>

    diff --git a/apps/presentationeditor/mobile/app/template/EditSlide.template b/apps/presentationeditor/mobile/app/template/EditSlide.template index 645084679..9e14876a9 100644 --- a/apps/presentationeditor/mobile/app/template/EditSlide.template +++ b/apps/presentationeditor/mobile/app/template/EditSlide.template @@ -96,9 +96,9 @@
    <% if (!android) { %><% } %>

    - <% if (android) { %><% } else { %>-<% } %> + <% if (android) { %><% } else { %>-<% } %> <% if (android) { %><% } %> - <% if (android) { %><% } else { %>+<% } %> + <% if (android) { %><% } else { %>+<% } %>

    diff --git a/apps/presentationeditor/mobile/app/template/EditText.template b/apps/presentationeditor/mobile/app/template/EditText.template index 4077a00cb..86a9f854e 100644 --- a/apps/presentationeditor/mobile/app/template/EditText.template +++ b/apps/presentationeditor/mobile/app/template/EditText.template @@ -104,9 +104,9 @@
    <% if (!android) { %><% } %>

    - <% if (android) { %><% } else { %>-<% } %> + <% if (android) { %><% } else { %>-<% } %> <% if (android) { %><% } %> - <% if (android) { %><% } else { %>+<% } %> + <% if (android) { %><% } else { %>+<% } %>

    @@ -119,9 +119,9 @@
    <% if (!android) { %><% } %>

    - <% if (android) { %><% } else { %>-<% } %> + <% if (android) { %><% } else { %>-<% } %> <% if (android) { %><% } %> - <% if (android) { %><% } else { %>+<% } %> + <% if (android) { %><% } else { %>+<% } %>

    @@ -151,9 +151,9 @@
    <% if (!android) { %><% } %>

    - <% if (android) { %><% } else { %>-<% } %> + <% if (android) { %><% } else { %>-<% } %> <% if (android) { %><% } %> - <% if (android) { %><% } else { %>+<% } %> + <% if (android) { %><% } else { %>+<% } %>

    @@ -266,9 +266,9 @@
    <% if (!android) { %><% } %>

    - <% if (android) { %><% } else { %>-<% } %> + <% if (android) { %><% } else { %>-<% } %> <% if (android) { %><% } %> - <% if (android) { %><% } else { %>+<% } %> + <% if (android) { %><% } else { %>+<% } %>

    diff --git a/apps/presentationeditor/mobile/app/template/Settings.template b/apps/presentationeditor/mobile/app/template/Settings.template index 901a7fdf1..9c01ea489 100644 --- a/apps/presentationeditor/mobile/app/template/Settings.template +++ b/apps/presentationeditor/mobile/app/template/Settings.template @@ -25,6 +25,22 @@ <% } %> +
  • +
    +
    + +
    +
    +
    <%= scope.textSpellcheck %>
    +
    + +
    +
    +
    +
  • @@ -49,6 +65,18 @@
  • +
  • + +
    +
    + +
    +
    +
    <%= scope.textPrint %>
    +
    +
    +
    +
  • @@ -184,6 +212,18 @@
  • +
  • + +
    +
    + +
    +
    +
    PDF/A
    +
    +
    +
    +
  • @@ -196,6 +236,30 @@
  • +
  • + +
    +
    + +
    +
    +
    POTX
    +
    +
    +
    +
  • +
  • + +
    +
    + +
    +
    +
    OTP
    +
    +
    +
    +
  • diff --git a/apps/presentationeditor/mobile/app/view/DocumentHolder.js b/apps/presentationeditor/mobile/app/view/DocumentHolder.js index 4e5d232fb..19165f2a8 100644 --- a/apps/presentationeditor/mobile/app/view/DocumentHolder.js +++ b/apps/presentationeditor/mobile/app/view/DocumentHolder.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/DocumentPreview.js b/apps/presentationeditor/mobile/app/view/DocumentPreview.js index 10f68e5ec..90118db4c 100644 --- a/apps/presentationeditor/mobile/app/view/DocumentPreview.js +++ b/apps/presentationeditor/mobile/app/view/DocumentPreview.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/Editor.js b/apps/presentationeditor/mobile/app/view/Editor.js index 3084ccf0e..43fcb0efd 100644 --- a/apps/presentationeditor/mobile/app/view/Editor.js +++ b/apps/presentationeditor/mobile/app/view/Editor.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/Search.js b/apps/presentationeditor/mobile/app/view/Search.js index 37f18643c..91a93954c 100644 --- a/apps/presentationeditor/mobile/app/view/Search.js +++ b/apps/presentationeditor/mobile/app/view/Search.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/Settings.js b/apps/presentationeditor/mobile/app/view/Settings.js index ed1a83fd4..5f2d32da8 100644 --- a/apps/presentationeditor/mobile/app/view/Settings.js +++ b/apps/presentationeditor/mobile/app/view/Settings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -54,7 +54,8 @@ define([ canEdit = false, canDownload = false, canAbout = true, - canHelp = true; + canHelp = true, + canPrint = false; return { // el: '.view-main', @@ -98,6 +99,7 @@ define([ isEdit = mode.isEdit; canEdit = !mode.isEdit && mode.canEdit && mode.canRequestEditRights; canDownload = mode.canDownload || mode.canDownloadOrigin; + canPrint = mode.canPrint; if (mode.customization && mode.canBrandingExt) { canAbout = (mode.customization.about!==false); @@ -117,6 +119,7 @@ define([ $layour.find('#settings-readermode').hide(); $layour.find('#settings-search .item-title').text(this.textFindAndReplace) } else { + $layour.find('#settings-spellcheck').hide(); $layour.find('#settings-presentation-setup').hide(); $layour.find('#settings-readermode input:checkbox') .attr('checked', Common.SharedSettings.get('readerMode')) @@ -125,6 +128,7 @@ define([ if (!canDownload) $layour.find('#settings-download').hide(); if (!canAbout) $layour.find('#settings-about').hide(); if (!canHelp) $layour.find('#settings-help').hide(); + if (!canPrint) $layour.find('#settings-print').hide(); return $layour.html(); } @@ -222,7 +226,9 @@ define([ mniSlideStandard: 'Standard (4:3)', mniSlideWide: 'Widescreen (16:9)', textPoweredBy: 'Powered by', - textFindAndReplace: 'Find and Replace' + textFindAndReplace: 'Find and Replace', + textSpellcheck: 'Spell Checking', + textPrint: 'Print' } })(), PE.Views.Settings || {})) }); \ No newline at end of file diff --git a/apps/presentationeditor/mobile/app/view/Toolbar.js b/apps/presentationeditor/mobile/app/view/Toolbar.js index 051af1eae..c40510fc0 100644 --- a/apps/presentationeditor/mobile/app/view/Toolbar.js +++ b/apps/presentationeditor/mobile/app/view/Toolbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/add/AddImage.js b/apps/presentationeditor/mobile/app/view/add/AddImage.js index 3a07446ed..0ca437eec 100644 --- a/apps/presentationeditor/mobile/app/view/add/AddImage.js +++ b/apps/presentationeditor/mobile/app/view/add/AddImage.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/add/AddLink.js b/apps/presentationeditor/mobile/app/view/add/AddLink.js index 04f984286..84179e671 100644 --- a/apps/presentationeditor/mobile/app/view/add/AddLink.js +++ b/apps/presentationeditor/mobile/app/view/add/AddLink.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/add/AddShape.js b/apps/presentationeditor/mobile/app/view/add/AddShape.js index a4a00fb05..55ec28ebb 100644 --- a/apps/presentationeditor/mobile/app/view/add/AddShape.js +++ b/apps/presentationeditor/mobile/app/view/add/AddShape.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/add/AddSlide.js b/apps/presentationeditor/mobile/app/view/add/AddSlide.js index fc41fc75d..07e308c80 100644 --- a/apps/presentationeditor/mobile/app/view/add/AddSlide.js +++ b/apps/presentationeditor/mobile/app/view/add/AddSlide.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/add/AddTable.js b/apps/presentationeditor/mobile/app/view/add/AddTable.js index 1ebd6a146..6e30f1d5f 100644 --- a/apps/presentationeditor/mobile/app/view/add/AddTable.js +++ b/apps/presentationeditor/mobile/app/view/add/AddTable.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/edit/EditChart.js b/apps/presentationeditor/mobile/app/view/edit/EditChart.js index 416b0b751..c274d2884 100644 --- a/apps/presentationeditor/mobile/app/view/edit/EditChart.js +++ b/apps/presentationeditor/mobile/app/view/edit/EditChart.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/edit/EditImage.js b/apps/presentationeditor/mobile/app/view/edit/EditImage.js index c151a367d..a4b3d87db 100644 --- a/apps/presentationeditor/mobile/app/view/edit/EditImage.js +++ b/apps/presentationeditor/mobile/app/view/edit/EditImage.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/edit/EditLink.js b/apps/presentationeditor/mobile/app/view/edit/EditLink.js index 3696fd708..4554d64cc 100644 --- a/apps/presentationeditor/mobile/app/view/edit/EditLink.js +++ b/apps/presentationeditor/mobile/app/view/edit/EditLink.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/edit/EditShape.js b/apps/presentationeditor/mobile/app/view/edit/EditShape.js index 89c527e55..05dbdbacd 100644 --- a/apps/presentationeditor/mobile/app/view/edit/EditShape.js +++ b/apps/presentationeditor/mobile/app/view/edit/EditShape.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/edit/EditSlide.js b/apps/presentationeditor/mobile/app/view/edit/EditSlide.js index 04b19b590..6ee21f57d 100644 --- a/apps/presentationeditor/mobile/app/view/edit/EditSlide.js +++ b/apps/presentationeditor/mobile/app/view/edit/EditSlide.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/edit/EditTable.js b/apps/presentationeditor/mobile/app/view/edit/EditTable.js index a508eb069..676eb41c9 100644 --- a/apps/presentationeditor/mobile/app/view/edit/EditTable.js +++ b/apps/presentationeditor/mobile/app/view/edit/EditTable.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/app/view/edit/EditText.js b/apps/presentationeditor/mobile/app/view/edit/EditText.js index 84b0932d0..7597225ef 100644 --- a/apps/presentationeditor/mobile/app/view/edit/EditText.js +++ b/apps/presentationeditor/mobile/app/view/edit/EditText.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/presentationeditor/mobile/locale/bg.json b/apps/presentationeditor/mobile/locale/bg.json new file mode 100644 index 000000000..adb0aac4d --- /dev/null +++ b/apps/presentationeditor/mobile/locale/bg.json @@ -0,0 +1,463 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Стандартни цветове", + "Common.UI.ThemeColorPalette.textThemeColors": "Цветовете на темата", + "Common.Utils.Metric.txtCm": "см", + "Common.Utils.Metric.txtPt": "pt", + "PE.Controllers.AddContainer.textImage": "Изображение", + "PE.Controllers.AddContainer.textLink": "връзка", + "PE.Controllers.AddContainer.textShape": "форма", + "PE.Controllers.AddContainer.textSlide": "пързалка", + "PE.Controllers.AddContainer.textTable": "маса", + "PE.Controllers.AddImage.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", + "PE.Controllers.AddImage.txtNotUrl": "Това поле трябва да е URL адрес във формат „http://www.example.com“", + "PE.Controllers.AddLink.textDefault": "Избран текст", + "PE.Controllers.AddLink.textExternalLink": "Външен линк", + "PE.Controllers.AddLink.textFirst": "Първи слайд", + "PE.Controllers.AddLink.textInternalLink": "Плъзнете в тази презентация", + "PE.Controllers.AddLink.textLast": "Последен слайд", + "PE.Controllers.AddLink.textNext": "Следващ слайд", + "PE.Controllers.AddLink.textPrev": "Предишен слайд", + "PE.Controllers.AddLink.textSlide": "пързалка", + "PE.Controllers.AddLink.txtNotUrl": "Това поле трябва да е URL адрес във формат „http://www.example.com“", + "PE.Controllers.AddTable.textCancel": "Отказ", + "PE.Controllers.AddTable.textColumns": "колони", + "PE.Controllers.AddTable.textRows": "Редове", + "PE.Controllers.AddTable.textTableSize": "Размер на таблицата", + "PE.Controllers.DocumentHolder.menuAddLink": "Добавяне на връзка", + "PE.Controllers.DocumentHolder.menuCopy": "копие", + "PE.Controllers.DocumentHolder.menuCut": "Разрез", + "PE.Controllers.DocumentHolder.menuDelete": "Изтрий", + "PE.Controllers.DocumentHolder.menuEdit": "редактиране", + "PE.Controllers.DocumentHolder.menuMore": "| Повече ▼", + "PE.Controllers.DocumentHolder.menuOpenLink": "Отвори линк", + "PE.Controllers.DocumentHolder.menuPaste": "паста", + "PE.Controllers.DocumentHolder.sheetCancel": "Отказ", + "PE.Controllers.EditContainer.textChart": "диаграма", + "PE.Controllers.EditContainer.textHyperlink": "Хипервръзка", + "PE.Controllers.EditContainer.textImage": "Изображение", + "PE.Controllers.EditContainer.textSettings": "Настройки", + "PE.Controllers.EditContainer.textShape": "форма", + "PE.Controllers.EditContainer.textSlide": "пързалка", + "PE.Controllers.EditContainer.textTable": "маса", + "PE.Controllers.EditContainer.textText": "Текст", + "PE.Controllers.EditImage.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", + "PE.Controllers.EditImage.txtNotUrl": "Това поле трябва да е URL адрес във формат „http://www.example.com“", + "PE.Controllers.EditLink.textDefault": "Избран текст", + "PE.Controllers.EditLink.textExternalLink": "Външен линк", + "PE.Controllers.EditLink.textFirst": "Първи слайд", + "PE.Controllers.EditLink.textInternalLink": "Плъзнете в тази презентация", + "PE.Controllers.EditLink.textLast": "Последен слайд", + "PE.Controllers.EditLink.textNext": "Следващ слайд", + "PE.Controllers.EditLink.textPrev": "Предишен слайд", + "PE.Controllers.EditLink.textSlide": "пързалка", + "PE.Controllers.EditLink.txtNotUrl": "Това поле трябва да е URL адрес във формат „http://www.example.com“", + "PE.Controllers.EditSlide.textSec": "с", + "PE.Controllers.EditText.textAuto": "Автоматичен", + "PE.Controllers.EditText.textFonts": "Шрифт", + "PE.Controllers.EditText.textPt": "pt", + "PE.Controllers.Main.advDRMEnterPassword": "Въведете паролата си:", + "PE.Controllers.Main.advDRMOptions": "Защитен файл", + "PE.Controllers.Main.advDRMPassword": "Парола", + "PE.Controllers.Main.applyChangesTextText": "Данните се зареждат ...", + "PE.Controllers.Main.applyChangesTitleText": "Зареждане на данни", + "PE.Controllers.Main.closeButtonText": "Затвори файла", + "PE.Controllers.Main.convertationTimeoutText": "Превишава се времето на изтичане на реализациите.", + "PE.Controllers.Main.criticalErrorExtText": "Натиснете 'OK', за да се върнете към списъка с документи.", + "PE.Controllers.Main.criticalErrorTitle": "Грешка", + "PE.Controllers.Main.defaultTitleText": "Редактор на презентации ONLYOFFICE", + "PE.Controllers.Main.downloadErrorText": "Изтеглянето се провали.", + "PE.Controllers.Main.downloadTextText": "Представя се се изтегли ...", + "PE.Controllers.Main.downloadTitleText": "Изтегляне на презентация", + "PE.Controllers.Main.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права.
    Моля, свържете се с администратора на сървъра за документи.", + "PE.Controllers.Main.errorBadImageUrl": "URL адресът на изображението е неправилен", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "Връзката със сървъра е загубена. Вече не може да редактирате.", + "PE.Controllers.Main.errorConnectToServer": "Документът не можа да бъде запазен. Моля, проверете настройките за връзка или се свържете с администратора си.
    Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа.

    Намерете повече информация за свързването на сървъра за документи тук ", + "PE.Controllers.Main.errorDatabaseConnection": "Външна грешка.
    Грешка при свързване към база данни. Моля, свържете се с екипа за поддръжка.", + "PE.Controllers.Main.errorDataEncrypted": "Получени са криптирани промени, които не могат да бъдат дешифрирани.", + "PE.Controllers.Main.errorDataRange": "Неправилен обхват от данни.", + "PE.Controllers.Main.errorDefaultMessage": "Код на грешката:% 1", + "PE.Controllers.Main.errorEditingDownloadas": "Възникна грешка по време на работата с документа.
    Използвайте опцията 'Download', за да запишете архивното копие на файла на твърдия диск на компютъра.", + "PE.Controllers.Main.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.", + "PE.Controllers.Main.errorKeyEncrypt": "Дескриптор на неизвестен ключ", + "PE.Controllers.Main.errorKeyExpire": "Дескрипторът на ключовете е изтекъл", + "PE.Controllers.Main.errorProcessSaveResult": "Запазване е неуспешно.", + "PE.Controllers.Main.errorServerVersion": "Версията на редактора е актуализирана. Страницата ще бъде презаредена, за да приложи промените.", + "PE.Controllers.Main.errorStockChart": "Неправилен ред на ред. За изграждане на борсова карта поставете данните на листа в следния ред:
    цена на отваряне, максимална цена, мин. Цена, цена на затваряне.", + "PE.Controllers.Main.errorUpdateVersion": "Версията на файла е променена. Страницата ще бъде презаредена.", + "PE.Controllers.Main.errorUserDrop": "Файлът не може да бъде достъпен в момента.", + "PE.Controllers.Main.errorUsersExceed": "Превешен е броят на потребителите", + "PE.Controllers.Main.errorViewerDisconnect": "Връзката е загубена. Все още можете да прегледате документа, но не можете да го изтеглите, докато връзката не бъде възстановена.", + "PE.Controllers.Main.leavePageText": "Имате незапазени промени в този документ. Кликнете върху „Остани на тази страница“, за да изчакате за автоматично запаметяване на документа. Кликнете върху „Оставете тази страница“, за да отхвърлите всички незапазени промени.", + "PE.Controllers.Main.loadFontsTextText": "Данните се зареждат ...", + "PE.Controllers.Main.loadFontsTitleText": "Зареждане на данни", + "PE.Controllers.Main.loadFontTextText": "Данните се зареждат ...", + "PE.Controllers.Main.loadFontTitleText": "Зареждане на данни", + "PE.Controllers.Main.loadImagesTextText": "Изображенията се зареждат ...", + "PE.Controllers.Main.loadImagesTitleText": "Зареждане на изображения", + "PE.Controllers.Main.loadImageTextText": "Изображението се зарежда ...", + "PE.Controllers.Main.loadImageTitleText": "Зареждане на изображението", + "PE.Controllers.Main.loadingDocumentTextText": "Представянето се зарежда ...", + "PE.Controllers.Main.loadingDocumentTitleText": "Зареждане на презентацията", + "PE.Controllers.Main.loadThemeTextText": "Темата се зарежда ...", + "PE.Controllers.Main.loadThemeTitleText": "Зареждане на тема", + "PE.Controllers.Main.notcriticalErrorTitle": "Внимание", + "PE.Controllers.Main.openErrorText": "Възникна грешка при отварянето на файла", + "PE.Controllers.Main.openTextText": "Отваряне на документа ...", + "PE.Controllers.Main.openTitleText": "Отваряне на документ", + "PE.Controllers.Main.printTextText": "Отпечатване на документ ...", + "PE.Controllers.Main.printTitleText": "Отпечатване на документ", + "PE.Controllers.Main.reloadButtonText": "Презареждане на страницата", + "PE.Controllers.Main.requestEditFailedMessageText": "Някой редактира този документ в момента. Моля, опитайте отново по-късно.", + "PE.Controllers.Main.requestEditFailedTitleText": "Отказан достъп", + "PE.Controllers.Main.saveErrorText": "Възникна грешка при запазването на файла", + "PE.Controllers.Main.savePreparingText": "Подготовка за запазване", + "PE.Controllers.Main.savePreparingTitle": "Подготовка за запазване. Моля Изчакай...", + "PE.Controllers.Main.saveTextText": "Документът се запазва ...", + "PE.Controllers.Main.saveTitleText": "Запазване на документа", + "PE.Controllers.Main.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.", + "PE.Controllers.Main.splitDividerErrorText": "Брой на редовете трябва да бъде делител на% 1", + "PE.Controllers.Main.splitMaxColsErrorText": "Броят на колоните трябва да бъде по-малък от% 1", + "PE.Controllers.Main.splitMaxRowsErrorText": "Брой на редовете трябва да бъде по-малък от% 1", + "PE.Controllers.Main.textAnonymous": "анонимен", + "PE.Controllers.Main.textBack": "обратно", + "PE.Controllers.Main.textBuyNow": "Посетете уебсайта", + "PE.Controllers.Main.textCancel": "Отказ", + "PE.Controllers.Main.textClose": "Затвори ", + "PE.Controllers.Main.textCloseTip": "Докоснете, за да затворите върха.", + "PE.Controllers.Main.textContactUs": "Свържете се с продажбите", + "PE.Controllers.Main.textDone": "Завършен", + "PE.Controllers.Main.textLoadingDocument": "Зареждане на презентацията", + "PE.Controllers.Main.textNoLicenseTitle": "Ограничение за връзка ONLYOFFICE", + "PE.Controllers.Main.textOK": "Добре", + "PE.Controllers.Main.textPassword": "Парола", + "PE.Controllers.Main.textPreloader": "Зареждане ...", + "PE.Controllers.Main.textShape": "форма", + "PE.Controllers.Main.textTryUndoRedo": "Функции Undo / Redo са забранени за режима Fast co-edit.", + "PE.Controllers.Main.textUsername": "Потребител", + "PE.Controllers.Main.titleLicenseExp": "Лицензът е изтекъл", + "PE.Controllers.Main.titleServerVersion": "Редакторът е актуализиран", + "PE.Controllers.Main.txtArt": "Вашият текст тук", + "PE.Controllers.Main.txtBasicShapes": "Основни форми", + "PE.Controllers.Main.txtButtons": "Бутони", + "PE.Controllers.Main.txtCallouts": "Допълнителните описания", + "PE.Controllers.Main.txtCharts": "Графики", + "PE.Controllers.Main.txtClipArt": "Графична колекция", + "PE.Controllers.Main.txtDateTime": "Дата и час", + "PE.Controllers.Main.txtDiagram": "Умно изкуство", + "PE.Controllers.Main.txtDiagramTitle": "Заглавие на диаграмата", + "PE.Controllers.Main.txtEditingMode": "Задаване на режим на редактиране ...", + "PE.Controllers.Main.txtFiguredArrows": "Фигурни стрели", + "PE.Controllers.Main.txtFooter": "долния", + "PE.Controllers.Main.txtHeader": "Заглавие", + "PE.Controllers.Main.txtImage": "Изображение", + "PE.Controllers.Main.txtLines": "линии", + "PE.Controllers.Main.txtMath": "Математик", + "PE.Controllers.Main.txtMedia": "средства", + "PE.Controllers.Main.txtNeedSynchronize": "Имате актуализации", + "PE.Controllers.Main.txtPicture": "снимка", + "PE.Controllers.Main.txtProtected": "След като въведете паролата и отворите файла, текущата парола за файла ще бъде нулирана", + "PE.Controllers.Main.txtRectangles": "правоъгълници", + "PE.Controllers.Main.txtSeries": "серия", + "PE.Controllers.Main.txtSldLtTBlank": "празно", + "PE.Controllers.Main.txtSldLtTChart": "диаграма", + "PE.Controllers.Main.txtSldLtTChartAndTx": "Диаграма и текст", + "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Картини и текст", + "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Клип и вертикален текст", + "PE.Controllers.Main.txtSldLtTCust": "Персонализиран", + "PE.Controllers.Main.txtSldLtTDgm": "Диаграма", + "PE.Controllers.Main.txtSldLtTFourObj": "Четири обекта", + "PE.Controllers.Main.txtSldLtTMediaAndTx": "Медия и текст", + "PE.Controllers.Main.txtSldLtTObj": "Заглавие и обект", + "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Обект и две обекти", + "PE.Controllers.Main.txtSldLtTObjAndTx": "Обект и текст", + "PE.Controllers.Main.txtSldLtTObjOnly": "обект", + "PE.Controllers.Main.txtSldLtTObjOverTx": "Обект над текст", + "PE.Controllers.Main.txtSldLtTObjTx": "Заглавие, обект и надпис", + "PE.Controllers.Main.txtSldLtTPicTx": "Картина и надпис", + "PE.Controllers.Main.txtSldLtTSecHead": "Заглавие на раздел", + "PE.Controllers.Main.txtSldLtTTbl": "маса", + "PE.Controllers.Main.txtSldLtTTitle": "Заглавие", + "PE.Controllers.Main.txtSldLtTTitleOnly": "Само заглавие", + "PE.Controllers.Main.txtSldLtTTwoColTx": "Текст от две колони", + "PE.Controllers.Main.txtSldLtTTwoObj": "Два обекта", + "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Две обекти и обект", + "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Два обекта и текст", + "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Два обекта над текста", + "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Два текста и два обекта", + "PE.Controllers.Main.txtSldLtTTx": "Текст", + "PE.Controllers.Main.txtSldLtTTxAndChart": "Текст и диаграма", + "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Текст и клип", + "PE.Controllers.Main.txtSldLtTTxAndMedia": "Текст и медия", + "PE.Controllers.Main.txtSldLtTTxAndObj": "Текст и обект", + "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Текст и две обекти", + "PE.Controllers.Main.txtSldLtTTxOverObj": "Текст над обект", + "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Вертикално заглавие и текст", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Вертикално заглавие и текст през графика", + "PE.Controllers.Main.txtSldLtTVertTx": "Вертикален текст", + "PE.Controllers.Main.txtSlideNumber": "Номер на слайда", + "PE.Controllers.Main.txtSlideSubtitle": "Слайд субтитри", + "PE.Controllers.Main.txtSlideText": "Текст на слайда", + "PE.Controllers.Main.txtSlideTitle": "Заглавие на слайда", + "PE.Controllers.Main.txtStarsRibbons": "Звезди и панделки", + "PE.Controllers.Main.txtXAxis": "X ос", + "PE.Controllers.Main.txtYAxis": "Y ос", + "PE.Controllers.Main.unknownErrorText": "Неизвестна грешка.", + "PE.Controllers.Main.unsupportedBrowserErrorText ": "Вашият браузър не се поддържа.", + "PE.Controllers.Main.uploadImageExtMessage": "Неизвестен формат на изображението.", + "PE.Controllers.Main.uploadImageFileCountMessage": "Няма качени изображения.", + "PE.Controllers.Main.uploadImageSizeMessage": "Превишено е ограничението за максимален размер на изображението.", + "PE.Controllers.Main.uploadImageTextText": "Качва се изображението ...", + "PE.Controllers.Main.uploadImageTitleText": "Качване на изображение", + "PE.Controllers.Main.warnLicenseExceeded": "Броят на едновременните връзки към сървъра за документи е превишен и документът ще бъде отворен само за преглед.
    За повече информация се обърнете към администратора.", + "PE.Controllers.Main.warnLicenseExp": "Вашият лиценз е изтекъл.
    Моля, актуализирайте лиценза си и опреснете страницата.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Броят на едновременните потребители е надхвърлен и документът ще бъде отворен само за преглед.
    За повече информация се свържете с администратора си.", + "PE.Controllers.Main.warnNoLicense": "Тази версия на редакторите на ONLYOFFICE има някои ограничения за едновременни връзки към сървъра за документи.", + "PE.Controllers.Main.warnNoLicenseUsers": "Тази версия на редакторите на ONLYOFFICE има определени ограничения за едновременни потребители.", + "PE.Controllers.Main.warnProcessRightsChange": "На вас е отказано правото да редактирате файла.", + "PE.Controllers.Search.textNoTextFound": "Текстът не е намерен", + "PE.Controllers.Search.textReplaceAll": "Замяна на всички", + "PE.Controllers.Settings.notcriticalErrorTitle": "Внимание", + "PE.Controllers.Settings.txtLoading": "Зареждане ...", + "PE.Controllers.Toolbar.dlgLeaveMsgText": "Имате незапазени промени в този документ. Кликнете върху „Остани на тази страница“, за да изчакате за автоматично запаметяване на документа. Кликнете върху „Оставете тази страница“, за да отхвърлите всички незапазени промени.", + "PE.Controllers.Toolbar.dlgLeaveTitleText": "Оставяте заявлението", + "PE.Controllers.Toolbar.leaveButtonText": "Излезете от тази страница", + "PE.Controllers.Toolbar.stayButtonText": "Остани на тази страница", + "PE.Views.AddImage.textAddress": "адрес", + "PE.Views.AddImage.textBack": "обратно", + "PE.Views.AddImage.textFromLibrary": "Картина от библиотеката", + "PE.Views.AddImage.textFromURL": "Картина от URL адрес", + "PE.Views.AddImage.textImageURL": "URL адрес на изображение", + "PE.Views.AddImage.textInsertImage": "Вмъкване на изображение", + "PE.Views.AddImage.textLinkSettings": "Настройки на връзката", + "PE.Views.AddLink.textBack": "обратно", + "PE.Views.AddLink.textDisplay": "показ", + "PE.Views.AddLink.textExternalLink": "Външен линк", + "PE.Views.AddLink.textFirst": "Първи слайд", + "PE.Views.AddLink.textInsert": "Вмъкни", + "PE.Views.AddLink.textInternalLink": "Плъзнете в тази презентация", + "PE.Views.AddLink.textLast": "Последен слайд", + "PE.Views.AddLink.textLink": "връзка", + "PE.Views.AddLink.textLinkSlide": "Връзка към", + "PE.Views.AddLink.textLinkType": "Тип на връзката", + "PE.Views.AddLink.textNext": "Следващ слайд", + "PE.Views.AddLink.textNumber": "Номер на слайда", + "PE.Views.AddLink.textPrev": "Предишен слайд", + "PE.Views.AddLink.textTip": "Съвет на екрана", + "PE.Views.EditChart.textAlign": "Изравнете", + "PE.Views.EditChart.textAlignBottom": "Подравняване отдолу", + "PE.Views.EditChart.textAlignCenter": "Подравняване в центъра", + "PE.Views.EditChart.textAlignLeft": "Подравняване вляво", + "PE.Views.EditChart.textAlignMiddle": "Подравняване на средата", + "PE.Views.EditChart.textAlignRight": "Подравняване надясно", + "PE.Views.EditChart.textAlignTop": "Подравняване отгоре", + "PE.Views.EditChart.textBack": "обратно", + "PE.Views.EditChart.textBackward": "Преместване назад", + "PE.Views.EditChart.textBorder": "граница", + "PE.Views.EditChart.textColor": "цвят", + "PE.Views.EditChart.textFill": "Напълнете", + "PE.Views.EditChart.textForward": "Продължавай напред", + "PE.Views.EditChart.textRemoveChart": "Премахване на диаграмата", + "PE.Views.EditChart.textReorder": "Пренареждане", + "PE.Views.EditChart.textSize": "Размер", + "PE.Views.EditChart.textStyle": "стил", + "PE.Views.EditChart.textToBackground": "Изпращане до фона", + "PE.Views.EditChart.textToForeground": "Доведете до преден план", + "PE.Views.EditChart.textType": "Тип", + "PE.Views.EditChart.txtDistribHor": "Разпределете хоризонтално", + "PE.Views.EditChart.txtDistribVert": "Разпределете Вертикално", + "PE.Views.EditImage.textAddress": "адрес", + "PE.Views.EditImage.textAlign": "Изравнете", + "PE.Views.EditImage.textAlignBottom": "Подравняване отдолу", + "PE.Views.EditImage.textAlignCenter": "Подравняване в центъра", + "PE.Views.EditImage.textAlignLeft": "Подравняване вляво", + "PE.Views.EditImage.textAlignMiddle": "Подравняване на средата", + "PE.Views.EditImage.textAlignRight": "Подравняване надясно", + "PE.Views.EditImage.textAlignTop": "Подравняване отгоре", + "PE.Views.EditImage.textBack": "обратно", + "PE.Views.EditImage.textBackward": "Преместване назад", + "PE.Views.EditImage.textDefault": "Размер по подразбиране", + "PE.Views.EditImage.textForward": "Продължавай напред", + "PE.Views.EditImage.textFromLibrary": "Картина от библиотеката", + "PE.Views.EditImage.textFromURL": "Картина от URL адрес", + "PE.Views.EditImage.textImageURL": "URL адрес на изображение", + "PE.Views.EditImage.textLinkSettings": "Настройки на връзката", + "PE.Views.EditImage.textRemove": "Премахване на изображението", + "PE.Views.EditImage.textReorder": "Пренареждане", + "PE.Views.EditImage.textReplace": "Заменете", + "PE.Views.EditImage.textReplaceImg": "Замяна на изображението", + "PE.Views.EditImage.textToBackground": "Изпращане до фона", + "PE.Views.EditImage.textToForeground": "Доведете до преден план", + "PE.Views.EditImage.txtDistribHor": "Разпределете хоризонтално", + "PE.Views.EditImage.txtDistribVert": "Разпределете Вертикално", + "PE.Views.EditLink.textBack": "обратно", + "PE.Views.EditLink.textDisplay": "показ", + "PE.Views.EditLink.textEdit": "Редактиране на връзката", + "PE.Views.EditLink.textExternalLink": "Външен линк", + "PE.Views.EditLink.textFirst": "Първи слайд", + "PE.Views.EditLink.textInternalLink": "Плъзнете в тази презентация", + "PE.Views.EditLink.textLast": "Последен слайд", + "PE.Views.EditLink.textLink": "връзка", + "PE.Views.EditLink.textLinkSlide": "Връзка към", + "PE.Views.EditLink.textLinkType": "Тип на връзката", + "PE.Views.EditLink.textNext": "Следващ слайд", + "PE.Views.EditLink.textNumber": "Номер на слайда", + "PE.Views.EditLink.textPrev": "Предишен слайд", + "PE.Views.EditLink.textRemove": "Премахване на връзката", + "PE.Views.EditLink.textTip": "Съвет на екрана", + "PE.Views.EditShape.textAlign": "Изравнете", + "PE.Views.EditShape.textAlignBottom": "Подравняване отдолу", + "PE.Views.EditShape.textAlignCenter": "Подравняване в центъра", + "PE.Views.EditShape.textAlignLeft": "Подравняване вляво", + "PE.Views.EditShape.textAlignMiddle": "Подравняване на средата", + "PE.Views.EditShape.textAlignRight": "Подравняване надясно", + "PE.Views.EditShape.textAlignTop": "Подравняване отгоре", + "PE.Views.EditShape.textBack": "обратно", + "PE.Views.EditShape.textBackward": "Преместване назад", + "PE.Views.EditShape.textBorder": "граница", + "PE.Views.EditShape.textColor": "цвят", + "PE.Views.EditShape.textEffects": "вещи", + "PE.Views.EditShape.textFill": "Напълнете", + "PE.Views.EditShape.textForward": "Продължавай напред", + "PE.Views.EditShape.textOpacity": "непрозрачност", + "PE.Views.EditShape.textRemoveShape": "Премахване на формата", + "PE.Views.EditShape.textReorder": "Пренареждане", + "PE.Views.EditShape.textReplace": "Заменете", + "PE.Views.EditShape.textSize": "Размер", + "PE.Views.EditShape.textStyle": "стил", + "PE.Views.EditShape.textToBackground": "Изпращане до фона", + "PE.Views.EditShape.textToForeground": "Доведете до преден план", + "PE.Views.EditShape.txtDistribHor": "Разпределете хоризонтално", + "PE.Views.EditShape.txtDistribVert": "Разпределете Вертикално", + "PE.Views.EditSlide.textApplyAll": "Приложи към всички слайдове", + "PE.Views.EditSlide.textBack": "обратно", + "PE.Views.EditSlide.textBlack": "Чрез черно", + "PE.Views.EditSlide.textBottom": "дъно", + "PE.Views.EditSlide.textBottomLeft": "Долу ляво", + "PE.Views.EditSlide.textBottomRight": "Долу вдясно", + "PE.Views.EditSlide.textClock": "Часовник", + "PE.Views.EditSlide.textClockwise": "по часовниковата стрелка", + "PE.Views.EditSlide.textColor": "цвят", + "PE.Views.EditSlide.textCounterclockwise": "Обратно на часовниковата стрелка", + "PE.Views.EditSlide.textCover": "Покрийте", + "PE.Views.EditSlide.textDelay": "закъснение", + "PE.Views.EditSlide.textDuplicateSlide": "Дублиране на слайд", + "PE.Views.EditSlide.textDuration": "продължителност", + "PE.Views.EditSlide.textEffect": "ефект", + "PE.Views.EditSlide.textFade": "замирам", + "PE.Views.EditSlide.textFill": "Напълнете", + "PE.Views.EditSlide.textHorizontalIn": "Хоризонтално In", + "PE.Views.EditSlide.textHorizontalOut": "Хоризонтално навън", + "PE.Views.EditSlide.textLayout": "оформление", + "PE.Views.EditSlide.textLeft": "Наляво", + "PE.Views.EditSlide.textNone": "Нито един", + "PE.Views.EditSlide.textOpacity": "непрозрачност", + "PE.Views.EditSlide.textPush": "тласък", + "PE.Views.EditSlide.textRemoveSlide": "Изтриване на слайда", + "PE.Views.EditSlide.textRight": "прав", + "PE.Views.EditSlide.textSmoothly": "плавно", + "PE.Views.EditSlide.textSplit": "разцепване", + "PE.Views.EditSlide.textStartOnClick": "Старт на кликване", + "PE.Views.EditSlide.textStyle": "стил", + "PE.Views.EditSlide.textTheme": "тема", + "PE.Views.EditSlide.textTop": "Отгоре", + "PE.Views.EditSlide.textTopLeft": "Горе вляво", + "PE.Views.EditSlide.textTopRight": "Горе в дясно", + "PE.Views.EditSlide.textTransition": "преход", + "PE.Views.EditSlide.textType": "Тип", + "PE.Views.EditSlide.textUnCover": "Разкрийте", + "PE.Views.EditSlide.textVerticalIn": "Вертикално в", + "PE.Views.EditSlide.textVerticalOut": "Вертикален изход", + "PE.Views.EditSlide.textWedge": "Клин", + "PE.Views.EditSlide.textWipe": "изтриване", + "PE.Views.EditSlide.textZoom": "Мащаб", + "PE.Views.EditSlide.textZoomIn": "Увеличавам", + "PE.Views.EditSlide.textZoomOut": "Отдалечавам", + "PE.Views.EditSlide.textZoomRotate": "Увеличаване и завъртане", + "PE.Views.EditTable.textAlign": "Изравнете", + "PE.Views.EditTable.textAlignBottom": "Подравняване отдолу", + "PE.Views.EditTable.textAlignCenter": "Подравняване в центъра", + "PE.Views.EditTable.textAlignLeft": "Подравняване вляво", + "PE.Views.EditTable.textAlignMiddle": "Подравняване на средата", + "PE.Views.EditTable.textAlignRight": "Подравняване надясно", + "PE.Views.EditTable.textAlignTop": "Подравняване отгоре", + "PE.Views.EditTable.textBack": "обратно", + "PE.Views.EditTable.textBackward": "Преместване назад", + "PE.Views.EditTable.textBandedColumn": "Колонна лента", + "PE.Views.EditTable.textBandedRow": "Обвързан ред", + "PE.Views.EditTable.textBorder": "граница", + "PE.Views.EditTable.textCellMargins": "Маржове на клетките", + "PE.Views.EditTable.textColor": "цвят", + "PE.Views.EditTable.textFill": "Напълнете", + "PE.Views.EditTable.textFirstColumn": "Първа колона", + "PE.Views.EditTable.textForward": "Продължавай напред", + "PE.Views.EditTable.textHeaderRow": "Ред", + "PE.Views.EditTable.textLastColumn": "Последна колона", + "PE.Views.EditTable.textOptions": "Настроики", + "PE.Views.EditTable.textRemoveTable": "Премахване на таблицата", + "PE.Views.EditTable.textReorder": "Пренареждане", + "PE.Views.EditTable.textSize": "Размер", + "PE.Views.EditTable.textStyle": "стил", + "PE.Views.EditTable.textStyleOptions": "Опции за стил", + "PE.Views.EditTable.textTableOptions": "Опции на таблицата", + "PE.Views.EditTable.textToBackground": "Изпращане до фона", + "PE.Views.EditTable.textToForeground": "Доведете до преден план", + "PE.Views.EditTable.textTotalRow": "Общо ред", + "PE.Views.EditTable.txtDistribHor": "Разпределете хоризонтално", + "PE.Views.EditTable.txtDistribVert": "Разпределете Вертикално", + "PE.Views.EditText.textAdditional": "Допълнителен", + "PE.Views.EditText.textAdditionalFormat": "Допълнително форматиране", + "PE.Views.EditText.textAfter": "След", + "PE.Views.EditText.textAllCaps": "Всички шапки", + "PE.Views.EditText.textAutomatic": "автоматичен", + "PE.Views.EditText.textBack": "обратно", + "PE.Views.EditText.textBefore": "Преди", + "PE.Views.EditText.textBullets": "Маркиран списък", + "PE.Views.EditText.textDblStrikethrough": "Двойно зачертаване", + "PE.Views.EditText.textDblSuperscript": "Горен индекс", + "PE.Views.EditText.textFontColor": "Цвят на шрифта", + "PE.Views.EditText.textFontColors": "Цветове на шрифта", + "PE.Views.EditText.textFonts": "Шрифт", + "PE.Views.EditText.textFromText": "Разстояние от текста", + "PE.Views.EditText.textLetterSpacing": "Разстояние между буквите", + "PE.Views.EditText.textLineSpacing": "Интервал между редовете", + "PE.Views.EditText.textNone": "Нито един", + "PE.Views.EditText.textNumbers": "численост", + "PE.Views.EditText.textSize": "Размер", + "PE.Views.EditText.textSmallCaps": "Малки букви", + "PE.Views.EditText.textStrikethrough": "зачеркване", + "PE.Views.EditText.textSubscript": "Долен", + "PE.Views.Search.textCase": "Различаващ главни от малки букви", + "PE.Views.Search.textDone": "Завършен", + "PE.Views.Search.textFind": "намирам", + "PE.Views.Search.textFindAndReplace": "Намерете и заменете", + "PE.Views.Search.textReplace": "Заменете", + "PE.Views.Search.textSearch": "Търсене", + "PE.Views.Settings.mniSlideStandard": "Стандартно (4: 3)", + "PE.Views.Settings.mniSlideWide": "Широк екран (16: 9)", + "PE.Views.Settings.textAbout": "Относно", + "PE.Views.Settings.textAddress": "адрес", + "PE.Views.Settings.textAuthor": "автор", + "PE.Views.Settings.textBack": "обратно", + "PE.Views.Settings.textCreateDate": "Дата на създаване", + "PE.Views.Settings.textDone": "Завършен", + "PE.Views.Settings.textDownload": "Изтегли", + "PE.Views.Settings.textDownloadAs": "Изтеглете като ...", + "PE.Views.Settings.textEditPresent": "Редактиране на презентацията", + "PE.Views.Settings.textEmail": "Емайл", + "PE.Views.Settings.textFind": "намирам", + "PE.Views.Settings.textFindAndReplace": "Намерете и заменете", + "PE.Views.Settings.textHelp": "Помощ", + "PE.Views.Settings.textLoading": "Зареждане ... ", + "PE.Views.Settings.textPoweredBy": "Задвижвани от", + "PE.Views.Settings.textPresentInfo": "Информация за презентация", + "PE.Views.Settings.textPresentSetup": "Настройка на презентацията", + "PE.Views.Settings.textPresentTitle": "Заглавие на презентацията", + "PE.Views.Settings.textPrint": "печат", + "PE.Views.Settings.textSettings": "Настройки", + "PE.Views.Settings.textSlideSize": "Размер на слайда", + "PE.Views.Settings.textSpellcheck": "Проверка на правописа", + "PE.Views.Settings.textTel": "тел", + "PE.Views.Settings.textVersion": "версия", + "PE.Views.Settings.unknownText": "неизвестен", + "PE.Views.Toolbar.textBack": "обратно" +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index a040d7730..4a4a0a079 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -68,6 +68,7 @@ "PE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.", "PE.Controllers.Main.downloadTextText": "Präsentation wird heruntergeladen...", "PE.Controllers.Main.downloadTitleText": "Präsentation wird heruntergeladen", + "PE.Controllers.Main.errorAccessDeny": "Sie versuchen die Änderungen vorzunehemen, für die Sie keine Berechtigungen haben.
    Wenden Sie sich an Ihren Document Server Serveradministrator.", "PE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Sie können nicht mehr editieren.", "PE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.
    Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.

    Mehr Informationen über die Verbindung zum Dokumentenserver finden Sie hier", @@ -75,6 +76,7 @@ "PE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.", "PE.Controllers.Main.errorDataRange": "Falscher Datenbereich.", "PE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1", + "PE.Controllers.Main.errorEditingDownloadas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
    Verwenden Sie die Option \"Herunterladen\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.", "PE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "PE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "PE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", @@ -213,6 +215,7 @@ "PE.Controllers.Main.warnNoLicenseUsers": "Diese Version von ONLYOFFICE Editoren hat bestimmte Einschränkungen für gleichzeitige Benutzer.
    Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.", "PE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.", "PE.Controllers.Search.textNoTextFound": "Der Text wurde nicht gefunden.", + "PE.Controllers.Search.textReplaceAll": "Alles ersetzen", "PE.Controllers.Settings.notcriticalErrorTitle": "Achtung", "PE.Controllers.Settings.txtLoading": "Ladevorgang...", "PE.Controllers.Toolbar.dlgLeaveMsgText": "Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\", um auf automatisches Speichern des Dokumentes zu warten. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.", @@ -423,6 +426,11 @@ "PE.Views.EditText.textSmallCaps": "Kapitälchen", "PE.Views.EditText.textStrikethrough": "Durchgestrichen", "PE.Views.EditText.textSubscript": "Tiefgestellt", + "PE.Views.Search.textCase": "Groß-/Kleinschreibung beachten", + "PE.Views.Search.textDone": "Fertig", + "PE.Views.Search.textFind": "Suche", + "PE.Views.Search.textFindAndReplace": "Suchen und ersetzen", + "PE.Views.Search.textReplace": "Ersetzen", "PE.Views.Search.textSearch": "Suche", "PE.Views.Settings.mniSlideStandard": "Standard (4:3)", "PE.Views.Settings.mniSlideWide": "Breitbildschirm (16:9)", @@ -437,14 +445,17 @@ "PE.Views.Settings.textEditPresent": "Präsentation bearbeiten", "PE.Views.Settings.textEmail": "E-Email", "PE.Views.Settings.textFind": "Suchen", + "PE.Views.Settings.textFindAndReplace": "Suchen und ersetzen", "PE.Views.Settings.textHelp": "Hilfe", "PE.Views.Settings.textLoading": "Ladevorgang...", "PE.Views.Settings.textPoweredBy": "Betrieben von", "PE.Views.Settings.textPresentInfo": "Päsentation Infos", "PE.Views.Settings.textPresentSetup": "Präsentation-Einstellungen", "PE.Views.Settings.textPresentTitle": "Titel der Präsentation", + "PE.Views.Settings.textPrint": "Drucken", "PE.Views.Settings.textSettings": "Einstellungen", "PE.Views.Settings.textSlideSize": "Foliengröße", + "PE.Views.Settings.textSpellcheck": "Rechtschreibprüfung", "PE.Views.Settings.textTel": "Tel.", "PE.Views.Settings.textVersion": "Version", "PE.Views.Settings.unknownText": "Unbekannt", diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index a0e811d9a..7b6025d96 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -66,9 +66,9 @@ "PE.Controllers.Main.criticalErrorTitle": "Error", "PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor", "PE.Controllers.Main.downloadErrorText": "Download failed.", - "PE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your Document Server administrator.", "PE.Controllers.Main.downloadTextText": "Downloading presentation...", "PE.Controllers.Main.downloadTitleText": "Downloading Presentation", + "PE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your Document Server administrator.", "PE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. You can't edit anymore.", "PE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
    When you click the 'OK' button, you will be prompted to download the document.

    Find more information about connecting Document Server here", @@ -76,6 +76,7 @@ "PE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", "PE.Controllers.Main.errorDataRange": "Incorrect data range.", "PE.Controllers.Main.errorDefaultMessage": "Error code: %1", + "PE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy to your computer hard drive.", "PE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.", "PE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", "PE.Controllers.Main.errorKeyExpire": "Key descriptor expired", @@ -451,8 +452,10 @@ "PE.Views.Settings.textPresentInfo": "Presentation Info", "PE.Views.Settings.textPresentSetup": "Presentation Setup", "PE.Views.Settings.textPresentTitle": "Presentation title", + "PE.Views.Settings.textPrint": "Print", "PE.Views.Settings.textSettings": "Settings", "PE.Views.Settings.textSlideSize": "Slide Size", + "PE.Views.Settings.textSpellcheck": "Spell Checking", "PE.Views.Settings.textTel": "tel", "PE.Views.Settings.textVersion": "Version", "PE.Views.Settings.unknownText": "Unknown", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index c50ac2cb0..8dd072095 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -68,6 +68,7 @@ "PE.Controllers.Main.downloadErrorText": "Error en la descarga", "PE.Controllers.Main.downloadTextText": "Descargando presentación...", "PE.Controllers.Main.downloadTitleText": "Descargando presentación", + "PE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.
    Por favor, contacte con su Administrador del Servidor de Documentos.", "PE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto", "PE.Controllers.Main.errorCoAuthoringDisconnect": "La conexión al servidor se ha perdido. Usted ya no puede editar.", "PE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, verifique los ajustes de conexión o contacte con su administrador.
    Cuando pulsa el botón 'OK', se le solicitará que descargue el documento.

    Encuentre más información acerca de conexión de Servidor de Documentos aquí", @@ -75,6 +76,7 @@ "PE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.", "PE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.", "PE.Controllers.Main.errorDefaultMessage": "Código de error: %1", + "PE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
    Use la opción 'Descargar' para guardar la copia de seguridad de archivo en el disco duro de su computadora.", "PE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "PE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", "PE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", @@ -213,6 +215,7 @@ "PE.Controllers.Main.warnNoLicenseUsers": "Esta versión de Editores de ONLYOFFICE tiene ciertas limitaciones para usuarios simultáneos.
    Si se requiere más, por favor, considere comprar una licencia comercial.", "PE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.", "PE.Controllers.Search.textNoTextFound": "Texto no es encontrado", + "PE.Controllers.Search.textReplaceAll": "Reemplazar todo", "PE.Controllers.Settings.notcriticalErrorTitle": "Aviso", "PE.Controllers.Settings.txtLoading": "Cargando...", "PE.Controllers.Toolbar.dlgLeaveMsgText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.", @@ -423,6 +426,11 @@ "PE.Views.EditText.textSmallCaps": "Mayúsculas pequeñas", "PE.Views.EditText.textStrikethrough": "Tachado", "PE.Views.EditText.textSubscript": "Subíndice", + "PE.Views.Search.textCase": "Sensible a las mayúsculas y minúsculas", + "PE.Views.Search.textDone": "Hecho", + "PE.Views.Search.textFind": "Encontrar", + "PE.Views.Search.textFindAndReplace": "Encontrar y reemplazar", + "PE.Views.Search.textReplace": "Reemplazar", "PE.Views.Search.textSearch": "Búsqueda", "PE.Views.Settings.mniSlideStandard": "Estándar (4:3)", "PE.Views.Settings.mniSlideWide": "Panorámico (16:9)", @@ -437,14 +445,17 @@ "PE.Views.Settings.textEditPresent": "Editar presentación", "PE.Views.Settings.textEmail": "email", "PE.Views.Settings.textFind": "Buscar", + "PE.Views.Settings.textFindAndReplace": "Encontrar y reemplazar", "PE.Views.Settings.textHelp": "Ayuda", "PE.Views.Settings.textLoading": "Cargando...", "PE.Views.Settings.textPoweredBy": "Desarrollado por", "PE.Views.Settings.textPresentInfo": "Información sobre presentación", "PE.Views.Settings.textPresentSetup": "Ajustes de presentación", "PE.Views.Settings.textPresentTitle": "Título de presentación", + "PE.Views.Settings.textPrint": "Imprimir", "PE.Views.Settings.textSettings": "Ajustes", "PE.Views.Settings.textSlideSize": "Tamaño de diapositiva", + "PE.Views.Settings.textSpellcheck": "Сorrección ortográfica", "PE.Views.Settings.textTel": "Tel.", "PE.Views.Settings.textVersion": "Versión ", "PE.Views.Settings.unknownText": "Desconocido", diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index 95b114fff..6fd634b59 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -68,6 +68,7 @@ "PE.Controllers.Main.downloadErrorText": "Échec du téléchargement.", "PE.Controllers.Main.downloadTextText": "Téléchargement de la présentation...", "PE.Controllers.Main.downloadTitleText": "Téléchargement de la présentation", + "PE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas de droits.
    Veuillez contacter l'administrateur de Document Server.", "PE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte", "PE.Controllers.Main.errorCoAuthoringDisconnect": "La connexion au serveur perdue. Désolé, vous ne pouvez plus modifier le document.", "PE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.

    Trouvez plus d'informations sur la connexion au serveur de documents ici", @@ -75,6 +76,7 @@ "PE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.", "PE.Controllers.Main.errorDataRange": "Plage de données incorrecte.", "PE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1", + "PE.Controllers.Main.errorEditingDownloadas": "Une erreure s'est produite lors du travail sur le document.
    Utilisez l'option \"Télécharger\" pour enregistrer la copie de sauvegarde sur le disque dur de votre ordinateur.", "PE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.", "PE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", "PE.Controllers.Main.errorKeyExpire": "Descripteur clé a expiré", @@ -213,6 +215,7 @@ "PE.Controllers.Main.warnNoLicenseUsers": "Cette version de ONLYOFFICE Editors a certaines limitations pour les utilisateurs simultanés.
    Si vous avez besoin de plus, considérez la possibilité de mettre à jour votre licence actuelle ou d'acheter une licence commerciale.", "PE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.", "PE.Controllers.Search.textNoTextFound": "Le texte est introuvable", + "PE.Controllers.Search.textReplaceAll": "Remplacer tout", "PE.Controllers.Settings.notcriticalErrorTitle": "Attention", "PE.Controllers.Settings.txtLoading": "Chargement en cours...", "PE.Controllers.Toolbar.dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur 'Rester sur cette Page' pour la sauvegarde automatique du document. Cliquez sur 'Quitter cette Page' pour ignorer toutes les modifications non enregistrées.", @@ -423,6 +426,11 @@ "PE.Views.EditText.textSmallCaps": "Petites majuscules", "PE.Views.EditText.textStrikethrough": "Barré", "PE.Views.EditText.textSubscript": "Indice", + "PE.Views.Search.textCase": "Sensible à la casse", + "PE.Views.Search.textDone": "Effectué", + "PE.Views.Search.textFind": "Rechercher", + "PE.Views.Search.textFindAndReplace": "Rechercher et remplacer", + "PE.Views.Search.textReplace": "Remplacer", "PE.Views.Search.textSearch": "Rechercher", "PE.Views.Settings.mniSlideStandard": "Standard (4:3)", "PE.Views.Settings.mniSlideWide": "Écran large (16:9)", @@ -437,14 +445,17 @@ "PE.Views.Settings.textEditPresent": "Modifier la présentation", "PE.Views.Settings.textEmail": "e-mail", "PE.Views.Settings.textFind": "Trouver", + "PE.Views.Settings.textFindAndReplace": "Rechercher et remplacer", "PE.Views.Settings.textHelp": "Aide", "PE.Views.Settings.textLoading": "Chargement en cours...", "PE.Views.Settings.textPoweredBy": "Motorisé par", "PE.Views.Settings.textPresentInfo": "Infos sur présentation", "PE.Views.Settings.textPresentSetup": "Paramètres de la présentation", "PE.Views.Settings.textPresentTitle": "Titre de la présentation", + "PE.Views.Settings.textPrint": "Imprimer", "PE.Views.Settings.textSettings": "Paramètres", "PE.Views.Settings.textSlideSize": "Taille de la diapositive", + "PE.Views.Settings.textSpellcheck": "Vérification de l'orthographe", "PE.Views.Settings.textTel": "Tél.", "PE.Views.Settings.textVersion": "Version", "PE.Views.Settings.unknownText": "Inconnu", diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json new file mode 100644 index 000000000..5e23d4e15 --- /dev/null +++ b/apps/presentationeditor/mobile/locale/hu.json @@ -0,0 +1,463 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Sztenderd színek", + "Common.UI.ThemeColorPalette.textThemeColors": "Téma színek", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "PE.Controllers.AddContainer.textImage": "Kép", + "PE.Controllers.AddContainer.textLink": "Link", + "PE.Controllers.AddContainer.textShape": "Alakzat", + "PE.Controllers.AddContainer.textSlide": "Dia", + "PE.Controllers.AddContainer.textTable": "Táblázat", + "PE.Controllers.AddImage.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", + "PE.Controllers.AddImage.txtNotUrl": "A mező URL-címének a 'http://www.example.com' formátumban kell lennie", + "PE.Controllers.AddLink.textDefault": "Kiválasztott szöveg", + "PE.Controllers.AddLink.textExternalLink": "Külső hivatkozás", + "PE.Controllers.AddLink.textFirst": "Első dia", + "PE.Controllers.AddLink.textInternalLink": "Csúsztassa be ezt a prezentációt", + "PE.Controllers.AddLink.textLast": "Utolsó dia", + "PE.Controllers.AddLink.textNext": "Következő dia", + "PE.Controllers.AddLink.textPrev": "Korábbi dia", + "PE.Controllers.AddLink.textSlide": "Dia", + "PE.Controllers.AddLink.txtNotUrl": "A mező URL-címének a 'http://www.example.com' formátumban kell lennie", + "PE.Controllers.AddTable.textCancel": "Mégse", + "PE.Controllers.AddTable.textColumns": "Oszlopok", + "PE.Controllers.AddTable.textRows": "Sorok", + "PE.Controllers.AddTable.textTableSize": "Táblázat méret", + "PE.Controllers.DocumentHolder.menuAddLink": "Link hozzáadása", + "PE.Controllers.DocumentHolder.menuCopy": "Másol", + "PE.Controllers.DocumentHolder.menuCut": "Kivág", + "PE.Controllers.DocumentHolder.menuDelete": "Töröl", + "PE.Controllers.DocumentHolder.menuEdit": "Szerkeszt", + "PE.Controllers.DocumentHolder.menuMore": "Még", + "PE.Controllers.DocumentHolder.menuOpenLink": "Link megnyitása", + "PE.Controllers.DocumentHolder.menuPaste": "Beilleszt", + "PE.Controllers.DocumentHolder.sheetCancel": "Mégse", + "PE.Controllers.EditContainer.textChart": "Diagram", + "PE.Controllers.EditContainer.textHyperlink": "Hivatkozás", + "PE.Controllers.EditContainer.textImage": "Kép", + "PE.Controllers.EditContainer.textSettings": "Beállítások", + "PE.Controllers.EditContainer.textShape": "Alakzat", + "PE.Controllers.EditContainer.textSlide": "Dia", + "PE.Controllers.EditContainer.textTable": "Táblázat", + "PE.Controllers.EditContainer.textText": "Szöveg", + "PE.Controllers.EditImage.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", + "PE.Controllers.EditImage.txtNotUrl": "A mező URL-címének a 'http://www.example.com' formátumban kell lennie", + "PE.Controllers.EditLink.textDefault": "Kiválasztott szöveg", + "PE.Controllers.EditLink.textExternalLink": "Külső hivatkozás", + "PE.Controllers.EditLink.textFirst": "Első dia", + "PE.Controllers.EditLink.textInternalLink": "Csúsztassa be ezt a prezentációt", + "PE.Controllers.EditLink.textLast": "Utolsó dia", + "PE.Controllers.EditLink.textNext": "Következő dia", + "PE.Controllers.EditLink.textPrev": "Korábbi dia", + "PE.Controllers.EditLink.textSlide": "Dia", + "PE.Controllers.EditLink.txtNotUrl": "A mező URL-címének a 'http://www.example.com' formátumban kell lennie", + "PE.Controllers.EditSlide.textSec": "s", + "PE.Controllers.EditText.textAuto": "Auto", + "PE.Controllers.EditText.textFonts": "Betűtípusok", + "PE.Controllers.EditText.textPt": "pt", + "PE.Controllers.Main.advDRMEnterPassword": "Adja meg a jelszavát:", + "PE.Controllers.Main.advDRMOptions": "Védett fájl", + "PE.Controllers.Main.advDRMPassword": "Jelszó", + "PE.Controllers.Main.applyChangesTextText": "Adatok betöltése...", + "PE.Controllers.Main.applyChangesTitleText": "Adatok betöltése", + "PE.Controllers.Main.closeButtonText": "Fájl bezárása", + "PE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.", + "PE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\"-t a dokumentumok listájához.", + "PE.Controllers.Main.criticalErrorTitle": "Hiba", + "PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Prezentáció Szerkesztő", + "PE.Controllers.Main.downloadErrorText": "Sikertelen letöltés.", + "PE.Controllers.Main.downloadTextText": "Prezentáció letöltése...", + "PE.Controllers.Main.downloadTitleText": "Prezentáció letöltése", + "PE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.
    Vegye fel a kapcsolatot a Document Server adminisztrátorával.", + "PE.Controllers.Main.errorBadImageUrl": "Hibás kép URL", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "A szerver elveszítette a kapcsolatot. A további szerkesztés nem lehetséges.", + "PE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.
    Ha az 'OK'-ra kattint letöltheti a dokumentumot.

    Bővebb információk a Dokumentum Szerverhez kapcsolódásról itt találhat.", + "PE.Controllers.Main.errorDatabaseConnection": "Külső hiba.
    Adatbázis kapcsolati hiba. Kérem vegye igénybe támogatásunkat.", + "PE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", + "PE.Controllers.Main.errorDataRange": "Hibás adattartomány.", + "PE.Controllers.Main.errorDefaultMessage": "Hibakód: %1", + "PE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
    Használja a 'Letölt' opciót, hogy elmentse a fájl biztonsági másolatát a számítógép merevlemezére.", + "PE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", + "PE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró", + "PE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró", + "PE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés.", + "PE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", + "PE.Controllers.Main.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:
    nyitó ár, maximum ár, minimum ár, záró ár.", + "PE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", + "PE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető", + "PE.Controllers.Main.errorUsersExceed": "A felhasználók száma túllépve", + "PE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is látható a dokumentum,
    de a kapcsolat helyreállításáig nem lehet letölteni.", + "PE.Controllers.Main.leavePageText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ", + "PE.Controllers.Main.loadFontsTextText": "Adatok betöltése...", + "PE.Controllers.Main.loadFontsTitleText": "Adatok betöltése", + "PE.Controllers.Main.loadFontTextText": "Adatok betöltése...", + "PE.Controllers.Main.loadFontTitleText": "Adatok betöltése", + "PE.Controllers.Main.loadImagesTextText": "Képek betöltése...", + "PE.Controllers.Main.loadImagesTitleText": "Képek betöltése", + "PE.Controllers.Main.loadImageTextText": "Kép betöltése...", + "PE.Controllers.Main.loadImageTitleText": "Kép betöltése", + "PE.Controllers.Main.loadingDocumentTextText": "Prezentáció betöltése...", + "PE.Controllers.Main.loadingDocumentTitleText": "Prezentáció betöltése", + "PE.Controllers.Main.loadThemeTextText": "Téma betöltése...", + "PE.Controllers.Main.loadThemeTitleText": "Téma betöltése", + "PE.Controllers.Main.notcriticalErrorTitle": "Figyelmeztetés", + "PE.Controllers.Main.openErrorText": "Hiba történt a fájl megnyitása során", + "PE.Controllers.Main.openTextText": "Dokumentum megnyitása...", + "PE.Controllers.Main.openTitleText": "Dokumentum megnyitása", + "PE.Controllers.Main.printTextText": "Dokumentum nyomtatása...", + "PE.Controllers.Main.printTitleText": "Dokumentum nyomtatása", + "PE.Controllers.Main.reloadButtonText": "Oldal újratöltése", + "PE.Controllers.Main.requestEditFailedMessageText": "Jelenleg valaki más szerkeszti ezt a dokumentumot. Próbálja újra később.", + "PE.Controllers.Main.requestEditFailedTitleText": "Hozzáférés megtagadva", + "PE.Controllers.Main.saveErrorText": "Hiba történt a fájl mentése során", + "PE.Controllers.Main.savePreparingText": "Felkészülés mentésre", + "PE.Controllers.Main.savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...", + "PE.Controllers.Main.saveTextText": "Dokumentum mentése...", + "PE.Controllers.Main.saveTitleText": "Dokumentum mentése", + "PE.Controllers.Main.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", + "PE.Controllers.Main.splitDividerErrorText": "A soroknak számának a(z) %1 osztójának kell lennie", + "PE.Controllers.Main.splitMaxColsErrorText": "Az oszlopok számának kevesebbnek kell lennie mint %1", + "PE.Controllers.Main.splitMaxRowsErrorText": "A soroknak számának kevesebbnek kell lennie, mint %1", + "PE.Controllers.Main.textAnonymous": "Névtelen", + "PE.Controllers.Main.textBack": "Vissza", + "PE.Controllers.Main.textBuyNow": "Weboldalt meglátogat", + "PE.Controllers.Main.textCancel": "Mégse", + "PE.Controllers.Main.textClose": "Bezár", + "PE.Controllers.Main.textCloseTip": "Koppintson a tippek bezárásához.", + "PE.Controllers.Main.textContactUs": "Értékesítés elérhetősége", + "PE.Controllers.Main.textDone": "Kész", + "PE.Controllers.Main.textLoadingDocument": "Prezentáció betöltése", + "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE kapcsolódási limitáció", + "PE.Controllers.Main.textOK": "OK", + "PE.Controllers.Main.textPassword": "Jelszó", + "PE.Controllers.Main.textPreloader": "Betöltés...", + "PE.Controllers.Main.textShape": "Alakzat", + "PE.Controllers.Main.textTryUndoRedo": "A Visszavonás/Újra funkciók nem elérhetőek Gyors közös szerkesztés módban.", + "PE.Controllers.Main.textUsername": "Felhasználói név", + "PE.Controllers.Main.titleLicenseExp": "Lejárt licenc", + "PE.Controllers.Main.titleServerVersion": "Szerkesztő frissítve", + "PE.Controllers.Main.txtArt": "Írja a szöveget ide", + "PE.Controllers.Main.txtBasicShapes": "Egyszerű alakzatok", + "PE.Controllers.Main.txtButtons": "Gombok", + "PE.Controllers.Main.txtCallouts": "Feliratok", + "PE.Controllers.Main.txtCharts": "Diagramok", + "PE.Controllers.Main.txtClipArt": "Galéria", + "PE.Controllers.Main.txtDateTime": "Dátum és idő", + "PE.Controllers.Main.txtDiagram": "SmartArt", + "PE.Controllers.Main.txtDiagramTitle": "Diagram címe", + "PE.Controllers.Main.txtEditingMode": "Szerkesztési mód beállítása...", + "PE.Controllers.Main.txtFiguredArrows": "Nyíl formák", + "PE.Controllers.Main.txtFooter": "Lábléc", + "PE.Controllers.Main.txtHeader": "Fejléc", + "PE.Controllers.Main.txtImage": "Kép", + "PE.Controllers.Main.txtLines": "Vonalak", + "PE.Controllers.Main.txtMath": "Matematika", + "PE.Controllers.Main.txtMedia": "Média", + "PE.Controllers.Main.txtNeedSynchronize": "Frissítés elérhető", + "PE.Controllers.Main.txtPicture": "Kép", + "PE.Controllers.Main.txtProtected": "Amint beírásra került a kód és megnyílt a fájl, a fájl jelenlegi kódja visszaállítódik.", + "PE.Controllers.Main.txtRectangles": "Négyszögek", + "PE.Controllers.Main.txtSeries": "Sorozatok", + "PE.Controllers.Main.txtSldLtTBlank": "Üres", + "PE.Controllers.Main.txtSldLtTChart": "Diagram", + "PE.Controllers.Main.txtSldLtTChartAndTx": "Diagram és szöveg", + "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Galéria és szöveg", + "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Galéria és függőleges szöveg", + "PE.Controllers.Main.txtSldLtTCust": "Egyéni", + "PE.Controllers.Main.txtSldLtTDgm": "Diagram", + "PE.Controllers.Main.txtSldLtTFourObj": "Négy objektum", + "PE.Controllers.Main.txtSldLtTMediaAndTx": "Média és szöveg", + "PE.Controllers.Main.txtSldLtTObj": "Cím és objektum", + "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objektum és két objektum", + "PE.Controllers.Main.txtSldLtTObjAndTx": "Objektum és szöveg", + "PE.Controllers.Main.txtSldLtTObjOnly": "Objektum", + "PE.Controllers.Main.txtSldLtTObjOverTx": "Objektum a szöveg fölött", + "PE.Controllers.Main.txtSldLtTObjTx": "Cím, objektum és felirat", + "PE.Controllers.Main.txtSldLtTPicTx": "Kép és felirat", + "PE.Controllers.Main.txtSldLtTSecHead": "Szakasz fejléce", + "PE.Controllers.Main.txtSldLtTTbl": "Táblázat", + "PE.Controllers.Main.txtSldLtTTitle": "Cím", + "PE.Controllers.Main.txtSldLtTTitleOnly": "Csak cím", + "PE.Controllers.Main.txtSldLtTTwoColTx": "Két szövegoszlop", + "PE.Controllers.Main.txtSldLtTTwoObj": "Két objektum", + "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Objektumok", + "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Két objektum és szöveg", + "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Két objektum a szöveg felett", + "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Két szöveg és két objektum", + "PE.Controllers.Main.txtSldLtTTx": "Szöveg", + "PE.Controllers.Main.txtSldLtTTxAndChart": "Szöveg és diagram", + "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Szöveg és ClipArt", + "PE.Controllers.Main.txtSldLtTTxAndMedia": "Szöveg és média", + "PE.Controllers.Main.txtSldLtTTxAndObj": "Szöveg és objektum", + "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Szöveg és két objektum", + "PE.Controllers.Main.txtSldLtTTxOverObj": "Szöveg az objektum fölött", + "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Függőleges cím és szöveg", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Függőleges cím és szöveg a diagram felett", + "PE.Controllers.Main.txtSldLtTVertTx": "Függőleges szöveg", + "PE.Controllers.Main.txtSlideNumber": "Dia száma", + "PE.Controllers.Main.txtSlideSubtitle": "Dia alcíme", + "PE.Controllers.Main.txtSlideText": "Dia szövege", + "PE.Controllers.Main.txtSlideTitle": "Dia címe", + "PE.Controllers.Main.txtStarsRibbons": "Csillagok és szalagok", + "PE.Controllers.Main.txtXAxis": "X tengely", + "PE.Controllers.Main.txtYAxis": "Y tengely", + "PE.Controllers.Main.unknownErrorText": "Ismeretlen hiba.", + "PE.Controllers.Main.unsupportedBrowserErrorText ": "A böngészője nem támogatott.", + "PE.Controllers.Main.uploadImageExtMessage": "Ismeretlen képformátum.", + "PE.Controllers.Main.uploadImageFileCountMessage": "Nincs kép feltöltve.", + "PE.Controllers.Main.uploadImageSizeMessage": "Elérte a maximum kép méret limitet.", + "PE.Controllers.Main.uploadImageTextText": "Kép feltöltése...", + "PE.Controllers.Main.uploadImageTitleText": "Kép feltöltése", + "PE.Controllers.Main.warnLicenseExceeded": "A párhuzamos kapcsolódások száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.
    Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.", + "PE.Controllers.Main.warnLicenseExp": "A licence lejárt.
    Kérem frissítse a licencét, majd az oldalt.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "A párhuzamos felhasználók száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.
    Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.", + "PE.Controllers.Main.warnNoLicense": "Ez a verziója az ONLYOFFICE Szerkesztőnek bizonyos limitációkat tartalmaz párhuzamos kapcsolódások terén a dokumentum szerverhez.
    Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.", + "PE.Controllers.Main.warnNoLicenseUsers": "Ez a verziója az ONLYOFFICE Szerkesztőnek bizonyos limitációkat tartalmaz párhuzamosan kapcsolódott felhasználók terén.
    Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.", + "PE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.", + "PE.Controllers.Search.textNoTextFound": "A szöveg nem található", + "PE.Controllers.Search.textReplaceAll": "Mindent cserél", + "PE.Controllers.Settings.notcriticalErrorTitle": "Figyelmeztetés", + "PE.Controllers.Settings.txtLoading": "Betöltés...", + "PE.Controllers.Toolbar.dlgLeaveMsgText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ", + "PE.Controllers.Toolbar.dlgLeaveTitleText": "Bezárja az alkalmazást", + "PE.Controllers.Toolbar.leaveButtonText": "Oldal elhagyása", + "PE.Controllers.Toolbar.stayButtonText": "Maradni az oldalon", + "PE.Views.AddImage.textAddress": "Cím", + "PE.Views.AddImage.textBack": "Vissza", + "PE.Views.AddImage.textFromLibrary": "Kép a galériából", + "PE.Views.AddImage.textFromURL": "Kép URL-en keresztül", + "PE.Views.AddImage.textImageURL": "Kép URL", + "PE.Views.AddImage.textInsertImage": "Kép beszúrása", + "PE.Views.AddImage.textLinkSettings": "Link beállítások", + "PE.Views.AddLink.textBack": "Vissza", + "PE.Views.AddLink.textDisplay": "Megjelenít", + "PE.Views.AddLink.textExternalLink": "Külső hivatkozás", + "PE.Views.AddLink.textFirst": "Első dia", + "PE.Views.AddLink.textInsert": "Beszúr", + "PE.Views.AddLink.textInternalLink": "Csúsztassa be ezt a prezentációt", + "PE.Views.AddLink.textLast": "Utolsó dia", + "PE.Views.AddLink.textLink": "Link", + "PE.Views.AddLink.textLinkSlide": "Hivatkozás", + "PE.Views.AddLink.textLinkType": "Link típusa", + "PE.Views.AddLink.textNext": "Következő dia", + "PE.Views.AddLink.textNumber": "Dia száma", + "PE.Views.AddLink.textPrev": "Korábbi dia", + "PE.Views.AddLink.textTip": "Gyorstipp", + "PE.Views.EditChart.textAlign": "Rendez", + "PE.Views.EditChart.textAlignBottom": "Alulra rendez", + "PE.Views.EditChart.textAlignCenter": "Középre rendez", + "PE.Views.EditChart.textAlignLeft": "Balra rendez", + "PE.Views.EditChart.textAlignMiddle": "Középre rendez", + "PE.Views.EditChart.textAlignRight": "Jobbra rendez", + "PE.Views.EditChart.textAlignTop": "Felfelé rendez", + "PE.Views.EditChart.textBack": "Vissza", + "PE.Views.EditChart.textBackward": "Hátra mozgat", + "PE.Views.EditChart.textBorder": "Szegély", + "PE.Views.EditChart.textColor": "Szín", + "PE.Views.EditChart.textFill": "Kitölt", + "PE.Views.EditChart.textForward": "Előre mozgat", + "PE.Views.EditChart.textRemoveChart": "Diagram eltávolítása", + "PE.Views.EditChart.textReorder": "Újrarendez", + "PE.Views.EditChart.textSize": "Méret", + "PE.Views.EditChart.textStyle": "Stílus", + "PE.Views.EditChart.textToBackground": "Háttérbe küld", + "PE.Views.EditChart.textToForeground": "Elölre hoz", + "PE.Views.EditChart.textType": "Típus", + "PE.Views.EditChart.txtDistribHor": "Vízszintes igazítás", + "PE.Views.EditChart.txtDistribVert": "Függőleges igazítás", + "PE.Views.EditImage.textAddress": "Cím", + "PE.Views.EditImage.textAlign": "Rendez", + "PE.Views.EditImage.textAlignBottom": "Alulra rendez", + "PE.Views.EditImage.textAlignCenter": "Középre rendez", + "PE.Views.EditImage.textAlignLeft": "Balra rendez", + "PE.Views.EditImage.textAlignMiddle": "Középre rendez", + "PE.Views.EditImage.textAlignRight": "Jobbra rendez", + "PE.Views.EditImage.textAlignTop": "Felfelé rendez", + "PE.Views.EditImage.textBack": "Vissza", + "PE.Views.EditImage.textBackward": "Hátra mozgat", + "PE.Views.EditImage.textDefault": "Alapértelmezett méret", + "PE.Views.EditImage.textForward": "Előre mozgat", + "PE.Views.EditImage.textFromLibrary": "Kép a galériából", + "PE.Views.EditImage.textFromURL": "Kép URL-en keresztül", + "PE.Views.EditImage.textImageURL": "Kép URL", + "PE.Views.EditImage.textLinkSettings": "Link beállítások", + "PE.Views.EditImage.textRemove": "Kép eltávolítása", + "PE.Views.EditImage.textReorder": "Újrarendez", + "PE.Views.EditImage.textReplace": "Cserél", + "PE.Views.EditImage.textReplaceImg": "Képet cserél", + "PE.Views.EditImage.textToBackground": "Háttérbe küld", + "PE.Views.EditImage.textToForeground": "Elölre hoz", + "PE.Views.EditImage.txtDistribHor": "Vízszintes igazítás", + "PE.Views.EditImage.txtDistribVert": "Függőleges igazítás", + "PE.Views.EditLink.textBack": "Vissza", + "PE.Views.EditLink.textDisplay": "Megjelenít", + "PE.Views.EditLink.textEdit": "Hivatkozás szerkesztése", + "PE.Views.EditLink.textExternalLink": "Külső hivatkozás", + "PE.Views.EditLink.textFirst": "Első dia", + "PE.Views.EditLink.textInternalLink": "Csúsztassa be ezt a prezentációt", + "PE.Views.EditLink.textLast": "Utolsó dia", + "PE.Views.EditLink.textLink": "Link", + "PE.Views.EditLink.textLinkSlide": "Hivatkozás", + "PE.Views.EditLink.textLinkType": "Link típusa", + "PE.Views.EditLink.textNext": "Következő dia", + "PE.Views.EditLink.textNumber": "Dia száma", + "PE.Views.EditLink.textPrev": "Korábbi dia", + "PE.Views.EditLink.textRemove": "Link eltávolítása", + "PE.Views.EditLink.textTip": "Gyorstipp", + "PE.Views.EditShape.textAlign": "Rendez", + "PE.Views.EditShape.textAlignBottom": "Alulra rendez", + "PE.Views.EditShape.textAlignCenter": "Középre rendez", + "PE.Views.EditShape.textAlignLeft": "Balra rendez", + "PE.Views.EditShape.textAlignMiddle": "Középre rendez", + "PE.Views.EditShape.textAlignRight": "Jobbra rendez", + "PE.Views.EditShape.textAlignTop": "Felfelé rendez", + "PE.Views.EditShape.textBack": "Vissza", + "PE.Views.EditShape.textBackward": "Hátra mozgat", + "PE.Views.EditShape.textBorder": "Szegély", + "PE.Views.EditShape.textColor": "Szín", + "PE.Views.EditShape.textEffects": "Effektek", + "PE.Views.EditShape.textFill": "Kitölt", + "PE.Views.EditShape.textForward": "Előre mozgat", + "PE.Views.EditShape.textOpacity": "Átlátszóság", + "PE.Views.EditShape.textRemoveShape": "Alakzat eltávolítása", + "PE.Views.EditShape.textReorder": "Újrarendez", + "PE.Views.EditShape.textReplace": "Cserél", + "PE.Views.EditShape.textSize": "Méret", + "PE.Views.EditShape.textStyle": "Stílus", + "PE.Views.EditShape.textToBackground": "Háttérbe küld", + "PE.Views.EditShape.textToForeground": "Elölre hoz", + "PE.Views.EditShape.txtDistribHor": "Vízszintes igazítás", + "PE.Views.EditShape.txtDistribVert": "Függőleges igazítás", + "PE.Views.EditSlide.textApplyAll": "Minden diára alkalmaz", + "PE.Views.EditSlide.textBack": "Vissza", + "PE.Views.EditSlide.textBlack": "Fekete", + "PE.Views.EditSlide.textBottom": "Alsó", + "PE.Views.EditSlide.textBottomLeft": "Bal alsó", + "PE.Views.EditSlide.textBottomRight": "Jobb alsó", + "PE.Views.EditSlide.textClock": "Óra", + "PE.Views.EditSlide.textClockwise": "Óramutató járásával megegyezően", + "PE.Views.EditSlide.textColor": "Szín", + "PE.Views.EditSlide.textCounterclockwise": "Óramutató járásával ellenkezően", + "PE.Views.EditSlide.textCover": "Fed", + "PE.Views.EditSlide.textDelay": "Várakozás", + "PE.Views.EditSlide.textDuplicateSlide": "Dia duplikálása", + "PE.Views.EditSlide.textDuration": "Időtartam", + "PE.Views.EditSlide.textEffect": "Effekt", + "PE.Views.EditSlide.textFade": "Áttűnés", + "PE.Views.EditSlide.textFill": "Kitölt", + "PE.Views.EditSlide.textHorizontalIn": "Vízszintesen belül", + "PE.Views.EditSlide.textHorizontalOut": "Vízszintesen kívül", + "PE.Views.EditSlide.textLayout": "Elrendezés", + "PE.Views.EditSlide.textLeft": "Bal", + "PE.Views.EditSlide.textNone": "nincs", + "PE.Views.EditSlide.textOpacity": "Átlátszóság", + "PE.Views.EditSlide.textPush": "Nyom", + "PE.Views.EditSlide.textRemoveSlide": "Dia törlése", + "PE.Views.EditSlide.textRight": "Jobb", + "PE.Views.EditSlide.textSmoothly": "Simán", + "PE.Views.EditSlide.textSplit": "Szétválaszt", + "PE.Views.EditSlide.textStartOnClick": "Érintésre elindít", + "PE.Views.EditSlide.textStyle": "Stílus", + "PE.Views.EditSlide.textTheme": "Téma", + "PE.Views.EditSlide.textTop": "Felső", + "PE.Views.EditSlide.textTopLeft": "Bal felső", + "PE.Views.EditSlide.textTopRight": "Jobb felső", + "PE.Views.EditSlide.textTransition": "Átmenet", + "PE.Views.EditSlide.textType": "Típus", + "PE.Views.EditSlide.textUnCover": "Felfed", + "PE.Views.EditSlide.textVerticalIn": "Függőlegesen befele", + "PE.Views.EditSlide.textVerticalOut": "Függőlegesen kifele", + "PE.Views.EditSlide.textWedge": "Beékel", + "PE.Views.EditSlide.textWipe": "Töröl", + "PE.Views.EditSlide.textZoom": "Zoom", + "PE.Views.EditSlide.textZoomIn": "Zoom be", + "PE.Views.EditSlide.textZoomOut": "Zoom ki", + "PE.Views.EditSlide.textZoomRotate": "Zoom és elforgatás", + "PE.Views.EditTable.textAlign": "Rendez", + "PE.Views.EditTable.textAlignBottom": "Alulra rendez", + "PE.Views.EditTable.textAlignCenter": "Középre rendez", + "PE.Views.EditTable.textAlignLeft": "Balra rendez", + "PE.Views.EditTable.textAlignMiddle": "Középre rendez", + "PE.Views.EditTable.textAlignRight": "Jobbra rendez", + "PE.Views.EditTable.textAlignTop": "Felfelé rendez", + "PE.Views.EditTable.textBack": "Vissza", + "PE.Views.EditTable.textBackward": "Hátra mozgat", + "PE.Views.EditTable.textBandedColumn": "Oszlopok csíkozása", + "PE.Views.EditTable.textBandedRow": "Sorok csíkozása", + "PE.Views.EditTable.textBorder": "Szegély", + "PE.Views.EditTable.textCellMargins": "Cella margók", + "PE.Views.EditTable.textColor": "Szín", + "PE.Views.EditTable.textFill": "Kitölt", + "PE.Views.EditTable.textFirstColumn": "Első oszlop", + "PE.Views.EditTable.textForward": "Előre mozgat", + "PE.Views.EditTable.textHeaderRow": "Fejléc sor", + "PE.Views.EditTable.textLastColumn": "Utolsó oszlop", + "PE.Views.EditTable.textOptions": "Beállítások", + "PE.Views.EditTable.textRemoveTable": "Táblázat eltávolítása", + "PE.Views.EditTable.textReorder": "Újrarendez", + "PE.Views.EditTable.textSize": "Méret", + "PE.Views.EditTable.textStyle": "Stílus", + "PE.Views.EditTable.textStyleOptions": "Stílus beállítások", + "PE.Views.EditTable.textTableOptions": "Táblázat beállítások", + "PE.Views.EditTable.textToBackground": "Háttérbe küld", + "PE.Views.EditTable.textToForeground": "Elölre hoz", + "PE.Views.EditTable.textTotalRow": "Összes sor", + "PE.Views.EditTable.txtDistribHor": "Vízszintes igazítás", + "PE.Views.EditTable.txtDistribVert": "Függőleges igazítás", + "PE.Views.EditText.textAdditional": "További", + "PE.Views.EditText.textAdditionalFormat": "További formázás", + "PE.Views.EditText.textAfter": "után", + "PE.Views.EditText.textAllCaps": "Minden nagybetű", + "PE.Views.EditText.textAutomatic": "Automatikus", + "PE.Views.EditText.textBack": "Vissza", + "PE.Views.EditText.textBefore": "Előtt", + "PE.Views.EditText.textBullets": "Pontok", + "PE.Views.EditText.textDblStrikethrough": "Dupla áthúzás", + "PE.Views.EditText.textDblSuperscript": "Felső index", + "PE.Views.EditText.textFontColor": "Betűszín", + "PE.Views.EditText.textFontColors": "Betűszínek", + "PE.Views.EditText.textFonts": "Betűtípusok", + "PE.Views.EditText.textFromText": "Távolság a szövegtől", + "PE.Views.EditText.textLetterSpacing": "Betűtávolság", + "PE.Views.EditText.textLineSpacing": "Sortávolság", + "PE.Views.EditText.textNone": "nincs", + "PE.Views.EditText.textNumbers": "Számok", + "PE.Views.EditText.textSize": "Méret", + "PE.Views.EditText.textSmallCaps": "Kisbetűk", + "PE.Views.EditText.textStrikethrough": "Áthúzás", + "PE.Views.EditText.textSubscript": "Alsó index", + "PE.Views.Search.textCase": "Kis-nagybetű érzékeny", + "PE.Views.Search.textDone": "Kész", + "PE.Views.Search.textFind": "Keres", + "PE.Views.Search.textFindAndReplace": "Keres és cserél", + "PE.Views.Search.textReplace": "Cserél", + "PE.Views.Search.textSearch": "Keresés", + "PE.Views.Settings.mniSlideStandard": "Sztenderd (4:3)", + "PE.Views.Settings.mniSlideWide": "Szélesvásznú (16:9)", + "PE.Views.Settings.textAbout": "Névjegy", + "PE.Views.Settings.textAddress": "Cím", + "PE.Views.Settings.textAuthor": "Szerző", + "PE.Views.Settings.textBack": "Vissza", + "PE.Views.Settings.textCreateDate": "Létrehozás dátuma", + "PE.Views.Settings.textDone": "Kész", + "PE.Views.Settings.textDownload": "Letöltés", + "PE.Views.Settings.textDownloadAs": "Letöltés mint...", + "PE.Views.Settings.textEditPresent": "Prezentáció szerkesztése", + "PE.Views.Settings.textEmail": "Email", + "PE.Views.Settings.textFind": "Keres", + "PE.Views.Settings.textFindAndReplace": "Keres és cserél", + "PE.Views.Settings.textHelp": "Segítség", + "PE.Views.Settings.textLoading": "Betöltés...", + "PE.Views.Settings.textPoweredBy": "Powered by", + "PE.Views.Settings.textPresentInfo": "Prezentáció infó", + "PE.Views.Settings.textPresentSetup": "Prezentáció beállítások", + "PE.Views.Settings.textPresentTitle": "Prezentáció címe", + "PE.Views.Settings.textPrint": "Nyomtat", + "PE.Views.Settings.textSettings": "Beállítások", + "PE.Views.Settings.textSlideSize": "Dia mérete", + "PE.Views.Settings.textSpellcheck": "Helyesírás-ellenőrzés", + "PE.Views.Settings.textTel": "Tel.", + "PE.Views.Settings.textVersion": "Verzió", + "PE.Views.Settings.unknownText": "Ismeretlen", + "PE.Views.Toolbar.textBack": "Vissza" +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index 307da0f03..c60ce571e 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -68,6 +68,7 @@ "PE.Controllers.Main.downloadErrorText": "Download non riuscito.", "PE.Controllers.Main.downloadTextText": "Download della presentazione in corso...", "PE.Controllers.Main.downloadTitleText": "Download della presentazione", + "PE.Controllers.Main.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.
    Si prega di contattare l'amministratore del Server dei Documenti.", "PE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretto", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Scollegato dal server. Non è possibile modificare.", "PE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore.
    Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.

    Per maggiori dettagli sulla connessione al Document Server clicca qui", @@ -75,6 +76,7 @@ "PE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.", "PE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.", "PE.Controllers.Main.errorDefaultMessage": "Codice errore: %1", + "PE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore mentre si lavorava sul documento.
    Utilizzare l'opzione 'Scarica' per salvare la copia di backup del file sul disco rigido del computer.", "PE.Controllers.Main.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "PE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto", "PE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", @@ -213,6 +215,7 @@ "PE.Controllers.Main.warnNoLicenseUsers": "Questa versione di ONLYOFFICE Editors presenta alcune limitazioni per gli utenti simultanei.
    Se hai bisogno di più, ti preghiamo di considerare l'aggiornamento della tua licenza attuale o l'acquisto di una licenza commerciale.", "PE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.", "PE.Controllers.Search.textNoTextFound": "Testo non trovato", + "PE.Controllers.Search.textReplaceAll": "Sostituisci tutto", "PE.Controllers.Settings.notcriticalErrorTitle": "Avviso", "PE.Controllers.Settings.txtLoading": "Caricamento in corso...", "PE.Controllers.Toolbar.dlgLeaveMsgText": "Ci sono delle modifiche non salvate in questo documento. Clicca su 'Rimani in questa pagina, in attesa del salvataggio automatico del documento. Clicca su 'Lascia questa pagina' per annullare le modifiche.", @@ -423,6 +426,11 @@ "PE.Views.EditText.textSmallCaps": "Maiuscoletto", "PE.Views.EditText.textStrikethrough": "Barrato", "PE.Views.EditText.textSubscript": "Pedice", + "PE.Views.Search.textCase": "Sensibile al maiuscolo/minuscolo", + "PE.Views.Search.textDone": "Fatto", + "PE.Views.Search.textFind": "Trova", + "PE.Views.Search.textFindAndReplace": "Trova e sostituisci", + "PE.Views.Search.textReplace": "Sostituisci", "PE.Views.Search.textSearch": "Cerca", "PE.Views.Settings.mniSlideStandard": "Standard (4:3)", "PE.Views.Settings.mniSlideWide": "Widescreen (16:9)", @@ -437,14 +445,17 @@ "PE.Views.Settings.textEditPresent": "Modifica presentazione", "PE.Views.Settings.textEmail": "email", "PE.Views.Settings.textFind": "Trova", + "PE.Views.Settings.textFindAndReplace": "Trova e sostituisci", "PE.Views.Settings.textHelp": "Guida", "PE.Views.Settings.textLoading": "Caricamento in corso...", "PE.Views.Settings.textPoweredBy": "Con tecnologia", "PE.Views.Settings.textPresentInfo": "Informazioni Presentazione", "PE.Views.Settings.textPresentSetup": "Imposta Presentazione", "PE.Views.Settings.textPresentTitle": "Titolo presentazione", + "PE.Views.Settings.textPrint": "Stampa", "PE.Views.Settings.textSettings": "Impostazioni", "PE.Views.Settings.textSlideSize": "Dimensione diapositiva", + "PE.Views.Settings.textSpellcheck": "Controllo ortografia", "PE.Views.Settings.textTel": "Tel.", "PE.Views.Settings.textVersion": "Versione", "PE.Views.Settings.unknownText": "Sconosciuto", diff --git a/apps/presentationeditor/mobile/locale/pl.json b/apps/presentationeditor/mobile/locale/pl.json index de9dd1ec0..4bcda8276 100644 --- a/apps/presentationeditor/mobile/locale/pl.json +++ b/apps/presentationeditor/mobile/locale/pl.json @@ -73,7 +73,7 @@ "PE.Controllers.Main.errorDatabaseConnection": "Zewnętrzny błąd.
    Błąd połączenia z bazą danych. Proszę skontaktuj się z administratorem.", "PE.Controllers.Main.errorDataRange": "Błędny zakres danych.", "PE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", - "PE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem.", + "PE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem i nie może być otwarty.", "PE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", "PE.Controllers.Main.errorKeyExpire": "Okres ważności deskryptora klucza wygasł", "PE.Controllers.Main.errorProcessSaveResult": "Zapisywanie nie powiodło się.", diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index 571e5c9c1..0ec10f212 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -68,6 +68,7 @@ "PE.Controllers.Main.downloadErrorText": "Загрузка не удалась.", "PE.Controllers.Main.downloadTextText": "Загрузка презентации...", "PE.Controllers.Main.downloadTitleText": "Загрузка презентации", + "PE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.
    Пожалуйста, обратитесь к администратору Сервера документов.", "PE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Подключение к серверу прервано. Редактирование недоступно.", "PE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.
    Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.

    Дополнительную информацию о подключении Сервера документов можно найти здесь", @@ -213,6 +214,7 @@ "PE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов ONLYOFFICE имеет некоторые ограничения по числу одновременно работающих пользователей.
    Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.", "PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.", "PE.Controllers.Search.textNoTextFound": "Текст не найден", + "PE.Controllers.Search.textReplaceAll": "Заменить все", "PE.Controllers.Settings.notcriticalErrorTitle": "Внимание", "PE.Controllers.Settings.txtLoading": "Загрузка...", "PE.Controllers.Toolbar.dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения документа. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", @@ -423,6 +425,11 @@ "PE.Views.EditText.textSmallCaps": "Малые прописные", "PE.Views.EditText.textStrikethrough": "Зачеркнутый", "PE.Views.EditText.textSubscript": "Подстрочные", + "PE.Views.Search.textCase": "С учетом регистра", + "PE.Views.Search.textDone": "Готово", + "PE.Views.Search.textFind": "Поиск", + "PE.Views.Search.textFindAndReplace": "Поиск и замена", + "PE.Views.Search.textReplace": "Заменить", "PE.Views.Search.textSearch": "Поиск", "PE.Views.Settings.mniSlideStandard": "Стандартный (4:3)", "PE.Views.Settings.mniSlideWide": "Широкоэкранный (16:9)", @@ -437,6 +444,7 @@ "PE.Views.Settings.textEditPresent": "Редактировать", "PE.Views.Settings.textEmail": "email", "PE.Views.Settings.textFind": "Поиск", + "PE.Views.Settings.textFindAndReplace": "Поиск и замена", "PE.Views.Settings.textHelp": "Справка", "PE.Views.Settings.textLoading": "Загрузка...", "PE.Views.Settings.textPoweredBy": "Powered by", @@ -445,6 +453,7 @@ "PE.Views.Settings.textPresentTitle": "Название презентации", "PE.Views.Settings.textSettings": "Настройки", "PE.Views.Settings.textSlideSize": "Размер слайда", + "PE.Views.Settings.textSpellcheck": "Проверка орфографии", "PE.Views.Settings.textTel": "Телефон", "PE.Views.Settings.textVersion": "Версия", "PE.Views.Settings.unknownText": "Неизвестно", diff --git a/apps/presentationeditor/mobile/resources/css/app-ios.css b/apps/presentationeditor/mobile/resources/css/app-ios.css index fd0900f8a..d3f1f565d 100644 --- a/apps/presentationeditor/mobile/resources/css/app-ios.css +++ b/apps/presentationeditor/mobile/resources/css/app-ios.css @@ -6350,7 +6350,17 @@ i.icon.icon-reader { i.icon.icon-download { width: 22px; height: 28px; - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-1%203%2022%2028%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23aa5252%22%3E%3Cg%3E%3Cpolygon%20transform%3D%22rotate(180%2C10.5%2C12.4)%22%20points%3D%2210%2C21.2%2011%2C21.2%2011%2C5.6%2014.6%2C9.3%2015.3%2C8.5%2010.5%2C3.6%205.7%2C8.5%206.4%2C9.3%2010%2C5.6%20%22%20%2F%3E%3Cpolygon%20points%3D%2213%2C12%2013%2C13%2019%2C13%2019%2C30%202%2C30%202%2C13%208%2C13%208%2C12%201%2C12%201%2C13%201%2C30%201%2C31%2020%2C31%2020%2C30%2020%2C13%2020%2C12%20%20%22%20%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23aa5252%22%3E%3Cpath%20d%3D%22M12%200H11L11%2014L7.39999%2010.3L6.69999%2011.1L11.5%2016L16.3%2011.1L15.6%2010.3L12%2014L12%200Z%22%2F%3E%3Cpath%20d%3D%22M14%205V6H19V20H4V6H9V5H3V21H20V5H14Z%22%2F%3E%3C%2Fsvg%3E"); +} +i.icon.icon-print { + width: 22px; + height: 28px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-0%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23aa5252%22%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%201H17V6H21V17H17V21H5V17H1V6H5V1ZM6%206H16V2H6V6ZM5%2016V13H2V16H5ZM2%2012H20V7H2V12ZM20%2013H17V16H20V13ZM16%2013H6V20H16V13ZM14%2016H8V15H14V16ZM14%2018H8V17H14V18Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} +i.icon.icon-spellcheck { + width: 22px; + height: 22px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22%23aa5252%22%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8%201L3%2015H4.2L5.97686%2010H11.0231L11.6768%2011.8394C11.955%2011.5504%2012.262%2011.2892%2012.593%2011.0605L9%201H8ZM8.5%202.9L10.6678%209H6.33223L8.5%202.9Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16%2021C18.7614%2021%2021%2018.7614%2021%2016C21%2013.2386%2018.7614%2011%2016%2011C13.2386%2011%2011%2013.2386%2011%2016C11%2018.7614%2013.2386%2021%2016%2021ZM15.3536%2018.3536L19.3536%2014.3536L18.6464%2013.6464L15%2017.2929L13.3536%2015.6464L12.6464%2016.3536L14.6464%2018.3536L15%2018.7071L15.3536%2018.3536Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } i.icon.icon-info { width: 22px; @@ -6661,16 +6671,34 @@ i.icon.icon-format-pdf { height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2233px%22%20height%3D%2233px%22%20viewBox%3D%22-3.363%20-3.658%2033%2033%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M8.512%2C14.989c0.8-1.567%2C1.709-3.334%2C2.438-5.107l0%2C0l0.287-0.699%20%20c-0.949-3.616-1.52-6.52-1.011-8.396l0%2C0C10.362%2C0.297%2C10.929%2C0%2C11.535%2C0l0%2C0l0.368%2C0.005h0.068c0.83-0.013%2C1.22%2C1.042%2C1.264%2C1.453%20%20l0%2C0c0.073%2C0.684-0.242%2C1.839-0.242%2C1.839l0%2C0c0-0.467%2C0.018-1.221-0.276-1.873l0%2C0c-0.343-0.753-0.671-1.203-0.965-1.274l0%2C0%20%20C11.604%2C0.25%2C11.46%2C0.455%2C11.411%2C0.85l0%2C0c-0.104%2C0.553-0.134%2C1.252-0.134%2C1.611l0%2C0c0%2C1.272%2C0.25%2C2.952%2C0.743%2C4.684l0%2C0%20%20c0.093-0.269%2C0.174-0.526%2C0.24-0.768l0%2C0c0.101-0.38%2C0.743-2.9%2C0.743-2.9l0%2C0c0%2C0-0.162%2C3.354-0.388%2C4.371l0%2C0%20%20c-0.049%2C0.215-0.103%2C0.427-0.158%2C0.644l0%2C0c0.812%2C2.268%2C2.121%2C4.292%2C3.68%2C5.75l0%2C0c0.615%2C0.575%2C1.393%2C1.038%2C2.128%2C1.461l0%2C0%20%20c1.605-0.229%2C3.084-0.338%2C4.318-0.324l0%2C0c1.637%2C0.021%2C2.838%2C0.265%2C3.324%2C0.743l0%2C0c0.237%2C0.232%2C0.335%2C0.514%2C0.364%2C0.83l0%2C0%20%20c0.007%2C0.122-0.053%2C0.41-0.069%2C0.482l0%2C0c0.018-0.088%2C0.018-0.519-1.298-0.938l0%2C0c-1.033-0.33-2.971-0.32-5.295-0.073l0%2C0%20%20c2.688%2C1.315%2C5.308%2C1.969%2C6.138%2C1.577l0%2C0c0.203-0.1%2C0.448-0.437%2C0.448-0.437l0%2C0c0%2C0-0.146%2C0.665-0.252%2C0.831l0%2C0%20%20c-0.134%2C0.18-0.396%2C0.376-0.646%2C0.44l0%2C0c-1.312%2C0.351-4.722-0.459-7.695-2.158l0%2C0c-3.322%2C0.489-6.972%2C1.394-9.896%2C2.354l0%2C0%20%20c-2.874%2C5.036-5.036%2C7.35-6.793%2C6.47l0%2C0l-0.646-0.325c-0.263-0.149-0.303-0.516-0.242-0.813l0%2C0%20%20c0.205-1.003%2C1.462-2.513%2C3.988-4.021l0%2C0c0.272-0.165%2C1.483-0.805%2C1.483-0.805l0%2C0c0%2C0-0.896%2C0.868-1.106%2C1.038l0%2C0%20%20c-2.016%2C1.652-3.504%2C3.73-3.467%2C4.536l0%2C0l0.007%2C0.069C2.643%2C24.936%2C5.21%2C21.45%2C8.512%2C14.989%20M9.559%2C15.525%20%20c-0.551%2C1.038-1.09%2C2.001-1.588%2C2.886l0%2C0c2.752-1.153%2C5.715-1.892%2C8.535-2.416l0%2C0c-0.379-0.262-0.746-0.539-1.093-0.832l0%2C0%20%20c-1.555-1.313-2.737-2.955-3.596-4.681l0%2C0C11.273%2C11.948%2C10.626%2C13.507%2C9.559%2C15.525%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-pdfa { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2033%2033%22%20height%3D%2233px%22%20width%3D%2233px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.875%2018.648L11.9617%2018.4783C12.7401%2016.954%2013.6102%2015.2503%2014.312%2013.541L14.6%2012.841C13.65%209.225%2013.08%206.322%2013.589%204.445C13.726%203.956%2014.293%203.659%2014.899%203.659L15.268%203.664H15.336C16.166%203.651%2016.556%204.706%2016.6%205.117C16.673%205.8%2016.357%206.956%2016.357%206.956L16.3571%206.87946C16.358%206.40944%2016.3594%205.70047%2016.081%205.083C15.738%204.33%2015.41%203.879%2015.116%203.808C14.968%203.907%2014.824%204.112%2014.774%204.507C14.671%205.06%2014.641%205.759%2014.641%206.119C14.641%207.391%2014.891%209.071%2015.384%2010.802C15.477%2010.534%2015.558%2010.276%2015.624%2010.035C15.725%209.655%2016.367%207.134%2016.367%207.134C16.367%207.134%2016.205%2010.489%2015.979%2011.505C15.931%2011.72%2015.877%2011.932%2015.821%2012.149C16.633%2014.417%2017.942%2016.441%2019.501%2017.899C19.9467%2018.3157%2020.4779%2018.6735%2021.0164%2019H29C30.1046%2019%2031%2019.8954%2031%2021V29C31%2030.1046%2030.1046%2031%2029%2031H17C15.8954%2031%2015%2030.1046%2015%2029V21.5492C13.6156%2021.9019%2012.2807%2022.2896%2011.07%2022.687C8.19599%2027.724%206.03499%2030.038%204.27699%2029.158L3.62999%2028.833C3.36699%2028.683%203.32699%2028.317%203.38799%2028.02C3.59299%2027.017%204.84999%2025.507%207.37599%2023.999C7.64799%2023.834%208.85899%2023.194%208.85899%2023.194C8.85899%2023.194%207.96299%2024.062%207.75299%2024.232C5.73699%2025.884%204.24899%2027.962%204.28599%2028.768L4.29299%2028.837C6.00499%2028.594%208.57299%2025.109%2011.875%2018.648ZM18.775%2018.822C18.8461%2018.882%2018.918%2018.9413%2018.9906%2019H17C15.9681%2019%2015.1187%2019.7815%2015.0114%2020.785C13.7648%2021.146%2012.529%2021.5689%2011.333%2022.07C11.831%2021.185%2012.37%2020.222%2012.921%2019.184C13.989%2017.166%2014.636%2015.607%2015.18%2014.141C16.038%2015.867%2017.221%2017.508%2018.775%2018.822ZM21.5553%2027.3521H24.4447L24.9995%2029H26.7518L23.7581%2021.002H22.231L19.2537%2029H21.006L21.5553%2027.3521ZM23.9998%2026.0172H22.0002L22.9945%2023.0234L23.9998%2026.0172Z%22%20class%3D%22cls-1%22%2F%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-pptx { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2265%22%20height%3D%2265%22%20viewBox%3D%2219.951%2032.432%2065.000002%2065.000003%22%20xml%3Aspace%3D%22preserve%22%20%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M%2051.31066%2C44.356609%20C%2047.702785%2C44.433229%2043.9488%2C45.107%2040.5548%2C44.9445%20c%20-0.149%2C13.35%20-0.123719%2C26.7115%20-0.01172%2C40.0625%202.476001%2C0.199%204.9625%2C0.412%207.4375%2C0.625%20-0.011%2C-4.888%206.72e-4%2C-9.776062%200.01367%2C-14.664062%203.088%2C0.100999%206.336828%2C0.300562%209.173828%2C-1.148438%207.988%2C-3.913%209.413391%2C-15.938562%204.025391%2C-22.476562%20-2.8125%2C-2.544001%20-6.274937%2C-3.062954%20-9.882812%2C-2.986329%20z%20m%20-0.416016%2C7.244141%20c%201.641035%2C0.04387%203.222344%2C0.409844%204.261719%2C1.855469%201.425%2C2.45%201.350109%2C5.676172%200.162109%2C8.201172%20-1.425%2C2.575%20-4.650672%2C2.325%20-7.138672%2C2.625%20-0.262%2C-4.188%20-0.236218%2C-8.377172%20-0.199219%2C-12.576172%200.923626%2C-0.04237%201.929442%2C-0.131789%202.914063%2C-0.105469%20z%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-potx { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-potx%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22potx%22%20clip-path%3D%22url(%23clip-potx)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cpath%20id%3D%22Path_25%22%20data-name%3D%22Path%2025%22%20d%3D%22M412.988%2C119c-1.658.033-3.382.327-4.94.257-.068%2C5.822-.057%2C11.646%2C0%2C17.467%2C1.136.087%2C2.279.18%2C3.415.273%2C0-2.132%2C0-4.263.006-6.395a8.88%2C8.88%2C0%2C0%2C0%2C4.213-.5c3.669-1.707%2C4.323-6.95%2C1.85-9.8a6.428%2C6.428%2C0%2C0%2C0-4.538-1.3Zm-.192%2C3.159a2.353%2C2.353%2C0%2C0%2C1%2C1.956.809%2C3.776%2C3.776%2C0%2C0%2C1%2C.075%2C3.576c-.655%2C1.124-2.136%2C1.014-3.278%2C1.145-.121-1.826-.108-3.652-.093-5.484C411.881%2C122.189%2C412.343%2C122.15%2C412.8%2C122.162Z%22%20transform%3D%22translate(-404%20-117)%22%20class%3D%22cls-1%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-odp { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%20-54.11%20193.63%20193.63%22%20height%3D%22193.63px%22%20width%3D%22193.63px%22%20y%3D%220px%22%20x%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M193.16%2C5.615V5.609c-0.334-0.173-0.671-0.334-1.005-0.497%20%20c-5.356-2.586-11.256-4.287-17.525-4.88c-11.083-1.049-21.673%2C1.496-30.622%2C6.678c-6.13-3.477-13.071-5.741-20.542-6.448%20%20c-10.298-0.974-20.17%2C1.16-28.697%2C5.629c-0.084%2C0.044-0.17%2C0.095-0.251%2C0.135c-0.207%2C0.162-0.347%2C0.414-0.347%2C0.697%20%20c0%2C0.492%2C0.392%2C0.89%2C0.889%2C0.89c0.046%2C0%2C0.091-0.007%2C0.139-0.017c0.021-0.002%2C0.042-0.011%2C0.061-0.015%20%20c4.586-0.848%2C9.368-1.088%2C14.243-0.627c13.684%2C1.293%2C25.609%2C5.521%2C33.975%2C15.011c0.437%2C0.455%2C0.822%2C0.427%2C1.266-0.024%20%20c10.523-12.2%2C26.662-17.021%2C44.006-15.382c0.968%2C0.094%2C1.921%2C0.213%2C2.871%2C0.355c0.33%2C0.05%2C0.836%2C0.134%2C1.133%2C0.167%20%20c0.572%2C0.063%2C0.88-0.397%2C0.88-0.891C193.629%2C6.056%2C193.485%2C5.776%2C193.16%2C5.615L193.16%2C5.615z%22%20class%3D%22cls-1%22%20%2F%3E%3Cpath%20d%3D%22M173.054%2C48.544c-0.057-0.028-0.107-0.046-0.154-0.065%20%20c-10.518-4.35-22.021-6.758-34.094-6.758c-19.293%2C0-37.154%2C6.127-51.757%2C16.524c-11.146-4.993-23.497-7.776-36.496-7.776%20%20c-18.485%2C0-35.648%2C5.617-49.895%2C15.237c-0.047%2C0.029-0.095%2C0.066-0.149%2C0.104C0.205%2C66.044%2C0%2C66.418%2C0%2C66.848%20%20c0%2C0.729%2C0.592%2C1.323%2C1.323%2C1.323c0.086%2C0%2C0.174-0.013%2C0.259-0.03c0.058-0.015%2C0.107-0.027%2C0.161-0.048%20%20c8.166-2.456%2C16.832-3.791%2C25.798-3.791c23.836%2C0%2C45.083%2C5.634%2C61.08%2C20.681c0.038%2C0.028%2C0.071%2C0.065%2C0.111%2C0.104%20%20c0.232%2C0.205%2C0.53%2C0.325%2C0.863%2C0.325c0.412%2C0%2C0.774-0.188%2C1.018-0.486c0.006%2C0.005%2C0.515-0.72%2C0.773-1.069%20%20c16.246-22.217%2C43.03-33.172%2C72.845-33.172c2.129%2C0%2C4.246%2C0.08%2C6.338%2C0.225c0.602%2C0.047%2C1.873%2C0.144%2C1.902%2C0.144%20%20c0.727%2C0%2C1.322-0.591%2C1.322-1.323C173.796%2C49.203%2C173.492%2C48.752%2C173.054%2C48.544L173.054%2C48.544z%22%20class%3D%22cls-1%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-otp { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-otp%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22otp%22%20clip-path%3D%22url(%23clip-otp)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_33%22%20data-name%3D%22Path%2033%22%20d%3D%22M125.173%2C121h0c-.046-.03-.093-.059-.141-.088a6.133%2C6.133%2C0%2C0%2C0-2.467-.869%2C6.014%2C6.014%2C0%2C0%2C0-4.309%2C1.188%2C6.223%2C6.223%2C0%2C0%2C0-2.892-1.147%2C5.965%2C5.965%2C0%2C0%2C0-4.039%2C1l-.036.024a.176.176%2C0%2C0%2C0-.049.125.145.145%2C0%2C0%2C0%2C.126.158l.019%2C0a.019.019%2C0%2C0%2C0%2C.009%2C0%2C5.781%2C5.781%2C0%2C0%2C1%2C2.005-.111%2C6.41%2C6.41%2C0%2C0%2C1%2C4.782%2C2.669c.06.081.115.076.178%2C0a6.288%2C6.288%2C0%2C0%2C1%2C6.194-2.735c.136.017.27.038.4.064.047.009.119.024.161.03.08.011.123-.071.123-.159A.155.155%2C0%2C0%2C0%2C125.173%2C121Z%22%20transform%3D%22translate(-94.24%20-116)%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_34%22%20data-name%3D%22Path%2034%22%20d%3D%22M126.894%2C125.978a.175.175%2C0%2C0%2C0-.022-.011%2C11.686%2C11.686%2C0%2C0%2C0-4.905-1.082%2C11.924%2C11.924%2C0%2C0%2C0-7.444%2C2.647%2C11.725%2C11.725%2C0%2C0%2C0-5.251-1.245%2C11.884%2C11.884%2C0%2C0%2C0-7.176%2C2.441.229.229%2C0%2C0%2C0-.022.016.217.217%2C0%2C0%2C0-.073.167.2.2%2C0%2C0%2C0%2C.191.211.167.167%2C0%2C0%2C0%2C.037%2C0%2C.118.118%2C0%2C0%2C0%2C.023-.008%2C11.679%2C11.679%2C0%2C0%2C1%2C3.71-.608c3.429%2C0%2C6.486.9%2C8.787%2C3.315a.093.093%2C0%2C0%2C1%2C.016.016.172.172%2C0%2C0%2C0%2C.123.052.18.18%2C0%2C0%2C0%2C.147-.078s.075-.115.111-.171a12.1%2C12.1%2C0%2C0%2C1%2C10.479-5.315c.306%2C0%2C.611.014.912.037l.273.022a.2.2%2C0%2C0%2C0%2C.191-.211A.211.211%2C0%2C0%2C0%2C126.894%2C125.978Z%22%20transform%3D%22translate(-100%20-115.885)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} +.label-switch input[type="checkbox"]:checked + .checkbox { + background: #aa5252; +} #editor_sdk { position: absolute; left: 0; diff --git a/apps/presentationeditor/mobile/resources/css/app-material.css b/apps/presentationeditor/mobile/resources/css/app-material.css index 281461beb..a741b07b6 100644 --- a/apps/presentationeditor/mobile/resources/css/app-material.css +++ b/apps/presentationeditor/mobile/resources/css/app-material.css @@ -5943,7 +5943,17 @@ i.icon.icon-reader { i.icon.icon-download { width: 22px; height: 28px; - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-1%203%2022%2028%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23aa5252%22%3E%3Cg%3E%3Cpolygon%20transform%3D%22rotate(180%2C10.5%2C12.4)%22%20points%3D%2210%2C21.2%2011%2C21.2%2011%2C5.6%2014.6%2C9.3%2015.3%2C8.5%2010.5%2C3.6%205.7%2C8.5%206.4%2C9.3%2010%2C5.6%20%22%20%2F%3E%3Cpolygon%20points%3D%2213%2C12%2013%2C13%2019%2C13%2019%2C30%202%2C30%202%2C13%208%2C13%208%2C12%201%2C12%201%2C13%201%2C30%201%2C31%2020%2C31%2020%2C30%2020%2C13%2020%2C12%20%20%22%20%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23aa5252%22%3E%3Cpath%20d%3D%22M12%200H11L11%2014L7.39999%2010.3L6.69999%2011.1L11.5%2016L16.3%2011.1L15.6%2010.3L12%2014L12%200Z%22%2F%3E%3Cpath%20d%3D%22M14%205V6H19V20H4V6H9V5H3V21H20V5H14Z%22%2F%3E%3C%2Fsvg%3E"); +} +i.icon.icon-print { + width: 22px; + height: 28px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-0%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%23aa5252%22%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%201H17V6H21V17H17V21H5V17H1V6H5V1ZM6%206H16V2H6V6ZM5%2016V13H2V16H5ZM2%2012H20V7H2V12ZM20%2013H17V16H20V13ZM16%2013H6V20H16V13ZM14%2016H8V15H14V16ZM14%2018H8V17H14V18Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} +i.icon.icon-spellcheck { + width: 22px; + height: 22px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22%23aa5252%22%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8%201L3%2015H4.2L5.97686%2010H11.0231L11.6768%2011.8394C11.955%2011.5504%2012.262%2011.2892%2012.593%2011.0605L9%201H8ZM8.5%202.9L10.6678%209H6.33223L8.5%202.9Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16%2021C18.7614%2021%2021%2018.7614%2021%2016C21%2013.2386%2018.7614%2011%2016%2011C13.2386%2011%2011%2013.2386%2011%2016C11%2018.7614%2013.2386%2021%2016%2021ZM15.3536%2018.3536L19.3536%2014.3536L18.6464%2013.6464L15%2017.2929L13.3536%2015.6464L12.6464%2016.3536L14.6464%2018.3536L15%2018.7071L15.3536%2018.3536Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } i.icon.icon-info { width: 22px; @@ -6199,16 +6209,31 @@ i.icon.icon-format-pdf { height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2233px%22%20height%3D%2233px%22%20viewBox%3D%22-3.363%20-3.658%2033%2033%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M8.512%2C14.989c0.8-1.567%2C1.709-3.334%2C2.438-5.107l0%2C0l0.287-0.699%20%20c-0.949-3.616-1.52-6.52-1.011-8.396l0%2C0C10.362%2C0.297%2C10.929%2C0%2C11.535%2C0l0%2C0l0.368%2C0.005h0.068c0.83-0.013%2C1.22%2C1.042%2C1.264%2C1.453%20%20l0%2C0c0.073%2C0.684-0.242%2C1.839-0.242%2C1.839l0%2C0c0-0.467%2C0.018-1.221-0.276-1.873l0%2C0c-0.343-0.753-0.671-1.203-0.965-1.274l0%2C0%20%20C11.604%2C0.25%2C11.46%2C0.455%2C11.411%2C0.85l0%2C0c-0.104%2C0.553-0.134%2C1.252-0.134%2C1.611l0%2C0c0%2C1.272%2C0.25%2C2.952%2C0.743%2C4.684l0%2C0%20%20c0.093-0.269%2C0.174-0.526%2C0.24-0.768l0%2C0c0.101-0.38%2C0.743-2.9%2C0.743-2.9l0%2C0c0%2C0-0.162%2C3.354-0.388%2C4.371l0%2C0%20%20c-0.049%2C0.215-0.103%2C0.427-0.158%2C0.644l0%2C0c0.812%2C2.268%2C2.121%2C4.292%2C3.68%2C5.75l0%2C0c0.615%2C0.575%2C1.393%2C1.038%2C2.128%2C1.461l0%2C0%20%20c1.605-0.229%2C3.084-0.338%2C4.318-0.324l0%2C0c1.637%2C0.021%2C2.838%2C0.265%2C3.324%2C0.743l0%2C0c0.237%2C0.232%2C0.335%2C0.514%2C0.364%2C0.83l0%2C0%20%20c0.007%2C0.122-0.053%2C0.41-0.069%2C0.482l0%2C0c0.018-0.088%2C0.018-0.519-1.298-0.938l0%2C0c-1.033-0.33-2.971-0.32-5.295-0.073l0%2C0%20%20c2.688%2C1.315%2C5.308%2C1.969%2C6.138%2C1.577l0%2C0c0.203-0.1%2C0.448-0.437%2C0.448-0.437l0%2C0c0%2C0-0.146%2C0.665-0.252%2C0.831l0%2C0%20%20c-0.134%2C0.18-0.396%2C0.376-0.646%2C0.44l0%2C0c-1.312%2C0.351-4.722-0.459-7.695-2.158l0%2C0c-3.322%2C0.489-6.972%2C1.394-9.896%2C2.354l0%2C0%20%20c-2.874%2C5.036-5.036%2C7.35-6.793%2C6.47l0%2C0l-0.646-0.325c-0.263-0.149-0.303-0.516-0.242-0.813l0%2C0%20%20c0.205-1.003%2C1.462-2.513%2C3.988-4.021l0%2C0c0.272-0.165%2C1.483-0.805%2C1.483-0.805l0%2C0c0%2C0-0.896%2C0.868-1.106%2C1.038l0%2C0%20%20c-2.016%2C1.652-3.504%2C3.73-3.467%2C4.536l0%2C0l0.007%2C0.069C2.643%2C24.936%2C5.21%2C21.45%2C8.512%2C14.989%20M9.559%2C15.525%20%20c-0.551%2C1.038-1.09%2C2.001-1.588%2C2.886l0%2C0c2.752-1.153%2C5.715-1.892%2C8.535-2.416l0%2C0c-0.379-0.262-0.746-0.539-1.093-0.832l0%2C0%20%20c-1.555-1.313-2.737-2.955-3.596-4.681l0%2C0C11.273%2C11.948%2C10.626%2C13.507%2C9.559%2C15.525%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-pdfa { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2033%2033%22%20height%3D%2233px%22%20width%3D%2233px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.875%2018.648L11.9617%2018.4783C12.7401%2016.954%2013.6102%2015.2503%2014.312%2013.541L14.6%2012.841C13.65%209.225%2013.08%206.322%2013.589%204.445C13.726%203.956%2014.293%203.659%2014.899%203.659L15.268%203.664H15.336C16.166%203.651%2016.556%204.706%2016.6%205.117C16.673%205.8%2016.357%206.956%2016.357%206.956L16.3571%206.87946C16.358%206.40944%2016.3594%205.70047%2016.081%205.083C15.738%204.33%2015.41%203.879%2015.116%203.808C14.968%203.907%2014.824%204.112%2014.774%204.507C14.671%205.06%2014.641%205.759%2014.641%206.119C14.641%207.391%2014.891%209.071%2015.384%2010.802C15.477%2010.534%2015.558%2010.276%2015.624%2010.035C15.725%209.655%2016.367%207.134%2016.367%207.134C16.367%207.134%2016.205%2010.489%2015.979%2011.505C15.931%2011.72%2015.877%2011.932%2015.821%2012.149C16.633%2014.417%2017.942%2016.441%2019.501%2017.899C19.9467%2018.3157%2020.4779%2018.6735%2021.0164%2019H29C30.1046%2019%2031%2019.8954%2031%2021V29C31%2030.1046%2030.1046%2031%2029%2031H17C15.8954%2031%2015%2030.1046%2015%2029V21.5492C13.6156%2021.9019%2012.2807%2022.2896%2011.07%2022.687C8.19599%2027.724%206.03499%2030.038%204.27699%2029.158L3.62999%2028.833C3.36699%2028.683%203.32699%2028.317%203.38799%2028.02C3.59299%2027.017%204.84999%2025.507%207.37599%2023.999C7.64799%2023.834%208.85899%2023.194%208.85899%2023.194C8.85899%2023.194%207.96299%2024.062%207.75299%2024.232C5.73699%2025.884%204.24899%2027.962%204.28599%2028.768L4.29299%2028.837C6.00499%2028.594%208.57299%2025.109%2011.875%2018.648ZM18.775%2018.822C18.8461%2018.882%2018.918%2018.9413%2018.9906%2019H17C15.9681%2019%2015.1187%2019.7815%2015.0114%2020.785C13.7648%2021.146%2012.529%2021.5689%2011.333%2022.07C11.831%2021.185%2012.37%2020.222%2012.921%2019.184C13.989%2017.166%2014.636%2015.607%2015.18%2014.141C16.038%2015.867%2017.221%2017.508%2018.775%2018.822ZM21.5553%2027.3521H24.4447L24.9995%2029H26.7518L23.7581%2021.002H22.231L19.2537%2029H21.006L21.5553%2027.3521ZM23.9998%2026.0172H22.0002L22.9945%2023.0234L23.9998%2026.0172Z%22%20class%3D%22cls-1%22%2F%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-pptx { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2265%22%20height%3D%2265%22%20viewBox%3D%2219.951%2032.432%2065.000002%2065.000003%22%20xml%3Aspace%3D%22preserve%22%20%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M%2051.31066%2C44.356609%20C%2047.702785%2C44.433229%2043.9488%2C45.107%2040.5548%2C44.9445%20c%20-0.149%2C13.35%20-0.123719%2C26.7115%20-0.01172%2C40.0625%202.476001%2C0.199%204.9625%2C0.412%207.4375%2C0.625%20-0.011%2C-4.888%206.72e-4%2C-9.776062%200.01367%2C-14.664062%203.088%2C0.100999%206.336828%2C0.300562%209.173828%2C-1.148438%207.988%2C-3.913%209.413391%2C-15.938562%204.025391%2C-22.476562%20-2.8125%2C-2.544001%20-6.274937%2C-3.062954%20-9.882812%2C-2.986329%20z%20m%20-0.416016%2C7.244141%20c%201.641035%2C0.04387%203.222344%2C0.409844%204.261719%2C1.855469%201.425%2C2.45%201.350109%2C5.676172%200.162109%2C8.201172%20-1.425%2C2.575%20-4.650672%2C2.325%20-7.138672%2C2.625%20-0.262%2C-4.188%20-0.236218%2C-8.377172%20-0.199219%2C-12.576172%200.923626%2C-0.04237%201.929442%2C-0.131789%202.914063%2C-0.105469%20z%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-potx { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-potx%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22potx%22%20clip-path%3D%22url(%23clip-potx)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cpath%20id%3D%22Path_25%22%20data-name%3D%22Path%2025%22%20d%3D%22M412.988%2C119c-1.658.033-3.382.327-4.94.257-.068%2C5.822-.057%2C11.646%2C0%2C17.467%2C1.136.087%2C2.279.18%2C3.415.273%2C0-2.132%2C0-4.263.006-6.395a8.88%2C8.88%2C0%2C0%2C0%2C4.213-.5c3.669-1.707%2C4.323-6.95%2C1.85-9.8a6.428%2C6.428%2C0%2C0%2C0-4.538-1.3Zm-.192%2C3.159a2.353%2C2.353%2C0%2C0%2C1%2C1.956.809%2C3.776%2C3.776%2C0%2C0%2C1%2C.075%2C3.576c-.655%2C1.124-2.136%2C1.014-3.278%2C1.145-.121-1.826-.108-3.652-.093-5.484C411.881%2C122.189%2C412.343%2C122.15%2C412.8%2C122.162Z%22%20transform%3D%22translate(-404%20-117)%22%20class%3D%22cls-1%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-odp { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%20-54.11%20193.63%20193.63%22%20height%3D%22193.63px%22%20width%3D%22193.63px%22%20y%3D%220px%22%20x%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M193.16%2C5.615V5.609c-0.334-0.173-0.671-0.334-1.005-0.497%20%20c-5.356-2.586-11.256-4.287-17.525-4.88c-11.083-1.049-21.673%2C1.496-30.622%2C6.678c-6.13-3.477-13.071-5.741-20.542-6.448%20%20c-10.298-0.974-20.17%2C1.16-28.697%2C5.629c-0.084%2C0.044-0.17%2C0.095-0.251%2C0.135c-0.207%2C0.162-0.347%2C0.414-0.347%2C0.697%20%20c0%2C0.492%2C0.392%2C0.89%2C0.889%2C0.89c0.046%2C0%2C0.091-0.007%2C0.139-0.017c0.021-0.002%2C0.042-0.011%2C0.061-0.015%20%20c4.586-0.848%2C9.368-1.088%2C14.243-0.627c13.684%2C1.293%2C25.609%2C5.521%2C33.975%2C15.011c0.437%2C0.455%2C0.822%2C0.427%2C1.266-0.024%20%20c10.523-12.2%2C26.662-17.021%2C44.006-15.382c0.968%2C0.094%2C1.921%2C0.213%2C2.871%2C0.355c0.33%2C0.05%2C0.836%2C0.134%2C1.133%2C0.167%20%20c0.572%2C0.063%2C0.88-0.397%2C0.88-0.891C193.629%2C6.056%2C193.485%2C5.776%2C193.16%2C5.615L193.16%2C5.615z%22%20class%3D%22cls-1%22%20%2F%3E%3Cpath%20d%3D%22M173.054%2C48.544c-0.057-0.028-0.107-0.046-0.154-0.065%20%20c-10.518-4.35-22.021-6.758-34.094-6.758c-19.293%2C0-37.154%2C6.127-51.757%2C16.524c-11.146-4.993-23.497-7.776-36.496-7.776%20%20c-18.485%2C0-35.648%2C5.617-49.895%2C15.237c-0.047%2C0.029-0.095%2C0.066-0.149%2C0.104C0.205%2C66.044%2C0%2C66.418%2C0%2C66.848%20%20c0%2C0.729%2C0.592%2C1.323%2C1.323%2C1.323c0.086%2C0%2C0.174-0.013%2C0.259-0.03c0.058-0.015%2C0.107-0.027%2C0.161-0.048%20%20c8.166-2.456%2C16.832-3.791%2C25.798-3.791c23.836%2C0%2C45.083%2C5.634%2C61.08%2C20.681c0.038%2C0.028%2C0.071%2C0.065%2C0.111%2C0.104%20%20c0.232%2C0.205%2C0.53%2C0.325%2C0.863%2C0.325c0.412%2C0%2C0.774-0.188%2C1.018-0.486c0.006%2C0.005%2C0.515-0.72%2C0.773-1.069%20%20c16.246-22.217%2C43.03-33.172%2C72.845-33.172c2.129%2C0%2C4.246%2C0.08%2C6.338%2C0.225c0.602%2C0.047%2C1.873%2C0.144%2C1.902%2C0.144%20%20c0.727%2C0%2C1.322-0.591%2C1.322-1.323C173.796%2C49.203%2C173.492%2C48.752%2C173.054%2C48.544L173.054%2C48.544z%22%20class%3D%22cls-1%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-otp { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-otp%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3Cstyle%3E.cls-1%7Bfill%3A%23aa5252%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22otp%22%20clip-path%3D%22url(%23clip-otp)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_33%22%20data-name%3D%22Path%2033%22%20d%3D%22M125.173%2C121h0c-.046-.03-.093-.059-.141-.088a6.133%2C6.133%2C0%2C0%2C0-2.467-.869%2C6.014%2C6.014%2C0%2C0%2C0-4.309%2C1.188%2C6.223%2C6.223%2C0%2C0%2C0-2.892-1.147%2C5.965%2C5.965%2C0%2C0%2C0-4.039%2C1l-.036.024a.176.176%2C0%2C0%2C0-.049.125.145.145%2C0%2C0%2C0%2C.126.158l.019%2C0a.019.019%2C0%2C0%2C0%2C.009%2C0%2C5.781%2C5.781%2C0%2C0%2C1%2C2.005-.111%2C6.41%2C6.41%2C0%2C0%2C1%2C4.782%2C2.669c.06.081.115.076.178%2C0a6.288%2C6.288%2C0%2C0%2C1%2C6.194-2.735c.136.017.27.038.4.064.047.009.119.024.161.03.08.011.123-.071.123-.159A.155.155%2C0%2C0%2C0%2C125.173%2C121Z%22%20transform%3D%22translate(-94.24%20-116)%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_34%22%20data-name%3D%22Path%2034%22%20d%3D%22M126.894%2C125.978a.175.175%2C0%2C0%2C0-.022-.011%2C11.686%2C11.686%2C0%2C0%2C0-4.905-1.082%2C11.924%2C11.924%2C0%2C0%2C0-7.444%2C2.647%2C11.725%2C11.725%2C0%2C0%2C0-5.251-1.245%2C11.884%2C11.884%2C0%2C0%2C0-7.176%2C2.441.229.229%2C0%2C0%2C0-.022.016.217.217%2C0%2C0%2C0-.073.167.2.2%2C0%2C0%2C0%2C.191.211.167.167%2C0%2C0%2C0%2C.037%2C0%2C.118.118%2C0%2C0%2C0%2C.023-.008%2C11.679%2C11.679%2C0%2C0%2C1%2C3.71-.608c3.429%2C0%2C6.486.9%2C8.787%2C3.315a.093.093%2C0%2C0%2C1%2C.016.016.172.172%2C0%2C0%2C0%2C.123.052.18.18%2C0%2C0%2C0%2C.147-.078s.075-.115.111-.171a12.1%2C12.1%2C0%2C0%2C1%2C10.479-5.315c.306%2C0%2C.611.014.912.037l.273.022a.2.2%2C0%2C0%2C0%2C.191-.211A.211.211%2C0%2C0%2C0%2C126.894%2C125.978Z%22%20transform%3D%22translate(-100%20-115.885)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} .navbar i.icon.icon-undo { width: 22px; height: 22px; diff --git a/apps/presentationeditor/mobile/resources/less/app-ios.less b/apps/presentationeditor/mobile/resources/less/app-ios.less index fe39acaf8..da419eaa6 100644 --- a/apps/presentationeditor/mobile/resources/less/app-ios.less +++ b/apps/presentationeditor/mobile/resources/less/app-ios.less @@ -75,6 +75,10 @@ input, textarea { @import url('ios/_search.less'); @import url('ios/_icons.less'); +.label-switch input[type="checkbox"]:checked + .checkbox { + background: @themeColor; +} + // Top offset #editor_sdk { diff --git a/apps/presentationeditor/mobile/resources/less/ios/_icons.less b/apps/presentationeditor/mobile/resources/less/ios/_icons.less index 8eaaed2c7..1fe7bafa3 100644 --- a/apps/presentationeditor/mobile/resources/less/ios/_icons.less +++ b/apps/presentationeditor/mobile/resources/less/ios/_icons.less @@ -43,7 +43,17 @@ i.icon { &.icon-download { width: 22px; height: 28px; - .encoded-svg-background(''); + .encoded-svg-background(''); + } + &.icon-print { + width: 22px; + height: 28px; + .encoded-svg-background(''); + } + &.icon-spellcheck { + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-info { width: 22px; @@ -363,14 +373,29 @@ i.icon { height: 30px; .encoded-svg-background(''); } + &.icon-format-pdfa { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-pptx { width: 30px; height: 30px; .encoded-svg-background(''); } + &.icon-format-potx { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-odp { width: 30px; height: 30px; .encoded-svg-background(''); } + &.icon-format-otp { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/resources/less/material/_icons.less b/apps/presentationeditor/mobile/resources/less/material/_icons.less index e25596a90..f0624b6a0 100644 --- a/apps/presentationeditor/mobile/resources/less/material/_icons.less +++ b/apps/presentationeditor/mobile/resources/less/material/_icons.less @@ -38,7 +38,17 @@ i.icon { &.icon-download { width: 22px; height: 28px; - .encoded-svg-background(''); + .encoded-svg-background(''); + } + &.icon-print { + width: 22px; + height: 28px; + .encoded-svg-background(''); + } + &.icon-spellcheck { + width: 22px; + height: 22px; + .encoded-svg-background(''); } &.icon-info { width: 22px; @@ -333,16 +343,31 @@ i.icon { height: 30px; .encoded-svg-background(''); } + &.icon-format-pdfa { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-pptx { width: 30px; height: 30px; .encoded-svg-background(''); } + &.icon-format-potx { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-odp { width: 30px; height: 30px; .encoded-svg-background(''); } + &.icon-format-otp { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } } // Overwrite color for toolbar diff --git a/apps/presentationeditor/sdk_dev_scripts.js b/apps/presentationeditor/sdk_dev_scripts.js index dde593636..6c7336b75 100644 --- a/apps/presentationeditor/sdk_dev_scripts.js +++ b/apps/presentationeditor/sdk_dev_scripts.js @@ -75,6 +75,7 @@ var sdk_dev_scrpipts = [ "../../../../sdkjs/common/Drawings/HatchPattern.js", "../../../../sdkjs/common/scroll.js", "../../../../sdkjs/common/wordcopypaste.js", + "../../../../sdkjs/common/intervalTree.js", "../../../../sdkjs/slide/apiDefines.js", "../../../../sdkjs/slide/themes/Themes.js", "../../../../sdkjs/cell/utils/utils.js", diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index 356ccf8df..0aaebd439 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/embed/js/ApplicationView.js b/apps/spreadsheeteditor/embed/js/ApplicationView.js index bb799b5df..bd3c1a694 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationView.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationView.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/embed/js/application.js b/apps/spreadsheeteditor/embed/js/application.js index bba314943..c42c8847f 100644 --- a/apps/spreadsheeteditor/embed/js/application.js +++ b/apps/spreadsheeteditor/embed/js/application.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app.js b/apps/spreadsheeteditor/main/app.js index fdf262dbe..e8c18af4f 100644 --- a/apps/spreadsheeteditor/main/app.js +++ b/apps/spreadsheeteditor/main/app.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/collection/EquationGroups.js b/apps/spreadsheeteditor/main/app/collection/EquationGroups.js index bb1d72f6c..57d711d2e 100644 --- a/apps/spreadsheeteditor/main/app/collection/EquationGroups.js +++ b/apps/spreadsheeteditor/main/app/collection/EquationGroups.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/collection/FormulaGroups.js b/apps/spreadsheeteditor/main/app/collection/FormulaGroups.js index 9e13dd0eb..1f82de3fd 100644 --- a/apps/spreadsheeteditor/main/app/collection/FormulaGroups.js +++ b/apps/spreadsheeteditor/main/app/collection/FormulaGroups.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/collection/ShapeGroups.js b/apps/spreadsheeteditor/main/app/collection/ShapeGroups.js index 0200e9179..98e3c6795 100644 --- a/apps/spreadsheeteditor/main/app/collection/ShapeGroups.js +++ b/apps/spreadsheeteditor/main/app/collection/ShapeGroups.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/collection/TableTemplates.js b/apps/spreadsheeteditor/main/app/collection/TableTemplates.js index 17baf16e0..64e546e15 100644 --- a/apps/spreadsheeteditor/main/app/collection/TableTemplates.js +++ b/apps/spreadsheeteditor/main/app/collection/TableTemplates.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/controller/CellEditor.js b/apps/spreadsheeteditor/main/app/controller/CellEditor.js index 6980b58c3..7404379ca 100644 --- a/apps/spreadsheeteditor/main/app/controller/CellEditor.js +++ b/apps/spreadsheeteditor/main/app/controller/CellEditor.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 780d87a22..5b5fcb140 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -182,7 +182,9 @@ define([ view.pmiAddComment.on('click', _.bind(me.onAddComment, me)); /** coauthoring end **/ view.pmiAddNamedRange.on('click', _.bind(me.onAddNamedRange, me)); - view.imgMenu.on('item:click', _.bind(me.onImgMenu, me)); + view.menuImageArrange.menu.on('item:click', _.bind(me.onImgMenu, me)); + view.menuImgRotate.menu.on('item:click', _.bind(me.onImgMenu, me)); + view.menuImageAlign.menu.on('item:click', _.bind(me.onImgMenuAlign, me)); view.menuParagraphVAlign.menu.on('item:click', _.bind(me.onParagraphVAlign, me)); view.menuParagraphDirection.menu.on('item:click', _.bind(me.onParagraphDirection, me)); view.menuParagraphBullets.menu.on('item:click', _.bind(me.onSelectNoneBullet, me)); @@ -637,6 +639,41 @@ define([ Common.NotificationCenter.trigger('edit:complete', this.documentHolder); Common.component.Analytics.trackEvent('DocumentHolder', (item.value == 'grouping') ? 'Grouping' : 'Ungrouping'); + } else if (item.options.type == 'rotate') { + var properties = new Asc.asc_CImgProperty(); + properties.asc_putRotAdd((item.value==1 ? 90 : 270) * 3.14159265358979 / 180); + this.api.asc_setGraphicObjectProps(properties); + + Common.NotificationCenter.trigger('edit:complete', this.documentHolder); + Common.component.Analytics.trackEvent('DocumentHolder', 'Rotate'); + } else if (item.options.type == 'flip') { + var properties = new Asc.asc_CImgProperty(); + if (item.value==1) + properties.asc_putFlipHInvert(true); + else + properties.asc_putFlipVInvert(true); + this.api.asc_setGraphicObjectProps(properties); + + Common.NotificationCenter.trigger('edit:complete', this.documentHolder); + Common.component.Analytics.trackEvent('DocumentHolder', 'Flip'); + } + } + }, + + onImgMenuAlign: function(menu, item) { + if (this.api) { + if (item.value>-1 && item.value < 6) { + this.api.asc_setSelectedDrawingObjectAlign(item.value); + Common.NotificationCenter.trigger('edit:complete', this.documentHolder); + Common.component.Analytics.trackEvent('DocumentHolder', 'Objects Align'); + } else if (item.value == 6) { + this.api.asc_DistributeSelectedDrawingObjectHor(); + Common.NotificationCenter.trigger('edit:complete', this.documentHolder); + Common.component.Analytics.trackEvent('DocumentHolder', 'Distribute'); + } else if (item.value == 7){ + this.api.asc_DistributeSelectedDrawingObjectVer(); + Common.NotificationCenter.trigger('edit:complete', this.documentHolder); + Common.component.Analytics.trackEvent('DocumentHolder', 'Distribute'); } } }, @@ -1461,8 +1498,15 @@ define([ } } + var cangroup = this.api.asc_canGroupGraphicsObjects(); documentHolder.mnuUnGroupImg.setDisabled(isObjLocked || !this.api.asc_canUnGroupGraphicsObjects()); - documentHolder.mnuGroupImg.setDisabled(isObjLocked || !this.api.asc_canGroupGraphicsObjects()); + documentHolder.mnuGroupImg.setDisabled(isObjLocked || !cangroup); + documentHolder.menuImageAlign.setDisabled(isObjLocked || !cangroup); + + var objcount = this.api.asc_getSelectedDrawingObjectsCount(); + documentHolder.menuImageAlign.menu.items[7].setDisabled(objcount<3); + documentHolder.menuImageAlign.menu.items[8].setDisabled(objcount<3); + documentHolder.mnuShapeAdvanced.setVisible(isshapemenu && !isimagemenu && !ischartmenu); documentHolder.mnuShapeAdvanced.setDisabled(isObjLocked); documentHolder.mnuChartEdit.setVisible(ischartmenu && !isimagemenu && !isshapemenu && has_chartprops); @@ -1478,10 +1522,10 @@ define([ var pluginGuid = (documentHolder.mnuImgAdvanced.imageInfo) ? documentHolder.mnuImgAdvanced.imageInfo.asc_getPluginGuid() : null; documentHolder.menuImgReplace.setVisible(isimageonly && (pluginGuid===null || pluginGuid===undefined)); documentHolder.menuImgReplace.setDisabled(isObjLocked || pluginGuid===null); - documentHolder.mnuBringToFront.setDisabled(isObjLocked); - documentHolder.mnuSendToBack.setDisabled(isObjLocked); - documentHolder.mnuBringForward.setDisabled(isObjLocked); - documentHolder.mnuSendBackward.setDisabled(isObjLocked); + documentHolder.menuImageArrange.setDisabled(isObjLocked); + + documentHolder.menuImgRotate.setVisible(!ischartmenu && (pluginGuid===null || pluginGuid===undefined)); + documentHolder.menuImgRotate.setDisabled(isObjLocked); var isInSign = !!signGuid; documentHolder.menuSignatureEditSign.setVisible(isInSign); diff --git a/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js b/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js index 12c54bdd8..941b410ae 100644 --- a/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js +++ b/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index 8af6b2651..d2eb8531c 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -154,9 +154,10 @@ define([ this.api.asc_registerCallback('asc_onAddComments', _.bind(this.onApiAddComments, this)); var comments = this.getApplication().getController('Common.Controllers.Comments').groupCollection; for (var name in comments) { - var collection = comments[name]; + var collection = comments[name], + resolved = Common.Utils.InternalSettings.get("sse-settings-resolvedcomment"); for (var i = 0; i < collection.length; ++i) { - if (collection.at(i).get('userid') !== this.mode.user.id) { + if (collection.at(i).get('userid') !== this.mode.user.id && (resolved || !collection.at(i).get('resolved'))) { this.leftMenu.markCoauthOptions('comments', true); break; } @@ -577,7 +578,7 @@ define([ } if (show) { - var mode = this.mode.isEdit ? (action || undefined) : 'no-replace'; + var mode = this.mode.isEdit && !this.viewmode ? (action || undefined) : 'no-replace'; if (this.dlgSearch.isVisible()) { this.dlgSearch.setMode(mode); @@ -633,6 +634,13 @@ define([ } }, + setPreviewMode: function(mode) { + if (this.viewmode === mode) return; + this.viewmode = mode; + + this.dlgSearch && this.dlgSearch.setMode(this.viewmode ? 'no-replace' : 'search'); + }, + onApiServerDisconnect: function(enableDownload) { this.mode.isEdit = false; this.leftMenu.close(); @@ -656,13 +664,15 @@ define([ }, onApiAddComment: function(id, data) { - if (data && data.asc_getUserId() !== this.mode.user.id) + var resolved = Common.Utils.InternalSettings.get("sse-settings-resolvedcomment"); + if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved())) this.leftMenu.markCoauthOptions('comments'); }, onApiAddComments: function(data) { + var resolved = Common.Utils.InternalSettings.get("sse-settings-resolvedcomment"); for (var i = 0; i < data.length; ++i) { - if (data[i].asc_getUserId() !== this.mode.user.id) { + if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved())) { this.leftMenu.markCoauthOptions('comments'); break; } diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 5df0732da..b3de989ba 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -74,7 +74,6 @@ define([ toolbar: '#viewport #toolbar', leftMenu: '#viewport #left-menu, #viewport #id-toolbar-full-placeholder-btn-settings, #viewport #id-toolbar-short-placeholder-btn-settings', rightMenu: '#viewport #right-menu', - header: '#viewport #header', statusBar: '#statusbar' }; @@ -231,6 +230,15 @@ define([ event.dataTransfer.dropEffect ="none"; return false; } + }).on('dragstart', function(e) { + var event = e.originalEvent; + if (event.target ) { + var target = $(event.target); + if (target.closest('.combobox').length>0 || target.closest('.dropdown-menu').length>0 || + target.closest('.ribtab').length>0 || target.closest('.combo-dataview').length>0) { + event.preventDefault(); + } + } }); Common.NotificationCenter.on({ @@ -421,7 +429,9 @@ define([ Asc.c_oAscFileType.ODS, Asc.c_oAscFileType.CSV, Asc.c_oAscFileType.PDF, - Asc.c_oAscFileType.PDFA + Asc.c_oAscFileType.PDFA, + Asc.c_oAscFileType.XLTX, + Asc.c_oAscFileType.OTS ]; if ( !_format || _supported.indexOf(_format) < 0 ) @@ -826,7 +836,6 @@ define([ value = (value!==null) ? parseInt(value) : 0; var now = (new Date).getTime(); if (now - value > 86400000) { - Common.localStorage.setItem("sse-license-warning", now); Common.UI.info({ width: 500, title: this.textNoLicenseTitle, @@ -834,6 +843,7 @@ define([ buttons: buttons, primary: primary, callback: function(btn) { + Common.localStorage.setItem("sse-license-warning", now); if (btn == 'buynow') window.open('https://www.onlyoffice.com', "_blank"); else if (btn == 'contact') @@ -917,6 +927,10 @@ define([ this.appOptions.canBranding = (licType === Asc.c_oLicenseResult.Success) && (typeof this.editorConfig.customization == 'object'); if (this.appOptions.canBranding) this.headerView.setBranding(this.editorConfig.customization); + else if (typeof this.editorConfig.customization == 'object') { + this.editorConfig.customization.compactHeader = this.editorConfig.customization.toolbarBreakTabs = + this.editorConfig.customization.toolbarHideFileName = false; + } this.appOptions.canRename && this.headerView.setCanRename(true); } else @@ -1061,7 +1075,6 @@ define([ if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram) { var options = {}; - JSON.parse(Common.localStorage.getItem('sse-hidden-title')) && (options.title = true); JSON.parse(Common.localStorage.getItem('sse-hidden-formula')) && (options.formula = true); application.getController('Toolbar').hideElements(options); } else @@ -1344,6 +1357,14 @@ define([ config.msg = (this.appOptions.isDesktopApp && this.appOptions.isOffline) ? this.errorEditingSaveas : this.errorEditingDownloadas; break; + case Asc.c_oAscError.ID.CannotChangeFormulaArray: + config.msg = this.errorChangeArray; + break; + + case Asc.c_oAscError.ID.MultiCellsInTablesFormulaArray: + config.msg = this.errorMultiCellFormula; + break; + default: config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id); break; @@ -1713,7 +1734,7 @@ define([ store.add({ imageUrl : shape.Image, data : {shapeType: shape.Type}, - tip : me.textShape + ' ' + (idx+1), + tip : me['txtShape_' + shape.Type] || (me.textShape + ' ' + (idx+1)), allowSelected : true, selected: false }); @@ -2056,7 +2077,7 @@ define([ var variationsArr = [], pluginVisible = false; item.variations.forEach(function(itemVar){ - var visible = (isEdit || itemVar.isViewer && (itemVar.isDisplayedInViewer!==false)) && _.contains(itemVar.EditorsSupport, 'cell'); + var visible = (isEdit || itemVar.isViewer && (itemVar.isDisplayedInViewer!==false)) && _.contains(itemVar.EditorsSupport, 'cell') && !itemVar.isSystem; if ( visible ) pluginVisible = true; if ( item.isUICustomizer ) { @@ -2294,7 +2315,180 @@ define([ textLicencePaidFeature: 'The feature you are trying to use is available for additional payment.
    If you need it, please contact Sales Department', scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.', errorEditingSaveas: 'An error occurred during the work with the document.
    Use the \'Save as...\' option to save the file backup copy to your computer hard drive.', - errorEditingDownloadas: 'An error occurred during the work with the document.
    Use the \'Download as...\' option to save the file backup copy to your computer hard drive.' + errorEditingDownloadas: 'An error occurred during the work with the document.
    Use the \'Download as...\' option to save the file backup copy to your computer hard drive.', + txtShape_textRect: 'Text Box', + txtShape_rect: 'Rectangle', + txtShape_ellipse: 'Ellipse', + txtShape_triangle: 'Triangle', + txtShape_rtTriangle: 'Right Triangle', + txtShape_parallelogram: 'Parallelogram', + txtShape_trapezoid: 'Trapezoid', + txtShape_diamond: 'Diamond', + txtShape_pentagon: 'Pentagon', + txtShape_hexagon: 'Hexagon', + txtShape_heptagon: 'Heptagon', + txtShape_octagon: 'Octagon', + txtShape_decagon: 'Decagon', + txtShape_dodecagon: 'Dodecagon', + txtShape_pie: 'Pie', + txtShape_chord: 'Chord', + txtShape_teardrop: 'Teardrop', + txtShape_frame: 'Frame', + txtShape_halfFrame: 'Half Frame', + txtShape_corner: 'Corner', + txtShape_diagStripe: 'Diagonal Stripe', + txtShape_plus: 'Plus', + txtShape_plaque: 'Sign', + txtShape_can: 'Can', + txtShape_cube: 'Cube', + txtShape_bevel: 'Bevel', + txtShape_donut: 'Donut', + txtShape_noSmoking: '"No" Symbol', + txtShape_blockArc: 'Block Arc', + txtShape_foldedCorner: 'Folded Corner', + txtShape_smileyFace: 'Smiley Face', + txtShape_heart: 'Heart', + txtShape_lightningBolt: 'Lightning Bolt', + txtShape_sun: 'Sun', + txtShape_moon: 'Moon', + txtShape_cloud: 'Cloud', + txtShape_arc: 'Arc', + txtShape_bracePair: 'Double Brace', + txtShape_leftBracket: 'Left Bracket', + txtShape_rightBracket: 'Right Bracket', + txtShape_leftBrace: 'Left Brace', + txtShape_rightBrace: 'Right Brace', + txtShape_rightArrow: 'Right Arrow', + txtShape_leftArrow: 'Left Arrow', + txtShape_upArrow: 'Up Arrow', + txtShape_downArrow: 'Down Arrow', + txtShape_leftRightArrow: 'Left Right Arrow', + txtShape_upDownArrow: 'Up Down Arrow', + txtShape_quadArrow: 'Quad Arrow', + txtShape_leftRightUpArrow: 'Left Right Up Arrow', + txtShape_bentArrow: 'Bent Arrow', + txtShape_uturnArrow: 'U-Turn Arrow', + txtShape_leftUpArrow: 'Left Up Arrow', + txtShape_bentUpArrow: 'Bent Up Arrow', + txtShape_curvedRightArrow: 'Curved Right Arrow', + txtShape_curvedLeftArrow: 'Curved Left Arrow', + txtShape_curvedUpArrow: 'Curved Up Arrow', + txtShape_curvedDownArrow: 'Curved Down Arrow', + txtShape_stripedRightArrow: 'Striped Right Arrow', + txtShape_notchedRightArrow: 'Notched Right Arrow', + txtShape_homePlate: 'Pentagon', + txtShape_chevron: 'Chevron', + txtShape_rightArrowCallout: 'Right Arrow Callout', + txtShape_downArrowCallout: 'Down Arrow Callout', + txtShape_leftArrowCallout: 'Left Arrow Callout', + txtShape_upArrowCallout: 'Up Arrow Callout', + txtShape_leftRightArrowCallout: 'Left Right Arrow Callout', + txtShape_quadArrowCallout: 'Quad Arrow Callout', + txtShape_circularArrow: 'Circular Arrow', + txtShape_mathPlus: 'Plus', + txtShape_mathMinus: 'Minus', + txtShape_mathMultiply: 'Multiply', + txtShape_mathDivide: 'Division', + txtShape_mathEqual: 'Equal', + txtShape_mathNotEqual: 'Not Equal', + txtShape_flowChartProcess: 'Flowchart: Process', + txtShape_flowChartAlternateProcess: 'Flowchart: Alternate Process', + txtShape_flowChartDecision: 'Flowchart: Decision', + txtShape_flowChartInputOutput: 'Flowchart: Data', + txtShape_flowChartPredefinedProcess: 'Flowchart: Predefined Process', + txtShape_flowChartInternalStorage: 'Flowchart: Internal Storage', + txtShape_flowChartDocument: 'Flowchart: Document', + txtShape_flowChartMultidocument: 'Flowchart: Multidocument ', + txtShape_flowChartTerminator: 'Flowchart: Terminator', + txtShape_flowChartPreparation: 'Flowchart: Preparation', + txtShape_flowChartManualInput: 'Flowchart: Manual Input', + txtShape_flowChartManualOperation: 'Flowchart: Manual Operation', + txtShape_flowChartConnector: 'Flowchart: Connector', + txtShape_flowChartOffpageConnector: 'Flowchart: Off-page Connector', + txtShape_flowChartPunchedCard: 'Flowchart: Card', + txtShape_flowChartPunchedTape: 'Flowchart: Punched Tape', + txtShape_flowChartSummingJunction: 'Flowchart: Summing Junction', + txtShape_flowChartOr: 'Flowchart: Or', + txtShape_flowChartCollate: 'Flowchart: Collate', + txtShape_flowChartSort: 'Flowchart: Sort', + txtShape_flowChartExtract: 'Flowchart: Extract', + txtShape_flowChartMerge: 'Flowchart: Merge', + txtShape_flowChartOnlineStorage: 'Flowchart: Stored Data', + txtShape_flowChartDelay: 'Flowchart: Delay', + txtShape_flowChartMagneticTape: 'Flowchart: Sequential Access Storage', + txtShape_flowChartMagneticDisk: 'Flowchart: Magnetic Disk', + txtShape_flowChartMagneticDrum: 'Flowchart: Direct Access Storage', + txtShape_flowChartDisplay: 'Flowchart: Display', + txtShape_irregularSeal1: 'Explosion 1', + txtShape_irregularSeal2: 'Explosion 2', + txtShape_star4: '4-Point Star', + txtShape_star5: '5-Point Star', + txtShape_star6: '6-Point Star', + txtShape_star7: '7-Point Star', + txtShape_star8: '8-Point Star', + txtShape_star10: '10-Point Star', + txtShape_star12: '12-Point Star', + txtShape_star16: '16-Point Star', + txtShape_star24: '24-Point Star', + txtShape_star32: '32-Point Star', + txtShape_ribbon2: 'Up Ribbon', + txtShape_ribbon: 'Down Ribbon', + txtShape_ellipseRibbon2: 'Curved Up Ribbon', + txtShape_ellipseRibbon: 'Curved Down Ribbon', + txtShape_verticalScroll: 'Vertical Scroll', + txtShape_horizontalScroll: 'Horizontal Scroll', + txtShape_wave: 'Wave', + txtShape_doubleWave: 'Double Wave', + txtShape_wedgeRectCallout: 'Rectangular Callout', + txtShape_wedgeRoundRectCallout: 'Rounded Rectangular Callout', + txtShape_wedgeEllipseCallout: 'Oval Callout', + txtShape_cloudCallout: 'Cloud Callout', + txtShape_borderCallout1: 'Line Callout 1', + txtShape_borderCallout2: 'Line Callout 2', + txtShape_borderCallout3: 'Line Callout 3', + txtShape_accentCallout1: 'Line Callout 1 (Accent Bar)', + txtShape_accentCallout2: 'Line Callout 2 (Accent Bar)', + txtShape_accentCallout3: 'Line Callout 3 (Accent Bar)', + txtShape_callout1: 'Line Callout 1 (No Border)', + txtShape_callout2: 'Line Callout 2 (No Border)', + txtShape_callout3: 'Line Callout 3 (No Border)', + txtShape_accentBorderCallout1: 'Line Callout 1 (Border and Accent Bar)', + txtShape_accentBorderCallout2: 'Line Callout 2 (Border and Accent Bar)', + txtShape_accentBorderCallout3: 'Line Callout 3 (Border and Accent Bar)', + txtShape_actionButtonBackPrevious: 'Back or Previous Button', + txtShape_actionButtonForwardNext: 'Forward or Next Button', + txtShape_actionButtonBeginning: 'Beginning Button', + txtShape_actionButtonEnd: 'End Button', + txtShape_actionButtonHome: 'Home Button', + txtShape_actionButtonInformation: 'Information Button', + txtShape_actionButtonReturn: 'Return Button', + txtShape_actionButtonMovie: 'Movie Button', + txtShape_actionButtonDocument: 'Document Button', + txtShape_actionButtonSound: 'Sound Button', + txtShape_actionButtonHelp: 'Help Button', + txtShape_actionButtonBlank: 'Blank Button', + txtShape_roundRect: 'Round Corner Rectangle', + txtShape_snip1Rect: 'Snip Single Corner Rectangle', + txtShape_snip2SameRect: 'Snip Same Side Corner Rectangle', + txtShape_snip2DiagRect: 'Snip Diagonal Corner Rectangle', + txtShape_snipRoundRect: 'Snip and Round Single Corner Rectangle', + txtShape_round1Rect: 'Round Single Corner Rectangle', + txtShape_round2SameRect: 'Round Same Side Corner Rectangle', + txtShape_round2DiagRect: 'Round Diagonal Corner Rectangle', + txtShape_line: 'Line', + txtShape_lineWithArrow: 'Arrow', + txtShape_lineWithTwoArrows: 'Double Arrow', + txtShape_bentConnector5: 'Elbow Connector', + txtShape_bentConnector5WithArrow: 'Elbow Arrow Connector', + txtShape_bentConnector5WithTwoArrows: 'Elbow Double-Arrow Connector', + txtShape_curvedConnector3: 'Curved Connector', + txtShape_curvedConnector3WithArrow: 'Curved Arrow Connector', + txtShape_curvedConnector3WithTwoArrows: 'Curved Double-Arrow Connector', + txtShape_spline: 'Curve', + txtShape_polyline1: 'Scribble', + txtShape_polyline2: 'Freeform', + errorChangeArray: 'You cannot change part of an array.', + errorMultiCellFormula: 'Multi-cell array formulas are not allowed in tables.' } })(), SSE.Controllers.Main || {})) }); diff --git a/apps/spreadsheeteditor/main/app/controller/PivotTable.js b/apps/spreadsheeteditor/main/app/controller/PivotTable.js index f78882bfb..f31ff7be5 100644 --- a/apps/spreadsheeteditor/main/app/controller/PivotTable.js +++ b/apps/spreadsheeteditor/main/app/controller/PivotTable.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index 878cdc93e..e6ecccd05 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -50,6 +50,7 @@ define([ this.adjPrintParams.asc_setPrintType(value); this._changedProps = null; + this._originalPageSettings = null; this.addListeners({ 'MainSettingsPrint': { @@ -114,6 +115,7 @@ define([ fillPageOptions: function(panel, props) { var opt = props.asc_getPageSetup(); + this._originalPageSettings = opt; var item = panel.cmbPaperOrientation.store.findWhere({value: opt.asc_getOrientation()}); if (item) panel.cmbPaperOrientation.setValue(item.get('value')); @@ -136,7 +138,8 @@ define([ if (item) panel.cmbPaperSize.setValue(item.get('value')); else - panel.cmbPaperSize.setValue(this.txtCustom + ' (' + w +' x ' + h + ')'); + panel.cmbPaperSize.setValue('Custom (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(w).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ' x ' + + parseFloat(Common.Utils.Metric.fnRecalcFromMM(h).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ')'); var fitwidth = opt.asc_getFitToWidth(), fitheight = opt.asc_getFitToHeight(); @@ -185,9 +188,8 @@ define([ var pagew = /^\d{3}\.?\d*/.exec(panel.cmbPaperSize.getValue()); var pageh = /\d{3}\.?\d*$/.exec(panel.cmbPaperSize.getValue()); - opt.asc_setWidth(!pagew ? undefined : parseFloat(pagew[0])); - opt.asc_setHeight(!pageh? undefined : parseFloat(pageh[0])); - + opt.asc_setWidth(pagew ? parseFloat(pagew[0]) : (this._originalPageSettings ? this._originalPageSettings.asc_getWidth() : undefined)); + opt.asc_setHeight(pageh? parseFloat(pageh[0]) : (this._originalPageSettings ? this._originalPageSettings.asc_getHeight() : undefined)); var value = panel.cmbLayout.getValue(); opt.asc_setFitToWidth(value==1 || value==2); @@ -292,8 +294,8 @@ define([ pageheight = /^\d{3}\.?\d*/.exec(panel.cmbPaperSize.getValue()); pagewidth = /\d{3}\.?\d*$/.exec(panel.cmbPaperSize.getValue()); } - pagewidth = parseFloat(pagewidth[0]); - pageheight = parseFloat(pageheight[0]); + pagewidth = pagewidth ? parseFloat(pagewidth[0]) : (this._originalPageSettings ? this._originalPageSettings.asc_getWidth() : 0); + pageheight = pageheight ? parseFloat(pageheight[0]) : (this._originalPageSettings ? this._originalPageSettings.asc_getHeight() : 0); var ml = Common.Utils.Metric.fnRecalcToMM(panel.spnMarginLeft.getNumberValue()); var mr = Common.Utils.Metric.fnRecalcToMM(panel.spnMarginRight.getNumberValue()); diff --git a/apps/spreadsheeteditor/main/app/controller/RightMenu.js b/apps/spreadsheeteditor/main/app/controller/RightMenu.js index b572a5cb5..a1b0ddf0a 100644 --- a/apps/spreadsheeteditor/main/app/controller/RightMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/RightMenu.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/controller/Statusbar.js b/apps/spreadsheeteditor/main/app/controller/Statusbar.js index d7af7b851..4efacb407 100644 --- a/apps/spreadsheeteditor/main/app/controller/Statusbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Statusbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 77958e32d..201b3c84b 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -104,7 +104,9 @@ define([ Asc.c_oAscFileType.XLSX, Asc.c_oAscFileType.ODS, Asc.c_oAscFileType.CSV, - Asc.c_oAscFileType.PDFA + Asc.c_oAscFileType.PDFA, + Asc.c_oAscFileType.XLTX, + Asc.c_oAscFileType.OTS ]; if ( !_format || _supported.indexOf(_format) < 0 ) @@ -1951,6 +1953,10 @@ define([ toolbar.btnImgGroup.menu.items[1].setDisabled(!canungroup); toolbar.lockToolbar(SSE.enumLock.cantGroup, !cangroup, { array: [toolbar.btnImgAlign]}); + var objcount = this.api.asc_getSelectedDrawingObjectsCount(); + toolbar.btnImgAlign.menu.items[7].setDisabled(objcount<3); + toolbar.btnImgAlign.menu.items[8].setDisabled(objcount<3); + if (editOptionsDisabled) return; /* read font params */ @@ -2990,18 +2996,12 @@ define([ onSetupCopyStyleButton: function () { this.modeAlwaysSetStyle = false; - var acsCopyFmtStyleState = { - kOff : 0, - kOn : 1, - kMultiple : 2 - }; - var me = this; Common.NotificationCenter.on({ 'edit:complete': function () { if (me.api && me.modeAlwaysSetStyle) { - me.api.asc_formatPainter(acsCopyFmtStyleState.kOff); + me.api.asc_formatPainter(AscCommon.c_oAscFormatPainterState.kOff); me.toolbar.btnCopyStyle.toggle(false, true); me.modeAlwaysSetStyle = false; } @@ -3012,7 +3012,7 @@ define([ if (me.api) { me.modeAlwaysSetStyle = true; me.toolbar.btnCopyStyle.toggle(true, true); - me.api.asc_formatPainter(acsCopyFmtStyleState.kMultiple); + me.api.asc_formatPainter(AscCommon.c_oAscFormatPainterState.kMultiple); } }); }, @@ -3111,15 +3111,17 @@ define([ if ( $panel ) me.toolbar.addTab(tab, $panel, 4); - // hide 'print' and 'save' buttons group and next separator - me.toolbar.btnPrint.$el.parents('.group').hide().next().hide(); + if (!(config.customization && config.customization.compactHeader)) { + // hide 'print' and 'save' buttons group and next separator + me.toolbar.btnPrint.$el.parents('.group').hide().next().hide(); - // hide 'undo' and 'redo' buttons and get container - var $box = me.toolbar.btnUndo.$el.hide().next().hide().parent(); + // hide 'undo' and 'redo' buttons and get container + var $box = me.toolbar.btnUndo.$el.hide().next().hide().parent(); - // move 'paste' button to the container instead of 'undo' and 'redo' - me.toolbar.btnPaste.$el.detach().appendTo($box); - me.toolbar.btnCopy.$el.removeClass('split'); + // move 'paste' button to the container instead of 'undo' and 'redo' + me.toolbar.btnPaste.$el.detach().appendTo($box); + me.toolbar.btnCopy.$el.removeClass('split'); + } if ( config.isDesktopApp ) { if ( config.canProtect ) { @@ -3268,10 +3270,19 @@ define([ }, onImgAlignSelect: function(menu, item) { - if (this.api) - this.api.asc_setSelectedDrawingObjectAlign(item.value); + if (this.api) { + if (item.value>-1 && item.value < 6) { + this.api.asc_setSelectedDrawingObjectAlign(item.value); + Common.component.Analytics.trackEvent('ToolBar', 'Objects Align'); + } else if (item.value == 6) { + this.api.asc_DistributeSelectedDrawingObjectHor(); + Common.component.Analytics.trackEvent('ToolBar', 'Distribute'); + } else if (item.value == 7){ + this.api.asc_DistributeSelectedDrawingObjectVer(); + Common.component.Analytics.trackEvent('ToolBar', 'Distribute'); + } + } Common.NotificationCenter.trigger('edit:complete', this.toolbar); - Common.component.Analytics.trackEvent('ToolBar', 'Objects Align'); }, onPrintAreaClick: function(menu, item) { diff --git a/apps/spreadsheeteditor/main/app/controller/Viewport.js b/apps/spreadsheeteditor/main/app/controller/Viewport.js index 3b780bbcb..f4c6a6c37 100644 --- a/apps/spreadsheeteditor/main/app/controller/Viewport.js +++ b/apps/spreadsheeteditor/main/app/controller/Viewport.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -78,10 +78,10 @@ define([ 'render:before' : function (toolbar) { var config = SSE.getController('Main').appOptions; toolbar.setExtra('right', me.header.getPanel('right', config)); - if (!config.isEdit) + if (!config.isEdit || config.customization && !!config.customization.compactHeader) toolbar.setExtra('left', me.header.getPanel('left', config)); - if ( me.appConfig && me.appConfig.isEdit && toolbar.btnCollabChanges ) + if ( me.appConfig && me.appConfig.isEdit && !(config.customization && config.customization.compactHeader) && toolbar.btnCollabChanges ) toolbar.btnCollabChanges = me.header.btnSave; }, @@ -148,7 +148,7 @@ define([ me.viewport.vlayout.getItem('toolbar').height = 41; } - if ( config.isEdit && !config.isEditDiagram && !config.isEditMailMerge ) { + if ( config.isEdit && !config.isEditDiagram && !config.isEditMailMerge && !(config.customization && config.customization.compactHeader)) { var $title = me.viewport.vlayout.getItem('title').el; $title.html(me.header.getPanel('title', config)).show(); $title.find('.extra').html(me.header.getPanel('left', config)); @@ -164,6 +164,14 @@ define([ $filemenu.css('top', _tabs_new_height + _intvars.get('document-title-height')); } + + if ( config.customization ) { + if ( config.customization.toolbarBreakTabs ) + me.viewport.vlayout.getItem('toolbar').el.addClass('style-off-tabs'); + + if ( config.customization.toolbarHideFileName ) + me.viewport.vlayout.getItem('toolbar').el.addClass('style-skip-docname'); + } }, onAppReady: function (config) { diff --git a/apps/spreadsheeteditor/main/app/model/EquationGroup.js b/apps/spreadsheeteditor/main/app/model/EquationGroup.js index c3954260e..7ac7921b7 100644 --- a/apps/spreadsheeteditor/main/app/model/EquationGroup.js +++ b/apps/spreadsheeteditor/main/app/model/EquationGroup.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/model/Formula.js b/apps/spreadsheeteditor/main/app/model/Formula.js index d287f230a..97bd7309a 100644 --- a/apps/spreadsheeteditor/main/app/model/Formula.js +++ b/apps/spreadsheeteditor/main/app/model/Formula.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/model/ShapeGroup.js b/apps/spreadsheeteditor/main/app/model/ShapeGroup.js index 281e2d6d5..37af6b5df 100644 --- a/apps/spreadsheeteditor/main/app/model/ShapeGroup.js +++ b/apps/spreadsheeteditor/main/app/model/ShapeGroup.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/model/TableTemplate.js b/apps/spreadsheeteditor/main/app/model/TableTemplate.js index 29c35e056..536d4dbe7 100644 --- a/apps/spreadsheeteditor/main/app/model/TableTemplate.js +++ b/apps/spreadsheeteditor/main/app/model/TableTemplate.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/main/app/template/CellSettings.template b/apps/spreadsheeteditor/main/app/template/CellSettings.template index 2a0b70388..f02f4417d 100644 --- a/apps/spreadsheeteditor/main/app/template/CellSettings.template +++ b/apps/spreadsheeteditor/main/app/template/CellSettings.template @@ -44,5 +44,21 @@
    + + +
    + + + + + + + + + + +
    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/template/LeftMenu.template b/apps/spreadsheeteditor/main/app/template/LeftMenu.template index 70f94a475..95335821c 100644 --- a/apps/spreadsheeteditor/main/app/template/LeftMenu.template +++ b/apps/spreadsheeteditor/main/app/template/LeftMenu.template @@ -14,6 +14,6 @@ diff --git a/apps/spreadsheeteditor/mobile/app/template/Settings.template b/apps/spreadsheeteditor/mobile/app/template/Settings.template index 3151b3e9a..7c126378b 100644 --- a/apps/spreadsheeteditor/mobile/app/template/Settings.template +++ b/apps/spreadsheeteditor/mobile/app/template/Settings.template @@ -37,6 +37,18 @@ +
  • + +
    +
    + +
    +
    +
    <%= scope.textPrint %>
    +
    +
    +
    +
  • @@ -184,6 +196,18 @@
  • +
  • + +
    +
    + +
    +
    +
    PDF/A
    +
    +
    +
    +
  • @@ -208,6 +232,30 @@
  • +
  • + +
    +
    + +
    +
    +
    XLTX
    +
    +
    +
    +
  • +
  • + +
    +
    + +
    +
    +
    OTS
    +
    +
    +
    +
  • diff --git a/apps/spreadsheeteditor/mobile/app/view/CellEditor.js b/apps/spreadsheeteditor/mobile/app/view/CellEditor.js index a37db9e91..b35581619 100644 --- a/apps/spreadsheeteditor/mobile/app/view/CellEditor.js +++ b/apps/spreadsheeteditor/mobile/app/view/CellEditor.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/DocumentHolder.js b/apps/spreadsheeteditor/mobile/app/view/DocumentHolder.js index a93aa601a..7e6b52636 100644 --- a/apps/spreadsheeteditor/mobile/app/view/DocumentHolder.js +++ b/apps/spreadsheeteditor/mobile/app/view/DocumentHolder.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/Editor.js b/apps/spreadsheeteditor/mobile/app/view/Editor.js index 5848e6401..757361899 100644 --- a/apps/spreadsheeteditor/mobile/app/view/Editor.js +++ b/apps/spreadsheeteditor/mobile/app/view/Editor.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/Search.js b/apps/spreadsheeteditor/mobile/app/view/Search.js index 3f03ce13b..b10a29840 100644 --- a/apps/spreadsheeteditor/mobile/app/view/Search.js +++ b/apps/spreadsheeteditor/mobile/app/view/Search.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/Settings.js b/apps/spreadsheeteditor/mobile/app/view/Settings.js index 21d8ab3a4..22d373df6 100644 --- a/apps/spreadsheeteditor/mobile/app/view/Settings.js +++ b/apps/spreadsheeteditor/mobile/app/view/Settings.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under @@ -53,7 +53,8 @@ define([ canEdit = false, canDownload = false, canAbout = true, - canHelp = true; + canHelp = true, + canPrint = false; return { // el: '.view-main', @@ -91,8 +92,11 @@ define([ , saveas: { xlsx: Asc.c_oAscFileType.XLSX, pdf: Asc.c_oAscFileType.PDF, + pdfa: Asc.c_oAscFileType.PDFA, ods: Asc.c_oAscFileType.ODS, - csv: Asc.c_oAscFileType.CSV + csv: Asc.c_oAscFileType.CSV, + xltx: Asc.c_oAscFileType.XLTX, + ots: Asc.c_oAscFileType.OTS } })); @@ -103,6 +107,7 @@ define([ isEdit = mode.isEdit; canEdit = !mode.isEdit && mode.canEdit && mode.canRequestEditRights; canDownload = mode.canDownload || mode.canDownloadOrigin; + canPrint = mode.canPrint; if (mode.customization && mode.canBrandingExt) { canAbout = (mode.customization.about!==false); @@ -125,6 +130,7 @@ define([ if (!canDownload) $layout.find('#settings-download').hide(); if (!canAbout) $layout.find('#settings-about').hide(); if (!canHelp) $layout.find('#settings-help').hide(); + if (!canPrint) $layout.find('#settings-print').hide(); return $layout.html(); } @@ -213,7 +219,8 @@ define([ textAddress: 'address', textEmail: 'email', textTel: 'tel', - textPoweredBy: 'Powered by' + textPoweredBy: 'Powered by', + textPrint: 'Print' } })(), SSE.Views.Settings || {})) }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/app/view/Statusbar.js b/apps/spreadsheeteditor/mobile/app/view/Statusbar.js index c8b6e3996..933bdde4c 100644 --- a/apps/spreadsheeteditor/mobile/app/view/Statusbar.js +++ b/apps/spreadsheeteditor/mobile/app/view/Statusbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/Toolbar.js b/apps/spreadsheeteditor/mobile/app/view/Toolbar.js index 796ced2bf..1557a6999 100644 --- a/apps/spreadsheeteditor/mobile/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/mobile/app/view/Toolbar.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/add/AddChart.js b/apps/spreadsheeteditor/mobile/app/view/add/AddChart.js index 8856b7399..b017721d2 100644 --- a/apps/spreadsheeteditor/mobile/app/view/add/AddChart.js +++ b/apps/spreadsheeteditor/mobile/app/view/add/AddChart.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/add/AddFunction.js b/apps/spreadsheeteditor/mobile/app/view/add/AddFunction.js index c1fecf815..80986c686 100644 --- a/apps/spreadsheeteditor/mobile/app/view/add/AddFunction.js +++ b/apps/spreadsheeteditor/mobile/app/view/add/AddFunction.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/add/AddLink.js b/apps/spreadsheeteditor/mobile/app/view/add/AddLink.js index 1718b31cb..c451da8a9 100644 --- a/apps/spreadsheeteditor/mobile/app/view/add/AddLink.js +++ b/apps/spreadsheeteditor/mobile/app/view/add/AddLink.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/add/AddOther.js b/apps/spreadsheeteditor/mobile/app/view/add/AddOther.js index 552b91d2c..3c4fd3853 100644 --- a/apps/spreadsheeteditor/mobile/app/view/add/AddOther.js +++ b/apps/spreadsheeteditor/mobile/app/view/add/AddOther.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/add/AddShape.js b/apps/spreadsheeteditor/mobile/app/view/add/AddShape.js index 73ddf18e5..e5808e9c0 100644 --- a/apps/spreadsheeteditor/mobile/app/view/add/AddShape.js +++ b/apps/spreadsheeteditor/mobile/app/view/add/AddShape.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/edit/EditCell.js b/apps/spreadsheeteditor/mobile/app/view/edit/EditCell.js index 9cb4ddd5f..23f1f5fe4 100644 --- a/apps/spreadsheeteditor/mobile/app/view/edit/EditCell.js +++ b/apps/spreadsheeteditor/mobile/app/view/edit/EditCell.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/edit/EditChart.js b/apps/spreadsheeteditor/mobile/app/view/edit/EditChart.js index c2f75c29f..44394ccda 100644 --- a/apps/spreadsheeteditor/mobile/app/view/edit/EditChart.js +++ b/apps/spreadsheeteditor/mobile/app/view/edit/EditChart.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/edit/EditHyperlink.js b/apps/spreadsheeteditor/mobile/app/view/edit/EditHyperlink.js index 921ad4c2d..df45697ce 100644 --- a/apps/spreadsheeteditor/mobile/app/view/edit/EditHyperlink.js +++ b/apps/spreadsheeteditor/mobile/app/view/edit/EditHyperlink.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/edit/EditImage.js b/apps/spreadsheeteditor/mobile/app/view/edit/EditImage.js index e1a7609f8..9ac2bd999 100644 --- a/apps/spreadsheeteditor/mobile/app/view/edit/EditImage.js +++ b/apps/spreadsheeteditor/mobile/app/view/edit/EditImage.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/edit/EditShape.js b/apps/spreadsheeteditor/mobile/app/view/edit/EditShape.js index 87aa92468..2252f356f 100644 --- a/apps/spreadsheeteditor/mobile/app/view/edit/EditShape.js +++ b/apps/spreadsheeteditor/mobile/app/view/edit/EditShape.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/app/view/edit/EditText.js b/apps/spreadsheeteditor/mobile/app/view/edit/EditText.js index 7fde20107..a06ded6f2 100644 --- a/apps/spreadsheeteditor/mobile/app/view/edit/EditText.js +++ b/apps/spreadsheeteditor/mobile/app/view/edit/EditText.js @@ -1,6 +1,6 @@ /* * - * (c) Copyright Ascensio System Limited 2010-2018 + * (c) Copyright Ascensio System SIA 2010-2019 * * 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) @@ -13,8 +13,8 @@ * 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. + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json new file mode 100644 index 000000000..fc172107d --- /dev/null +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -0,0 +1,508 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Стандартни цветове", + "Common.UI.ThemeColorPalette.textThemeColors": "Цветовете на темата", + "Common.Utils.Metric.txtCm": "см", + "Common.Utils.Metric.txtPt": "pt", + "SSE.Controllers.AddChart.txtDiagramTitle": "Заглавие на диаграмата", + "SSE.Controllers.AddChart.txtSeries": "серия", + "SSE.Controllers.AddChart.txtXAxis": "X ос", + "SSE.Controllers.AddChart.txtYAxis": "Y ос", + "SSE.Controllers.AddContainer.textChart": "диаграма", + "SSE.Controllers.AddContainer.textFormula": "функция", + "SSE.Controllers.AddContainer.textImage": "Изображение", + "SSE.Controllers.AddContainer.textOther": "друг", + "SSE.Controllers.AddContainer.textShape": "форма", + "SSE.Controllers.AddLink.textInvalidRange": "ГРЕШКА! Невалиден диапазон от клетки", + "SSE.Controllers.AddLink.txtNotUrl": "Това поле трябва да е URL адрес във формат „http://www.example.com“", + "SSE.Controllers.AddOther.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", + "SSE.Controllers.AddOther.txtNotUrl": "Това поле трябва да е URL адрес във формат „http://www.example.com“", + "SSE.Controllers.DocumentHolder.menuAddLink": "Добавяне на връзка", + "SSE.Controllers.DocumentHolder.menuCell": "клетка", + "SSE.Controllers.DocumentHolder.menuCopy": "копие", + "SSE.Controllers.DocumentHolder.menuCut": "Разрез", + "SSE.Controllers.DocumentHolder.menuDelete": "Изтрий", + "SSE.Controllers.DocumentHolder.menuEdit": "редактиране", + "SSE.Controllers.DocumentHolder.menuHide": "Скрий", + "SSE.Controllers.DocumentHolder.menuMerge": "сливам", + "SSE.Controllers.DocumentHolder.menuMore": "| Повече ▼", + "SSE.Controllers.DocumentHolder.menuOpenLink": "Отвори линк", + "SSE.Controllers.DocumentHolder.menuPaste": "паста", + "SSE.Controllers.DocumentHolder.menuShow": "Покажи ", + "SSE.Controllers.DocumentHolder.menuUnmerge": "Разделяне", + "SSE.Controllers.DocumentHolder.menuUnwrap": "отварям", + "SSE.Controllers.DocumentHolder.menuWrap": "обвивка", + "SSE.Controllers.DocumentHolder.sheetCancel": "Отказ", + "SSE.Controllers.DocumentHolder.warnMergeLostData": "Операцията може да унищожи данните в избраните клетки.
    Продължи?", + "SSE.Controllers.EditCell.textAuto": "Автоматичен", + "SSE.Controllers.EditCell.textFonts": "Шрифт", + "SSE.Controllers.EditCell.textPt": "pt", + "SSE.Controllers.EditChart.errorMaxRows": "ГРЕШКА! Максималният брой поредици данни за диаграма е 255.", + "SSE.Controllers.EditChart.errorStockChart": "Неправилен ред на ред. За изграждане на борсова карта поставете данните на листа в следния ред:
    цена на отваряне, максимална цена, мин. Цена, цена на затваряне.", + "SSE.Controllers.EditChart.textAuto": "Автоматичен", + "SSE.Controllers.EditChart.textBetweenTickMarks": "Между отметки с отметки", + "SSE.Controllers.EditChart.textBillions": "Милиарди", + "SSE.Controllers.EditChart.textBottom": "дъно", + "SSE.Controllers.EditChart.textCenter": "център", + "SSE.Controllers.EditChart.textCross": "Крос", + "SSE.Controllers.EditChart.textCustom": "Персонализиран", + "SSE.Controllers.EditChart.textFit": "в ширина", + "SSE.Controllers.EditChart.textFixed": "определен", + "SSE.Controllers.EditChart.textHigh": "Висок", + "SSE.Controllers.EditChart.textHorizontal": "хоризонтален", + "SSE.Controllers.EditChart.textHundredMil": "100 000 000", + "SSE.Controllers.EditChart.textHundreds": "Стотици", + "SSE.Controllers.EditChart.textHundredThousands": "100 000", + "SSE.Controllers.EditChart.textIn": "в", + "SSE.Controllers.EditChart.textInnerBottom": "Вътрешно дъно", + "SSE.Controllers.EditChart.textInnerTop": "Вътрешен връх", + "SSE.Controllers.EditChart.textLeft": "Наляво", + "SSE.Controllers.EditChart.textLeftOverlay": "Ляво наслагване", + "SSE.Controllers.EditChart.textLow": "Нисък", + "SSE.Controllers.EditChart.textManual": "наръчник", + "SSE.Controllers.EditChart.textMaxValue": "Максимална стойност", + "SSE.Controllers.EditChart.textMillions": "Милиони", + "SSE.Controllers.EditChart.textMinValue": "Минимална стойност", + "SSE.Controllers.EditChart.textNextToAxis": "До ос", + "SSE.Controllers.EditChart.textNone": "Нито един", + "SSE.Controllers.EditChart.textNoOverlay": "Няма наслагване", + "SSE.Controllers.EditChart.textOnTickMarks": "Отбелязани марки", + "SSE.Controllers.EditChart.textOut": "от", + "SSE.Controllers.EditChart.textOuterTop": "Външен връх", + "SSE.Controllers.EditChart.textOverlay": "настилка", + "SSE.Controllers.EditChart.textRight": "прав", + "SSE.Controllers.EditChart.textRightOverlay": "Право наслагване", + "SSE.Controllers.EditChart.textRotated": "въртя", + "SSE.Controllers.EditChart.textTenMillions": "10 000 000", + "SSE.Controllers.EditChart.textTenThousands": "10 000", + "SSE.Controllers.EditChart.textThousands": "Хиляди", + "SSE.Controllers.EditChart.textTop": "Отгоре", + "SSE.Controllers.EditChart.textTrillions": "Трилиони", + "SSE.Controllers.EditChart.textValue": "стойност", + "SSE.Controllers.EditContainer.textCell": "клетка", + "SSE.Controllers.EditContainer.textChart": "диаграма", + "SSE.Controllers.EditContainer.textHyperlink": "Хипервръзка", + "SSE.Controllers.EditContainer.textImage": "Изображение", + "SSE.Controllers.EditContainer.textSettings": "Настройки", + "SSE.Controllers.EditContainer.textShape": "форма", + "SSE.Controllers.EditContainer.textTable": "маса", + "SSE.Controllers.EditContainer.textText": "Текст", + "SSE.Controllers.EditHyperlink.textDefault": "Избрана област", + "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", + "SSE.Controllers.EditHyperlink.textExternalLink": "Външен линк", + "SSE.Controllers.EditHyperlink.textInternalLink": "Вътрешен диапазон от данни", + "SSE.Controllers.EditHyperlink.textInvalidRange": "Невалиден диапазон от клетки", + "SSE.Controllers.EditHyperlink.txtNotUrl": "Това поле трябва да бъде URL адрес във формат \"http://www.example.com\"", + "SSE.Controllers.Main.advCSVOptions": "Изберете Опции за CSV", + "SSE.Controllers.Main.advDRMEnterPassword": "Въведете паролата си:", + "SSE.Controllers.Main.advDRMOptions": "Защитен файл", + "SSE.Controllers.Main.advDRMPassword": "Парола", + "SSE.Controllers.Main.applyChangesTextText": "Данните се зареждат ...", + "SSE.Controllers.Main.applyChangesTitleText": "Зареждане на данни", + "SSE.Controllers.Main.closeButtonText": "Затвори файла", + "SSE.Controllers.Main.convertationTimeoutText": "Превишава се времето на изтичане на реализациите.", + "SSE.Controllers.Main.criticalErrorExtText": "Натиснете 'OK', за да се върнете към списъка с документи.", + "SSE.Controllers.Main.criticalErrorTitle": "грешка", + "SSE.Controllers.Main.defaultTitleText": "Редактор на електронни таблици ONLYOFFICE", + "SSE.Controllers.Main.downloadErrorText": "Изтеглянето се провали.", + "SSE.Controllers.Main.downloadMergeText": "Изтегля се ...", + "SSE.Controllers.Main.downloadMergeTitle": "Изтеглянето", + "SSE.Controllers.Main.downloadTextText": "Електронната таблица се изтегля ...", + "SSE.Controllers.Main.downloadTitleText": "Изтегляне на електронна таблица", + "SSE.Controllers.Main.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права.
    Моля, свържете се с администратора на сървъра за документи.", + "SSE.Controllers.Main.errorArgsRange": "Грешка във въведената формула.
    Използва се неправилен диапазон на аргумента.", + "SSE.Controllers.Main.errorAutoFilterChange": "Операцията не е разрешена, тъй като се опитва да измести клетките в таблица на работния ви лист.", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Операцията не може да бъде извършена за избраните клетки, тъй като не можете да преместите част от таблицата.
    Изберете друг диапазон от данни, така че цялата таблица да бъде изместена и опитайте отново.", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Операцията не може да бъде извършена за избрания диапазон от клетки.
    Изберете един и същ диапазон от данни, различен от съществуващия, и опитайте отново.", + "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Операцията не може да се извърши, защото областта съдържа филтрирани клетки.
    Моля, отворете филтрираните елементи и опитайте отново.", + "SSE.Controllers.Main.errorBadImageUrl": "URL адресът на изображението е неправилен", + "SSE.Controllers.Main.errorChangeArray": "Не можете да променяте част от масив.", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Документът не може да бъде редактиран в момента.", + "SSE.Controllers.Main.errorConnectToServer": "Документът не можа да бъде запазен. Моля, проверете настройките за връзка или се свържете с администратора си.
    Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа.

    Намерете повече информация за свързването на сървъра за документи тук ", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Тази команда не може да се използва с многократни селекции.
    Изберете единичен обхват и опитайте отново.", + "SSE.Controllers.Main.errorCountArg": "Грешка в въведената формула.
    Използва се неправилен брой аргументи.", + "SSE.Controllers.Main.errorCountArgExceed": "Грешка във въведената формула.
    Брой аргументи е надвишен.", + "SSE.Controllers.Main.errorCreateDefName": "Съществуващите имена на обхвати не могат да бъдат редактирани и новите не могат да бъдат създадени
    в момента, тъй като някои от тях се редактират.", + "SSE.Controllers.Main.errorDatabaseConnection": "Външна грешка.
    Грешка при свързване към база данни. Моля, свържете се с екипа за поддръжка, в случай че грешката продължава.", + "SSE.Controllers.Main.errorDataEncrypted": "Получени са криптирани промени, които не могат да бъдат дешифрирани.", + "SSE.Controllers.Main.errorDataRange": "Неправилен обхват от данни.", + "SSE.Controllers.Main.errorDefaultMessage": "Код на грешка:% 1", + "SSE.Controllers.Main.errorEditingDownloadas": "Възникна грешка по време на работата с документа.
    Използвайте опцията 'Download', за да запишете архивното копие на файла на твърдия диск на компютъра.", + "SSE.Controllers.Main.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.", + "SSE.Controllers.Main.errorFileRequest": "Външна грешка.
    Грешка в заявката за файл. Моля, свържете се с екипа за поддръжка, в случай че грешката продължава.", + "SSE.Controllers.Main.errorFileVKey": "Външна грешка.
    Неправилен ключ за защита. Моля, свържете се с екипа за поддръжка, в случай че грешката продължава.", + "SSE.Controllers.Main.errorFillRange": "Избраният диапазон от клетки не може да се запълни.
    Всички обединени клетки трябва да са с еднакъв размер", + "SSE.Controllers.Main.errorFormulaName": "Грешка във въведената формула.
    Използва се неправилно име на формула.", + "SSE.Controllers.Main.errorFormulaParsing": "Вътрешна грешка при анализиране на формулата.", + "SSE.Controllers.Main.errorFrmlWrongReferences": "Функцията се отнася за лист, който не съществува.
    Моля, проверете данните и опитайте отново.", + "SSE.Controllers.Main.errorInvalidRef": "Въведете правилно име за избора или валидна референция, към която да отидете.", + "SSE.Controllers.Main.errorKeyEncrypt": "Дескриптор на неизвестен ключ", + "SSE.Controllers.Main.errorKeyExpire": "Дескрипторът на ключовете е изтекъл", + "SSE.Controllers.Main.errorLockedAll": "Операцията не може да се извърши, тъй като листа е заключен от друг потребител.", + "SSE.Controllers.Main.errorLockedWorksheetRename": "Листът не може да бъде преименуван в момента, тъй като се преименува от друг потребител", + "SSE.Controllers.Main.errorMailMergeLoadFile": "Неуспешно зареждане", + "SSE.Controllers.Main.errorMailMergeSaveFile": "Сливането не бе успешно.", + "SSE.Controllers.Main.errorMaxPoints": "Максималният брой точки в серия на графиката е 4096.", + "SSE.Controllers.Main.errorMoveRange": "Не може да се промени част от обединена клетка", + "SSE.Controllers.Main.errorOpenWarning": "Дължината на една от формулите във файла надвишава разрешения брой знаци и е премахната.", + "SSE.Controllers.Main.errorOperandExpected": "Въведеният синтаксис на функцията не е правилен. Моля, проверете дали липсва една от скобите - '(' или ')'.", + "SSE.Controllers.Main.errorPasteMaxRange": "Областта за копиране и поставяне не съвпада.
    Моля, изберете област със същия размер или кликнете върху първата клетка в ред, за да поставите копираните клетки.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "За съжаление, не е възможно да се отпечатат повече от 1500 страници едновременно в текущата версия на програмата.
    Това ограничение ще бъде премахнато в предстоящите издания.", + "SSE.Controllers.Main.errorProcessSaveResult": "Запазването не бе успешно", + "SSE.Controllers.Main.errorServerVersion": "Версията на редактора е актуализирана. Страницата ще бъде презаредена, за да приложи промените.", + "SSE.Controllers.Main.errorSessionAbsolute": "Сесията за редактиране на документ изтече. Моля, презаредете страницата.", + "SSE.Controllers.Main.errorSessionIdle": "Документът не е редактиран дълго време. Моля, презаредете страницата.", + "SSE.Controllers.Main.errorSessionToken": "Връзката със сървъра е прекъсната. Моля, презаредете страницата.", + "SSE.Controllers.Main.errorStockChart": "Неправилен ред на ред. За изграждане на борсова карта поставете данните на листа в следния ред:
    цена на отваряне, максимална цена, мин. Цена, цена на затваряне.", + "SSE.Controllers.Main.errorToken": "Токенът за защита на документа не е правилно оформен.
    Моля, свържете се с вашия администратор на сървър за документи.", + "SSE.Controllers.Main.errorTokenExpire": "Токенът за защита на документа е изтекъл.
    Моля, свържете се с администратора на документа.", + "SSE.Controllers.Main.errorUnexpectedGuid": "Външна грешка.
    Неочакван GUID. Моля, свържете се с екипа за поддръжка, в случай че грешката продължава.", + "SSE.Controllers.Main.errorUpdateVersion": "Версията на файла е променена. Страницата ще бъде презаредена.", + "SSE.Controllers.Main.errorUserDrop": "Файлът не може да бъде достъпен в момента.", + "SSE.Controllers.Main.errorUsersExceed": "Превишен е броят на потребителите, позволени от плана за ценообразуване", + "SSE.Controllers.Main.errorViewerDisconnect": "Връзката е загубена. Все още можете да прегледате документа, но не можете да го изтеглите, докато връзката не бъде възстановена.", + "SSE.Controllers.Main.errorWrongBracketsCount": "Грешка във въведената формула.
    Използва се грешен брой скоби.", + "SSE.Controllers.Main.errorWrongOperator": "Грешка в въведената формула. Използва се грешен оператор.
    Моля, коригирайте грешката.", + "SSE.Controllers.Main.leavePageText": "Имате незапазени промени в този документ. Кликнете върху „Остани на тази страница“, за да изчакате за автоматично запаметяване на документа. Кликнете върху „Оставете тази страница“, за да отхвърлите всички незапазени промени.", + "SSE.Controllers.Main.loadFontsTextText": "Данните се зареждат ...", + "SSE.Controllers.Main.loadFontsTitleText": "Зареждане на данни", + "SSE.Controllers.Main.loadFontTextText": "Данните се зареждат ...", + "SSE.Controllers.Main.loadFontTitleText": "Зареждане на данни", + "SSE.Controllers.Main.loadImagesTextText": "Изображенията се зареждат ...", + "SSE.Controllers.Main.loadImagesTitleText": "Зареждане на изображения", + "SSE.Controllers.Main.loadImageTextText": "Изображението се зарежда ...", + "SSE.Controllers.Main.loadImageTitleText": "Зареждане на изображението", + "SSE.Controllers.Main.loadingDocumentTextText": "Електронната таблица се зарежда ...", + "SSE.Controllers.Main.loadingDocumentTitleText": "Електронната таблица се зарежда", + "SSE.Controllers.Main.mailMergeLoadFileText": "Зареждане на източника на данни ...", + "SSE.Controllers.Main.mailMergeLoadFileTitle": "Зареждане на източника на данни", + "SSE.Controllers.Main.notcriticalErrorTitle": "Внимание", + "SSE.Controllers.Main.openErrorText": "Възникна грешка при отварянето на файла", + "SSE.Controllers.Main.openTextText": "Отваряне на документа ...", + "SSE.Controllers.Main.openTitleText": "Отваряне на документ", + "SSE.Controllers.Main.pastInMergeAreaError": "Не може да се промени част от обединена клетка", + "SSE.Controllers.Main.printTextText": "Отпечатване на документ ...", + "SSE.Controllers.Main.printTitleText": "Отпечатване на документ", + "SSE.Controllers.Main.reloadButtonText": "Презареждане на страницата", + "SSE.Controllers.Main.requestEditFailedMessageText": "Някой редактира този документ в момента. Моля, опитайте отново по-късно.", + "SSE.Controllers.Main.requestEditFailedTitleText": "Отказан достъп", + "SSE.Controllers.Main.saveErrorText": "Възникна грешка при запазването на файла", + "SSE.Controllers.Main.savePreparingText": "Подготовка за запазване", + "SSE.Controllers.Main.savePreparingTitle": "Подготовка за запазване. Моля Изчакай...", + "SSE.Controllers.Main.saveTextText": "Документът се запазва ...", + "SSE.Controllers.Main.saveTitleText": "Запазване на документ", + "SSE.Controllers.Main.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.", + "SSE.Controllers.Main.sendMergeText": "Сливането се изпраща ...", + "SSE.Controllers.Main.sendMergeTitle": "Изпращане на обединяване", + "SSE.Controllers.Main.textAnonymous": "анонимен", + "SSE.Controllers.Main.textBack": "обратно", + "SSE.Controllers.Main.textBuyNow": "Посетете уебсайта", + "SSE.Controllers.Main.textCancel": "Отказ", + "SSE.Controllers.Main.textClose": "Близо", + "SSE.Controllers.Main.textContactUs": "Свържете се с продажбите", + "SSE.Controllers.Main.textDone": "Завършен", + "SSE.Controllers.Main.textLoadingDocument": "Електронната таблица се зарежда", + "SSE.Controllers.Main.textNoLicenseTitle": "Ограничение за връзка ONLYOFFICE", + "SSE.Controllers.Main.textOK": "Добре", + "SSE.Controllers.Main.textPassword": "Парола", + "SSE.Controllers.Main.textPreloader": "Зареждане... ", + "SSE.Controllers.Main.textShape": "форма", + "SSE.Controllers.Main.textStrict": "Строг режим", + "SSE.Controllers.Main.textTryUndoRedo": "Функциите за отмяна / възстановяване са деактивирани за режима Бързо съвместно редактиране.
    Кликнете върху бутона „Строг режим“, за да превключите в режим на стриктно съвместно редактиране, за да редактирате файла без намеса на други потребители и да изпращате промените само след като ги запазите тях. Можете да превключвате между режимите за съвместно редактиране с помощта на редактора Разширени настройки.", + "SSE.Controllers.Main.textUsername": "Потребител", + "SSE.Controllers.Main.titleLicenseExp": "Лицензът е изтекъл", + "SSE.Controllers.Main.titleServerVersion": "Редакторът е актуализиран", + "SSE.Controllers.Main.titleUpdateVersion": "Версията е променена", + "SSE.Controllers.Main.txtAccent": "Акцент", + "SSE.Controllers.Main.txtArt": "Вашият текст тук", + "SSE.Controllers.Main.txtBasicShapes": "Основни форми", + "SSE.Controllers.Main.txtButtons": "Бутони", + "SSE.Controllers.Main.txtCallouts": "Допълнителните описания", + "SSE.Controllers.Main.txtCharts": "Графики", + "SSE.Controllers.Main.txtDelimiter": "разделител", + "SSE.Controllers.Main.txtDiagramTitle": "Заглавие на диаграмата", + "SSE.Controllers.Main.txtEditingMode": "Задаване на режим на редактиране ...", + "SSE.Controllers.Main.txtEncoding": "Кодиране", + "SSE.Controllers.Main.txtErrorLoadHistory": "Историята на зареждането не бе успешна", + "SSE.Controllers.Main.txtFiguredArrows": "Фигурни стрели", + "SSE.Controllers.Main.txtLines": "линии", + "SSE.Controllers.Main.txtMath": "Математик", + "SSE.Controllers.Main.txtProtected": "След като въведете паролата и отворите файла, текущата парола за файла ще бъде нулирана", + "SSE.Controllers.Main.txtRectangles": "правоъгълници", + "SSE.Controllers.Main.txtSeries": "серия", + "SSE.Controllers.Main.txtSpace": "пространство", + "SSE.Controllers.Main.txtStarsRibbons": "Звезди и панделки", + "SSE.Controllers.Main.txtStyle_Bad": "лошо", + "SSE.Controllers.Main.txtStyle_Calculation": "изчисление", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Клетка за проверка", + "SSE.Controllers.Main.txtStyle_Comma": "запетая", + "SSE.Controllers.Main.txtStyle_Currency": "Валута", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Обяснителен текст", + "SSE.Controllers.Main.txtStyle_Good": "добре", + "SSE.Controllers.Main.txtStyle_Heading_1": "Заглавие 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Функция 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Функция 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Функция 4", + "SSE.Controllers.Main.txtStyle_Input": "Вход", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Свързана клетка", + "SSE.Controllers.Main.txtStyle_Neutral": "неутрален", + "SSE.Controllers.Main.txtStyle_Normal": "нормален", + "SSE.Controllers.Main.txtStyle_Note": "Забележка", + "SSE.Controllers.Main.txtStyle_Output": "продукция", + "SSE.Controllers.Main.txtStyle_Percent": "на сто", + "SSE.Controllers.Main.txtStyle_Title": "Заглавие", + "SSE.Controllers.Main.txtStyle_Total": "Обща сума", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Предупредителен текст", + "SSE.Controllers.Main.txtTab": "Раздел", + "SSE.Controllers.Main.txtXAxis": "X ос", + "SSE.Controllers.Main.txtYAxis": "Y ос", + "SSE.Controllers.Main.unknownErrorText": "Неизвестна грешка.", + "SSE.Controllers.Main.unsupportedBrowserErrorText ": "Вашият браузър не се поддържа.", + "SSE.Controllers.Main.uploadImageExtMessage": "Неизвестен формат на изображението.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Няма качени изображения.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Превишено е максималното ограничение на размера на изображението.", + "SSE.Controllers.Main.uploadImageTextText": "Качва се изображението ...", + "SSE.Controllers.Main.uploadImageTitleText": "Качване на изображение", + "SSE.Controllers.Main.warnLicenseExceeded": "Броят на едновременните връзки към сървъра за документи е превишен и документът ще бъде отворен само за преглед.
    За повече информация се обърнете към администратора.", + "SSE.Controllers.Main.warnLicenseExp": "Вашият лиценз е изтекъл.
    Моля, актуализирайте лиценза си и опреснете страницата.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Броят на едновременните потребители е надхвърлен и документът ще бъде отворен само за преглед.
    За повече информация се свържете с администратора си.", + "SSE.Controllers.Main.warnNoLicense": "Тази версия на редакторите на ONLYOFFICE има някои ограничения за едновременни връзки към сървъра за документи.", + "SSE.Controllers.Main.warnNoLicenseUsers": "Тази версия на редакторите на ONLYOFFICE има определени ограничения за едновременни потребители.", + "SSE.Controllers.Main.warnProcessRightsChange": "На вас е отказано правото да редактирате файла.", + "SSE.Controllers.Search.textNoTextFound": "Текстът не е намерен", + "SSE.Controllers.Search.textReplaceAll": "Замяна на всички", + "SSE.Controllers.Settings.notcriticalErrorTitle": "Внимание", + "SSE.Controllers.Settings.warnDownloadAs": "Ако продължите да записвате в този формат, всички функции, с изключение на текста, ще бъдат загубени.
    Сигурни ли сте, че искате да продължите?", + "SSE.Controllers.Statusbar.cancelButtonText": "Отказ", + "SSE.Controllers.Statusbar.errNameExists": "Работният лист с такова име вече съществува.", + "SSE.Controllers.Statusbar.errNameWrongChar": "Името на листа не може да съдържа символи: /, *,?, [,],:", + "SSE.Controllers.Statusbar.errNotEmpty": "Името на листа не трябва да е празно", + "SSE.Controllers.Statusbar.errorLastSheet": "Работната книга трябва да има поне един видим работен лист.", + "SSE.Controllers.Statusbar.errorRemoveSheet": "Работният лист не може да се изтрие.", + "SSE.Controllers.Statusbar.menuDelete": "Изтрий", + "SSE.Controllers.Statusbar.menuDuplicate": "дубликат", + "SSE.Controllers.Statusbar.menuHide": "Скрий", + "SSE.Controllers.Statusbar.menuRename": "преименувам", + "SSE.Controllers.Statusbar.menuUnhide": "Разкрий", + "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Внимание", + "SSE.Controllers.Statusbar.strRenameSheet": "Преименуване на лист", + "SSE.Controllers.Statusbar.strSheet": "Лист", + "SSE.Controllers.Statusbar.strSheetName": "Име на листа", + "SSE.Controllers.Statusbar.textExternalLink": "Външен линк", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Работният лист може да има данни. Продължете операцията?", + "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Имате незапазени промени в този документ. Кликнете върху „Остани на тази страница“, за да изчакате за автоматично запаметяване на документа. Кликнете върху „Оставете тази страница“, за да отхвърлите всички незапазени промени.", + "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Оставяте заявлението", + "SSE.Controllers.Toolbar.leaveButtonText": "Излезете от тази страница", + "SSE.Controllers.Toolbar.stayButtonText": "Остани на тази страница", + "SSE.Views.AddFunction.sCatDateAndTime": "Дата и час", + "SSE.Views.AddFunction.sCatEngineering": "Инженерство", + "SSE.Views.AddFunction.sCatFinancial": "финансов", + "SSE.Views.AddFunction.sCatInformation": "Информация", + "SSE.Views.AddFunction.sCatLogical": "логичен", + "SSE.Views.AddFunction.sCatLookupAndReference": "Търсене и справка", + "SSE.Views.AddFunction.sCatMathematic": "Математика и тригонометрия", + "SSE.Views.AddFunction.sCatStatistical": "статистически", + "SSE.Views.AddFunction.sCatTextAndData": "Текст и данни", + "SSE.Views.AddFunction.textBack": "обратно", + "SSE.Views.AddFunction.textGroups": "Категории", + "SSE.Views.AddLink.textAddLink": "Добавяне на връзка", + "SSE.Views.AddLink.textAddress": "адрес", + "SSE.Views.AddLink.textDisplay": "показ", + "SSE.Views.AddLink.textExternalLink": "Външен линк", + "SSE.Views.AddLink.textInsert": "Вмъкни", + "SSE.Views.AddLink.textInternalLink": "Вътрешен диапазон от данни", + "SSE.Views.AddLink.textLink": "връзка", + "SSE.Views.AddLink.textLinkSettings": "Настройки на връзката", + "SSE.Views.AddLink.textLinkType": "Тип на връзката", + "SSE.Views.AddLink.textRange": "диапазон", + "SSE.Views.AddLink.textRequired": "длъжен", + "SSE.Views.AddLink.textSheet": "Лист", + "SSE.Views.AddLink.textTip": "Съвет на екрана", + "SSE.Views.AddOther.textAddress": "адрес", + "SSE.Views.AddOther.textBack": "обратно", + "SSE.Views.AddOther.textFilter": "Филтър", + "SSE.Views.AddOther.textFromLibrary": "Картина от библиотеката", + "SSE.Views.AddOther.textFromURL": "Картина от URL адрес", + "SSE.Views.AddOther.textImageURL": "URL адрес на изображение", + "SSE.Views.AddOther.textInsert": "Вмъкни", + "SSE.Views.AddOther.textInsertImage": "Вмъкване на изображение", + "SSE.Views.AddOther.textLink": "връзка", + "SSE.Views.AddOther.textSort": "Сортиране и филтриране", + "SSE.Views.EditCell.textAccounting": "Счетоводство", + "SSE.Views.EditCell.textAlignBottom": "Подравняване отдолу", + "SSE.Views.EditCell.textAlignCenter": "Подравняване в центъра", + "SSE.Views.EditCell.textAlignLeft": "Подравняване вляво", + "SSE.Views.EditCell.textAlignMiddle": "Подравняване на средата", + "SSE.Views.EditCell.textAlignRight": "Подравняване надясно", + "SSE.Views.EditCell.textAlignTop": "Подравняване отгоре", + "SSE.Views.EditCell.textAllBorders": "Всички граници", + "SSE.Views.EditCell.textBack": "обратно", + "SSE.Views.EditCell.textBorderStyle": "Стил на границата", + "SSE.Views.EditCell.textBottomBorder": "Долна граница", + "SSE.Views.EditCell.textCellStyle": "Стил на клетката", + "SSE.Views.EditCell.textColor": "цвят", + "SSE.Views.EditCell.textCurrency": "Валута", + "SSE.Views.EditCell.textDate": "Дата", + "SSE.Views.EditCell.textDiagDownBorder": "Диагонална надолу граница", + "SSE.Views.EditCell.textDiagUpBorder": "Диагонална граница нагоре", + "SSE.Views.EditCell.textDollar": "долар", + "SSE.Views.EditCell.textEuro": "евро", + "SSE.Views.EditCell.textFillColor": "Цвят на запълване", + "SSE.Views.EditCell.textFonts": "Шрифт", + "SSE.Views.EditCell.textFormat": "формат", + "SSE.Views.EditCell.textGeneral": "Общ", + "SSE.Views.EditCell.textInBorders": "Вътрешни граници", + "SSE.Views.EditCell.textInHorBorder": "Хоризонтална граница", + "SSE.Views.EditCell.textInteger": "цяло число", + "SSE.Views.EditCell.textInVertBorder": "Вътрешна вертикална граница", + "SSE.Views.EditCell.textJustified": "Оправдани", + "SSE.Views.EditCell.textLeftBorder": "Лявата граница", + "SSE.Views.EditCell.textMedium": "среда", + "SSE.Views.EditCell.textNoBorder": "Няма граница", + "SSE.Views.EditCell.textNumber": "номер", + "SSE.Views.EditCell.textPercentage": "Процент", + "SSE.Views.EditCell.textPound": "Паунд", + "SSE.Views.EditCell.textRightBorder": "Дясна граница", + "SSE.Views.EditCell.textRouble": "рубла", + "SSE.Views.EditCell.textScientific": "научен", + "SSE.Views.EditCell.textSize": "Размер", + "SSE.Views.EditCell.textText": "Текст", + "SSE.Views.EditCell.textTextColor": "Цвят на текста", + "SSE.Views.EditCell.textTextFormat": "Текстов формат", + "SSE.Views.EditCell.textThick": "дебел", + "SSE.Views.EditCell.textThin": "тънък", + "SSE.Views.EditCell.textTime": "път", + "SSE.Views.EditCell.textTopBorder": "Горна граница", + "SSE.Views.EditCell.textWrapText": "Преливане на текст", + "SSE.Views.EditCell.textYen": "йена", + "SSE.Views.EditChart.textAuto": "Автоматичен", + "SSE.Views.EditChart.textAxisCrosses": "Ос Crosses", + "SSE.Views.EditChart.textAxisOptions": "Опции за ос", + "SSE.Views.EditChart.textAxisPosition": "Позиция на ос", + "SSE.Views.EditChart.textAxisTitle": "Заглавие на ос", + "SSE.Views.EditChart.textBack": "обратно", + "SSE.Views.EditChart.textBackward": "Преместване назад", + "SSE.Views.EditChart.textBorder": "граница", + "SSE.Views.EditChart.textBottom": "дъно", + "SSE.Views.EditChart.textChart": "диаграма", + "SSE.Views.EditChart.textChartTitle": "Заглавие на диаграмата", + "SSE.Views.EditChart.textColor": "цвят", + "SSE.Views.EditChart.textCrossesValue": "Пресича стойност", + "SSE.Views.EditChart.textDataLabels": "Етикети за данни", + "SSE.Views.EditChart.textDesign": "Дизайн", + "SSE.Views.EditChart.textDisplayUnits": "Дисплейни единици", + "SSE.Views.EditChart.textFill": "Напълнете", + "SSE.Views.EditChart.textForward": "Продължавай напред", + "SSE.Views.EditChart.textGridlines": "Мрежови линии", + "SSE.Views.EditChart.textHorAxis": "Хоризонтална ос", + "SSE.Views.EditChart.textHorizontal": "хоризонтален", + "SSE.Views.EditChart.textLabelOptions": "Опции за етикети", + "SSE.Views.EditChart.textLabelPos": "Позиция на етикета", + "SSE.Views.EditChart.textLayout": "оформление", + "SSE.Views.EditChart.textLeft": "Наляво", + "SSE.Views.EditChart.textLeftOverlay": "Ляво наслагване", + "SSE.Views.EditChart.textLegend": "Легенда", + "SSE.Views.EditChart.textMajor": "голям", + "SSE.Views.EditChart.textMajorMinor": "Майор и Мала", + "SSE.Views.EditChart.textMajorType": "Основен тип", + "SSE.Views.EditChart.textMaxValue": "Максимална стойност", + "SSE.Views.EditChart.textMinor": "Незначителен", + "SSE.Views.EditChart.textMinorType": "Малък тип", + "SSE.Views.EditChart.textMinValue": "Минимална стойност", + "SSE.Views.EditChart.textNone": "Нито един", + "SSE.Views.EditChart.textNoOverlay": "Няма наслагване", + "SSE.Views.EditChart.textOverlay": "настилка", + "SSE.Views.EditChart.textRemoveChart": "Премахване на диалог", + "SSE.Views.EditChart.textReorder": "Пренареждане", + "SSE.Views.EditChart.textRight": "прав", + "SSE.Views.EditChart.textRightOverlay": "Право наслагване", + "SSE.Views.EditChart.textRotated": "въртя", + "SSE.Views.EditChart.textSize": "Размер", + "SSE.Views.EditChart.textStyle": "стил", + "SSE.Views.EditChart.textTickOptions": "Отметнете Опции", + "SSE.Views.EditChart.textToBackground": "Изпращане до фона", + "SSE.Views.EditChart.textToForeground": "Доведете до преден план", + "SSE.Views.EditChart.textTop": "Отгоре", + "SSE.Views.EditChart.textType": "Тип", + "SSE.Views.EditChart.textValReverseOrder": "Стойности в обратен ред", + "SSE.Views.EditChart.textVerAxis": "Вертикална ос", + "SSE.Views.EditChart.textVertical": "вертикален", + "SSE.Views.EditHyperlink.textBack": "обратно", + "SSE.Views.EditHyperlink.textDisplay": "показ", + "SSE.Views.EditHyperlink.textEditLink": "Редактиране на връзката", + "SSE.Views.EditHyperlink.textExternalLink": "Външен линк", + "SSE.Views.EditHyperlink.textInternalLink": "Вътрешен диапазон от данни", + "SSE.Views.EditHyperlink.textLink": "връзка", + "SSE.Views.EditHyperlink.textLinkType": "Тип на връзката", + "SSE.Views.EditHyperlink.textRange": "диапазон", + "SSE.Views.EditHyperlink.textRemoveLink": "Премахване на връзката", + "SSE.Views.EditHyperlink.textScreenTip": "Съвет на екрана", + "SSE.Views.EditHyperlink.textSheet": "Лист", + "SSE.Views.EditImage.textAddress": "адрес", + "SSE.Views.EditImage.textBack": "обратно", + "SSE.Views.EditImage.textBackward": "Преместване назад", + "SSE.Views.EditImage.textDefault": "Размер по подразбиране", + "SSE.Views.EditImage.textForward": "Продължавай напред", + "SSE.Views.EditImage.textFromLibrary": "Картина от библиотеката", + "SSE.Views.EditImage.textFromURL": "Картина от URL адрес", + "SSE.Views.EditImage.textImageURL": "URL адрес на изображение", + "SSE.Views.EditImage.textLinkSettings": "Настройки на връзката", + "SSE.Views.EditImage.textRemove": "Премахване на изображението", + "SSE.Views.EditImage.textReorder": "Пренареждане", + "SSE.Views.EditImage.textReplace": "Заменете", + "SSE.Views.EditImage.textReplaceImg": "Замяна на изображението", + "SSE.Views.EditImage.textToBackground": "Изпращане до фона", + "SSE.Views.EditImage.textToForeground": "Доведете до преден план", + "SSE.Views.EditShape.textBack": "обратно", + "SSE.Views.EditShape.textBackward": "Преместване назад", + "SSE.Views.EditShape.textBorder": "граница", + "SSE.Views.EditShape.textColor": "цвят", + "SSE.Views.EditShape.textEffects": "вещи", + "SSE.Views.EditShape.textFill": "Напълнете", + "SSE.Views.EditShape.textForward": "Продължавай напред", + "SSE.Views.EditShape.textOpacity": "непрозрачност", + "SSE.Views.EditShape.textRemoveShape": "Премахване на формата", + "SSE.Views.EditShape.textReorder": "Пренареждане", + "SSE.Views.EditShape.textReplace": "Заменете", + "SSE.Views.EditShape.textSize": "Размер", + "SSE.Views.EditShape.textStyle": "стил", + "SSE.Views.EditShape.textToBackground": "Изпращане до фона", + "SSE.Views.EditShape.textToForeground": "Доведете до преден план", + "SSE.Views.EditText.textBack": "обратно", + "SSE.Views.EditText.textFillColor": "Цвят на запълване", + "SSE.Views.EditText.textFonts": "Шрифт", + "SSE.Views.EditText.textSize": "Размер", + "SSE.Views.EditText.textTextColor": "Цвят на текста", + "SSE.Views.Search.textDone": "Завършен", + "SSE.Views.Search.textFind": "намирам", + "SSE.Views.Search.textFindAndReplace": "Намерете и заменете", + "SSE.Views.Search.textMatchCase": "Случай на съвпадение", + "SSE.Views.Search.textMatchCell": "Съвпадение на клетката", + "SSE.Views.Search.textReplace": "Заменете", + "SSE.Views.Search.textSearch": "Търсене", + "SSE.Views.Search.textSearchIn": "Търсене в", + "SSE.Views.Search.textSheet": "Лист", + "SSE.Views.Search.textWorkbook": "Работна книга", + "SSE.Views.Settings.textAbout": "относно", + "SSE.Views.Settings.textAddress": "адрес", + "SSE.Views.Settings.textAuthor": "Автор", + "SSE.Views.Settings.textBack": "обратно", + "SSE.Views.Settings.textCreateDate": "Дата на създаване", + "SSE.Views.Settings.textDocInfo": "Информация за електронна таблица", + "SSE.Views.Settings.textDocTitle": "Заглавие на електронната таблица", + "SSE.Views.Settings.textDone": "Завършен", + "SSE.Views.Settings.textDownload": "Изтегли", + "SSE.Views.Settings.textDownloadAs": "Изтеглете като ...", + "SSE.Views.Settings.textEditDoc": "Редактиране на документ", + "SSE.Views.Settings.textEmail": "електронна поща", + "SSE.Views.Settings.textFind": "намирам", + "SSE.Views.Settings.textFindAndReplace": "Намерете и заменете", + "SSE.Views.Settings.textHelp": "Помощ ", + "SSE.Views.Settings.textLoading": "Зареждане...", + "SSE.Views.Settings.textPoweredBy": "Задвижвани от", + "SSE.Views.Settings.textPrint": "печат", + "SSE.Views.Settings.textSettings": "Настройки", + "SSE.Views.Settings.textTel": "тел", + "SSE.Views.Settings.textVersion": "версия", + "SSE.Views.Settings.unknownText": "неизвестен", + "SSE.Views.Toolbar.textBack": "обратно" +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 04f9dbb77..200fbd70b 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -115,6 +115,7 @@ "SSE.Controllers.Main.errorAutoFilterDataRange": "Der Vorgang kann für einen ausgewählten Zellbereich nicht ausgeführt werden.
    Wählen Sie einen einheitlichen Datenbereich, der sich deutlich von dem bestehenden unterscheidet und versuchen Sie es erneut.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Die Operation kann nicht ausgeführt werden, weil der Bereich gefilterte Zellen enthält.
    Bitte machen Sie die gefilterten Elemente sichtbar und versuchen Sie es erneut.", "SSE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch", + "SSE.Controllers.Main.errorChangeArray": "Sie können einen Teil eines Arrays nicht ändern.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Sie können nicht mehr editieren.", "SSE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.
    Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.

    Mehr Informationen über die Verbindung zum Dokumentenserver finden Sie hier", "SSE.Controllers.Main.errorCopyMultiselectArea": "Dieser Befehl kann nicht bei Mehrfachauswahl verwendet werden
    Wählen Sie nur einen einzelnen Bereich aus, und versuchen Sie es nochmal.", @@ -125,6 +126,7 @@ "SSE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.", "SSE.Controllers.Main.errorDataRange": "Falscher Datenbereich.", "SSE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
    Verwenden Sie die Option \"Herunterladen\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.", "SSE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "SSE.Controllers.Main.errorFileRequest": "Externer Fehler.
    Fehler bei der Dateianfrage. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.", "SSE.Controllers.Main.errorFileVKey": "Externer Fehler.
    Ungültiger Sicherheitsschlüssel. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.", @@ -497,6 +499,7 @@ "SSE.Views.Settings.textHelp": "Hilfe", "SSE.Views.Settings.textLoading": "Ladevorgang...", "SSE.Views.Settings.textPoweredBy": "Betrieben von", + "SSE.Views.Settings.textPrint": "Drucken", "SSE.Views.Settings.textSettings": "Einstellungen", "SSE.Views.Settings.textTel": "Tel.", "SSE.Views.Settings.textVersion": "Version", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 1cffe0f34..cc32bba40 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -115,6 +115,7 @@ "SSE.Controllers.Main.errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range different from the existing one and try again.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please unhide the filtered elements and try again.", "SSE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect", + "SSE.Controllers.Main.errorChangeArray": "You cannot change part of an array.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.", "SSE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
    When you click the 'OK' button, you will be prompted to download the document.

    Find more information about connecting Document Server here", "SSE.Controllers.Main.errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", @@ -125,6 +126,7 @@ "SSE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", "SSE.Controllers.Main.errorDataRange": "Incorrect data range.", "SSE.Controllers.Main.errorDefaultMessage": "Error code: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy to your computer hard drive.", "SSE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.", "SSE.Controllers.Main.errorFileRequest": "External error.
    File request error. Please contact support in case the error persists.", "SSE.Controllers.Main.errorFileVKey": "External error.
    Incorrect security key. Please contact support in case the error persists.", @@ -160,6 +162,7 @@ "SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,
    but will not be able to download until the connection is restored.", "SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.
    Wrong number of brackets is used.", "SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.
    Please correct the error.", + "SSE.Controllers.Main.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", "SSE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.", "SSE.Controllers.Main.loadFontsTextText": "Loading data...", "SSE.Controllers.Main.loadFontsTitleText": "Loading Data", @@ -497,6 +500,7 @@ "SSE.Views.Settings.textHelp": "Help", "SSE.Views.Settings.textLoading": "Loading...", "SSE.Views.Settings.textPoweredBy": "Powered by", + "SSE.Views.Settings.textPrint": "Print", "SSE.Views.Settings.textSettings": "Settings", "SSE.Views.Settings.textTel": "tel", "SSE.Views.Settings.textVersion": "Version", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index dc9fb5d9d..1e9d04081 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -115,6 +115,7 @@ "SSE.Controllers.Main.errorAutoFilterDataRange": "No se puede realizar la operación para el rango de celdas seleccionado.
    Seleccione un rango de datos uniforme diferente del existente y vuelva a intentarlo.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "No se puede realizar la operación porque el área contiene celdas filtradas.
    Por favor, muestre los elementos filtrados y vuelva a intentarlo.", "SSE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto", + "SSE.Controllers.Main.errorChangeArray": "No se puede cambiar parte de una matriz.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. No se puede editar el documento ahora.", "SSE.Controllers.Main.errorConnectToServer": "No se pudo guardar el documento. Por favor, verifique la configuración de conexión o póngase en contacto con el administrador.
    Al hacer clic en el botón \"Aceptar\", se le pedirá que descargue el documento.
    Encuentre más información acerca de la conexión Servidor de Documentosaquí", "SSE.Controllers.Main.errorCopyMultiselectArea": "No se puede usar este comando con varias selecciones.
    Seleccione un solo rango y intente de nuevo.", @@ -125,6 +126,7 @@ "SSE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.", "SSE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.", "SSE.Controllers.Main.errorDefaultMessage": "Código de error: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
    Use la opción 'Descargar' para guardar la copia de seguridad de archivo en el disco duro de su computadora.", "SSE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "SSE.Controllers.Main.errorFileRequest": "Error externo.
    Error de solicitud de archivo. Por favor, póngase en contacto con soporte si el error persiste.", "SSE.Controllers.Main.errorFileVKey": "Error externo.
    Clave de seguridad incorrecto. Por favor, póngase en contacto con soporte si el error persiste.", @@ -497,6 +499,7 @@ "SSE.Views.Settings.textHelp": "Ayuda", "SSE.Views.Settings.textLoading": "Cargando...", "SSE.Views.Settings.textPoweredBy": "Desarrollado por", + "SSE.Views.Settings.textPrint": "Imprimir", "SSE.Views.Settings.textSettings": "Ajustes", "SSE.Views.Settings.textTel": "Tel.", "SSE.Views.Settings.textVersion": "Versión ", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 19f74b718..ee85c01d3 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -115,6 +115,7 @@ "SSE.Controllers.Main.errorAutoFilterDataRange": "Impossible de réaliser l'opération sur la plage de cellules spécifiée.
    Sélectionnez la plage de données différente de la plage existante et essayez à nouveau.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L'opération ne peut pas être effectuée car la zone contient des cellules filtrées.
    Veuillez afficher des éléments filtrés et réessayez.", "SSE.Controllers.Main.errorBadImageUrl": "L'URL d'image est incorrecte", + "SSE.Controllers.Main.errorChangeArray": "Vous ne pouvez pas modifier des parties d'une tableau. ", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "La connexion au serveur perdue. Désolé, vous ne pouvez plus modifier le document.", "SSE.Controllers.Main.errorConnectToServer": "Le document n'a pas pu être enregistré. Veuillez vérifier les paramètres de connexion ou contactez votre administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.

    Trouvez plus d'informations sur la connexion de Document Serverici", "SSE.Controllers.Main.errorCopyMultiselectArea": "Impossible d'exécuter cette commande sur des sélections multiples.
    Sélectionnez une seule plage et essayez à nouveau.", @@ -125,6 +126,7 @@ "SSE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.", "SSE.Controllers.Main.errorDataRange": "Plage de données incorrecte.", "SSE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "Une erreure s'est produite lors du travail sur le document.
    Utilisez l'option \"Télécharger\" pour enregistrer la copie de sauvegarde sur le disque dur de votre ordinateur.", "SSE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.", "SSE.Controllers.Main.errorFileRequest": "Erreur externe.
    Erreur de demande du fichier. Si l'erreur persiste, veillez contactez l'assistance technique.", "SSE.Controllers.Main.errorFileVKey": "Erreur externe.
    Clé de sécurité incorrecte. Si l'erreur persiste, veillez contactez l'assistance technique.", @@ -497,6 +499,7 @@ "SSE.Views.Settings.textHelp": "Aide", "SSE.Views.Settings.textLoading": "Chargement en cours...", "SSE.Views.Settings.textPoweredBy": "Propulsé par ", + "SSE.Views.Settings.textPrint": "Imprimer", "SSE.Views.Settings.textSettings": "Paramètres", "SSE.Views.Settings.textTel": "tél.", "SSE.Views.Settings.textVersion": "Version", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json new file mode 100644 index 000000000..d3e9d873a --- /dev/null +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -0,0 +1,508 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Sztenderd színek", + "Common.UI.ThemeColorPalette.textThemeColors": "Téma színek", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "SSE.Controllers.AddChart.txtDiagramTitle": "Diagram címe", + "SSE.Controllers.AddChart.txtSeries": "Sorozatok", + "SSE.Controllers.AddChart.txtXAxis": "X tengely", + "SSE.Controllers.AddChart.txtYAxis": "Y tengely", + "SSE.Controllers.AddContainer.textChart": "Diagram", + "SSE.Controllers.AddContainer.textFormula": "Funkció", + "SSE.Controllers.AddContainer.textImage": "Kép", + "SSE.Controllers.AddContainer.textOther": "Egyéb", + "SSE.Controllers.AddContainer.textShape": "Alakzat", + "SSE.Controllers.AddLink.textInvalidRange": "HIBA! Érvénytelen cellatartomány", + "SSE.Controllers.AddLink.txtNotUrl": "A mező URL-címének a 'http://www.example.com' formátumban kell lennie", + "SSE.Controllers.AddOther.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", + "SSE.Controllers.AddOther.txtNotUrl": "A mező URL-címének a 'http://www.example.com' formátumban kell lennie", + "SSE.Controllers.DocumentHolder.menuAddLink": "Link hozzáadása", + "SSE.Controllers.DocumentHolder.menuCell": "Cella", + "SSE.Controllers.DocumentHolder.menuCopy": "Másol", + "SSE.Controllers.DocumentHolder.menuCut": "Kivág", + "SSE.Controllers.DocumentHolder.menuDelete": "Töröl", + "SSE.Controllers.DocumentHolder.menuEdit": "Szerkeszt", + "SSE.Controllers.DocumentHolder.menuHide": "Elrejt", + "SSE.Controllers.DocumentHolder.menuMerge": "Összevon", + "SSE.Controllers.DocumentHolder.menuMore": "Még", + "SSE.Controllers.DocumentHolder.menuOpenLink": "Link megnyitása", + "SSE.Controllers.DocumentHolder.menuPaste": "Beilleszt", + "SSE.Controllers.DocumentHolder.menuShow": "Mutat", + "SSE.Controllers.DocumentHolder.menuUnmerge": "Szétválaszt", + "SSE.Controllers.DocumentHolder.menuUnwrap": "Tördelés megszüntetése", + "SSE.Controllers.DocumentHolder.menuWrap": "Tördel", + "SSE.Controllers.DocumentHolder.sheetCancel": "Mégse", + "SSE.Controllers.DocumentHolder.warnMergeLostData": "A művelet megsemmisítheti az adatokat a kiválasztott cellákban.
    Folytassa?", + "SSE.Controllers.EditCell.textAuto": "Auto", + "SSE.Controllers.EditCell.textFonts": "Betűtípusok", + "SSE.Controllers.EditCell.textPt": "pt", + "SSE.Controllers.EditChart.errorMaxRows": "HIBA! Az adatsorok maximális száma diagramonként 255.", + "SSE.Controllers.EditChart.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:
    nyitó ár, maximum ár, minimum ár, záró ár.", + "SSE.Controllers.EditChart.textAuto": "Auto", + "SSE.Controllers.EditChart.textBetweenTickMarks": "Tengely osztások között", + "SSE.Controllers.EditChart.textBillions": "Milliárdok", + "SSE.Controllers.EditChart.textBottom": "Alsó", + "SSE.Controllers.EditChart.textCenter": "Közép", + "SSE.Controllers.EditChart.textCross": "Kereszt", + "SSE.Controllers.EditChart.textCustom": "Egyéni", + "SSE.Controllers.EditChart.textFit": "Szélességben igazít", + "SSE.Controllers.EditChart.textFixed": "Rögzített", + "SSE.Controllers.EditChart.textHigh": "Magas", + "SSE.Controllers.EditChart.textHorizontal": "Vízszintes", + "SSE.Controllers.EditChart.textHundredMil": "100 000 000", + "SSE.Controllers.EditChart.textHundreds": "Száz", + "SSE.Controllers.EditChart.textHundredThousands": "100 000", + "SSE.Controllers.EditChart.textIn": "-ben", + "SSE.Controllers.EditChart.textInnerBottom": "Alul belül", + "SSE.Controllers.EditChart.textInnerTop": "Felül belül", + "SSE.Controllers.EditChart.textLeft": "Bal", + "SSE.Controllers.EditChart.textLeftOverlay": "Bal átfedés", + "SSE.Controllers.EditChart.textLow": "Alacsony", + "SSE.Controllers.EditChart.textManual": "Kézi", + "SSE.Controllers.EditChart.textMaxValue": "Maximum érték", + "SSE.Controllers.EditChart.textMillions": "Milliók", + "SSE.Controllers.EditChart.textMinValue": "Minimum érték", + "SSE.Controllers.EditChart.textNextToAxis": "Tengely mellett", + "SSE.Controllers.EditChart.textNone": "nincs", + "SSE.Controllers.EditChart.textNoOverlay": "Nincs átfedés", + "SSE.Controllers.EditChart.textOnTickMarks": "Tengely osztásokon", + "SSE.Controllers.EditChart.textOut": "Ki", + "SSE.Controllers.EditChart.textOuterTop": "Kívül fent", + "SSE.Controllers.EditChart.textOverlay": "Átfedés", + "SSE.Controllers.EditChart.textRight": "Jobb", + "SSE.Controllers.EditChart.textRightOverlay": "Jobb átfedés", + "SSE.Controllers.EditChart.textRotated": "Elforgatott", + "SSE.Controllers.EditChart.textTenMillions": "10 000 000", + "SSE.Controllers.EditChart.textTenThousands": "10 000", + "SSE.Controllers.EditChart.textThousands": "Ezrek", + "SSE.Controllers.EditChart.textTop": "Felső", + "SSE.Controllers.EditChart.textTrillions": "Billió", + "SSE.Controllers.EditChart.textValue": "Érték", + "SSE.Controllers.EditContainer.textCell": "Cella", + "SSE.Controllers.EditContainer.textChart": "Diagram", + "SSE.Controllers.EditContainer.textHyperlink": "Hivatkozás", + "SSE.Controllers.EditContainer.textImage": "Kép", + "SSE.Controllers.EditContainer.textSettings": "Beállítások", + "SSE.Controllers.EditContainer.textShape": "Alakzat", + "SSE.Controllers.EditContainer.textTable": "Táblázat", + "SSE.Controllers.EditContainer.textText": "Szöveg", + "SSE.Controllers.EditHyperlink.textDefault": "Kiválasztott tartomány", + "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", + "SSE.Controllers.EditHyperlink.textExternalLink": "Külső hivatkozás", + "SSE.Controllers.EditHyperlink.textInternalLink": "Belső adattartomány", + "SSE.Controllers.EditHyperlink.textInvalidRange": "Érvénytelen cellatartomány", + "SSE.Controllers.EditHyperlink.txtNotUrl": "A mező URL-címének a \"http://www.example.com\" formátumban kell lennie", + "SSE.Controllers.Main.advCSVOptions": "Válasszon a CSV beállítások közül", + "SSE.Controllers.Main.advDRMEnterPassword": "Adja meg a jelszavát:", + "SSE.Controllers.Main.advDRMOptions": "Védett fájl", + "SSE.Controllers.Main.advDRMPassword": "Jelszó", + "SSE.Controllers.Main.applyChangesTextText": "Adatok betöltése...", + "SSE.Controllers.Main.applyChangesTitleText": "Adatok betöltése", + "SSE.Controllers.Main.closeButtonText": "Fájl bezárása", + "SSE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.", + "SSE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\"-t a dokumentumok listájához.", + "SSE.Controllers.Main.criticalErrorTitle": "Hiba", + "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Táblázatkezelő", + "SSE.Controllers.Main.downloadErrorText": "Sikertelen letöltés.", + "SSE.Controllers.Main.downloadMergeText": "Letöltés...", + "SSE.Controllers.Main.downloadMergeTitle": "Letöltés", + "SSE.Controllers.Main.downloadTextText": "Munkafüzet letöltése...", + "SSE.Controllers.Main.downloadTitleText": "Munkafüzet letöltése", + "SSE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.
    Vegye fel a kapcsolatot a Document Server adminisztrátorával.", + "SSE.Controllers.Main.errorArgsRange": "Hiba a megadott képletben.
    Helytelen argumentumtartomány került alkalmazásra.", + "SSE.Controllers.Main.errorAutoFilterChange": "A művelet nem megengedett, mivel megpróbálja a cellákat a munkalapon lévő táblázatban eltolni.", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "A műveletet nem lehetett elvégezni a kiválasztott cellák esetében, mivel nem tudunk mozgatni a táblázat egy részét.
    Válasszon másik adattartományt, hogy az egész asztal eltolódjon, és próbálja újra.", + "SSE.Controllers.Main.errorAutoFilterDataRange": "A műveletet nem lehetett elvégezni a kiválasztott cellatartományban.
    Válasszon egy egységes adattartományt, amely eltér a meglévő cellától, és próbálja újra.", + "SSE.Controllers.Main.errorAutoFilterHiddenRange": "A műveletet nem lehet végrehajtani, mert a terület szűrt cellákat tartalmaz.
    Szüntesse meg a szűrt elemeket, és próbálja újra.", + "SSE.Controllers.Main.errorBadImageUrl": "Hibás kép URL", + "SSE.Controllers.Main.errorChangeArray": "Nem módosíthatja a tömb egy részét.", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Elveszett a kapcsolat a szerverrel. A dokumentum jelenleg nem szerkeszthető.", + "SSE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.
    Ha az 'OK'-ra kattint letöltheti a dokumentumot.

    Bővebb információk a Dokumentum Szerverhez kapcsolódásról itt találhat.", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Ez a parancs nem használható többes kiválasztással.
    Válasszon ki egy tartományt és próbálja újra.", + "SSE.Controllers.Main.errorCountArg": "Hiba a megadott képletben.
    Nem megfelelő számú argumentum használata.", + "SSE.Controllers.Main.errorCountArgExceed": "Hiba a megadott képletben.
    Az argumentumok száma túllépve.", + "SSE.Controllers.Main.errorCreateDefName": "A meglévő tartományok nem szerkeszthetők, és az újakat nem lehet létrehozni
    jelenleg némely szerkesztés alatt áll.", + "SSE.Controllers.Main.errorDatabaseConnection": "Külső hiba.
    Adatbázis-kapcsolati hiba. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a rendszer támogatással.", + "SSE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", + "SSE.Controllers.Main.errorDataRange": "Hibás adattartomány.", + "SSE.Controllers.Main.errorDefaultMessage": "Hibakód: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
    Használja a 'Letölt' opciót, hogy elmentse a fájl biztonsági másolatát a számítógép merevlemezére.", + "SSE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", + "SSE.Controllers.Main.errorFileRequest": "Külső hiba.
    Fájl kérési hiba. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a támogatással.", + "SSE.Controllers.Main.errorFileVKey": "Külső hiba.
    Helytelen biztonsági kulcs. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a támogatással.", + "SSE.Controllers.Main.errorFillRange": "Nem sikerült kitölteni a kiválasztott cellatartományt.
    Minden egyesített cellának azonos méretűnek kell lennie.", + "SSE.Controllers.Main.errorFormulaName": "Hiba a bevitt képletben.
    Helytelen képletnév.", + "SSE.Controllers.Main.errorFormulaParsing": "Belső hiba a képlet elemzése közben.", + "SSE.Controllers.Main.errorFrmlWrongReferences": "A függvény nem létező munkalapra vonatkozik.
    Kérjük, ellenőrizze az adatokat és próbálja újra.", + "SSE.Controllers.Main.errorInvalidRef": "Adjon meg egy helyes nevet a kijelöléshez, vagy érvényes hivatkozást.", + "SSE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró", + "SSE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró", + "SSE.Controllers.Main.errorLockedAll": "A műveletet nem lehetett végrehajtani, mivel a munkalapot egy másik felhasználó zárolta.", + "SSE.Controllers.Main.errorLockedWorksheetRename": "A lapot nem lehet átnevezni, egy másik felhasználó éppen átnevezte azt", + "SSE.Controllers.Main.errorMailMergeLoadFile": "A betöltés sikertelen", + "SSE.Controllers.Main.errorMailMergeSaveFile": "Sikertelen összevonás.", + "SSE.Controllers.Main.errorMaxPoints": "A soronkénti maximális pontszám diagramonként 4096.", + "SSE.Controllers.Main.errorMoveRange": "Nem lehet módosítani az egyesített cellák egy részét", + "SSE.Controllers.Main.errorOpenWarning": "A fájlban szereplő képletek egyike meghaladta
    a megengedett karakterek számát, és eltávolításra került.", + "SSE.Controllers.Main.errorOperandExpected": "A bevitt függvényszintaxis nem megfelelő. Kérjük, ellenőrizze, hogy hiányzik-e az egyik zárójel - '(' vagy ')'.", + "SSE.Controllers.Main.errorPasteMaxRange": "A másolási és beillesztési terület nem egyezik.
    Válasszon ki egy azonos méretű területet, vagy kattintson a sorban lévő első cellára a másolt cellák beillesztéséhez.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Sajnos nem lehet több mint 1500 oldalt egyszerre kinyomtatni az aktuális programverzióban.
    Ez a korlátozás eltávolításra kerül a következő kiadásokban.", + "SSE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés", + "SSE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", + "SSE.Controllers.Main.errorSessionAbsolute": "A dokumentumszerkesztési munkamenet lejárt. Kérjük, töltse be újra az oldalt.", + "SSE.Controllers.Main.errorSessionIdle": "A dokumentumot sokáig nem szerkesztették. Kérjük, töltse be újra az oldalt.", + "SSE.Controllers.Main.errorSessionToken": "A szerverrel való kapcsolat megszakadt. Töltse be újra az oldalt.", + "SSE.Controllers.Main.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:
    nyitó ár, maximum ár, minimum ár, záró ár.", + "SSE.Controllers.Main.errorToken": "A dokumentum biztonsági tokenje nem megfelelő.
    Kérjük, lépjen kapcsolatba a Dokumentumszerver rendszergazdájával.", + "SSE.Controllers.Main.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
    Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", + "SSE.Controllers.Main.errorUnexpectedGuid": "Külső hiba.
    Váratlan GUID. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a támogatással.", + "SSE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", + "SSE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető", + "SSE.Controllers.Main.errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát", + "SSE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is látható a dokumentum,
    de a kapcsolat helyreállításáig nem lehet letölteni.", + "SSE.Controllers.Main.errorWrongBracketsCount": "Hiba a bevitt képletben.
    A zárójelek száma hibás.", + "SSE.Controllers.Main.errorWrongOperator": "Hiba a megadott képletben. Hibás operátor használata.
    Kérjük, javítsa ki a hibát.", + "SSE.Controllers.Main.leavePageText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ", + "SSE.Controllers.Main.loadFontsTextText": "Adatok betöltése...", + "SSE.Controllers.Main.loadFontsTitleText": "Adatok betöltése", + "SSE.Controllers.Main.loadFontTextText": "Adatok betöltése...", + "SSE.Controllers.Main.loadFontTitleText": "Adatok betöltése", + "SSE.Controllers.Main.loadImagesTextText": "Képek betöltése...", + "SSE.Controllers.Main.loadImagesTitleText": "Képek betöltése", + "SSE.Controllers.Main.loadImageTextText": "Kép betöltése...", + "SSE.Controllers.Main.loadImageTitleText": "Kép betöltése", + "SSE.Controllers.Main.loadingDocumentTextText": "Munkafüzet betöltése...", + "SSE.Controllers.Main.loadingDocumentTitleText": "Munkafüzet betöltése", + "SSE.Controllers.Main.mailMergeLoadFileText": "Adatforrás betöltése...", + "SSE.Controllers.Main.mailMergeLoadFileTitle": "Adatforrás betöltése", + "SSE.Controllers.Main.notcriticalErrorTitle": "Figyelmeztetés", + "SSE.Controllers.Main.openErrorText": "Hiba történt a fájl megnyitása során", + "SSE.Controllers.Main.openTextText": "Dokumentum megnyitása...", + "SSE.Controllers.Main.openTitleText": "Dokumentum megnyitása", + "SSE.Controllers.Main.pastInMergeAreaError": "Nem lehet módosítani az egyesített cellák egy részét", + "SSE.Controllers.Main.printTextText": "Dokumentum nyomtatása...", + "SSE.Controllers.Main.printTitleText": "Dokumentum nyomtatása", + "SSE.Controllers.Main.reloadButtonText": "Oldal újratöltése", + "SSE.Controllers.Main.requestEditFailedMessageText": "Jelenleg valaki más szerkeszti ezt a dokumentumot. Próbálja újra később.", + "SSE.Controllers.Main.requestEditFailedTitleText": "Hozzáférés megtagadva", + "SSE.Controllers.Main.saveErrorText": "Hiba történt a fájl mentése során", + "SSE.Controllers.Main.savePreparingText": "Felkészülés mentésre", + "SSE.Controllers.Main.savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...", + "SSE.Controllers.Main.saveTextText": "Dokumentum mentése...", + "SSE.Controllers.Main.saveTitleText": "Dokumentum mentése", + "SSE.Controllers.Main.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", + "SSE.Controllers.Main.sendMergeText": "Összevont küldés...", + "SSE.Controllers.Main.sendMergeTitle": "Összevont küldés", + "SSE.Controllers.Main.textAnonymous": "Névtelen", + "SSE.Controllers.Main.textBack": "Vissza", + "SSE.Controllers.Main.textBuyNow": "Weboldalt meglátogat", + "SSE.Controllers.Main.textCancel": "Mégse", + "SSE.Controllers.Main.textClose": "Bezár", + "SSE.Controllers.Main.textContactUs": "Értékesítés elérhetősége", + "SSE.Controllers.Main.textDone": "Kész", + "SSE.Controllers.Main.textLoadingDocument": "Munkafüzet betöltése", + "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE kapcsolódási limitáció", + "SSE.Controllers.Main.textOK": "OK", + "SSE.Controllers.Main.textPassword": "Jelszó", + "SSE.Controllers.Main.textPreloader": "Betöltés...", + "SSE.Controllers.Main.textShape": "Alakzat", + "SSE.Controllers.Main.textStrict": "Biztonságos mód", + "SSE.Controllers.Main.textTryUndoRedo": "A Visszavonás / Újra funkciók le vannak tiltva a Gyors együttes szerkesztés módban.
    A \"Biztonságos mód\" gombra kattintva válthat a Biztonságos együttes szerkesztés módra, hogy a dokumentumot más felhasználókkal való interferencia nélkül tudja szerkeszteni, mentés után küldve el a módosításokat. A szerkesztési módok között a Speciális beállítások segítségével válthat.", + "SSE.Controllers.Main.textUsername": "Felhasználói név", + "SSE.Controllers.Main.titleLicenseExp": "Lejárt licenc", + "SSE.Controllers.Main.titleServerVersion": "Szerkesztő frissítve", + "SSE.Controllers.Main.titleUpdateVersion": "A verzió megváltozott", + "SSE.Controllers.Main.txtAccent": "Ékezet", + "SSE.Controllers.Main.txtArt": "Írja a szöveget ide", + "SSE.Controllers.Main.txtBasicShapes": "Egyszerű alakzatok", + "SSE.Controllers.Main.txtButtons": "Gombok", + "SSE.Controllers.Main.txtCallouts": "Feliratok", + "SSE.Controllers.Main.txtCharts": "Diagramok", + "SSE.Controllers.Main.txtDelimiter": "Határolójel", + "SSE.Controllers.Main.txtDiagramTitle": "Diagram címe", + "SSE.Controllers.Main.txtEditingMode": "Szerkesztési mód beállítása...", + "SSE.Controllers.Main.txtEncoding": "Kódol", + "SSE.Controllers.Main.txtErrorLoadHistory": "A napló betöltése sikertelen", + "SSE.Controllers.Main.txtFiguredArrows": "Nyíl formák", + "SSE.Controllers.Main.txtLines": "Vonalak", + "SSE.Controllers.Main.txtMath": "Matematika", + "SSE.Controllers.Main.txtProtected": "Amint beírásra került a kód és megnyílt a fájl, a fájl jelenlegi kódja visszaállítódik.", + "SSE.Controllers.Main.txtRectangles": "Négyszögek", + "SSE.Controllers.Main.txtSeries": "Sorozatok", + "SSE.Controllers.Main.txtSpace": "Hely", + "SSE.Controllers.Main.txtStarsRibbons": "Csillagok és szalagok", + "SSE.Controllers.Main.txtStyle_Bad": "Hibás", + "SSE.Controllers.Main.txtStyle_Calculation": "Számítás", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Cellák ellenőrzése", + "SSE.Controllers.Main.txtStyle_Comma": "Vessző", + "SSE.Controllers.Main.txtStyle_Currency": "Pénznem", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Magyarázó szöveg", + "SSE.Controllers.Main.txtStyle_Good": "Jó", + "SSE.Controllers.Main.txtStyle_Heading_1": "Címsor 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Címsor 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Címsor 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Címsor 4", + "SSE.Controllers.Main.txtStyle_Input": "Bemenet", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Kapcsolt cella", + "SSE.Controllers.Main.txtStyle_Neutral": "Semleges", + "SSE.Controllers.Main.txtStyle_Normal": "Normál", + "SSE.Controllers.Main.txtStyle_Note": "Jegyzet", + "SSE.Controllers.Main.txtStyle_Output": "Eredmény", + "SSE.Controllers.Main.txtStyle_Percent": "Százalék", + "SSE.Controllers.Main.txtStyle_Title": "Cím", + "SSE.Controllers.Main.txtStyle_Total": "Összesen", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Figyelmeztető szöveg", + "SSE.Controllers.Main.txtTab": "Lap", + "SSE.Controllers.Main.txtXAxis": "X tengely", + "SSE.Controllers.Main.txtYAxis": "Y tengely", + "SSE.Controllers.Main.unknownErrorText": "Ismeretlen hiba.", + "SSE.Controllers.Main.unsupportedBrowserErrorText ": "A böngészője nem támogatott.", + "SSE.Controllers.Main.uploadImageExtMessage": "Ismeretlen képformátum.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Nincs kép feltöltve.", + "SSE.Controllers.Main.uploadImageSizeMessage": "A maximális képmérethatár túllépve.", + "SSE.Controllers.Main.uploadImageTextText": "Kép feltöltése...", + "SSE.Controllers.Main.uploadImageTitleText": "Kép feltöltése", + "SSE.Controllers.Main.warnLicenseExceeded": "A párhuzamos kapcsolódások száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.
    Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.", + "SSE.Controllers.Main.warnLicenseExp": "A licence lejárt.
    Kérem frissítse a licencét, majd az oldalt.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "A párhuzamos felhasználók száma elérte a maximumot, így a dokumentum csak olvasható módban nyílik meg.
    Kérjük lépjen kapcsolatba a rendszer adminisztrátorral bővebb információkért.", + "SSE.Controllers.Main.warnNoLicense": "Ez a verziója az ONLYOFFICE Szerkesztőnek bizonyos limitációkat tartalmaz párhuzamos kapcsolódások terén a dokumentum szerverhez.
    Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.", + "SSE.Controllers.Main.warnNoLicenseUsers": "Ez a verziója az ONLYOFFICE Szerkesztőnek bizonyos limitációkat tartalmaz párhuzamosan kapcsolódott felhasználók terén.
    Amennyiben többre van szüksége, fontolja meg hogy kereskedelmi licenc megvásárlását.", + "SSE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.", + "SSE.Controllers.Search.textNoTextFound": "A szöveg nem található", + "SSE.Controllers.Search.textReplaceAll": "Mindent cserél", + "SSE.Controllers.Settings.notcriticalErrorTitle": "Figyelmeztetés", + "SSE.Controllers.Settings.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
    Biztos benne, hogy folytatni akarja?", + "SSE.Controllers.Statusbar.cancelButtonText": "Mégse", + "SSE.Controllers.Statusbar.errNameExists": "Az ilyen nevű munkalap már létezik.", + "SSE.Controllers.Statusbar.errNameWrongChar": "A lap neve nem tartalmazhatja az alábbi karaktereket: /, *,?, [,],:", + "SSE.Controllers.Statusbar.errNotEmpty": "A mukalap neve nem lehet üres", + "SSE.Controllers.Statusbar.errorLastSheet": "A munkafüzetnek legalább egy látható munkalapot kell tartalmaznia.", + "SSE.Controllers.Statusbar.errorRemoveSheet": "Nem törölhető a munkalap.", + "SSE.Controllers.Statusbar.menuDelete": "Töröl", + "SSE.Controllers.Statusbar.menuDuplicate": "Kettőzés", + "SSE.Controllers.Statusbar.menuHide": "Elrejt", + "SSE.Controllers.Statusbar.menuRename": "Név változtatása", + "SSE.Controllers.Statusbar.menuUnhide": "Megmutat", + "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Figyelmeztetés", + "SSE.Controllers.Statusbar.strRenameSheet": "Munkalap átnevezése", + "SSE.Controllers.Statusbar.strSheet": "Munkalap", + "SSE.Controllers.Statusbar.strSheetName": "Munkalap név", + "SSE.Controllers.Statusbar.textExternalLink": "Külső hivatkozás", + "SSE.Controllers.Statusbar.warnDeleteSheet": "A munkalapon lehetnek adatok. Folytassa a műveletet?", + "SSE.Controllers.Toolbar.dlgLeaveMsgText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ", + "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Bezárja az alkalmazást", + "SSE.Controllers.Toolbar.leaveButtonText": "Oldal elhagyása", + "SSE.Controllers.Toolbar.stayButtonText": "Maradni az oldalon", + "SSE.Views.AddFunction.sCatDateAndTime": "Dátum és idő", + "SSE.Views.AddFunction.sCatEngineering": "Mérnöki", + "SSE.Views.AddFunction.sCatFinancial": "Pénzügyi", + "SSE.Views.AddFunction.sCatInformation": "Információ", + "SSE.Views.AddFunction.sCatLogical": "Logikai", + "SSE.Views.AddFunction.sCatLookupAndReference": "Keresés és hivatkozás", + "SSE.Views.AddFunction.sCatMathematic": "Matematika és trigonometria", + "SSE.Views.AddFunction.sCatStatistical": "Statisztikai", + "SSE.Views.AddFunction.sCatTextAndData": "Szöveg és adat", + "SSE.Views.AddFunction.textBack": "Vissza", + "SSE.Views.AddFunction.textGroups": "Kategóriák", + "SSE.Views.AddLink.textAddLink": "Link hozzáadása", + "SSE.Views.AddLink.textAddress": "Cím", + "SSE.Views.AddLink.textDisplay": "Megjelenít", + "SSE.Views.AddLink.textExternalLink": "Külső hivatkozás", + "SSE.Views.AddLink.textInsert": "Beszúr", + "SSE.Views.AddLink.textInternalLink": "Belső adattartomány", + "SSE.Views.AddLink.textLink": "Link", + "SSE.Views.AddLink.textLinkSettings": "Link beállítások", + "SSE.Views.AddLink.textLinkType": "Link típusa", + "SSE.Views.AddLink.textRange": "Tartomány", + "SSE.Views.AddLink.textRequired": "Szükséges", + "SSE.Views.AddLink.textSheet": "Munkalap", + "SSE.Views.AddLink.textTip": "Gyorstipp", + "SSE.Views.AddOther.textAddress": "Cím", + "SSE.Views.AddOther.textBack": "Vissza", + "SSE.Views.AddOther.textFilter": "Szűrő", + "SSE.Views.AddOther.textFromLibrary": "Kép a galériából", + "SSE.Views.AddOther.textFromURL": "Kép URL-en keresztül", + "SSE.Views.AddOther.textImageURL": "Kép URL", + "SSE.Views.AddOther.textInsert": "Beszúr", + "SSE.Views.AddOther.textInsertImage": "Kép beszúrása", + "SSE.Views.AddOther.textLink": "Link", + "SSE.Views.AddOther.textSort": "Rendezés és szűrés", + "SSE.Views.EditCell.textAccounting": "Könyvelés", + "SSE.Views.EditCell.textAlignBottom": "Alulra rendez", + "SSE.Views.EditCell.textAlignCenter": "Középre rendez", + "SSE.Views.EditCell.textAlignLeft": "Balra rendez", + "SSE.Views.EditCell.textAlignMiddle": "Középre rendez", + "SSE.Views.EditCell.textAlignRight": "Jobbra rendez", + "SSE.Views.EditCell.textAlignTop": "Felfelé rendez", + "SSE.Views.EditCell.textAllBorders": "Jobb szegély", + "SSE.Views.EditCell.textBack": "Vissza", + "SSE.Views.EditCell.textBorderStyle": "Szegély stílus", + "SSE.Views.EditCell.textBottomBorder": "Alsó szegély", + "SSE.Views.EditCell.textCellStyle": "Cella stílusok", + "SSE.Views.EditCell.textColor": "Szín", + "SSE.Views.EditCell.textCurrency": "Pénznem", + "SSE.Views.EditCell.textDate": "Dátum", + "SSE.Views.EditCell.textDiagDownBorder": "Átlós szegély lefelé", + "SSE.Views.EditCell.textDiagUpBorder": "Átlós szegély felfelé", + "SSE.Views.EditCell.textDollar": "Dollár", + "SSE.Views.EditCell.textEuro": "Euró", + "SSE.Views.EditCell.textFillColor": "Kitöltőszín", + "SSE.Views.EditCell.textFonts": "Betűtípusok", + "SSE.Views.EditCell.textFormat": "Formátum", + "SSE.Views.EditCell.textGeneral": "Általános", + "SSE.Views.EditCell.textInBorders": "Belső szegélyek", + "SSE.Views.EditCell.textInHorBorder": "Belső vízszintes szegély", + "SSE.Views.EditCell.textInteger": "Egész szám", + "SSE.Views.EditCell.textInVertBorder": "Belső függőleges szegély", + "SSE.Views.EditCell.textJustified": "Sorkizárt", + "SSE.Views.EditCell.textLeftBorder": "Bal szegély", + "SSE.Views.EditCell.textMedium": "Közepes", + "SSE.Views.EditCell.textNoBorder": "Nincs szegély", + "SSE.Views.EditCell.textNumber": "Szám", + "SSE.Views.EditCell.textPercentage": "Százalék", + "SSE.Views.EditCell.textPound": "Font", + "SSE.Views.EditCell.textRightBorder": "Jobb szegély", + "SSE.Views.EditCell.textRouble": "Rubel", + "SSE.Views.EditCell.textScientific": "Tudományos", + "SSE.Views.EditCell.textSize": "Méret", + "SSE.Views.EditCell.textText": "Szöveg", + "SSE.Views.EditCell.textTextColor": "Szöveg szín", + "SSE.Views.EditCell.textTextFormat": "Szövegformátum", + "SSE.Views.EditCell.textThick": "Vastag", + "SSE.Views.EditCell.textThin": "Vékony", + "SSE.Views.EditCell.textTime": "Idő", + "SSE.Views.EditCell.textTopBorder": "Felső szegély", + "SSE.Views.EditCell.textWrapText": "Szövegtördelés", + "SSE.Views.EditCell.textYen": "Jen", + "SSE.Views.EditChart.textAuto": "Auto", + "SSE.Views.EditChart.textAxisCrosses": "Tengelykeresztek", + "SSE.Views.EditChart.textAxisOptions": "Tengely beállítások", + "SSE.Views.EditChart.textAxisPosition": "Tengely pozíció", + "SSE.Views.EditChart.textAxisTitle": "Tengely jelölés", + "SSE.Views.EditChart.textBack": "Vissza", + "SSE.Views.EditChart.textBackward": "Hátra mozgat", + "SSE.Views.EditChart.textBorder": "Szegély", + "SSE.Views.EditChart.textBottom": "Alsó", + "SSE.Views.EditChart.textChart": "Diagram", + "SSE.Views.EditChart.textChartTitle": "Diagram címe", + "SSE.Views.EditChart.textColor": "Szín", + "SSE.Views.EditChart.textCrossesValue": "Érték", + "SSE.Views.EditChart.textDataLabels": "Adatcímkék", + "SSE.Views.EditChart.textDesign": "Dizájn", + "SSE.Views.EditChart.textDisplayUnits": "Egységek mutatása", + "SSE.Views.EditChart.textFill": "Kitölt", + "SSE.Views.EditChart.textForward": "Előre mozgat", + "SSE.Views.EditChart.textGridlines": "Rácsvonalak", + "SSE.Views.EditChart.textHorAxis": "Vízszintes tengely", + "SSE.Views.EditChart.textHorizontal": "Vízszintes", + "SSE.Views.EditChart.textLabelOptions": "Címke beállítások", + "SSE.Views.EditChart.textLabelPos": "Címke pozíció", + "SSE.Views.EditChart.textLayout": "Elrendezés", + "SSE.Views.EditChart.textLeft": "Bal", + "SSE.Views.EditChart.textLeftOverlay": "Bal átfedés", + "SSE.Views.EditChart.textLegend": "Jelmagyarázat", + "SSE.Views.EditChart.textMajor": "Jelentősebb", + "SSE.Views.EditChart.textMajorMinor": "Jelentősebb és kisebb", + "SSE.Views.EditChart.textMajorType": "Főbb típusú", + "SSE.Views.EditChart.textMaxValue": "Maximum érték", + "SSE.Views.EditChart.textMinor": "Kisebb", + "SSE.Views.EditChart.textMinorType": "Kisebb típusú", + "SSE.Views.EditChart.textMinValue": "Minimum érték", + "SSE.Views.EditChart.textNone": "nincs", + "SSE.Views.EditChart.textNoOverlay": "Nincs átfedés", + "SSE.Views.EditChart.textOverlay": "Átfedés", + "SSE.Views.EditChart.textRemoveChart": "Diagram eltávolítása", + "SSE.Views.EditChart.textReorder": "Újrarendez", + "SSE.Views.EditChart.textRight": "Jobb", + "SSE.Views.EditChart.textRightOverlay": "Jobb átfedés", + "SSE.Views.EditChart.textRotated": "Elforgatott", + "SSE.Views.EditChart.textSize": "Méret", + "SSE.Views.EditChart.textStyle": "Stílus", + "SSE.Views.EditChart.textTickOptions": "Jelölés beállítások", + "SSE.Views.EditChart.textToBackground": "Háttérbe küld", + "SSE.Views.EditChart.textToForeground": "Elölre hoz", + "SSE.Views.EditChart.textTop": "Felső", + "SSE.Views.EditChart.textType": "Típus", + "SSE.Views.EditChart.textValReverseOrder": "Értékek fordított sorrendben", + "SSE.Views.EditChart.textVerAxis": "Függőleges tengely", + "SSE.Views.EditChart.textVertical": "Függőleges", + "SSE.Views.EditHyperlink.textBack": "Vissza", + "SSE.Views.EditHyperlink.textDisplay": "Megjelenít", + "SSE.Views.EditHyperlink.textEditLink": "Hivatkozás szerkesztése", + "SSE.Views.EditHyperlink.textExternalLink": "Külső hivatkozás", + "SSE.Views.EditHyperlink.textInternalLink": "Belső adattartomány", + "SSE.Views.EditHyperlink.textLink": "Link", + "SSE.Views.EditHyperlink.textLinkType": "Link típusa", + "SSE.Views.EditHyperlink.textRange": "Tartomány", + "SSE.Views.EditHyperlink.textRemoveLink": "Link eltávolítása", + "SSE.Views.EditHyperlink.textScreenTip": "Gyorstipp", + "SSE.Views.EditHyperlink.textSheet": "Munkalap", + "SSE.Views.EditImage.textAddress": "Cím", + "SSE.Views.EditImage.textBack": "Vissza", + "SSE.Views.EditImage.textBackward": "Hátra mozgat", + "SSE.Views.EditImage.textDefault": "Alapértelmezett méret", + "SSE.Views.EditImage.textForward": "Előre mozgat", + "SSE.Views.EditImage.textFromLibrary": "Kép a galériából", + "SSE.Views.EditImage.textFromURL": "Kép URL-en keresztül", + "SSE.Views.EditImage.textImageURL": "Kép URL", + "SSE.Views.EditImage.textLinkSettings": "Link beállítások", + "SSE.Views.EditImage.textRemove": "Kép eltávolítása", + "SSE.Views.EditImage.textReorder": "Újrarendez", + "SSE.Views.EditImage.textReplace": "Cserél", + "SSE.Views.EditImage.textReplaceImg": "Képet cserél", + "SSE.Views.EditImage.textToBackground": "Háttérbe küld", + "SSE.Views.EditImage.textToForeground": "Elölre hoz", + "SSE.Views.EditShape.textBack": "Vissza", + "SSE.Views.EditShape.textBackward": "Hátra mozgat", + "SSE.Views.EditShape.textBorder": "Szegély", + "SSE.Views.EditShape.textColor": "Szín", + "SSE.Views.EditShape.textEffects": "Effektek", + "SSE.Views.EditShape.textFill": "Kitölt", + "SSE.Views.EditShape.textForward": "Előre mozgat", + "SSE.Views.EditShape.textOpacity": "Átlátszóság", + "SSE.Views.EditShape.textRemoveShape": "Alakzat eltávolítása", + "SSE.Views.EditShape.textReorder": "Újrarendez", + "SSE.Views.EditShape.textReplace": "Cserél", + "SSE.Views.EditShape.textSize": "Méret", + "SSE.Views.EditShape.textStyle": "Stílus", + "SSE.Views.EditShape.textToBackground": "Háttérbe küld", + "SSE.Views.EditShape.textToForeground": "Elölre hoz", + "SSE.Views.EditText.textBack": "Vissza", + "SSE.Views.EditText.textFillColor": "Kitöltőszín", + "SSE.Views.EditText.textFonts": "Betűtípusok", + "SSE.Views.EditText.textSize": "Méret", + "SSE.Views.EditText.textTextColor": "Szöveg szín", + "SSE.Views.Search.textDone": "Kész", + "SSE.Views.Search.textFind": "Keres", + "SSE.Views.Search.textFindAndReplace": "Keres és cserél", + "SSE.Views.Search.textMatchCase": "Egyezés esete", + "SSE.Views.Search.textMatchCell": "Egyező cella", + "SSE.Views.Search.textReplace": "Cserél", + "SSE.Views.Search.textSearch": "Keresés", + "SSE.Views.Search.textSearchIn": "Keresés", + "SSE.Views.Search.textSheet": "Munkalap", + "SSE.Views.Search.textWorkbook": "Munkafüzet", + "SSE.Views.Settings.textAbout": "Névjegy", + "SSE.Views.Settings.textAddress": "Cím", + "SSE.Views.Settings.textAuthor": "Szerző", + "SSE.Views.Settings.textBack": "Vissza", + "SSE.Views.Settings.textCreateDate": "Létrehozás dátuma", + "SSE.Views.Settings.textDocInfo": "Munkafüzet infó", + "SSE.Views.Settings.textDocTitle": "Munkafüzet cím", + "SSE.Views.Settings.textDone": "Kész", + "SSE.Views.Settings.textDownload": "Letöltés", + "SSE.Views.Settings.textDownloadAs": "Letöltés mint...", + "SSE.Views.Settings.textEditDoc": "Dokumentum szerkesztése", + "SSE.Views.Settings.textEmail": "Email", + "SSE.Views.Settings.textFind": "Keres", + "SSE.Views.Settings.textFindAndReplace": "Keres és cserél", + "SSE.Views.Settings.textHelp": "Segítség", + "SSE.Views.Settings.textLoading": "Betöltés...", + "SSE.Views.Settings.textPoweredBy": "Powered by", + "SSE.Views.Settings.textPrint": "Nyomtat", + "SSE.Views.Settings.textSettings": "Beállítások", + "SSE.Views.Settings.textTel": "Tel.", + "SSE.Views.Settings.textVersion": "Verzió", + "SSE.Views.Settings.unknownText": "Ismeretlen", + "SSE.Views.Toolbar.textBack": "Vissza" +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index a00477d28..69d1ab7b1 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -115,6 +115,7 @@ "SSE.Controllers.Main.errorAutoFilterDataRange": "Impossibile eseguire l'operazione sull'intervallo celle selezionato.
    Seleziona un intervallo di celle uniforme all'interno o all'esterno della tabella e prova di nuovo.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L'operazione non può essere eseguita perché l'area contiene celle filtrate
    Scopri gli elementi filtrati e riprova.", "SSE.Controllers.Main.errorBadImageUrl": "URL dell'immagine errato", + "SSE.Controllers.Main.errorChangeArray": "Non è possibile modificare parte di un array.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Connessione al server persa. Impossibile modificare il documento.", "SSE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore.
    Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.

    Per maggiori dettagli sulla connessione al Document Server clicca qui", "SSE.Controllers.Main.errorCopyMultiselectArea": "Questo comando non può essere applicato a selezioni multiple.
    Seleziona un intervallo singolo e riprova.", @@ -125,6 +126,7 @@ "SSE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.", "SSE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.", "SSE.Controllers.Main.errorDefaultMessage": "Codice errore: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore mentre si lavorava sul documento.
    Utilizzare l'opzione 'Scarica' per salvare la copia di backup del file sul disco rigido del computer.", "SSE.Controllers.Main.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "SSE.Controllers.Main.errorFileRequest": "Errore esterno.
    Errore di richiesta di file. Si prega di contattare l'assistenza tecnica nel caso in cui l'errore persiste.", "SSE.Controllers.Main.errorFileVKey": "Errore esterno.
    Chiave di sicurezza scorretta. Si prega di contattare l'assistenza tecnica nel caso in cui l'errore persiste.", @@ -497,6 +499,7 @@ "SSE.Views.Settings.textHelp": "Aiuto", "SSE.Views.Settings.textLoading": "Caricamento in corso...", "SSE.Views.Settings.textPoweredBy": "Con tecnologia", + "SSE.Views.Settings.textPrint": "Stampa", "SSE.Views.Settings.textSettings": "Impostazioni", "SSE.Views.Settings.textTel": "Tel.", "SSE.Views.Settings.textVersion": "Versione", diff --git a/apps/spreadsheeteditor/mobile/resources/css/app-ios.css b/apps/spreadsheeteditor/mobile/resources/css/app-ios.css index e766ace1b..5d6a25e0c 100644 --- a/apps/spreadsheeteditor/mobile/resources/css/app-ios.css +++ b/apps/spreadsheeteditor/mobile/resources/css/app-ios.css @@ -6272,7 +6272,12 @@ i.icon.icon-reader { i.icon.icon-download { width: 22px; height: 28px; - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-1%203%2022%2028%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%2340865c%22%3E%3Cg%3E%3Cpolygon%20transform%3D%22rotate(180%2C10.5%2C12.4)%22%20points%3D%2210%2C21.2%2011%2C21.2%2011%2C5.6%2014.6%2C9.3%2015.3%2C8.5%2010.5%2C3.6%205.7%2C8.5%206.4%2C9.3%2010%2C5.6%20%22%20%2F%3E%3Cpolygon%20points%3D%2213%2C12%2013%2C13%2019%2C13%2019%2C30%202%2C30%202%2C13%208%2C13%208%2C12%201%2C12%201%2C13%201%2C30%201%2C31%2020%2C31%2020%2C30%2020%2C13%2020%2C12%20%20%22%20%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%2340865c%22%3E%3Cpath%20d%3D%22M12%200H11L11%2014L7.39999%2010.3L6.69999%2011.1L11.5%2016L16.3%2011.1L15.6%2010.3L12%2014L12%200Z%22%2F%3E%3Cpath%20d%3D%22M14%205V6H19V20H4V6H9V5H3V21H20V5H14Z%22%2F%3E%3C%2Fsvg%3E"); +} +i.icon.icon-print { + width: 22px; + height: 28px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-0%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%2340865c%22%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%201H17V6H21V17H17V21H5V17H1V6H5V1ZM6%206H16V2H6V6ZM5%2016V13H2V16H5ZM2%2012H20V7H2V12ZM20%2013H17V16H20V13ZM16%2013H6V20H16V13ZM14%2016H8V15H14V16ZM14%2018H8V17H14V18Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } i.icon.icon-info { width: 22px; @@ -6547,16 +6552,31 @@ i.icon.icon-format-pdf { height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-3.363%20-3.658%2033%2033%22%20height%3D%2233px%22%20width%3D%2233px%22%20y%3D%220px%22%20x%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M8.512%2C14.989c0.8-1.567%2C1.709-3.334%2C2.438-5.107l0%2C0l0.287-0.699%20%20c-0.949-3.616-1.52-6.52-1.011-8.396l0%2C0C10.362%2C0.297%2C10.929%2C0%2C11.535%2C0l0%2C0l0.368%2C0.005h0.068c0.83-0.013%2C1.22%2C1.042%2C1.264%2C1.453%20%20l0%2C0c0.073%2C0.684-0.242%2C1.839-0.242%2C1.839l0%2C0c0-0.467%2C0.018-1.221-0.276-1.873l0%2C0c-0.343-0.753-0.671-1.203-0.965-1.274l0%2C0%20%20C11.604%2C0.25%2C11.46%2C0.455%2C11.411%2C0.85l0%2C0c-0.104%2C0.553-0.134%2C1.252-0.134%2C1.611l0%2C0c0%2C1.272%2C0.25%2C2.952%2C0.743%2C4.684l0%2C0%20%20c0.093-0.269%2C0.174-0.526%2C0.24-0.768l0%2C0c0.101-0.38%2C0.743-2.9%2C0.743-2.9l0%2C0c0%2C0-0.162%2C3.354-0.388%2C4.371l0%2C0%20%20c-0.049%2C0.215-0.103%2C0.427-0.158%2C0.644l0%2C0c0.812%2C2.268%2C2.121%2C4.292%2C3.68%2C5.75l0%2C0c0.615%2C0.575%2C1.393%2C1.038%2C2.128%2C1.461l0%2C0%20%20c1.605-0.229%2C3.084-0.338%2C4.318-0.324l0%2C0c1.637%2C0.021%2C2.838%2C0.265%2C3.324%2C0.743l0%2C0c0.237%2C0.232%2C0.335%2C0.514%2C0.364%2C0.83l0%2C0%20%20c0.007%2C0.122-0.053%2C0.41-0.069%2C0.482l0%2C0c0.018-0.088%2C0.018-0.519-1.298-0.938l0%2C0c-1.033-0.33-2.971-0.32-5.295-0.073l0%2C0%20%20c2.688%2C1.315%2C5.308%2C1.969%2C6.138%2C1.577l0%2C0c0.203-0.1%2C0.448-0.437%2C0.448-0.437l0%2C0c0%2C0-0.146%2C0.665-0.252%2C0.831l0%2C0%20%20c-0.134%2C0.18-0.396%2C0.376-0.646%2C0.44l0%2C0c-1.312%2C0.351-4.722-0.459-7.695-2.158l0%2C0c-3.322%2C0.489-6.972%2C1.394-9.896%2C2.354l0%2C0%20%20c-2.874%2C5.036-5.036%2C7.35-6.793%2C6.47l0%2C0l-0.646-0.325c-0.263-0.149-0.303-0.516-0.242-0.813l0%2C0%20%20c0.205-1.003%2C1.462-2.513%2C3.988-4.021l0%2C0c0.272-0.165%2C1.483-0.805%2C1.483-0.805l0%2C0c0%2C0-0.896%2C0.868-1.106%2C1.038l0%2C0%20%20c-2.016%2C1.652-3.504%2C3.73-3.467%2C4.536l0%2C0l0.007%2C0.069C2.643%2C24.936%2C5.21%2C21.45%2C8.512%2C14.989%20M9.559%2C15.525%20%20c-0.551%2C1.038-1.09%2C2.001-1.588%2C2.886l0%2C0c2.752-1.153%2C5.715-1.892%2C8.535-2.416l0%2C0c-0.379-0.262-0.746-0.539-1.093-0.832l0%2C0%20%20c-1.555-1.313-2.737-2.955-3.596-4.681l0%2C0C11.273%2C11.948%2C10.626%2C13.507%2C9.559%2C15.525%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-pdfa { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2033%2033%22%20height%3D%2233px%22%20width%3D%2233px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.875%2018.648L11.9617%2018.4783C12.7401%2016.954%2013.6102%2015.2503%2014.312%2013.541L14.6%2012.841C13.65%209.225%2013.08%206.322%2013.589%204.445C13.726%203.956%2014.293%203.659%2014.899%203.659L15.268%203.664H15.336C16.166%203.651%2016.556%204.706%2016.6%205.117C16.673%205.8%2016.357%206.956%2016.357%206.956L16.3571%206.87946C16.358%206.40944%2016.3594%205.70047%2016.081%205.083C15.738%204.33%2015.41%203.879%2015.116%203.808C14.968%203.907%2014.824%204.112%2014.774%204.507C14.671%205.06%2014.641%205.759%2014.641%206.119C14.641%207.391%2014.891%209.071%2015.384%2010.802C15.477%2010.534%2015.558%2010.276%2015.624%2010.035C15.725%209.655%2016.367%207.134%2016.367%207.134C16.367%207.134%2016.205%2010.489%2015.979%2011.505C15.931%2011.72%2015.877%2011.932%2015.821%2012.149C16.633%2014.417%2017.942%2016.441%2019.501%2017.899C19.9467%2018.3157%2020.4779%2018.6735%2021.0164%2019H29C30.1046%2019%2031%2019.8954%2031%2021V29C31%2030.1046%2030.1046%2031%2029%2031H17C15.8954%2031%2015%2030.1046%2015%2029V21.5492C13.6156%2021.9019%2012.2807%2022.2896%2011.07%2022.687C8.19599%2027.724%206.03499%2030.038%204.27699%2029.158L3.62999%2028.833C3.36699%2028.683%203.32699%2028.317%203.38799%2028.02C3.59299%2027.017%204.84999%2025.507%207.37599%2023.999C7.64799%2023.834%208.85899%2023.194%208.85899%2023.194C8.85899%2023.194%207.96299%2024.062%207.75299%2024.232C5.73699%2025.884%204.24899%2027.962%204.28599%2028.768L4.29299%2028.837C6.00499%2028.594%208.57299%2025.109%2011.875%2018.648ZM18.775%2018.822C18.8461%2018.882%2018.918%2018.9413%2018.9906%2019H17C15.9681%2019%2015.1187%2019.7815%2015.0114%2020.785C13.7648%2021.146%2012.529%2021.5689%2011.333%2022.07C11.831%2021.185%2012.37%2020.222%2012.921%2019.184C13.989%2017.166%2014.636%2015.607%2015.18%2014.141C16.038%2015.867%2017.221%2017.508%2018.775%2018.822ZM21.5553%2027.3521H24.4447L24.9995%2029H26.7518L23.7581%2021.002H22.231L19.2537%2029H21.006L21.5553%2027.3521ZM23.9998%2026.0172H22.0002L22.9945%2023.0234L23.9998%2026.0172Z%22%20class%3D%22cls-1%22%2F%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-xlsx { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2263%22%20height%3D%2263%22%20viewBox%3D%2216.287%2032.45%2063.000002%2063%22%20xml%3Aspace%3D%22preserve%22%20%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22m%2053.774%2C43.725%20c%202.825%2C-0.2%205.663%2C-0.375%208.5%2C-0.512%20-3.337%2C6.837%20-6.688%2C13.675%20-10.087%2C20.487%203.438%2C7%206.95%2C13.95%2010.399%2C20.95%20-3.012%2C-0.175%20-6.012%2C-0.362%20-9.024%2C-0.575%20-2.125%2C-5.213%20-4.713%2C-10.25%20-6.237%2C-15.7%20-1.7%2C5.075%20-4.125%2C9.862%20-6.075%2C14.838%20-2.737%2C-0.038%20-5.476%2C-0.15%20-8.213%2C-0.263%203.212%2C-6.287%206.312%2C-12.624%209.624%2C-18.874%20-2.813%2C-6.438%20-5.899%2C-12.75%20-8.8%2C-19.15%202.75%2C-0.163%205.5%2C-0.325%208.25%2C-0.475%201.862%2C4.888%203.9%2C9.712%205.438%2C14.725%201.65%2C-5.313%204.112%2C-10.313%206.225%2C-15.451%20z%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-xltx { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%20xml%3Aspace%3D%22preserve%22%20%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3CclipPath%20id%3D%22clip-xltx%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20id%3D%22xltx%22%20clip-path%3D%22url(%23clip-xltx)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_19%22%20data-name%3D%22Path%2019%22%20d%3D%22M516.527%2C119.222q2.151-.131%2C4.314-.222-2.54%2C4.455-5.119%2C8.9c1.744%2C3.04%2C3.528%2C6.06%2C5.278%2C9.1-1.528-.076-3.052-.158-4.581-.251a58.98%2C58.98%2C0%2C0%2C1-3.166-6.819c-.862%2C2.2-2.094%2C4.284-3.084%2C6.445-1.389-.017-2.779-.066-4.168-.114%2C1.63-2.732%2C3.2-5.484%2C4.885-8.2-1.428-2.8-2.994-5.54-4.467-8.319q2.095-.106%2C4.188-.206c.945%2C2.123%2C1.98%2C4.218%2C2.76%2C6.4C514.205%2C123.626%2C515.454%2C121.454%2C516.527%2C119.222Z%22%20transform%3D%22translate(-504%20-117)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-ods { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%20-54.11%20193.631%20193.63%22%20height%3D%22193.63px%22%20width%3D%22193.631px%22%20y%3D%220px%22%20x%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M193.16%2C5.615V5.609c-0.334-0.173-0.671-0.334-1.005-0.497%20%20c-5.356-2.586-11.256-4.287-17.525-4.88c-11.083-1.049-21.673%2C1.496-30.622%2C6.678c-6.13-3.477-13.071-5.741-20.542-6.448%20%20c-10.298-0.974-20.17%2C1.16-28.697%2C5.629c-0.084%2C0.044-0.17%2C0.095-0.251%2C0.135c-0.207%2C0.162-0.347%2C0.414-0.347%2C0.697%20%20c0%2C0.492%2C0.392%2C0.89%2C0.889%2C0.89c0.046%2C0%2C0.091-0.007%2C0.139-0.017c0.021-0.002%2C0.042-0.011%2C0.061-0.015%20%20c4.586-0.848%2C9.368-1.088%2C14.243-0.627c13.684%2C1.293%2C25.609%2C5.521%2C33.975%2C15.011c0.437%2C0.455%2C0.822%2C0.427%2C1.266-0.024%20%20c10.523-12.2%2C26.662-17.021%2C44.006-15.382c0.968%2C0.094%2C1.921%2C0.213%2C2.871%2C0.355c0.33%2C0.05%2C0.836%2C0.134%2C1.133%2C0.167%20%20c0.572%2C0.063%2C0.88-0.397%2C0.88-0.891C193.629%2C6.056%2C193.485%2C5.776%2C193.16%2C5.615L193.16%2C5.615z%22%20class%3D%22cls-1%22%20%2F%3E%3Cpath%20d%3D%22M173.054%2C48.544c-0.057-0.028-0.107-0.046-0.154-0.065%20%20c-10.518-4.35-22.021-6.758-34.094-6.758c-19.293%2C0-37.154%2C6.127-51.757%2C16.524c-11.146-4.993-23.497-7.776-36.496-7.776%20%20c-18.485%2C0-35.648%2C5.617-49.895%2C15.237c-0.047%2C0.029-0.095%2C0.066-0.149%2C0.104C0.205%2C66.044%2C0%2C66.418%2C0%2C66.848%20%20c0%2C0.729%2C0.592%2C1.323%2C1.323%2C1.323c0.086%2C0%2C0.174-0.013%2C0.259-0.03c0.058-0.015%2C0.107-0.027%2C0.161-0.048%20%20c8.166-2.456%2C16.832-3.791%2C25.798-3.791c23.836%2C0%2C45.083%2C5.634%2C61.08%2C20.681c0.038%2C0.028%2C0.071%2C0.065%2C0.111%2C0.104%20%20c0.232%2C0.205%2C0.53%2C0.325%2C0.863%2C0.325c0.412%2C0%2C0.774-0.188%2C1.018-0.486c0.006%2C0.005%2C0.515-0.72%2C0.773-1.069%20%20c16.246-22.217%2C43.03-33.172%2C72.845-33.172c2.129%2C0%2C4.246%2C0.08%2C6.338%2C0.225c0.602%2C0.047%2C1.873%2C0.144%2C1.902%2C0.144%20%20c0.727%2C0%2C1.322-0.591%2C1.322-1.323C173.796%2C49.203%2C173.492%2C48.752%2C173.054%2C48.544L173.054%2C48.544z%22%20class%3D%22cls-1%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-ots { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-ots%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22ots%22%20clip-path%3D%22url(%23clip-ots)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_33%22%20data-name%3D%22Path%2033%22%20d%3D%22M125.173%2C121h0c-.046-.03-.093-.059-.141-.088a6.133%2C6.133%2C0%2C0%2C0-2.467-.869%2C6.014%2C6.014%2C0%2C0%2C0-4.309%2C1.188%2C6.223%2C6.223%2C0%2C0%2C0-2.892-1.147%2C5.965%2C5.965%2C0%2C0%2C0-4.039%2C1l-.036.024a.176.176%2C0%2C0%2C0-.049.125.145.145%2C0%2C0%2C0%2C.126.158l.019%2C0a.019.019%2C0%2C0%2C0%2C.009%2C0%2C5.781%2C5.781%2C0%2C0%2C1%2C2.005-.111%2C6.41%2C6.41%2C0%2C0%2C1%2C4.782%2C2.669c.06.081.115.076.178%2C0a6.288%2C6.288%2C0%2C0%2C1%2C6.194-2.735c.136.017.27.038.4.064.047.009.119.024.161.03.08.011.123-.071.123-.159A.155.155%2C0%2C0%2C0%2C125.173%2C121Z%22%20transform%3D%22translate(-94.24%20-116)%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_34%22%20data-name%3D%22Path%2034%22%20d%3D%22M126.894%2C125.978a.175.175%2C0%2C0%2C0-.022-.011%2C11.686%2C11.686%2C0%2C0%2C0-4.905-1.082%2C11.924%2C11.924%2C0%2C0%2C0-7.444%2C2.647%2C11.725%2C11.725%2C0%2C0%2C0-5.251-1.245%2C11.884%2C11.884%2C0%2C0%2C0-7.176%2C2.441.229.229%2C0%2C0%2C0-.022.016.217.217%2C0%2C0%2C0-.073.167.2.2%2C0%2C0%2C0%2C.191.211.167.167%2C0%2C0%2C0%2C.037%2C0%2C.118.118%2C0%2C0%2C0%2C.023-.008%2C11.679%2C11.679%2C0%2C0%2C1%2C3.71-.608c3.429%2C0%2C6.486.9%2C8.787%2C3.315a.093.093%2C0%2C0%2C1%2C.016.016.172.172%2C0%2C0%2C0%2C.123.052.18.18%2C0%2C0%2C0%2C.147-.078s.075-.115.111-.171a12.1%2C12.1%2C0%2C0%2C1%2C10.479-5.315c.306%2C0%2C.611.014.912.037l.273.022a.2.2%2C0%2C0%2C0%2C.191-.211A.211.211%2C0%2C0%2C0%2C126.894%2C125.978Z%22%20transform%3D%22translate(-100%20-115.885)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-csv { width: 30px; height: 30px; @@ -7063,6 +7083,9 @@ html.pixel-ratio-3 .box-tabs ul > li:after { .searchbar.document { background: #e4e4e6; } +.label-switch input[type="checkbox"]:checked + .checkbox { + background: #40865c; +} #add-table .page, #add-shape .page { background-color: #fff; diff --git a/apps/spreadsheeteditor/mobile/resources/css/app-material.css b/apps/spreadsheeteditor/mobile/resources/css/app-material.css index 4b3371eec..e5425b939 100644 --- a/apps/spreadsheeteditor/mobile/resources/css/app-material.css +++ b/apps/spreadsheeteditor/mobile/resources/css/app-material.css @@ -5948,7 +5948,12 @@ i.icon.icon-reader { i.icon.icon-download { width: 22px; height: 28px; - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-1%203%2022%2028%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%2340865c%22%3E%3Cg%3E%3Cpolygon%20transform%3D%22rotate(180%2C10.5%2C12.4)%22%20points%3D%2210%2C21.2%2011%2C21.2%2011%2C5.6%2014.6%2C9.3%2015.3%2C8.5%2010.5%2C3.6%205.7%2C8.5%206.4%2C9.3%2010%2C5.6%20%22%20%2F%3E%3Cpolygon%20points%3D%2213%2C12%2013%2C13%2019%2C13%2019%2C30%202%2C30%202%2C13%208%2C13%208%2C12%201%2C12%201%2C13%201%2C30%201%2C31%2020%2C31%2020%2C30%2020%2C13%2020%2C12%20%20%22%20%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%2340865c%22%3E%3Cpath%20d%3D%22M12%200H11L11%2014L7.39999%2010.3L6.69999%2011.1L11.5%2016L16.3%2011.1L15.6%2010.3L12%2014L12%200Z%22%2F%3E%3Cpath%20d%3D%22M14%205V6H19V20H4V6H9V5H3V21H20V5H14Z%22%2F%3E%3C%2Fsvg%3E"); +} +i.icon.icon-print { + width: 22px; + height: 28px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-0%200%2022%2022%22%20y%3D%220px%22%20x%3D%220px%22%20fill%3D%22%2340865c%22%3E%3Cg%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%201H17V6H21V17H17V21H5V17H1V6H5V1ZM6%206H16V2H6V6ZM5%2016V13H2V16H5ZM2%2012H20V7H2V12ZM20%2013H17V16H20V13ZM16%2013H6V20H16V13ZM14%2016H8V15H14V16ZM14%2018H8V17H14V18Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); } i.icon.icon-info { width: 22px; @@ -6187,16 +6192,31 @@ i.icon.icon-format-pdf { height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%22-3.363%20-3.658%2033%2033%22%20height%3D%2233px%22%20width%3D%2233px%22%20y%3D%220px%22%20x%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M8.512%2C14.989c0.8-1.567%2C1.709-3.334%2C2.438-5.107l0%2C0l0.287-0.699%20%20c-0.949-3.616-1.52-6.52-1.011-8.396l0%2C0C10.362%2C0.297%2C10.929%2C0%2C11.535%2C0l0%2C0l0.368%2C0.005h0.068c0.83-0.013%2C1.22%2C1.042%2C1.264%2C1.453%20%20l0%2C0c0.073%2C0.684-0.242%2C1.839-0.242%2C1.839l0%2C0c0-0.467%2C0.018-1.221-0.276-1.873l0%2C0c-0.343-0.753-0.671-1.203-0.965-1.274l0%2C0%20%20C11.604%2C0.25%2C11.46%2C0.455%2C11.411%2C0.85l0%2C0c-0.104%2C0.553-0.134%2C1.252-0.134%2C1.611l0%2C0c0%2C1.272%2C0.25%2C2.952%2C0.743%2C4.684l0%2C0%20%20c0.093-0.269%2C0.174-0.526%2C0.24-0.768l0%2C0c0.101-0.38%2C0.743-2.9%2C0.743-2.9l0%2C0c0%2C0-0.162%2C3.354-0.388%2C4.371l0%2C0%20%20c-0.049%2C0.215-0.103%2C0.427-0.158%2C0.644l0%2C0c0.812%2C2.268%2C2.121%2C4.292%2C3.68%2C5.75l0%2C0c0.615%2C0.575%2C1.393%2C1.038%2C2.128%2C1.461l0%2C0%20%20c1.605-0.229%2C3.084-0.338%2C4.318-0.324l0%2C0c1.637%2C0.021%2C2.838%2C0.265%2C3.324%2C0.743l0%2C0c0.237%2C0.232%2C0.335%2C0.514%2C0.364%2C0.83l0%2C0%20%20c0.007%2C0.122-0.053%2C0.41-0.069%2C0.482l0%2C0c0.018-0.088%2C0.018-0.519-1.298-0.938l0%2C0c-1.033-0.33-2.971-0.32-5.295-0.073l0%2C0%20%20c2.688%2C1.315%2C5.308%2C1.969%2C6.138%2C1.577l0%2C0c0.203-0.1%2C0.448-0.437%2C0.448-0.437l0%2C0c0%2C0-0.146%2C0.665-0.252%2C0.831l0%2C0%20%20c-0.134%2C0.18-0.396%2C0.376-0.646%2C0.44l0%2C0c-1.312%2C0.351-4.722-0.459-7.695-2.158l0%2C0c-3.322%2C0.489-6.972%2C1.394-9.896%2C2.354l0%2C0%20%20c-2.874%2C5.036-5.036%2C7.35-6.793%2C6.47l0%2C0l-0.646-0.325c-0.263-0.149-0.303-0.516-0.242-0.813l0%2C0%20%20c0.205-1.003%2C1.462-2.513%2C3.988-4.021l0%2C0c0.272-0.165%2C1.483-0.805%2C1.483-0.805l0%2C0c0%2C0-0.896%2C0.868-1.106%2C1.038l0%2C0%20%20c-2.016%2C1.652-3.504%2C3.73-3.467%2C4.536l0%2C0l0.007%2C0.069C2.643%2C24.936%2C5.21%2C21.45%2C8.512%2C14.989%20M9.559%2C15.525%20%20c-0.551%2C1.038-1.09%2C2.001-1.588%2C2.886l0%2C0c2.752-1.153%2C5.715-1.892%2C8.535-2.416l0%2C0c-0.379-0.262-0.746-0.539-1.093-0.832l0%2C0%20%20c-1.555-1.313-2.737-2.955-3.596-4.681l0%2C0C11.273%2C11.948%2C10.626%2C13.507%2C9.559%2C15.525%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-pdfa { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2033%2033%22%20height%3D%2233px%22%20width%3D%2233px%22%20y%3D%220px%22%20x%3D%220px%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.875%2018.648L11.9617%2018.4783C12.7401%2016.954%2013.6102%2015.2503%2014.312%2013.541L14.6%2012.841C13.65%209.225%2013.08%206.322%2013.589%204.445C13.726%203.956%2014.293%203.659%2014.899%203.659L15.268%203.664H15.336C16.166%203.651%2016.556%204.706%2016.6%205.117C16.673%205.8%2016.357%206.956%2016.357%206.956L16.3571%206.87946C16.358%206.40944%2016.3594%205.70047%2016.081%205.083C15.738%204.33%2015.41%203.879%2015.116%203.808C14.968%203.907%2014.824%204.112%2014.774%204.507C14.671%205.06%2014.641%205.759%2014.641%206.119C14.641%207.391%2014.891%209.071%2015.384%2010.802C15.477%2010.534%2015.558%2010.276%2015.624%2010.035C15.725%209.655%2016.367%207.134%2016.367%207.134C16.367%207.134%2016.205%2010.489%2015.979%2011.505C15.931%2011.72%2015.877%2011.932%2015.821%2012.149C16.633%2014.417%2017.942%2016.441%2019.501%2017.899C19.9467%2018.3157%2020.4779%2018.6735%2021.0164%2019H29C30.1046%2019%2031%2019.8954%2031%2021V29C31%2030.1046%2030.1046%2031%2029%2031H17C15.8954%2031%2015%2030.1046%2015%2029V21.5492C13.6156%2021.9019%2012.2807%2022.2896%2011.07%2022.687C8.19599%2027.724%206.03499%2030.038%204.27699%2029.158L3.62999%2028.833C3.36699%2028.683%203.32699%2028.317%203.38799%2028.02C3.59299%2027.017%204.84999%2025.507%207.37599%2023.999C7.64799%2023.834%208.85899%2023.194%208.85899%2023.194C8.85899%2023.194%207.96299%2024.062%207.75299%2024.232C5.73699%2025.884%204.24899%2027.962%204.28599%2028.768L4.29299%2028.837C6.00499%2028.594%208.57299%2025.109%2011.875%2018.648ZM18.775%2018.822C18.8461%2018.882%2018.918%2018.9413%2018.9906%2019H17C15.9681%2019%2015.1187%2019.7815%2015.0114%2020.785C13.7648%2021.146%2012.529%2021.5689%2011.333%2022.07C11.831%2021.185%2012.37%2020.222%2012.921%2019.184C13.989%2017.166%2014.636%2015.607%2015.18%2014.141C16.038%2015.867%2017.221%2017.508%2018.775%2018.822ZM21.5553%2027.3521H24.4447L24.9995%2029H26.7518L23.7581%2021.002H22.231L19.2537%2029H21.006L21.5553%2027.3521ZM23.9998%2026.0172H22.0002L22.9945%2023.0234L23.9998%2026.0172Z%22%20class%3D%22cls-1%22%2F%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-xlsx { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2263%22%20height%3D%2263%22%20viewBox%3D%2216.287%2032.45%2063.000002%2063%22%20xml%3Aspace%3D%22preserve%22%20%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22m%2053.774%2C43.725%20c%202.825%2C-0.2%205.663%2C-0.375%208.5%2C-0.512%20-3.337%2C6.837%20-6.688%2C13.675%20-10.087%2C20.487%203.438%2C7%206.95%2C13.95%2010.399%2C20.95%20-3.012%2C-0.175%20-6.012%2C-0.362%20-9.024%2C-0.575%20-2.125%2C-5.213%20-4.713%2C-10.25%20-6.237%2C-15.7%20-1.7%2C5.075%20-4.125%2C9.862%20-6.075%2C14.838%20-2.737%2C-0.038%20-5.476%2C-0.15%20-8.213%2C-0.263%203.212%2C-6.287%206.312%2C-12.624%209.624%2C-18.874%20-2.813%2C-6.438%20-5.899%2C-12.75%20-8.8%2C-19.15%202.75%2C-0.163%205.5%2C-0.325%208.25%2C-0.475%201.862%2C4.888%203.9%2C9.712%205.438%2C14.725%201.65%2C-5.313%204.112%2C-10.313%206.225%2C-15.451%20z%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-xltx { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%20xml%3Aspace%3D%22preserve%22%20%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3CclipPath%20id%3D%22clip-xltx%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20id%3D%22xltx%22%20clip-path%3D%22url(%23clip-xltx)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_19%22%20data-name%3D%22Path%2019%22%20d%3D%22M516.527%2C119.222q2.151-.131%2C4.314-.222-2.54%2C4.455-5.119%2C8.9c1.744%2C3.04%2C3.528%2C6.06%2C5.278%2C9.1-1.528-.076-3.052-.158-4.581-.251a58.98%2C58.98%2C0%2C0%2C1-3.166-6.819c-.862%2C2.2-2.094%2C4.284-3.084%2C6.445-1.389-.017-2.779-.066-4.168-.114%2C1.63-2.732%2C3.2-5.484%2C4.885-8.2-1.428-2.8-2.994-5.54-4.467-8.319q2.095-.106%2C4.188-.206c.945%2C2.123%2C1.98%2C4.218%2C2.76%2C6.4C514.205%2C123.626%2C515.454%2C121.454%2C516.527%2C119.222Z%22%20transform%3D%22translate(-504%20-117)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-ods { width: 30px; height: 30px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%20-54.11%20193.631%20193.63%22%20height%3D%22193.63px%22%20width%3D%22193.631px%22%20y%3D%220px%22%20x%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cpath%20d%3D%22M193.16%2C5.615V5.609c-0.334-0.173-0.671-0.334-1.005-0.497%20%20c-5.356-2.586-11.256-4.287-17.525-4.88c-11.083-1.049-21.673%2C1.496-30.622%2C6.678c-6.13-3.477-13.071-5.741-20.542-6.448%20%20c-10.298-0.974-20.17%2C1.16-28.697%2C5.629c-0.084%2C0.044-0.17%2C0.095-0.251%2C0.135c-0.207%2C0.162-0.347%2C0.414-0.347%2C0.697%20%20c0%2C0.492%2C0.392%2C0.89%2C0.889%2C0.89c0.046%2C0%2C0.091-0.007%2C0.139-0.017c0.021-0.002%2C0.042-0.011%2C0.061-0.015%20%20c4.586-0.848%2C9.368-1.088%2C14.243-0.627c13.684%2C1.293%2C25.609%2C5.521%2C33.975%2C15.011c0.437%2C0.455%2C0.822%2C0.427%2C1.266-0.024%20%20c10.523-12.2%2C26.662-17.021%2C44.006-15.382c0.968%2C0.094%2C1.921%2C0.213%2C2.871%2C0.355c0.33%2C0.05%2C0.836%2C0.134%2C1.133%2C0.167%20%20c0.572%2C0.063%2C0.88-0.397%2C0.88-0.891C193.629%2C6.056%2C193.485%2C5.776%2C193.16%2C5.615L193.16%2C5.615z%22%20class%3D%22cls-1%22%20%2F%3E%3Cpath%20d%3D%22M173.054%2C48.544c-0.057-0.028-0.107-0.046-0.154-0.065%20%20c-10.518-4.35-22.021-6.758-34.094-6.758c-19.293%2C0-37.154%2C6.127-51.757%2C16.524c-11.146-4.993-23.497-7.776-36.496-7.776%20%20c-18.485%2C0-35.648%2C5.617-49.895%2C15.237c-0.047%2C0.029-0.095%2C0.066-0.149%2C0.104C0.205%2C66.044%2C0%2C66.418%2C0%2C66.848%20%20c0%2C0.729%2C0.592%2C1.323%2C1.323%2C1.323c0.086%2C0%2C0.174-0.013%2C0.259-0.03c0.058-0.015%2C0.107-0.027%2C0.161-0.048%20%20c8.166-2.456%2C16.832-3.791%2C25.798-3.791c23.836%2C0%2C45.083%2C5.634%2C61.08%2C20.681c0.038%2C0.028%2C0.071%2C0.065%2C0.111%2C0.104%20%20c0.232%2C0.205%2C0.53%2C0.325%2C0.863%2C0.325c0.412%2C0%2C0.774-0.188%2C1.018-0.486c0.006%2C0.005%2C0.515-0.72%2C0.773-1.069%20%20c16.246-22.217%2C43.03-33.172%2C72.845-33.172c2.129%2C0%2C4.246%2C0.08%2C6.338%2C0.225c0.602%2C0.047%2C1.873%2C0.144%2C1.902%2C0.144%20%20c0.727%2C0%2C1.322-0.591%2C1.322-1.323C173.796%2C49.203%2C173.492%2C48.752%2C173.054%2C48.544L173.054%2C48.544z%22%20class%3D%22cls-1%22%20%2F%3E%3C%2Fsvg%3E"); } +i.icon.icon-format-ots { + width: 30px; + height: 30px; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-ots%22%3E%3Crect%20width%3D%2233%22%20height%3D%2233%22%2F%3E%3C%2FclipPath%3E%3Cstyle%3E.cls-1%7Bfill%3A%2340865c%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22ots%22%20clip-path%3D%22url(%23clip-ots)%22%3E%3Crect%20id%3D%22Rectangle_20%22%20data-name%3D%22Rectangle%2020%22%20width%3D%2233%22%20height%3D%2233%22%20fill%3D%22none%22%2F%3E%3Cpath%20id%3D%22Path_33%22%20data-name%3D%22Path%2033%22%20d%3D%22M125.173%2C121h0c-.046-.03-.093-.059-.141-.088a6.133%2C6.133%2C0%2C0%2C0-2.467-.869%2C6.014%2C6.014%2C0%2C0%2C0-4.309%2C1.188%2C6.223%2C6.223%2C0%2C0%2C0-2.892-1.147%2C5.965%2C5.965%2C0%2C0%2C0-4.039%2C1l-.036.024a.176.176%2C0%2C0%2C0-.049.125.145.145%2C0%2C0%2C0%2C.126.158l.019%2C0a.019.019%2C0%2C0%2C0%2C.009%2C0%2C5.781%2C5.781%2C0%2C0%2C1%2C2.005-.111%2C6.41%2C6.41%2C0%2C0%2C1%2C4.782%2C2.669c.06.081.115.076.178%2C0a6.288%2C6.288%2C0%2C0%2C1%2C6.194-2.735c.136.017.27.038.4.064.047.009.119.024.161.03.08.011.123-.071.123-.159A.155.155%2C0%2C0%2C0%2C125.173%2C121Z%22%20transform%3D%22translate(-94.24%20-116)%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_34%22%20data-name%3D%22Path%2034%22%20d%3D%22M126.894%2C125.978a.175.175%2C0%2C0%2C0-.022-.011%2C11.686%2C11.686%2C0%2C0%2C0-4.905-1.082%2C11.924%2C11.924%2C0%2C0%2C0-7.444%2C2.647%2C11.725%2C11.725%2C0%2C0%2C0-5.251-1.245%2C11.884%2C11.884%2C0%2C0%2C0-7.176%2C2.441.229.229%2C0%2C0%2C0-.022.016.217.217%2C0%2C0%2C0-.073.167.2.2%2C0%2C0%2C0%2C.191.211.167.167%2C0%2C0%2C0%2C.037%2C0%2C.118.118%2C0%2C0%2C0%2C.023-.008%2C11.679%2C11.679%2C0%2C0%2C1%2C3.71-.608c3.429%2C0%2C6.486.9%2C8.787%2C3.315a.093.093%2C0%2C0%2C1%2C.016.016.172.172%2C0%2C0%2C0%2C.123.052.18.18%2C0%2C0%2C0%2C.147-.078s.075-.115.111-.171a12.1%2C12.1%2C0%2C0%2C1%2C10.479-5.315c.306%2C0%2C.611.014.912.037l.273.022a.2.2%2C0%2C0%2C0%2C.191-.211A.211.211%2C0%2C0%2C0%2C126.894%2C125.978Z%22%20transform%3D%22translate(-100%20-115.885)%22%20class%3D%22cls-1%22%2F%3E%3Cg%20id%3D%22Group_5%22%20data-name%3D%22Group%205%22%20transform%3D%22translate(16%2016)%22%3E%3Cpath%20id%3D%22Path_44%22%20data-name%3D%22Path%2044%22%20d%3D%22M1.011%2C0H13.989A1.011%2C1.011%2C0%2C0%2C1%2C15%2C1.011V13.989A1.011%2C1.011%2C0%2C0%2C1%2C13.989%2C15H1.011A1.011%2C1.011%2C0%2C0%2C1%2C0%2C13.989V1.011A1.011%2C1.011%2C0%2C0%2C1%2C1.011%2C0Z%22%20class%3D%22cls-1%22%2F%3E%3Cpath%20id%3D%22Path_39%22%20data-name%3D%22Path%2039%22%20d%3D%22M5.794%2C13.25V3.911H9.258V2.25h-9V3.911H3.729V13.25Z%22%20transform%3D%22translate(2.742%20-0.25)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E"); +} i.icon.icon-format-csv { width: 30px; height: 30px; diff --git a/apps/spreadsheeteditor/mobile/resources/less/app-ios.less b/apps/spreadsheeteditor/mobile/resources/less/app-ios.less index 33c9e0caa..82301d8b0 100644 --- a/apps/spreadsheeteditor/mobile/resources/less/app-ios.less +++ b/apps/spreadsheeteditor/mobile/resources/less/app-ios.less @@ -80,6 +80,10 @@ input, textarea { @import url('statusbar'); @import url('ios/_search.less'); +.label-switch input[type="checkbox"]:checked + .checkbox { + background: @themeColor; +} + // Add Container #add-table, diff --git a/apps/spreadsheeteditor/mobile/resources/less/ios/_icons.less b/apps/spreadsheeteditor/mobile/resources/less/ios/_icons.less index cff8fae3e..31348dc33 100644 --- a/apps/spreadsheeteditor/mobile/resources/less/ios/_icons.less +++ b/apps/spreadsheeteditor/mobile/resources/less/ios/_icons.less @@ -33,7 +33,12 @@ i.icon { &.icon-download { width: 22px; height: 28px; - .encoded-svg-background(''); + .encoded-svg-background(''); + } + &.icon-print { + width: 22px; + height: 28px; + .encoded-svg-background(''); } &.icon-info { width: 22px; @@ -317,16 +322,31 @@ i.icon { height: 30px; .encoded-svg-background(''); } + &.icon-format-pdfa { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-xlsx { width: 30px; height: 30px; .encoded-svg-background(''); } + &.icon-format-xltx { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-ods { width: 30px; height: 30px; .encoded-svg-background(''); } + &.icon-format-ots { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-csv { width: 30px; height: 30px; diff --git a/apps/spreadsheeteditor/mobile/resources/less/material/_icons.less b/apps/spreadsheeteditor/mobile/resources/less/material/_icons.less index d006d12af..30cc6a140 100644 --- a/apps/spreadsheeteditor/mobile/resources/less/material/_icons.less +++ b/apps/spreadsheeteditor/mobile/resources/less/material/_icons.less @@ -33,7 +33,12 @@ i.icon { &.icon-download { width: 22px; height: 28px; - .encoded-svg-background(''); + .encoded-svg-background(''); + } + &.icon-print { + width: 22px; + height: 28px; + .encoded-svg-background(''); } &.icon-info { width: 22px; @@ -280,16 +285,31 @@ i.icon { height: 30px; .encoded-svg-background(''); } + &.icon-format-pdfa { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-xlsx { width: 30px; height: 30px; .encoded-svg-background(''); } + &.icon-format-xltx { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-ods { width: 30px; height: 30px; .encoded-svg-background(''); } + &.icon-format-ots { + width: 30px; + height: 30px; + .encoded-svg-background(''); + } &.icon-format-csv { width: 30px; height: 30px; diff --git a/apps/spreadsheeteditor/sdk_dev_scripts.js b/apps/spreadsheeteditor/sdk_dev_scripts.js index df55c9f55..5cfe913f2 100644 --- a/apps/spreadsheeteditor/sdk_dev_scripts.js +++ b/apps/spreadsheeteditor/sdk_dev_scripts.js @@ -93,7 +93,6 @@ var sdk_dev_scrpipts = [ "../../../../sdkjs/cell/model/autofilters.js", "../../../../sdkjs/cell/graphics/DrawingContext.js", "../../../../sdkjs/cell/graphics/pdfprinter.js", - "../../../../sdkjs/cell/model/ConditionalFormatting.js", "../../../../sdkjs/cell/model/FormulaObjects/parserFormula.js", "../../../../sdkjs/cell/model/FormulaObjects/_xlfnFunctions.js", "../../../../sdkjs/cell/model/FormulaObjects/dateandtimeFunctions.js", @@ -111,6 +110,7 @@ var sdk_dev_scrpipts = [ "../../../../sdkjs/cell/model/WorkbookElems.js", "../../../../sdkjs/cell/model/Workbook.js", "../../../../sdkjs/cell/model/Serialize.js", + "../../../../sdkjs/cell/model/ConditionalFormatting.js", "../../../../sdkjs/cell/model/CellInfo.js", "../../../../sdkjs/cell/view/mobileTouch.js", "../../../../sdkjs/cell/view/StringRender.js",