diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index f0f72168d..274993c62 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -219,8 +219,9 @@ uiTheme: 'theme-dark' // set interface theme: id or default-dark/default-light }, coEditing: { - mode: 'fast', // , 'fast' or 'strict'. if 'fast' and 'customization.autosave'=false -> set 'customization.autosave'=true - change: true, // can change co-authoring mode + mode: 'fast', // , 'fast' or 'strict'. if 'fast' and 'customization.autosave'=false -> set 'customization.autosave'=true. 'fast' - default for editor + // for viewer: 'strict' is default, offline viewer; 'fast' - live viewer, show changes from other users + change: true, // can change co-authoring mode. true - default for editor, false - default for viewer }, plugins: { autostart: ['asc.{FFE1F462-1EA2-4391-990D-4CC84940B754}'], @@ -913,7 +914,7 @@ if ( typeof(customization) == 'object' && ( customization.toolbarNoTabs || (config.editorConfig.targetApp!=='desktop') && (customization.loaderName || customization.loaderLogo))) { index = "/index_loader.html"; - } else if (config.editorConfig.mode === 'editdiagram' || config.editorConfig.mode === 'editmerge') + } else if (config.editorConfig.mode === 'editdiagram' || config.editorConfig.mode === 'editmerge' || config.editorConfig.mode === 'editole') index = "/index_internal.html"; } @@ -947,7 +948,7 @@ } } - if (config.editorConfig && (config.editorConfig.mode == 'editdiagram' || config.editorConfig.mode == 'editmerge')) + if (config.editorConfig && (config.editorConfig.mode == 'editdiagram' || config.editorConfig.mode == 'editmerge' || config.editorConfig.mode == 'editole')) params += "&internal=true"; if (config.frameEditorId) diff --git a/apps/api/wopi/editor-wopi.ejs b/apps/api/wopi/editor-wopi.ejs index 28b1860fd..ad460d53a 100644 --- a/apps/api/wopi/editor-wopi.ejs +++ b/apps/api/wopi/editor-wopi.ejs @@ -302,7 +302,7 @@ div { "uiTheme": queryParams.thm==="1" ? "default-light" : (queryParams.thm==="2" ? "default-dark" : undefined) }, "coEditing": { - "mode": "fast", + "mode": userAuth.mode !== "view" ? "fast" : "strict", "change": false }, "wopi": { diff --git a/apps/common/locale.js b/apps/common/locale.js index ce2d95a60..db8f29318 100644 --- a/apps/common/locale.js +++ b/apps/common/locale.js @@ -40,7 +40,8 @@ Common.Locale = new(function() { var loadcallback, apply = false, defLang = '{{DEFAULT_LANG}}', - currentLang = defLang; + currentLang = defLang, + _4letterLangs = ['pt-pt', 'zh-tw']; var _applyLocalization = function(callback) { try { @@ -100,11 +101,16 @@ Common.Locale = new(function() { var _requireLang = function (l) { typeof l != 'string' && (l = null); - var lang = (l || _getUrlParameterByName('lang') || defLang).split(/[\-_]/)[0]; + var lang = (l || _getUrlParameterByName('lang') || defLang); + var idx4Letters = _4letterLangs.indexOf(lang.replace('_', '-').toLowerCase()); // try to load 4 letters language + lang = (idx4Letters<0) ? lang.split(/[\-_]/)[0] : _4letterLangs[idx4Letters]; currentLang = lang; fetch('locale/' + lang + '.json') .then(function(response) { if (!response.ok) { + if (idx4Letters>=0) { // try to load 2-letters language + throw new Error('4letters error'); + } currentLang = defLang; if (lang != defLang) /* load default lang if fetch failed */ @@ -128,6 +134,12 @@ Common.Locale = new(function() { l10n = json || {}; apply && _applyLocalization(); }).catch(function(e) { + if ( /4letters/.test(e) ) { + return setTimeout(function(){ + _requireLang(lang.split(/[\-_]/)[0]); + }, 0); + } + if ( !/loaded/.test(e) && currentLang != defLang && defLang && defLang.length < 3 ) { return setTimeout(function(){ _requireLang(defLang) diff --git a/apps/common/main/lib/component/ComboBoxFonts.js b/apps/common/main/lib/component/ComboBoxFonts.js index de9b2a3d0..df6242964 100644 --- a/apps/common/main/lib/component/ComboBoxFonts.js +++ b/apps/common/main/lib/component/ComboBoxFonts.js @@ -457,6 +457,7 @@ define([ this.trigger('show:after', this, e); this.flushVisibleFontsTiles(); this.updateVisibleFontsTiles(null, 0); + Common.Utils.isGecko && this.scroller && this.scroller.update(); } else { Common.UI.ComboBox.prototype.onAfterShowMenu.apply(this, arguments); } diff --git a/apps/common/main/lib/component/ComboDataViewShape.js b/apps/common/main/lib/component/ComboDataViewShape.js index f6737f9a4..5de245ba7 100644 --- a/apps/common/main/lib/component/ComboDataViewShape.js +++ b/apps/common/main/lib/component/ComboDataViewShape.js @@ -128,6 +128,39 @@ define([ recents = Common.localStorage.getItem(this.appPrefix + 'recent-shapes'); recents = recents ? JSON.parse(recents) : []; + // check lang + if (recents.length > 0) { + var isTranslated = _.findWhere(groups, {groupName: recents[0].groupName}); + if (!isTranslated) { + for (var r = 0; r < recents.length; r++) { + var type = recents[r].data.shapeType, + record; + for (var g = 0; g < groups.length; g++) { + var store = groups[g].groupStore, + groupName = groups[g].groupName; + for (var i = 0; i < store.length; i++) { + if (store.at(i).get('data').shapeType === type) { + record = store.at(i).toJSON(); + recents[r] = { + data: record.data, + tip: record.tip, + allowSelected: record.allowSelected, + selected: false, + groupName: groupName + }; + break; + } + } + if (record) { + record = undefined; + break; + } + } + } + Common.localStorage.setItem(this.appPrefix + 'recent-shapes', JSON.stringify(recents)); + } + } + if (recents.length < 12) { var count = 12 - recents.length; diff --git a/apps/common/main/lib/component/DataView.js b/apps/common/main/lib/component/DataView.js index 3444a6c88..5680c1717 100644 --- a/apps/common/main/lib/component/DataView.js +++ b/apps/common/main/lib/component/DataView.js @@ -223,6 +223,7 @@ define([ listenStoreEvents: true, allowScrollbar: true, scrollAlwaysVisible: false, + minScrollbarLength: 40, showLast: true, useBSKeydown: false, cls: '' @@ -272,6 +273,7 @@ define([ me.listenStoreEvents= (me.options.listenStoreEvents!==undefined) ? me.options.listenStoreEvents : true; me.allowScrollbar = (me.options.allowScrollbar!==undefined) ? me.options.allowScrollbar : true; me.scrollAlwaysVisible = me.options.scrollAlwaysVisible || false; + me.minScrollbarLength = me.options.minScrollbarLength || 40; me.tabindex = me.options.tabindex || 0; me.delayRenderTips = me.options.delayRenderTips || false; if (me.parentMenu) @@ -355,7 +357,7 @@ define([ this.scroller = new Common.UI.Scroller({ el: $(this.el).find('.inner').addBack().filter('.inner'), useKeyboard: this.enableKeyEvents && !this.handleSelect, - minScrollbarLength : 40, + minScrollbarLength : this.minScrollbarLength, wheelSpeed: 10, alwaysVisibleY: this.scrollAlwaysVisible }); @@ -397,13 +399,7 @@ define([ }); if (record) { - if (this.delaySelect) { - setTimeout(function () { - record.set({selected: true}); - }, 300); - } else { - record.set({selected: true}); - } + record.set({selected: true}); } } else { if (record) @@ -554,7 +550,7 @@ define([ this.scroller = new Common.UI.Scroller({ el: $(this.el).find('.inner').addBack().filter('.inner'), useKeyboard: this.enableKeyEvents && !this.handleSelect, - minScrollbarLength : 40, + minScrollbarLength : this.minScrollbarLength, wheelSpeed: 10, alwaysVisibleY: this.scrollAlwaysVisible }); @@ -607,14 +603,30 @@ define([ window._event = e; // for FireFox only - if (this.showLast) this.selectRecord(record); + if (this.showLast) { + if (!this.delaySelect) { + this.selectRecord(record); + } else { + _.each(this.store.where({selected: true}), function(rec){ + rec.set({selected: false}); + }); + if (record) { + setTimeout(_.bind(function () { + record.set({selected: true}); + this.trigger('item:click', this, view, record, e); + }, this), 300); + } + } + } this.lastSelectedRec = null; var tip = view.$el.data('bs.tooltip'); if (tip) (tip.tip()).remove(); if (!this.isSuspendEvents) { - this.trigger('item:click', this, view, record, e); + if (!this.delaySelect) { + this.trigger('item:click', this, view, record, e); + } } }, @@ -793,6 +805,12 @@ define([ setEmptyText: function(emptyText) { this.emptyText = emptyText; + + if (this.store.length < 1) { + var el = $(this.el).find('.inner').addBack().filter('.inner').find('.empty-text td'); + if ( el.length>0 ) + el.text(this.emptyText); + } }, alignPosition: function() { @@ -806,7 +824,7 @@ define([ paddings = parseInt(menuRoot.css('padding-top')) + parseInt(menuRoot.css('padding-bottom')), menuH = menuRoot.outerHeight(), top = parseInt(menuRoot.css('top')), - props = {minScrollbarLength : 40}; + props = {minScrollbarLength : this.minScrollbarLength}; this.scrollAlwaysVisible && (props.alwaysVisibleY = this.scrollAlwaysVisible); if (top + menuH > docH ) { @@ -977,7 +995,7 @@ define([ this.scroller = new Common.UI.Scroller({ el: $(this.el).find('.inner').addBack().filter('.inner'), useKeyboard: this.enableKeyEvents && !this.handleSelect, - minScrollbarLength : 40, + minScrollbarLength : this.minScrollbarLength, wheelSpeed: 10, alwaysVisibleY: this.scrollAlwaysVisible }); @@ -1069,7 +1087,7 @@ define([ this.scroller = new Common.UI.Scroller({ el: $(this.el).find('.inner').addBack().filter('.inner'), useKeyboard: this.enableKeyEvents && !this.handleSelect, - minScrollbarLength : 40, + minScrollbarLength : this.minScrollbarLength, wheelSpeed: 10, alwaysVisibleY: this.scrollAlwaysVisible }); @@ -1277,7 +1295,7 @@ define([ paddings = parseInt(menuRoot.css('padding-top')) + parseInt(menuRoot.css('padding-bottom')), menuH = menuRoot.outerHeight(), top = parseInt(menuRoot.css('top')), - props = {minScrollbarLength : 40}; + props = {minScrollbarLength : this.minScrollbarLength}; this.scrollAlwaysVisible && (props.alwaysVisibleY = this.scrollAlwaysVisible); if (top + menuH > docH ) { @@ -1387,6 +1405,39 @@ define([ me.recentShapes = recentArr; + // check lang + if (me.recentShapes.length > 0) { + var isTranslated = _.findWhere(me.groups, {groupName: me.recentShapes[0].groupName}); + if (!isTranslated) { + for (var r = 0; r < me.recentShapes.length; r++) { + var type = me.recentShapes[r].data.shapeType, + record; + for (var g = 0; g < me.groups.length; g++) { + var store = me.groups[g].groupStore, + groupName = me.groups[g].groupName; + for (var i = 0; i < store.length; i++) { + if (store.at(i).get('data').shapeType === type) { + record = store.at(i).toJSON(); + me.recentShapes[r] = { + data: record.data, + tip: record.tip, + allowSelected: record.allowSelected, + selected: false, + groupName: groupName + }; + break; + } + } + if (record) { + record = undefined; + break; + } + } + } + Common.localStorage.setItem(this.appPrefix + 'recent-shapes', JSON.stringify(me.recentShapes)); + } + } + // Add default recent if (me.recentShapes.length < 12) { diff --git a/apps/common/main/lib/component/DimensionPicker.js b/apps/common/main/lib/component/DimensionPicker.js index c508a90e9..24aece99f 100644 --- a/apps/common/main/lib/component/DimensionPicker.js +++ b/apps/common/main/lib/component/DimensionPicker.js @@ -49,7 +49,7 @@ define([ Common.UI.DimensionPicker = Common.UI.BaseView.extend((function(){ return { options: { - itemSize : 18, + itemSize : 20, minRows : 5, minColumns : 5, maxRows : 20, diff --git a/apps/common/main/lib/component/InputField.js b/apps/common/main/lib/component/InputField.js index b2c7c3ed4..2c4ab717e 100644 --- a/apps/common/main/lib/component/InputField.js +++ b/apps/common/main/lib/component/InputField.js @@ -605,6 +605,14 @@ define([ this.passwordHide(e); this.hidePwd = true; } + var me = this; + var prevstart = me._input[0].selectionStart, + prevend = me._input[0].selectionEnd; + setTimeout(function () { + me.focus(); + me._input[0].selectionStart = prevstart; + me._input[0].selectionEnd = prevend; + }, 1); }, passwordShow: function (e) { @@ -643,6 +651,14 @@ define([ else { this._btnElm.off('mouseup', this.passwordHide); this._btnElm.off('mouseout', this.passwordHide); + var me = this; + var prevstart = me._input[0].selectionStart, + prevend = me._input[0].selectionEnd; + setTimeout(function () { + me.focus(); + me._input[0].selectionStart = prevstart; + me._input[0].selectionEnd = prevend; + }, 1); } }, textHintShowPwd: 'Show password', diff --git a/apps/common/main/lib/component/TabBar.js b/apps/common/main/lib/component/TabBar.js index b445a8477..ec6ce90e5 100644 --- a/apps/common/main/lib/component/TabBar.js +++ b/apps/common/main/lib/component/TabBar.js @@ -610,7 +610,7 @@ define([ return false; }, - addDataHint: function (index) { //Hint Manager + addDataHint: function (index, dataHint) { //Hint Manager var oldHintTab = this.$bar.find('[data-hint]'); if (oldHintTab.length > 0) { oldHintTab.removeAttr('data-hint'); @@ -619,7 +619,7 @@ define([ oldHintTab.removeAttr('data-hint-title'); } var newHintTab = this.tabs[index].$el; - newHintTab.attr('data-hint', '0'); + newHintTab.attr('data-hint', dataHint || '0'); newHintTab.attr('data-hint-direction', 'top'); newHintTab.attr('data-hint-offset', 'medium'); newHintTab.attr('data-hint-title', 'M'); diff --git a/apps/common/main/lib/component/TreeView.js b/apps/common/main/lib/component/TreeView.js index d362f44de..2b2ac7add 100644 --- a/apps/common/main/lib/component/TreeView.js +++ b/apps/common/main/lib/component/TreeView.js @@ -235,31 +235,31 @@ define([ var isExpanded = !record.get('isExpanded'); record.set('isExpanded', isExpanded); this.store[(isExpanded) ? 'expandSubItems' : 'collapseSubItems'](record); - this.scroller.update({minScrollbarLength: 40, alwaysVisibleY: this.scrollAlwaysVisible}); + this.scroller.update({minScrollbarLength: this.minScrollbarLength, alwaysVisibleY: this.scrollAlwaysVisible}); } else Common.UI.DataView.prototype.onClickItem.call(this, view, record, e); }, expandAll: function() { this.store.expandAll(); - this.scroller.update({minScrollbarLength: 40, alwaysVisibleY: this.scrollAlwaysVisible}); + this.scroller.update({minScrollbarLength: this.minScrollbarLength, alwaysVisibleY: this.scrollAlwaysVisible}); }, collapseAll: function() { this.store.collapseAll(); - this.scroller.update({minScrollbarLength: 40, alwaysVisibleY: this.scrollAlwaysVisible}); + this.scroller.update({minScrollbarLength: this.minScrollbarLength, alwaysVisibleY: this.scrollAlwaysVisible}); }, expandToLevel: function(expandLevel) { this.store.expandToLevel(expandLevel); - this.scroller.update({minScrollbarLength: 40, alwaysVisibleY: this.scrollAlwaysVisible}); + this.scroller.update({minScrollbarLength: this.minScrollbarLength, alwaysVisibleY: this.scrollAlwaysVisible}); }, expandRecord: function(record) { if (record) { record.set('isExpanded', true); this.store.expandSubItems(record); - this.scroller.update({minScrollbarLength: 40, alwaysVisibleY: this.scrollAlwaysVisible}); + this.scroller.update({minScrollbarLength: this.minScrollbarLength, alwaysVisibleY: this.scrollAlwaysVisible}); } }, @@ -267,7 +267,7 @@ define([ if (record) { record.set('isExpanded', false); this.store.collapseSubItems(record); - this.scroller.update({minScrollbarLength: 40, alwaysVisibleY: this.scrollAlwaysVisible}); + this.scroller.update({minScrollbarLength: this.minScrollbarLength, alwaysVisibleY: this.scrollAlwaysVisible}); } }, diff --git a/apps/common/main/lib/controller/Chat.js b/apps/common/main/lib/controller/Chat.js index 002c178cc..c012503f1 100644 --- a/apps/common/main/lib/controller/Chat.js +++ b/apps/common/main/lib/controller/Chat.js @@ -85,6 +85,14 @@ define([ storeUsers: this.getApplication().getCollection('Common.Collections.Users'), storeMessages: this.getApplication().getCollection('Common.Collections.ChatMessages') }); + this.panelChat.on('render:after', _.bind(this.onAfterRender, this)); + }, + + onAfterRender: function(panel) { + var viewport = this.getApplication().getController('Viewport').getView('Viewport'); + viewport.hlayout.on('layout:resizedrag', _.bind(function () { + panel && panel.updateScrolls(); + }, this)); }, setMode: function(mode) { @@ -95,7 +103,7 @@ define([ if (this.mode.canCoAuthoring && this.mode.canChat) this.api.asc_registerCallback('asc_onCoAuthoringChatReceiveMessage', _.bind(this.onReceiveMessage, this)); - if ( !this.mode.isEditDiagram && !this.mode.isEditMailMerge ) { + if ( !this.mode.isEditDiagram && !this.mode.isEditMailMerge && !this.mode.isEditOle ) { this.api.asc_registerCallback('asc_onAuthParticipantsChanged', _.bind(this.onUsersChanged, this)); this.api.asc_registerCallback('asc_onConnectionStateChanged', _.bind(this.onUserConnection, this)); this.api.asc_coAuthoringGetUsers(); diff --git a/apps/common/main/lib/controller/ExternalOleEditor.js b/apps/common/main/lib/controller/ExternalOleEditor.js new file mode 100644 index 000000000..35de11350 --- /dev/null +++ b/apps/common/main/lib/controller/ExternalOleEditor.js @@ -0,0 +1,259 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2022 + * + * 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 + * +*/ +/** + * ExternalOleEditor.js + * + * Created by Julia Radzhabova on 3/10/22 + * Copyright (c) 2022 Ascensio System SIA. All rights reserved. + * + */ + +if (Common === undefined) + var Common = {}; + +Common.Controllers = Common.Controllers || {}; + +define([ + 'core', + 'common/main/lib/view/ExternalOleEditor' +], function () { 'use strict'; + Common.Controllers.ExternalOleEditor = Backbone.Controller.extend(_.extend((function() { + var appLang = '{{DEFAULT_LANG}}', + customization = undefined, + targetApp = '', + externalEditor = null, + isAppFirstOpened = true; + + + var createExternalEditor = function() { + !!customization && (customization.uiTheme = Common.localStorage.getItem("ui-theme-id", "theme-light")); + externalEditor = new DocsAPI.DocEditor('id-ole-editor-placeholder', { + width : '100%', + height : '100%', + documentType: 'cell', + document : { + url : '_chart_', + permissions : { + edit : true, + download: false + } + }, + editorConfig: { + mode : 'editole', + targetApp : targetApp, + lang : appLang, + canCoAuthoring : false, + canBackToFolder : false, + canCreateNew : false, + customization : customization, + user : {id: ('uid-'+Date.now())} + }, + events: { + 'onAppReady' : function() {}, + 'onDocumentStateChange' : function() {}, + 'onError' : function() {}, + 'onInternalMessage' : _.bind(this.onInternalMessage, this) + } + }); + Common.Gateway.on('processmouse', _.bind(this.onProcessMouse, this)); + }; + + return { + views: ['Common.Views.ExternalOleEditor'], + + initialize: function() { + this.addListeners({ + 'Common.Views.ExternalOleEditor': { + 'setoledata': _.bind(this.setOleData, this), + 'drag': _.bind(function(o, state){ + externalEditor && externalEditor.serviceCommand('window:drag', state == 'start'); + },this), + 'show': _.bind(function(cmp){ + var h = this.oleEditorView.getHeight(), + innerHeight = Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top'); + if (innerHeight>h && h<700 || innerHeight', '
', '' ].join(''); diff --git a/apps/common/main/lib/view/ExternalOleEditor.js b/apps/common/main/lib/view/ExternalOleEditor.js new file mode 100644 index 000000000..00260f675 --- /dev/null +++ b/apps/common/main/lib/view/ExternalOleEditor.js @@ -0,0 +1,164 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2022 + * + * 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 + * +*/ +/** + * ExternalOleEditor.js + * + * Created by Julia Radzhabova on 3/10/22 + * Copyright (c) 2022 Ascensio System SIA. All rights reserved. + * + */ + +define([ + 'common/main/lib/component/Window' +], function () { 'use strict'; + + Common.Views.ExternalOleEditor = Common.UI.Window.extend(_.extend({ + initialize : function(options) { + var _options = {}; + var _inner_height = Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top'); + _.extend(_options, { + title: this.textTitle, + width: 910, + height: (_inner_height - 700)<0 ? _inner_height : 700, + cls: 'advanced-settings-dlg', + header: true, + toolclose: 'hide', + toolcallback: _.bind(this.onToolClose, this) + }, options); + + this.template = [ + '
', + '
', + '
', + '
', + '' + ].join(''); + + _options.tpl = _.template(this.template)(_options); + + this.handler = _options.handler; + this._oleData = null; + this._isNewOle = true; + Common.UI.Window.prototype.initialize.call(this, _options); + }, + + render: function() { + Common.UI.Window.prototype.render.call(this); + + this.btnSave = new Common.UI.Button({ + el: $('#id-btn-ole-editor-apply'), + disabled: true + }); + this.btnCancel = new Common.UI.Button({ + el: $('#id-btn-ole-editor-cancel') + }); + + this.$window.find('.dlg-btn').on('click', _.bind(this.onDlgBtnClick, this)); + }, + + show: function() { + this.setPlaceholder(); + Common.UI.Window.prototype.show.apply(this, arguments); + }, + + setOleData: function(data) { + this._oleData = data; + if (this._isExternalDocReady) + this.fireEvent('setoledata', this); + }, + + setEditMode: function(mode) { + this._isNewOle = !mode; + }, + + isEditMode: function() { + return !this._isNewOle; + }, + + setControlsDisabled: function(disable) { + this.btnSave.setDisabled(disable); + this.btnCancel.setDisabled(disable); + (disable) ? this.$window.find('.tool.close').addClass('disabled') : this.$window.find('.tool.close').removeClass('disabled'); + }, + + onDlgBtnClick: function(event) { + if ( this.handler ) { + this.handler.call(this, event.currentTarget.attributes['result'].value); + return; + } + this.hide(); + }, + + onToolClose: function() { + if ( this.handler ) { + this.handler.call(this, 'cancel'); + return; + } + this.hide(); + }, + + setHeight: function(height) { + if (height >= 0) { + var min = parseInt(this.$window.css('min-height')); + height < min && (height = min); + this.$window.height(height); + + var header_height = (this.initConfig.header) ? parseInt(this.$window.find('> .header').css('height')) : 0; + + this.$window.find('> .body').css('height', height-header_height); + this.$window.find('> .body > .box').css('height', height-85); + + var top = (Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top') - parseInt(height)) / 2; + var left = (Common.Utils.innerWidth() - parseInt(this.initConfig.width)) / 2; + + this.$window.css('left',left); + this.$window.css('top', Common.Utils.InternalSettings.get('window-inactive-area-top') + top); + } + }, + + setPlaceholder: function(placeholder) { + this._placeholder = placeholder; + }, + + getPlaceholder: function() { + return this._placeholder; + }, + + textSave: 'Save & Exit', + textClose: 'Close', + textTitle: 'Spreadsheet Editor' + }, Common.Views.ExternalOleEditor || {})); +}); diff --git a/apps/common/main/lib/view/History.js b/apps/common/main/lib/view/History.js index a8d0b5130..5c79d22b9 100644 --- a/apps/common/main/lib/view/History.js +++ b/apps/common/main/lib/view/History.js @@ -110,7 +110,7 @@ define([ for(var i=1; imaxlength) maxlength = str.length; } + this._previewTdMaxLength = Math.max(this._previewTdMaxLength, maxlength); var tpl = ''; for (var i=0; i'; + var style = ''; + if (i==0 && this._previewTdWidth[j]) { // set td style only for first tr + style = 'style="min-width:' + this._previewTdWidth[j] + 'px;"'; + } + tpl += ''; } - for (j=str.length; j'; } tpl += ''; } @@ -511,6 +525,14 @@ define([ } this.previewPanel.html(tpl); + if (data.length>0) { + var me = this; + (this._previewTdWidth.length===0) && this.previewScrolled.scrollLeft(0); + this.previewPanel.find('tr:first td').each(function(index, el){ + me._previewTdWidth[index] = Math.max(Math.max(Math.ceil($(el).outerWidth()), 30), me._previewTdWidth[index] || 0); + }); + } + this.scrollerX = new Common.UI.Scroller({ el: this.previewPanel, suppressScrollY: true, @@ -521,7 +543,9 @@ define([ onCmbDelimiterSelect: function(combo, record){ this.inputDelimiter.setVisible(record.value == -1); - (record.value == -1) && this.inputDelimiter.cmpEl.find('input').focus(); + var me = this; + if (record.value == -1) + setTimeout(function(){me.inputDelimiter.focus();}, 10); if (this.preview) this.updatePreview(); }, diff --git a/apps/common/main/lib/view/SearchDialog.js b/apps/common/main/lib/view/SearchDialog.js index 142dfa690..7620173a1 100644 --- a/apps/common/main/lib/view/SearchDialog.js +++ b/apps/common/main/lib/view/SearchDialog.js @@ -171,7 +171,7 @@ this.txtSearch.on('keydown', null, 'search', _.bind(this.onKeyPress, this)); this.txtReplace.on('keydown', null, 'replace', _.bind(this.onKeyPress, this)); - this.on('animate:before', _.bind(this.focus, this)); + this.on('animate:before', _.bind(this.onAnimateBefore, this)); return this; }, @@ -191,14 +191,18 @@ this.focus(); }, - focus: function() { - var me = this; + focus: function(type) { + var field = (type==='replace') ? this.txtReplace : this.txtSearch; setTimeout(function(){ - me.txtSearch.focus(); - me.txtSearch.select(); + field.focus(); + field.select(); }, 10); }, + onAnimateBefore: function() { + this.focus(); + }, + onKeyPress: function(event) { if (!this.isLocked()) { if (event.keyCode == Common.UI.Keys.RETURN) { diff --git a/apps/common/main/resources/img/dimension-picker/dimension-highlighted.png b/apps/common/main/resources/img/dimension-picker/dimension-highlighted.png index 459f654b7..548820257 100644 Binary files a/apps/common/main/resources/img/dimension-picker/dimension-highlighted.png and b/apps/common/main/resources/img/dimension-picker/dimension-highlighted.png differ diff --git a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.25x.png b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.25x.png index 1dca0df85..178c9055d 100644 Binary files a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.25x.png and b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.25x.png differ diff --git a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.5x.png b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.5x.png index 4568ac129..9ef48ad45 100644 Binary files a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.5x.png and b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.5x.png differ diff --git a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.75x.png b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.75x.png index 7fa5bca27..bcaaa8ffb 100644 Binary files a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.75x.png and b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@1.75x.png differ diff --git a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@2x.png b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@2x.png index f70ca1d69..ddf0f3026 100644 Binary files a/apps/common/main/resources/img/dimension-picker/dimension-highlighted@2x.png and b/apps/common/main/resources/img/dimension-picker/dimension-highlighted@2x.png differ diff --git a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted.png b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted.png index 60dffd10c..8d30523bf 100644 Binary files a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted.png and b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted.png differ diff --git a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.25x.png b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.25x.png index dd3837e9d..04909bc10 100644 Binary files a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.25x.png and b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.25x.png differ diff --git a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.5x.png b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.5x.png index 887033138..543060016 100644 Binary files a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.5x.png and b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.5x.png differ diff --git a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.75x.png b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.75x.png index e114299c7..e675f1b19 100644 Binary files a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.75x.png and b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@1.75x.png differ diff --git a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@2x.png b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@2x.png index 4945a9f4e..67b98e9a2 100644 Binary files a/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@2x.png and b/apps/common/main/resources/img/dimension-picker/dimension-unhighlighted@2x.png differ diff --git a/apps/common/main/resources/img/doc-formats/blank.svg b/apps/common/main/resources/img/doc-formats/blank.svg index 224c65fbf..b8969571b 100644 --- a/apps/common/main/resources/img/doc-formats/blank.svg +++ b/apps/common/main/resources/img/doc-formats/blank.svg @@ -1,5 +1,5 @@ - + - + \ No newline at end of file diff --git a/apps/common/main/resources/img/doc-formats/csv.svg b/apps/common/main/resources/img/doc-formats/csv.svg index 41be9da1a..fdd2fc1ad 100644 --- a/apps/common/main/resources/img/doc-formats/csv.svg +++ b/apps/common/main/resources/img/doc-formats/csv.svg @@ -1,5 +1,5 @@ - + @@ -30,5 +30,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/docm.svg b/apps/common/main/resources/img/doc-formats/docm.svg index 6a17105c9..86e7c54dd 100644 --- a/apps/common/main/resources/img/doc-formats/docm.svg +++ b/apps/common/main/resources/img/doc-formats/docm.svg @@ -1,10 +1,10 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/docx.svg b/apps/common/main/resources/img/doc-formats/docx.svg index 12839165e..f5416b33e 100644 --- a/apps/common/main/resources/img/doc-formats/docx.svg +++ b/apps/common/main/resources/img/doc-formats/docx.svg @@ -1,8 +1,8 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/docxf.svg b/apps/common/main/resources/img/doc-formats/docxf.svg index c5b1846c3..c7a21a112 100644 --- a/apps/common/main/resources/img/doc-formats/docxf.svg +++ b/apps/common/main/resources/img/doc-formats/docxf.svg @@ -1,5 +1,5 @@ - + @@ -13,5 +13,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/dotx.svg b/apps/common/main/resources/img/doc-formats/dotx.svg index b13d8c92f..a47d3f4b9 100644 --- a/apps/common/main/resources/img/doc-formats/dotx.svg +++ b/apps/common/main/resources/img/doc-formats/dotx.svg @@ -1,10 +1,10 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/epub.svg b/apps/common/main/resources/img/doc-formats/epub.svg index ef7ed8564..54657ca33 100644 --- a/apps/common/main/resources/img/doc-formats/epub.svg +++ b/apps/common/main/resources/img/doc-formats/epub.svg @@ -1,10 +1,10 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/fb2.svg b/apps/common/main/resources/img/doc-formats/fb2.svg index fc2472911..6e22697a1 100644 --- a/apps/common/main/resources/img/doc-formats/fb2.svg +++ b/apps/common/main/resources/img/doc-formats/fb2.svg @@ -1,10 +1,10 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/html.svg b/apps/common/main/resources/img/doc-formats/html.svg index 212e63e09..50feffdc9 100644 --- a/apps/common/main/resources/img/doc-formats/html.svg +++ b/apps/common/main/resources/img/doc-formats/html.svg @@ -1,10 +1,10 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/jpg.svg b/apps/common/main/resources/img/doc-formats/jpg.svg index 68d4c826e..bccd0c419 100644 --- a/apps/common/main/resources/img/doc-formats/jpg.svg +++ b/apps/common/main/resources/img/doc-formats/jpg.svg @@ -1,5 +1,5 @@ - + @@ -10,5 +10,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/odp.svg b/apps/common/main/resources/img/doc-formats/odp.svg index 3fc77de30..e80d53836 100644 --- a/apps/common/main/resources/img/doc-formats/odp.svg +++ b/apps/common/main/resources/img/doc-formats/odp.svg @@ -1,9 +1,9 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/ods.svg b/apps/common/main/resources/img/doc-formats/ods.svg index 0356d3255..a0414214f 100644 --- a/apps/common/main/resources/img/doc-formats/ods.svg +++ b/apps/common/main/resources/img/doc-formats/ods.svg @@ -1,10 +1,9 @@ - + - diff --git a/apps/common/main/resources/img/doc-formats/odt.svg b/apps/common/main/resources/img/doc-formats/odt.svg index c2122c0a4..863112b87 100644 --- a/apps/common/main/resources/img/doc-formats/odt.svg +++ b/apps/common/main/resources/img/doc-formats/odt.svg @@ -1,9 +1,9 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/oform.svg b/apps/common/main/resources/img/doc-formats/oform.svg index 80dba56e1..e2ab98f2f 100644 --- a/apps/common/main/resources/img/doc-formats/oform.svg +++ b/apps/common/main/resources/img/doc-formats/oform.svg @@ -1,5 +1,5 @@ - + @@ -14,5 +14,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/otp.svg b/apps/common/main/resources/img/doc-formats/otp.svg index 70dcbc974..32e67c8f7 100644 --- a/apps/common/main/resources/img/doc-formats/otp.svg +++ b/apps/common/main/resources/img/doc-formats/otp.svg @@ -1,5 +1,5 @@ - + @@ -7,5 +7,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/ots.svg b/apps/common/main/resources/img/doc-formats/ots.svg index 96aef7046..d534da861 100644 --- a/apps/common/main/resources/img/doc-formats/ots.svg +++ b/apps/common/main/resources/img/doc-formats/ots.svg @@ -1,5 +1,5 @@ - + @@ -8,5 +8,4 @@ - diff --git a/apps/common/main/resources/img/doc-formats/ott.svg b/apps/common/main/resources/img/doc-formats/ott.svg index b2a7e1a43..194bf7da2 100644 --- a/apps/common/main/resources/img/doc-formats/ott.svg +++ b/apps/common/main/resources/img/doc-formats/ott.svg @@ -1,5 +1,5 @@ - + @@ -7,5 +7,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pdf.svg b/apps/common/main/resources/img/doc-formats/pdf.svg index 8c9a6ed5a..c532b23bc 100644 --- a/apps/common/main/resources/img/doc-formats/pdf.svg +++ b/apps/common/main/resources/img/doc-formats/pdf.svg @@ -1,8 +1,8 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/pdfa.svg b/apps/common/main/resources/img/doc-formats/pdfa.svg index ef9a17b4e..19efd108e 100644 --- a/apps/common/main/resources/img/doc-formats/pdfa.svg +++ b/apps/common/main/resources/img/doc-formats/pdfa.svg @@ -1,10 +1,10 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/png.svg b/apps/common/main/resources/img/doc-formats/png.svg index 59d7edf61..30f3ee2c0 100644 --- a/apps/common/main/resources/img/doc-formats/png.svg +++ b/apps/common/main/resources/img/doc-formats/png.svg @@ -1,5 +1,5 @@ - + @@ -10,5 +10,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/potx.svg b/apps/common/main/resources/img/doc-formats/potx.svg index 150957769..6dee1140d 100644 --- a/apps/common/main/resources/img/doc-formats/potx.svg +++ b/apps/common/main/resources/img/doc-formats/potx.svg @@ -1,5 +1,5 @@ - + @@ -10,5 +10,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/ppsx.svg b/apps/common/main/resources/img/doc-formats/ppsx.svg index 37ab966b2..3557f5bb2 100644 --- a/apps/common/main/resources/img/doc-formats/ppsx.svg +++ b/apps/common/main/resources/img/doc-formats/ppsx.svg @@ -1,5 +1,5 @@ - + @@ -15,5 +15,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pptm.svg b/apps/common/main/resources/img/doc-formats/pptm.svg index 7c15a6807..ce2944715 100644 --- a/apps/common/main/resources/img/doc-formats/pptm.svg +++ b/apps/common/main/resources/img/doc-formats/pptm.svg @@ -1,5 +1,5 @@ - + @@ -10,5 +10,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/pptx.svg b/apps/common/main/resources/img/doc-formats/pptx.svg index 51a385103..92a066231 100644 --- a/apps/common/main/resources/img/doc-formats/pptx.svg +++ b/apps/common/main/resources/img/doc-formats/pptx.svg @@ -1,5 +1,5 @@ - + @@ -8,5 +8,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/rtf.svg b/apps/common/main/resources/img/doc-formats/rtf.svg index 1b613a81d..2197fb903 100644 --- a/apps/common/main/resources/img/doc-formats/rtf.svg +++ b/apps/common/main/resources/img/doc-formats/rtf.svg @@ -1,5 +1,5 @@ - + @@ -14,5 +14,4 @@ - diff --git a/apps/common/main/resources/img/doc-formats/txt.svg b/apps/common/main/resources/img/doc-formats/txt.svg index bed12e3f8..206714aab 100644 --- a/apps/common/main/resources/img/doc-formats/txt.svg +++ b/apps/common/main/resources/img/doc-formats/txt.svg @@ -1,5 +1,5 @@ - + @@ -12,5 +12,5 @@ - + diff --git a/apps/common/main/resources/img/doc-formats/xlsm.svg b/apps/common/main/resources/img/doc-formats/xlsm.svg index 347be30e4..ae16f316f 100644 --- a/apps/common/main/resources/img/doc-formats/xlsm.svg +++ b/apps/common/main/resources/img/doc-formats/xlsm.svg @@ -1,10 +1,10 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/xlsx.svg b/apps/common/main/resources/img/doc-formats/xlsx.svg index 277d27536..84aeec80f 100644 --- a/apps/common/main/resources/img/doc-formats/xlsx.svg +++ b/apps/common/main/resources/img/doc-formats/xlsx.svg @@ -1,8 +1,8 @@ - + - + diff --git a/apps/common/main/resources/img/doc-formats/xltx.svg b/apps/common/main/resources/img/doc-formats/xltx.svg index f676c3772..220c7489a 100644 --- a/apps/common/main/resources/img/doc-formats/xltx.svg +++ b/apps/common/main/resources/img/doc-formats/xltx.svg @@ -1,10 +1,10 @@ - + - + diff --git a/apps/common/main/resources/img/toolbar/1.25x/collapse-all.png b/apps/common/main/resources/img/toolbar/1.25x/collapse-all.png new file mode 100644 index 000000000..82d8c71c8 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/collapse-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/demote.png b/apps/common/main/resources/img/toolbar/1.25x/demote.png new file mode 100644 index 000000000..749308be5 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/demote.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/expand-all.png b/apps/common/main/resources/img/toolbar/1.25x/expand-all.png new file mode 100644 index 000000000..7099f53cc Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/expand-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/latex.png b/apps/common/main/resources/img/toolbar/1.25x/latex.png new file mode 100644 index 000000000..536c2988d Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/latex.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/linear-equation.png b/apps/common/main/resources/img/toolbar/1.25x/linear-equation.png new file mode 100644 index 000000000..41b8bb37e Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/linear-equation.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/professional-equation.png b/apps/common/main/resources/img/toolbar/1.25x/professional-equation.png new file mode 100644 index 000000000..cdea17d67 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/professional-equation.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/promote.png b/apps/common/main/resources/img/toolbar/1.25x/promote.png new file mode 100644 index 000000000..e2f21f415 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/promote.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/select-all.png b/apps/common/main/resources/img/toolbar/1.25x/select-all.png new file mode 100644 index 000000000..635055e43 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/select-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/unicode.png b/apps/common/main/resources/img/toolbar/1.25x/unicode.png new file mode 100644 index 000000000..d58fc9eb2 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/unicode.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/collapse-all.png b/apps/common/main/resources/img/toolbar/1.5x/collapse-all.png new file mode 100644 index 000000000..4a54af18a Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/collapse-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/demote.png b/apps/common/main/resources/img/toolbar/1.5x/demote.png new file mode 100644 index 000000000..a7baf19a6 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/demote.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/expand-all.png b/apps/common/main/resources/img/toolbar/1.5x/expand-all.png new file mode 100644 index 000000000..30b628b8f Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/expand-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/latex.png b/apps/common/main/resources/img/toolbar/1.5x/latex.png new file mode 100644 index 000000000..3091b2578 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/latex.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/linear-equation.png b/apps/common/main/resources/img/toolbar/1.5x/linear-equation.png new file mode 100644 index 000000000..495cd97ed Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/linear-equation.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/professional-equation.png b/apps/common/main/resources/img/toolbar/1.5x/professional-equation.png new file mode 100644 index 000000000..d679b8861 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/professional-equation.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/promote.png b/apps/common/main/resources/img/toolbar/1.5x/promote.png new file mode 100644 index 000000000..7c9f302df Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/promote.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/select-all.png b/apps/common/main/resources/img/toolbar/1.5x/select-all.png new file mode 100644 index 000000000..309d723ea Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/select-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/unicode.png b/apps/common/main/resources/img/toolbar/1.5x/unicode.png new file mode 100644 index 000000000..4cff6dfe5 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/unicode.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/collapse-all.png b/apps/common/main/resources/img/toolbar/1.75x/collapse-all.png new file mode 100644 index 000000000..afb04e789 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/collapse-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/demote.png b/apps/common/main/resources/img/toolbar/1.75x/demote.png new file mode 100644 index 000000000..904ce73a5 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/demote.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/expand-all.png b/apps/common/main/resources/img/toolbar/1.75x/expand-all.png new file mode 100644 index 000000000..f492a3710 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/expand-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/latex.png b/apps/common/main/resources/img/toolbar/1.75x/latex.png new file mode 100644 index 000000000..86eb1793c Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/latex.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/linear-equation.png b/apps/common/main/resources/img/toolbar/1.75x/linear-equation.png new file mode 100644 index 000000000..7884be171 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/linear-equation.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/professional-equation.png b/apps/common/main/resources/img/toolbar/1.75x/professional-equation.png new file mode 100644 index 000000000..ae9bcfd8e Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/professional-equation.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/promote.png b/apps/common/main/resources/img/toolbar/1.75x/promote.png new file mode 100644 index 000000000..63f2ca874 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/promote.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/select-all.png b/apps/common/main/resources/img/toolbar/1.75x/select-all.png new file mode 100644 index 000000000..63d478378 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/select-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/unicode.png b/apps/common/main/resources/img/toolbar/1.75x/unicode.png new file mode 100644 index 000000000..f5164c1ea Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/unicode.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/collapse-all.png b/apps/common/main/resources/img/toolbar/1x/collapse-all.png new file mode 100644 index 000000000..abc945bea Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/collapse-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/demote.png b/apps/common/main/resources/img/toolbar/1x/demote.png new file mode 100644 index 000000000..18dfa6620 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/demote.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/expand-all.png b/apps/common/main/resources/img/toolbar/1x/expand-all.png new file mode 100644 index 000000000..a0b04ee1b Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/expand-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/latex.png b/apps/common/main/resources/img/toolbar/1x/latex.png new file mode 100644 index 000000000..bcbe5a8fe Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/latex.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/linear-equation.png b/apps/common/main/resources/img/toolbar/1x/linear-equation.png new file mode 100644 index 000000000..25159df42 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/linear-equation.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/professional-equation.png b/apps/common/main/resources/img/toolbar/1x/professional-equation.png new file mode 100644 index 000000000..f27f5c28b Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/professional-equation.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/promote.png b/apps/common/main/resources/img/toolbar/1x/promote.png new file mode 100644 index 000000000..5bf67f805 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/promote.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/select-all.png b/apps/common/main/resources/img/toolbar/1x/select-all.png new file mode 100644 index 000000000..bce163822 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/select-all.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/unicode.png b/apps/common/main/resources/img/toolbar/1x/unicode.png new file mode 100644 index 000000000..65da0b6c5 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/unicode.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/collapse-all.png b/apps/common/main/resources/img/toolbar/2x/collapse-all.png new file mode 100644 index 000000000..0299cba1b Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/collapse-all.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/demote.png b/apps/common/main/resources/img/toolbar/2x/demote.png new file mode 100644 index 000000000..00d687ad3 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/demote.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/expand-all.png b/apps/common/main/resources/img/toolbar/2x/expand-all.png new file mode 100644 index 000000000..b6eb9dc75 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/expand-all.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/latex.png b/apps/common/main/resources/img/toolbar/2x/latex.png new file mode 100644 index 000000000..a0e04466d Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/latex.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/linear-equation.png b/apps/common/main/resources/img/toolbar/2x/linear-equation.png new file mode 100644 index 000000000..db3fd11bc Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/linear-equation.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/professional-equation.png b/apps/common/main/resources/img/toolbar/2x/professional-equation.png new file mode 100644 index 000000000..2edd56048 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/professional-equation.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/promote.png b/apps/common/main/resources/img/toolbar/2x/promote.png new file mode 100644 index 000000000..1918cc2f0 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/promote.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/select-all.png b/apps/common/main/resources/img/toolbar/2x/select-all.png new file mode 100644 index 000000000..e9fa78a6b Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/select-all.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/unicode.png b/apps/common/main/resources/img/toolbar/2x/unicode.png new file mode 100644 index 000000000..2a570cd4b Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/unicode.png differ diff --git a/apps/common/main/resources/less/combo-dataview.less b/apps/common/main/resources/less/combo-dataview.less index 645eb51cb..fecb3727e 100644 --- a/apps/common/main/resources/less/combo-dataview.less +++ b/apps/common/main/resources/less/combo-dataview.less @@ -111,7 +111,7 @@ .box-shadow(none); @minus-px-ie: -1px; - @minus-px: calc(-1px / @pixel-ratio-factor); + @minus-px: calc((-1px / @pixel-ratio-factor)); margin: 0 @minus-px-ie @minus-px-ie 0; margin: 0 @minus-px @minus-px 0; height: @combo-dataview-height; diff --git a/apps/common/main/resources/less/comments.less b/apps/common/main/resources/less/comments.less index dd05eb9a1..0044cf2f2 100644 --- a/apps/common/main/resources/less/comments.less +++ b/apps/common/main/resources/less/comments.less @@ -45,6 +45,22 @@ margin-bottom: 5px; right: 4px !important; } + + .dataview-ct.inner { + .empty-text { + text-align: center; + height: 100%; + width: 100%; + color: @text-tertiary-ie; + color: @text-tertiary; + tr { + vertical-align: top; + td { + padding-top: 18px; + } + } + } + } } .add-link-ct { diff --git a/apps/common/main/resources/less/dimension-picker.less b/apps/common/main/resources/less/dimension-picker.less index 421bf8ec1..f6f736c53 100644 --- a/apps/common/main/resources/less/dimension-picker.less +++ b/apps/common/main/resources/less/dimension-picker.less @@ -1,5 +1,5 @@ .dimension-picker { - font-size: 18px; + font-size: 20px; } .dimension-picker div { @@ -19,7 +19,7 @@ position: absolute; //background: transparent repeat scroll 0 0; - .background-ximage-all('dimension-picker/dimension-highlighted.png', 18px); + .background-ximage-all('dimension-picker/dimension-highlighted.png', 20px); background-repeat: repeat; .pixel-ratio__1_25 &, .pixel-ratio__1_75 & { @@ -29,7 +29,7 @@ .dimension-picker-unhighlighted { //background: transparent repeat scroll 0 0; - .background-ximage-all('dimension-picker/dimension-unhighlighted.png', 18px); + .background-ximage-all('dimension-picker/dimension-unhighlighted.png', 20px); background-repeat: repeat; .pixel-ratio__1_25 &, .pixel-ratio__1_75 & { diff --git a/apps/common/main/resources/less/input.less b/apps/common/main/resources/less/input.less index 89d49c239..a10827e2e 100644 --- a/apps/common/main/resources/less/input.less +++ b/apps/common/main/resources/less/input.less @@ -126,11 +126,13 @@ textarea.form-control:focus { position: absolute; right: @scaled-one-px-value-ie; right: @scaled-one-px-value; + top: @scaled-one-px-value-ie; + top: @scaled-one-px-value; .btn-group > .btn-toolbar, & > .btn-toolbar { - height: 22px; - padding-top: 1px; + height: 20px; + height: calc(22px - @scaled-one-px-value * 2); } } diff --git a/apps/common/main/resources/less/slider.less b/apps/common/main/resources/less/slider.less index b6f193d4b..240da9c2b 100644 --- a/apps/common/main/resources/less/slider.less +++ b/apps/common/main/resources/less/slider.less @@ -8,13 +8,13 @@ .track { @track-height: 4px; height: @track-height; - border: @track-height / 2 solid @border-regular-control-ie; - border: @track-height / 2 solid @border-regular-control; - border-radius: @track-height / 2; + border: (@track-height / 2) solid @border-regular-control-ie; + border: (@track-height / 2) solid @border-regular-control; + border-radius: (@track-height / 2); background-color: @border-regular-control-ie; background-color: @border-regular-control; width: calc(100% + @track-height); - margin-left: -@track-height / 2; + margin-left: (-@track-height / 2); } .thumb { @@ -26,10 +26,10 @@ border: @scaled-one-px-value solid @icon-normal; background-color: @background-normal-ie; background-color: @background-normal; - border-radius: @thumb-width / 2; + border-radius: (@thumb-width / 2); top: 3px; - margin-left: @thumb-width / -2; + margin-left: (@thumb-width / -2); &.active { } @@ -46,14 +46,14 @@ height: calc(100% + @track-height); width: @track-height; margin-left: 0; - margin-top: -@track-height / 2; + margin-top: (-@track-height / 2); } .thumb { @thumb-width: 12px; top: auto; left: 3px; margin-left: 0; - margin-top: @thumb-width / -2; + margin-top: (@thumb-width / -2); } } } diff --git a/apps/common/main/resources/less/spinner.less b/apps/common/main/resources/less/spinner.less index c1e5d5aab..e33fb2b65 100644 --- a/apps/common/main/resources/less/spinner.less +++ b/apps/common/main/resources/less/spinner.less @@ -18,7 +18,7 @@ display: block; position: relative; width: @trigger-width; - height: @spin-height/2 - 1; + height: (@spin-height/2) - 1; height: calc(@spin-height/2 - 1px/@pixel-ratio-factor); padding: 0; margin: 0; diff --git a/apps/common/main/resources/less/synchronize-tip.less b/apps/common/main/resources/less/synchronize-tip.less index 06b72e9f7..2e3297484 100644 --- a/apps/common/main/resources/less/synchronize-tip.less +++ b/apps/common/main/resources/less/synchronize-tip.less @@ -195,7 +195,6 @@ top: 0; left: 8px; width: 16px; - .box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2)); } } } @@ -212,7 +211,6 @@ top: 0; left: -8px; width: 16px; - .box-shadow(0 4px 8px -1px rgba(0, 0, 0, 0.2)); } } } @@ -324,7 +322,6 @@ &:before { top: -8px; left: -8px; - .box-shadow(2px 2px 8px -1px rgba(0, 0, 0, 0.2)); } &:after { top: -6px; @@ -346,7 +343,6 @@ &:before { top: 8px; left: 8px; - .box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2)); } &:after { top: 6px; @@ -368,7 +364,6 @@ &:before { top: 8px; left: -8px; - .box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2)); } &:after { top: 6px; @@ -412,8 +407,6 @@ &:before { bottom: -7px; left: -7px; - //width: 15px; - .box-shadow(0 0 8px -1px rgba(0, 0, 0, 0.2)); } &:after { top: -2px; @@ -475,7 +468,6 @@ -o-transform: rotate(45deg); transform: rotate(45deg); - .box-shadow(0 4px 8px -1px rgba(0, 0, 0, 0.2)); border: @scaled-one-px-value-ie solid @background-notification-popover-ie; border: @scaled-one-px-value solid @background-notification-popover; } diff --git a/apps/common/main/resources/less/toolbar.less b/apps/common/main/resources/less/toolbar.less index ad6b24277..2f90adc50 100644 --- a/apps/common/main/resources/less/toolbar.less +++ b/apps/common/main/resources/less/toolbar.less @@ -194,6 +194,7 @@ .inner-box-caption { justify-content: center; align-items: center; + padding: 0 2px; } .compact-caret { diff --git a/apps/common/mobile/lib/controller/ContextMenu.jsx b/apps/common/mobile/lib/controller/ContextMenu.jsx index 94cce47c8..9a41688bc 100644 --- a/apps/common/mobile/lib/controller/ContextMenu.jsx +++ b/apps/common/mobile/lib/controller/ContextMenu.jsx @@ -105,6 +105,9 @@ class ContextMenuController extends Component { onApiOpenContextMenu(x, y) { if ( !this.state.opened && $$('.dialog.modal-in, .popover.modal-in, .sheet-modal.modal-in, .popup.modal-in, #pe-preview, .add-comment-popup, .actions-modal.modal-in').length < 1) { + const subNav = document.querySelector('.subnavbar'); + const rect = subNav.getBoundingClientRect(); + this.setState({ items: this.initMenuItems(), extraItems: this.initExtraItems() @@ -112,8 +115,8 @@ class ContextMenuController extends Component { if ( this.state.items.length > 0 ) { const api = Common.EditorApi.get(); - - this.$targetEl.css({left: `${x}px`, top: `${y}px`}); + + this.$targetEl.css({left: `${x}px`, top: y < rect.bottom ? `${rect.bottom}px` : `${y}px`}); const popover = f7.popover.open(idContextMenuElement, idCntextMenuTargetElement); if (Device.android) diff --git a/apps/common/mobile/lib/view/About.jsx b/apps/common/mobile/lib/view/About.jsx index 3dd4cac9a..f553ab95c 100644 --- a/apps/common/mobile/lib/view/About.jsx +++ b/apps/common/mobile/lib/view/About.jsx @@ -58,7 +58,7 @@ const PageAbout = props => { {mailCustomer && mailCustomer.length ? (

- {mailCustomer} + {mailCustomer}

) : null} {urlCustomer && urlCustomer.length ? ( @@ -103,11 +103,11 @@ const PageAbout = props => {

- {__SUPPORT_EMAIL__} + {__SUPPORT_EMAIL__}

- {__PUBLISHER_PHONE__} + {__PUBLISHER_PHONE__}

{publisherPrintUrl} diff --git a/apps/common/mobile/lib/view/Search.jsx b/apps/common/mobile/lib/view/Search.jsx index 6547b0dc5..6fb8d59b5 100644 --- a/apps/common/mobile/lib/view/Search.jsx +++ b/apps/common/mobile/lib/view/Search.jsx @@ -118,8 +118,6 @@ class SearchView extends Component { on: { search: (bar, curval, prevval) => { }, - enable: this.onSearchbarShow.bind(this, true), - disable: this.onSearchbarShow.bind(this, false) } }); } @@ -183,11 +181,11 @@ class SearchView extends Component { } } - onSearchbarShow(isshowed, bar) { - if ( !isshowed ) { - this.$replace.val(''); - } - } + // onSearchbarShow(isshowed, bar) { + // if ( !isshowed ) { + // // this.$replace.val(''); + // } + // } onEditorTouchStart(e) { console.log('taouch start'); @@ -235,6 +233,12 @@ class SearchView extends Component { replaceQuery: value }); } + + onSearchKeyBoard(event) { + if(event.keyCode === 13) { + this.props.onSearchQuery(this.searchParams()); + } + } render() { const usereplace = searchOptions.usereplace; @@ -261,6 +265,7 @@ class SearchView extends Component {

this.onSearchKeyBoard(e)} onChange={e => {this.changeSearchQuery(e.target.value)}} /> {isIos ? : null} this.changeSearchQuery('')} /> @@ -268,7 +273,7 @@ class SearchView extends Component { {/* {usereplace || isReplaceAll ? */}
{/* style={!usereplace ? hidden: null} */} - {this.changeReplaceQuery(e.target.value)}} /> {isIos ? : null} this.changeReplaceQuery('')} /> diff --git a/apps/common/mobile/resources/less/colors-table-dark.less b/apps/common/mobile/resources/less/colors-table-dark.less index 51062c360..e97d2d9a0 100644 --- a/apps/common/mobile/resources/less/colors-table-dark.less +++ b/apps/common/mobile/resources/less/colors-table-dark.less @@ -5,7 +5,7 @@ --background-primary: #232323; --background-secondary: #333; --background-tertiary: #131313; - --background-menu-divider: fade(#545458, 65%); + --background-menu-divider: fade(#545458, 50%); --background-button: #333333; --text-normal: fade(#FFF, 87%); diff --git a/apps/common/mobile/resources/less/colors-table.less b/apps/common/mobile/resources/less/colors-table.less index 739b351c6..0ce2667ca 100644 --- a/apps/common/mobile/resources/less/colors-table.less +++ b/apps/common/mobile/resources/less/colors-table.less @@ -10,7 +10,7 @@ --background-primary: #FFF; --background-secondary: #FFF; --background-tertiary: #EFF0F5; - --background-menu-divider: fade(#3C3C43, 36%); + --background-menu-divider: fade(#3C3C43, 15%); --background-button: #EFF0F5; --text-normal: #000000; diff --git a/apps/common/mobile/resources/less/comments.less b/apps/common/mobile/resources/less/comments.less index fb2945ff8..804867be3 100644 --- a/apps/common/mobile/resources/less/comments.less +++ b/apps/common/mobile/resources/less/comments.less @@ -6,6 +6,10 @@ .wrap-comment { padding: 16px 24px 0 16px; + background-color: @background-tertiary; + .comment-date { + color: @text-secondary; + } .name { font-weight: 600; font-size: 16px; diff --git a/apps/common/mobile/resources/less/common-ios.less b/apps/common/mobile/resources/less/common-ios.less index aa4f116eb..a6c00d4b4 100644 --- a/apps/common/mobile/resources/less/common-ios.less +++ b/apps/common/mobile/resources/less/common-ios.less @@ -89,15 +89,6 @@ .popover__titled { .list { - ul { - background-color: var(--f7-list-bg-color); - li:first-child, li:last-child { - border-radius: 0; - a { - border-radius: 0; - } - } - } &:first-child, &:last-child { ul { border-radius: 0; @@ -137,10 +128,6 @@ .list:last-child { li:last-child { - a { - //border-radius: 0; - } - &:after { content: ''; position: absolute; @@ -163,70 +150,6 @@ } } - // Bullets, numbers and multilevels - .bullets, - .numbers, - .multilevels { - .list{ - margin: 5px; - ul { - &:before, &:after { - display: none; - } - display: flex; - justify-content: space-around; - width: 100%; - margin-top: 10px; - padding: 0 5px; - background: none; - } - &:first-child li:first-child, &:last-child li:last-child { - border-radius: 0; - } - &:last-child li:last-child:after { - display: none; - } - } - - .list .item-content { - padding-left: 0; - min-height: 68px; - .item-inner{ - padding: 0; - &:after { - display: none; - } - } - } - - li { - width: 70px; - height: 70px; - border: 1px solid #c4c4c4; - html.pixel-ratio-2 & { - border: 0.5px solid #c4c4c4; - } - html.pixel-ratio-3 & { - border: 0.33px solid #c4c4c4; - } - - .thumb { - width: 100%; - height: 100%; - background-color: @fill-white; - background-size: cover; - - label { - width: 100%; - text-align: center; - position: absolute; - top: 34%; - color: @fill-black; - } - } - } - } - .popover { li:last-child { .segmented a { @@ -250,9 +173,6 @@ } .list { - li { - color: @text-normal; - } .item-content { .color-preview { width: 22px; @@ -261,9 +181,6 @@ margin-top: 21px; box-sizing: border-box; box-shadow: 0 0 0 1px rgba(0, 0, 0, .15) inset; - &.auto { - background-color: @autoColor; - } } .item-after { .color-preview { @@ -273,22 +190,9 @@ } } } - li.no-indicator { - .item-link { - .item-inner { - padding-right: 15px; - &:before { - content: none; - } - } - } - } .item-inner { - color: @text-normal; padding-top: 7px; - color: @text-normal; .item-after { - color: @text-normal; .after-start { margin: 0 5px; } @@ -315,11 +219,6 @@ display: flex; align-items: center; justify-content: center; - &.active { - color: @brandColor; - // background-color: var(--button-active-opacity); - background-color: @button-active-opacity; - } } } } @@ -396,13 +295,6 @@ font-family: inherit; cursor: pointer; outline: 0; - &.active { - background: @brandColor; - color: @fill-white; - i.icon { - background-color: @fill-white; - } - } } .button-fill { @@ -528,7 +420,7 @@ } } - .searchbar input[type=search] { + .searchbar input { box-sizing: border-box; width: 100%; height: 100%; diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index 783b1b4c8..d694fac4a 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -263,29 +263,6 @@ } // List .list { - li { - color: @text-normal; - } - .item-inner { - color: @text-normal; - } - li.no-indicator { - .item-link { - .item-inner{ - padding-right: 15px; - &:before { - content: none; - } - } - } - } - .item-link { - .item-inner { - .item-after { - color: @text-normal; - } - } - } &.inputs-list { .item-input, .item-link { .item-inner { @@ -324,14 +301,6 @@ &:first-child { margin-left: 0; } - &.active { - color: @brandColor; - // background-color: var(--button-active-opacity); - background-color: @button-active-opacity; - // i.icon { - // background-color: @white; - // } - } } } } @@ -345,78 +314,6 @@ margin-top: -3px; box-shadow: 0 0 0 1px rgba(0, 0, 0, .15) inset; background: @fill-white; - &.auto { - background-color: @autoColor; - } - } - } - } - // Bullets, numbers and multilevels - .bullets, - .numbers, - .multilevels { - .list{ - margin: 5px; - ul { - background: none; - &:before, &:after { - display: none; - } - display: flex; - justify-content: space-around; - width: 100%; - margin-top: 10px; - padding: 0 5px; - } - &:first-child li:first-child, &:last-child li:last-child { - border-radius: 0; - } - } - - .list .item-content { - padding-left: 0; - min-height: 68px; - .item-inner{ - padding: 0; - &:after { - display: none; - } - } - } - - li { - width: 70px; - height: 70px; - border: 1px solid @gray; - html.pixel-ratio-2 & { - border: 0.5px solid @gray; - } - html.pixel-ratio-3 & { - border: 0.33px solid @gray; - } - - .thumb { - width: 100%; - height: 100%; - background-color: @fill-white; - background-size: cover; - - label { - width: 100%; - text-align: center; - position: absolute; - top: 34%; - color: @fill-black; - } - } - } - } - .popover__titled { - .list:last-child { - li:last-child { - a { - border-radius: 0; - } } } } @@ -491,7 +388,7 @@ } } - .searchbar input[type=search] { + .searchbar input { box-sizing: border-box; width: 100%; display: block; @@ -513,12 +410,11 @@ background-size: 24px 24px; transition-duration: .3s; .encoded-svg-background(''); + &::placeholder { + color: @fill-white; + } } - - .searchbar input[type=search]::placeholder { - color: @fill-white; - } - + .navbar { .searchbar-expandable.searchbar-enabled { top: 0; diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 5c3de925b..975b48c32 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -68,8 +68,13 @@ margin-top: 0; } .inner-range-title { + color: @text-normal; padding: 15px 0 0 15px; } + + [slot="inner-end"] { + color: @text-normal; + } } .page-content { &.no-padding-top { @@ -88,6 +93,16 @@ } .list { + li.no-indicator { + .item-link { + .item-inner{ + padding-right: 15px; + &:before { + content: none; + } + } + } + } .item-text { text-overflow: initial; white-space: normal; @@ -98,6 +113,94 @@ .font-item img { filter: var(--image-border-types-filter, none) } + .buttons { + .button.active { + background-color: @button-active-opacity; + } + } + .item-content { + .color-preview.auto { + background-color: @autoColor; + } + } +} + +// Bullets, numbers and multilevels + +.bullets, +.numbers, +.multilevels { + .row.list { + margin: 0; + ul { + background: none; + &:before, &:after { + display: none; + } + display: flex; + justify-content: space-around; + width: 100%; + padding: 5px; + + li { + width: 70px; + height: 70px; + border: 1px solid @gray; + html.pixel-ratio-2 & { + border: 0.5px solid @gray; + } + html.pixel-ratio-3 & { + border: 0.33px solid @gray; + } + + .thumb { + width: 100%; + height: 100%; + background-color: @fill-white; + background-size: cover; + + label { + width: 100%; + text-align: center; + position: absolute; + top: 34%; + color: @fill-black; + } + } + } + } + } + + .row.list .item-content { + padding-left: 0; + min-height: 68px; + .item-inner{ + padding: 0; + &:after { + display: none; + } + } + } +} + +.popover { + .list { + ul { + li:first-child, li:last-child { + .item-link { + border-radius: 0; + } + } + } + } +} + +.popover .list + .list { + margin-top: 0; +} + +.popover .list:first-child li:first-child, .popover .list:first-child li:first-child a, .popover .list:first-child li:first-child > label, .popover .list:last-child li:last-child, .popover .list:last-child li:last-child a, .popover .list:last-child li:last-child > label { + border-radius: 0; } .shapes { @@ -166,6 +269,9 @@ margin: 32px 0; padding: 0 16px; box-sizing: border-box; + p { + color: @text-normal; + } } @@ -950,6 +1056,9 @@ input[type="number"]::-webkit-inner-spin-button { .popover__functions { box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.3); + .view { + transition: .2s height; + } } .target-function-list { diff --git a/apps/common/mobile/resources/less/dataview.less b/apps/common/mobile/resources/less/dataview.less index 8ca304ead..d47858754 100644 --- a/apps/common/mobile/resources/less/dataview.less +++ b/apps/common/mobile/resources/less/dataview.less @@ -14,7 +14,11 @@ } } - .active { + .row.list:last-child li:not(.active):last-child::after { + content: none; + } + + .row.list:last-child li.active:last-child, .active { position: relative; z-index: 1; @@ -24,8 +28,10 @@ width: 22px; height: 22px; right: -5px; + left: auto; bottom: -5px; - .encoded-svg-background(''); + transform: none; + .encoded-svg-mask(''); } } } \ No newline at end of file diff --git a/apps/common/mobile/resources/less/ios/_about.less b/apps/common/mobile/resources/less/ios/_about.less deleted file mode 100644 index 28d7460f2..000000000 --- a/apps/common/mobile/resources/less/ios/_about.less +++ /dev/null @@ -1,38 +0,0 @@ -// About -.about { - .page-content { - text-align: center; - } - - .content-block:first-child { - margin: 15px 0; - } - - .content-block { - margin: 0 auto 15px; - - a { - color: #000; - } - } - - h3 { - font-weight: normal; - margin: 0; - - &.vendor { - color: #000; - font-weight: bold; - margin-top: 15px; - } - } - - p > label { - margin-right: 5px; - } - - .logo { - background: url('../../../../common/mobile/resources/img/about/logo.svg') no-repeat center; - margin-top: 20px; - } -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/ios/_button.less b/apps/common/mobile/resources/less/ios/_button.less deleted file mode 100644 index da6c4d105..000000000 --- a/apps/common/mobile/resources/less/ios/_button.less +++ /dev/null @@ -1,8 +0,0 @@ -// Active button icon color -.button { - &.active { - i.icon { - background-color: #fff; - } - } -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/ios/_collaboration.less b/apps/common/mobile/resources/less/ios/_collaboration.less deleted file mode 100644 index e55a265a7..000000000 --- a/apps/common/mobile/resources/less/ios/_collaboration.less +++ /dev/null @@ -1,460 +0,0 @@ -.page-change { - background-color: @fill-white; - .block-description { - background-color: @fill-white; - padding-top: 15px; - padding-bottom: 15px; - margin: 0; - max-width: 100%; - word-wrap: break-word; - } - #user-name { - font-size: 17px; - line-height: 22px; - color: @fill-black; - margin: 0; - } - #date-change { - font-size: 14px; - line-height: 18px; - color: @text-tertiary; - margin: 0; - margin-top: 3px; - } - #text-change { - color: @fill-black; - font-size: 15px; - line-height: 20px; - margin: 0; - margin-top: 10px; - } - .block-btn, .content-block.block-btn:first-child { - position: absolute; - bottom: 0; - display: flex; - flex-direction: row; - justify-content: space-between; - margin: 0; - width: 100%; - height: 44px; - align-items: center; - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2); - - #btn-reject-change { - margin-left: 20px; - } - #btn-goto-change { - margin-left: 10px; - } - .change-buttons, .accept-reject { - display: flex; - } - .next-prev { - display: flex; - .link { - width: 44px; - } - } - .link { - position: relative; - display: flex; - justify-content: center; - align-items: center; - font-size: 17px; - height: 44px; - min-width: 44px; - } - } - #no-changes { - padding: 16px; - } -} -.navbar .center-collaboration { - display: flex; - justify-content: space-around; -} -.container-collaboration { - .navbar .right.close-collaboration { - position: absolute; - right: 10px; - } - .page-content .list-block:first-child { - margin-top: -1px; - } -} - -//Display mode -.page-display-mode[data-page="display-mode-view"] { - .list-block { - li.media-item { - .item-title { - font-weight: normal; - } - .item-subtitle { - font-size: 14px; - color: @gray; - } - } - } -} - -//Edit users -@initialEditUser: #373737; - -#user-list { - .item-content { - padding-left: 0; - } - .item-inner { - justify-content: flex-start; - padding-left: 15px; - } - .length { - margin-left: 4px; - } - .color { - min-width: 40px; - min-height: 40px; - margin-right: 20px; - text-align: center; - border-radius: 50px; - line-height: 40px; - color: @initialEditUser; - font-weight: 500; - - } - ul:before { - content: none; - } -} - -//Comments -.page-comments, .add-comment, .page-view-comments, .container-edit-comment, .container-add-reply, .page-edit-comment, .page-add-reply, .page-edit-reply { - .header-comment { - display: flex; - justify-content: space-between; - padding-right: 16px; - .comment-right { - display: flex; - justify-content: space-between; - width: 70px; - } - } - .list-block .item-inner { - display: block; - padding: 16px 0; - word-wrap: break-word; - } - - .list-reply { - padding-left: 26px; - } - .reply-textarea, .comment-textarea, .edit-reply-textarea { - resize: vertical; - } - .user-name { - font-size: 17px; - line-height: 22px; - color: @fill-black; - margin: 0; - font-weight: bold; - } - .comment-date, .reply-date { - font-size: 13px; - line-height: 18px; - color: @text-secondary; - margin: 0; - margin-top: 0px; - } - .comment-text, .reply-text { - color: @fill-black; - font-size: 15px; - line-height: 25px; - margin: 0; - max-width: 100%; - padding-right: 15px; - pre { - white-space: pre-wrap; - } - } - .reply-item { - margin-top: 15px; - padding-right: 16px; - padding-top: 13px; - .header-reply { - display: flex; - justify-content: space-between; - } - .user-name { - padding-top: 3px; - } - &:before { - content: ''; - position: absolute; - left: auto; - bottom: 0; - right: auto; - top: 0; - height: 1px; - width: 100%; - background-color: @listBlockBorderColor; - display: block; - z-index: 15; - -webkit-transform-origin: 50% 100%; - transform-origin: 50% 100%; - } - } - .comment-quote { - color: @text-secondary; - border-left: 1px solid @text-secondary; - padding-left: 10px; - padding-right: 16px; - margin: 5px 0; - font-size: 15px; - } - - .wrap-comment, .wrap-reply { - padding: 16px 24px 0 16px; - } - .comment-textarea, .reply-textarea, .edit-reply-textarea { - margin-top: 10px; - background:transparent; - outline:none; - width: 100%; - font-size: 17px; - border: none; - border-radius: 3px; - min-height: 100px; - } -} -.settings.popup .list-block ul.list-reply:last-child:after, .settings.popover .list-block ul.list-reply:last-child:after { - display: none; -} - -.container-edit-comment { - .page { - background-color: @fill-white; - } -} - -//view comment -.container-view-comment { - position: fixed; - -webkit-transition: height 100ms; - transition: height 120ms; - background-color: #FFFFFF; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - height: 50%; - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2), 0px 4px 5px rgba(0, 0, 0, 0.12); - .pages { - background-color: #FFFFFF; - } - .page-view-comments { - background-color: #FFFFFF; - .list-block { - margin-bottom: 100px; - ul:before, ul:after { - content: none; - } - .item-inner { - padding: 0; - } - } - - } - .toolbar { - position: fixed; - background-color: #FFFFFF; - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2), 0px 4px 5px rgba(0, 0, 0, 0.12), 0px 2px 4px rgba(0, 0, 0, 0.14); - &:before { - content: none; - } - .toolbar-inner { - display: flex; - justify-content: space-between; - padding: 0 16px; - .button-left { - min-width: 80px; - } - .button-right { - min-width: 62px; - display: flex; - justify-content: space-between; - a { - padding: 0 12px; - } - } - } - } - .swipe-container { - display: flex; - justify-content: center; - height: 40px; - .icon-swipe { - margin-top: 8px; - width: 40px; - height: 4px; - background: rgba(0, 0, 0, 0.12); - border-radius: 2px; - } - } - .list-block { - margin-top: 0; - } - &.popover { - position: absolute; - border-radius: 4px; - min-height: 170px; - height: 400px; - max-height: 600px; - - .toolbar { - position: absolute; - border-radius: 0 0 4px 4px; - .toolbar-inner { - padding-right: 0; - } - } - - .pages { - position: absolute; - - .page { - border-radius: 13px; - - .page-content { - padding: 16px; - padding-bottom: 80px; - - .list-block { - margin-bottom: 0px; - - .item-content { - padding-left: 0; - - .header-comment, .reply-item { - padding-right: 0; - } - } - } - - .block-reply { - margin-top: 10px; - - .reply-textarea { - min-height: 70px; - width: 278px; - border: 1px solid #c4c4c4; - border-radius: 6px; - padding: 5px; - } - } - - .edit-reply-textarea { - min-height: 60px; - width: 100%; - border: 1px solid #c4c4c4; - border-radius: 6px; - padding: 5px; - height: 60px; - margin-top: 10px; - } - - .comment-text { - padding-right: 0; - - .comment-textarea { - border: 1px solid #c4c4c4; - border-radius: 6px; - padding: 8px; - min-height: 80px; - height: 80px; - } - } - } - } - } - - } -} - -#done-comment { - color: @brandColor; -} -.page-add-comment { - background-color: @fill-white; - .wrap-comment, .wrap-reply { - padding: 16px 24px 0 16px; - .header-comment { - justify-content: flex-start; - } - .user-name { - font-weight: bold; - font-size: 17px; - padding-left: 5px; - } - .comment-date { - font-size: 13px; - color: @text-secondary; - padding-left: 5px; - } - .wrap-textarea { - margin-top: 16px; - padding-right: 6px; - .comment-textarea { - font-size: 17px; - border: none; - margin-top: 0; - min-height: 100px; - border-radius: 4px; - width: 100%; - padding-left: 5px; - &::placeholder { - color: @gray; - font-size: 17px; - } - } - } - } -} -.container-add-reply { - height: 100%; - .navbar { - a.link i + span { - margin-left: 0; - } - } - .page { - background-color: #FFFFFF; - } -} - -.actions-modal-button.color-red { - color: @red; -} - -.page-edit-comment, .page-add-reply, .page-edit-reply { - background-color: #FFFFFF; - .header-comment { - justify-content: flex-start; - } - .navbar { - .right { - height: 100%; - #add-reply, #edit-comment, #edit-reply { - display: flex; - align-items: center; - padding-left: 16px; - padding-right: 16px; - height: 100%; - } - } - } -} - -.container-edit-comment { - position: fixed; - -} - diff --git a/apps/common/mobile/resources/less/ios/_color-palette.less b/apps/common/mobile/resources/less/ios/_color-palette.less deleted file mode 100644 index b9c504f21..000000000 --- a/apps/common/mobile/resources/less/ios/_color-palette.less +++ /dev/null @@ -1,171 +0,0 @@ -// Color palette - -.color-palette { - a { - flex-grow: 1; - position: relative; - min-width: 10px; - min-height: 26px; - margin: 1px 1px 0 0; - box-shadow: 0 0 0 1px rgba(0,0,0,0.15) inset; - - &.active { - &:after { - content:' '; - position: absolute; - width: 100%; - height: 100%; - box-shadow: 0 0 0 1px white, 0 0 0 4px @brandColor; - z-index: 1; - border-radius: 1px; - } - } - - &.transparent { - background-repeat: no-repeat; - background-size: 100% 100%; - .encoded-svg-background(""); - } - } - - .theme-colors { - .item-inner { - display: inline-block; - overflow: visible; - } - } - - .standart-colors, .dynamic-colors { - .item-inner { - overflow: visible; - } - } -} - -.custom-colors { - display: flex; - justify-content: space-around; - align-items: center; - margin: 15px; - &.phone { - max-width: 300px; - margin: 0 auto; - margin-top: 4px; - .button-round { - margin-top: 20px; - } - } - .right-block { - margin-left: 20px; - } - .button-round { - height: 72px; - width: 72px; - padding: 0; - display: flex; - justify-content: center; - align-items: center; - border-radius: 100px; - background-color: #ffffff; - box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); - border-color: transparent; - margin-top: 25px; - &.active-state { - background-color: rgba(0, 0, 0, 0.1); - } - } - .color-hsb-preview { - width: 72px; - height: 72px; - border-radius: 100px; - overflow: hidden; - border: 1px solid #c4c4c4; - } - .new-color-hsb-preview { - width: 100%; - height: 36px; - } - .current-color-hsb-preview { - width: 100%; - height: 36px; - } - .list-block ul:before, .list-block ul:after { - content: none; - } - .list-block ul li { - border: 1px solid rgba(0, 0, 0, 0.3); - } - .color-picker-wheel { - position: relative; - width: 290px; - max-width: 100%; - height: auto; - font-size: 0; - - svg { - width: 100%; - height: auto; - } - - .color-picker-wheel-handle { - width: calc(100% / 6); - height: calc(100% / 6); - position: absolute; - box-sizing: border-box; - border: 2px solid #fff; - box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); - background: red; - border-radius: 50%; - left: 0; - top: 0; - } - - .color-picker-sb-spectrum { - background-color: #000; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%), linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #fff 100%); - position: relative; - width: 45%; - height: 45%; - left: 50%; - top: 50%; - transform: translate3d(-50%, -50%, 0); - position: absolute; - } - - .color-picker-sb-spectrum-handle { - width: 4px; - height: 4px; - position: absolute; - left: -2px; - top: -2px; - z-index: 1; - - &:after { - background-color: inherit; - content: ''; - position: absolute; - width: 16px; - height: 16px; - border: 1px solid #fff; - border-radius: 50%; - box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5); - box-sizing: border-box; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - transition: 150ms; - transition-property: transform; - transform-origin: center; - } - - &.color-picker-sb-spectrum-handle-pressed:after { - transform: scale(1.5) translate(-33.333%, -33.333%); - } - } - } -} - -#font-color-auto.active .color-auto { - box-shadow: 0 0 0 1px white, 0 0 0 4px @brandColor; - border-radius: 1px; -} diff --git a/apps/common/mobile/resources/less/ios/_color-schema.less b/apps/common/mobile/resources/less/ios/_color-schema.less deleted file mode 100644 index 2c4dc2449..000000000 --- a/apps/common/mobile/resources/less/ios/_color-schema.less +++ /dev/null @@ -1,21 +0,0 @@ -.color-schemes-menu { - cursor: pointer; - display: block; - background-color: #fff; - .item-inner { - justify-content: flex-start; - } - .color-schema-block { - display: flex; - } - .color { - min-width: 26px; - min-height: 26px; - margin: 0 2px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset; - } - .text { - margin-left: 20px; - color: #212121; - } -} diff --git a/apps/common/mobile/resources/less/ios/_container.less b/apps/common/mobile/resources/less/ios/_container.less deleted file mode 100644 index 3d1885edf..000000000 --- a/apps/common/mobile/resources/less/ios/_container.less +++ /dev/null @@ -1,117 +0,0 @@ -// Container -.phone.ios { - .container-edit, - .container-collaboration, - .container-filter { - .navbar { - .hairline(top, @toolbarBorderColor); - } - - .page-content { - .list-block:first-child { - margin-top: -1px; - } - } - } -} - -.container-edit, -.container-add, -.container-settings, -.container-collaboration, -.container-filter { - &.popover { - width: 360px; - } -} - -.settings { - &.popup, - &.popover { - .list-block { - - ul { - border-radius: 0 !important; - background: #fff; - - &:last-child { - .hairline(bottom, @listBlockBorderColor); - } - } - - &:first-child { - margin-top: 0; - } - - &:last-child { - margin-bottom: 30px; - } - - li:first-child a, - li:last-child a { - border-radius: 0 !important; - } - } - - &, - .popover-inner { - > .content-block { - width: 100%; - height: 100%; - margin: 0; - padding: 0; - color: #000; - } - } - - .popover-view { - border-radius: 13px; - - > .pages { - border-radius: 13px; - } - } - - .content-block:first-child { - margin-top: 0; - .content-block-inner { - &:before { - height: 0; - } - } - } - } - - .categories { - width: 100%; - - > .buttons-row { - width: 100%; - - .button { - padding: 0 1px; - } - } - } - - .popover-inner { - height: 400px; - } -} - -.container-add { - .categories { - > .buttons-row { - .button { - &.active { - i.icon { - background-color: transparent; - } - } - display: flex; - justify-content: center; - align-items: center; - } - } - } -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/ios/_contextmenu.less b/apps/common/mobile/resources/less/ios/_contextmenu.less deleted file mode 100644 index 9528ee37e..000000000 --- a/apps/common/mobile/resources/less/ios/_contextmenu.less +++ /dev/null @@ -1,95 +0,0 @@ -// Context menu - -.document-menu { - @contextMenuBg: rgba(0,0,0,0.9); - @modalHairlineColor: rgba(230,230,230,0.9); - @modalButtonColor : rgba(200,200,200,0.9); - - background-color: @contextMenuBg; - width: auto; - border-radius: 8px; - z-index: 12500; - - .popover-angle { - &:after { - background: @contextMenuBg; - } - } - - .list-block { - font-size: 14px; - white-space: pre; - - &:first-child { - ul { - .hairline-remove(left); - border-radius: 7px 0 0 7px; - } - li:first-child a{ - border-radius: 7px 0 0 7px; - } - } - &:last-child { - ul { - .hairline-remove(right); - border-radius: 0 7px 7px 0; - } - li:last-child a{ - border-radius: 0 7px 7px 0; - } - } - &:first-child:last-child { - li:first-child:last-child a, ul:first-child:last-child { - border-radius: 7px; - } - } - - .item-link { - display: inline-block; - - html:not(.watch-active-state) &:active, &.active-state { - //.transition(0ms); - background-color: #d9d9d9; - .item-inner { - .hairline-color(right, transparent); - } - } - - html.phone & { - padding: 0 10px; - } - - &.list-button { - color: @white; - .hairline(right, @modalHairlineColor); - line-height: 36px; - } - } - - // List items - li { - display: inline-block; - } - - // Last-childs - li { - &:last-child { - .list-button { - .hairline-remove(right); - } - } - &:last-child, &:last-child li:last-child { - .item-inner { - .hairline-remove(right); - } - } - li:last-child, &:last-child li { - .item-inner { - .hairline(right, @modalHairlineColor); - } - } - } - .no-hairlines(); - .no-hairlines-between() - } -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/ios/_dataview.less b/apps/common/mobile/resources/less/ios/_dataview.less deleted file mode 100644 index 6ddb04406..000000000 --- a/apps/common/mobile/resources/less/ios/_dataview.less +++ /dev/null @@ -1,35 +0,0 @@ -// Data view - -.dataview { - &.page-content { - background: @white; - } - - .row { - justify-content: space-around; - } - - ul { - padding: 0 10px; - list-style: none; - - li { - display: inline-block; - } - } - - .active { - position: relative; - z-index: 1; - - &::after { - content: ''; - position: absolute; - width: 22px; - height: 22px; - right: -5px; - bottom: -5px; - .encoded-svg-background(''); - } - } -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/ios/_listview.less b/apps/common/mobile/resources/less/ios/_listview.less deleted file mode 100644 index 9a5d40fe5..000000000 --- a/apps/common/mobile/resources/less/ios/_listview.less +++ /dev/null @@ -1,93 +0,0 @@ -// List extend - -.item-content { - .item-after { - &.splitter { - color: #000; - - label { - margin: 0 5px; - } - - .buttons-row { - min-width: 90px; - margin-left: 10px; - } - } - - &.value { - display: block; - min-width: 60px; - color: @black; - margin-left: 10px; - text-align: right; - } - - input.field { - color: @brandColor; - - &.placeholder-color::-webkit-input-placeholder { - color: @brandColor; - } - - &.right { - text-align: right; - } - } - } - - &.buttons { - .item-inner { - padding-top: 0; - padding-bottom: 0; - align-items: stretch; - - > .row { - width: 100%; - align-items: stretch; - - .button { - flex: 1; - border: none; - height: inherit; - border-radius: 0; - font-size: 17px; - display: flex; - align-items: center; - justify-content: center; - } - } - } - } - - .item-after .color-preview { - width: 75px; - height: 30px; - margin-top: -3px; - box-shadow: 0 0 0 1px rgba(0,0,0,0.15) inset; - } - - i .color-preview { - width: 22px; - height: 8px; - display: inline-block; - margin-top: 21px; - box-sizing: border-box; - box-shadow: 0 0 0 1px rgba(0,0,0,0.15) inset; - } -} - -.item-link { - &.no-indicator { - .item-inner { - background-image: none; - padding-right: 15px; - } - } -} - -.list-block { - .item-link.list-button { - color: @brandColor; - } -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/ios/comments.less b/apps/common/mobile/resources/less/ios/comments.less index cde7c1f88..a00df23c6 100644 --- a/apps/common/mobile/resources/less/ios/comments.less +++ b/apps/common/mobile/resources/less/ios/comments.less @@ -1,10 +1,6 @@ .device-ios { .wrap-comment { height: calc(100% - 60px); - background-color: @background-tertiary; - .comment-date { - color: @text-secondary; - } } .add-comment-popup, .add-reply-popup, .add-comment-dialog, .add-reply-dialog { .wrap-textarea { diff --git a/apps/common/mobile/resources/less/material/_about.less b/apps/common/mobile/resources/less/material/_about.less deleted file mode 100644 index ce52c8b3e..000000000 --- a/apps/common/mobile/resources/less/material/_about.less +++ /dev/null @@ -1,38 +0,0 @@ -// About - -.about { - .page-content { - text-align: center; - } - - .content-block:first-child { - margin: 15px 0; - } - - .content-block { - margin: 0 auto 15px; - - a { - color: #000; - } - } - - h3 { - font-weight: normal; - margin: 0; - - &.vendor { - color: #000; - font-weight: bold; - margin-top: 15px; - } - } - - p > label { - margin-right: 5px; - } - - .logo { - background: url('../../../../common/mobile/resources/img/about/logo.svg') no-repeat center; - } -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/material/_button.less b/apps/common/mobile/resources/less/material/_button.less deleted file mode 100644 index f680dcb57..000000000 --- a/apps/common/mobile/resources/less/material/_button.less +++ /dev/null @@ -1,9 +0,0 @@ -// Active button icon color - -.button { - &.active { - i.icon { - background-color: #fff; - } - } -} diff --git a/apps/common/mobile/resources/less/material/_collaboration.less b/apps/common/mobile/resources/less/material/_collaboration.less deleted file mode 100644 index 2d89a7280..000000000 --- a/apps/common/mobile/resources/less/material/_collaboration.less +++ /dev/null @@ -1,507 +0,0 @@ -.page-change { - .block-description { - background-color: @fill-white; - padding-top: 15px; - padding-bottom: 15px; - margin: 0; - max-width: 100%; - word-wrap: break-word; - } - #user-name { - font-size: 16px; - line-height: 22px; - color: @fill-black; - margin: 0; - } - #date-change { - font-size: 14px; - line-height: 18px; - color: @text-tertiary; - margin: 0; - margin-top: 3px; - } - #text-change { - color: @fill-black; - font-size: 15px; - line-height: 20px; - margin: 0; - margin-top: 10px; - } - .block-btn { - position: absolute; - bottom: 0; - display: flex; - flex-direction: row; - justify-content: space-between; - margin: 0; - width: 100%; - height: 56px; - align-items: center; - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2); - - #btn-reject-change { - margin-left: 15px; - } - .change-buttons, .accept-reject, .next-prev { - display: flex; - } - .link { - position: relative; - display: flex; - justify-content: center; - align-items: center; - font-size: 14px; - text-transform: uppercase; - font-weight: 500; - height: 56px; - min-width: 48px; - } - } - .header-change { - display: flex; - justify-content: flex-start; - padding-right: 16px; - .initials-change { - height: 40px; - width: 40px; - border-radius: 50px; - color: #FFFFFF; - display: flex; - justify-content: center; - align-items: center; - margin-right: 16px; - font-size: 18px; - } - } - #no-changes { - padding: 16px; - } -} -.container-collaboration { - .navbar .right.close-collaboration { - position: absolute; - right: 5px; - } - .page-content .list-block:first-child { - margin-top: -1px; - } -} - -//Display mode -.page-display-mode { - .list-block { - .item-subtitle { - font-size: 14px; - color: @gray; - } - } -} - -//Edit users -@initialEditUser: #373737; - -#user-list { - .item-content { - padding-left: 0; - } - .item-inner { - justify-content: flex-start; - padding-left: 15px; - } - .length { - margin-left: 4px; - } - .color { - min-width: 40px; - min-height: 40px; - margin-right: 20px; - text-align: center; - border-radius: 50px; - line-height: 40px; - color: @initialEditUser; - font-weight: 400; - } - ul:before { - content: none; - } -} - -//Comments -.page-comments, .page-add-comment, .page-view-comments, .container-edit-comment, .container-add-reply, .page-edit-comment, .page-add-reply, .page-edit-reply { - .list-block { - ul { - &:before, &:after { - content: none; - } - } - .item-inner { - display: block; - padding: 16px 0; - word-wrap: break-word; - &:after { - content: none; - } - } - } - .list-reply { - padding-left: 26px; - } - .reply-textarea, .comment-textarea, .edit-reply-textarea { - resize: vertical; - } - .user-name { - font-size: 16px; - line-height: 22px; - color: @fill-black; - margin: 0; - } - .comment-date, .reply-date { - font-size: 12px; - line-height: 18px; - color: @text-secondary; - margin: 0; - margin-top: 0px; - } - .comment-text, .reply-text { - color: @fill-black; - font-size: 15px; - line-height: 25px; - margin: 0; - max-width: 100%; - padding-right: 15px; - pre { - white-space: pre-wrap; - } - } - .reply-item { - padding-right: 16px; - padding-top: 13px; - .header-reply { - display: flex; - justify-content: space-between; - } - .user-name { - padding-top: 3px; - } - } - .comment-quote { - color: @text-secondary; - border-left: 1px solid @text-secondary; - padding-left: 10px; - padding-right: 16px; - margin: 5px 0; - font-size: 15px; - } - - .wrap-comment, .wrap-reply { - padding: 16px 24px 0 16px; - } - .comment-textarea, .reply-textarea, .edit-reply-textarea { - margin-top: 10px; - background:transparent; - outline:none; - width: 100%; - font-size: 15px; - border: none; - border-radius: 3px; - min-height: 100px; - } - - .header-comment { - display: flex; - justify-content: space-between; - padding-right: 16px; - .comment-right { - display: flex; - justify-content: space-between; - width: 70px; - } - .comment-left { - display: flex; - justify-content: space-between; - } - .initials-comment { - height: 40px; - width: 40px; - border-radius: 50px; - color: #FFFFFF; - display: flex; - justify-content: center; - align-items: center; - margin-right: 16px; - font-size: 18px; - } - } - .header-reply { - .reply-left { - display: flex; - justify-content: space-between; - align-items: flex-start; - } - .initials-reply { - width: 24px; - height: 24px; - color: #FFFFFF; - font-size: 11px; - display: flex; - justify-content: center; - align-items: center; - margin-right: 16px; - border-radius: 50px; - margin-top: 5px; - } - } -} -.settings.popup .list-block ul.list-reply:last-child:after, .settings.popover .list-block ul.list-reply:last-child:after { - display: none; -} - -//view comment -.container-view-comment { - position: fixed; - -webkit-transition: height 100ms; - transition: height 100ms; - background-color: #FFFFFF; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - height: 50%; - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2), 0px 4px 5px rgba(0, 0, 0, 0.12), 0px 2px 4px rgba(0, 0, 0, 0.14); - .page-view-comments { - background-color: #FFFFFF; - .list-block { - margin-bottom: 120px; - ul:before, ul:after { - content: none; - } - .item-inner { - padding: 0; - } - } - - } - .toolbar { - position: fixed; - background-color: #FFFFFF; - box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2), 0px 4px 5px rgba(0, 0, 0, 0.12), 0px 2px 4px rgba(0, 0, 0, 0.14); - &.toolbar-bottom { - top: auto; - } - &:before { - content: none; - } - a { - &.link { - color: @brandColor; - font-size: 16px; - } - } - .toolbar-inner { - display: flex; - justify-content: space-between; - padding: 0 16px; - .button-left { - min-width: 80px; - } - .button-right { - min-width: 62px; - display: flex; - justify-content: space-between; - a { - padding: 0 8px; - } - } - } - } - .swipe-container { - display: flex; - justify-content: center; - height: 40px; - background-color: @background-primary; - .icon-swipe { - margin-top: 8px; - width: 40px; - height: 4px; - background: rgba(0, 0, 0, 0.12); - border-radius: 2px; - } - } - .list-block { - margin-top: 0; - } - &.popover { - position: absolute; - border-radius: 4px; - min-height: 170px; - height: 400px; - max-height: 600px; - - .toolbar { - position: absolute; - border-radius: 0 0 4px 4px; - .toolbar-inner { - padding-right: 0; - } - } - - .pages { - position: absolute; - - .page { - border-radius: 13px; - - .page-content { - padding: 16px; - padding-bottom: 80px; - - .list-block { - margin-bottom: 0px; - - .item-content { - padding-left: 0; - - .header-comment, .reply-item { - padding-right: 0; - } - } - } - - .block-reply { - margin-top: 10px; - - .reply-textarea { - min-height: 70px; - width: 278px; - border: 1px solid #c4c4c4; - border-radius: 6px; - padding: 5px; - } - } - - .edit-reply-textarea { - min-height: 60px; - width: 100%; - border: 1px solid #c4c4c4; - border-radius: 6px; - padding: 5px; - height: 60px; - margin-top: 10px; - } - - .comment-text { - padding-right: 0; - - .comment-textarea { - border: 1px solid #c4c4c4; - border-radius: 6px; - padding: 8px; - min-height: 80px; - height: 80px; - } - } - } - } - } - - } -} - -#done-comment { - padding: 0 16px; -} -.page-add-comment { - .wrap-comment, .wrap-reply { - padding: 16px 24px 0 16px; - .header-comment { - justify-content: flex-start; - } - .user-name { - font-size: 17px; - font-weight: bold; - } - .comment-date { - font-size: 13px; - color: @text-secondary; - } - .wrap-textarea { - margin-top: 16px; - padding-right: 6px; - .comment-textarea { - font-size: 17px; - border: none; - margin-top: 0; - min-height: 100px; - border-radius: 4px; - &::placeholder { - color: @gray; - font-size: 17px; - } - } - } - } -} - -.container-edit-comment, .container-add-reply { - height: 100%; - .navbar { - &:after { - content: ''; - position: absolute; - left: 0; - bottom: 0; - right: auto; - top: auto; - height: 1px; - width: 100%; - background-color: #c4c4c4; - display: block; - z-index: 15; - -webkit-transform-origin: 50% 100%; - transform-origin: 50% 100%; - } - .navbar-inner { - justify-content: space-between; - } - a.link i + span { - margin-left: 0; - } - .center { - font-size: 18px; - } - .right { - margin-left: 0; - } - } - .page-add-comment { - background-color: @fill-white; - } - .header-comment { - justify-content: flex-start; - } -} - -.actions-modal-button.color-red { - color: @red; -} - -.page-edit-comment, .page-add-reply, .page-edit-reply { - background-color: @fill-white; - .header-comment { - justify-content: flex-start; - } - .navbar { - .right { - height: 100%; - #add-new-reply, #edit-comment, #edit-reply { - display: flex; - align-items: center; - padding-left: 16px; - padding-right: 16px; - height: 100%; - } - } - } -} - -.container-edit-comment { - position: fixed; -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/material/_color-palette.less b/apps/common/mobile/resources/less/material/_color-palette.less deleted file mode 100644 index ab77c10a0..000000000 --- a/apps/common/mobile/resources/less/material/_color-palette.less +++ /dev/null @@ -1,175 +0,0 @@ -// Color palette - -.color-palette { - a { - flex-grow: 1; - position: relative; - min-width: 10px; - min-height: 26px; - margin: 1px 1px 0 0; - box-shadow: 0 0 0 1px rgba(0,0,0,0.15) inset; - - &.active { - &:after { - content:' '; - position: absolute; - width: 100%; - height: 100%; - box-shadow: 0 0 0 1px white, 0 0 0 4px @brandColor; - z-index: 1; - border-radius: 1px; - } - } - - &.transparent { - background-repeat: no-repeat; - background-size: 100% 100%; - .encoded-svg-background(""); - } - } - - .theme-colors { - .item-inner { - display: inline-block; - overflow: visible; - } - } - - .standart-colors, .dynamic-colors { - .item-inner { - overflow: visible; - } - } - - &.list-block:last-child li:last-child a { - border-radius: 0; - } - -} - -.custom-colors { - display: flex; - justify-content: space-around; - align-items: center; - margin: 15px; - &.phone { - max-width: 300px; - margin: 0 auto; - margin-top: 4px; - .button-round { - margin-top: 20px; - } - } - .right-block { - margin-left: 20px; - } - .button-round { - height: 72px; - width: 72px; - padding: 0; - display: flex; - justify-content: center; - align-items: center; - border-radius: 100px; - background-color: @brandColor; - box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); - border-color: transparent; - margin-top: 25px; - &.active-state { - background-color: rgba(0, 0, 0, 0.1); - } - } - .color-hsb-preview { - width: 72px; - height: 72px; - border-radius: 100px; - overflow: hidden; - border: 1px solid #ededed; - } - .new-color-hsb-preview { - width: 100%; - height: 36px; - } - .current-color-hsb-preview { - width: 100%; - height: 36px; - } - .list-block ul:before, .list-block ul:after { - content: none; - } - .list-block ul li { - border: 1px solid rgba(0, 0, 0, 0.3); - } - .color-picker-wheel { - position: relative; - width: 290px; - max-width: 100%; - height: auto; - font-size: 0; - - svg { - width: 100%; - height: auto; - } - - .color-picker-wheel-handle { - width: calc(100% / 6); - height: calc(100% / 6); - position: absolute; - box-sizing: border-box; - border: 2px solid #fff; - box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); - background: red; - border-radius: 50%; - left: 0; - top: 0; - } - - .color-picker-sb-spectrum { - background-color: #000; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%), linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #fff 100%); - position: relative; - width: 45%; - height: 45%; - left: 50%; - top: 50%; - transform: translate3d(-50%, -50%, 0); - position: absolute; - } - - .color-picker-sb-spectrum-handle { - width: 4px; - height: 4px; - position: absolute; - left: -2px; - top: -2px; - z-index: 1; - - &:after { - background-color: inherit; - content: ''; - position: absolute; - width: 16px; - height: 16px; - border: 1px solid #fff; - border-radius: 50%; - box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5); - box-sizing: border-box; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - transition: 150ms; - transition-property: transform; - transform-origin: center; - } - - &.color-picker-sb-spectrum-handle-pressed:after { - transform: scale(1.5) translate(-33.333%, -33.333%); - } - } - } -} -#font-color-auto.active .color-auto { - box-shadow: 0 0 0 1px white, 0 0 0 4px @brandColor; - border-radius: 1px; -} diff --git a/apps/common/mobile/resources/less/material/_color-schema.less b/apps/common/mobile/resources/less/material/_color-schema.less deleted file mode 100644 index 2c4dc2449..000000000 --- a/apps/common/mobile/resources/less/material/_color-schema.less +++ /dev/null @@ -1,21 +0,0 @@ -.color-schemes-menu { - cursor: pointer; - display: block; - background-color: #fff; - .item-inner { - justify-content: flex-start; - } - .color-schema-block { - display: flex; - } - .color { - min-width: 26px; - min-height: 26px; - margin: 0 2px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset; - } - .text { - margin-left: 20px; - color: #212121; - } -} diff --git a/apps/common/mobile/resources/less/material/_container.less b/apps/common/mobile/resources/less/material/_container.less deleted file mode 100644 index 00f1877cd..000000000 --- a/apps/common/mobile/resources/less/material/_container.less +++ /dev/null @@ -1,77 +0,0 @@ -// Container - -.phone.android { - .container-edit, - .container-collaboration, - .container-filter { - - .page-content { - .list-block:first-child { - margin-top: -1px; - } - } - } -} - -.container-edit, -.container-add, -.container-settings, -.container-collaboration, -.container-filter { - &.popover { - width: 360px; - } -} - -.settings { - &.popup, - &.popover { - .list-block { - ul { - border-radius: 0; - background: #fff; - } - - &:first-child { - margin-top: 0; - - li:first-child a { - border-radius: 0; - } - } - } - - &, - .popover-inner { - > .content-block { - width: 100%; - height: 100%; - margin: 0; - padding: 0; - } - } - - .popover-view { - border-radius: 2px; - - > .pages { - border-radius: 2px; - } - } - } - - .categories { - width: 100%; - height: 100%; - margin: 0; - padding: 0; - - > .toolbar { - top: 0; - height: 100%; - } - } - .popover-inner { - height: 400px; - } -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/material/_contextmenu.less b/apps/common/mobile/resources/less/material/_contextmenu.less deleted file mode 100644 index 84e376cca..000000000 --- a/apps/common/mobile/resources/less/material/_contextmenu.less +++ /dev/null @@ -1,29 +0,0 @@ -// Context menu - -.document-menu { - width: auto; - line-height: 1 !important; - z-index: 12500; - - .popover-inner { - overflow: hidden; - } - - .list-block { - white-space: pre; - - ul { - height: 48px; - } - - li { - display: inline-block; - } - - .item-link { - html.phone & { - padding: 0 10px; - } - } - } -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/material/_dataview.less b/apps/common/mobile/resources/less/material/_dataview.less deleted file mode 100644 index fca18dbd7..000000000 --- a/apps/common/mobile/resources/less/material/_dataview.less +++ /dev/null @@ -1,32 +0,0 @@ -// Data view - -.dataview { - .row { - justify-content: space-around; - } - - ul { - padding: 0 10px; - list-style: none; - justify-content: space-around; - - li { - display: inline-block; - } - } - - .active { - position: relative; - z-index: 1; - - &::after { - content: ''; - position: absolute; - width: 22px; - height: 22px; - right: -5px; - bottom: -5px; - .encoded-svg-background(''); - } - } -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/material/_listview.less b/apps/common/mobile/resources/less/material/_listview.less deleted file mode 100644 index ba134cc39..000000000 --- a/apps/common/mobile/resources/less/material/_listview.less +++ /dev/null @@ -1,73 +0,0 @@ -// List extend - -.item-content{ - .item-after { - &.splitter { - label { - color: #000; - margin:0 5px; - line-height: 36px; - } - - .button { - min-width: 40px; - margin-left: 0; - } - } - - &.value { - display: block; - min-width: 50px; - color: @black; - margin-left: 10px; - text-align: right; - } - } - - &.buttons { - .item-inner { - padding-top: 0; - padding-bottom: 0; - - > .row { - width: 100%; - - .button { - flex: 1; - font-size: 17px; - margin-left: 5px; - - &:first-child { - margin-left: 0; - } - - &.active { - color: #fff; - background-color: @brandColor; - } - } - } - } - } - - .color-preview { - width: 30px; - height: 30px; - border-radius: 16px; - margin-top: -3px; - box-shadow: 0 0 0 1px rgba(0,0,0,0.15) inset; - } -} - -.item-link { - &.no-indicator { - .item-inner { - background-image: none; - padding-right: 16px; - } - } -} - -.popover .list-block:last-child li:last-child .buttons a { - border-radius: 3px; -} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/material/comments.less b/apps/common/mobile/resources/less/material/comments.less index 98bd8ec3a..4b877c191 100644 --- a/apps/common/mobile/resources/less/material/comments.less +++ b/apps/common/mobile/resources/less/material/comments.less @@ -1,10 +1,6 @@ .device-android { .wrap-comment { height: calc(100% - 72px); - background-color: @background-tertiary; - .comment-date { - color: @text-secondary; - } } .add-comment-popup, .add-reply-popup, .add-comment-dialog, .add-reply-dialog { .wrap-textarea { diff --git a/apps/documenteditor/embed/locale/id.json b/apps/documenteditor/embed/locale/id.json new file mode 100644 index 000000000..b4b385c09 --- /dev/null +++ b/apps/documenteditor/embed/locale/id.json @@ -0,0 +1,50 @@ +{ + "common.view.modals.txtCopy": "Disalin ke papan klip", + "common.view.modals.txtEmbed": "Melekatkan", + "common.view.modals.txtHeight": "Tinggi", + "common.view.modals.txtShare": "Bagi tautan", + "common.view.modals.txtWidth": "Lebar", + "DE.ApplicationController.convertationErrorText": "Konversi gagal.", + "DE.ApplicationController.convertationTimeoutText": "Waktu konversi habis.", + "DE.ApplicationController.criticalErrorTitle": "Kesalahan", + "DE.ApplicationController.downloadErrorText": "Unduhan gagal.", + "DE.ApplicationController.downloadTextText": "Mengunduh dokumen...", + "DE.ApplicationController.errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
Silakan hubungi admin Server Dokumen Anda.", + "DE.ApplicationController.errorDefaultMessage": "Kode kesalahan %1", + "DE.ApplicationController.errorEditingDownloadas": "Ada kesalahan saat bekerja dengan dokumen.
Gunakan opsi 'Download sebagai...' untuk menyimpan file salinan backup ke komputer Anda.", + "DE.ApplicationController.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.", + "DE.ApplicationController.errorFileSizeExceed": "Ukuran file melewati batas server Anda.
Silakan hubungi admin Server Dokumen Anda untuk detail.", + "DE.ApplicationController.errorForceSave": "Ada kesalahan saat menyimpan file. Silakan gunakan opsi 'Download sebagai' untuk menyimpan file ke komputer Anda dan coba lagi.", + "DE.ApplicationController.errorLoadingFont": "Font tidak bisa dimuat.
Silakan kontak admin Server Dokumen Anda.", + "DE.ApplicationController.errorSubmit": "Submit gagal.", + "DE.ApplicationController.errorTokenExpire": "Token keamanan dokumen sudah kadaluwarsa.
Silakan hubungi admin Server Dokumen Anda.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu download file atau copy konten untuk memastikan tidak ada yang hilang, dan muat ulang halaman ini.", + "DE.ApplicationController.errorUserDrop": "File tidak dapat di akses", + "DE.ApplicationController.notcriticalErrorTitle": "Peringatan", + "DE.ApplicationController.openErrorText": "Eror ketika membuka file.", + "DE.ApplicationController.scriptLoadError": "Koneksi terlalu lambat dan beberapa komponen tidak bisa dibuka. Silakan muat ulang halaman.", + "DE.ApplicationController.textAnonymous": "Anonim", + "DE.ApplicationController.textClear": "Bersihkan Semua Area", + "DE.ApplicationController.textGotIt": "Mengerti", + "DE.ApplicationController.textGuest": "Tamu", + "DE.ApplicationController.textLoadingDocument": "Memuat dokumen", + "DE.ApplicationController.textNext": "Area Berikutnya", + "DE.ApplicationController.textOf": "dari", + "DE.ApplicationController.textRequired": "Isi semua area yang dibutuhkan untuk mengirim form.", + "DE.ApplicationController.textSubmit": "Submit", + "DE.ApplicationController.textSubmited": "Form berhasil disubmit
Klik untuk menutup tips", + "DE.ApplicationController.txtClose": "Tutup", + "DE.ApplicationController.txtEmpty": "(Kosong)", + "DE.ApplicationController.txtPressLink": "Tekan CTRL dan klik tautan", + "DE.ApplicationController.unknownErrorText": "Kesalahan tidak diketahui", + "DE.ApplicationController.unsupportedBrowserErrorText": "Peramban kamu tidak didukung", + "DE.ApplicationController.waitText": "Silahkan menunggu", + "DE.ApplicationView.txtDownload": "Unduh", + "DE.ApplicationView.txtDownloadDocx": "Download sebagai docx", + "DE.ApplicationView.txtDownloadPdf": "Download sebagai pdf", + "DE.ApplicationView.txtEmbed": "Melekatkan", + "DE.ApplicationView.txtFileLocation": "Buka Dokumen", + "DE.ApplicationView.txtFullScreen": "Layar penuh", + "DE.ApplicationView.txtPrint": "Cetak", + "DE.ApplicationView.txtShare": "Bagikan" +} \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/lo.json b/apps/documenteditor/embed/locale/lo.json index d7975ae97..39b90c380 100644 --- a/apps/documenteditor/embed/locale/lo.json +++ b/apps/documenteditor/embed/locale/lo.json @@ -14,18 +14,28 @@ "DE.ApplicationController.errorEditingDownloadas": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເຮັດວຽກກັບເອກກະສານ.
ໃຊ້ຕົວເລືອກ 'ດາວໂຫລດເປັນ ... ' ເພື່ອບັນທຶກເອກະສານເກັບໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານ.", "DE.ApplicationController.errorFilePassProtect": "ມີລະຫັດປົກປ້ອງຟາຍນີ້ຈຶ່ງບໍ່ສາມາດເປີດໄດ້", "DE.ApplicationController.errorFileSizeExceed": "ຂະໜາດຂອງຟາຍໃຫຍ່ກວ່າທີ່ກຳນົດໄວ້ໃນລະບົບ.
ກະລຸນະຕິດຕໍ່ຜູ້ຄຸ້ມຄອງລົບຂອງທ່ານ", + "DE.ApplicationController.errorForceSave": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເບັນທຶກຝາຍ. ກະລຸນາໃຊ້ຕົວເລືອກ 'ດາວໂຫລດເປັນ' ເພື່ອບັນທຶກເອກະສານໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານຫຼືລອງໃໝ່ພາຍຫຼັງ.", + "DE.ApplicationController.errorLoadingFont": "ຟອນບໍ່ໄດ້ຖືກໂຫລດ.
ກະລຸນາແອດມີນຂອງທ່ານ.", "DE.ApplicationController.errorSubmit": "ສົ່ງອອກຜິດພາດ", + "DE.ApplicationController.errorTokenExpire": "ເຄື່ອງໝາຍຄວາມປອດໄພຂອງເອກະສານໄດ້ໝົດອາຍຸແລ້ວ.
ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບເອກະສານຂອງທ່ານ.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "ການເຊື່ອຕໍ່ອິນເຕີເນັດຫາກໍ່ກັບມາ, ແລະຟາຍເອກະສານໄດ້ມີການປ່ຽນແປງແລ້ວ. ກ່ອນທີ່ທ່ານຈະດຳເນີການຕໍ່ໄປ, ທ່ານຕ້ອງໄດ້ດາວໂຫຼດຟາຍ ຫຼືສຳເນົາເນື້ອຫາ ເພື່ອປ້ອງການການສູນເສຍ, ແລະກໍ່ທຳການໂຫຼດໜ້າຄືນອີກຄັ້ງ.", "DE.ApplicationController.errorUserDrop": "ບໍ່ສາມາດເຂົ້າເຖິງຟາຍໄດ້", "DE.ApplicationController.notcriticalErrorTitle": "ເຕືອນ", + "DE.ApplicationController.openErrorText": "ມີຂໍ້ຜິດພາດເກີດຂື້ນໃນຂະນະເປີດເອກະສານ.", "DE.ApplicationController.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່", + "DE.ApplicationController.textAnonymous": "ບໍ່ລະບຸຊື່", "DE.ApplicationController.textClear": "ລຶບລ້າງຟີລທັງໝົດ", + "DE.ApplicationController.textGotIt": "ໄດ້ແລ້ວ", + "DE.ApplicationController.textGuest": " ແຂກ", "DE.ApplicationController.textLoadingDocument": "ກຳລັງໂຫຼດເອກະສານ", "DE.ApplicationController.textNext": "ຟີລທັດໄປ", "DE.ApplicationController.textOf": "ຂອງ", + "DE.ApplicationController.textRequired": "ຕື່ມຂໍ້ມູນໃສ່ທຸກຊ່ອງທີ່ຕ້ອງການເພື່ອສົ່ງແບບຟອມ.", "DE.ApplicationController.textSubmit": "ສົ່ງອອກ", "DE.ApplicationController.textSubmited": " ແບບຟອມທີ່ສົ່ງມາແລ້ວ", "DE.ApplicationController.txtClose": " ປິດ", + "DE.ApplicationController.txtEmpty": "(ຫວ່າງເປົ່າ)", + "DE.ApplicationController.txtPressLink": "ກົດ Ctrl ແລະກົດລິ້ງ", "DE.ApplicationController.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", "DE.ApplicationController.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມານຳໃຊ້ໄດ້", "DE.ApplicationController.waitText": "ກະລຸນາລໍຖ້າ...", diff --git a/apps/documenteditor/embed/locale/pt-PT.json b/apps/documenteditor/embed/locale/pt-PT.json new file mode 100644 index 000000000..dbf1df160 --- /dev/null +++ b/apps/documenteditor/embed/locale/pt-PT.json @@ -0,0 +1,50 @@ +{ + "common.view.modals.txtCopy": "Copiar para a área de transferência", + "common.view.modals.txtEmbed": "Incorporar", + "common.view.modals.txtHeight": "Altura", + "common.view.modals.txtShare": "Partilhar ligação", + "common.view.modals.txtWidth": "Largura", + "DE.ApplicationController.convertationErrorText": "Falha na conversão.", + "DE.ApplicationController.convertationTimeoutText": "Excedeu o tempo limite de conversão.", + "DE.ApplicationController.criticalErrorTitle": "Erro", + "DE.ApplicationController.downloadErrorText": "Falha ao descarregar.", + "DE.ApplicationController.downloadTextText": "A descarregar documento…", + "DE.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissão.
Contacte o administrador do servidor de documentos.", + "DE.ApplicationController.errorDefaultMessage": "Código de erro: %1", + "DE.ApplicationController.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no computador.", + "DE.ApplicationController.errorFilePassProtect": "O documento está protegido por palavra-passe e não pode ser aberto.", + "DE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", + "DE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.", + "DE.ApplicationController.errorLoadingFont": "Tipos de letra não carregados.
Por favor contacte o administrador do servidor de documentos.", + "DE.ApplicationController.errorSubmit": "Falha ao submeter.", + "DE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contacto com o administrador do Servidor de Documentos.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro foi alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", + "DE.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", + "DE.ApplicationController.notcriticalErrorTitle": "Aviso", + "DE.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.", + "DE.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Recarregue a página.", + "DE.ApplicationController.textAnonymous": "Anónimo", + "DE.ApplicationController.textClear": "Limpar todos os campos", + "DE.ApplicationController.textGotIt": "Percebi", + "DE.ApplicationController.textGuest": "Convidado", + "DE.ApplicationController.textLoadingDocument": "A carregar documento", + "DE.ApplicationController.textNext": "Próximo campo", + "DE.ApplicationController.textOf": "de", + "DE.ApplicationController.textRequired": "Preencha todos os campos obrigatório para poder submeter o formulário.", + "DE.ApplicationController.textSubmit": "Submeter", + "DE.ApplicationController.textSubmited": "Formulário submetido com êxito
Clique para fechar a dica", + "DE.ApplicationController.txtClose": "Fechar", + "DE.ApplicationController.txtEmpty": "(Vazio)", + "DE.ApplicationController.txtPressLink": "Prima Ctrl e clique na ligação", + "DE.ApplicationController.unknownErrorText": "Erro desconhecido.", + "DE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.", + "DE.ApplicationController.waitText": "Aguarde…", + "DE.ApplicationView.txtDownload": "Descarregar", + "DE.ApplicationView.txtDownloadDocx": "Descarregar como docx", + "DE.ApplicationView.txtDownloadPdf": "Descarregar como pdf", + "DE.ApplicationView.txtEmbed": "Incorporar", + "DE.ApplicationView.txtFileLocation": "Abrir localização do ficheiro", + "DE.ApplicationView.txtFullScreen": "Ecrã inteiro", + "DE.ApplicationView.txtPrint": "Imprimir", + "DE.ApplicationView.txtShare": "Partilhar" +} \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/sk.json b/apps/documenteditor/embed/locale/sk.json index e25a79dcf..5c02cafbf 100644 --- a/apps/documenteditor/embed/locale/sk.json +++ b/apps/documenteditor/embed/locale/sk.json @@ -17,9 +17,11 @@ "DE.ApplicationController.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", "DE.ApplicationController.errorLoadingFont": "Fonty sa nenahrali.
Kontaktujte prosím svojho administrátora Servera dokumentov.", "DE.ApplicationController.errorSubmit": "Odoslanie sa nepodarilo.", + "DE.ApplicationController.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetové spojenie bolo obnovené a verzia súboru bola zmenená.
Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", "DE.ApplicationController.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", "DE.ApplicationController.notcriticalErrorTitle": "Upozornenie", + "DE.ApplicationController.openErrorText": "Pri otváraní súboru sa vyskytla chyba.", "DE.ApplicationController.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", "DE.ApplicationController.textAnonymous": "Anonymný", "DE.ApplicationController.textClear": "Vyčistiť všetky polia", diff --git a/apps/documenteditor/embed/locale/sv.json b/apps/documenteditor/embed/locale/sv.json index efeefa8d3..2dcf45ae4 100644 --- a/apps/documenteditor/embed/locale/sv.json +++ b/apps/documenteditor/embed/locale/sv.json @@ -32,9 +32,9 @@ "DE.ApplicationController.textOf": "av", "DE.ApplicationController.textRequired": "Fyll i alla nödvändiga fält för att skicka formuläret.", "DE.ApplicationController.textSubmit": "Skicka", - "DE.ApplicationController.textSubmited": " Formulär skickat
Klicka för att stänga tipset", + "DE.ApplicationController.textSubmited": " Formulär skickat
Klicka för att stänga tipset", "DE.ApplicationController.txtClose": "Stäng", - "DE.ApplicationController.txtEmpty": "Dokumentets säkerhetstoken", + "DE.ApplicationController.txtEmpty": "(Tom)", "DE.ApplicationController.txtPressLink": "Tryck på CTRL och klicka på länken", "DE.ApplicationController.unknownErrorText": "Okänt fel.", "DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", diff --git a/apps/documenteditor/embed/locale/zh-TW.json b/apps/documenteditor/embed/locale/zh-TW.json new file mode 100644 index 000000000..93c1190e1 --- /dev/null +++ b/apps/documenteditor/embed/locale/zh-TW.json @@ -0,0 +1,50 @@ +{ + "common.view.modals.txtCopy": "複製到剪貼板", + "common.view.modals.txtEmbed": "嵌入", + "common.view.modals.txtHeight": "高度", + "common.view.modals.txtShare": "分享連結", + "common.view.modals.txtWidth": "寬度", + "DE.ApplicationController.convertationErrorText": "轉換失敗。", + "DE.ApplicationController.convertationTimeoutText": "轉換逾時。", + "DE.ApplicationController.criticalErrorTitle": "錯誤", + "DE.ApplicationController.downloadErrorText": "下載失敗", + "DE.ApplicationController.downloadTextText": "文件下載中...", + "DE.ApplicationController.errorAccessDeny": "您嘗試進行未被授權的動作
請聯繫您的文件主機(Document Server)的管理者。", + "DE.ApplicationController.errorDefaultMessage": "錯誤編號:%1", + "DE.ApplicationController.errorEditingDownloadas": "在處理文件檔期間發生錯誤。
使用“下載為...”選項將文件備份副本儲存到硬碟。", + "DE.ApplicationController.errorFilePassProtect": "該文件受密碼保護,無法打開。", + "DE.ApplicationController.errorFileSizeExceed": "此檔案超過這主機設定的限制的大小
想了解更多資訊,請聯絡您的文件服務主機(Document Server)的管理者。", + "DE.ApplicationController.errorForceSave": "儲存文件檔時發生錯誤。請使用 “下載為” 選項將文件存到硬碟,或稍後再試。", + "DE.ApplicationController.errorLoadingFont": "字體未載入。
請聯絡文件服務(Document Server)管理員。", + "DE.ApplicationController.errorSubmit": "傳送失敗", + "DE.ApplicationController.errorTokenExpire": "此文件安全憑證(Security Token)已過期。
請與您的Document Server管理員聯繫。", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。
在繼續工作之前,您需要下載文件或複制其內容以確保沒有資料遺失,然後重新整裡此頁面。", + "DE.ApplicationController.errorUserDrop": "目前無法存取該文件。", + "DE.ApplicationController.notcriticalErrorTitle": "警告", + "DE.ApplicationController.openErrorText": "開啟檔案時發生錯誤", + "DE.ApplicationController.scriptLoadError": "連接速度太慢,某些組件無法載入。請重新整理頁面。", + "DE.ApplicationController.textAnonymous": "匿名", + "DE.ApplicationController.textClear": "清除所有段落", + "DE.ApplicationController.textGotIt": "我瞭解了", + "DE.ApplicationController.textGuest": "訪客", + "DE.ApplicationController.textLoadingDocument": "載入文件中", + "DE.ApplicationController.textNext": "下一欄位", + "DE.ApplicationController.textOf": "於", + "DE.ApplicationController.textRequired": "填寫所有必填欄位以發送表單。", + "DE.ApplicationController.textSubmit": "傳送", + "DE.ApplicationController.textSubmited": "表格傳送成功
點此關閉提示", + "DE.ApplicationController.txtClose": "結束", + "DE.ApplicationController.txtEmpty": "(空)", + "DE.ApplicationController.txtPressLink": "按Ctrl並點擊連結", + "DE.ApplicationController.unknownErrorText": "未知錯誤。", + "DE.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器", + "DE.ApplicationController.waitText": "請耐心等待...", + "DE.ApplicationView.txtDownload": "下載", + "DE.ApplicationView.txtDownloadDocx": "下載及儲存為docx", + "DE.ApplicationView.txtDownloadPdf": "下載及儲存為pdf", + "DE.ApplicationView.txtEmbed": "嵌入", + "DE.ApplicationView.txtFileLocation": "打開文件所在位置", + "DE.ApplicationView.txtFullScreen": "全螢幕", + "DE.ApplicationView.txtPrint": "列印", + "DE.ApplicationView.txtShare": "分享" +} \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/id.json b/apps/documenteditor/forms/locale/id.json new file mode 100644 index 000000000..995e1320f --- /dev/null +++ b/apps/documenteditor/forms/locale/id.json @@ -0,0 +1,171 @@ +{ + "Common.UI.Calendar.textApril": "April", + "Common.UI.Calendar.textAugust": "Agustus", + "Common.UI.Calendar.textDecember": "Desember", + "Common.UI.Calendar.textFebruary": "Februari", + "Common.UI.Calendar.textJanuary": "Januari", + "Common.UI.Calendar.textJuly": "Juli", + "Common.UI.Calendar.textJune": "Juni", + "Common.UI.Calendar.textMarch": "Maret", + "Common.UI.Calendar.textMay": "Mei", + "Common.UI.Calendar.textMonths": "bulan", + "Common.UI.Calendar.textNovember": "November", + "Common.UI.Calendar.textOctober": "Oktober", + "Common.UI.Calendar.textSeptember": "September", + "Common.UI.Calendar.textShortApril": "Apr", + "Common.UI.Calendar.textShortAugust": "Ags", + "Common.UI.Calendar.textShortDecember": "Des", + "Common.UI.Calendar.textShortFebruary": "Feb", + "Common.UI.Calendar.textShortFriday": "Jum", + "Common.UI.Calendar.textShortJanuary": "Jan", + "Common.UI.Calendar.textShortJuly": "Jul", + "Common.UI.Calendar.textShortJune": "Jun", + "Common.UI.Calendar.textShortMarch": "Mar", + "Common.UI.Calendar.textShortMay": "Mei", + "Common.UI.Calendar.textShortMonday": "Sen", + "Common.UI.Calendar.textShortNovember": "Nov", + "Common.UI.Calendar.textShortOctober": "Okt", + "Common.UI.Calendar.textShortSaturday": "Sab", + "Common.UI.Calendar.textShortSeptember": "Sep", + "Common.UI.Calendar.textShortSunday": "Min", + "Common.UI.Calendar.textShortThursday": "Ka", + "Common.UI.Calendar.textShortTuesday": "Sel", + "Common.UI.Calendar.textShortWednesday": "Rab", + "Common.UI.Calendar.textYears": "tahun", + "Common.UI.Themes.txtThemeClassicLight": "Terang Klasik", + "Common.UI.Themes.txtThemeDark": "Gelap", + "Common.UI.Themes.txtThemeLight": "Cerah", + "Common.UI.Window.cancelButtonText": "Batalkan", + "Common.UI.Window.closeButtonText": "Tutup", + "Common.UI.Window.noButtonText": "Tidak", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Konfirmasi", + "Common.UI.Window.textDontShow": "Jangan tampilkan pesan ini lagi", + "Common.UI.Window.textError": "Kesalahan", + "Common.UI.Window.textInformation": "Informasi", + "Common.UI.Window.textWarning": "Peringatan", + "Common.UI.Window.yesButtonText": "Ya", + "Common.Views.CopyWarningDialog.textDontShow": "Jangan tampilkan pesan ini lagi", + "Common.Views.CopyWarningDialog.textMsg": "Copy, cut, dan paste hanya akan dilakukan di tab editor ini.

Untuk copy atau paste dari dan ke aplikasi luar tab editor, gunakan kombinasi keyboard ini:", + "Common.Views.CopyWarningDialog.textTitle": "Salin, Potong dan Tempel", + "Common.Views.CopyWarningDialog.textToCopy": "untuk Salin", + "Common.Views.CopyWarningDialog.textToCut": "untuk Potong", + "Common.Views.CopyWarningDialog.textToPaste": "untuk Tempel", + "Common.Views.EmbedDialog.textHeight": "Ketinggian", + "Common.Views.EmbedDialog.textTitle": "Melekatkan", + "Common.Views.EmbedDialog.textWidth": "Lebar", + "Common.Views.EmbedDialog.txtCopy": "Disalin ke papan klip", + "Common.Views.EmbedDialog.warnCopy": "Browser eror! Gunakan shortcut keyboard [Ctrl] + [C]", + "Common.Views.ImageFromUrlDialog.textUrl": "Tempel URL gambar:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", + "Common.Views.OpenDialog.closeButtonText": "Tutup File", + "Common.Views.OpenDialog.txtEncoding": "Enkoding", + "Common.Views.OpenDialog.txtIncorrectPwd": "Password salah.", + "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", + "Common.Views.OpenDialog.txtPassword": "Kata Sandi", + "Common.Views.OpenDialog.txtPreview": "Pratinjau", + "Common.Views.OpenDialog.txtProtected": "Jika Anda memasukkan password dan membuka file, password file saat ini akan di reset.", + "Common.Views.OpenDialog.txtTitle": "Pilih %1 opsi", + "Common.Views.OpenDialog.txtTitleProtected": "File yang Diproteksi", + "Common.Views.SaveAsDlg.textLoading": "Memuat", + "Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan", + "Common.Views.SelectFileDlg.textLoading": "Memuat", + "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", + "Common.Views.ShareDialog.textTitle": "Bagi tautan", + "Common.Views.ShareDialog.txtCopy": "Disalin ke papan klip", + "Common.Views.ShareDialog.warnCopy": "Browser eror! Gunakan shortcut keyboard [Ctrl] + [C]", + "DE.Controllers.ApplicationController.convertationErrorText": "Konversi gagal.", + "DE.Controllers.ApplicationController.convertationTimeoutText": "Waktu konversi habis.", + "DE.Controllers.ApplicationController.criticalErrorTitle": "Kesalahan", + "DE.Controllers.ApplicationController.downloadErrorText": "Unduhan gagal.", + "DE.Controllers.ApplicationController.downloadTextText": "Mengunduh dokumen...", + "DE.Controllers.ApplicationController.errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
Silakan hubungi admin Server Dokumen Anda.", + "DE.Controllers.ApplicationController.errorBadImageUrl": "URL Gambar salah", + "DE.Controllers.ApplicationController.errorConnectToServer": "Dokumen tidak bisa disimpan. Silakan periksa pengaturan koneksi atau hubungi admin Anda.
Ketika klik tombol 'OK', Anda akan diminta untuk download dokumen.", + "DE.Controllers.ApplicationController.errorDataEncrypted": "Perubahan enkripsi sudah diterima dan tidak bisa diuraikan.", + "DE.Controllers.ApplicationController.errorDefaultMessage": "Kode kesalahan %1", + "DE.Controllers.ApplicationController.errorEditingDownloadas": "Ada kesalahan saat bekerja dengan dokumen.
Gunakan opsi 'Download sebagai...' untuk menyimpan file salinan backup ke komputer Anda.", + "DE.Controllers.ApplicationController.errorEditingSaveas": "Ada kesalahan saat bekerja dengan dokumen.
Gunakan opsi 'Simpan sebagai...' untuk menyimpan file salinan backup ke komputer Anda.", + "DE.Controllers.ApplicationController.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.", + "DE.Controllers.ApplicationController.errorFileSizeExceed": "Ukuran file melewati batas server Anda.
Silakan hubungi admin Server Dokumen Anda untuk detail.", + "DE.Controllers.ApplicationController.errorForceSave": "Ada kesalahan saat menyimpan file. Silakan gunakan opsi 'Download sebagai' untuk menyimpan file ke komputer Anda dan coba lagi.", + "DE.Controllers.ApplicationController.errorLoadingFont": "Font tidak bisa dimuat.
Silakan kontak admin Server Dokumen Anda.", + "DE.Controllers.ApplicationController.errorServerVersion": "Versi editor sudah di update. Halaman akan dimuat ulang untuk menerapkan perubahan.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "Waktu edit dokumen sudah selesai. Silakan muat ulang halaman.", + "DE.Controllers.ApplicationController.errorSessionIdle": "Dokumen sudah lama tidak diedit. Silakan muat ulang halaman.", + "DE.Controllers.ApplicationController.errorSessionToken": "Koneksi ke server terganggu. Silakan muat ulang halaman.", + "DE.Controllers.ApplicationController.errorSubmit": "Submit gagal.", + "DE.Controllers.ApplicationController.errorToken": "Token keamanan dokumen tidak dibentuk dengan tepat.
Silakan hubungi admin Server Dokumen Anda.", + "DE.Controllers.ApplicationController.errorTokenExpire": "Token keamanan dokumen sudah kadaluwarsa.
Silakan hubungi admin Server Dokumen Anda.", + "DE.Controllers.ApplicationController.errorUpdateVersion": "Versi file telah diubah. Halaman tidak akan dimuat ulang.", + "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu download file atau copy konten untuk memastikan tidak ada yang hilang, dan muat ulang halaman ini.", + "DE.Controllers.ApplicationController.errorUserDrop": "File tidak dapat di akses.", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "Koneksi terputus. Anda tetap bisa melihat dokumen,
tapi tidak bisa download atau print sampai koneksi terhubung dan halaman dimuat ulang.", + "DE.Controllers.ApplicationController.mniImageFromFile": "Gambar dari File", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Gambar dari Penyimpanan", + "DE.Controllers.ApplicationController.mniImageFromUrl": "Gambar dari URL", + "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Peringatan", + "DE.Controllers.ApplicationController.openErrorText": "Eror ketika membuka file.", + "DE.Controllers.ApplicationController.saveErrorText": "Eror ketika menyimpan file.", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "File tidak bisa disimpan atau dibuat.
Alasan yang mungkin adalah:
1. File hanya bisa dibaca.
2. File sedang diedit user lain.
3. Memori penuh atau terkorupsi.", + "DE.Controllers.ApplicationController.scriptLoadError": "Koneksi terlalu lambat dan beberapa komponen tidak bisa dibuka. Silakan muat ulang halaman.", + "DE.Controllers.ApplicationController.textAnonymous": "Tamu", + "DE.Controllers.ApplicationController.textBuyNow": "Kunjungi website", + "DE.Controllers.ApplicationController.textCloseTip": "Klik untuk menutup tip.", + "DE.Controllers.ApplicationController.textContactUs": "Hubungi sales", + "DE.Controllers.ApplicationController.textGotIt": "Mengerti", + "DE.Controllers.ApplicationController.textGuest": "Tamu", + "DE.Controllers.ApplicationController.textLoadingDocument": "Memuat dokumen", + "DE.Controllers.ApplicationController.textNoLicenseTitle": "Batas lisensi sudah tercapai", + "DE.Controllers.ApplicationController.textOf": "dari", + "DE.Controllers.ApplicationController.textRequired": "Isi semua area yang dibutuhkan untuk mengirim form.", + "DE.Controllers.ApplicationController.textSaveAs": "Simpan sebagai PDF", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "Simpan sebagai", + "DE.Controllers.ApplicationController.textSubmited": "Form berhasil disubmit
Klik untuk menutup tips", + "DE.Controllers.ApplicationController.titleLicenseExp": "Lisensi kadaluwarsa", + "DE.Controllers.ApplicationController.titleServerVersion": "Editor mengupdate", + "DE.Controllers.ApplicationController.titleUpdateVersion": "Versi telah diubah", + "DE.Controllers.ApplicationController.txtArt": "Teks Anda di sini", + "DE.Controllers.ApplicationController.txtChoose": "Pilih satu barang", + "DE.Controllers.ApplicationController.txtClickToLoad": "Klik untuk memuat gambar", + "DE.Controllers.ApplicationController.txtClose": "Tutup", + "DE.Controllers.ApplicationController.txtEmpty": "(Kosong)", + "DE.Controllers.ApplicationController.txtEnterDate": "Masukkan tanggal", + "DE.Controllers.ApplicationController.txtPressLink": "Tekan CTRL dan klik tautan", + "DE.Controllers.ApplicationController.txtUntitled": "Untitled", + "DE.Controllers.ApplicationController.unknownErrorText": "Kesalahan tidak diketahui", + "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Browser Anda tidak didukung.", + "DE.Controllers.ApplicationController.uploadImageExtMessage": "Format gambar tidak dikenal.", + "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB.", + "DE.Controllers.ApplicationController.waitText": "Silahkan menunggu", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja.
Hubungi admin Anda untuk mempelajari lebih lanjut.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Lisensi Anda sudah kadaluwarsa.
Silakan update lisensi Anda dan muat ulang halaman.", + "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Lisensi kadaluwarsa.
Anda tidak memiliki akses untuk editing dokumen secara keseluruhan.
Silakan hubungi admin Anda.", + "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Lisensi perlu diperbaharui.
Anda memiliki akses terbatas untuk edit dokumen.
Silakan hubungi admin Anda untuk mendapatkan akses penuh", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Anda sudah mencapai batas user untuk %1 editor. Hubungi admin Anda untuk mempelajari lebih lanjut.", + "DE.Controllers.ApplicationController.warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja.
Hubungi %1 tim sales untuk syarat personal upgrade.", + "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", + "DE.Views.ApplicationView.textClear": "Bersihkan Semua Area", + "DE.Views.ApplicationView.textCopy": "Salin", + "DE.Views.ApplicationView.textCut": "Potong", + "DE.Views.ApplicationView.textFitToPage": "Sesuaikan Halaman", + "DE.Views.ApplicationView.textFitToWidth": "Sesuaikan Lebar", + "DE.Views.ApplicationView.textNext": "Area Berikutnya", + "DE.Views.ApplicationView.textPaste": "Tempel", + "DE.Views.ApplicationView.textPrintSel": "Print Pilihan", + "DE.Views.ApplicationView.textRedo": "Ulangi", + "DE.Views.ApplicationView.textSubmit": "Submit", + "DE.Views.ApplicationView.textUndo": "Batalkan", + "DE.Views.ApplicationView.textZoom": "Pembesaran", + "DE.Views.ApplicationView.txtDarkMode": "Mode gelap", + "DE.Views.ApplicationView.txtDownload": "Unduh", + "DE.Views.ApplicationView.txtDownloadDocx": "Download sebagai docx", + "DE.Views.ApplicationView.txtDownloadPdf": "Download sebagai pdf", + "DE.Views.ApplicationView.txtEmbed": "Melekatkan", + "DE.Views.ApplicationView.txtFileLocation": "Buka Dokumen", + "DE.Views.ApplicationView.txtFullScreen": "Layar penuh", + "DE.Views.ApplicationView.txtPrint": "Cetak", + "DE.Views.ApplicationView.txtShare": "Bagikan", + "DE.Views.ApplicationView.txtTheme": "Tema interface" +} \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/lo.json b/apps/documenteditor/forms/locale/lo.json index 9f52922a9..c4912c7ca 100644 --- a/apps/documenteditor/forms/locale/lo.json +++ b/apps/documenteditor/forms/locale/lo.json @@ -1,32 +1,164 @@ { + "Common.UI.Calendar.textApril": "ເມສາ", + "Common.UI.Calendar.textAugust": "ສິງຫາ", + "Common.UI.Calendar.textDecember": "ເດືອນທັນວາ", + "Common.UI.Calendar.textFebruary": "ເດືອນກຸມພາ", + "Common.UI.Calendar.textJanuary": "ເດືອນກຸມພາ", + "Common.UI.Calendar.textJuly": "ເດືອນກໍລະກົດ", + "Common.UI.Calendar.textJune": "ເດືອນມິຖຸນາ", + "Common.UI.Calendar.textMarch": "ມີນາ", + "Common.UI.Calendar.textMay": "ພຶດສະພາ", + "Common.UI.Calendar.textMonths": "ເດືອນ", + "Common.UI.Calendar.textNovember": "ພະຈິກ", + "Common.UI.Calendar.textOctober": "ຕຸລາ", + "Common.UI.Calendar.textSeptember": "ກັນຍາ", + "Common.UI.Calendar.textShortApril": "ເມສາ", + "Common.UI.Calendar.textShortAugust": "ສິງຫາ", + "Common.UI.Calendar.textShortDecember": "ເດືອນທັນວາ", + "Common.UI.Calendar.textShortFebruary": "ເດືອນກຸມພາ", + "Common.UI.Calendar.textShortFriday": "ວັນສຸກ", + "Common.UI.Calendar.textShortJanuary": "ເດືອນກຸມພາ", + "Common.UI.Calendar.textShortJuly": "ມິຖຸນາ", + "Common.UI.Calendar.textShortJune": "ເດືອນມິຖຸນາ", + "Common.UI.Calendar.textShortMarch": "ມີນາ", + "Common.UI.Calendar.textShortMay": "ພຶດສະພາ", + "Common.UI.Calendar.textShortMonday": "ວັນຈັນ", + "Common.UI.Calendar.textShortNovember": "ພະຈິກ", + "Common.UI.Calendar.textShortOctober": "ຕຸລາ", + "Common.UI.Calendar.textShortSaturday": "ວັນເສົາ", + "Common.UI.Calendar.textShortSeptember": "ກັນຍາ", + "Common.UI.Calendar.textShortSunday": "ວັນອາທິດ", + "Common.UI.Calendar.textShortThursday": "ວັນພະຫັດ", + "Common.UI.Calendar.textShortTuesday": "ວັນອັງຄານ", + "Common.UI.Calendar.textShortWednesday": "ພວກເຮົາ", + "Common.UI.Calendar.textYears": "ປີ", "Common.UI.Themes.txtThemeClassicLight": "ແສງມາດຕະຖານ", "Common.UI.Themes.txtThemeDark": "ມືດ", "Common.UI.Themes.txtThemeLight": "ແຈ້ງ", + "Common.UI.Window.cancelButtonText": "ຍົກເລີກ", + "Common.UI.Window.closeButtonText": "ປິດ", + "Common.UI.Window.noButtonText": "ບໍ່", + "Common.UI.Window.okButtonText": "ຕົກລົງ", + "Common.UI.Window.textConfirmation": "ການຢັ້ງຢືນຕົວຕົນ", + "Common.UI.Window.textDontShow": "ຢ່າສະແດງຂໍ້ຄວາມນີ້ອີກ", + "Common.UI.Window.textError": "ຂໍ້ຜິດພາດ", + "Common.UI.Window.textInformation": "ຂໍ້ມູນ", + "Common.UI.Window.textWarning": "ເຕືອນ", + "Common.UI.Window.yesButtonText": "ແມ່ນແລ້ວ", + "Common.Views.CopyWarningDialog.textDontShow": "ຢ່າສະແດງຂໍ້ຄວາມນີ້ອີກ", + "Common.Views.CopyWarningDialog.textMsg": "ການເຮັດສຳເນົາ, ຕັດ ແລະ ວາງ ໂດຍໃຊ້ຄຳສັ່ງເມນູການປະຕິບັດ ຈະຖືກດຳເນີນການພາຍໃນແຖບຕົວແກ້ໄຂນີ້ເທົ່ານັ້ນ.

ເພື່ອສຳເນົາ ຫຼື ວາງໃສ່ ຫຼືຈາກແອັບພລິເຄຊັນນອກແຖບຕົວແກ້ໄຂ ໃຫ້ໃຊ້ການປະສົມແປ້ນພິມຕໍ່ໄປນີ້:", + "Common.Views.CopyWarningDialog.textTitle": "ປະຕິບັດການ ສໍາເນົາ, ຕັດ ແລະ ວາງ", + "Common.Views.CopyWarningDialog.textToCopy": "ສຳລັບສຳເນົົາ", + "Common.Views.CopyWarningDialog.textToCut": "ສຳລັບຕັດ", + "Common.Views.CopyWarningDialog.textToPaste": "ສຳລັບວາງ ", + "Common.Views.EmbedDialog.textHeight": "ລວງສູງ", + "Common.Views.EmbedDialog.textTitle": "ຝັງໄວ້", + "Common.Views.EmbedDialog.textWidth": "ລວງກວ້າງ", + "Common.Views.EmbedDialog.txtCopy": "ເກັບໄວ້ໃນຄຣິບບອດ", + "Common.Views.EmbedDialog.warnCopy": "ຄວາມຜິດພາດຂອງບາວເຊີ້! ໃຊ້ທາງລັດໂດຍພິມ [Ctrl] + [C]", + "Common.Views.ImageFromUrlDialog.textUrl": "ວາງ URL ຂອງຮູບພາບ:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "ຈຳເປັນຕ້ອງມີສ່ວນນີ້", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນ \"http://www.example.com\"", + "Common.Views.OpenDialog.closeButtonText": "ປິດຟຮາຍເອກະສານ", + "Common.Views.OpenDialog.txtEncoding": "ການເຂົ້າລະຫັດ", + "Common.Views.OpenDialog.txtIncorrectPwd": "ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ", + "Common.Views.OpenDialog.txtOpenFile": "ໃສ່ລະຫັດຜ່ານເພື່ອເປີດໄຟລ໌", + "Common.Views.OpenDialog.txtPassword": "ລະຫັດຜ່ານ", + "Common.Views.OpenDialog.txtPreview": "ເບິ່ງຕົວຢ່າງ", + "Common.Views.OpenDialog.txtProtected": "ເມື່ອທ່ານໃສ່ລະຫັດຜ່ານເປີດເອກະສານ, ລະຫັດຜ່ານໃນປະຈຸບັນຈະຖືກຕັ້ງຄ່າ ໃໝ່.", + "Common.Views.OpenDialog.txtTitle": "ເລືອກ %1 ຕົວເລືອກ", + "Common.Views.OpenDialog.txtTitleProtected": "ຟາຍທີ່ໄດ້ຮັບການປົກປ້ອງ", + "Common.Views.SaveAsDlg.textLoading": "ກຳລັງໂຫລດ", + "Common.Views.SaveAsDlg.textTitle": "ແຟ້ມສຳລັບບັນທຶກ", + "Common.Views.SelectFileDlg.textLoading": "ກຳລັງໂຫລດ", + "Common.Views.SelectFileDlg.textTitle": "ເລືອກແຫຼ່ງຂໍ້ມູນ", + "Common.Views.ShareDialog.textTitle": "ແບ່ງປັນລິ້ງ", + "Common.Views.ShareDialog.txtCopy": "ເກັບໄວ້ໃນຄຣິບບອດ", + "Common.Views.ShareDialog.warnCopy": "ຄວາມຜິດພາດຂອງບາວເຊີ້! ໃຊ້ທາງລັດໂດຍພິມ [Ctrl] + [C]", "DE.Controllers.ApplicationController.convertationErrorText": " ການປ່ຽນແປງບໍ່ສຳເລັດ.", "DE.Controllers.ApplicationController.convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", "DE.Controllers.ApplicationController.criticalErrorTitle": "ຂໍ້ຜິດພາດ", "DE.Controllers.ApplicationController.downloadErrorText": "ດາວໂຫຼດບໍ່ສຳເລັດ.", "DE.Controllers.ApplicationController.downloadTextText": "ກຳລັງດາວໂຫຼດເອກະສານ", "DE.Controllers.ApplicationController.errorAccessDeny": "ທ່ານບໍ່ມີສິດຈະດຳເນີນການອັນນີ້.
ກະລຸນະຕິດຕໍ່ຜູ້ຄຸ້ມຄອງລົບຂອງທ່ານ", + "DE.Controllers.ApplicationController.errorBadImageUrl": "URL ຮູບພາບບໍ່ຖືກຕ້ອງ", + "DE.Controllers.ApplicationController.errorConnectToServer": "ເອກະສານບໍ່ສາມາດບັນທຶກໄດ້. ກະລຸນາກວດສອບການຕັ້ງຄ່າການເຊື່ອມຕໍ່ຫລືຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.
ເມື່ອທ່ານກົດປຸ່ມ 'OK', ທ່ານຈະໄດ້ຮັບການກະຕຸ້ນເຕືອນໃຫ້ດາວໂຫລດເອກະສານ.", + "DE.Controllers.ApplicationController.errorDataEncrypted": "ໄດ້ຮັບການປ່ຽນແປງລະຫັດແລ້ວ, ບໍ່ສາມາດຖອດລະຫັດໄດ້.", "DE.Controllers.ApplicationController.errorDefaultMessage": "ລະຫັດຂໍ້ຜິດພາດ: %1", "DE.Controllers.ApplicationController.errorEditingDownloadas": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເຮັດວຽກກັບເອກກະສານ.
ໃຊ້ຕົວເລືອກ 'ດາວໂຫລດເປັນ ... ' ເພື່ອບັນທຶກເອກະສານເກັບໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານ.", + "DE.Controllers.ApplicationController.errorEditingSaveas": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເຮັດວຽກກັບເອກກະສານ.
ໃຊ້ຕົວເລືອກ 'ບັນທຶກເປັນ ... ' ເພື່ອບັນທຶກເອກະສານເກັບໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານ.", "DE.Controllers.ApplicationController.errorFilePassProtect": "ມີລະຫັດປົກປ້ອງຟາຍນີ້ຈຶ່ງບໍ່ສາມາດເປີດໄດ້", "DE.Controllers.ApplicationController.errorFileSizeExceed": "ຂະໜາດຂອງຟາຍໃຫຍ່ກວ່າທີ່ກຳນົດໄວ້ໃນລະບົບ.
ກະລຸນະຕິດຕໍ່ຜູ້ຄຸ້ມຄອງລົບຂອງທ່ານ", + "DE.Controllers.ApplicationController.errorForceSave": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເບັນທຶກຝາຍ. ກະລຸນາໃຊ້ຕົວເລືອກ 'ດາວໂຫລດເປັນ' ເພື່ອບັນທຶກເອກະສານໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານຫຼືລອງໃໝ່ພາຍຫຼັງ.", + "DE.Controllers.ApplicationController.errorLoadingFont": "ຟອນບໍ່ໄດ້ຖືກໂຫລດ.
ກະລຸນາແອດມີນຂອງທ່ານ.", + "DE.Controllers.ApplicationController.errorServerVersion": "ສະບັບດັດແກ້ໄດ້ຖືກປັບປຸງແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດຄືນເພື່ອນຳໃຊ້ການປ່ຽນແປງ.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "ໝົດເວລາການແກ້ໄຂເອກະສານ ກະລຸນາໂຫລດໜ້ານີ້ຄືນໃໝ່", + "DE.Controllers.ApplicationController.errorSessionIdle": "ເອກະສານດັ່ງກ່າວບໍ່ໄດ້ຖືກດັດແກ້ມາດົນແລ້ວ. ກະລຸນາໂຫລດ ໜ້ານີ້ຄືນໃໝ່.", + "DE.Controllers.ApplicationController.errorSessionToken": "ການເຊື່ອມຕໍ່ຫາ ເຊີເວີຖືກລົບກວນ, ກະລຸນນາໂລດຄືນ", "DE.Controllers.ApplicationController.errorSubmit": "ສົ່ງອອກຜິດພາດ", + "DE.Controllers.ApplicationController.errorToken": "ເຄື່ອງໝາຍຄວາມປອດໄພເອກະສານບໍ່ຖືກຕ້ອງ.
ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບເອກະສານຂອງທ່ານ.", + "DE.Controllers.ApplicationController.errorTokenExpire": "ເຄື່ອງໝາຍຄວາມປອດໄພຂອງເອກະສານ ໝົດ ອາຍຸ.
ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບເອກະສານຂອງທ່ານ", + "DE.Controllers.ApplicationController.errorUpdateVersion": "ເອກະສານໄດ້ຖືກປ່ຽນແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດໃໝ່.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "ການເຊື່ອຕໍ່ອິນເຕີເນັດຫາກໍ່ກັບມາ, ແລະຟາຍເອກະສານໄດ້ມີການປ່ຽນແປງແລ້ວ. ກ່ອນທີ່ທ່ານຈະດຳເນີການຕໍ່ໄປ, ທ່ານຕ້ອງໄດ້ດາວໂຫຼດຟາຍ ຫຼືສຳເນົາເນື້ອຫາ ເພື່ອປ້ອງການການສູນເສຍ, ແລະກໍ່ທຳການໂຫຼດໜ້າຄືນອີກຄັ້ງ.", "DE.Controllers.ApplicationController.errorUserDrop": "ບໍ່ສາມາດເຂົ້າເຖິງຟາຍໄດ້", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "ຂາດການເຊື່ອມຕໍ່. ທ່ານຍັງສາມາດເບິ່ງເອກະສານໄດ້,
ແຕ່ຈະບໍ່ສາມາດດາວໂຫລດຫລືພິມໄດ້ຈົນກວ່າການເຊື່ອມຕໍ່ຈະຖືກກັັບຄືນ ແລະ ໜ້າ ຈະຖືກໂຫລດຄືນ", + "DE.Controllers.ApplicationController.mniImageFromFile": "ຮູບພາບຈາກຟາຍ", + "DE.Controllers.ApplicationController.mniImageFromStorage": "ຮູບພາບຈາກບ່ອນເກັບພາບ", + "DE.Controllers.ApplicationController.mniImageFromUrl": "ຮູບພາບຈາກ URL", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "ເຕືອນ", + "DE.Controllers.ApplicationController.openErrorText": "ມີຂໍ້ຜິດພາດເກີດຂື້ນໃນຂະນະເປີດເອກະສານ.", + "DE.Controllers.ApplicationController.saveErrorText": "ພົບບັນຫາຕອນບັນທຶກຟາຍ.", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "ບໍ່ສາມາດສ້າງ ຫຼື້ບັນທຶກຟາຍນີ້ໄດ້.
ເຫດຜົນ:
1. ເປັນຟາຍສະເພາະອ່ານ.
2. ຜູ້ໃຊ້ຄົນອື່ນກຳລັງດັດແກ້ຟາຍຢູ່.
3. ດິດສເຕັມ ຫຼືເພ.", "DE.Controllers.ApplicationController.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່", + "DE.Controllers.ApplicationController.textAnonymous": "ບໍ່ລະບຸຊື່", + "DE.Controllers.ApplicationController.textBuyNow": "ເຂົ້າໄປຍັງເວັບໄຊ", + "DE.Controllers.ApplicationController.textCloseTip": "ຄລິກເພື່ອປິດປາຍ.", + "DE.Controllers.ApplicationController.textContactUs": "ຕິດຕໍ່ຜູ້ຂາຍ", + "DE.Controllers.ApplicationController.textGotIt": "ໄດ້ແລ້ວ", + "DE.Controllers.ApplicationController.textGuest": " ແຂກ", "DE.Controllers.ApplicationController.textLoadingDocument": "ກຳລັງໂຫຼດເອກະສານ", + "DE.Controllers.ApplicationController.textNoLicenseTitle": "ຈໍານວນໃບອະນຸຍາດໄດ້ໃຊ້ຄົບແລ້ວ", "DE.Controllers.ApplicationController.textOf": "ຂອງ", + "DE.Controllers.ApplicationController.textRequired": "ຕື່ມຂໍ້ມູນໃສ່ທຸກຊ່ອງທີ່ຕ້ອງການເພື່ອສົ່ງແບບຟອມ.", "DE.Controllers.ApplicationController.textSaveAs": "ບັນທຶກເປັນ PDF", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "ບັນທຶກເປັນ...", "DE.Controllers.ApplicationController.textSubmited": " ແບບຟອມທີ່ສົ່ງມາແລ້ວ", + "DE.Controllers.ApplicationController.titleLicenseExp": "ໃບອະນຸຍາດໝົດອາຍຸ", + "DE.Controllers.ApplicationController.titleServerVersion": "ອັບເດດການແກ້ໄຂ", + "DE.Controllers.ApplicationController.titleUpdateVersion": "ປ່ຽນແປງລຸ້ນ", + "DE.Controllers.ApplicationController.txtArt": "ເນື້ອຫາຂອງທ່ານຢູ່ນີ້", + "DE.Controllers.ApplicationController.txtChoose": "ເລືອກໄອເທມ", + "DE.Controllers.ApplicationController.txtClickToLoad": "ກົດເພື່ອໂຫຼດຮູບ", "DE.Controllers.ApplicationController.txtClose": " ປິດ", + "DE.Controllers.ApplicationController.txtEmpty": "(ຫວ່າງເປົ່າ)", + "DE.Controllers.ApplicationController.txtEnterDate": "ປ້ອນວັນທີ", + "DE.Controllers.ApplicationController.txtPressLink": "ກົດ Ctrl ແລະກົດລິ້ງ", + "DE.Controllers.ApplicationController.txtUntitled": "ບໍ່ມີຫົວຂໍ້", "DE.Controllers.ApplicationController.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມານຳໃຊ້ໄດ້", + "DE.Controllers.ApplicationController.uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ", + "DE.Controllers.ApplicationController.uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.", "DE.Controllers.ApplicationController.waitText": "ກະລຸນາລໍຖ້າ...", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ເເກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ເອກະສານນີ້ສາມາດເປີດເບິ່ງເທົ່ານັ້ນ.
ຕິດຕໍ່ທີມບໍລິຫານ ເພື່ອສືກສາເພີ່ມເຕີ່ມ", + "DE.Controllers.ApplicationController.warnLicenseExp": "ໃບອະນຸຍາດຂອງທ່ານໝົດອາຍຸແລ້ວ.
ກະລຸນາຕໍ່ໃບອະນຸຍາດຂອງທ່ານ ແລະ ນຳໃຊ້ໃໝ່.", + "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "ໃບທະບຽນອະນຸຍາດໝົດອາຍຸ.
ທ່ານບໍ່ສາມາດເຂົ້າເຖິງການແກ້ໄຂເອກະສານ.
ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.", + "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "ໃບອະນຸຍາດ ຈຳ ເປັນຕ້ອງມີການຕໍ່ອາຍຸ
ທ່ານມີຂໍ້ ຈຳ ກັດໃນການ ທຳ ງານການແກ້ໄຂເອກະສານ,
ກະລຸນາຕິດຕໍ່ຫາຜູ້ເບິ່ງລະບົບ", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ແກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ທີມບໍລິຫານເພື່ອຂໍ້ມູນເພີ່ມເຕີ່ມ", + "DE.Controllers.ApplicationController.warnNoLicense": "ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ %1. ເອກະສານນີ້ສາມາດເປີດເບິ່ງເທົ່ານັ້ນ.
ຕິດຕໍ່ ທີມຂາຍ %1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບສິດ", + "DE.Controllers.ApplicationController.warnNoLicenseUsers": "ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມຂາຍ %1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບສິດ", "DE.Views.ApplicationView.textClear": "ລຶບລ້າງຟີລດທັງໝົດ", + "DE.Views.ApplicationView.textCopy": "ສໍາເນົາ", + "DE.Views.ApplicationView.textCut": "ຕັດ", + "DE.Views.ApplicationView.textFitToPage": "ພໍດີຂອບ", + "DE.Views.ApplicationView.textFitToWidth": "ຄວາມກວ້າງພໍດີ", "DE.Views.ApplicationView.textNext": "ຟີວທັດໄປ", + "DE.Views.ApplicationView.textPaste": "ວາງ", + "DE.Views.ApplicationView.textPrintSel": "ານຄັດເລືອກການພິມ", + "DE.Views.ApplicationView.textRedo": "ໄປຫນ້າ", + "DE.Views.ApplicationView.textSubmit": "ສົ່ງອອກ", + "DE.Views.ApplicationView.textUndo": "ກັບຄືນ", + "DE.Views.ApplicationView.textZoom": "ຂະຫຍາຍ ", + "DE.Views.ApplicationView.txtDarkMode": "ໂໝດມືດ", "DE.Views.ApplicationView.txtDownload": "ດາວໂຫຼດ", "DE.Views.ApplicationView.txtDownloadDocx": "ດາວໂຫລດເປັນເອກະສານ", "DE.Views.ApplicationView.txtDownloadPdf": "ດາວໂຫລດເປັນPDF", @@ -34,5 +166,6 @@ "DE.Views.ApplicationView.txtFileLocation": "ເປີດບ່ອນຕຳແໜ່ງເອກະສານ", "DE.Views.ApplicationView.txtFullScreen": "ເຕັມຈໍ", "DE.Views.ApplicationView.txtPrint": "ພິມ", - "DE.Views.ApplicationView.txtShare": "ແບ່ງປັນ" + "DE.Views.ApplicationView.txtShare": "ແບ່ງປັນ", + "DE.Views.ApplicationView.txtTheme": "ຮູບແບບການສະແດງຜົນ" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/pt-PT.json b/apps/documenteditor/forms/locale/pt-PT.json new file mode 100644 index 000000000..15db13729 --- /dev/null +++ b/apps/documenteditor/forms/locale/pt-PT.json @@ -0,0 +1,171 @@ +{ + "Common.UI.Calendar.textApril": "Abril", + "Common.UI.Calendar.textAugust": "Agosto", + "Common.UI.Calendar.textDecember": "Dezembro", + "Common.UI.Calendar.textFebruary": "Fevereiro", + "Common.UI.Calendar.textJanuary": "Janeiro", + "Common.UI.Calendar.textJuly": "Julho", + "Common.UI.Calendar.textJune": "Junho", + "Common.UI.Calendar.textMarch": "Março", + "Common.UI.Calendar.textMay": "Maio", + "Common.UI.Calendar.textMonths": "Meses", + "Common.UI.Calendar.textNovember": "Novembro", + "Common.UI.Calendar.textOctober": "Outubro", + "Common.UI.Calendar.textSeptember": "Setembro", + "Common.UI.Calendar.textShortApril": "Abr", + "Common.UI.Calendar.textShortAugust": "Ago", + "Common.UI.Calendar.textShortDecember": "Dez", + "Common.UI.Calendar.textShortFebruary": "Fev", + "Common.UI.Calendar.textShortFriday": "Sex", + "Common.UI.Calendar.textShortJanuary": "Jan", + "Common.UI.Calendar.textShortJuly": "Jul", + "Common.UI.Calendar.textShortJune": "Jun", + "Common.UI.Calendar.textShortMarch": "Mar", + "Common.UI.Calendar.textShortMay": "Mai", + "Common.UI.Calendar.textShortMonday": "Seg", + "Common.UI.Calendar.textShortNovember": "Nov", + "Common.UI.Calendar.textShortOctober": "Out", + "Common.UI.Calendar.textShortSaturday": "Sáb", + "Common.UI.Calendar.textShortSeptember": "Set", + "Common.UI.Calendar.textShortSunday": "Dom", + "Common.UI.Calendar.textShortThursday": "Qui", + "Common.UI.Calendar.textShortTuesday": "Ter", + "Common.UI.Calendar.textShortWednesday": "Qua", + "Common.UI.Calendar.textYears": "Anos", + "Common.UI.Themes.txtThemeClassicLight": "Clássico claro", + "Common.UI.Themes.txtThemeDark": "Escuro", + "Common.UI.Themes.txtThemeLight": "Claro", + "Common.UI.Window.cancelButtonText": "Cancelar", + "Common.UI.Window.closeButtonText": "Fechar", + "Common.UI.Window.noButtonText": "Não", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Confirmação", + "Common.UI.Window.textDontShow": "Não mostrar esta mensagem novamente", + "Common.UI.Window.textError": "Erro", + "Common.UI.Window.textInformation": "Informação", + "Common.UI.Window.textWarning": "Aviso", + "Common.UI.Window.yesButtonText": "Sim", + "Common.Views.CopyWarningDialog.textDontShow": "Não mostrar esta mensagem novamente", + "Common.Views.CopyWarningDialog.textMsg": "As ações de copiar, cortar e colar usando as ações do menu de contexto serão realizadas apenas neste separador do editor.

Para copiar ou colar de ou para aplicações fora do separador do editor, use as seguintes combinações de teclas:", + "Common.Views.CopyWarningDialog.textTitle": "Ações de copiar, cortar e colar", + "Common.Views.CopyWarningDialog.textToCopy": "para Copiar", + "Common.Views.CopyWarningDialog.textToCut": "para Cortar", + "Common.Views.CopyWarningDialog.textToPaste": "para Colar", + "Common.Views.EmbedDialog.textHeight": "Altura", + "Common.Views.EmbedDialog.textTitle": "Incorporar", + "Common.Views.EmbedDialog.textWidth": "Largura", + "Common.Views.EmbedDialog.txtCopy": "Copiar para a área de transferência", + "Common.Views.EmbedDialog.warnCopy": "Erro do navegador! Use a tecla de atalho [Ctrl] + [C]", + "Common.Views.ImageFromUrlDialog.textUrl": "Colar um URL de imagem:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser um URL no formato \"http://www.example.com\"", + "Common.Views.OpenDialog.closeButtonText": "Fechar ficheiro", + "Common.Views.OpenDialog.txtEncoding": "Codificação", + "Common.Views.OpenDialog.txtIncorrectPwd": "A palavra-passe está incorreta.", + "Common.Views.OpenDialog.txtOpenFile": "Introduza a palavra-passe para abrir o ficheiro", + "Common.Views.OpenDialog.txtPassword": "Palavra-passe", + "Common.Views.OpenDialog.txtPreview": "Pré-visualizar", + "Common.Views.OpenDialog.txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta.", + "Common.Views.OpenDialog.txtTitle": "Escolha opções para %1", + "Common.Views.OpenDialog.txtTitleProtected": "Ficheiro protegido", + "Common.Views.SaveAsDlg.textLoading": "A carregar", + "Common.Views.SaveAsDlg.textTitle": "Pasta para guardar", + "Common.Views.SelectFileDlg.textLoading": "A carregar", + "Common.Views.SelectFileDlg.textTitle": "Selecionar fonte de dados", + "Common.Views.ShareDialog.textTitle": "Partilhar ligação", + "Common.Views.ShareDialog.txtCopy": "Copiar para a área de transferência", + "Common.Views.ShareDialog.warnCopy": "Erro do navegador! Use a tecla de atalho [Ctrl] + [C]", + "DE.Controllers.ApplicationController.convertationErrorText": "Falha na conversão.", + "DE.Controllers.ApplicationController.convertationTimeoutText": "Excedeu o tempo limite de conversão.", + "DE.Controllers.ApplicationController.criticalErrorTitle": "Erro", + "DE.Controllers.ApplicationController.downloadErrorText": "Falha ao descarregar.", + "DE.Controllers.ApplicationController.downloadTextText": "A descarregar documento...", + "DE.Controllers.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissões.
Por favor contacte o administrador do servidor de documentos.", + "DE.Controllers.ApplicationController.errorBadImageUrl": "O URL da imagem está incorreto", + "DE.Controllers.ApplicationController.errorConnectToServer": "Não foi possível guardar o documento. Verifique as definições de ligação ou contacte o administrador.
Quando clicar no botão 'OK', ser-lhe-á pedido para descarregar o documento.", + "DE.Controllers.ApplicationController.errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", + "DE.Controllers.ApplicationController.errorDefaultMessage": "Código do erro: %1", + "DE.Controllers.ApplicationController.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no computador.", + "DE.Controllers.ApplicationController.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Guardar como...' para guardar uma cópia do ficheiro no seu computador.", + "DE.Controllers.ApplicationController.errorFilePassProtect": "O ficheiro está protegido por palavra-passe e não pode ser aberto.", + "DE.Controllers.ApplicationController.errorFileSizeExceed": "O tamanho do ficheiro excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", + "DE.Controllers.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.", + "DE.Controllers.ApplicationController.errorLoadingFont": "Os tipos de letra não foram carregados.
Contacte o administrador do servidor de documentos.", + "DE.Controllers.ApplicationController.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "A sessão de edição expirou. Tente recarregar a página.", + "DE.Controllers.ApplicationController.errorSessionIdle": "O documento não foi editado durante muito tempo. Por favor, recarregue a página.", + "DE.Controllers.ApplicationController.errorSessionToken": "A ligação ao servidor foi interrompida. Tente recarregar a página.", + "DE.Controllers.ApplicationController.errorSubmit": "Falha no envio.", + "DE.Controllers.ApplicationController.errorToken": "O token do documento não está correctamente formado.
Por favor contacte o seu administrador do Servidor de Documentos.", + "DE.Controllers.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contacto com o administrador do Servidor de Documentos.", + "DE.Controllers.ApplicationController.errorUpdateVersion": "A versão do ficheiro foi alterada. A página será recarregada.", + "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", + "DE.Controllers.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas
não o conseguirá descarregar até que a ligação seja restaurada e a página recarregada.", + "DE.Controllers.ApplicationController.mniImageFromFile": "Imagem de um ficheiro", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Imagem de um armazenamento", + "DE.Controllers.ApplicationController.mniImageFromUrl": "Imagem de um URL", + "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Aviso", + "DE.Controllers.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.", + "DE.Controllers.ApplicationController.saveErrorText": "Ocorreu um erro ao guardar o ficheiro.", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Este ficheiro não pode ser guardado ou criado.
Os motivos podem ser:
1. O ficheiro é apenas de leitura.
2. O ficheiro está a ser editado por outro utilizador.
3. O disco está cheio ou corrompido.", + "DE.Controllers.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Tente recarregar a página.", + "DE.Controllers.ApplicationController.textAnonymous": "Anónimo", + "DE.Controllers.ApplicationController.textBuyNow": "Visitar website", + "DE.Controllers.ApplicationController.textCloseTip": "Clique para fechar a dica.", + "DE.Controllers.ApplicationController.textContactUs": "Contacte a equipa comercial", + "DE.Controllers.ApplicationController.textGotIt": "Percebi", + "DE.Controllers.ApplicationController.textGuest": "Convidado", + "DE.Controllers.ApplicationController.textLoadingDocument": "A carregar documento", + "DE.Controllers.ApplicationController.textNoLicenseTitle": "Limite de licença atingido", + "DE.Controllers.ApplicationController.textOf": "de", + "DE.Controllers.ApplicationController.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.", + "DE.Controllers.ApplicationController.textSaveAs": "Guardar como PDF", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "Guardar como...", + "DE.Controllers.ApplicationController.textSubmited": "Formulário submetido com êxito
Clique para fechar a dica", + "DE.Controllers.ApplicationController.titleLicenseExp": "Licença expirada", + "DE.Controllers.ApplicationController.titleServerVersion": "Editor atualizado", + "DE.Controllers.ApplicationController.titleUpdateVersion": "Versão alterada", + "DE.Controllers.ApplicationController.txtArt": "O seu texto aqui", + "DE.Controllers.ApplicationController.txtChoose": "Escolha um item", + "DE.Controllers.ApplicationController.txtClickToLoad": "Clique para carregar a imagem", + "DE.Controllers.ApplicationController.txtClose": "Fechar", + "DE.Controllers.ApplicationController.txtEmpty": "(Vazio)", + "DE.Controllers.ApplicationController.txtEnterDate": "Introduza uma data", + "DE.Controllers.ApplicationController.txtPressLink": "Prima CTRL e clique na ligação", + "DE.Controllers.ApplicationController.txtUntitled": "Sem título", + "DE.Controllers.ApplicationController.unknownErrorText": "Erro desconhecido.", + "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.", + "DE.Controllers.ApplicationController.uploadImageExtMessage": "Formato de imagem desconhecido.", + "DE.Controllers.ApplicationController.uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.", + "DE.Controllers.ApplicationController.waitText": "Por favor, aguarde...", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
Contacte o administrador para obter mais detalhes.", + "DE.Controllers.ApplicationController.warnLicenseExp": "A sua licença expirou.
Deve atualizar a licença e recarregar a página.", + "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licença expirada.
Não pode editar o documento.
Por favor contacte o administrador de sistemas.", + "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Tem que renovar a sua licença.
A edição de documentos está limitada.
Contacte o administrador de sistemas para obter acesso completo.", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", + "DE.Controllers.ApplicationController.warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
Contacte a equipa comercial %1 para saber mais sobre os termos de licenciamento.", + "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", + "DE.Views.ApplicationView.textClear": "Limpar todos os campos", + "DE.Views.ApplicationView.textCopy": "Copiar", + "DE.Views.ApplicationView.textCut": "Cortar", + "DE.Views.ApplicationView.textFitToPage": "Ajustar à página", + "DE.Views.ApplicationView.textFitToWidth": "Ajustar à largura", + "DE.Views.ApplicationView.textNext": "Campo seguinte", + "DE.Views.ApplicationView.textPaste": "Colar", + "DE.Views.ApplicationView.textPrintSel": "Imprimir seleção", + "DE.Views.ApplicationView.textRedo": "Refazer", + "DE.Views.ApplicationView.textSubmit": "Enviar", + "DE.Views.ApplicationView.textUndo": "Desfazer", + "DE.Views.ApplicationView.textZoom": "Ampliação", + "DE.Views.ApplicationView.txtDarkMode": "Modo escuro", + "DE.Views.ApplicationView.txtDownload": "Descarregar", + "DE.Views.ApplicationView.txtDownloadDocx": "Descarregar como docx", + "DE.Views.ApplicationView.txtDownloadPdf": "Descarregar como pdf", + "DE.Views.ApplicationView.txtEmbed": "Incorporar", + "DE.Views.ApplicationView.txtFileLocation": "Abrir localização do ficheiro", + "DE.Views.ApplicationView.txtFullScreen": "Ecrã completo", + "DE.Views.ApplicationView.txtPrint": "Imprimir", + "DE.Views.ApplicationView.txtShare": "Compartilhar", + "DE.Views.ApplicationView.txtTheme": "Tema da interface" +} \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/sk.json b/apps/documenteditor/forms/locale/sk.json index f1e44ff33..0be61dc19 100644 --- a/apps/documenteditor/forms/locale/sk.json +++ b/apps/documenteditor/forms/locale/sk.json @@ -1,22 +1,114 @@ { + "Common.UI.Calendar.textApril": "apríl", + "Common.UI.Calendar.textAugust": "august", + "Common.UI.Calendar.textDecember": "December", + "Common.UI.Calendar.textFebruary": "Február", + "Common.UI.Calendar.textJanuary": "január", + "Common.UI.Calendar.textJuly": "júl", + "Common.UI.Calendar.textJune": "jún", + "Common.UI.Calendar.textMarch": "marec", + "Common.UI.Calendar.textMay": "máj", + "Common.UI.Calendar.textMonths": "mesiace", + "Common.UI.Calendar.textNovember": "november", + "Common.UI.Calendar.textOctober": "október", + "Common.UI.Calendar.textSeptember": "september", + "Common.UI.Calendar.textShortApril": "apr.", + "Common.UI.Calendar.textShortAugust": "aug.", + "Common.UI.Calendar.textShortDecember": "Dec.", + "Common.UI.Calendar.textShortFebruary": "Feb.", + "Common.UI.Calendar.textShortFriday": "pi", + "Common.UI.Calendar.textShortJanuary": "jan.", + "Common.UI.Calendar.textShortJuly": "júl", + "Common.UI.Calendar.textShortJune": "jún", + "Common.UI.Calendar.textShortMarch": "mar.", + "Common.UI.Calendar.textShortMay": "máj", + "Common.UI.Calendar.textShortMonday": "po", + "Common.UI.Calendar.textShortNovember": "nov.", + "Common.UI.Calendar.textShortOctober": "okt.", + "Common.UI.Calendar.textShortSaturday": "so", + "Common.UI.Calendar.textShortSeptember": "sep.", + "Common.UI.Calendar.textShortSunday": "ne", + "Common.UI.Calendar.textShortThursday": "št", + "Common.UI.Calendar.textShortTuesday": "ut", + "Common.UI.Calendar.textShortWednesday": "st", + "Common.UI.Calendar.textYears": "Roky", + "Common.UI.Themes.txtThemeClassicLight": "Štandardná svetlosť", + "Common.UI.Themes.txtThemeDark": "Tmavý", + "Common.UI.Themes.txtThemeLight": "Svetlý", + "Common.UI.Window.cancelButtonText": "Zrušiť", + "Common.UI.Window.closeButtonText": "Zatvoriť", + "Common.UI.Window.noButtonText": "Nie", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Potvrdenie", + "Common.UI.Window.textDontShow": "Už nezobrazovať túto správu", + "Common.UI.Window.textError": "Chyba", + "Common.UI.Window.textInformation": "Informácia", + "Common.UI.Window.textWarning": "Upozornenie", + "Common.UI.Window.yesButtonText": "Áno", + "Common.Views.CopyWarningDialog.textDontShow": "Už nezobrazovať túto správu", + "Common.Views.CopyWarningDialog.textMsg": "Akcia kopírovať, vystrihnúť a vložiť použitím lišty nástrojov editora a kontextové ponuky budú vykonané iba v tomto okne editora.

Pre kopírovanie do alebo vkladanie z aplikácií mimo okno editora použite následujúce klávesové skratky:", + "Common.Views.CopyWarningDialog.textTitle": "Akcia kopírovať, vystrihnúť a prilepiť", + "Common.Views.CopyWarningDialog.textToCopy": "pre kopírovanie", + "Common.Views.CopyWarningDialog.textToCut": "pre vystrihnutie", + "Common.Views.CopyWarningDialog.textToPaste": "pre vloženie", + "Common.Views.EmbedDialog.textHeight": "Výška", + "Common.Views.EmbedDialog.textTitle": "Vložiť", + "Common.Views.EmbedDialog.textWidth": "Šírka", + "Common.Views.EmbedDialog.txtCopy": "Skopírovať do schránky", + "Common.Views.EmbedDialog.warnCopy": "Chyba prehliadača! Použite klávesovú skratku [Ctrl] + [C]", + "Common.Views.ImageFromUrlDialog.textUrl": "Vložte URL adresu obrázka:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"", + "Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor", + "Common.Views.OpenDialog.txtEncoding": "Kódovanie", + "Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.", + "Common.Views.OpenDialog.txtOpenFile": "Zadajte heslo na otvorenie súboru", + "Common.Views.OpenDialog.txtPassword": "Heslo", + "Common.Views.OpenDialog.txtPreview": "Náhľad", + "Common.Views.OpenDialog.txtProtected": "Po zadaní hesla a otvorení súboru bude súčasné heslo k súboru resetované.", + "Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností", + "Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor", + "Common.Views.SaveAsDlg.textLoading": "Nahrávanie", + "Common.Views.SaveAsDlg.textTitle": "Priečinok na uloženie", + "Common.Views.SelectFileDlg.textLoading": "Nahrávanie", + "Common.Views.SelectFileDlg.textTitle": "Vybrať zdroj údajov", + "Common.Views.ShareDialog.textTitle": "Zdieľať odkaz", + "Common.Views.ShareDialog.txtCopy": "Skopírovať do schránky", + "Common.Views.ShareDialog.warnCopy": "Chyba prehliadača! Použite klávesovú skratku [Ctrl] + [C]", "DE.Controllers.ApplicationController.convertationErrorText": "Konverzia zlyhala.", "DE.Controllers.ApplicationController.convertationTimeoutText": "Prekročený čas konverzie.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Chyba", "DE.Controllers.ApplicationController.downloadErrorText": "Sťahovanie zlyhalo.", "DE.Controllers.ApplicationController.downloadTextText": "Sťahovanie dokumentu...", "DE.Controllers.ApplicationController.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera.", + "DE.Controllers.ApplicationController.errorBadImageUrl": "Adresa URL obrázku je nesprávna", + "DE.Controllers.ApplicationController.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia vášho pripojenia alebo kontaktujte Vašeho správcu.
Pri kliknutí na tlačítko \"OK\" sa zobrazí výzva k prevzatiu dokumentu.", + "DE.Controllers.ApplicationController.errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.", "DE.Controllers.ApplicationController.errorDefaultMessage": "Kód chyby: %1", "DE.Controllers.ApplicationController.errorEditingDownloadas": "Pri práci s dokumentom došlo k chybe.
Použite voľbu \"Stiahnuť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", + "DE.Controllers.ApplicationController.errorEditingSaveas": "Pri práci s dokumentom došlo k chybe.
Použite voľbu \"Uložiť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", "DE.Controllers.ApplicationController.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
Kontaktujte prosím vášho správcu dokumentového servera o ďalšie podrobnosti.", "DE.Controllers.ApplicationController.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", "DE.Controllers.ApplicationController.errorLoadingFont": "Fonty sa nenahrali.
Kontaktujte prosím svojho administrátora Servera dokumentov.", "DE.Controllers.ApplicationController.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.", + "DE.Controllers.ApplicationController.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.", + "DE.Controllers.ApplicationController.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", "DE.Controllers.ApplicationController.errorSubmit": "Odoslanie sa nepodarilo.", + "DE.Controllers.ApplicationController.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. ", + "DE.Controllers.ApplicationController.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "DE.Controllers.ApplicationController.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Internetové spojenie bolo obnovené a verzia súboru bola zmenená.
Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", "DE.Controllers.ApplicationController.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "Spojenie so serverom je prerušené. Dokument môžete zobraziť,
ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.", + "DE.Controllers.ApplicationController.mniImageFromFile": "Obrázok zo súboru", + "DE.Controllers.ApplicationController.mniImageFromStorage": "Obrázok z úložiska", + "DE.Controllers.ApplicationController.mniImageFromUrl": "Obrázok z URL adresy", "DE.Controllers.ApplicationController.notcriticalErrorTitle": "Upozornenie", + "DE.Controllers.ApplicationController.openErrorText": "Pri otváraní súboru sa vyskytla chyba.", + "DE.Controllers.ApplicationController.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba.", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "Súbor nemohol byť uložený, alebo vytvorený
Možné dôvody:
1.Súbor je možne použiť iba na čítanie.
2. Súbor je editovaný iným užívateľom.
3.Úložisko je plné, alebo poškodené.", "DE.Controllers.ApplicationController.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", "DE.Controllers.ApplicationController.textAnonymous": "Anonymný", "DE.Controllers.ApplicationController.textBuyNow": "Navštíviť webovú stránku", @@ -29,20 +121,44 @@ "DE.Controllers.ApplicationController.textOf": "z", "DE.Controllers.ApplicationController.textRequired": "Vyplňte všetky požadované polia, aby ste formulár mohli odoslať.", "DE.Controllers.ApplicationController.textSaveAs": "Uložiť ako PDF", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "Uložiť ako...", "DE.Controllers.ApplicationController.textSubmited": "Formulár bol úspešne predložený
Kliknite, aby ste tip zatvorili", + "DE.Controllers.ApplicationController.titleLicenseExp": "Platnosť licencie uplynula", "DE.Controllers.ApplicationController.titleServerVersion": "Editor bol aktualizovaný", "DE.Controllers.ApplicationController.titleUpdateVersion": "Verzia bola zmenená", + "DE.Controllers.ApplicationController.txtArt": "Tu napíšte svoj text", + "DE.Controllers.ApplicationController.txtChoose": "Zvolte položku", + "DE.Controllers.ApplicationController.txtClickToLoad": "Klikni pre nahratie obrázku", "DE.Controllers.ApplicationController.txtClose": "Zatvoriť", "DE.Controllers.ApplicationController.txtEmpty": "(Prázdne)", + "DE.Controllers.ApplicationController.txtEnterDate": "Zadajte dátum", "DE.Controllers.ApplicationController.txtPressLink": "Stlačte CTRL a kliknite na odkaz", + "DE.Controllers.ApplicationController.txtUntitled": "Bez názvu", "DE.Controllers.ApplicationController.unknownErrorText": "Neznáma chyba.", "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", + "DE.Controllers.ApplicationController.uploadImageExtMessage": "Neznámy formát obrázka.", + "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.", "DE.Controllers.ApplicationController.waitText": "Prosím čakajte...", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "Dosiahli ste limit počtu súbežných spojení %1 editora. Dokument bude otvorený len na náhľad.
Pre viac podrobností kontaktujte svojho správcu. ", + "DE.Controllers.ApplicationController.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licencia vypršala.
K funkcii úprav dokumentu už nemáte prístup.
Kontaktujte svojho administrátora, prosím.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Je potrebné obnoviť licenciu.
K funkciám úprav dokumentov máte obmedzený prístup.
Pre získanie úplného prístupu kontaktujte prosím svojho administrátora.", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Dosiahli ste limit %1 editora v režime spolupráce na úpravách. Ohľadne podrobnosti sa obráťte na svojho správcu. ", + "DE.Controllers.ApplicationController.warnNoLicense": "Dosiahli ste limit súběžných pripojení %1 editora. Dokument bude otvorený len na prezeranie.
Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", + "DE.Controllers.ApplicationController.warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", "DE.Views.ApplicationView.textClear": "Vyčistiť všetky polia", + "DE.Views.ApplicationView.textCopy": "Kopírovať", + "DE.Views.ApplicationView.textCut": "Vystrihnúť", + "DE.Views.ApplicationView.textFitToPage": "Prispôsobiť stránke", + "DE.Views.ApplicationView.textFitToWidth": "Prispôsobiť šírke", "DE.Views.ApplicationView.textNext": "Nasledujúce pole", + "DE.Views.ApplicationView.textPaste": "Vložiť", + "DE.Views.ApplicationView.textPrintSel": "Vytlačiť výber", + "DE.Views.ApplicationView.textRedo": "Znova", "DE.Views.ApplicationView.textSubmit": "Odoslať", + "DE.Views.ApplicationView.textUndo": "Krok späť", + "DE.Views.ApplicationView.textZoom": "Priblížiť", + "DE.Views.ApplicationView.txtDarkMode": "Tmavý režim", "DE.Views.ApplicationView.txtDownload": "Stiahnuť", "DE.Views.ApplicationView.txtDownloadDocx": "Stiahnuť ako docx", "DE.Views.ApplicationView.txtDownloadPdf": "Stiahnuť ako pdf", diff --git a/apps/documenteditor/forms/locale/zh-TW.json b/apps/documenteditor/forms/locale/zh-TW.json new file mode 100644 index 000000000..5fdcae577 --- /dev/null +++ b/apps/documenteditor/forms/locale/zh-TW.json @@ -0,0 +1,171 @@ +{ + "Common.UI.Calendar.textApril": "四月", + "Common.UI.Calendar.textAugust": "八月", + "Common.UI.Calendar.textDecember": "十二月", + "Common.UI.Calendar.textFebruary": "二月", + "Common.UI.Calendar.textJanuary": "一月", + "Common.UI.Calendar.textJuly": "七月", + "Common.UI.Calendar.textJune": "六月", + "Common.UI.Calendar.textMarch": "三月", + "Common.UI.Calendar.textMay": "五月", + "Common.UI.Calendar.textMonths": "月", + "Common.UI.Calendar.textNovember": "十一月", + "Common.UI.Calendar.textOctober": "十月", + "Common.UI.Calendar.textSeptember": "九月", + "Common.UI.Calendar.textShortApril": "四月", + "Common.UI.Calendar.textShortAugust": "八月", + "Common.UI.Calendar.textShortDecember": "十二月", + "Common.UI.Calendar.textShortFebruary": "二月", + "Common.UI.Calendar.textShortFriday": "Fr", + "Common.UI.Calendar.textShortJanuary": "一月", + "Common.UI.Calendar.textShortJuly": "七月", + "Common.UI.Calendar.textShortJune": "六月", + "Common.UI.Calendar.textShortMarch": "三月", + "Common.UI.Calendar.textShortMay": "五月", + "Common.UI.Calendar.textShortMonday": "Mo", + "Common.UI.Calendar.textShortNovember": "十一月", + "Common.UI.Calendar.textShortOctober": "十月", + "Common.UI.Calendar.textShortSaturday": "Sa", + "Common.UI.Calendar.textShortSeptember": "九月", + "Common.UI.Calendar.textShortSunday": "Su", + "Common.UI.Calendar.textShortThursday": "th", + "Common.UI.Calendar.textShortTuesday": "Tu", + "Common.UI.Calendar.textShortWednesday": "We", + "Common.UI.Calendar.textYears": "年", + "Common.UI.Themes.txtThemeClassicLight": "傳統亮色", + "Common.UI.Themes.txtThemeDark": "暗", + "Common.UI.Themes.txtThemeLight": "光", + "Common.UI.Window.cancelButtonText": "取消", + "Common.UI.Window.closeButtonText": "關閉", + "Common.UI.Window.noButtonText": "沒有", + "Common.UI.Window.okButtonText": "確定", + "Common.UI.Window.textConfirmation": "確認", + "Common.UI.Window.textDontShow": "不再顯示此消息", + "Common.UI.Window.textError": "錯誤", + "Common.UI.Window.textInformation": "資訊", + "Common.UI.Window.textWarning": "警告", + "Common.UI.Window.yesButtonText": "是", + "Common.Views.CopyWarningDialog.textDontShow": "不再顯示此消息", + "Common.Views.CopyWarningDialog.textMsg": "使用右鍵選單動作的複製、剪下和貼上的動作將只在此編輯者工作表中執行。

要從編輯者工作表之外的應用程序中複製或貼上,請使用以下鍵盤組合:", + "Common.Views.CopyWarningDialog.textTitle": "複製, 剪下, 與貼上之動作", + "Common.Views.CopyWarningDialog.textToCopy": "複印", + "Common.Views.CopyWarningDialog.textToCut": "切", + "Common.Views.CopyWarningDialog.textToPaste": "粘貼", + "Common.Views.EmbedDialog.textHeight": "\n高度", + "Common.Views.EmbedDialog.textTitle": "嵌入", + "Common.Views.EmbedDialog.textWidth": "寬度", + "Common.Views.EmbedDialog.txtCopy": "複製到剪貼板", + "Common.Views.EmbedDialog.warnCopy": "瀏覽器錯誤!使用鍵盤快捷鍵[Ctrl] + [C]", + "Common.Views.ImageFromUrlDialog.textUrl": "粘貼圖片網址:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "這是必填欄", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "此段落應為\"http://www.example.com\"格式的網址", + "Common.Views.OpenDialog.closeButtonText": "關閉檔案", + "Common.Views.OpenDialog.txtEncoding": "編碼", + "Common.Views.OpenDialog.txtIncorrectPwd": "密碼錯誤。", + "Common.Views.OpenDialog.txtOpenFile": "輸入檔案密碼", + "Common.Views.OpenDialog.txtPassword": "密碼", + "Common.Views.OpenDialog.txtPreview": "預覽", + "Common.Views.OpenDialog.txtProtected": "輸入密碼並打開文件後,該文件的當前密碼將被重置。", + "Common.Views.OpenDialog.txtTitle": "選擇%1個選項", + "Common.Views.OpenDialog.txtTitleProtected": "受保護的文件", + "Common.Views.SaveAsDlg.textLoading": "載入中", + "Common.Views.SaveAsDlg.textTitle": "儲存文件夾", + "Common.Views.SelectFileDlg.textLoading": "載入中", + "Common.Views.SelectFileDlg.textTitle": "選擇資料來源", + "Common.Views.ShareDialog.textTitle": "分享連結", + "Common.Views.ShareDialog.txtCopy": "複製到剪貼板", + "Common.Views.ShareDialog.warnCopy": "瀏覽器錯誤!使用鍵盤快捷鍵[Ctrl] + [C]", + "DE.Controllers.ApplicationController.convertationErrorText": "轉換失敗。", + "DE.Controllers.ApplicationController.convertationTimeoutText": "轉換逾時。", + "DE.Controllers.ApplicationController.criticalErrorTitle": "錯誤", + "DE.Controllers.ApplicationController.downloadErrorText": "下載失敗", + "DE.Controllers.ApplicationController.downloadTextText": "文件下載中...", + "DE.Controllers.ApplicationController.errorAccessDeny": "您嘗試進行未被授權的動作
請聯繫您的文件主機(Document Server)的管理者。", + "DE.Controllers.ApplicationController.errorBadImageUrl": "不正確的圖像 URL", + "DE.Controllers.ApplicationController.errorConnectToServer": "無法儲存該文檔。請檢查連接設置或與管理員聯繫。
單擊“確定”按鈕時,系統將提示您下載文檔。", + "DE.Controllers.ApplicationController.errorDataEncrypted": "已收到加密的更改,無法解密。", + "DE.Controllers.ApplicationController.errorDefaultMessage": "錯誤編號:%1", + "DE.Controllers.ApplicationController.errorEditingDownloadas": "在處理文檔期間發生錯誤。
使用“下載為...”選項將文件備份副本儲存到電腦硬碟中。", + "DE.Controllers.ApplicationController.errorEditingSaveas": "使用文檔期間發生錯誤。
使用“另存為...”選項將文件備份副本儲存到電腦硬碟中。", + "DE.Controllers.ApplicationController.errorFilePassProtect": "該文件受密碼保護,無法打開。", + "DE.Controllers.ApplicationController.errorFileSizeExceed": "此檔案超過這主機設定的限制的大小
想了解更多資訊,請聯絡您的文件服務主機(Document Server)的管理者。", + "DE.Controllers.ApplicationController.errorForceSave": "儲存文件時發生錯誤。請使用“下載為”選項將文件儲存到電腦機硬碟中,或稍後再試。", + "DE.Controllers.ApplicationController.errorLoadingFont": "字體未載入。
請聯絡文件服務(Document Server)管理員。", + "DE.Controllers.ApplicationController.errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。", + "DE.Controllers.ApplicationController.errorSessionAbsolute": "此文件編輯的會期已經過時。請重新載入此頁面。", + "DE.Controllers.ApplicationController.errorSessionIdle": "此文件已經在編輯狀態有很長時間, 請重新載入此頁面。", + "DE.Controllers.ApplicationController.errorSessionToken": "與服務器的連接已中斷。請重新加載頁面。", + "DE.Controllers.ApplicationController.errorSubmit": "傳送失敗", + "DE.Controllers.ApplicationController.errorToken": "文檔安全令牌的格式不正確。
請與您的Document Server管理員聯繫。", + "DE.Controllers.ApplicationController.errorTokenExpire": "此文件安全憑證(Security Token)已過期。
請與您的Document Server管理員聯繫。", + "DE.Controllers.ApplicationController.errorUpdateVersion": "文件版本已更改。該頁面將重新加載。", + "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。
在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。", + "DE.Controllers.ApplicationController.errorUserDrop": "目前無法存取該文件。", + "DE.Controllers.ApplicationController.errorViewerDisconnect": "連線失敗。您仍然可以查看該檔案,
但在恢復連接並重新加載頁面之前將無法下載或列印該檔案。", + "DE.Controllers.ApplicationController.mniImageFromFile": "圖片來自文件", + "DE.Controllers.ApplicationController.mniImageFromStorage": "來自存儲的圖像", + "DE.Controllers.ApplicationController.mniImageFromUrl": "來自網址的圖片", + "DE.Controllers.ApplicationController.notcriticalErrorTitle": "警告", + "DE.Controllers.ApplicationController.openErrorText": "開啟檔案時發生錯誤", + "DE.Controllers.ApplicationController.saveErrorText": "儲存檔案時發生錯誤", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "無法存檔或新增此文件。
可能的原因是:
1。該文件是唯獨模式的。
2。該文件正在由其他帳戶編輯。
3。磁碟已滿或損壞。", + "DE.Controllers.ApplicationController.scriptLoadError": "連接速度太慢,某些組件無法加載。請重新加載頁面。", + "DE.Controllers.ApplicationController.textAnonymous": "匿名", + "DE.Controllers.ApplicationController.textBuyNow": "訪問網站", + "DE.Controllers.ApplicationController.textCloseTip": "點擊以關閉提示", + "DE.Controllers.ApplicationController.textContactUs": "聯絡銷售人員", + "DE.Controllers.ApplicationController.textGotIt": "我瞭解了", + "DE.Controllers.ApplicationController.textGuest": "來賓", + "DE.Controllers.ApplicationController.textLoadingDocument": "載入文件", + "DE.Controllers.ApplicationController.textNoLicenseTitle": "達到許可限制", + "DE.Controllers.ApplicationController.textOf": "於", + "DE.Controllers.ApplicationController.textRequired": "填寫所有必填欄位以發送表單。", + "DE.Controllers.ApplicationController.textSaveAs": "另存為PDF", + "DE.Controllers.ApplicationController.textSaveAsDesktop": "另存新檔", + "DE.Controllers.ApplicationController.textSubmited": "表格傳送成功
點此關閉提示", + "DE.Controllers.ApplicationController.titleLicenseExp": "證件過期", + "DE.Controllers.ApplicationController.titleServerVersion": "編輯器已更新", + "DE.Controllers.ApplicationController.titleUpdateVersion": "版本已更改", + "DE.Controllers.ApplicationController.txtArt": "在這輸入文字", + "DE.Controllers.ApplicationController.txtChoose": "選擇一個項目", + "DE.Controllers.ApplicationController.txtClickToLoad": "點此讀取圖片", + "DE.Controllers.ApplicationController.txtClose": "關閉", + "DE.Controllers.ApplicationController.txtEmpty": "(空)", + "DE.Controllers.ApplicationController.txtEnterDate": "輸入日期", + "DE.Controllers.ApplicationController.txtPressLink": "按Ctrl並點擊連結", + "DE.Controllers.ApplicationController.txtUntitled": "無標題", + "DE.Controllers.ApplicationController.unknownErrorText": "未知錯誤。", + "DE.Controllers.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器", + "DE.Controllers.ApplicationController.uploadImageExtMessage": "圖片格式未知。", + "DE.Controllers.ApplicationController.uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。", + "DE.Controllers.ApplicationController.waitText": "請耐心等待...", + "DE.Controllers.ApplicationController.warnLicenseExceeded": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。
進一步訊息, 請聯繫您的管理者。", + "DE.Controllers.ApplicationController.warnLicenseExp": "您的授權證已過期.
請更新您的授權證並重新整理頁面。", + "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "授權過期
您已沒有編輯文件功能的授權
請與您的管理者聯繫。", + "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "授權證書需要更新
您只有部分的文件編輯功能的存取權限
請與您的管理者聯繫來取得完整的存取權限。", + "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。", + "DE.Controllers.ApplicationController.warnNoLicense": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。
請聯繫 %1 銷售團隊來取得個人升級的需求。", + "DE.Controllers.ApplicationController.warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。", + "DE.Views.ApplicationView.textClear": "清除所有段落", + "DE.Views.ApplicationView.textCopy": "複製", + "DE.Views.ApplicationView.textCut": "剪下", + "DE.Views.ApplicationView.textFitToPage": "切合至頁面", + "DE.Views.ApplicationView.textFitToWidth": "切合至寬度", + "DE.Views.ApplicationView.textNext": "下一欄位", + "DE.Views.ApplicationView.textPaste": "貼上", + "DE.Views.ApplicationView.textPrintSel": "列印選擇", + "DE.Views.ApplicationView.textRedo": "重做", + "DE.Views.ApplicationView.textSubmit": "傳送", + "DE.Views.ApplicationView.textUndo": "復原", + "DE.Views.ApplicationView.textZoom": "放大", + "DE.Views.ApplicationView.txtDarkMode": "夜間模式", + "DE.Views.ApplicationView.txtDownload": "下載", + "DE.Views.ApplicationView.txtDownloadDocx": "下載及儲存為docx", + "DE.Views.ApplicationView.txtDownloadPdf": "下載及儲存為pdf", + "DE.Views.ApplicationView.txtEmbed": "嵌入", + "DE.Views.ApplicationView.txtFileLocation": "打開文件所在位置", + "DE.Views.ApplicationView.txtFullScreen": "全螢幕", + "DE.Views.ApplicationView.txtPrint": "打印", + "DE.Views.ApplicationView.txtShare": "分享", + "DE.Views.ApplicationView.txtTheme": "介面主題" +} \ No newline at end of file diff --git a/apps/documenteditor/main/app.js b/apps/documenteditor/main/app.js index 3e2a27386..c8fffa7c4 100644 --- a/apps/documenteditor/main/app.js +++ b/apps/documenteditor/main/app.js @@ -167,6 +167,7 @@ require([ ,'Common.Controllers.Plugins' ,'Common.Controllers.ExternalDiagramEditor' ,'Common.Controllers.ExternalMergeEditor' + ,'Common.Controllers.ExternalOleEditor' ,'Common.Controllers.ReviewChanges' ,'Common.Controllers.Protection' ] @@ -207,6 +208,7 @@ require([ ,'documenteditor/main/app/view/ChartSettings' ,'common/main/lib/controller/ExternalDiagramEditor' ,'common/main/lib/controller/ExternalMergeEditor' + ,'common/main/lib/controller/ExternalOleEditor' ,'common/main/lib/controller/ReviewChanges' ,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Themes' diff --git a/apps/documenteditor/main/app/controller/DocumentHolder.js b/apps/documenteditor/main/app/controller/DocumentHolder.js index 55f341fba..2e221d0ff 100644 --- a/apps/documenteditor/main/app/controller/DocumentHolder.js +++ b/apps/documenteditor/main/app/controller/DocumentHolder.js @@ -163,6 +163,27 @@ define([ }, 10); }, this)); } + + var oleEditor = this.getApplication().getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor) { + oleEditor.on('internalmessage', _.bind(function(cmp, message) { + var command = message.data.command; + var data = message.data.data; + if (this.api) { + if (oleEditor.isEditMode()) + this.api.asc_editTableOleObject(data); + } + }, this)); + oleEditor.on('hide', _.bind(function(cmp, message) { + if (this.api) { + this.api.asc_enableKeyEvents(true); + } + var me = this; + setTimeout(function(){ + me.documentHolder.fireEvent('editcomplete', me.documentHolder); + }, 10); + }, this)); + } }, getView: function (name) { diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index b274c157e..3bcb075ad 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -458,6 +458,10 @@ define([ default: value = (fast_coauth) ? Asc.c_oAscCollaborativeMarksShowType.None : Asc.c_oAscCollaborativeMarksShowType.LastChanges; } this.api.SetCollaborativeMarksShowType(value); + } else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + fast_coauth = Common.localStorage.getBool("de-settings-view-coauthmode", false); + Common.Utils.InternalSettings.set("de-settings-coauthmode", fast_coauth); + this.api.asc_SetFastCollaborative(fast_coauth); } value = Common.localStorage.getBool("de-settings-livecomment", true); @@ -493,6 +497,14 @@ define([ value = Common.localStorage.getBool("de-settings-spellcheck", true); Common.Utils.InternalSettings.set("de-settings-spellcheck", value); this.api.asc_setSpellCheck(value); + var spprops = new AscCommon.CSpellCheckSettings(); + value = Common.localStorage.getBool("de-spellcheck-ignore-uppercase-words", true); + Common.Utils.InternalSettings.set("de-spellcheck-ignore-uppercase-words", value); + spprops.put_IgnoreWordsInUppercase(value); + value = Common.localStorage.getBool("de-spellcheck-ignore-numbers-words", true); + Common.Utils.InternalSettings.set("de-spellcheck-ignore-numbers-words", value); + spprops.put_IgnoreWordsWithNumbers(value); + this.api.asc_setSpellCheckSettings(spprops); } value = parseInt(Common.localStorage.getItem("de-settings-paste-button")); @@ -574,8 +586,21 @@ define([ onQueryReplace: function(w, opts) { if (!_.isEmpty(opts.textsearch)) { + var me = this; + var str = this.api.asc_GetErrorForReplaceString(opts.textreplace); + if (str) { + Common.UI.warning({ + title: this.notcriticalErrorTitle, + msg: Common.Utils.String.format(this.warnReplaceString, str), + buttons: ['ok'], + callback: function(btn){ + me.dlgSearch.focus('replace'); + } + }); + return; + } + if (!this.api.asc_replaceText(opts.textsearch, opts.textreplace, false, opts.matchcase, opts.matchword)) { - var me = this; Common.UI.info({ msg: this.textNoTextFound, callback: function() { @@ -588,6 +613,19 @@ define([ onQueryReplaceAll: function(w, opts) { if (!_.isEmpty(opts.textsearch)) { + var me = this; + var str = this.api.asc_GetErrorForReplaceString(opts.textreplace); + if (str) { + Common.UI.warning({ + title: this.notcriticalErrorTitle, + msg: Common.Utils.String.format(this.warnReplaceString, str), + buttons: ['ok'], + callback: function(btn){ + me.dlgSearch.focus('replace'); + } + }); + return; + } this.api.asc_replaceText(opts.textsearch, opts.textreplace, true, opts.matchcase, opts.matchword); } }, @@ -927,7 +965,8 @@ define([ warnDownloadAsRTF : 'If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?', txtUntitled: 'Untitled', txtCompatible: 'The document will be saved to the new format. It will allow to use all the editor features, but might affect the document layout.
Use the \'Compatibility\' option of the advanced settings if you want to make the files compatible with older MS Word versions.', - warnDownloadAsPdf: 'Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.' + warnDownloadAsPdf: 'Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.', + warnReplaceString: '{0} is not a valid special character for the Replace With box.' }, DE.Controllers.LeftMenu || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/controller/Links.js b/apps/documenteditor/main/app/controller/Links.js index bfe29f5e6..f8947d704 100644 --- a/apps/documenteditor/main/app/controller/Links.js +++ b/apps/documenteditor/main/app/controller/Links.js @@ -75,7 +75,9 @@ define([ 'links:caption': this.onCaptionClick, 'links:crossref': this.onCrossRefClick, 'links:tof': this.onTableFigures, - 'links:tof-update': this.onTableFiguresUpdate + 'links:tof-update': this.onTableFiguresUpdate, + 'links:addtext': this.onAddText, + 'links:addtext-open': this.onAddTextOpen }, 'DocumentHolder': { 'links:contents': this.onTableContents, @@ -138,7 +140,9 @@ define([ in_header = false, in_equation = false, in_image = false, + in_image_inline = false, in_table = false, + in_para = false, frame_pr = null, object_type; @@ -149,11 +153,13 @@ define([ if (type === Asc.c_oAscTypeSelectElement.Paragraph) { paragraph_locked = pr.get_Locked(); frame_pr = pr; + in_para = true; } else if (type === Asc.c_oAscTypeSelectElement.Header) { header_locked = pr.get_Locked(); in_header = true; } else if (type === Asc.c_oAscTypeSelectElement.Image) { in_image = true; + in_image_inline = (pr.get_WrappingStyle() === Asc.c_oAscWrapStyle2.Inline); object_type = type; } else if (type === Asc.c_oAscTypeSelectElement.Math) { in_equation = true; @@ -189,6 +195,9 @@ define([ this.lockToolbar(Common.enumLock.plainDelLock, plain_del_lock, {array: this.view.btnsContents.concat([this.view.btnTableFigures, this.view.btnTableFiguresUpdate])}); this.lockToolbar(Common.enumLock.contentLock, content_locked, {array: [this.view.btnCrossRef]}); this.lockToolbar(Common.enumLock.cantUpdateTOF, !this.api.asc_CanUpdateTablesOfFigures(), {array: [this.view.btnTableFiguresUpdate]}); + this.lockToolbar(Common.enumLock.inFootnote, this.api.asc_IsCursorInFootnote() || this.api.asc_IsCursorInEndnote(), {array: [this.view.btnAddText]}); + this.lockToolbar(Common.enumLock.inHeader, in_header, {array: [this.view.btnAddText]}); + this.lockToolbar(Common.enumLock.cantAddTextTOF, in_image && !in_image_inline && !in_para, {array: [this.view.btnAddText]}); this.dlgCrossRefDialog && this.dlgCrossRefDialog.isVisible() && this.dlgCrossRefDialog.setLocked(this.view.btnCrossRef.isDisabled()); }, @@ -304,11 +313,9 @@ define([ onTableContentsUpdate: function(type, currentTOC){ var props = this.api.asc_GetTableOfContentsPr(currentTOC); - if (props) { - if (currentTOC && props) - currentTOC = props.get_InternalClass(); - this.api.asc_UpdateTableOfContents(type == 'pages', currentTOC); - } + if (currentTOC && props) + currentTOC = props.get_InternalClass(); + this.api.asc_UpdateTableOfContents(type == 'pages', currentTOC); Common.NotificationCenter.trigger('edit:complete', this.toolbar); }, @@ -316,6 +323,17 @@ define([ this.api.asc_getButtonsTOC(menu.items[0].options.previewId, menu.items[1].options.previewId); }, + onAddTextOpen: function(menu) { + var props = this.api.asc_GetTableOfContentsPr(), + end = props ? props.get_OutlineEnd() : 3; + (end<0) && (end = 9); + this.view.fillAddTextMenu(menu, end, this.api.asc_GetCurrentLevelTOC()); + }, + + onAddText: function(value) { + this.api.asc_AddParagraphToTOC(value); + }, + onNotesClick: function(type) { var me = this; switch (type) { diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 93d5356e0..f841a5cf7 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -473,6 +473,9 @@ define([ docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); + if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) + docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + var enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false); docInfo.asc_putIsEnabledMacroses(!!enable); enable = !this.editorConfig.customization || (this.editorConfig.customization.plugins!==false); @@ -1167,6 +1170,17 @@ define([ me.api.asc_setSpellCheck(value); Common.NotificationCenter.trigger('spelling:turn', value ? 'on' : 'off', true); // only toggle buttons + if (Common.UI.FeaturesManager.canChange('spellcheck')) { // get settings for spellcheck from local storage + value = Common.localStorage.getBool("de-spellcheck-ignore-uppercase-words", true); + Common.Utils.InternalSettings.set("de-spellcheck-ignore-uppercase-words", value); + value = Common.localStorage.getBool("de-spellcheck-ignore-numbers-words", true); + Common.Utils.InternalSettings.set("de-spellcheck-ignore-numbers-words", value); + value = new AscCommon.CSpellCheckSettings(); + value.put_IgnoreWordsInUppercase(Common.Utils.InternalSettings.get("de-spellcheck-ignore-uppercase-words")); + value.put_IgnoreWordsWithNumbers(Common.Utils.InternalSettings.get("de-spellcheck-ignore-numbers-words")); + this.api.asc_setSpellCheckSettings(value); + } + value = Common.localStorage.getBool("de-settings-compatible", false); Common.Utils.InternalSettings.set("de-settings-compatible", value); @@ -1234,6 +1248,7 @@ define([ chatController.setApi(this.api).setMode(this.appOptions); application.getController('Common.Controllers.ExternalDiagramEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); application.getController('Common.Controllers.ExternalMergeEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); + application.getController('Common.Controllers.ExternalOleEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); pluginsController.setApi(me.api); @@ -1532,7 +1547,9 @@ define([ Common.NotificationCenter.on('comments:cleardummy', _.bind(this.onClearDummyComment, this)); Common.NotificationCenter.on('comments:showdummy', _.bind(this.onShowDummyComment, this)); - this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && this.appOptions.canCoAuthoring && !(typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false); + // change = true by default in editor, change = false by default in viewer + this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && this.appOptions.canCoAuthoring && !(typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false) || + !this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===true) ; this.loadCoAuthSettings(); this.applyModeCommonElements(); @@ -1579,6 +1596,16 @@ define([ Common.Utils.InternalSettings.set((fastCoauth) ? "de-settings-showchanges-fast" : "de-settings-showchanges-strict", value); } else if (!this.appOptions.isEdit && this.appOptions.isRestrictedEdit) { fastCoauth = true; + } else if (!this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && !this.appOptions.isOffline) { // viewer + if (!this.appOptions.canChangeCoAuthoring) { //can't change co-auth. mode. Use coEditing.mode or 'strict' by default + value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; + } else { + value = Common.localStorage.getItem("de-settings-view-coauthmode"); + if (value===null) { + value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; + } + } + fastCoauth = (parseInt(value) == 1); } else { fastCoauth = false; autosave = 0; @@ -1615,6 +1642,12 @@ define([ this.api.asc_registerCallback('asc_onParticipantsChanged', _.bind(this.onAuthParticipantsChanged, this)); this.api.asc_registerCallback('asc_onConnectionStateChanged', _.bind(this.onUserConnection, this)); this.api.asc_registerCallback('asc_onDocumentModifiedChanged', _.bind(this.onDocumentModifiedChanged, this)); + + var value = Common.localStorage.getItem('de-settings-unit'); + value = (value!==null) ? parseInt(value) : (this.appOptions.customization && this.appOptions.customization.unit ? Common.Utils.Metric.c_MetricUnits[this.appOptions.customization.unit.toLocaleLowerCase()] : Common.Utils.Metric.getDefaultMetric()); + (value===undefined) && (value = Common.Utils.Metric.getDefaultMetric()); + Common.Utils.Metric.setCurrentMetric(value); + Common.Utils.InternalSettings.set("de-settings-unit", value); }, applyModeEditorElements: function() { @@ -1663,11 +1696,7 @@ define([ toolbarView.on('insertcontrol', _.bind(me.onInsertControl, me)); } - var value = Common.localStorage.getItem('de-settings-unit'); - value = (value!==null) ? parseInt(value) : (this.appOptions.customization && this.appOptions.customization.unit ? Common.Utils.Metric.c_MetricUnits[this.appOptions.customization.unit.toLocaleLowerCase()] : Common.Utils.Metric.getDefaultMetric()); - (value===undefined) && (value = Common.Utils.Metric.getDefaultMetric()); - Common.Utils.Metric.setCurrentMetric(value); - Common.Utils.InternalSettings.set("de-settings-unit", value); + var value = Common.Utils.InternalSettings.get("de-settings-unit"); me.api.asc_SetDocumentUnits((value==Common.Utils.Metric.c_MetricUnits.inch) ? Asc.c_oAscDocumentUnits.Inch : ((value==Common.Utils.Metric.c_MetricUnits.pt) ? Asc.c_oAscDocumentUnits.Point : Asc.c_oAscDocumentUnits.Millimeter)); value = Common.localStorage.itemExists('de-hidden-rulers') ? Common.localStorage.getBool('de-hidden-rulers') : (this.appOptions.customization && !!this.appOptions.customization.hideRulers); @@ -1866,24 +1895,24 @@ define([ config.msg = (this.appOptions.isDesktopApp && this.appOptions.isOffline) ? this.errorEditingSaveas : this.errorEditingDownloadas; break; - case Asc.c_oAscError.ID.MailToClientMissing: + case Asc.c_oAscError.ID.MailToClientMissing: config.msg = this.errorEmailClient; break; - case Asc.c_oAscError.ID.ConvertationOpenLimitError: + case Asc.c_oAscError.ID.ConvertationOpenLimitError: config.msg = this.errorFileSizeExceed; break; - case Asc.c_oAscError.ID.UpdateVersion: + case Asc.c_oAscError.ID.UpdateVersion: config.msg = this.errorUpdateVersionOnDisconnect; config.maxwidth = 600; break; - case Asc.c_oAscError.ID.DirectUrl: + case Asc.c_oAscError.ID.DirectUrl: config.msg = this.errorDirectUrl; break; - case Asc.c_oAscError.ID.CannotCompareInCoEditing: + case Asc.c_oAscError.ID.CannotCompareInCoEditing: config.msg = this.errorCompare; break; @@ -1903,6 +1932,15 @@ define([ config.msg = this.errorLoadingFont; break; + case Asc.c_oAscError.ID.ComplexFieldEmptyTOC: + config.maxwidth = 600; + config.msg = this.errorEmptyTOC; + break; + + case Asc.c_oAscError.ID.ComplexFieldNoTOC: + config.msg = this.errorNoTOC; + break; + default: config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id); break; @@ -3130,7 +3168,9 @@ define([ textDisconnect: 'Connection is lost', textReconnect: 'Connection is restored', errorLang: 'The interface language is not loaded.
Please contact your Document Server administrator.', - errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.' + errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.', + errorEmptyTOC: 'Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.', + errorNoTOC: 'There\'s no table of contents to update. You can insert one from the References tab.' } })(), DE.Controllers.Main || {})) }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/controller/Navigation.js b/apps/documenteditor/main/app/controller/Navigation.js index f528e131e..bbb09fca9 100644 --- a/apps/documenteditor/main/app/controller/Navigation.js +++ b/apps/documenteditor/main/app/controller/Navigation.js @@ -103,6 +103,8 @@ define([ setMode: function(mode) { this.mode = mode; this.canUseViwerNavigation = this.mode.canUseViwerNavigation; + if (this.panelNavigation && this.panelNavigation.viewNavigationList) + this.panelNavigation.viewNavigationList.setEmptyText(this.mode.isEdit ? this.panelNavigation.txtEmpty : this.panelNavigation.txtEmptyViewer); return this; }, @@ -112,6 +114,12 @@ define([ panelNavigation.viewNavigationList.on('item:add', _.bind(this.onItemAdd, this)); panelNavigation.navigationMenu.on('item:click', _.bind(this.onMenuItemClick, this)); panelNavigation.navigationMenu.items[11].menu.on('item:click', _.bind(this.onMenuLevelsItemClick, this)); + + var viewport = this.getApplication().getController('Viewport').getView('Viewport'); + viewport.hlayout.on('layout:resizedrag', function () { + if (panelNavigation.viewNavigationList && panelNavigation.viewNavigationList.scroller) + panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true}); + }); }, updateNavigation: function() { diff --git a/apps/documenteditor/main/app/controller/RightMenu.js b/apps/documenteditor/main/app/controller/RightMenu.js index ee9c25be2..c4cea9f25 100644 --- a/apps/documenteditor/main/app/controller/RightMenu.js +++ b/apps/documenteditor/main/app/controller/RightMenu.js @@ -155,7 +155,8 @@ define([ this._settings[Common.Utils.documentSettingsType.MailMerge].locked = false; this._settings[Common.Utils.documentSettingsType.Signature].locked = false; - var isChart = false; + var isChart = false, + isSmartArtInternal = false; var control_props = this.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null, control_lock = false; for (i=0; i<%= scope.textAlign %>
-
+
diff --git a/apps/documenteditor/main/app/template/StatusBar.template b/apps/documenteditor/main/app/template/StatusBar.template index 22702f8bc..15fffff40 100644 --- a/apps/documenteditor/main/app/template/StatusBar.template +++ b/apps/documenteditor/main/app/template/StatusBar.template @@ -1,36 +1,36 @@
- +
- +
- - + +
- +
-
+
- - + +
- - - + + +
- +
diff --git a/apps/documenteditor/main/app/template/Toolbar.template b/apps/documenteditor/main/app/template/Toolbar.template index 9949bbeac..74b46dfcc 100644 --- a/apps/documenteditor/main/app/template/Toolbar.template +++ b/apps/documenteditor/main/app/template/Toolbar.template @@ -135,11 +135,11 @@
- - + - + +
@@ -149,7 +149,14 @@
- +
+
+
+ +
+
+ +
diff --git a/apps/documenteditor/main/app/view/ChartSettings.js b/apps/documenteditor/main/app/view/ChartSettings.js index b97bcb5b1..09b25f1fe 100644 --- a/apps/documenteditor/main/app/view/ChartSettings.js +++ b/apps/documenteditor/main/app/view/ChartSettings.js @@ -444,6 +444,8 @@ define([ }, onAddChartStylesPreview: function(styles){ + if (!this.cmbChartStyle) return; + var me = this; if (styles && styles.length>0){ var stylesStore = this.cmbChartStyle.menuPicker.store; diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index a654d9f8d..d66adfac4 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -365,7 +365,8 @@ define([ addEvent(me.el, eventname, handleDocumentWheel); } - $(document).on('mousewheel', handleDocumentWheel); + !Common.Utils.isChrome ? $(document).on('mousewheel', handleDocumentWheel) : + document.addEventListener('mousewheel', handleDocumentWheel, {passive: false}); $(document).on('keydown', handleDocumentKeyDown); $(window).on('resize', onDocumentHolderResize); @@ -802,6 +803,17 @@ define([ } } }; + + var onDoubleClickOnTableOleObject = function(chart) { + if (me.mode.isEdit && !me._isDisabled) { + var oleEditor = DE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor && chart) { + oleEditor.setEditMode(true); + oleEditor.show(); + oleEditor.setOleData(Asc.asc_putBinaryDataToFrameFromTableOleObject(chart)); + } + } + }; var onCoAuthoringDisconnect= function() { me.mode.isEdit = false; @@ -1596,6 +1608,7 @@ define([ this.api.asc_registerCallback('asc_onImgWrapStyleChanged', _.bind(this.onImgWrapStyleChanged, this)); this.api.asc_registerCallback('asc_onDialogAddHyperlink', onDialogAddHyperlink); this.api.asc_registerCallback('asc_doubleClickOnChart', onDoubleClickOnChart); + this.api.asc_registerCallback('asc_doubleClickOnTableOleObject', onDoubleClickOnTableOleObject); this.api.asc_registerCallback('asc_onSpellCheckVariantsFound', _.bind(onSpellCheckVariantsFound, this)); this.api.asc_registerCallback('asc_onRulerDblClick', _.bind(this.onRulerDblClick, this)); this.api.asc_registerCallback('asc_ChangeCropState', _.bind(this.onChangeCropState, this)); @@ -1696,6 +1709,7 @@ define([ paragraphProps : elValue, borderProps : me.borderAdvancedProps, isChart : (item.isChart===true), + isSmartArtInternal : (item.isSmartArtInternal===true), api : me.api, handler: function(result, value) { if (result == 'ok') { @@ -2769,9 +2783,11 @@ define([ menuImgReplace.menu.items[2].setVisible(me.mode.canRequestInsertImage || me.mode.fileChoiceUrl && me.mode.fileChoiceUrl.indexOf("{documentType}")>-1); menuImgRotate.setVisible(!value.imgProps.isChart && (pluginGuid===null || pluginGuid===undefined)); - if (menuImgRotate.isVisible()) + if (menuImgRotate.isVisible()) { menuImgRotate.setDisabled(islocked || value.imgProps.isSmartArt); - + menuImgRotate.menu.items[3].setDisabled(value.imgProps.isSmartArtInternal); + menuImgRotate.menu.items[4].setDisabled(value.imgProps.isSmartArtInternal); + } me.menuImgCrop.setVisible(me.api.asc_canEditCrop()); if (me.menuImgCrop.isVisible()) me.menuImgCrop.setDisabled(islocked); @@ -4058,6 +4074,7 @@ define([ me.menuParagraphDirect270.setChecked(dir == Asc.c_oAscVertDrawingText.vert270); } menuParagraphAdvanced.isChart = (value.imgProps && value.imgProps.isChart); + menuParagraphAdvanced.isSmartArtInternal = (value.imgProps && value.imgProps.isSmartArtInternal); menuParagraphBreakBefore.setVisible(!isInShape && !isInChart && !isEquation); menuParagraphKeepLines.setVisible(!isInShape && !isInChart && !isEquation); if (value.paraProps) { @@ -4157,9 +4174,10 @@ define([ if (frame_pr) menuDropCapAdvanced.setIconCls(frame_pr.get_DropCap()===Asc.c_oAscDropCap.Drop ? 'menu__icon dropcap-intext' : 'menu__icon dropcap-inmargin'); - menuStyleSeparator.setVisible(me.mode.canEditStyles && !isInChart); - menuStyle.setVisible(me.mode.canEditStyles && !isInChart); - if (me.mode.canEditStyles && !isInChart) { + var edit_style = me.mode.canEditStyles && !isInChart && !(value.imgProps && value.imgProps.isSmartArtInternal); + menuStyleSeparator.setVisible(edit_style); + menuStyle.setVisible(edit_style); + if (edit_style) { me.menuStyleUpdate.setCaption(me.updateStyleText.replace('%1', DE.getController('Main').translationTable[window.currentStyleName] || window.currentStyleName)); } diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index baf7de0e2..2937c60ee 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -79,9 +79,9 @@ define([ '
', '<% _.each(row, function(item) { %>', '<% if (item.type!==Asc.c_oAscFileType.DOCM || fileType=="docm") { %>', - '', + '', '<% } %>', '<% }) %>', '', @@ -175,9 +175,9 @@ define([ '', '<% _.each(row, function(item) { %>', '<% if (item.type!==Asc.c_oAscFileType.DOCM || fileType=="docm") { %>', - '', + '', '<% } %>', '<% }) %>', '', @@ -293,7 +293,7 @@ define([ '', '', '', - '', + '', '', '', '', @@ -305,6 +305,10 @@ define([ '', '', '','', + '', + '', + '', + '', '', '', '', @@ -318,6 +322,12 @@ define([ '', '', '', + '', + '', + '', + '', + '', + '', '', '', '', @@ -416,6 +426,25 @@ define([ dataHint: '2', dataHintDirection: 'left', dataHintOffset: 'small' + }).on('change', function(field, newValue, oldValue, eOpts){ + me.chIgnoreUppercase.setDisabled(field.getValue()!=='checked'); + me.chIgnoreNumbers.setDisabled(field.getValue()!=='checked'); + }); + + this.chIgnoreUppercase = new Common.UI.CheckBox({ + el: $markup.findById('#fms-chb-ignore-uppercase-words'), + labelText: this.strIgnoreWordsInUPPERCASE, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + + this.chIgnoreNumbers = new Common.UI.CheckBox({ + el: $markup.findById('#fms-chb-ignore-numbers-words'), + labelText: this.strIgnoreWordsWithNumbers, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' }); this.chCompatible = new Common.UI.CheckBox({ @@ -552,6 +581,14 @@ define([ /** coauthoring end **/ + this.chLiveViewer = new Common.UI.CheckBox({ + el: $markup.findById('#fms-chb-live-viewer'), + labelText: this.strShowOthersChanges, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + var itemsTemplate = _.template([ '<% _.each(items, function(item) { %>', @@ -718,6 +755,7 @@ define([ $('tr.coauth', this.el)[mode.isEdit && mode.canCoAuthoring ? 'show' : 'hide'](); $('tr.coauth.changes-mode', this.el)[mode.isEdit && !mode.isOffline && mode.canCoAuthoring && mode.canChangeCoAuthoring ? 'show' : 'hide'](); $('tr.coauth.changes-show', this.el)[mode.isEdit && !mode.isOffline && mode.canCoAuthoring ? 'show' : 'hide'](); + $('tr.live-viewer', this.el)[!mode.isEdit && !mode.isRestrictedEdit && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide'](); $('tr.view-review', this.el)[mode.canViewReview ? 'show' : 'hide'](); $('tr.spellcheck', this.el)[mode.isEdit && Common.UI.FeaturesManager.canChange('spellcheck') ? 'show' : 'hide'](); $('tr.comments', this.el)[mode.canCoAuthoring ? 'show' : 'hide'](); @@ -752,6 +790,8 @@ define([ this.rbCoAuthModeStrict.setValue(!fast_coauth); this.fillShowChanges(fast_coauth); + this.chLiveViewer.setValue(Common.Utils.InternalSettings.get("de-settings-coauthmode")); + value = Common.Utils.InternalSettings.get((fast_coauth) ? "de-settings-showchanges-fast" : "de-settings-showchanges-strict"); this.rbShowChangesNone.setValue(value=='none'); @@ -780,8 +820,11 @@ define([ if (this.mode.canForcesave) this.chForcesave.setValue(Common.Utils.InternalSettings.get("de-settings-forcesave")); - if (Common.UI.FeaturesManager.canChange('spellcheck')) + if (Common.UI.FeaturesManager.canChange('spellcheck')) { this.chSpell.setValue(Common.Utils.InternalSettings.get("de-settings-spellcheck")); + this.chIgnoreUppercase.setValue(Common.Utils.InternalSettings.get("de-spellcheck-ignore-uppercase-words")); + this.chIgnoreNumbers.setValue(Common.Utils.InternalSettings.get("de-spellcheck-ignore-numbers-words")); + } this.chAlignGuides.setValue(Common.Utils.InternalSettings.get("de-settings-showsnaplines")); this.chCompatible.setValue(Common.Utils.InternalSettings.get("de-settings-compatible")); @@ -825,18 +868,23 @@ define([ this.mode.canChangeCoAuthoring && Common.localStorage.setItem("de-settings-coauthmode", this.rbCoAuthModeFast.getValue() ? 1 : 0 ); Common.localStorage.setItem(this.rbCoAuthModeFast.getValue() ? "de-settings-showchanges-fast" : "de-settings-showchanges-strict", this.rbShowChangesNone.getValue()?'none':this.rbShowChangesLast.getValue()?'last':'all'); + } else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + Common.localStorage.setItem("de-settings-view-coauthmode", this.chLiveViewer.isChecked() ? 1 : 0); } /** coauthoring end **/ Common.localStorage.setItem("de-settings-fontrender", this.cmbFontRender.getValue()); var item = this.cmbFontRender.store.findWhere({value: 'custom'}); Common.localStorage.setItem("de-settings-cachemode", item && !item.get('checked') ? 0 : 1); Common.localStorage.setItem("de-settings-unit", this.cmbUnit.getValue()); - if (this.mode.canChangeCoAuthoring || !Common.Utils.InternalSettings.get("de-settings-coauthmode")) + if (this.mode.isEdit && (this.mode.canChangeCoAuthoring || !Common.Utils.InternalSettings.get("de-settings-coauthmode"))) Common.localStorage.setItem("de-settings-autosave", this.chAutosave.isChecked() ? 1 : 0); if (this.mode.canForcesave) Common.localStorage.setItem("de-settings-forcesave", this.chForcesave.isChecked() ? 1 : 0); - if (Common.UI.FeaturesManager.canChange('spellcheck')) + if (Common.UI.FeaturesManager.canChange('spellcheck') && this.mode.isEdit) { Common.localStorage.setItem("de-settings-spellcheck", this.chSpell.isChecked() ? 1 : 0); + Common.localStorage.setBool("de-spellcheck-ignore-uppercase-words", this.chIgnoreUppercase.isChecked()); + Common.localStorage.setBool("de-spellcheck-ignore-numbers-words", this.chIgnoreNumbers.isChecked()); + } Common.localStorage.setItem("de-settings-compatible", this.chCompatible.isChecked() ? 1 : 0); Common.Utils.InternalSettings.set("de-settings-compatible", this.chCompatible.isChecked() ? 1 : 0); Common.Utils.InternalSettings.set("de-settings-showsnaplines", this.chAlignGuides.isChecked()); @@ -896,7 +944,7 @@ define([ strZoom: 'Default Zoom Value', /** coauthoring begin **/ - strShowChanges: 'Realtime Collaboration Changes', + strShowChanges: 'Real-time Collaboration Changes', txtAll: 'View All', txtNone: 'View Nothing', txtLast: 'View Last', @@ -951,7 +999,10 @@ define([ strShowComments: 'Show comments in text', strShowResolvedComments: 'Show resolved comments', txtFastTip: 'Real-time co-editing. All changes are saved automatically', - txtStrictTip: 'Use the \'Save\' button to sync the changes you and others make' + txtStrictTip: 'Use the \'Save\' button to sync the changes you and others make', + strIgnoreWordsInUPPERCASE: 'Ignore words in UPPERCASE', + strIgnoreWordsWithNumbers: 'Ignore words with numbers', + strShowOthersChanges: 'Show changes from other users' }, DE.Views.FileMenuPanels.Settings || {})); DE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ @@ -978,9 +1029,9 @@ define([ itemTemplate: _.template([ '
', '
', - '', - '', - '', + '
', + '
', + '
', '
', '
<% if (typeof title !== "undefined") {%><%= Common.Utils.String.htmlEncode(title || "") %><% } %>
', '
<% if (typeof folder !== "undefined") {%><%= Common.Utils.String.htmlEncode(folder || "") %><% } %>
', @@ -1029,7 +1080,7 @@ define([ '<% if (blank) { %> ', '
', '
', - '', + '
', '
', '
<%= scope.txtBlank %>
', '
', @@ -1040,7 +1091,7 @@ define([ '<% if (!_.isEmpty(item.image)) {%> ', ' style="background-image: url(<%= item.image %>);">', ' <%} else {' + - 'print(\">\")' + + 'print(\">
\")' + ' } %>', '
', '
<%= Common.Utils.String.htmlEncode(item.title || item.name || "") %>
', @@ -1147,33 +1198,47 @@ define([ '
', '', '', + '', + '', + '', + '', '', '', // '', // '', // '', // '', - '', + '', '', '', '', - '', + '', '', '', '', - '', + '', '', '', '', - '', - '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', '', '', '', '', '', - '', - '', + '', + '', '', '', '', @@ -1185,7 +1250,23 @@ define([ '', '', '', - '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', '', '
' + Common.Utils.String.htmlEncode(str[j]) + '
', - '', - '
', + '
', + '
', - '', - '
', + '
', + '
', '', @@ -1230,6 +1311,7 @@ define([ this.lblStatParagraphs = $markup.findById('#id-info-paragraphs'); this.lblStatSymbols = $markup.findById('#id-info-symbols'); this.lblStatSpaces = $markup.findById('#id-info-spaces'); + this.lblPageSize = $markup.findById('#id-info-pages-size'); // this.lblEditTime = $markup.find('#id-info-edittime'); // edited info @@ -1323,6 +1405,15 @@ define([ } }).on('keydown:before', keyDownBefore); + // pdf info + this.lblPageSize = $markup.findById('#id-info-page-size'); + this.lblPdfTitle = $markup.findById('#id-lbl-info-title'); + this.lblPdfSubject = $markup.findById('#id-lbl-info-subject'); + this.lblPdfAuthor = $markup.findById('#id-lbl-info-author'); + this.lblPdfVer = $markup.findById('#id-info-pdf-ver'); + this.lblPdfTagged = $markup.findById('#id-info-pdf-tagged'); + this.lblFastWV = $markup.findById('#id-info-fast-wv'); + this.btnApply = new Common.UI.Button({ el: $markup.findById('#fminfo-btn-apply') }); @@ -1399,10 +1490,16 @@ define([ this._ShowHideDocInfo(false); $('tr.divider.general', this.el)[visible?'show':'hide'](); + var pdfProps = (this.api) ? this.api.asc_getPdfProps() : null; var appname = (this.api) ? this.api.asc_getAppProps() : null; if (appname) { + $('.pdf-info', this.el).hide(); appname = (appname.asc_getApplication() || '') + (appname.asc_getAppVersion() ? ' ' : '') + (appname.asc_getAppVersion() || ''); this.lblApplication.text(appname); + } else if (pdfProps) { + $('.docx-info', this.el).hide(); + appname = pdfProps ? pdfProps.Producer || '' : ''; + this.lblApplication.text(appname); } this._ShowHideInfoItem(this.lblApplication, !!appname); @@ -1412,7 +1509,8 @@ define([ if (value) this.lblDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'})); this._ShowHideInfoItem(this.lblDate, !!value); - } + } else if (pdfProps) + this.updatePdfInfo(pdfProps); }, updateFileInfo: function() { @@ -1424,14 +1522,6 @@ define([ value; this.coreProps = props; - // var app = (this.api) ? this.api.asc_getAppProps() : null; - // if (app) { - // value = app.asc_getTotalTime(); - // if (value) - // this.lblEditTime.text(value + ' ' + this.txtMinutes); - // } - // this._ShowHideInfoItem(this.lblEditTime, !!value); - if (props) { var visible = false; value = props.asc_getModified(); @@ -1466,6 +1556,82 @@ define([ this.SetDisabled(); }, + updatePdfInfo: function(props) { + if (!this.rendered) + return; + + var me = this, + value; + + if (props) { + value = props.CreationDate; + if (value) { + value = new Date(value); + this.lblDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'})); + } + this._ShowHideInfoItem(this.lblDate, !!value); + + var visible = false; + value = props.ModDate; + if (value) { + value = new Date(value); + this.lblModifyDate.text(value.toLocaleString(this.mode.lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleString(this.mode.lang, {timeStyle: 'short'})); + } + visible = this._ShowHideInfoItem(this.lblModifyDate, !!value) || visible; + visible = this._ShowHideInfoItem(this.lblModifyBy, false) || visible; + $('tr.divider.modify', this.el)[visible?'show':'hide'](); + + if (props.PageWidth && props.PageHeight && (typeof props.PageWidth === 'number') && (typeof props.PageHeight === 'number')) { + var w = props.PageWidth, + h = props.PageHeight; + switch (Common.Utils.Metric.getCurrentMetric()) { + case Common.Utils.Metric.c_MetricUnits.cm: + w = parseFloat((w* 25.4 / 72000.).toFixed(2)); + h = parseFloat((h* 25.4 / 72000.).toFixed(2)); + break; + case Common.Utils.Metric.c_MetricUnits.pt: + w = parseFloat((w/100.).toFixed(2)); + h = parseFloat((h/100.).toFixed(2)); + break; + case Common.Utils.Metric.c_MetricUnits.inch: + w = parseFloat((w/7200.).toFixed(2)); + h = parseFloat((h/7200.).toFixed(2)); + break; + } + this.lblPageSize.text(w + ' ' + Common.Utils.Metric.getCurrentMetricName() + ' x ' + h + ' ' + Common.Utils.Metric.getCurrentMetricName()); + this._ShowHideInfoItem(this.lblPageSize, true); + } else + this._ShowHideInfoItem(this.lblPageSize, false); + + value = props.Title; + value && this.lblPdfTitle.text(value); + visible = this._ShowHideInfoItem(this.lblPdfTitle, !!value); + + value = props.Subject; + value && this.lblPdfSubject.text(value); + visible = this._ShowHideInfoItem(this.lblPdfSubject, !!value) || visible; + $('tr.divider.pdf-title', this.el)[visible?'show':'hide'](); + + value = props.Author; + value && this.lblPdfAuthor.text(value); + this._ShowHideInfoItem(this.lblPdfAuthor, !!value); + + value = props.Version; + value && this.lblPdfVer.text(value); + this._ShowHideInfoItem(this.lblPdfVer, !!value); + + value = props.Tagged; + if (value !== undefined) + this.lblPdfTagged.text(value===true ? this.txtYes : this.txtNo); + this._ShowHideInfoItem(this.lblPdfTagged, value !== undefined); + + value = props.FastWebView; + if (value !== undefined) + this.lblFastWV.text(value===true ? this.txtYes : this.txtNo); + this._ShowHideInfoItem(this.lblFastWV, value !== undefined); + } + }, + _ShowHideInfoItem: function(el, visible) { el.closest('tr')[visible?'show':'hide'](); return visible; @@ -1618,7 +1784,14 @@ define([ txtAddAuthor: 'Add Author', txtAddText: 'Add Text', txtMinutes: 'min', - okButtonText: 'Apply' + okButtonText: 'Apply', + txtPageSize: 'Page Size', + txtPdfVer: 'PDF Version', + txtPdfTagged: 'Tagged PDF', + txtFastWV: 'Fast Web View', + txtYes: 'Yes', + txtNo: 'No' + }, DE.Views.FileMenuPanels.DocumentInfo || {})); DE.Views.FileMenuPanels.DocumentRights = Common.UI.BaseView.extend(_.extend({ diff --git a/apps/documenteditor/main/app/view/ImageSettings.js b/apps/documenteditor/main/app/view/ImageSettings.js index 5f60017b4..df4817e88 100644 --- a/apps/documenteditor/main/app/view/ImageSettings.js +++ b/apps/documenteditor/main/app/view/ImageSettings.js @@ -181,7 +181,18 @@ define([ this.btnOriginalSize.on('click', _.bind(this.setOriginalSize, this)); this.btnEditObject.on('click', _.bind(function(btn){ - if (this.api) this.api.asc_startEditCurrentOleObject(); + if (this.api) { + var oleobj = this.api.asc_canEditTableOleObject(true); + if (oleobj) { + var oleEditor = DE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor) { + oleEditor.setEditMode(true); + oleEditor.show(); + oleEditor.setOleData(Asc.asc_putBinaryDataToFrameFromTableOleObject(oleobj)); + } + } else + this.api.asc_startEditCurrentOleObject(); + } this.fireEvent('editcomplete', this); }, this)); this.btnFitMargins.on('click', _.bind(this.setFitMargins, this)); @@ -424,7 +435,7 @@ define([ if (this._state.isOleObject) { var plugin = DE.getCollection('Common.Collections.Plugins').findWhere({guid: pluginGuid}); - this.btnEditObject.setDisabled(plugin===null || plugin ===undefined || this._locked); + this.btnEditObject.setDisabled(!this.api.asc_canEditTableOleObject() && (plugin===null || plugin ===undefined) || this._locked); } else { this.btnSelectImage.setDisabled(pluginGuid===null || this._locked); } diff --git a/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js b/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js index 9e3e36bb5..1a70d2d23 100644 --- a/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/ImageSettingsAdvanced.js @@ -1561,6 +1561,8 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat } if (props.get_FromSmartArtInternal()) { this.chAutofit.setDisabled(true); + this.chFlipHor.setDisabled(true); + this.chFlipVert.setDisabled(true); } var stroke = props.get_stroke(); diff --git a/apps/documenteditor/main/app/view/Links.js b/apps/documenteditor/main/app/view/Links.js index 346b7ab47..8ea79d0eb 100644 --- a/apps/documenteditor/main/app/view/Links.js +++ b/apps/documenteditor/main/app/view/Links.js @@ -81,6 +81,13 @@ define([ }, 10); }); + this.btnAddText.menu.on('item:click', function (menu, item, e) { + me.fireEvent('links:addtext', [item.value]); + }); + this.btnAddText.menu.on('show:after', function (menu, e) { + me.fireEvent('links:addtext-open', [menu]); + }); + this.btnsNotes.forEach(function(button) { button.menu.on('item:click', function (menu, item, e) { me.fireEvent('links:notes', [item.value]); @@ -174,7 +181,7 @@ define([ this.btnContentsUpdate = new Common.UI.Button({ parentEl: $host.find('#slot-btn-contents-update'), - cls: 'btn-toolbar x-huge icon-top', + cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-update', lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], caption: this.capBtnContentsUpdate, @@ -182,10 +189,25 @@ define([ menu: true, dataHint: '1', dataHintDirection: 'bottom', - dataHintOffset: 'small' + dataHintOffset: '0, -8' }); this.paragraphControls.push(this.btnContentsUpdate); + this.btnAddText = new Common.UI.Button({ + parentEl: $host.find('#slot-btn-add-text'), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon add-text', + lock: [ _set.cantAddTextTOF, _set.inHeader, _set.inFootnote, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + caption: this.capBtnAddText, + menu: new Common.UI.Menu({ + items: [] + }), + dataHint: '1', + dataHintDirection: 'left', + dataHintOffset: 'medium' + }); + this.paragraphControls.push(this.btnAddText); + this.btnBookmarks = new Common.UI.Button({ parentEl: $host.find('#slot-btn-bookmarks'), cls: 'btn-toolbar x-huge icon-top', @@ -294,6 +316,8 @@ define([ ] })); + me.btnAddText.updateHint(me.tipAddText); + me.contentsUpdateMenu = new Common.UI.Menu({ items: [ {caption: me.textUpdateAll, value: 'all'}, @@ -386,6 +410,27 @@ define([ }); }, + fillAddTextMenu: function(menu, endlevel, current) { + endlevel = Math.max(endlevel || 3, current+1); + menu.removeAll(); + menu.addItem(new Common.UI.MenuItem({ + caption: this.txtDontShowTof, + value: -1, + checkable: true, + checked: current<0, + toggleGroup : 'addTextGroup' + })); + for (var i=0; iApply a heading style to the text so that it appears in the table of contents.', - txtEmptyItem: 'Empty Heading' + txtEmptyItem: 'Empty Heading', + txtEmptyViewer: 'There are no headings in the document.' }, DE.Views.Navigation || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/ParagraphSettings.js b/apps/documenteditor/main/app/view/ParagraphSettings.js index 25ac7509c..9fa0b41b3 100644 --- a/apps/documenteditor/main/app/view/ParagraphSettings.js +++ b/apps/documenteditor/main/app/view/ParagraphSettings.js @@ -87,6 +87,7 @@ define([ this.lockedControls = []; this._locked = true; this.isChart = false; + this.isSmartArtInternal = false; this._arrLineRule = [ {displayValue: this.textAtLeast,defaultValue: 5, value: c_paragraphLinerule.LINERULE_LEAST, minValue: 0.03, step: 0.01, defaultUnit: 'cm'}, @@ -452,7 +453,7 @@ define([ this.createDelayedElements(); this.disableControls(this._locked); - this.hideTextOnlySettings(this.isChart); + this.hideTextOnlySettings(this.isChart || this.isSmartArtInternal); if (prop) { var Spacing = { @@ -635,6 +636,7 @@ define([ paragraphProps: elValue, borderProps: me.borderAdvancedProps, isChart: me.isChart, + isSmartArtInternal: me.isSmartArtInternal, api: me.api, handler: function(result, value) { if (result == 'ok') { diff --git a/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js index 23801f3e6..3b28e4bda 100644 --- a/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js @@ -95,6 +95,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem this.api = this.options.api; this._originalProps = new Asc.asc_CParagraphProperty(this.options.paragraphProps); this.isChart = this.options.isChart; + this.isSmartArtInternal = this.options.isSmartArtInternal; this.CurLineRuleIdx = this._originalProps.get_Spacing().get_LineRule(); @@ -410,7 +411,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem _.each(_arrBorderPresets, function(item, index, list){ var _btn = new Common.UI.Button({ parentEl: $('#'+item[2]), - style: 'margin-left: 5px; margin-bottom: 4px;', + style: 'margin-left: 4px; margin-bottom: 4px;', cls: 'btn-options large border-off', iconCls: item[1], strId :item[0], @@ -549,7 +550,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem '
', '
<%= value %>
', '
<%= displayTabAlign %>
', - '
<%= displayTabLeader %>
', + (this.isChart || this.isSmartArtInternal) ? '' : '
<%= displayTabLeader %>
', '
' ].join('')), tabindex: 1 @@ -809,7 +810,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem if (props ){ this._originalProps = new Asc.asc_CParagraphProperty(props); - this.hideTextOnlySettings(this.isChart); + this.hideTextOnlySettings(this.isChart || this.isSmartArtInternal); this.FirstLine = (props.get_Ind() !== null) ? props.get_Ind().get_FirstLine() : null; this.LeftIndent = (props.get_Ind() !== null) ? props.get_Ind().get_Left() : null; diff --git a/apps/documenteditor/main/app/view/ShapeSettings.js b/apps/documenteditor/main/app/view/ShapeSettings.js index 8f7a7031d..58d01426b 100644 --- a/apps/documenteditor/main/app/view/ShapeSettings.js +++ b/apps/documenteditor/main/app/view/ShapeSettings.js @@ -822,6 +822,8 @@ define([ this._originalProps = new Asc.asc_CImgProperty(props); this._noApply = true; + this._state.isFromImage = !!shapeprops.get_FromImage(); + this._state.isFromSmartArtInternal = !!shapeprops.get_FromSmartArtInternal(); this.disableControls(this._locked, !shapeprops.get_CanFill()); this.hideShapeOnlySettings(shapeprops.get_FromChart() || !!shapeprops.get_FromImage()); @@ -832,10 +834,8 @@ define([ || shapetype=='curvedConnector3' || shapetype=='curvedConnector4' || shapetype=='curvedConnector5' || shapetype=='straightConnector1'; this.hideChangeTypeSettings(hidechangetype || control_props); - this._state.isFromImage = !!shapeprops.get_FromImage(); - this._state.isFromSmartArtInternal = !!shapeprops.get_FromSmartArtInternal(); if (!hidechangetype && this.btnChangeShape.menu.items.length) { - this.btnChangeShape.shapePicker.hideTextRect(shapeprops.get_FromImage() || shapeprops.get_FromSmartArtInternal()); + this.btnChangeShape.shapePicker.hideTextRect(shapeprops.get_FromImage() || this._state.isFromSmartArtInternal); } var value = props.get_WrappingStyle(); @@ -1986,6 +1986,8 @@ define([ }); this.linkAdvanced.toggleClass('disabled', disable); } + this.btnFlipV.setDisabled(disable || this._state.isFromSmartArtInternal); + this.btnFlipH.setDisabled(disable || this._state.isFromSmartArtInternal); }, hideShapeOnlySettings: function(value) { diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index 864408c8e..7b5b4bba1 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -794,9 +794,9 @@ define([ }); if (this._state.beginPreviewStyles) { this._state.beginPreviewStyles = false; - self.mnuTableTemplatePicker.store.reset(arr); + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.reset(arr); } else - self.mnuTableTemplatePicker.store.add(arr); + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.add(arr); !this._state.currentStyleFound && this.selectCurrentTableStyle(); }, diff --git a/apps/documenteditor/main/app/view/TableSettingsAdvanced.js b/apps/documenteditor/main/app/view/TableSettingsAdvanced.js index fb5306e99..87ce9d700 100644 --- a/apps/documenteditor/main/app/view/TableSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/TableSettingsAdvanced.js @@ -948,7 +948,7 @@ define([ 'text!documenteditor/main/app/template/TableSettingsAdvanced.templat _.each(_arrBorderPresets, function(item, index, list){ var _btn = new Common.UI.Button({ parentEl: $('#'+item[2]), - style: 'margin-left: 5px; margin-bottom: 4px;', + style: 'margin-left: 4px; margin-bottom: 4px;', cls: 'btn-options large border-off', iconCls: item[1], strId :item[0], @@ -974,7 +974,7 @@ define([ 'text!documenteditor/main/app/template/TableSettingsAdvanced.templat _.each(_arrTableBorderPresets, function(item, index, list){ var _btn = new Common.UI.Button({ parentEl: $('#'+item[3]), - style: 'margin-left: 5px; margin-bottom: 4px;', + style: 'margin-left: 4px; margin-bottom: 4px;', cls: 'btn-options large border-off', iconCls: item[2], strCellId :item[0], diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index c033aa68d..4276b6948 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -109,6 +109,7 @@ define([ cantAddPageNum: 'cant-add-page-num', cantPageBreak: 'cant-page-break', cantUpdateTOF: 'cant-update-tof', + cantAddTextTOF: 'cant-addtext-tof', cantGroup: 'cant-group', cantWrap: 'cant-wrap', cantArrange: 'cant-arrange', @@ -367,7 +368,6 @@ define([ dataHintOffset: '0, -16' }); this.paragraphControls.push(this.btnHighlightColor); - this.textOnlyControls.push(this.btnHighlightColor); this.btnFontColor = new Common.UI.ButtonColored({ id: 'id-toolbar-btn-fontcolor', @@ -2103,6 +2103,9 @@ define([ {caption: this.mniEditHeader, value: 'header'}, {caption: this.mniEditFooter, value: 'footer'}, {caption: '--'}, + {caption: this.mniRemoveHeader, value: 'header-remove'}, + {caption: this.mniRemoveFooter, value: 'footer-remove'}, + {caption: '--'}, this.mnuInsertPageNum = new Common.UI.MenuItem({ caption: this.textInsertPageNumber, lock: this.mnuInsertPageNum.options.lock, @@ -2646,8 +2649,8 @@ define([ textInsertPageNumber: 'Insert page number', textToCurrent: 'To Current Position', tipEditHeader: 'Edit header or footer', - mniEditHeader: 'Edit Document Header', - mniEditFooter: 'Edit Document Footer', + mniEditHeader: 'Edit Header', + mniEditFooter: 'Edit Footer', mniHiddenChars: 'Nonprinting Characters', mniHiddenBorders: 'Hidden Table Borders', tipSynchronize: 'The document has been changed by another user. Please click to save your changes and reload the updates.', @@ -2825,7 +2828,9 @@ define([ tipMarkersCheckmark: 'Checkmark bullets', tipMarkersFRhombus: 'Filled rhombus bullets', tipMarkersDash: 'Dash bullets', - textTabView: 'View' + textTabView: 'View', + mniRemoveHeader: 'Remove Header', + mniRemoveFooter: 'Remove Footer' } })(), DE.Views.Toolbar || {})); }); diff --git a/apps/documenteditor/main/app_dev.js b/apps/documenteditor/main/app_dev.js index cb8cdd5a4..a43f32677 100644 --- a/apps/documenteditor/main/app_dev.js +++ b/apps/documenteditor/main/app_dev.js @@ -157,6 +157,7 @@ require([ ,'Common.Controllers.Plugins' ,'Common.Controllers.ExternalDiagramEditor' ,'Common.Controllers.ExternalMergeEditor' + ,'Common.Controllers.ExternalOleEditor' ,'Common.Controllers.ReviewChanges' ,'Common.Controllers.Protection' ] @@ -197,6 +198,7 @@ require([ ,'documenteditor/main/app/view/ChartSettings' ,'common/main/lib/controller/ExternalDiagramEditor' ,'common/main/lib/controller/ExternalMergeEditor' + ,'common/main/lib/controller/ExternalOleEditor' ,'common/main/lib/controller/ReviewChanges' ,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Themes' diff --git a/apps/documenteditor/main/index.html b/apps/documenteditor/main/index.html index cadf758c8..42963309b 100644 --- a/apps/documenteditor/main/index.html +++ b/apps/documenteditor/main/index.html @@ -317,29 +317,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/apps/documenteditor/main/index_loader.html b/apps/documenteditor/main/index_loader.html index 58261a6de..289055c84 100644 --- a/apps/documenteditor/main/index_loader.html +++ b/apps/documenteditor/main/index_loader.html @@ -271,26 +271,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json index 4c78c9b14..7f1bf357d 100644 --- a/apps/documenteditor/main/locale/az.json +++ b/apps/documenteditor/main/locale/az.json @@ -2100,6 +2100,7 @@ "DE.Views.Navigation.txtDemote": "Azalt", "DE.Views.Navigation.txtEmpty": "Heç bir məzmun qeydi tapılmadı.
Mətn seçiminə başlıq üslubunun tətbiqi məzmun cədvəlində görünəcək.", "DE.Views.Navigation.txtEmptyItem": "Boş Başlıq", + "DE.Views.Navigation.txtEmptyViewer": "Heç bir məzmun qeydi tapılmadı.", "DE.Views.Navigation.txtExpand": "Hamısını genişləndir", "DE.Views.Navigation.txtExpandToLevel": "Səviyyəyə uyğun genişləndir", "DE.Views.Navigation.txtHeadingAfter": "Sonra yeni başlıq", diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index 01b681768..6e40d94c6 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -103,7 +103,7 @@ "Common.define.chartData.textSurface": "Паверхня", "Common.Translation.warnFileLocked": "Дакумент зараз выкарыстоўваецца іншай праграмай.", "Common.UI.ButtonColored.textAutoColor": "Аўтаматычна", - "Common.UI.ButtonColored.textNewColor": "Дадаць новы адвольны колер", + "Common.UI.ButtonColored.textNewColor": "Адвольны колер", "Common.UI.Calendar.textApril": "Красавік", "Common.UI.Calendar.textAugust": "Жнівень", "Common.UI.Calendar.textDecember": "Снежань", @@ -844,7 +844,6 @@ "DE.Controllers.Toolbar.textScript": "Індэксы", "DE.Controllers.Toolbar.textSymbols": "Сімвалы", "DE.Controllers.Toolbar.textWarning": "Увага", - "DE.Controllers.Toolbar.tipMarkersArrow": "Маркеры-стрэлкі", "DE.Controllers.Toolbar.txtAccent_Accent": "Націск", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрэлка ўправа-ўлева зверху", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрэлка ўлева зверху", @@ -1438,7 +1437,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Абнавіць змест", "DE.Views.DocumentHolder.textWrap": "Стыль абцякання", "DE.Views.DocumentHolder.tipIsLocked": "Гэты элемент рэдагуецца іншым карыстальнікам.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрэлкі", "DE.Views.DocumentHolder.toDictionaryText": "Дадаць у слоўнік", "DE.Views.DocumentHolder.txtAddBottom": "Дадаць ніжнюю мяжу", "DE.Views.DocumentHolder.txtAddFractionBar": "Дадаць рыску дробу", @@ -1971,6 +1969,7 @@ "DE.Views.Navigation.txtDemote": "Панізіць узровень", "DE.Views.Navigation.txtEmpty": "У гэтага дакумента няма загалоўка
Выкарыстайце стыль загалоўка да тэксту, каб ён з’явіўся ў змесце.", "DE.Views.Navigation.txtEmptyItem": "Пусты загаловак", + "DE.Views.Navigation.txtEmptyViewer": "У гэтага дакумента няма загалоўка.", "DE.Views.Navigation.txtExpand": "Пашырыць усе", "DE.Views.Navigation.txtExpandToLevel": "Пашырыць да ўзроўня", "DE.Views.Navigation.txtHeadingAfter": "Новы загаловак пасля", @@ -2488,7 +2487,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Звычайныя", "DE.Views.Toolbar.textMarginsUsNormal": "Звычайныя (US)", "DE.Views.Toolbar.textMarginsWide": "Шырокія", - "DE.Views.Toolbar.textNewColor": "Дадаць новы адвольны колер", + "DE.Views.Toolbar.textNewColor": "Адвольны колер", "DE.Views.Toolbar.textNextPage": "Наступная старонка", "DE.Views.Toolbar.textNoHighlight": "Без падсвятлення", "DE.Views.Toolbar.textNone": "Няма", @@ -2568,6 +2567,7 @@ "DE.Views.Toolbar.tipLineSpace": "Міжрадковы прамежак у абзацах", "DE.Views.Toolbar.tipMailRecepients": "Аб’яднанне", "DE.Views.Toolbar.tipMarkers": "Спіс з адзнакамі", + "DE.Views.Toolbar.tipMarkersArrow": "Маркеры-стрэлкі", "DE.Views.Toolbar.tipMultilevels": "Шматузроўневы спіс", "DE.Views.Toolbar.tipNumbers": "Пранумараваны спіс", "DE.Views.Toolbar.tipPageBreak": "Уставіць разрыў старонкі альбо раздзела", diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json index 976de4ca2..7288f6418 100644 --- a/apps/documenteditor/main/locale/bg.json +++ b/apps/documenteditor/main/locale/bg.json @@ -1638,6 +1638,7 @@ "DE.Views.Navigation.txtDemote": "Понижавам", "DE.Views.Navigation.txtEmpty": "Този документ не съдържа заглавия", "DE.Views.Navigation.txtEmptyItem": "Празно заглавие", + "DE.Views.Navigation.txtEmptyViewer": "Този документ не съдържа заглавия.", "DE.Views.Navigation.txtExpand": "Разгънете всички", "DE.Views.Navigation.txtExpandToLevel": "Разширяване до ниво", "DE.Views.Navigation.txtHeadingAfter": "Нова позиция след", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index b88c489b2..756b73abf 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obre per a la seva visualització", "Common.UI.ButtonColored.textAutoColor": "Automàtic", - "Common.UI.ButtonColored.textNewColor": "Afegeix un color personalitzat nou ", + "Common.UI.ButtonColored.textNewColor": "Color personalitzat nou ", "Common.UI.Calendar.textApril": "abril", "Common.UI.Calendar.textAugust": "agost", "Common.UI.Calendar.textDecember": "desembre", @@ -262,6 +262,7 @@ "Common.Views.Comments.textResolved": "S'ha resolt", "Common.Views.Comments.textSort": "Ordena els comentaris", "Common.Views.Comments.textViewResolved": "No teniu permís per tornar a obrir el comentari", + "Common.Views.Comments.txtEmpty": "No hi ha cap comentari al document", "Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge", "Common.Views.CopyWarningDialog.textMsg": "Les accions de copia, talla i enganxa mitjançant els botons de la barra d’eines de l’editor i les accions del menú contextual només es realitzaran dins d’aquesta pestanya editor.

Per copiar o enganxar a o des d’aplicacions fora de la pestanya de l'editor, utilitzeu les combinacions de teclat següents:", "Common.Views.CopyWarningDialog.textTitle": "Accions de copia, talla i enganxa ", @@ -514,6 +515,7 @@ "DE.Controllers.LeftMenu.warnDownloadAs": "Si continueu i deseu en aquest format, es perdran totes les característiques, excepte el text.
Voleu continuar?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "El vostre {0} es convertirà a un format editable. Això pot trigar una estona. El document resultant s'optimitzarà perquè pugueu editar el text, de manera que pot ser que no se sembli a l'original {0}, sobretot si el fitxer original contenia molts gràfics.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si continueu i deseu en aquest format, es pot perdre part del format.
Voleu continuar?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} no és un caràcter especial vàlid per al camp de substitució.", "DE.Controllers.Main.applyChangesTextText": "S'estan carregant els canvis...", "DE.Controllers.Main.applyChangesTitleText": "S'estan carregant els canvis", "DE.Controllers.Main.convertationTimeoutText": "S'ha superat el temps de conversió.", @@ -918,17 +920,6 @@ "DE.Controllers.Toolbar.textSymbols": "Símbols", "DE.Controllers.Toolbar.textTabForms": "Formularis", "DE.Controllers.Toolbar.textWarning": "Advertiment", - "DE.Controllers.Toolbar.tipMarkersArrow": "Pics de fletxa", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Pics de marca de selecció", - "DE.Controllers.Toolbar.tipMarkersDash": "Pics de guió", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Pics de rombes plens", - "DE.Controllers.Toolbar.tipMarkersFRound": "Pics rodons plens", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Pics quadrats plens", - "DE.Controllers.Toolbar.tipMarkersHRound": "Pics rodons buits", - "DE.Controllers.Toolbar.tipMarkersStar": "Pics d'estrella", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Pics numerats multinivell ", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Pics de símbols multinivell", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Pics numerats de diferents nivells", "DE.Controllers.Toolbar.txtAccent_Accent": "Agut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Fletxa dreta-esquerra superior", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Fletxa esquerra a sobre", @@ -1531,14 +1522,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Actualitza la taula de continguts", "DE.Views.DocumentHolder.textWrap": "Estil d'ajustament", "DE.Views.DocumentHolder.tipIsLocked": "Un altre usuari té obert ara aquest element.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Pics de fletxa", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Pics de marca de selecció", - "DE.Views.DocumentHolder.tipMarkersDash": "Pics de guió", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Pics de rombes plens", - "DE.Views.DocumentHolder.tipMarkersFRound": "Pics rodons plens", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Pics quadrats plens", - "DE.Views.DocumentHolder.tipMarkersHRound": "Pics rodons buits", - "DE.Views.DocumentHolder.tipMarkersStar": "Pics d'estrella", "DE.Views.DocumentHolder.toDictionaryText": "Afegeix al diccionari", "DE.Views.DocumentHolder.txtAddBottom": "Afegeix una línia inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Afegeix una barra de fracció", @@ -1681,7 +1664,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "Tanca el menú", "DE.Views.FileMenu.btnCreateNewCaption": "Crea'n un de nou", "DE.Views.FileMenu.btnDownloadCaption": "Baixa-ho com a...", - "DE.Views.FileMenu.btnExitCaption": "Surt", + "DE.Views.FileMenu.btnExitCaption": "Tancar", "DE.Views.FileMenu.btnFileOpenCaption": "Obre...", "DE.Views.FileMenu.btnHelpCaption": "Ajuda...", "DE.Views.FileMenu.btnHistoryCaption": "Historial de versions", @@ -1708,12 +1691,17 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Canvia els drets d’accés", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentari", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "S'ha creat", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Vista ràpida de la Web", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "S'està carregant...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Darrera modificació feta per", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Darrera modificació", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "No", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propietari", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pàgines", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Mida de la pàgina", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paràgrafs", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF Etiquetat", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versió PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicació", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persones que tenen drets", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbols amb espais", @@ -1723,6 +1711,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Títol", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S'ha carregat", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Paraules", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Sí", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Canvia els drets d’accés", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persones que tenen drets", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Advertiment", @@ -2136,6 +2125,7 @@ "DE.Views.Navigation.txtDemote": "Rebaixa de nivell", "DE.Views.Navigation.txtEmpty": "No hi ha cap títol al document.
Aplica un estil d’encapçalament al text de manera que aparegui a la taula de continguts.", "DE.Views.Navigation.txtEmptyItem": "Encapçalament buit", + "DE.Views.Navigation.txtEmptyViewer": "No hi ha cap títol al document.", "DE.Views.Navigation.txtExpand": "Expandeix-ho tot", "DE.Views.Navigation.txtExpandToLevel": "Expandeix al nivell", "DE.Views.Navigation.txtHeadingAfter": "Crea un títol després", @@ -2691,7 +2681,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Ample", - "DE.Views.Toolbar.textNewColor": "Afegeix un color personalitzat nou ", + "DE.Views.Toolbar.textNewColor": "Color personalitzat nou ", "DE.Views.Toolbar.textNextPage": "Pàgina següent", "DE.Views.Toolbar.textNoHighlight": "Sense ressaltar", "DE.Views.Toolbar.textNone": "Cap", @@ -2771,7 +2761,18 @@ "DE.Views.Toolbar.tipLineSpace": "Interlineat del paràgraf", "DE.Views.Toolbar.tipMailRecepients": "Combina la correspondència", "DE.Views.Toolbar.tipMarkers": "Pics", + "DE.Views.Toolbar.tipMarkersArrow": "Pics de fletxa", + "DE.Views.Toolbar.tipMarkersCheckmark": "Pics de marca de selecció", + "DE.Views.Toolbar.tipMarkersDash": "Pics de guió", + "DE.Views.Toolbar.tipMarkersFRhombus": "Pics de rombes plens", + "DE.Views.Toolbar.tipMarkersFRound": "Pics rodons plens", + "DE.Views.Toolbar.tipMarkersFSquare": "Pics quadrats plens", + "DE.Views.Toolbar.tipMarkersHRound": "Pics rodons buits", + "DE.Views.Toolbar.tipMarkersStar": "Pics d'estrella", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Pics numerats multinivell ", "DE.Views.Toolbar.tipMultilevels": "Llista amb diversos nivells", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Pics de símbols multinivell", + "DE.Views.Toolbar.tipMultiLevelVarious": "Pics numerats de diferents nivells", "DE.Views.Toolbar.tipNumbers": "Numeració", "DE.Views.Toolbar.tipPageBreak": "Insereix un salt de pàgina o de secció", "DE.Views.Toolbar.tipPageMargins": "Marges de la pàgina", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index a865066a9..8d58ecc1f 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -262,6 +262,7 @@ "Common.Views.Comments.textResolved": "Vyřešeno", "Common.Views.Comments.textSort": "Řadit komentáře", "Common.Views.Comments.textViewResolved": "Nemáte oprávnění pro opětovné otevírání komentářů", + "Common.Views.Comments.txtEmpty": "Dokument neobsahuje komentáře.", "Common.Views.CopyWarningDialog.textDontShow": "Tuto zprávu už nezobrazovat", "Common.Views.CopyWarningDialog.textMsg": "Akce kopírovat, vyjmout a vložit použitím lišty nástrojů editoru a kontextové nabídky budou prováděny pouze v tomto okně editoru.

Pro kopírování do nebo vkládání z aplikací mimo okno editoru použijte následující klávesové zkratky:", "Common.Views.CopyWarningDialog.textTitle": "Akce kopírovat, vyjmout a vložit", @@ -514,6 +515,7 @@ "DE.Controllers.LeftMenu.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
Opravdu chcete pokračovat?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Vašich {0} bude převedeno do editovatelného formátu. Tato operace může chvíli trvat. Výsledný dokument bude optimalizován a umožní editaci textu. Nemusí vypadat totožně jako původní {0}, zvláště pokud původní soubor obsahoval velké množství grafiky. ", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Uložením v tomto formátu může být ztracena část formátování dokumentu.
Opravdu chcete pokračovat?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} je neplatný speciální znak pro nahrazení.", "DE.Controllers.Main.applyChangesTextText": "Načítání změn…", "DE.Controllers.Main.applyChangesTitleText": "Načítání změn", "DE.Controllers.Main.convertationTimeoutText": "Překročen časový limit pro provedení převodu.", @@ -918,17 +920,6 @@ "DE.Controllers.Toolbar.textSymbols": "Symboly", "DE.Controllers.Toolbar.textTabForms": "Formuláře", "DE.Controllers.Toolbar.textWarning": "Varování", - "DE.Controllers.Toolbar.tipMarkersArrow": "Šipkové odrážky", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Zatržítkové odrážky", - "DE.Controllers.Toolbar.tipMarkersDash": "Pomlčkové odrážky", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", - "DE.Controllers.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky", - "DE.Controllers.Toolbar.tipMarkersHRound": "Duté kulaté odrážky", - "DE.Controllers.Toolbar.tipMarkersStar": "Hvězdičkové odrážky", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Víceúrovňové číslované odrážky", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Víceúrovňové symbolové odrážky", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Víceúrovňové různé číslované odrážky", "DE.Controllers.Toolbar.txtAccent_Accent": "Čárka", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Šipka vlevo-vpravo nad", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Šipka vlevo nad", @@ -1531,14 +1522,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Obnovit obsah", "DE.Views.DocumentHolder.textWrap": "Obtékání textu", "DE.Views.DocumentHolder.tipIsLocked": "Tento prvek je právě upravován jiným uživatelem.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Šipkové odrážky", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Zatržítkové odrážky", - "DE.Views.DocumentHolder.tipMarkersDash": "Pomlčkové odrážky", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", - "DE.Views.DocumentHolder.tipMarkersFRound": "Vyplněné kulaté odrážky", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Plné čtvercové odrážky", - "DE.Views.DocumentHolder.tipMarkersHRound": "Duté kulaté odrážky", - "DE.Views.DocumentHolder.tipMarkersStar": "Hvězdičkové odrážky", "DE.Views.DocumentHolder.toDictionaryText": "Přidat do slovníku", "DE.Views.DocumentHolder.txtAddBottom": "Přidat spodní ohraničení", "DE.Views.DocumentHolder.txtAddFractionBar": "Přidat zlomkovou čáru", @@ -1681,7 +1664,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "Zavřít nabídku", "DE.Views.FileMenu.btnCreateNewCaption": "Vytvořit nový", "DE.Views.FileMenu.btnDownloadCaption": "Stáhnout jako…", - "DE.Views.FileMenu.btnExitCaption": "Konec", + "DE.Views.FileMenu.btnExitCaption": "Zavřít", "DE.Views.FileMenu.btnFileOpenCaption": "Otevřít...", "DE.Views.FileMenu.btnHelpCaption": "Nápověda…", "DE.Views.FileMenu.btnHistoryCaption": "Historie verzí", @@ -1708,12 +1691,17 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Změnit přístupová práva", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentář", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Vytvořeno", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Rychlé zobrazení stránky", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Načítání…", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Naposledy upravil(a)", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Naposledy upraveno", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Ne", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Vlastník", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Stránky", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Velikost stránky", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Odstavce", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "Označené PDF", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Verze PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umístění", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby, které mají práva", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboly s mezerami", @@ -1723,6 +1711,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Název", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Nahráno", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Slova", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Ano", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Změnit přístupová práva", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, které mají práva", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Varování", @@ -2136,6 +2125,7 @@ "DE.Views.Navigation.txtDemote": "Degradovat", "DE.Views.Navigation.txtEmpty": "Tento dokument neobsahuje nadpisy.
Pro zahrnutí v textu v obsahu použijte na text stylování nadpisů.", "DE.Views.Navigation.txtEmptyItem": "Prázdné záhlaví", + "DE.Views.Navigation.txtEmptyViewer": "Tento dokument neobsahuje nadpisy.", "DE.Views.Navigation.txtExpand": "Rozbalit vše", "DE.Views.Navigation.txtExpandToLevel": "Rozbalit po úroveň", "DE.Views.Navigation.txtHeadingAfter": "Nový nadpis po", @@ -2771,7 +2761,18 @@ "DE.Views.Toolbar.tipLineSpace": "Řádkování v odstavci", "DE.Views.Toolbar.tipMailRecepients": "Korespondence", "DE.Views.Toolbar.tipMarkers": "Odrážky", + "DE.Views.Toolbar.tipMarkersArrow": "Šipkové odrážky", + "DE.Views.Toolbar.tipMarkersCheckmark": "Zatržítkové odrážky", + "DE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky", + "DE.Views.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", + "DE.Views.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky", + "DE.Views.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky", + "DE.Views.Toolbar.tipMarkersHRound": "Duté kulaté odrážky", + "DE.Views.Toolbar.tipMarkersStar": "Hvězdičkové odrážky", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Víceúrovňové číslované odrážky", "DE.Views.Toolbar.tipMultilevels": "Seznam s více úrovněmi", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Víceúrovňové symbolové odrážky", + "DE.Views.Toolbar.tipMultiLevelVarious": "Víceúrovňové různé číslované odrážky", "DE.Views.Toolbar.tipNumbers": "Číslování", "DE.Views.Toolbar.tipPageBreak": "Vložit rozdělení stránky nebo sekce", "DE.Views.Toolbar.tipPageMargins": "Okraje stránky", diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json index b98baf1ac..9ececb645 100644 --- a/apps/documenteditor/main/locale/da.json +++ b/apps/documenteditor/main/locale/da.json @@ -2100,6 +2100,7 @@ "DE.Views.Navigation.txtDemote": "Degrader", "DE.Views.Navigation.txtEmpty": "Der er ingen overskrifter i dokumentet.
Anvend en overskriftstil på teksten, så den vises i indholdsfortegnelsen.", "DE.Views.Navigation.txtEmptyItem": "Tom overskrift", + "DE.Views.Navigation.txtEmptyViewer": "Der er ingen overskrifter i dokumentet.", "DE.Views.Navigation.txtExpand": "Expander alle", "DE.Views.Navigation.txtExpandToLevel": "Udvid til niveu", "DE.Views.Navigation.txtHeadingAfter": "Ny overskrift efter", @@ -2647,7 +2648,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Bredde", - "DE.Views.Toolbar.textNewColor": "Tilføj ny brugerdefineret farve", + "DE.Views.Toolbar.textNewColor": "Brugerdefineret farve", "DE.Views.Toolbar.textNextPage": "Næste side", "DE.Views.Toolbar.textNoHighlight": "Ingen fremhævning", "DE.Views.Toolbar.textNone": "ingen", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 1be778ad1..d92e3cba8 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen", "Common.Translation.warnFileLockedBtnView": "Schreibgeschützt öffnen", "Common.UI.ButtonColored.textAutoColor": "Automatisch", - "Common.UI.ButtonColored.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen", + "Common.UI.ButtonColored.textNewColor": "Benutzerdefinierte Farbe", "Common.UI.Calendar.textApril": "April", "Common.UI.Calendar.textAugust": "August", "Common.UI.Calendar.textDecember": "Dezember", @@ -916,17 +916,6 @@ "DE.Controllers.Toolbar.textSymbols": "Symbole", "DE.Controllers.Toolbar.textTabForms": "Formulare", "DE.Controllers.Toolbar.textWarning": "Achtung", - "DE.Controllers.Toolbar.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Häkchenaufzählungszeichen", - "DE.Controllers.Toolbar.tipMarkersDash": "Aufzählungszeichen", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen", - "DE.Controllers.Toolbar.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen", - "DE.Controllers.Toolbar.tipMarkersHRound": "Leere runde Aufzählungszeichen", - "DE.Controllers.Toolbar.tipMarkersStar": "Sternförmige Aufzählungszeichen", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Nummerierte Liste mit mehreren Ebenen", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Aufzählungsliste mit mehreren Ebenen", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Kombinierte Liste mit mehreren Ebenen", "DE.Controllers.Toolbar.txtAccent_Accent": "Akut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Pfeil nach rechts und links oben", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Pfeil nach links oben", @@ -1527,14 +1516,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Das Inhaltsverzeichnis aktualisieren", "DE.Views.DocumentHolder.textWrap": "Textumbruch", "DE.Views.DocumentHolder.tipIsLocked": "Dieses Element wird gerade von einem anderen Benutzer bearbeitet.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Häkchenaufzählungszeichen", - "DE.Views.DocumentHolder.tipMarkersDash": "Aufzählungszeichen", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen", - "DE.Views.DocumentHolder.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen", - "DE.Views.DocumentHolder.tipMarkersHRound": "Leere runde Aufzählungszeichen", - "DE.Views.DocumentHolder.tipMarkersStar": "Sternförmige Aufzählungszeichen", "DE.Views.DocumentHolder.toDictionaryText": "Zum Wörterbuch hinzufügen", "DE.Views.DocumentHolder.txtAddBottom": "Unteren Rahmen hinzufügen", "DE.Views.DocumentHolder.txtAddFractionBar": "Bruchstrich hinzufügen", @@ -2132,6 +2113,7 @@ "DE.Views.Navigation.txtDemote": "Tieferstufen", "DE.Views.Navigation.txtEmpty": "Dieses Dokument enthält keine Überschriften.
Wenden Sie ein Überschriftenformat auf den Text an, damit es im Inhaltsverzeichnis angezeigt wird.", "DE.Views.Navigation.txtEmptyItem": "Leere Überschrift", + "DE.Views.Navigation.txtEmptyViewer": "Dieses Dokument enthält keine Überschriften.", "DE.Views.Navigation.txtExpand": "Alle ausklappen", "DE.Views.Navigation.txtExpandToLevel": "Auf Ebene erweitern", "DE.Views.Navigation.txtHeadingAfter": "Neue Überschrift nach", @@ -2765,7 +2747,18 @@ "DE.Views.Toolbar.tipLineSpace": "Zeilenabstand", "DE.Views.Toolbar.tipMailRecepients": "Serienbrief", "DE.Views.Toolbar.tipMarkers": "Aufzählung", + "DE.Views.Toolbar.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen", + "DE.Views.Toolbar.tipMarkersCheckmark": "Häkchenaufzählungszeichen", + "DE.Views.Toolbar.tipMarkersDash": "Aufzählungszeichen", + "DE.Views.Toolbar.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen", + "DE.Views.Toolbar.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen", + "DE.Views.Toolbar.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen", + "DE.Views.Toolbar.tipMarkersHRound": "Leere runde Aufzählungszeichen", + "DE.Views.Toolbar.tipMarkersStar": "Sternförmige Aufzählungszeichen", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Nummerierte Liste mit mehreren Ebenen", "DE.Views.Toolbar.tipMultilevels": "Liste mit mehreren Ebenen", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Aufzählungsliste mit mehreren Ebenen", + "DE.Views.Toolbar.tipMultiLevelVarious": "Kombinierte Liste mit mehreren Ebenen", "DE.Views.Toolbar.tipNumbers": "Nummerierung", "DE.Views.Toolbar.tipPageBreak": "Seiten- oder Abschnittsumbruch einfügen", "DE.Views.Toolbar.tipPageMargins": "Seitenränder", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index bafd79202..e04ea236e 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου", "Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή", "Common.UI.ButtonColored.textAutoColor": "Αυτόματα", - "Common.UI.ButtonColored.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", + "Common.UI.ButtonColored.textNewColor": "Νέου Προσαρμοσμένου Χρώματος", "Common.UI.Calendar.textApril": "Απρίλιος", "Common.UI.Calendar.textAugust": "Αύγουστος", "Common.UI.Calendar.textDecember": "Δεκέμβριος", @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Αυτόματες λίστες κουκκίδων", "Common.Views.AutoCorrectDialog.textBy": "Από", "Common.Views.AutoCorrectDialog.textDelete": "Διαγραφή", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Εισαγωγή διπλού διαστήματος", "Common.Views.AutoCorrectDialog.textFLCells": "Να γίνει κεφαλαίο το πρώτο γράμμα των κελιών του πίνακα", "Common.Views.AutoCorrectDialog.textFLSentence": "Κεφαλαιοποιήστε το πρώτο γράμμα των προτάσεων", "Common.Views.AutoCorrectDialog.textHyperlink": "Μονοπάτια δικτύου και διαδικτύου με υπερσυνδέσμους", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Το έγγραφο θα αποθηκευτεί στη νέα μορφή. Θα επιτρέπεται η χρήση όλων των χαρακτηριστικών του συντάκτη, αλλά μπορεί να επηρεαστεί η διάταξη του εγγράφου.
Χρησιμοποιήστε την επιλογή 'Συμβατότητα' των προηγμένων ρυθμίσεων αν θέλετε να κάνετε τα αρχεία συμβατά με παλαιότερες εκδόσεις MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Άτιτλο", "DE.Controllers.LeftMenu.warnDownloadAs": "Αν προχωρήσετε με την αποθήκευση σε αυτή τη μορφή, όλα τα χαρακτηριστικά πλην του κειμένου θα χαθούν.
Θέλετε σίγουρα να συνεχίσετε;", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Το δικό σας {0} θα μετατραπεί σε μια επεξεργάσιμη μορφή. Αυτό μπορεί να διαρκέσει αρκετά. Το τελικό έγγραφο θα είναι βελτιστοποιημένο ως προς τη δυνατότητα επεξεργασίας, οπότε ίσως να διαφέρει από το αρχικό {0}, ειδικά αν περιέχει πολλά γραφικά.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Αν προχωρήσετε στην αποθήκευση σε αυτή τη μορφή, κάποιες από τις μορφοποιήσεις μπορεί να χαθούν.
Θέλετε σίγουρα να συνεχίσετε;", "DE.Controllers.Main.applyChangesTextText": "Φόρτωση των αλλαγών...", "DE.Controllers.Main.applyChangesTitleText": "Φόρτωση των Αλλαγών", @@ -916,17 +918,6 @@ "DE.Controllers.Toolbar.textSymbols": "Σύμβολα", "DE.Controllers.Toolbar.textTabForms": "Φόρμες", "DE.Controllers.Toolbar.textWarning": "Προειδοποίηση", - "DE.Controllers.Toolbar.tipMarkersArrow": "Κουκίδες βέλη", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος", - "DE.Controllers.Toolbar.tipMarkersDash": "Κουκίδες παύλας", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου", - "DE.Controllers.Toolbar.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες", - "DE.Controllers.Toolbar.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές", - "DE.Controllers.Toolbar.tipMarkersStar": "Κουκίδες αστέρια", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Κουκίδες αριθμημένες πολυεπίπεδες", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Κουκίδες συμβόλων πολυεπίπεδες", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Κουκίδες πολλαπλώς αριθμημένες πολυεπίπεδες", "DE.Controllers.Toolbar.txtAccent_Accent": "Οξεία", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Από πάνω βέλος δεξιά-αριστερά", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Από πάνω βέλος προς αριστερά", @@ -1460,6 +1451,7 @@ "DE.Views.DocumentHolder.strSign": "Σύμβολο", "DE.Views.DocumentHolder.styleText": "Μορφοποίηση ως Τεχνοτροπία", "DE.Views.DocumentHolder.tableText": "Πίνακας", + "DE.Views.DocumentHolder.textAccept": "Αποδοχή Αλλαγής", "DE.Views.DocumentHolder.textAlign": "Στοίχιση", "DE.Views.DocumentHolder.textArrange": "Τακτοποίηση", "DE.Views.DocumentHolder.textArrangeBack": "Μεταφορά στο Παρασκήνιο", @@ -1494,6 +1486,7 @@ "DE.Views.DocumentHolder.textPaste": "Επικόλληση", "DE.Views.DocumentHolder.textPrevPage": "Προηγούμενη Σελίδα", "DE.Views.DocumentHolder.textRefreshField": "Ενημέρωση πεδίου", + "DE.Views.DocumentHolder.textReject": "Απόρριψη Αλλαγής", "DE.Views.DocumentHolder.textRemCheckBox": "Αφαίρεση Πλαισίου Επιλογής", "DE.Views.DocumentHolder.textRemComboBox": "Αφαίρεση Πολλαπλών Επιλογών", "DE.Views.DocumentHolder.textRemDropdown": "Αφαίρεση Πτυσσόμενης Λίστας ", @@ -1527,14 +1520,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Ενημέρωση πίνακα περιεχομένων", "DE.Views.DocumentHolder.textWrap": "Τεχνοτροπία Αναδίπλωσης", "DE.Views.DocumentHolder.tipIsLocked": "Αυτό το στοιχείο επεξεργάζεται αυτήν τη στιγμή από άλλο χρήστη.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Κουκίδες βέλη", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος", - "DE.Views.DocumentHolder.tipMarkersDash": "Κουκίδες παύλας", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου", - "DE.Views.DocumentHolder.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες", - "DE.Views.DocumentHolder.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές", - "DE.Views.DocumentHolder.tipMarkersStar": "Κουκίδες αστέρια", "DE.Views.DocumentHolder.toDictionaryText": "Προσθήκη στο Λεξικό", "DE.Views.DocumentHolder.txtAddBottom": "Προσθήκη κάτω περιγράμματος", "DE.Views.DocumentHolder.txtAddFractionBar": "Προσθήκη γραμμής κλάσματος", @@ -2132,6 +2117,7 @@ "DE.Views.Navigation.txtDemote": "Υποβίβαση", "DE.Views.Navigation.txtEmpty": "Δεν υπάρχουν επικεφαλίδες στο έγγραφο.
Εφαρμόστε μια τεχνοτροπία επικεφαλίδων στο κείμενο ώστε να εμφανίζεται στον πίνακα περιεχομένων.", "DE.Views.Navigation.txtEmptyItem": "Κενή Επικεφαλίδα", + "DE.Views.Navigation.txtEmptyViewer": "Δεν υπάρχουν επικεφαλίδες στο έγγραφο.", "DE.Views.Navigation.txtExpand": "Επέκταση όλων", "DE.Views.Navigation.txtExpandToLevel": "Επέκταση σε επίπεδο", "DE.Views.Navigation.txtHeadingAfter": "Νέα επικεφαλίδα μετά", @@ -2378,6 +2364,8 @@ "DE.Views.Statusbar.pageIndexText": "Σελίδα {0} από {1}", "DE.Views.Statusbar.tipFitPage": "Προσαρμογή στη σελίδα", "DE.Views.Statusbar.tipFitWidth": "Προσαρμογή στο πλάτος", + "DE.Views.Statusbar.tipHandTool": "Εργαλείο χειρός", + "DE.Views.Statusbar.tipSelectTool": "Εργαλείο επιλογής", "DE.Views.Statusbar.tipSetLang": "Ορισμός γλώσσας κειμένου", "DE.Views.Statusbar.tipZoomFactor": "Εστίαση", "DE.Views.Statusbar.tipZoomIn": "Μεγέθυνση", @@ -2685,7 +2673,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Κανονικό", "DE.Views.Toolbar.textMarginsUsNormal": "ΗΠΑ Κανονικό", "DE.Views.Toolbar.textMarginsWide": "Πλατύ", - "DE.Views.Toolbar.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", + "DE.Views.Toolbar.textNewColor": "Νέου Προσαρμοσμένου Χρώματος", "DE.Views.Toolbar.textNextPage": "Επόμενη Σελίδα", "DE.Views.Toolbar.textNoHighlight": "Χωρίς επισήμανση", "DE.Views.Toolbar.textNone": "Κανένα", @@ -2765,7 +2753,18 @@ "DE.Views.Toolbar.tipLineSpace": "Διάστιχο παραγράφου", "DE.Views.Toolbar.tipMailRecepients": "Συγχώνευση αλληλογραφίας", "DE.Views.Toolbar.tipMarkers": "Κουκκίδες", + "DE.Views.Toolbar.tipMarkersArrow": "Κουκίδες βέλη", + "DE.Views.Toolbar.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος", + "DE.Views.Toolbar.tipMarkersDash": "Κουκίδες παύλας", + "DE.Views.Toolbar.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου", + "DE.Views.Toolbar.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές", + "DE.Views.Toolbar.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες", + "DE.Views.Toolbar.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές", + "DE.Views.Toolbar.tipMarkersStar": "Κουκίδες αστέρια", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Κουκίδες αριθμημένες πολυεπίπεδες", "DE.Views.Toolbar.tipMultilevels": "Πολυεπίπεδη λίστα", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Κουκίδες συμβόλων πολυεπίπεδες", + "DE.Views.Toolbar.tipMultiLevelVarious": "Κουκίδες πολλαπλώς αριθμημένες πολυεπίπεδες", "DE.Views.Toolbar.tipNumbers": "Αρίθμηση", "DE.Views.Toolbar.tipPageBreak": "Εισαγωγή αλλαγής σελίδας ή τμήματος", "DE.Views.Toolbar.tipPageMargins": "Περιθώρια σελίδας", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index e7c26a0a8..9b771f458 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -263,6 +263,7 @@ "Common.Views.Comments.textResolved": "Resolved", "Common.Views.Comments.textSort": "Sort comments", "Common.Views.Comments.textViewResolved": "You have no permission to reopen the comment", + "Common.Views.Comments.txtEmpty": "There are no comments in the document.", "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", @@ -517,6 +518,7 @@ "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.
Are you sure you want to continue?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} is not a valid special character for the replacement field.", "DE.Controllers.Main.applyChangesTextText": "Loading the changes...", "DE.Controllers.Main.applyChangesTitleText": "Loading the Changes", "DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", @@ -564,6 +566,8 @@ "DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", "DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", "DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,
but will not be able to download or print it until the connection is restored and page is reloaded.", + "DE.Controllers.Main.errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "DE.Controllers.Main.errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.", "DE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "DE.Controllers.Main.loadFontsTextText": "Loading data...", @@ -921,17 +925,6 @@ "DE.Controllers.Toolbar.textSymbols": "Symbols", "DE.Controllers.Toolbar.textTabForms": "Forms", "DE.Controllers.Toolbar.textWarning": "Warning", - "DE.Controllers.Toolbar.tipMarkersArrow": "Arrow bullets", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Checkmark bullets", - "DE.Controllers.Toolbar.tipMarkersDash": "Dash bullets", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Filled rhombus bullets", - "DE.Controllers.Toolbar.tipMarkersFRound": "Filled round bullets", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Filled square bullets", - "DE.Controllers.Toolbar.tipMarkersHRound": "Hollow round bullets", - "DE.Controllers.Toolbar.tipMarkersStar": "Star bullets", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Multi-level numbered bullets", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Multi-level symbols bullets", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Multi-level various numbered bullets", "DE.Controllers.Toolbar.txtAccent_Accent": "Acute", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Right-left arrow above", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards arrow above", @@ -1534,14 +1527,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Update table of contents", "DE.Views.DocumentHolder.textWrap": "Wrapping Style", "DE.Views.DocumentHolder.tipIsLocked": "This element is currently being edited by another user.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Arrow bullets", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Checkmark bullets", - "DE.Views.DocumentHolder.tipMarkersDash": "Dash bullets", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Filled rhombus bullets", - "DE.Views.DocumentHolder.tipMarkersFRound": "Filled round bullets", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Filled square bullets", - "DE.Views.DocumentHolder.tipMarkersHRound": "Hollow round bullets", - "DE.Views.DocumentHolder.tipMarkersStar": "Star bullets", "DE.Views.DocumentHolder.toDictionaryText": "Add to Dictionary", "DE.Views.DocumentHolder.txtAddBottom": "Add bottom border", "DE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar", @@ -1684,7 +1669,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", "DE.Views.FileMenu.btnCreateNewCaption": "Create New", "DE.Views.FileMenu.btnDownloadCaption": "Download as...", - "DE.Views.FileMenu.btnExitCaption": "Exit", + "DE.Views.FileMenu.btnExitCaption": "Close", "DE.Views.FileMenu.btnFileOpenCaption": "Open...", "DE.Views.FileMenu.btnHelpCaption": "Help...", "DE.Views.FileMenu.btnHistoryCaption": "Version History", @@ -1711,12 +1696,17 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Fast Web View", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Loading...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last Modified By", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "No", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Owner", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pages", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Page Size", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphs", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "Tagged PDF", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF Version", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbols with spaces", @@ -1726,6 +1716,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Words", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Yes", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning", @@ -1809,6 +1800,8 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with a notification", "DE.Views.FileMenuPanels.Settings.txtWin": "as Windows", "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers", "DE.Views.FormSettings.textAlways": "Always", "DE.Views.FormSettings.textAspect": "Lock aspect ratio", "DE.Views.FormSettings.textAutofit": "AutoFit", @@ -2080,6 +2073,10 @@ "DE.Views.Links.tipTableFigures": "Insert table of figures", "DE.Views.Links.tipTableFiguresUpdate": "Update table of figures", "DE.Views.Links.titleUpdateTOF": "Update Table of Figures", + "DE.Views.Links.capBtnAddText": "Add Text", + "DE.Views.Links.tipAddText": "Include heading in the Table of Contents", + "DE.Views.Links.txtDontShowTof": "Do Not Show in Table of Contents", + "DE.Views.Links.txtLevel": "Level", "DE.Views.ListSettingsDialog.textAuto": "Automatic", "DE.Views.ListSettingsDialog.textCenter": "Center", "DE.Views.ListSettingsDialog.textLeft": "Left", @@ -2148,6 +2145,7 @@ "DE.Views.Navigation.txtDemote": "Demote", "DE.Views.Navigation.txtEmpty": "There are no headings in the document.
Apply a heading style to the text so that it appears in the table of contents.", "DE.Views.Navigation.txtEmptyItem": "Empty Heading", + "DE.Views.Navigation.txtEmptyViewer": "There are no headings in the document.", "DE.Views.Navigation.txtExpand": "Expand all", "DE.Views.Navigation.txtExpandToLevel": "Expand to level", "DE.Views.Navigation.txtHeadingAfter": "New heading after", @@ -2783,7 +2781,18 @@ "DE.Views.Toolbar.tipLineSpace": "Paragraph line spacing", "DE.Views.Toolbar.tipMailRecepients": "Mail merge", "DE.Views.Toolbar.tipMarkers": "Bullets", + "DE.Views.Toolbar.tipMarkersArrow": "Arrow bullets", + "DE.Views.Toolbar.tipMarkersCheckmark": "Checkmark bullets", + "DE.Views.Toolbar.tipMarkersDash": "Dash bullets", + "DE.Views.Toolbar.tipMarkersFRhombus": "Filled rhombus bullets", + "DE.Views.Toolbar.tipMarkersFRound": "Filled round bullets", + "DE.Views.Toolbar.tipMarkersFSquare": "Filled square bullets", + "DE.Views.Toolbar.tipMarkersHRound": "Hollow round bullets", + "DE.Views.Toolbar.tipMarkersStar": "Star bullets", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Multi-level numbered bullets", "DE.Views.Toolbar.tipMultilevels": "Multilevel list", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Multi-level symbols bullets", + "DE.Views.Toolbar.tipMultiLevelVarious": "Multi-level various numbered bullets", "DE.Views.Toolbar.tipNumbers": "Numbering", "DE.Views.Toolbar.tipPageBreak": "Insert page or section break", "DE.Views.Toolbar.tipPageMargins": "Page margins", @@ -2829,6 +2838,8 @@ "DE.Views.Toolbar.txtScheme7": "Equity", "DE.Views.Toolbar.txtScheme8": "Flow", "DE.Views.Toolbar.txtScheme9": "Foundry", + "DE.Views.Toolbar.mniRemoveHeader": "Remove Header", + "DE.Views.Toolbar.mniRemoveFooter": "Remove Footer", "DE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar", "DE.Views.ViewTab.textDarkDocument": "Dark document", "DE.Views.ViewTab.textFitToPage": "Fit To Page", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index c83e022c3..5109d2453 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crear una copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Agregar nuevo color personalizado", + "Common.UI.ButtonColored.textNewColor": "Color personalizado", "Common.UI.Calendar.textApril": "Abril", "Common.UI.Calendar.textAugust": "Agosto", "Common.UI.Calendar.textDecember": "Diciembre", @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas con viñetas automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Eliminar", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Añadir punto con doble espacio", "Common.Views.AutoCorrectDialog.textFLCells": "Poner en mayúsculas la primera letra de las celdas de la tabla", "Common.Views.AutoCorrectDialog.textFLSentence": "Poner en mayúscula la primera letra de una oración", "Common.Views.AutoCorrectDialog.textHyperlink": "Rutas de red e Internet por hipervínculos", @@ -261,6 +262,7 @@ "Common.Views.Comments.textResolved": "Resuelto", "Common.Views.Comments.textSort": "Ordenar comentarios", "Common.Views.Comments.textViewResolved": "No tiene permiso para volver a abrir el documento", + "Common.Views.Comments.txtEmpty": "Sin comentarios en el documento", "Common.Views.CopyWarningDialog.textDontShow": "No volver a mostrar este mensaje", "Common.Views.CopyWarningDialog.textMsg": "Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y el menú contextual sólo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, usa las combinaciones de teclas siguientes:", "Common.Views.CopyWarningDialog.textTitle": "Funciones de Copiar, Cortar y Pegar", @@ -511,7 +513,9 @@ "DE.Controllers.LeftMenu.txtCompatible": "El documento se guardará en el nuevo formato. Permitirá utilizar todas las características del editor, pero podría afectar el diseño del documento.
Utilice la opción 'Compatibilidad' de la configuración avanzada si quiere hacer que los archivos sean compatibles con versiones anteriores de MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Sin título", "DE.Controllers.LeftMenu.warnDownloadAs": "Si sigue guardando en este formato todas las características a excepción del texto se perderán.
¿Está seguro de que quiere continuar?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Su {0} se convertirá en un formato editable. Esto puede llevar un tiempo. El documento resultante será optimizado para permitirle editar el texto, por lo que puede que no se vea exactamente como el {0} original, especialmente si el archivo original contenía muchos gráficos.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si Usted sigue guardando en este formato, una parte de formateo puede perderse.
¿Está seguro de que desea continuar?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} no es un carácter especial válido para el campo de sustitución.", "DE.Controllers.Main.applyChangesTextText": "Cargando cambios...", "DE.Controllers.Main.applyChangesTitleText": "Cargando cambios", "DE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión está superado.", @@ -916,17 +920,6 @@ "DE.Controllers.Toolbar.textSymbols": "Símbolos", "DE.Controllers.Toolbar.textTabForms": "Formularios", "DE.Controllers.Toolbar.textWarning": "Aviso", - "DE.Controllers.Toolbar.tipMarkersArrow": "Viñetas de flecha", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", - "DE.Controllers.Toolbar.tipMarkersDash": "Viñetas guión", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Rombos rellenos", - "DE.Controllers.Toolbar.tipMarkersFRound": "Viñetas redondas rellenas", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Viñetas cuadradas rellenas", - "DE.Controllers.Toolbar.tipMarkersHRound": "Viñetas redondas huecas", - "DE.Controllers.Toolbar.tipMarkersStar": "Viñetas de estrella", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Viñetas numeradas de varios niveles", "DE.Controllers.Toolbar.txtAccent_Accent": "Acento agudo", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Flecha derecha-izquierda superior", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Flecha superior hacia izquierda", @@ -1460,6 +1453,7 @@ "DE.Views.DocumentHolder.strSign": "Firmar", "DE.Views.DocumentHolder.styleText": "Formateando como Estilo", "DE.Views.DocumentHolder.tableText": "Tabla", + "DE.Views.DocumentHolder.textAccept": "Aceptar el cambio", "DE.Views.DocumentHolder.textAlign": "Alinear", "DE.Views.DocumentHolder.textArrange": "Arreglar", "DE.Views.DocumentHolder.textArrangeBack": "Enviar al fondo", @@ -1494,6 +1488,7 @@ "DE.Views.DocumentHolder.textPaste": "Pegar", "DE.Views.DocumentHolder.textPrevPage": "Página anterior", "DE.Views.DocumentHolder.textRefreshField": "Actualice el campo", + "DE.Views.DocumentHolder.textReject": "Rechazar el cambio", "DE.Views.DocumentHolder.textRemCheckBox": "Eliminar casilla", "DE.Views.DocumentHolder.textRemComboBox": "Eliminar cuadro combinado", "DE.Views.DocumentHolder.textRemDropdown": "Eliminar lista desplegable", @@ -1527,14 +1522,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Actualice la tabla de contenidos", "DE.Views.DocumentHolder.textWrap": "Ajuste de texto", "DE.Views.DocumentHolder.tipIsLocked": "Otro usuario está editando este elemento ahora.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Viñetas de flecha", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Viñetas de marca de verificación", - "DE.Views.DocumentHolder.tipMarkersDash": "Viñetas guión", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Rombos rellenos", - "DE.Views.DocumentHolder.tipMarkersFRound": "Viñetas redondas rellenas", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cuadradas rellenas", - "DE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas huecas", - "DE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrella", "DE.Views.DocumentHolder.toDictionaryText": "Agregar al diccionario", "DE.Views.DocumentHolder.txtAddBottom": "Agregar borde inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Agregar barra de fracción", @@ -1677,7 +1664,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "Cerrar menú", "DE.Views.FileMenu.btnCreateNewCaption": "Crear nuevo", "DE.Views.FileMenu.btnDownloadCaption": "Descargar como...", - "DE.Views.FileMenu.btnExitCaption": "Salir", + "DE.Views.FileMenu.btnExitCaption": "Cerrar", "DE.Views.FileMenu.btnFileOpenCaption": "Abrir...", "DE.Views.FileMenu.btnHelpCaption": "Ayuda...", "DE.Views.FileMenu.btnHistoryCaption": "Historial de las Versiones", @@ -1704,12 +1691,17 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Cambiar derechos de acceso", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentario", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creado", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Vista rápida de la web", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Cargando...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última modificación por", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última modificación", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "No", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propietario", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Páginas", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Tamaño de la página", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Párrafos", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF etiquetado", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versión PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicación", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas que tienen derechos", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbolos con espacios", @@ -1719,6 +1711,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palabras", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Sí", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Cambiar derechos de acceso", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personas que tienen derechos", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", @@ -2132,6 +2125,7 @@ "DE.Views.Navigation.txtDemote": "Degradar", "DE.Views.Navigation.txtEmpty": "No hay títulos en el documento.
Aplique un estilo de título al texto para que aparezca en la tabla de contenido.", "DE.Views.Navigation.txtEmptyItem": "Encabezado vacío", + "DE.Views.Navigation.txtEmptyViewer": "No hay títulos en el documento.", "DE.Views.Navigation.txtExpand": "Expandir todo", "DE.Views.Navigation.txtExpandToLevel": "Expandir a nivel", "DE.Views.Navigation.txtHeadingAfter": "Título nuevo después ", @@ -2378,6 +2372,8 @@ "DE.Views.Statusbar.pageIndexText": "Página {0} de {1}", "DE.Views.Statusbar.tipFitPage": "Ajustar a la página", "DE.Views.Statusbar.tipFitWidth": "Ajustar a ancho", + "DE.Views.Statusbar.tipHandTool": "Herramienta manual", + "DE.Views.Statusbar.tipSelectTool": "Seleccionar herramienta", "DE.Views.Statusbar.tipSetLang": "Establecer idioma de texto", "DE.Views.Statusbar.tipZoomFactor": "Ampliación", "DE.Views.Statusbar.tipZoomIn": "Acercar", @@ -2685,7 +2681,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Amplio", - "DE.Views.Toolbar.textNewColor": "Agregar nuevo color personalizado", + "DE.Views.Toolbar.textNewColor": "Color personalizado", "DE.Views.Toolbar.textNextPage": "Página siguiente", "DE.Views.Toolbar.textNoHighlight": "No resaltar", "DE.Views.Toolbar.textNone": "Ningún", @@ -2765,7 +2761,18 @@ "DE.Views.Toolbar.tipLineSpace": "Espaciado de línea de párrafo", "DE.Views.Toolbar.tipMailRecepients": "Combinación de Correspondencia", "DE.Views.Toolbar.tipMarkers": "Viñetas", + "DE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha", + "DE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", + "DE.Views.Toolbar.tipMarkersDash": "Viñetas guión", + "DE.Views.Toolbar.tipMarkersFRhombus": "Rombos rellenos", + "DE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas rellenas", + "DE.Views.Toolbar.tipMarkersFSquare": "Viñetas cuadradas rellenas", + "DE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas huecas", + "DE.Views.Toolbar.tipMarkersStar": "Viñetas de estrella", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles", "DE.Views.Toolbar.tipMultilevels": "Esquema", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles", + "DE.Views.Toolbar.tipMultiLevelVarious": "Viñetas numeradas de varios niveles", "DE.Views.Toolbar.tipNumbers": "Numeración", "DE.Views.Toolbar.tipPageBreak": "Insertar salto de página o de sección", "DE.Views.Toolbar.tipPageMargins": "Márgenes de Página", diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index 9b296c9a1..9562d7db0 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -63,6 +63,7 @@ "Common.Controllers.ReviewChanges.textTabs": "Vaihda välilehtiä", "Common.Controllers.ReviewChanges.textUnderline": "Alleviivaus", "Common.Controllers.ReviewChanges.textWidow": "Leskirivien hallinta", + "Common.UI.ButtonColored.textNewColor": "Lisää uusi mukautettu väri", "Common.UI.ComboBorderSize.txtNoBorders": "Ei reunusta", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ei reunuksia", "Common.UI.ComboDataView.emptyComboText": "Ei tyylejä", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index b7a916f08..e72b567e0 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Créer une copie", "Common.Translation.warnFileLockedBtnView": "Ouvrir pour visualisation", "Common.UI.ButtonColored.textAutoColor": "Automatique", - "Common.UI.ButtonColored.textNewColor": "Ajouter une nouvelle couleur personnalisée", + "Common.UI.ButtonColored.textNewColor": "Couleur personnalisée", "Common.UI.Calendar.textApril": "Avril", "Common.UI.Calendar.textAugust": "Août", "Common.UI.Calendar.textDecember": "décembre", @@ -514,6 +514,7 @@ "DE.Controllers.LeftMenu.warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
Êtes-vous sûr de vouloir continuer ?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Votre {0} sera converti en un format modifiable. Cette opération peut prendre quelque temps. Le document résultant sera optimisé pour l'édition de texte, il peut donc être différent de l'original {0}, surtout si le fichier original contient de nombreux éléments graphiques.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si vous continuer à sauvegarder dans ce format une partie de la mise en forme peut être supprimée
Êtes-vous sûr de vouloir continuer?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} n'est pas un caractère spécial valide pour le champ de remplacement.", "DE.Controllers.Main.applyChangesTextText": "Chargement des changemets...", "DE.Controllers.Main.applyChangesTitleText": "Chargement des changemets", "DE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.", @@ -918,17 +919,6 @@ "DE.Controllers.Toolbar.textSymbols": "Symboles", "DE.Controllers.Toolbar.textTabForms": "Formulaires", "DE.Controllers.Toolbar.textWarning": "Avertissement", - "DE.Controllers.Toolbar.tipMarkersArrow": "Puces fléchées", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Puces coches", - "DE.Controllers.Toolbar.tipMarkersDash": "Tirets", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Losanges remplis", - "DE.Controllers.Toolbar.tipMarkersFRound": "Puces arrondies remplies", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Puces carrées remplies", - "DE.Controllers.Toolbar.tipMarkersHRound": "Puces rondes vides", - "DE.Controllers.Toolbar.tipMarkersStar": "Puces en étoile", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Puces numérotées à plusieurs niveaux", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Puces de symboles à plusieurs niveaux", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Puces numérotées à plusieurs niveaux", "DE.Controllers.Toolbar.txtAccent_Accent": "Aigu", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Flèche gauche-droite au-dessus", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Flèche vers la gauche au-dessus", @@ -1531,14 +1521,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Actualiser la table des matières", "DE.Views.DocumentHolder.textWrap": "Style d'habillage", "DE.Views.DocumentHolder.tipIsLocked": "Cet élément est en cours d'édition par un autre utilisateur.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Puces fléchées", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Puces coches", - "DE.Views.DocumentHolder.tipMarkersDash": "Tirets", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Losanges remplis", - "DE.Views.DocumentHolder.tipMarkersFRound": "Puces arrondies remplies", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Puces carrées remplies", - "DE.Views.DocumentHolder.tipMarkersHRound": "Puces rondes vides", - "DE.Views.DocumentHolder.tipMarkersStar": "Puces en étoile", "DE.Views.DocumentHolder.toDictionaryText": "Ajouter au dictionnaire", "DE.Views.DocumentHolder.txtAddBottom": "Ajouter bordure inférieure", "DE.Views.DocumentHolder.txtAddFractionBar": "Ajouter barre de fraction", @@ -1681,7 +1663,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "Fermer le menu", "DE.Views.FileMenu.btnCreateNewCaption": "Nouveau document", "DE.Views.FileMenu.btnDownloadCaption": "Télécharger comme...", - "DE.Views.FileMenu.btnExitCaption": "Quitter", + "DE.Views.FileMenu.btnExitCaption": "Fermer", "DE.Views.FileMenu.btnFileOpenCaption": "Ouvrir...", "DE.Views.FileMenu.btnHelpCaption": "Aide...", "DE.Views.FileMenu.btnHistoryCaption": "Historique des versions", @@ -2136,8 +2118,9 @@ "DE.Views.Navigation.txtDemote": "Dégrader", "DE.Views.Navigation.txtEmpty": "Aucune entrée de table des matières trouvée.
L'application d'un style de titre sur une sélection de texte permettra l'affichage dans la table des matières. ", "DE.Views.Navigation.txtEmptyItem": "En-tête vide", + "DE.Views.Navigation.txtEmptyViewer": "Aucune entrée de table des matières trouvée.", "DE.Views.Navigation.txtExpand": "Développer tout", - "DE.Views.Navigation.txtExpandToLevel": "Décomprimer jusqu'au niveau", + "DE.Views.Navigation.txtExpandToLevel": "Développer jusqu'au niveau", "DE.Views.Navigation.txtHeadingAfter": "Nouvel en-tête après", "DE.Views.Navigation.txtHeadingBefore": "Nouvel en-tête avant", "DE.Views.Navigation.txtNewHeading": "Nouveau sous-titre", @@ -2691,7 +2674,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US normale", "DE.Views.Toolbar.textMarginsWide": "Large", - "DE.Views.Toolbar.textNewColor": "Ajouter une nouvelle couleur personnalisée", + "DE.Views.Toolbar.textNewColor": "Couleur personnalisée", "DE.Views.Toolbar.textNextPage": "Page suivante", "DE.Views.Toolbar.textNoHighlight": "Pas de surbrillance ", "DE.Views.Toolbar.textNone": "Aucune", @@ -2725,7 +2708,7 @@ "DE.Views.Toolbar.textTabLinks": "Références", "DE.Views.Toolbar.textTabProtect": "Protection", "DE.Views.Toolbar.textTabReview": "Révision", - "DE.Views.Toolbar.textTabView": "Afficher", + "DE.Views.Toolbar.textTabView": "Affichage", "DE.Views.Toolbar.textTitleError": "Erreur", "DE.Views.Toolbar.textToCurrent": "À la position actuelle", "DE.Views.Toolbar.textTop": "En haut: ", @@ -2771,7 +2754,18 @@ "DE.Views.Toolbar.tipLineSpace": "Interligne du paragraphe", "DE.Views.Toolbar.tipMailRecepients": "Fusion et publipostage", "DE.Views.Toolbar.tipMarkers": "Puces", + "DE.Views.Toolbar.tipMarkersArrow": "Puces fléchées", + "DE.Views.Toolbar.tipMarkersCheckmark": "Puces coches", + "DE.Views.Toolbar.tipMarkersDash": "Tirets", + "DE.Views.Toolbar.tipMarkersFRhombus": "Losanges remplis", + "DE.Views.Toolbar.tipMarkersFRound": "Puces arrondies remplies", + "DE.Views.Toolbar.tipMarkersFSquare": "Puces carrées remplies", + "DE.Views.Toolbar.tipMarkersHRound": "Puces rondes vides", + "DE.Views.Toolbar.tipMarkersStar": "Puces en étoile", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Puces numérotées à plusieurs niveaux", "DE.Views.Toolbar.tipMultilevels": "Liste multiniveau", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Puces de symboles à plusieurs niveaux", + "DE.Views.Toolbar.tipMultiLevelVarious": "Puces numérotées à plusieurs niveaux", "DE.Views.Toolbar.tipNumbers": "Numérotation", "DE.Views.Toolbar.tipPageBreak": "Insérer un saut de page ou de section", "DE.Views.Toolbar.tipPageMargins": "Marges de la page", diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json index fbe4e2b4b..0932f72a1 100644 --- a/apps/documenteditor/main/locale/gl.json +++ b/apps/documenteditor/main/locale/gl.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crear unha copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Engadir nova cor personalizada", + "Common.UI.ButtonColored.textNewColor": "Nova cor personalizada", "Common.UI.Calendar.textApril": "Abril", "Common.UI.Calendar.textAugust": "Agosto", "Common.UI.Calendar.textDecember": "Decembro", @@ -916,17 +916,6 @@ "DE.Controllers.Toolbar.textSymbols": "Símbolos", "DE.Controllers.Toolbar.textTabForms": "Formularios", "DE.Controllers.Toolbar.textWarning": "Aviso", - "DE.Controllers.Toolbar.tipMarkersArrow": "Botóns das frechas", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", - "DE.Controllers.Toolbar.tipMarkersDash": "Viñetas guión", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Rombos recheos", - "DE.Controllers.Toolbar.tipMarkersFRound": "Viñetas redondas recheas", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Viñetas cadradas recheas", - "DE.Controllers.Toolbar.tipMarkersHRound": "Viñetas redondas ocas", - "DE.Controllers.Toolbar.tipMarkersStar": "Viñetas de estrela", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Viñetas numeradas de varios niveles", "DE.Controllers.Toolbar.txtAccent_Accent": "Agudo", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Frecha superior dereita e esquerda", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Frecha superior esquerda", @@ -1527,14 +1516,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Actualizar a táboa de contido", "DE.Views.DocumentHolder.textWrap": "Axuste do texto", "DE.Views.DocumentHolder.tipIsLocked": "Este elemento está sendo actualmente editado por outro usuario.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Botóns das frechas", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Viñetas de marca de verificación", - "DE.Views.DocumentHolder.tipMarkersDash": "Viñetas guión", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Rombos recheos", - "DE.Views.DocumentHolder.tipMarkersFRound": "Viñetas redondas recheas", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cadradas recheas", - "DE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas ocas", - "DE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrela", "DE.Views.DocumentHolder.toDictionaryText": "Engadir ao Dicionario", "DE.Views.DocumentHolder.txtAddBottom": "Engadir bordo inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Engadir barra de fracción", @@ -2132,6 +2113,7 @@ "DE.Views.Navigation.txtDemote": "Degradar", "DE.Views.Navigation.txtEmpty": "Non hai títulos no documento.
Aplique un estilo do título ao texto para que apareza na táboa de contido.", "DE.Views.Navigation.txtEmptyItem": "Cabeceira vacía", + "DE.Views.Navigation.txtEmptyViewer": "Non hai títulos no documento.", "DE.Views.Navigation.txtExpand": "Expandir todo", "DE.Views.Navigation.txtExpandToLevel": "Expandir a nivel", "DE.Views.Navigation.txtHeadingAfter": "Novo título despois", @@ -2685,7 +2667,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Amplo", - "DE.Views.Toolbar.textNewColor": "Engadir nova cor personalizada", + "DE.Views.Toolbar.textNewColor": "Nova cor personalizada", "DE.Views.Toolbar.textNextPage": "Seguinte páxina", "DE.Views.Toolbar.textNoHighlight": "Non realzar", "DE.Views.Toolbar.textNone": "Ningún", @@ -2765,7 +2747,18 @@ "DE.Views.Toolbar.tipLineSpace": "Espazo da liña do parágrafo", "DE.Views.Toolbar.tipMailRecepients": "Combinación da Correspondencia", "DE.Views.Toolbar.tipMarkers": "Viñetas", + "DE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha", + "DE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", + "DE.Views.Toolbar.tipMarkersDash": "Viñetas guión", + "DE.Views.Toolbar.tipMarkersFRhombus": "Rombos recheos", + "DE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas recheas", + "DE.Views.Toolbar.tipMarkersFSquare": "Viñetas cadradas recheas", + "DE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas ocas", + "DE.Views.Toolbar.tipMarkersStar": "Viñetas de estrela", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Viñetas numeradas de varios niveles", "DE.Views.Toolbar.tipMultilevels": "Contorno", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Viñetas de símbolos de varios niveles", + "DE.Views.Toolbar.tipMultiLevelVarious": "Viñetas numeradas de varios niveles", "DE.Views.Toolbar.tipNumbers": "Numeración", "DE.Views.Toolbar.tipPageBreak": "Inserir páxina ou salto de sección", "DE.Views.Toolbar.tipPageMargins": "Marxes da páxina", diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index a181e63bc..408602ea3 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatikus felsorolásos listák", "Common.Views.AutoCorrectDialog.textBy": "Által", "Common.Views.AutoCorrectDialog.textDelete": "Törlés", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Pont hozzáadása dupla szóközzel", "Common.Views.AutoCorrectDialog.textFLCells": "A táblázat celláinak első betűje nagybetű legyen", "Common.Views.AutoCorrectDialog.textFLSentence": "A mondatok nagy betűvel kezdődjenek", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet és hálózati utak hiperhivatkozásokkal", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "A dokumentumot az új formátumba menti. Ez lehetővé teszi az összes szerkesztő funkció használatát, de befolyásolhatja a dokumentum elrendezését.
Ha a fájlokat kompatibilissá szeretné tenni a régebbi MS Word verziókkal, akkor használja a speciális beállítások 'Kompatibilitás' opcióját.", "DE.Controllers.LeftMenu.txtUntitled": "Névtelen", "DE.Controllers.LeftMenu.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
Biztos benne, hogy folytatni akarja?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "A(z) {0} szerkeszthető formátumra lesz konvertálva. Ez eltarthat egy ideig. Az eredményül kapott dokumentumot úgy optimalizáljuk, hogy lehetővé tegye a szöveg szerkesztését, így előfordulhat, hogy nem úgy néz ki, mint az eredeti {0}, különösen, ha az eredeti fájl sok grafikát tartalmazott.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Ha ebbe a formátumba ment, a bizonyos formázási elemek elveszhetnek.
Biztos benne, hogy folytatni akarja?", "DE.Controllers.Main.applyChangesTextText": "Módosítások betöltése...", "DE.Controllers.Main.applyChangesTitleText": "Módosítások betöltése", @@ -916,17 +918,6 @@ "DE.Controllers.Toolbar.textSymbols": "Szimbólumok", "DE.Controllers.Toolbar.textTabForms": "Űrlapok", "DE.Controllers.Toolbar.textWarning": "Figyelmeztetés", - "DE.Controllers.Toolbar.tipMarkersArrow": "Nyíl felsorolásjelek", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek", - "DE.Controllers.Toolbar.tipMarkersDash": "Kötőjel felsorolásjelek", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek", - "DE.Controllers.Toolbar.tipMarkersFRound": "Tömör kör felsorolásjelek", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Tömör szögletes felsorolásjelek", - "DE.Controllers.Toolbar.tipMarkersHRound": "Üreges kör felsorolásjelek", - "DE.Controllers.Toolbar.tipMarkersStar": "Csillag felsorolásjelek", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Többszintű számozott felsorolásjelek", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Többszintű szimbólum felsorolásjelek", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Többszintű különféle számozott felsorolásjelek", "DE.Controllers.Toolbar.txtAccent_Accent": "Akut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Jobbra-balra nyíl fent", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Balra mutató nyíl fent", @@ -1460,6 +1451,7 @@ "DE.Views.DocumentHolder.strSign": "Aláír", "DE.Views.DocumentHolder.styleText": "Formázás stílusként", "DE.Views.DocumentHolder.tableText": "Táblázat", + "DE.Views.DocumentHolder.textAccept": "Változtatás elfogadása", "DE.Views.DocumentHolder.textAlign": "Rendez", "DE.Views.DocumentHolder.textArrange": "Elrendez", "DE.Views.DocumentHolder.textArrangeBack": "Háttérbe küld", @@ -1494,6 +1486,7 @@ "DE.Views.DocumentHolder.textPaste": "Beilleszt", "DE.Views.DocumentHolder.textPrevPage": "Előző oldal", "DE.Views.DocumentHolder.textRefreshField": "Mező frissítése", + "DE.Views.DocumentHolder.textReject": "Változtatás elvetése", "DE.Views.DocumentHolder.textRemCheckBox": "Jelölőnégyzet eltávolítása", "DE.Views.DocumentHolder.textRemComboBox": "Legördülő eltávolítása", "DE.Views.DocumentHolder.textRemDropdown": "Legördülő eltávolítása", @@ -1527,14 +1520,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Tartalomjegyzék frissítése", "DE.Views.DocumentHolder.textWrap": "Tördelés stílus", "DE.Views.DocumentHolder.tipIsLocked": "Ezt az elemet jelenleg egy másik felhasználó szerkeszti.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Nyíl felsorolásjelek", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek", - "DE.Views.DocumentHolder.tipMarkersDash": "Kötőjel felsorolásjelek", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek", - "DE.Views.DocumentHolder.tipMarkersFRound": "Tömör kör felsorolásjelek", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Tömör szögletes felsorolásjelek", - "DE.Views.DocumentHolder.tipMarkersHRound": "Üreges kör felsorolásjelek", - "DE.Views.DocumentHolder.tipMarkersStar": "Csillag felsorolásjelek", "DE.Views.DocumentHolder.toDictionaryText": "Hozzáadás a szótárhoz", "DE.Views.DocumentHolder.txtAddBottom": "Alsó szegély hozzáadása", "DE.Views.DocumentHolder.txtAddFractionBar": "Törtjel hozzáadása", @@ -2132,6 +2117,7 @@ "DE.Views.Navigation.txtDemote": "Lefokoz", "DE.Views.Navigation.txtEmpty": "Nincsenek címsorok a dokumentumban.
Vigyen fel egy fejlécstílust a szövegre, hogy az megjelenjen a tartalomjegyzékben.", "DE.Views.Navigation.txtEmptyItem": "Üres fejléc", + "DE.Views.Navigation.txtEmptyViewer": "Nincsenek címsorok a dokumentumban.", "DE.Views.Navigation.txtExpand": "Összes kibontása", "DE.Views.Navigation.txtExpandToLevel": "Szintig kibont", "DE.Views.Navigation.txtHeadingAfter": "Új címsor utána", @@ -2378,6 +2364,8 @@ "DE.Views.Statusbar.pageIndexText": "{0}. / {1} oldal", "DE.Views.Statusbar.tipFitPage": "Oldalhoz igazít", "DE.Views.Statusbar.tipFitWidth": "Szélességhez igazít", + "DE.Views.Statusbar.tipHandTool": "Kéz eszköz", + "DE.Views.Statusbar.tipSelectTool": "Eszköz kiválasztása", "DE.Views.Statusbar.tipSetLang": "Szöveg nyelvének beállítása", "DE.Views.Statusbar.tipZoomFactor": "Nagyítás", "DE.Views.Statusbar.tipZoomIn": "Nagyítás", @@ -2765,7 +2753,18 @@ "DE.Views.Toolbar.tipLineSpace": "Bekezdés sortávolság", "DE.Views.Toolbar.tipMailRecepients": "E-mail összevonás", "DE.Views.Toolbar.tipMarkers": "Felsorolás", + "DE.Views.Toolbar.tipMarkersArrow": "Nyíl felsorolásjelek", + "DE.Views.Toolbar.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek", + "DE.Views.Toolbar.tipMarkersDash": "Kötőjel felsorolásjelek", + "DE.Views.Toolbar.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek", + "DE.Views.Toolbar.tipMarkersFRound": "Tömör kör felsorolásjelek", + "DE.Views.Toolbar.tipMarkersFSquare": "Tömör szögletes felsorolásjelek", + "DE.Views.Toolbar.tipMarkersHRound": "Üreges kör felsorolásjelek", + "DE.Views.Toolbar.tipMarkersStar": "Csillag felsorolásjelek", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Többszintű számozott felsorolásjelek", "DE.Views.Toolbar.tipMultilevels": "Többszintű lista", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Többszintű szimbólum felsorolásjelek", + "DE.Views.Toolbar.tipMultiLevelVarious": "Többszintű különféle számozott felsorolásjelek", "DE.Views.Toolbar.tipNumbers": "Számozás", "DE.Views.Toolbar.tipPageBreak": "Oldal vagy szakasztörés beszúrása", "DE.Views.Toolbar.tipPageMargins": "Oldal margók", diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index 31dfeedb8..db551b104 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -1,85 +1,164 @@ { - "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", + "Common.Controllers.Chat.notcriticalErrorTitle": "Peringatan", "Common.Controllers.Chat.textEnterMessage": "Tuliskan pesan Anda di sini", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonim", "Common.Controllers.ExternalDiagramEditor.textClose": "Tutup", "Common.Controllers.ExternalDiagramEditor.warningText": "Obyek dinonaktifkan karena sedang diedit oleh pengguna lain.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Peringatan", - "Common.Controllers.ExternalMergeEditor.textAnonymous": "Anonymous", - "Common.Controllers.ExternalMergeEditor.textClose": "Close", - "Common.Controllers.ExternalMergeEditor.warningText": "The object is disabled because it is being edited by another user.", - "Common.Controllers.ExternalMergeEditor.warningTitle": "Warning", - "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.ExternalMergeEditor.textAnonymous": "Anonim", + "Common.Controllers.ExternalMergeEditor.textClose": "Tutup", + "Common.Controllers.ExternalMergeEditor.warningText": "Obyek dinonaktifkan karena sedang diedit oleh pengguna lain.", + "Common.Controllers.ExternalMergeEditor.warningTitle": "Peringatan", + "Common.Controllers.History.notcriticalErrorTitle": "Peringatan", + "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Untuk membandingkan dokumen, semua perubahan yang ada akan dianggap sudah disetujui. Apakah Anda ingin melanjutkan?", "Common.Controllers.ReviewChanges.textAtLeast": "sekurang-kurangnya", - "Common.Controllers.ReviewChanges.textAuto": "auto", + "Common.Controllers.ReviewChanges.textAuto": "otomatis", "Common.Controllers.ReviewChanges.textBaseline": "Baseline", - "Common.Controllers.ReviewChanges.textBold": "Bold", - "Common.Controllers.ReviewChanges.textBreakBefore": "Page break before", - "Common.Controllers.ReviewChanges.textCaps": "All caps", - "Common.Controllers.ReviewChanges.textCenter": "Align center", - "Common.Controllers.ReviewChanges.textChart": "Chart", - "Common.Controllers.ReviewChanges.textColor": "Font color", - "Common.Controllers.ReviewChanges.textContextual": "Don't add interval between paragraphs of the same style", - "Common.Controllers.ReviewChanges.textDeleted": "Deleted:", - "Common.Controllers.ReviewChanges.textDStrikeout": "Double strikeout", - "Common.Controllers.ReviewChanges.textEquation": "Equation", + "Common.Controllers.ReviewChanges.textBold": "Tebal", + "Common.Controllers.ReviewChanges.textBreakBefore": "Jeda halaman sebelum", + "Common.Controllers.ReviewChanges.textCaps": "Semua caps", + "Common.Controllers.ReviewChanges.textCenter": "Sejajar tengah", + "Common.Controllers.ReviewChanges.textChar": "Level karakter", + "Common.Controllers.ReviewChanges.textChart": "Grafik", + "Common.Controllers.ReviewChanges.textColor": "Warna Huruf", + "Common.Controllers.ReviewChanges.textContextual": "Jangan tambahkan interval antar paragraf dengan model yang sama", + "Common.Controllers.ReviewChanges.textDeleted": "Dihapus:", + "Common.Controllers.ReviewChanges.textDStrikeout": "Garis coret ganda", + "Common.Controllers.ReviewChanges.textEquation": "Persamaan", "Common.Controllers.ReviewChanges.textExact": "persis", "Common.Controllers.ReviewChanges.textFirstLine": "Baris Pertama", - "Common.Controllers.ReviewChanges.textFontSize": "Font size", - "Common.Controllers.ReviewChanges.textFormatted": "Formatted", - "Common.Controllers.ReviewChanges.textHighlight": "Highlight color", + "Common.Controllers.ReviewChanges.textFontSize": "Ukuran Huruf", + "Common.Controllers.ReviewChanges.textFormatted": "Diformat", + "Common.Controllers.ReviewChanges.textHighlight": "Warna Sorot", "Common.Controllers.ReviewChanges.textImage": "Gambar", - "Common.Controllers.ReviewChanges.textIndentLeft": "Indent left", - "Common.Controllers.ReviewChanges.textIndentRight": "Indent right", - "Common.Controllers.ReviewChanges.textInserted": "Inserted:", - "Common.Controllers.ReviewChanges.textItalic": "Italic", - "Common.Controllers.ReviewChanges.textJustify": "Align justify", - "Common.Controllers.ReviewChanges.textKeepLines": "Keep lines together", - "Common.Controllers.ReviewChanges.textKeepNext": "Keep with next", - "Common.Controllers.ReviewChanges.textLeft": "Align left", - "Common.Controllers.ReviewChanges.textLineSpacing": "Spasi Antar Baris: ", - "Common.Controllers.ReviewChanges.textMultiple": "multiple", - "Common.Controllers.ReviewChanges.textNoBreakBefore": "No page break before", + "Common.Controllers.ReviewChanges.textIndentLeft": "Indent kiri", + "Common.Controllers.ReviewChanges.textIndentRight": "Indent kanan", + "Common.Controllers.ReviewChanges.textInserted": "Disisipkan:", + "Common.Controllers.ReviewChanges.textItalic": "Miring", + "Common.Controllers.ReviewChanges.textJustify": "Rata", + "Common.Controllers.ReviewChanges.textKeepLines": "Pertahankan garis bersama", + "Common.Controllers.ReviewChanges.textKeepNext": "Satukan dengan berikutnya", + "Common.Controllers.ReviewChanges.textLeft": "Sejajar kiri", + "Common.Controllers.ReviewChanges.textLineSpacing": "Spasi Antar Baris:", + "Common.Controllers.ReviewChanges.textMultiple": "banyak", + "Common.Controllers.ReviewChanges.textNoBreakBefore": "Tanpa break halaman sebelum", "Common.Controllers.ReviewChanges.textNoContextual": "Tambah jarak diantara", - "Common.Controllers.ReviewChanges.textNoKeepLines": "Don't keep lines together", - "Common.Controllers.ReviewChanges.textNoKeepNext": "Don't keep with next", - "Common.Controllers.ReviewChanges.textNot": "Not ", - "Common.Controllers.ReviewChanges.textNoWidow": "No widow control", - "Common.Controllers.ReviewChanges.textNum": "Change numbering", - "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraph Deleted", - "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted", - "Common.Controllers.ReviewChanges.textParaInserted": "Paragraph Inserted", - "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Pindah ke bawah", - "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Pindah ke atas", - "Common.Controllers.ReviewChanges.textParaMoveTo": "Pindah", - "Common.Controllers.ReviewChanges.textPosition": "Position", - "Common.Controllers.ReviewChanges.textRight": "Align right", - "Common.Controllers.ReviewChanges.textShape": "Shape", - "Common.Controllers.ReviewChanges.textShd": "Background color", - "Common.Controllers.ReviewChanges.textSmallCaps": "Small caps", - "Common.Controllers.ReviewChanges.textSpacing": "Spacing", - "Common.Controllers.ReviewChanges.textSpacingAfter": "Spacing after", - "Common.Controllers.ReviewChanges.textSpacingBefore": "Spacing before", - "Common.Controllers.ReviewChanges.textStrikeout": "Strikeout", - "Common.Controllers.ReviewChanges.textSubScript": "Subscript", - "Common.Controllers.ReviewChanges.textSuperScript": "Superscript", + "Common.Controllers.ReviewChanges.textNoKeepLines": "Jangan satukan garis", + "Common.Controllers.ReviewChanges.textNoKeepNext": "Jangan satukan dengan berikutnya", + "Common.Controllers.ReviewChanges.textNot": "Tidak ", + "Common.Controllers.ReviewChanges.textNoWidow": "Tanpa kontrol widow", + "Common.Controllers.ReviewChanges.textNum": "Ganti penomoran", + "Common.Controllers.ReviewChanges.textOff": "{0} tidak lagi menggunakan Lacak Perubahan.", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} menonaktifkan Lacak Perubahan untuk semua.", + "Common.Controllers.ReviewChanges.textOn": "{0} sedang menggunakan Lacak Perubahan.", + "Common.Controllers.ReviewChanges.textOnGlobal": "{0} mengaktifkan Lacak Perubahan untuk semua.", + "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraf Dihapus", + "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraf Diformat", + "Common.Controllers.ReviewChanges.textParaInserted": "Paragraf Disisipkan", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Pindah ke bawah:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Pindah ke atas:", + "Common.Controllers.ReviewChanges.textParaMoveTo": "Pindah:", + "Common.Controllers.ReviewChanges.textPosition": "Posisi", + "Common.Controllers.ReviewChanges.textRight": "Rata kanan", + "Common.Controllers.ReviewChanges.textShape": "Bentuk", + "Common.Controllers.ReviewChanges.textShd": "Warna latar", + "Common.Controllers.ReviewChanges.textShow": "Tampilkan perubahan pada", + "Common.Controllers.ReviewChanges.textSmallCaps": "Huruf Ukuran Kecil", + "Common.Controllers.ReviewChanges.textSpacing": "Spasi", + "Common.Controllers.ReviewChanges.textSpacingAfter": "Spacing setelah", + "Common.Controllers.ReviewChanges.textSpacingBefore": "Spacing sebelum", + "Common.Controllers.ReviewChanges.textStrikeout": "Coret ganda", + "Common.Controllers.ReviewChanges.textSubScript": "Subskrip", + "Common.Controllers.ReviewChanges.textSuperScript": "Superskrip", "Common.Controllers.ReviewChanges.textTableChanged": "Setelan tabel", "Common.Controllers.ReviewChanges.textTableRowsAdd": "Baris tabel ditambah", "Common.Controllers.ReviewChanges.textTableRowsDel": "Baris Tabel dihapus", - "Common.Controllers.ReviewChanges.textTabs": "Change tabs", - "Common.Controllers.ReviewChanges.textUnderline": "Underline", - "Common.Controllers.ReviewChanges.textWidow": "Widow control", + "Common.Controllers.ReviewChanges.textTabs": "Ganti tab", + "Common.Controllers.ReviewChanges.textTitleComparison": "Pengaturan Perbandingan", + "Common.Controllers.ReviewChanges.textUnderline": "Garis bawah", + "Common.Controllers.ReviewChanges.textUrl": "Paste URL dokumen", + "Common.Controllers.ReviewChanges.textWidow": "Kontrol widow", + "Common.Controllers.ReviewChanges.textWord": "Level word", + "Common.define.chartData.textArea": "Area", + "Common.define.chartData.textAreaStacked": "Area yang ditumpuk", + "Common.define.chartData.textAreaStackedPer": "Area bertumpuk 100%", "Common.define.chartData.textBar": "Palang", + "Common.define.chartData.textBarNormal": "Grafik kolom klaster", + "Common.define.chartData.textBarNormal3d": "Kolom cluster 3-D", + "Common.define.chartData.textBarNormal3dPerspective": "Kolom 3-D", + "Common.define.chartData.textBarStacked": "Diagram kolom bertumpuk", + "Common.define.chartData.textBarStacked3d": "Kolom bertumpuk 3-D", + "Common.define.chartData.textBarStackedPer": "Kolom bertumpuk 100%", + "Common.define.chartData.textBarStackedPer3d": "Kolom bertumpuk 100% 3-D", "Common.define.chartData.textCharts": "Bagan", "Common.define.chartData.textColumn": "Kolom", + "Common.define.chartData.textCombo": "Combo", + "Common.define.chartData.textComboAreaBar": "Area yang ditumpuk - kolom klaster", + "Common.define.chartData.textComboBarLine": "Grafik kolom klaster - garis", + "Common.define.chartData.textComboBarLineSecondary": "Grafik kolom klaster - garis pada sumbu sekunder", + "Common.define.chartData.textComboCustom": "Custom kombinasi", + "Common.define.chartData.textDoughnut": "Doughnut", + "Common.define.chartData.textHBarNormal": "Grafik batang klaster", + "Common.define.chartData.textHBarNormal3d": "Diagram Batang Cluster 3-D", + "Common.define.chartData.textHBarStacked": "Diagram batang bertumpuk", + "Common.define.chartData.textHBarStacked3d": "Diagram batang bertumpuk 3-D", + "Common.define.chartData.textHBarStackedPer": "Diagram batang bertumpuk 100%", + "Common.define.chartData.textHBarStackedPer3d": "Diagram batang bertumpuk 100% 3-D", "Common.define.chartData.textLine": "Garis", + "Common.define.chartData.textLine3d": "Garis 3-D", + "Common.define.chartData.textLineMarker": "Garis dengan tanda", + "Common.define.chartData.textLineStacked": "Diagram garis bertumpuk", + "Common.define.chartData.textLineStackedMarker": "Diagram garis bertumpuk dengan marker", + "Common.define.chartData.textLineStackedPer": "Garis bertumpuk 100%", + "Common.define.chartData.textLineStackedPerMarker": "Garis bertumpuk 100% dengan marker", "Common.define.chartData.textPie": "Diagram Lingkaran", + "Common.define.chartData.textPie3d": "Pie 3-D", + "Common.define.chartData.textPoint": "XY (Scatter)", + "Common.define.chartData.textScatter": "Sebar", + "Common.define.chartData.textScatterLine": "Diagram sebar dengan garis lurus", + "Common.define.chartData.textScatterLineMarker": "Diagram sebar dengan garis lurus dan marker", + "Common.define.chartData.textScatterSmooth": "Diagram sebar dengan garis mulus", + "Common.define.chartData.textScatterSmoothMarker": "Diagram sebar dengan garis mulus dan marker", "Common.define.chartData.textStock": "Diagram Garis", + "Common.define.chartData.textSurface": "Permukaan", + "Common.Translation.warnFileLocked": "Anda tidak bisa edit file ini karena sedang di edit di aplikasi lain.", "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", + "Common.Translation.warnFileLockedBtnView": "Buka untuk dilihat", "Common.UI.ButtonColored.textAutoColor": "Otomatis", "Common.UI.ButtonColored.textNewColor": "Tambahkan warna khusus baru", - "Common.UI.Calendar.textMonths": "bulan", - "Common.UI.Calendar.textYears": "tahun", + "Common.UI.Calendar.textApril": "April", + "Common.UI.Calendar.textAugust": "Agustus", + "Common.UI.Calendar.textDecember": "Desember", + "Common.UI.Calendar.textFebruary": "Februari", + "Common.UI.Calendar.textJanuary": "Januari", + "Common.UI.Calendar.textJuly": "Juli", + "Common.UI.Calendar.textJune": "Juni", + "Common.UI.Calendar.textMarch": "Maret", + "Common.UI.Calendar.textMay": "Mei", + "Common.UI.Calendar.textMonths": "Bulan", + "Common.UI.Calendar.textNovember": "November", + "Common.UI.Calendar.textOctober": "Oktober", + "Common.UI.Calendar.textSeptember": "September", + "Common.UI.Calendar.textShortApril": "Apr", + "Common.UI.Calendar.textShortAugust": "Ags", + "Common.UI.Calendar.textShortDecember": "Des", + "Common.UI.Calendar.textShortFebruary": "Feb", + "Common.UI.Calendar.textShortFriday": "Jum", + "Common.UI.Calendar.textShortJanuary": "Jan", + "Common.UI.Calendar.textShortJuly": "Jul", + "Common.UI.Calendar.textShortJune": "Jun", + "Common.UI.Calendar.textShortMarch": "Mar", + "Common.UI.Calendar.textShortMay": "Mei", + "Common.UI.Calendar.textShortMonday": "Sen", + "Common.UI.Calendar.textShortNovember": "Nov", + "Common.UI.Calendar.textShortOctober": "Okt", + "Common.UI.Calendar.textShortSaturday": "Sab", + "Common.UI.Calendar.textShortSeptember": "Sep", + "Common.UI.Calendar.textShortSunday": "Min", + "Common.UI.Calendar.textShortThursday": "Ka", + "Common.UI.Calendar.textShortTuesday": "Sel", + "Common.UI.Calendar.textShortWednesday": "Rab", + "Common.UI.Calendar.textYears": "Tahun", "Common.UI.ComboBorderSize.txtNoBorders": "Tidak ada pembatas", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Tidak ada pembatas", "Common.UI.ComboDataView.emptyComboText": "Tidak ada model", @@ -89,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Baru", "Common.UI.ExtendedColorDialog.textRGBErr": "Input yang Anda masukkan salah.
Silakan masukkan input numerik antara 0 dan 255.", "Common.UI.HSBColorPicker.textNoColor": "Tidak ada Warna", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan password", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tampilkan password", "Common.UI.SearchDialog.textHighlight": "Sorot hasil", "Common.UI.SearchDialog.textMatchCase": "Harus sama persis", "Common.UI.SearchDialog.textReplaceDef": "Tuliskan teks pengganti", @@ -96,53 +177,91 @@ "Common.UI.SearchDialog.textTitle": "Cari dan Ganti", "Common.UI.SearchDialog.textTitle2": "Cari", "Common.UI.SearchDialog.textWholeWords": "Seluruh kata saja", + "Common.UI.SearchDialog.txtBtnHideReplace": "Sembunyikan Replace", "Common.UI.SearchDialog.txtBtnReplace": "Ganti", "Common.UI.SearchDialog.txtBtnReplaceAll": "Ganti Semua", "Common.UI.SynchronizeTip.textDontShow": "Jangan tampilkan pesan ini lagi", "Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah diubah oleh pengguna lain.
Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.", "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standar", "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", + "Common.UI.Themes.txtThemeClassicLight": "Terang Klasik", + "Common.UI.Themes.txtThemeDark": "Gelap", + "Common.UI.Themes.txtThemeLight": "Cerah", "Common.UI.Window.cancelButtonText": "Batalkan", "Common.UI.Window.closeButtonText": "Tutup", "Common.UI.Window.noButtonText": "Tidak", "Common.UI.Window.okButtonText": "OK", "Common.UI.Window.textConfirmation": "Konfirmasi", - "Common.UI.Window.textDontShow": "Don't show this message again", - "Common.UI.Window.textError": "Error", + "Common.UI.Window.textDontShow": "Jangan tampilkan pesan ini lagi", + "Common.UI.Window.textError": "Kesalahan", "Common.UI.Window.textInformation": "Informasi", "Common.UI.Window.textWarning": "Peringatan", "Common.UI.Window.yesButtonText": "Ya", - "Common.Views.About.txtAddress": "alamat:", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "alamat: ", "Common.Views.About.txtLicensee": "PEMEGANG LISENSI", "Common.Views.About.txtLicensor": "PEMBERI LISENSI", - "Common.Views.About.txtMail": "email:", + "Common.Views.About.txtMail": "email: ", "Common.Views.About.txtPoweredBy": "Powered by", - "Common.Views.About.txtTel": "tel:", - "Common.Views.About.txtVersion": "Versi", + "Common.Views.About.txtTel": "tel: ", + "Common.Views.About.txtVersion": "Versi ", "Common.Views.AutoCorrectDialog.textAdd": "Tambahkan", + "Common.Views.AutoCorrectDialog.textApplyText": "Terapkan Sesuai yang Anda Tulis", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoKoreksi Teks", + "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat Sesuai yang Anda Mau", + "Common.Views.AutoCorrectDialog.textBulleted": "Butir list otomatis", "Common.Views.AutoCorrectDialog.textBy": "oleh", "Common.Views.AutoCorrectDialog.textDelete": "Hapus", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Tambahkan titik dengan spasi ganda", + "Common.Views.AutoCorrectDialog.textFLCells": "Besarkan huruf pertama di sel tabel", + "Common.Views.AutoCorrectDialog.textFLSentence": "Besarkan huruf pertama di kalimat", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet dan jalur jaringan dengan hyperlink.", + "Common.Views.AutoCorrectDialog.textHyphens": "Hyphens (--) dengan garis putus-putus (—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "AutoCorrect Matematika", + "Common.Views.AutoCorrectDialog.textNumbered": "Penomoran list otomatis", + "Common.Views.AutoCorrectDialog.textQuotes": "\"Straight quotes\" dengan \"smart quotes\"", + "Common.Views.AutoCorrectDialog.textRecognized": "Fungsi yang Diterima", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Ekspresi ini merupakan ekspresi matematika. Ekspresi ini tidak akan dimiringkan secara otomatis.", "Common.Views.AutoCorrectDialog.textReplace": "Ganti", + "Common.Views.AutoCorrectDialog.textReplaceText": "Ganti Saat Anda Mengetik", + "Common.Views.AutoCorrectDialog.textReplaceType": "Ganti teks saat Anda mengetik", "Common.Views.AutoCorrectDialog.textReset": "Atur ulang", "Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal", "Common.Views.AutoCorrectDialog.textRestore": "Pemulihan", + "Common.Views.AutoCorrectDialog.textTitle": "AutoCorrect", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Fungsi yang diterima harus memiliki huruf A sampai Z, huruf besar atau huruf kecil.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Semua ekspresi yang Anda tambahkan akan dihilangkan dan yang sudah terhapus akan dikembalikan. Apakah Anda ingin melanjutkan?", + "Common.Views.AutoCorrectDialog.warnReplace": "Entri autocorrect untuk %1 sudah ada. Apakah Anda ingin menggantinya?", + "Common.Views.AutoCorrectDialog.warnReset": "Semua autocorrect yang Anda tambahkan akan dihilangkan dan yang sudah diganti akan dikembalikan ke nilai awalnya. Apakah Anda ingin melanjutkan?", + "Common.Views.AutoCorrectDialog.warnRestore": "Entri autocorrect untuk %1 akan di reset ke nilai awal. Apakah Anda ingin melanjutkan?", "Common.Views.Chat.textSend": "Kirim", + "Common.Views.Comments.mniAuthorAsc": "Penulis A sampai Z", + "Common.Views.Comments.mniAuthorDesc": "Penulis Z sampai A", + "Common.Views.Comments.mniDateAsc": "Tertua", + "Common.Views.Comments.mniDateDesc": "Terbaru", + "Common.Views.Comments.mniFilterGroups": "Filter Berdasarkan Grup", + "Common.Views.Comments.mniPositionAsc": "Dari atas", + "Common.Views.Comments.mniPositionDesc": "Dari bawah", "Common.Views.Comments.textAdd": "Tambahkan", - "Common.Views.Comments.textAddComment": "Tambahkan", + "Common.Views.Comments.textAddComment": "Tambahkan Komentar", "Common.Views.Comments.textAddCommentToDoc": "Tambahkan Komentar untuk Dokumen", "Common.Views.Comments.textAddReply": "Tambahkan Balasan", "Common.Views.Comments.textAll": "Semua", "Common.Views.Comments.textAnonym": "Tamu", "Common.Views.Comments.textCancel": "Batalkan", "Common.Views.Comments.textClose": "Tutup", + "Common.Views.Comments.textClosePanel": "Tutup komentar", "Common.Views.Comments.textComments": "Komentar", - "Common.Views.Comments.textEdit": "Edit", + "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Tuliskan komentar Anda di sini", "Common.Views.Comments.textHintAddComment": "Tambahkan komentar", "Common.Views.Comments.textOpenAgain": "Buka Lagi", "Common.Views.Comments.textReply": "Balas", "Common.Views.Comments.textResolve": "Selesaikan", "Common.Views.Comments.textResolved": "Diselesaikan", + "Common.Views.Comments.textSort": "Sortir komentar", + "Common.Views.Comments.textViewResolved": "Anda tidak memiliki izin membuka kembali komentar", "Common.Views.CopyWarningDialog.textDontShow": "Jangan tampilkan pesan ini lagi", "Common.Views.CopyWarningDialog.textMsg": "Langkah salin, potong dan tempel menggunakan tombol editor toolbar dan menu konteks dapat dilakukan hanya dengan tab editor ni saja.

Untuk menyalin atau menempel ke atau dari aplikasi di luar tab editor, gunakan kombinasi tombol keyboard berikut ini:", "Common.Views.CopyWarningDialog.textTitle": "Salin, Potong dan Tempel", @@ -154,23 +273,35 @@ "Common.Views.ExternalDiagramEditor.textClose": "Tutup", "Common.Views.ExternalDiagramEditor.textSave": "Simpan & Keluar", "Common.Views.ExternalDiagramEditor.textTitle": "Editor Bagan", - "Common.Views.ExternalMergeEditor.textClose": "Close", - "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", - "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", + "Common.Views.ExternalMergeEditor.textClose": "Tutup", + "Common.Views.ExternalMergeEditor.textSave": "Simpan & Keluar", + "Common.Views.ExternalMergeEditor.textTitle": "Merge Email Penerima", + "Common.Views.Header.labelCoUsersDescr": "User yang sedang edit file:", + "Common.Views.Header.textAddFavorite": "Tandai sebagai favorit", "Common.Views.Header.textAdvSettings": "Pengaturan Lanjut", "Common.Views.Header.textBack": "Buka Dokumen", + "Common.Views.Header.textCompactView": "Sembunyikan Toolbar", "Common.Views.Header.textHideLines": "Sembunyikan Mistar", "Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status", + "Common.Views.Header.textRemoveFavorite": "Hilangkan dari Favorit", "Common.Views.Header.textZoom": "Pembesaran", + "Common.Views.Header.tipAccessRights": "Atur perizinan akses dokumen", "Common.Views.Header.tipDownload": "Unduh File", + "Common.Views.Header.tipGoEdit": "Edit file saat ini", + "Common.Views.Header.tipPrint": "Print file", "Common.Views.Header.tipRedo": "Ulangi", "Common.Views.Header.tipSave": "Simpan", "Common.Views.Header.tipUndo": "Batalkan", "Common.Views.Header.tipViewSettings": "Lihat Pengaturan", + "Common.Views.Header.tipViewUsers": "Tampilkan user dan atur hak akses dokumen", "Common.Views.Header.txtAccessRights": "Ubah hak akses", "Common.Views.Header.txtRename": "Ganti nama", "Common.Views.History.textCloseHistory": "Tutup riwayat", + "Common.Views.History.textHide": "Collapse", + "Common.Views.History.textHideAll": "Sembunyikan detail perubahan", "Common.Views.History.textRestore": "Pemulihan", + "Common.Views.History.textShow": "Perluas", + "Common.Views.History.textShowAll": "Tampilkan detail perubahan", "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Tempel URL gambar:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Kolom ini harus diisi", @@ -183,98 +314,255 @@ "Common.Views.InsertTableDialog.txtTitle": "Ukuran Tabel", "Common.Views.InsertTableDialog.txtTitleSplit": "Pisahkan Sel", "Common.Views.LanguageDialog.labelSelect": "Pilih bahasa dokumen", - "Common.Views.OpenDialog.txtEncoding": "Encoding ", + "Common.Views.OpenDialog.closeButtonText": "Tutup File", + "Common.Views.OpenDialog.txtEncoding": "Enkoding ", + "Common.Views.OpenDialog.txtIncorrectPwd": "Password salah.", "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", "Common.Views.OpenDialog.txtPassword": "Kata Sandi", "Common.Views.OpenDialog.txtPreview": "Pratinjau", - "Common.Views.OpenDialog.txtTitle": "Choose %1 options", + "Common.Views.OpenDialog.txtProtected": "Jika Anda memasukkan password dan membuka file, password file saat ini akan di reset.", + "Common.Views.OpenDialog.txtTitle": "Pilih %1 opsi", + "Common.Views.OpenDialog.txtTitleProtected": "File yang Diproteksi", + "Common.Views.PasswordDialog.txtDescription": "Buat password untuk melindungi dokumen ini", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Password konfirmasi tidak sama", "Common.Views.PasswordDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtRepeat": "Ulangi password", "Common.Views.PasswordDialog.txtTitle": "Setel kata sandi", - "Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.PasswordDialog.txtWarning": "Peringatan: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.PluginDlg.textLoading": "Memuat", + "Common.Views.Plugins.groupCaption": "Plugins", + "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textLoading": "Memuat", "Common.Views.Plugins.textStart": "Mulai", + "Common.Views.Plugins.textStop": "Stop", + "Common.Views.Protection.hintAddPwd": "Enkripsi dengan password", + "Common.Views.Protection.hintPwd": "Ganti atau hapus password", + "Common.Views.Protection.hintSignature": "Tambah tanda tangan digital atau garis tanda tangan", + "Common.Views.Protection.txtAddPwd": "Tambah password", "Common.Views.Protection.txtChangePwd": "Ubah kata sandi", + "Common.Views.Protection.txtDeletePwd": "Nama file", + "Common.Views.Protection.txtEncrypt": "Enkripsi", + "Common.Views.Protection.txtInvisibleSignature": "Tambah tanda tangan digital", + "Common.Views.Protection.txtSignature": "Tanda Tangan", + "Common.Views.Protection.txtSignatureLine": "Tambah garis tanda tangan", "Common.Views.RenameDialog.textName": "Nama file", + "Common.Views.RenameDialog.txtInvalidName": "Nama file tidak boleh berisi karakter seperti: ", + "Common.Views.ReviewChanges.hintNext": "Ke perubahan berikutnya", + "Common.Views.ReviewChanges.hintPrev": "Ke perubahan sebelumnya", + "Common.Views.ReviewChanges.mniFromFile": "Dokumen dari File", + "Common.Views.ReviewChanges.mniFromStorage": "Dokumen dari Penyimpanan", + "Common.Views.ReviewChanges.mniFromUrl": "Dokumen dari URL", + "Common.Views.ReviewChanges.mniSettings": "Pengaturan Perbandingan", + "Common.Views.ReviewChanges.strFast": "Cepat", + "Common.Views.ReviewChanges.strFastDesc": "Co-editing real-time. Semua perubahan disimpan otomatis.", + "Common.Views.ReviewChanges.strStrict": "Strict", + "Common.Views.ReviewChanges.strStrictDesc": "Gunakan tombol 'Simpan' untuk sinkronisasi perubahan yang dibuat Anda dan orang lain.", "Common.Views.ReviewChanges.textEnable": "Aktifkan", + "Common.Views.ReviewChanges.textWarnTrackChanges": "Lacak Perubahan akan ON untuk semua user dengan akses penuh. Jika orang lain membuka doc di lain waktu, Lacak Perubahan tetap aktif.", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Aktifkan Lacak Perubahan untuk semua?", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Terima perubahan saat ini", + "Common.Views.ReviewChanges.tipCoAuthMode": "Atur mode co-editing", + "Common.Views.ReviewChanges.tipCommentRem": "Hilangkan komentar", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Hilangkan komentar saat ini", + "Common.Views.ReviewChanges.tipCommentResolve": "Selesaikan komentar", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Selesaikan komentar saat ini", + "Common.Views.ReviewChanges.tipCompare": "Bandingkan dokumen sekarang dengan yang lain", "Common.Views.ReviewChanges.tipHistory": "Tampilkan riwayat versi", + "Common.Views.ReviewChanges.tipRejectCurrent": "Tolak perubahan saat ini", + "Common.Views.ReviewChanges.tipReview": "Lacak perubahan", + "Common.Views.ReviewChanges.tipReviewView": "Pilih mode yang perubahannya ingin Anda tampilkan", "Common.Views.ReviewChanges.tipSetDocLang": "Atur Bahasa Dokumen", "Common.Views.ReviewChanges.tipSetSpelling": "Periksa Ejaan", - "Common.Views.ReviewChanges.txtAccept": "Accept", - "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", - "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes", - "Common.Views.ReviewChanges.txtClose": "Close", + "Common.Views.ReviewChanges.tipSharing": "Atur perizinan akses dokumen", + "Common.Views.ReviewChanges.txtAccept": "Terima", + "Common.Views.ReviewChanges.txtAcceptAll": "Terima semua perubahan", + "Common.Views.ReviewChanges.txtAcceptChanges": "Terima perubahan", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Terima Perubahan Saat Ini", + "Common.Views.ReviewChanges.txtChat": "Chat", + "Common.Views.ReviewChanges.txtClose": "Tutup", + "Common.Views.ReviewChanges.txtCoAuthMode": "Mode Edit Bersama", + "Common.Views.ReviewChanges.txtCommentRemAll": "Hilangkan Semua Komentar", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Hilangkan Komentar Saat Ini", + "Common.Views.ReviewChanges.txtCommentRemMy": "Hilangkan Komentar Saya", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Hilangkan Komentar Saya Saat Ini", "Common.Views.ReviewChanges.txtCommentRemove": "Hapus", "Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Selesaikan Semua Komentar", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Selesaikan Komentar Saat Ini", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Selesaikan Komentar Saya", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Selesaikan Komentar Saya Saat Ini", + "Common.Views.ReviewChanges.txtCompare": "Komparasi", "Common.Views.ReviewChanges.txtDocLang": "Bahasa", - "Common.Views.ReviewChanges.txtHistory": "Riwayat versi", - "Common.Views.ReviewChanges.txtNext": "To Next Change", - "Common.Views.ReviewChanges.txtPrev": "To Previous Change", + "Common.Views.ReviewChanges.txtEditing": "Editing", + "Common.Views.ReviewChanges.txtFinal": "Semua perubahan diterima {0}", + "Common.Views.ReviewChanges.txtFinalCap": "Final", + "Common.Views.ReviewChanges.txtHistory": "Riwayat Versi", + "Common.Views.ReviewChanges.txtMarkup": "Semua perubahan {0}", + "Common.Views.ReviewChanges.txtMarkupCap": "Markup dan balon", + "Common.Views.ReviewChanges.txtMarkupSimple": "Semua perubahan {0}
Tanpa balloons", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Hanya markup", + "Common.Views.ReviewChanges.txtNext": "Selanjutnya", + "Common.Views.ReviewChanges.txtOff": "OFF untuk saya", + "Common.Views.ReviewChanges.txtOffGlobal": "OFF untuk saya dan semuanya", + "Common.Views.ReviewChanges.txtOn": "ON untuk saya", + "Common.Views.ReviewChanges.txtOnGlobal": "ON untuk saya dan semuanya", + "Common.Views.ReviewChanges.txtOriginal": "Semua perubahan ditolak {0}", + "Common.Views.ReviewChanges.txtOriginalCap": "Original", + "Common.Views.ReviewChanges.txtPrev": "Sebelumnya", "Common.Views.ReviewChanges.txtPreview": "Pratinjau", - "Common.Views.ReviewChanges.txtReject": "Reject", - "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", - "Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes", + "Common.Views.ReviewChanges.txtReject": "Tolak", + "Common.Views.ReviewChanges.txtRejectAll": "Tolak Semua Perubahan", + "Common.Views.ReviewChanges.txtRejectChanges": "Tolak Perubahan", + "Common.Views.ReviewChanges.txtRejectCurrent": "Tolak Perubahan Saat Ini", + "Common.Views.ReviewChanges.txtSharing": "Bagikan", "Common.Views.ReviewChanges.txtSpelling": "Periksa Ejaan", + "Common.Views.ReviewChanges.txtTurnon": "Lacak Perubahan", + "Common.Views.ReviewChanges.txtView": "Mode Tampilan", + "Common.Views.ReviewChangesDialog.textTitle": "Review Perubahan", "Common.Views.ReviewChangesDialog.txtAccept": "Terima", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Terima semua perubahan", + "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Terima Perubahan Saat Ini", + "Common.Views.ReviewChangesDialog.txtNext": "Ke perubahan berikutnya", + "Common.Views.ReviewChangesDialog.txtPrev": "Ke perubahan sebelumnya", "Common.Views.ReviewChangesDialog.txtReject": "Tolak", + "Common.Views.ReviewChangesDialog.txtRejectAll": "Tolak Semua Perubahan", + "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Tolak Perubahan Saat Ini", "Common.Views.ReviewPopover.textAdd": "Tambahkan", - "Common.Views.ReviewPopover.textAddReply": "Tambahkan balasan", + "Common.Views.ReviewPopover.textAddReply": "Tambahkan Balasan", "Common.Views.ReviewPopover.textCancel": "Batalkan", "Common.Views.ReviewPopover.textClose": "Tutup", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textFollowMove": "Ikuti pergerakan", + "Common.Views.ReviewPopover.textMention": "+mention akan memberikan akses ke dokumen dan mengirimkan email", + "Common.Views.ReviewPopover.textMentionNotify": "+mention akan mengingatkan user lewat email", "Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi", "Common.Views.ReviewPopover.textReply": "Balas", "Common.Views.ReviewPopover.textResolve": "Selesaikan", + "Common.Views.ReviewPopover.textViewResolved": "Anda tidak memiliki izin membuka kembali komentar", "Common.Views.ReviewPopover.txtAccept": "Terima", "Common.Views.ReviewPopover.txtDeleteTip": "Hapus", "Common.Views.ReviewPopover.txtEditTip": "Sunting", "Common.Views.ReviewPopover.txtReject": "Tolak", + "Common.Views.SaveAsDlg.textLoading": "Memuat", + "Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan", + "Common.Views.SelectFileDlg.textLoading": "Memuat", "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", "Common.Views.SignDialog.textBold": "Tebal", + "Common.Views.SignDialog.textCertificate": "Sertifikat", "Common.Views.SignDialog.textChange": "Ganti", + "Common.Views.SignDialog.textInputName": "Masukkan nama penandatangan", "Common.Views.SignDialog.textItalic": "Miring", + "Common.Views.SignDialog.textNameError": "Nama penandatangan tidak boleh kosong.", + "Common.Views.SignDialog.textPurpose": "Tujuan menandatangani dokumen ini", "Common.Views.SignDialog.textSelect": "Pilih", + "Common.Views.SignDialog.textSelectImage": "Pilih Gambar", + "Common.Views.SignDialog.textSignature": "Tandatangan terlihat seperti", + "Common.Views.SignDialog.textTitle": "Tanda Tangan Dokumen", + "Common.Views.SignDialog.textUseImage": "atau klik 'Pilih Gambar' untuk menjadikan gambar sebagai tandatangan", + "Common.Views.SignDialog.textValid": "Valid dari %1 sampai %2", + "Common.Views.SignDialog.tipFontName": "Nama Font", "Common.Views.SignDialog.tipFontSize": "Ukuran Huruf", + "Common.Views.SignSettingsDialog.textAllowComment": "Izinkan penandatangan untuk menambahkan komentar di dialog tanda tangan", + "Common.Views.SignSettingsDialog.textInfo": "Info Penandatangan", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Nama", - "Common.Views.SignSettingsDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.SignSettingsDialog.textInfoTitle": "Gelar Penandatangan", + "Common.Views.SignSettingsDialog.textInstructions": "Instruksi untuk Penandatangan", + "Common.Views.SignSettingsDialog.textShowDate": "Tampilkan tanggal di garis tandatangan", + "Common.Views.SignSettingsDialog.textTitle": "Setup Tanda Tangan", + "Common.Views.SignSettingsDialog.txtEmpty": "Area ini dibutuhkan", "Common.Views.SymbolTableDialog.textCharacter": "Karakter", + "Common.Views.SymbolTableDialog.textCode": "Nilai Unicode HEX", + "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign", + "Common.Views.SymbolTableDialog.textDCQuote": "Kutip Dua Penutup", + "Common.Views.SymbolTableDialog.textDOQuote": "Kutip Dua Pembuka", + "Common.Views.SymbolTableDialog.textEllipsis": "Ellipsis Horizontal", + "Common.Views.SymbolTableDialog.textEmDash": "Em Dash", + "Common.Views.SymbolTableDialog.textEmSpace": "Em Space", + "Common.Views.SymbolTableDialog.textEnDash": "En Dash", + "Common.Views.SymbolTableDialog.textEnSpace": "En Space", "Common.Views.SymbolTableDialog.textFont": "Huruf", - "Common.Views.SymbolTableDialog.textSpecial": "karakter khusus", + "Common.Views.SymbolTableDialog.textNBHyphen": "Hyphen Non-breaking", + "Common.Views.SymbolTableDialog.textNBSpace": "Spasi Tanpa-break", + "Common.Views.SymbolTableDialog.textPilcrow": "Simbol Pilcrow", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", + "Common.Views.SymbolTableDialog.textRange": "Rentang", + "Common.Views.SymbolTableDialog.textRecent": "Simbol yang baru digunakan", + "Common.Views.SymbolTableDialog.textRegistered": "Tandatangan Teregistrasi", + "Common.Views.SymbolTableDialog.textSCQuote": "Kutip Satu Penutup", + "Common.Views.SymbolTableDialog.textSection": "Sesi Tandatangan", + "Common.Views.SymbolTableDialog.textShortcut": "Kunci Shortcut", + "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen", + "Common.Views.SymbolTableDialog.textSOQuote": "Kutip Satu Pembuka", + "Common.Views.SymbolTableDialog.textSpecial": "Karakter khusus", "Common.Views.SymbolTableDialog.textSymbols": "Simbol", - "DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", + "Common.Views.SymbolTableDialog.textTitle": "Simbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Simbol Trademark ", + "Common.Views.UserNameDialog.textDontShow": "Jangan tanya saya lagi", + "Common.Views.UserNameDialog.textLabel": "Label:", + "Common.Views.UserNameDialog.textLabelError": "Label tidak boleh kosong.", + "DE.Controllers.LeftMenu.leavePageText": "Semua perubahan yang tidak tersimpan di dokumen ini akan hilang.
Klik \"Batal\" lalu \"Simpan\" untuk menyimpan. Klik \"OK\" untuk membuang semua perubahan yang tidak tersimpan.", "DE.Controllers.LeftMenu.newDocumentTitle": "Dokumen tidak bernama", - "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning", + "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Peringatan", "DE.Controllers.LeftMenu.requestEditRightsText": "Meminta hak editing...", - "DE.Controllers.LeftMenu.textLoadHistory": "Loading version history...", + "DE.Controllers.LeftMenu.textLoadHistory": "Loading versi riwayat...", "DE.Controllers.LeftMenu.textNoTextFound": "Data yang Anda cari tidak ditemukan. Silakan atur opsi pencarian Anda.", "DE.Controllers.LeftMenu.textReplaceSkipped": "Penggantian telah dilakukan. Ada {0} yang dilewatkan.", - "DE.Controllers.LeftMenu.textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti.", - "DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "DE.Controllers.LeftMenu.textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti {0}", + "DE.Controllers.LeftMenu.txtCompatible": "Dokumen akan disimpan ke format baru. Semua fitur editor akan diizinkan digunakan, tapi, mungkin akan mempengaruhi tampilan dokumen.
Gunakan opsi 'Kompatibilitas' di pengaturan tingkat lanjut jika Anda ingin membuat file kompatibel dengan versi MS Word lama.", + "DE.Controllers.LeftMenu.txtUntitled": "Tanpa Judul", + "DE.Controllers.LeftMenu.warnDownloadAs": "Jika Anda lanjut simpan dengan format ini, semua fitur kecuali teks akan hilang.
Apakah Anda ingin melanjutkan?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "{0} Anda akan dikonversi ke format yang bisa diedit. Hal ini mungkin akan membutuhkan waktu. Dokumen yang dihasilkan akan dioptimalkan untuk memungkinkan Anda mengedit teks, sehingga mungkin tidak terlihat persis seperti aslinya {0}, terutama jika file asli berisi banyak gambar.", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Jika Anda lanjut simpan dengan format ini, beberapa format lain mungkin akan terhapus.
Apakah Anda ingin melanjutkan?", "DE.Controllers.Main.applyChangesTextText": "Memuat perubahan...", "DE.Controllers.Main.applyChangesTitleText": "Memuat Perubahan", "DE.Controllers.Main.convertationTimeoutText": "Waktu konversi habis.", "DE.Controllers.Main.criticalErrorExtText": "Tekan \"OK\" untuk kembali ke daftar dokumen.", - "DE.Controllers.Main.criticalErrorTitle": "Error", + "DE.Controllers.Main.criticalErrorTitle": "Kesalahan", "DE.Controllers.Main.downloadErrorText": "Unduhan gagal.", - "DE.Controllers.Main.downloadMergeText": "Downloading...", - "DE.Controllers.Main.downloadMergeTitle": "Downloading", + "DE.Controllers.Main.downloadMergeText": "Mengunduh...", + "DE.Controllers.Main.downloadMergeTitle": "Mengunduh", "DE.Controllers.Main.downloadTextText": "Mengunduh dokumen...", "DE.Controllers.Main.downloadTitleText": "Mengunduh Dokumen", + "DE.Controllers.Main.errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
Silakan hubungi admin Server Dokumen Anda.", + "DE.Controllers.Main.errorBadImageUrl": "URL Gambar salah", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Koneksi server terputus. Saat ini dokumen tidak dapat diedit.", - "DE.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.", - "DE.Controllers.Main.errorDatabaseConnection": "Error eksternal.
Koneksi basis data error. Silakan hubungi layanan bantuan jika tetap terjadi error.", + "DE.Controllers.Main.errorComboSeries": "Untuk membuat grafik kombinasi, pilih setidaknya dua seri data.", + "DE.Controllers.Main.errorCompare": "Fitur Membandingkan Dokumen tidak tersedia saat co-editing. ", + "DE.Controllers.Main.errorConnectToServer": "Dokumen tidak bisa disimpan. Silakan periksa pengaturan koneksi atau hubungi admin Anda.
Ketika klik tombol 'OK', Anda akan diminta untuk download dokumen.", + "DE.Controllers.Main.errorDatabaseConnection": "Eror eksternal.
Koneksi database bermasalah. Silakan hubungi layanan bantuan jika tetap terjadi error.", + "DE.Controllers.Main.errorDataEncrypted": "Perubahan enkripsi sudah diterima dan tidak bisa diuraikan.", "DE.Controllers.Main.errorDataRange": "Rentang data salah.", - "DE.Controllers.Main.errorDefaultMessage": "Kode error: %1", + "DE.Controllers.Main.errorDefaultMessage": "Kode kesalahan: %1", + "DE.Controllers.Main.errorDirectUrl": "Silakan verifikasi link ke dokumen.
Link ini harus langsung menuju file target untuk download.", + "DE.Controllers.Main.errorEditingDownloadas": "Ada kesalahan saat bekerja dengan dokumen.
Gunakan opsi 'Download sebagai...' untuk menyimpan file salinan backup ke komputer Anda.", + "DE.Controllers.Main.errorEditingSaveas": "Ada kesalahan saat bekerja dengan dokumen.
Gunakan opsi 'Simpan sebagai...' untuk menyimpan file salinan backup ke komputer Anda.", + "DE.Controllers.Main.errorEmailClient": "Email klein tidak bisa ditemukan.", "DE.Controllers.Main.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.", + "DE.Controllers.Main.errorFileSizeExceed": "Ukuran file melewati batas server Anda.
Silakan hubungi admin Server Dokumen Anda untuk detail.", + "DE.Controllers.Main.errorForceSave": "Ada kesalahan saat menyimpan file. Silakan gunakan opsi 'Download sebagai' untuk menyimpan file ke komputer Anda dan coba lagi.", "DE.Controllers.Main.errorKeyEncrypt": "Deskriptor kunci tidak dikenal", "DE.Controllers.Main.errorKeyExpire": "Deskriptor kunci tidak berfungsi", - "DE.Controllers.Main.errorMailMergeLoadFile": "Loading failed", - "DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.", + "DE.Controllers.Main.errorLoadingFont": "Font tidak bisa dimuat.
Silakan kontak admin Server Dokumen Anda.", + "DE.Controllers.Main.errorMailMergeLoadFile": "Loading dokumen gagal. Silakan coba dengan file lain.", + "DE.Controllers.Main.errorMailMergeSaveFile": "Merge gagal.", "DE.Controllers.Main.errorProcessSaveResult": "Gagal menyimpan.", + "DE.Controllers.Main.errorServerVersion": "Versi editor sudah di update. Halaman akan dimuat ulang untuk menerapkan perubahan.", + "DE.Controllers.Main.errorSessionAbsolute": "Waktu edit dokumen sudah selesai. Silakan muat ulang halaman.", + "DE.Controllers.Main.errorSessionIdle": "Dokumen sudah lama tidak diedit. Silakan muat ulang halaman.", + "DE.Controllers.Main.errorSessionToken": "Koneksi ke server terganggu. Silakan muat ulang halaman.", + "DE.Controllers.Main.errorSetPassword": "Password tidak bisa diatur.", "DE.Controllers.Main.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "DE.Controllers.Main.errorSubmit": "Submit gagal.", + "DE.Controllers.Main.errorToken": "Token keamanan dokumen tidak dibentuk dengan tepat.
Silakan hubungi admin Server Dokumen Anda.", + "DE.Controllers.Main.errorTokenExpire": "Token keamanan dokumen sudah kadaluwarsa.
Silakan hubungi admin Server Dokumen Anda.", "DE.Controllers.Main.errorUpdateVersion": "Versi file telah diubah. Halaman tidak akan dimuat ulang.", - "DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu download file atau copy konten untuk memastikan tidak ada yang hilang, dan muat ulang halaman ini.", + "DE.Controllers.Main.errorUserDrop": "File tidak bisa diakses sekarang.", "DE.Controllers.Main.errorUsersExceed": "Jumlah pengguna telah melebihi jumlah yang diijinkan dalam paket harga.", - "DE.Controllers.Main.leavePageText": "Ada perubahan yang belum disimpan dalam dokumen ini. Klik \"Tetap di Halaman Ini\", kemudian \"Simpan\" untuk menyimpan perubahan tersebut. Klik \"Tinggalkan Halaman Ini\" untuk membatalkan semua perubahan yang belum disimpan.", + "DE.Controllers.Main.errorViewerDisconnect": "Koneksi terputus. Anda tetap bisa melihat dokumen,
tapi tidak bisa download atau print sampai koneksi terhubung dan halaman dimuat ulang.", + "DE.Controllers.Main.leavePageText": "Ada perubahan yang belum disimpan dalam dokumen ini. Klik \"Tetap di Halaman Ini” kemudian \"Simpan\" untuk menyimpan perubahan tersebut. Klik \"Tinggalkan Halaman Ini\" untuk membatalkan semua perubahan yang belum disimpan.", + "DE.Controllers.Main.leavePageTextOnClose": "Semua perubahan yang tidak tersimpan di dokumen ini akan hilang.
Klik \"Batal\" lalu \"Simpan\" untuk menyimpan. Klik \"OK\" untuk membuang semua perubahan yang tidak tersimpan.", "DE.Controllers.Main.loadFontsTextText": "Memuat data...", "DE.Controllers.Main.loadFontsTitleText": "Memuat Data", "DE.Controllers.Main.loadFontTextText": "Memuat data...", @@ -285,9 +573,10 @@ "DE.Controllers.Main.loadImageTitleText": "Memuat Gambar", "DE.Controllers.Main.loadingDocumentTextText": "Memuat dokumen...", "DE.Controllers.Main.loadingDocumentTitleText": "Memuat dokumen", - "DE.Controllers.Main.mailMergeLoadFileText": "Loading Data Source...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Loading Data Source", + "DE.Controllers.Main.mailMergeLoadFileText": "Loading Sumber Data...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "Loading Sumber Data...", "DE.Controllers.Main.notcriticalErrorTitle": "Peringatan", + "DE.Controllers.Main.openErrorText": "Eror ketika membuka file.", "DE.Controllers.Main.openTextText": "Membuka Dokumen...", "DE.Controllers.Main.openTitleText": "Membuka Dokumen", "DE.Controllers.Main.printTextText": "Mencetak dokumen...", @@ -295,76 +584,324 @@ "DE.Controllers.Main.reloadButtonText": "Muat Ulang Halaman", "DE.Controllers.Main.requestEditFailedMessageText": "Saat ini dokumen sedang diedit. Silakan coba beberapa saat lagi.", "DE.Controllers.Main.requestEditFailedTitleText": "Akses ditolak", + "DE.Controllers.Main.saveErrorText": "Eror ketika menyimpan file.", + "DE.Controllers.Main.saveErrorTextDesktop": "File tidak bisa disimpan atau dibuat.
Alasan yang mungkin adalah:
1. File hanya bisa dibaca.
2. File sedang diedit user lain.
3. Memori penuh atau terkorupsi.", "DE.Controllers.Main.saveTextText": "Menyimpan dokumen...", "DE.Controllers.Main.saveTitleText": "Menyimpan Dokumen", - "DE.Controllers.Main.sendMergeText": "Sending Merge...", - "DE.Controllers.Main.sendMergeTitle": "Sending Merge", + "DE.Controllers.Main.scriptLoadError": "Koneksi terlalu lambat dan beberapa komponen tidak bisa dibuka Silakan muat ulang halaman.", + "DE.Controllers.Main.sendMergeText": "Mengirim Merge...", + "DE.Controllers.Main.sendMergeTitle": "Mengirim Merge", "DE.Controllers.Main.splitDividerErrorText": "Jumlah baris harus merupakan pembagi %1.", "DE.Controllers.Main.splitMaxColsErrorText": "Jumlah kolom harus kurang dari %1.", "DE.Controllers.Main.splitMaxRowsErrorText": "Jumlah haris harus kurang dari %1.", "DE.Controllers.Main.textAnonymous": "Anonim", + "DE.Controllers.Main.textApplyAll": "Terapkan untuk semua persamaan", + "DE.Controllers.Main.textBuyNow": "Kunjungi website", + "DE.Controllers.Main.textChangesSaved": "Semua perubahan tersimpan", "DE.Controllers.Main.textClose": "Tutup", "DE.Controllers.Main.textCloseTip": "Klik untuk menutup tips", + "DE.Controllers.Main.textContactUs": "Hubungi sales", + "DE.Controllers.Main.textConvertEquation": "Persamaan ini dibuat dengan editor persamaan versi lama yang sudah tidak didukung. Untuk edit, konversikan persamaan ke format Office Math ML.
Konversi sekarang?", + "DE.Controllers.Main.textCustomLoader": "Perlu diketahui bahwa berdasarkan syarat dari lisensi, Anda tidak bisa untuk mengganti loader.
Silakan hubungi Departemen Penjualan kami untuk mendapatkan harga.", + "DE.Controllers.Main.textDisconnect": "Koneksi terputus", "DE.Controllers.Main.textGuest": "Tamu", + "DE.Controllers.Main.textHasMacros": "File berisi macros otomatis.
Apakah Anda ingin menjalankan macros?", "DE.Controllers.Main.textLearnMore": "Pelajari selengkapnya", "DE.Controllers.Main.textLoadingDocument": "Memuat dokumen", - "DE.Controllers.Main.textStrict": "Strict mode", - "DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", + "DE.Controllers.Main.textLongName": "Masukkan nama maksimum 128 karakter.", + "DE.Controllers.Main.textNoLicenseTitle": "Batas lisensi sudah tercapai", + "DE.Controllers.Main.textPaidFeature": "Fitur berbayar", + "DE.Controllers.Main.textReconnect": "Koneksi terhubung kembali", + "DE.Controllers.Main.textRemember": "Ingat pilihan saya untuk semua file", + "DE.Controllers.Main.textRenameError": "Nama user tidak boleh kosong.", + "DE.Controllers.Main.textRenameLabel": "Masukkan nama untuk digunakan di kolaborasi", + "DE.Controllers.Main.textShape": "Bentuk", + "DE.Controllers.Main.textStrict": "Mode strict", + "DE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.
Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.", + "DE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.", + "DE.Controllers.Main.titleLicenseExp": "Lisensi kadaluwarsa", + "DE.Controllers.Main.titleServerVersion": "Editor mengupdate", "DE.Controllers.Main.titleUpdateVersion": "Versi telah diubah", - "DE.Controllers.Main.txtAbove": "Di atas", - "DE.Controllers.Main.txtArt": "Your text here", + "DE.Controllers.Main.txtAbove": "di atas", + "DE.Controllers.Main.txtArt": "Teks Anda di sini", "DE.Controllers.Main.txtBasicShapes": "Bentuk Dasar", - "DE.Controllers.Main.txtBelow": "Di bawah", + "DE.Controllers.Main.txtBelow": "di bawah", + "DE.Controllers.Main.txtBookmarkError": "Kesalahan! Bookmark tidak terdefinisikan.", "DE.Controllers.Main.txtButtons": "Tombol", "DE.Controllers.Main.txtCallouts": "Balon Kata", "DE.Controllers.Main.txtCharts": "Bagan", - "DE.Controllers.Main.txtDiagramTitle": "Chart Title", - "DE.Controllers.Main.txtEditingMode": "Atur mode editing...", - "DE.Controllers.Main.txtErrorLoadHistory": "History loading failed", + "DE.Controllers.Main.txtChoose": "Pilih satu barang", + "DE.Controllers.Main.txtClickToLoad": "Klik untuk memuat gambar", + "DE.Controllers.Main.txtCurrentDocument": "Dokumen Saat Ini", + "DE.Controllers.Main.txtDiagramTitle": "Judul Grafik", + "DE.Controllers.Main.txtEditingMode": "Mengatur mode editing...", + "DE.Controllers.Main.txtEndOfFormula": "Akhir Formula Tidak Terduga", + "DE.Controllers.Main.txtEnterDate": "Masukkan tanggal", + "DE.Controllers.Main.txtErrorLoadHistory": "Memuat riwayat gagal", "DE.Controllers.Main.txtEvenPage": "Halaman Genap", "DE.Controllers.Main.txtFiguredArrows": "Tanda Panah Berpola", + "DE.Controllers.Main.txtFirstPage": "Halaman Pertama", + "DE.Controllers.Main.txtFooter": "Footer", + "DE.Controllers.Main.txtFormulaNotInTable": "Formula Tidak Ada di Tabel", + "DE.Controllers.Main.txtHeader": "Header", + "DE.Controllers.Main.txtHyperlink": "Hyperlink", + "DE.Controllers.Main.txtIndTooLarge": "Index Terlalu Besar", "DE.Controllers.Main.txtLines": "Garis", + "DE.Controllers.Main.txtMainDocOnly": "Kesalahan! Hanya Dokumen Utama.", "DE.Controllers.Main.txtMath": "Matematika", + "DE.Controllers.Main.txtMissArg": "Argumen Tidak Ditemukan", + "DE.Controllers.Main.txtMissOperator": "Operator Tidak Ditemukan", "DE.Controllers.Main.txtNeedSynchronize": "Ada pembaruan", - "DE.Controllers.Main.txtNone": "tidak ada", + "DE.Controllers.Main.txtNone": "Tidak ada", + "DE.Controllers.Main.txtNoTableOfContents": "Tidak ada heading di dokumen. Terapkan style heading ke teks agar bisa terlihat di daftar isi.", + "DE.Controllers.Main.txtNoTableOfFigures": "Tidak ada daftar gambar yang ditemukan.", + "DE.Controllers.Main.txtNoText": "Kesalahan! Tidak ada teks dengan style sesuai spesifikasi di dokumen.", + "DE.Controllers.Main.txtNotInTable": "Tidak Ada di Tabel", + "DE.Controllers.Main.txtNotValidBookmark": "Kesalahan! Bukan bookmark self-reference yang valid.", + "DE.Controllers.Main.txtOddPage": "Halaman Ganjil", + "DE.Controllers.Main.txtOnPage": "di halaman", "DE.Controllers.Main.txtRectangles": "Persegi Panjang", - "DE.Controllers.Main.txtSeries": "Series", + "DE.Controllers.Main.txtSameAsPrev": "Sama seperti Sebelumnya", + "DE.Controllers.Main.txtSection": "-Sesi", + "DE.Controllers.Main.txtSeries": "Seri", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "Garis Callout 1 (Border dan Accent Bar)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "Garis Callout 2 (Border dan Accent Bar)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "Garis Callout 3 (Border dan Accent Bar)", + "DE.Controllers.Main.txtShape_accentCallout1": "Garis Callout 1 (Accent Bar)", + "DE.Controllers.Main.txtShape_accentCallout2": "Garis Callout 2 (Accent Bar)", + "DE.Controllers.Main.txtShape_accentCallout3": "Garis Callout 3 (Accent Bar)", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tombol Kembali atau Sebelumnya", + "DE.Controllers.Main.txtShape_actionButtonBeginning": "Tombol Awal", + "DE.Controllers.Main.txtShape_actionButtonBlank": "Tombol Kosong", + "DE.Controllers.Main.txtShape_actionButtonDocument": "Tombol Dokumen", + "DE.Controllers.Main.txtShape_actionButtonEnd": "Tombol Akhir", + "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Maju atau Tombol Selanjutnya", + "DE.Controllers.Main.txtShape_actionButtonHelp": "Tombol Batuan", + "DE.Controllers.Main.txtShape_actionButtonHome": "Tombol Beranda", + "DE.Controllers.Main.txtShape_actionButtonInformation": "Tombol Informasi", + "DE.Controllers.Main.txtShape_actionButtonMovie": "Tombol Movie", + "DE.Controllers.Main.txtShape_actionButtonReturn": "Tombol Kembali", + "DE.Controllers.Main.txtShape_actionButtonSound": "Tombol Suara", + "DE.Controllers.Main.txtShape_arc": "Arc", + "DE.Controllers.Main.txtShape_bentArrow": "Panah Bengkok", + "DE.Controllers.Main.txtShape_bentConnector5": "Konektor Siku", + "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Panah Konektor Siku", + "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Panah Ganda Konektor Siku", + "DE.Controllers.Main.txtShape_bentUpArrow": "Panah Kelok Atas", "DE.Controllers.Main.txtShape_bevel": "Miring", + "DE.Controllers.Main.txtShape_blockArc": "Block Arc", + "DE.Controllers.Main.txtShape_borderCallout1": "Garis Callout 1", + "DE.Controllers.Main.txtShape_borderCallout2": "Garis Callout 2", + "DE.Controllers.Main.txtShape_borderCallout3": "Garis Callout 3", + "DE.Controllers.Main.txtShape_bracePair": "Kurung Ganda", + "DE.Controllers.Main.txtShape_callout1": "Garis Callout 1 (No Border)", + "DE.Controllers.Main.txtShape_callout2": "Garis Callout 2 (No Border)", + "DE.Controllers.Main.txtShape_callout3": "Garis Callout 3 (No Border)", + "DE.Controllers.Main.txtShape_can": "Bisa", + "DE.Controllers.Main.txtShape_chevron": "Chevron", + "DE.Controllers.Main.txtShape_chord": "Chord", + "DE.Controllers.Main.txtShape_circularArrow": "Panah Sirkular", + "DE.Controllers.Main.txtShape_cloud": "Cloud", + "DE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout", + "DE.Controllers.Main.txtShape_corner": "Sudut", + "DE.Controllers.Main.txtShape_cube": "Kubus", + "DE.Controllers.Main.txtShape_curvedConnector3": "Konektor Lengkung", + "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Panah Konektor Lengkung", + "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Panah Ganda Konektor Lengkung", + "DE.Controllers.Main.txtShape_curvedDownArrow": "Panah Kelok Bawah", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "Panah Kelok Kiri", + "DE.Controllers.Main.txtShape_curvedRightArrow": "Panah Kelok Kanan", + "DE.Controllers.Main.txtShape_curvedUpArrow": "Panah Kelok Atas", + "DE.Controllers.Main.txtShape_decagon": "Decagon", + "DE.Controllers.Main.txtShape_diagStripe": "Strip Diagonal", + "DE.Controllers.Main.txtShape_diamond": "Diamond", + "DE.Controllers.Main.txtShape_dodecagon": "Dodecagon", + "DE.Controllers.Main.txtShape_donut": "Donut", + "DE.Controllers.Main.txtShape_doubleWave": "Gelombang Ganda", + "DE.Controllers.Main.txtShape_downArrow": "Panah Kebawah", + "DE.Controllers.Main.txtShape_downArrowCallout": "Seranta Panah Bawah", + "DE.Controllers.Main.txtShape_ellipse": "Elips", + "DE.Controllers.Main.txtShape_ellipseRibbon": "Pita Kelok Bawah", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "Pita Kelok Atas", + "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagram Alir: Proses Alternatif", + "DE.Controllers.Main.txtShape_flowChartCollate": "Diagram Alir: Collate", + "DE.Controllers.Main.txtShape_flowChartConnector": "Diagram Alir: Konektor", + "DE.Controllers.Main.txtShape_flowChartDecision": "Diagram Alir: Keputusan", + "DE.Controllers.Main.txtShape_flowChartDelay": "Diagram Alir: Delay", + "DE.Controllers.Main.txtShape_flowChartDisplay": "Diagram Alir: Tampilan", + "DE.Controllers.Main.txtShape_flowChartDocument": "Diagram Alir: Dokumen", + "DE.Controllers.Main.txtShape_flowChartExtract": "Diagram Alir: Ekstrak", + "DE.Controllers.Main.txtShape_flowChartInputOutput": "Diagram Alir: Data", + "DE.Controllers.Main.txtShape_flowChartInternalStorage": "Diagram Alir: Memori Internal", + "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Diagram Alir: Magnetic Disk", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagram Alir: Direct Access Storage", + "DE.Controllers.Main.txtShape_flowChartMagneticTape": "Diagram Alir: Sequential Access Storage", + "DE.Controllers.Main.txtShape_flowChartManualInput": "Diagram Alir: Input Manual", + "DE.Controllers.Main.txtShape_flowChartManualOperation": "Diagram Alir: Operasi Manual", + "DE.Controllers.Main.txtShape_flowChartMerge": "Diagram Alir: Merge", + "DE.Controllers.Main.txtShape_flowChartMultidocument": "Diagram Alir: Multidokumen ", + "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "Diagram Alir: Off-page Penghubung", + "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "Diagram Alir: Stored Data", + "DE.Controllers.Main.txtShape_flowChartOr": "Diagram Alir: Atau", + "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Diagram Alir: Predefined Process", + "DE.Controllers.Main.txtShape_flowChartPreparation": "Diagram Alir: Preparasi", + "DE.Controllers.Main.txtShape_flowChartProcess": "Diagram Alir: Proses", + "DE.Controllers.Main.txtShape_flowChartPunchedCard": "Diagram Alir: Kartu", + "DE.Controllers.Main.txtShape_flowChartPunchedTape": "Diagram Alir: Punched Tape", + "DE.Controllers.Main.txtShape_flowChartSort": "Diagram Alir: Sortasi", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagram Alir: Summing Junction", + "DE.Controllers.Main.txtShape_flowChartTerminator": "Diagram Alir: Terminator", + "DE.Controllers.Main.txtShape_foldedCorner": "Sudut Folder", "DE.Controllers.Main.txtShape_frame": "Kerangka", + "DE.Controllers.Main.txtShape_halfFrame": "Setengah Bingkai", + "DE.Controllers.Main.txtShape_heart": "Hati", + "DE.Controllers.Main.txtShape_heptagon": "Heptagon", + "DE.Controllers.Main.txtShape_hexagon": "Heksagon", + "DE.Controllers.Main.txtShape_homePlate": "Pentagon", + "DE.Controllers.Main.txtShape_horizontalScroll": "Scroll Horizontal", + "DE.Controllers.Main.txtShape_irregularSeal1": "Ledakan 1", + "DE.Controllers.Main.txtShape_irregularSeal2": "Ledakan 2", "DE.Controllers.Main.txtShape_leftArrow": "Panah Kiri", + "DE.Controllers.Main.txtShape_leftArrowCallout": "Seranta Panah Kiri", + "DE.Controllers.Main.txtShape_leftBrace": "Brace Kiri", + "DE.Controllers.Main.txtShape_leftBracket": "Kurung Kurawal Kiri", + "DE.Controllers.Main.txtShape_leftRightArrow": "Panah Kiri Kanan", + "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Seranta Panah Kiri Kanan", + "DE.Controllers.Main.txtShape_leftRightUpArrow": "Panah Kiri Kanan Atas", + "DE.Controllers.Main.txtShape_leftUpArrow": "Panah Kiri Atas", + "DE.Controllers.Main.txtShape_lightningBolt": "Petir", "DE.Controllers.Main.txtShape_line": "Garis", + "DE.Controllers.Main.txtShape_lineWithArrow": "Panah", + "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Panah Ganda", + "DE.Controllers.Main.txtShape_mathDivide": "Divisi", "DE.Controllers.Main.txtShape_mathEqual": "Setara", "DE.Controllers.Main.txtShape_mathMinus": "Minus", + "DE.Controllers.Main.txtShape_mathMultiply": "Perkalian", + "DE.Controllers.Main.txtShape_mathNotEqual": "Tidak Sama", "DE.Controllers.Main.txtShape_mathPlus": "Plus", + "DE.Controllers.Main.txtShape_moon": "Bulan", + "DE.Controllers.Main.txtShape_noSmoking": "\"No\" simbol", + "DE.Controllers.Main.txtShape_notchedRightArrow": "Panah Takik Kanan", + "DE.Controllers.Main.txtShape_octagon": "Oktagon", + "DE.Controllers.Main.txtShape_parallelogram": "Parallelogram", + "DE.Controllers.Main.txtShape_pentagon": "Pentagon", "DE.Controllers.Main.txtShape_pie": "Diagram Lingkaran", + "DE.Controllers.Main.txtShape_plaque": "Plus", "DE.Controllers.Main.txtShape_plus": "Plus", + "DE.Controllers.Main.txtShape_polyline1": "Scribble", + "DE.Controllers.Main.txtShape_polyline2": "Bentuk bebas", + "DE.Controllers.Main.txtShape_quadArrow": "Panah Empat Mata", + "DE.Controllers.Main.txtShape_quadArrowCallout": "Seranta Panah Empat Mata", + "DE.Controllers.Main.txtShape_rect": "Kotak", + "DE.Controllers.Main.txtShape_ribbon": "Pita Bawah", + "DE.Controllers.Main.txtShape_ribbon2": "Pita Keatas", "DE.Controllers.Main.txtShape_rightArrow": "Tanda Panah ke Kanan", + "DE.Controllers.Main.txtShape_rightArrowCallout": "Seranta Panah Kanan", + "DE.Controllers.Main.txtShape_rightBrace": "Brace Kanan", + "DE.Controllers.Main.txtShape_rightBracket": "Kurung Kurawal Kanan", + "DE.Controllers.Main.txtShape_round1Rect": "Persegi Panjang Sudut Lengkung Single", + "DE.Controllers.Main.txtShape_round2DiagRect": "Persegi Panjang Sudut Lengkung Diagonal", + "DE.Controllers.Main.txtShape_round2SameRect": "Persegi Panjang Sudut Lengkung Sama Sisi", + "DE.Controllers.Main.txtShape_roundRect": "Persegi Panjang Sudut Lengkung", + "DE.Controllers.Main.txtShape_rtTriangle": "Segitiga Siku-Siku", + "DE.Controllers.Main.txtShape_smileyFace": "Wajah Senyum", + "DE.Controllers.Main.txtShape_snip1Rect": "Snip Persegi Panjang Sudut Single", + "DE.Controllers.Main.txtShape_snip2DiagRect": "Snip Persegi Panjang Sudut Lengkung Diagonal", + "DE.Controllers.Main.txtShape_snip2SameRect": "Snip Persegi Panjang Sudut Lengkung Sama Sisi", + "DE.Controllers.Main.txtShape_snipRoundRect": "Snip dan Persegi Panjang Sudut Lengkung Single", + "DE.Controllers.Main.txtShape_spline": "Lengkung", + "DE.Controllers.Main.txtShape_star10": "Bintang Titik-10", + "DE.Controllers.Main.txtShape_star12": "Bintang Titik-12", + "DE.Controllers.Main.txtShape_star16": "Bintang Titik-16", + "DE.Controllers.Main.txtShape_star24": "Bintang Titik-24", + "DE.Controllers.Main.txtShape_star32": "Bintang Titik-32", + "DE.Controllers.Main.txtShape_star4": "Bintang Titik-4", + "DE.Controllers.Main.txtShape_star5": "Bintang Titik-5", + "DE.Controllers.Main.txtShape_star6": "Bintang Titik-6", + "DE.Controllers.Main.txtShape_star7": "Bintang Titik-7", + "DE.Controllers.Main.txtShape_star8": "Bintang Titik-8", + "DE.Controllers.Main.txtShape_stripedRightArrow": "Panah Putus-Putus Kanan", + "DE.Controllers.Main.txtShape_sun": "Matahari", + "DE.Controllers.Main.txtShape_teardrop": "Teardrop", + "DE.Controllers.Main.txtShape_textRect": "Kotak Teks", + "DE.Controllers.Main.txtShape_trapezoid": "Trapezoid", + "DE.Controllers.Main.txtShape_triangle": "Segitiga", + "DE.Controllers.Main.txtShape_upArrow": "Panah keatas", + "DE.Controllers.Main.txtShape_upArrowCallout": "Seranta Panah Atas", + "DE.Controllers.Main.txtShape_upDownArrow": "Panah Atas Bawah", + "DE.Controllers.Main.txtShape_uturnArrow": "Panah Balik", + "DE.Controllers.Main.txtShape_verticalScroll": "Scroll Vertikal", + "DE.Controllers.Main.txtShape_wave": "Gelombang", + "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Callout Oval", + "DE.Controllers.Main.txtShape_wedgeRectCallout": "Callout Kotak", + "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Callout Persegi Panjang Sudut Lengkung", "DE.Controllers.Main.txtStarsRibbons": "Bintang & Pita", + "DE.Controllers.Main.txtStyle_Caption": "Caption", + "DE.Controllers.Main.txtStyle_endnote_text": "Teks Endnote", + "DE.Controllers.Main.txtStyle_footnote_text": "Teks Footnote", + "DE.Controllers.Main.txtStyle_Heading_1": "Heading 1", + "DE.Controllers.Main.txtStyle_Heading_2": "Heading 2", + "DE.Controllers.Main.txtStyle_Heading_3": "Heading 3", + "DE.Controllers.Main.txtStyle_Heading_4": "Heading 4", + "DE.Controllers.Main.txtStyle_Heading_5": "Heading 5", + "DE.Controllers.Main.txtStyle_Heading_6": "Heading 6", + "DE.Controllers.Main.txtStyle_Heading_7": "Heading 7", + "DE.Controllers.Main.txtStyle_Heading_8": "Heading 8", + "DE.Controllers.Main.txtStyle_Heading_9": "Heading 9", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Quote Intens", + "DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraf", + "DE.Controllers.Main.txtStyle_No_Spacing": "Tanpa Spacing", "DE.Controllers.Main.txtStyle_Normal": "Normal", "DE.Controllers.Main.txtStyle_Quote": "Kutip", + "DE.Controllers.Main.txtStyle_Subtitle": "Subtitle", "DE.Controllers.Main.txtStyle_Title": "Judul", + "DE.Controllers.Main.txtSyntaxError": "Syntax Error", + "DE.Controllers.Main.txtTableInd": "Index Tabel Tidak Boleh Nol", "DE.Controllers.Main.txtTableOfContents": "Daftar Isi", - "DE.Controllers.Main.txtXAxis": "X Axis", - "DE.Controllers.Main.txtYAxis": "Y Axis", - "DE.Controllers.Main.unknownErrorText": "Error tidak dikenal.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Browser Anda tidak didukung.", + "DE.Controllers.Main.txtTableOfFigures": "Daftar gambar", + "DE.Controllers.Main.txtTOCHeading": "Heading TOC", + "DE.Controllers.Main.txtTooLarge": "Nomor Terlalu Besar untuk Diformat", + "DE.Controllers.Main.txtTypeEquation": "Tulis persamaan disini.", + "DE.Controllers.Main.txtUndefBookmark": "Bookmark Tidak Terdefinisi", + "DE.Controllers.Main.txtXAxis": "Sumbu X", + "DE.Controllers.Main.txtYAxis": "Sumbu Y", + "DE.Controllers.Main.txtZeroDivide": "Pembagi Nol", + "DE.Controllers.Main.unknownErrorText": "Kesalahan tidak diketahui.", + "DE.Controllers.Main.unsupportedBrowserErrorText": "Peramban kamu tidak didukung.", + "DE.Controllers.Main.uploadDocExtMessage": "Format dokumen tidak diketahui.", + "DE.Controllers.Main.uploadDocFileCountMessage": "Tidak ada dokumen yang diupload.", + "DE.Controllers.Main.uploadDocSizeMessage": "Batas ukuran maksimum dokumen terlampaui.", "DE.Controllers.Main.uploadImageExtMessage": "Format gambar tidak dikenal.", "DE.Controllers.Main.uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.", - "DE.Controllers.Main.uploadImageSizeMessage": "Melebihi ukuran maksimal file.", + "DE.Controllers.Main.uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB.", "DE.Controllers.Main.uploadImageTextText": "Mengunggah gambar...", "DE.Controllers.Main.uploadImageTitleText": "Mengunggah Gambar", "DE.Controllers.Main.waitText": "Silahkan menunggu", - "DE.Controllers.Main.warnBrowserIE9": "Aplikasi ini tidak berjalan dengan baik di IE9. Gunakan IE10 atau versi yang terbaru", + "DE.Controllers.Main.warnBrowserIE9": "Aplikasi ini tidak berjalan dengan baik di IE9. Gunakan IE10 atau versi yang terbaru.", "DE.Controllers.Main.warnBrowserZoom": "Pengaturan pembesaran tampilan pada browser Anda saat ini tidak didukung sepenuhnya. Silakan atur ulang ke tampilan standar dengan menekan Ctrl+0.", + "DE.Controllers.Main.warnLicenseExceeded": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja.
Hubungi admin Anda untuk mempelajari lebih lanjut.", + "DE.Controllers.Main.warnLicenseExp": "Lisensi Anda sudah kadaluwarsa.
Silakan update lisensi Anda dan muat ulang halaman.", + "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Lisensi kadaluwarsa.
Anda tidak memiliki akses untuk editing dokumen secara keseluruhan.
Silakan hubungi admin Anda.", + "DE.Controllers.Main.warnLicenseLimitedRenewed": "Lisensi perlu diperbaharui.
Anda memiliki akses terbatas untuk edit dokumen.
Silakan hubungi admin Anda untuk mendapatkan akses penuh", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Anda sudah mencapai batas user untuk %1 editor. Hubungi admin Anda untuk mempelajari lebih lanjut.", + "DE.Controllers.Main.warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja.
Hubungi %1 tim sales untuk syarat personal upgrade.", + "DE.Controllers.Main.warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", "DE.Controllers.Main.warnProcessRightsChange": "Hak Anda untuk mengedit file ditolak.", - "DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", - "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", + "DE.Controllers.Navigation.txtBeginning": "Awal dokumen", + "DE.Controllers.Navigation.txtGotoBeginning": "Pergi ke awal dokumen", + "DE.Controllers.Statusbar.textDisconnect": "Koneksi terputus
Mencoba menghubungkan. Silakan periksa pengaturan koneksi.", + "DE.Controllers.Statusbar.textHasChanges": "Perubahan baru sudah dilacak", + "DE.Controllers.Statusbar.textSetTrackChanges": "Anda di mode Lacak Perubahan", + "DE.Controllers.Statusbar.textTrackChanges": "Dokumen dibuka dengan Lacak Perubahan aktif", + "DE.Controllers.Statusbar.tipReview": "Lacak perubahan", "DE.Controllers.Statusbar.zoomText": "Perbesar {0}%", - "DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
Do you want to continue?", - "DE.Controllers.Toolbar.notcriticalErrorTitle": "Warning", + "DE.Controllers.Toolbar.confirmAddFontName": "Font yang akan Anda simpan tidak tersedia di perangkat sekarang.
Style teks akan ditampilkan menggunakan salah satu font sistem, font yang disimpan akan digunakan jika sudah tersedia.
Apakah Anda ingin melanjutkan?", + "DE.Controllers.Toolbar.dataUrl": "Paste URL data", + "DE.Controllers.Toolbar.notcriticalErrorTitle": "Peringatan", "DE.Controllers.Toolbar.textAccent": "Aksen", "DE.Controllers.Toolbar.textBracket": "Tanda Kurung", "DE.Controllers.Toolbar.textEmptyImgUrl": "Anda harus menentukan URL gambar.", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Anda perlu melengkapkan URL.", "DE.Controllers.Toolbar.textFontSizeErr": "Input yang dimasukkan salah.
Silakan masukkan input numerik antara 1 dan 300", "DE.Controllers.Toolbar.textFraction": "Pecahan", "DE.Controllers.Toolbar.textFunction": "Fungsi", @@ -376,8 +913,10 @@ "DE.Controllers.Toolbar.textMatrix": "Matriks", "DE.Controllers.Toolbar.textOperator": "Operator", "DE.Controllers.Toolbar.textRadical": "Perakaran", + "DE.Controllers.Toolbar.textRecentlyUsed": "Baru Digunakan", "DE.Controllers.Toolbar.textScript": "Scripts", - "DE.Controllers.Toolbar.textSymbols": "Symbols", + "DE.Controllers.Toolbar.textSymbols": "Simbol", + "DE.Controllers.Toolbar.textTabForms": "Fomulir", "DE.Controllers.Toolbar.textWarning": "Peringatan", "DE.Controllers.Toolbar.txtAccent_Accent": "Akut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Tanda Panah Kanan-Kiri Atas", @@ -393,7 +932,7 @@ "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Kurung Kurawal Atas", "DE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Dengan Overbar", - "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y With Overbar", + "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y dengan overbar", "DE.Controllers.Toolbar.txtAccent_DDDot": "Triple Dot", "DE.Controllers.Toolbar.txtAccent_DDot": "Titik Dua", "DE.Controllers.Toolbar.txtAccent_Dot": "Titik", @@ -402,60 +941,60 @@ "DE.Controllers.Toolbar.txtAccent_GroupBot": "Pengelompokan Karakter Di Bawah", "DE.Controllers.Toolbar.txtAccent_GroupTop": "Pengelompokan Karakter Di Atas", "DE.Controllers.Toolbar.txtAccent_HarpoonL": "Panah Tiga Kiri Atas", - "DE.Controllers.Toolbar.txtAccent_HarpoonR": "Rightwards Harpoon Above", - "DE.Controllers.Toolbar.txtAccent_Hat": "Caping", - "DE.Controllers.Toolbar.txtAccent_Smile": "Prosodi ", + "DE.Controllers.Toolbar.txtAccent_HarpoonR": "Harpoon kanan di bawah", + "DE.Controllers.Toolbar.txtAccent_Hat": "Topi", + "DE.Controllers.Toolbar.txtAccent_Smile": "Prosodi", "DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", "DE.Controllers.Toolbar.txtBracket_Angle": "Tanda Kurung", "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Tanda Kurung dengan Pemisah", "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Tanda Kurung dengan Pemisah", - "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single Bracket", - "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single Bracket", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Kurung Kurawal Single", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Kurung Kurawal Single", "DE.Controllers.Toolbar.txtBracket_Curve": "Tanda Kurung", "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Tanda Kurung dengan Pemisah", - "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single Bracket", - "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single Bracket", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Kurung Kurawal Single", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Kurung Kurawal Single", "DE.Controllers.Toolbar.txtBracket_Custom_1": "Kasus (Dua Kondisi)", "DE.Controllers.Toolbar.txtBracket_Custom_2": "Kasus (Tiga Kondisi)", - "DE.Controllers.Toolbar.txtBracket_Custom_3": "Stack Object", - "DE.Controllers.Toolbar.txtBracket_Custom_4": "Stack Object", + "DE.Controllers.Toolbar.txtBracket_Custom_3": "Tumpuk objek", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "Tumpuk objek", "DE.Controllers.Toolbar.txtBracket_Custom_5": "Contoh Kasus", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Koefisien Binomial", "DE.Controllers.Toolbar.txtBracket_Custom_7": "Koefisien Binomial", "DE.Controllers.Toolbar.txtBracket_Line": "Tanda Kurung", - "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single Bracket", - "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single Bracket", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Kurung Kurawal Single", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Kurung Kurawal Single", "DE.Controllers.Toolbar.txtBracket_LineDouble": "Tanda Kurung", - "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single Bracket", - "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single Bracket", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Kurung Kurawal Single", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Kurung Kurawal Single", "DE.Controllers.Toolbar.txtBracket_LowLim": "Tanda Kurung", - "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single Bracket", - "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single Bracket", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Kurung Kurawal Single", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Kurung Kurawal Single", "DE.Controllers.Toolbar.txtBracket_Round": "Tanda Kurung", "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Tanda Kurung dengan Pemisah", - "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single Bracket", - "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single Bracket", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Kurung Kurawal Single", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Kurung Kurawal Single", "DE.Controllers.Toolbar.txtBracket_Square": "Tanda Kurung", "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Tanda Kurung", "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Tanda Kurung", - "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single Bracket", - "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single Bracket", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Kurung Kurawal Single", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Kurung Kurawal Single", "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Tanda Kurung", "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Tanda Kurung", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single Bracket", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single Bracket", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Kurung Kurawal Single", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Kurung Kurawal Single", "DE.Controllers.Toolbar.txtBracket_UppLim": "Tanda Kurung", - "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single Bracket", - "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single Bracket", - "DE.Controllers.Toolbar.txtFractionDiagonal": "Skewed Fraction", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Kurung Kurawal Single", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Kurung Kurawal Single", + "DE.Controllers.Toolbar.txtFractionDiagonal": "Pecahan miring", "DE.Controllers.Toolbar.txtFractionDifferential_1": "Diferensial", "DE.Controllers.Toolbar.txtFractionDifferential_2": "Diferensial", "DE.Controllers.Toolbar.txtFractionDifferential_3": "Diferensial", "DE.Controllers.Toolbar.txtFractionDifferential_4": "Diferensial", "DE.Controllers.Toolbar.txtFractionHorizontal": "Pecahan Linear", "DE.Controllers.Toolbar.txtFractionPi_2": "Pi Dibagi 2", - "DE.Controllers.Toolbar.txtFractionSmall": "Small Fraction", - "DE.Controllers.Toolbar.txtFractionVertical": "Stacked Fraction", + "DE.Controllers.Toolbar.txtFractionSmall": "Pecahan kecil", + "DE.Controllers.Toolbar.txtFractionVertical": "Pecahan bertumpuk", "DE.Controllers.Toolbar.txtFunction_1_Cos": "Fungsi Kosin Terbalik", "DE.Controllers.Toolbar.txtFunction_1_Cosh": "Fungsi Kosin Hiperbolik Terbalik", "DE.Controllers.Toolbar.txtFunction_1_Cot": "Fungsi Kotangen Terbalik", @@ -477,11 +1016,11 @@ "DE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", "DE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", "DE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formula", - "DE.Controllers.Toolbar.txtFunction_Sec": "Secant Function", + "DE.Controllers.Toolbar.txtFunction_Sec": "Fungsi sekan", "DE.Controllers.Toolbar.txtFunction_Sech": "Fungsi Sekans Hiperbolik", - "DE.Controllers.Toolbar.txtFunction_Sin": "Sine Function", + "DE.Controllers.Toolbar.txtFunction_Sin": "Fungsi sinus", "DE.Controllers.Toolbar.txtFunction_Sinh": "Fungsi Sin Hiperbolik", - "DE.Controllers.Toolbar.txtFunction_Tan": "Tangent Function", + "DE.Controllers.Toolbar.txtFunction_Tan": "Fungsi tangen", "DE.Controllers.Toolbar.txtFunction_Tanh": "Fungsi Tangen Hiperbolik", "DE.Controllers.Toolbar.txtIntegral": "Integral", "DE.Controllers.Toolbar.txtIntegral_dtheta": "Theta Diferensial", @@ -493,17 +1032,17 @@ "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integral Ganda", "DE.Controllers.Toolbar.txtIntegralOriented": "Integral Kontur", "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integral Kontur", - "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface Integral", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface Integral", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface Integral", + "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Permukaan integral", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Permukaan integral", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Permukaan integral", "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integral Kontur", - "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume Integral", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume Integral", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume Integral", + "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral", "DE.Controllers.Toolbar.txtIntegralSubSup": "Integral", - "DE.Controllers.Toolbar.txtIntegralTriple": "Triple Integral", - "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple Integral", - "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple Integral", + "DE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", @@ -514,9 +1053,9 @@ "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ko-Produk", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Ko-Produk", "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Ko-Produk", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Penjumlahan", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Penjumlahan", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Penjumlahan", "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produk", "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", @@ -534,11 +1073,11 @@ "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produk", "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produk", "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produk", - "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation", + "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Penjumlahan", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Penjumlahan", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Penjumlahan", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Penjumlahan", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Penjumlahan", "DE.Controllers.Toolbar.txtLargeOperator_Union": "Union", "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", @@ -552,8 +1091,8 @@ "DE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritma", "DE.Controllers.Toolbar.txtLimitLog_Max": "Maksimal", "DE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", - "DE.Controllers.Toolbar.txtMarginsH": "Top and bottom margins are too high for a given page height", - "DE.Controllers.Toolbar.txtMarginsW": "Left and right margins are too wide for a given page width", + "DE.Controllers.Toolbar.txtMarginsH": "Margin atas dan bawah terlalu jauh untuk halaman setinggi ini", + "DE.Controllers.Toolbar.txtMarginsW": "Margin kiri dan kanan terlalu besar dengan lebar halaman yang ada", "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Matriks Kosong", "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Matriks Kosong", "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Matriks Kosong", @@ -569,7 +1108,7 @@ "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Titik Bawah", "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Titik Tengah", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Titik Diagonal", - "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical Dots", + "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Titik Vertikal", "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse Matrix", "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix", "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Matriks Identitas", @@ -580,7 +1119,7 @@ "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Tanda Panah Kanan-Kiri Atas", "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Panah Kiri Bawah", "DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Panah Kiri Atas", - "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Rightwards Arrow Below", + "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Panah kanan di bawah", "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Tanda Panah ke Kanan Atas", "DE.Controllers.Toolbar.txtOperator_ColonEquals": "Titik Dua", "DE.Controllers.Toolbar.txtOperator_Custom_1": "Yields", @@ -591,26 +1130,26 @@ "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Tanda Panah Kanan-Kiri Atas", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Panah Kiri Bawah", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Panah Kiri Atas", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards Arrow Below", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Rightwards Arrow Above", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Panah kanan di bawah", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Tanda Panah ke Kanan Atas", "DE.Controllers.Toolbar.txtOperator_EqualsEquals": "Setara Setara", "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Sama Dengan", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Sama Dengan", "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Diukur Berdasar", "DE.Controllers.Toolbar.txtRadicalCustom_1": "Akar", "DE.Controllers.Toolbar.txtRadicalCustom_2": "Akar", - "DE.Controllers.Toolbar.txtRadicalRoot_2": "Square Root With Degree", + "DE.Controllers.Toolbar.txtRadicalRoot_2": "Akar dengan pangkat", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Akar Pangkat Tiga", "DE.Controllers.Toolbar.txtRadicalRoot_n": "Akar Dengan Derajat", - "DE.Controllers.Toolbar.txtRadicalSqrt": "Square Root", - "DE.Controllers.Toolbar.txtScriptCustom_1": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_2": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_3": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_4": "Script", - "DE.Controllers.Toolbar.txtScriptSub": "Subscript", - "DE.Controllers.Toolbar.txtScriptSubSup": "Subscript-Superscript", + "DE.Controllers.Toolbar.txtRadicalSqrt": "Akar pangkat dua", + "DE.Controllers.Toolbar.txtScriptCustom_1": "Akar", + "DE.Controllers.Toolbar.txtScriptCustom_2": "Akar", + "DE.Controllers.Toolbar.txtScriptCustom_3": "Akar", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Akar", + "DE.Controllers.Toolbar.txtScriptSub": "Subskrip", + "DE.Controllers.Toolbar.txtScriptSubSup": "Subskrip-SuperskripKiri", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Subskrip-SuperskripKiri", - "DE.Controllers.Toolbar.txtScriptSup": "Superscript", + "DE.Controllers.Toolbar.txtScriptSup": "Superskrip", "DE.Controllers.Toolbar.txtSymbol_about": "Kira-Kira", "DE.Controllers.Toolbar.txtSymbol_additional": "Komplemen", "DE.Controllers.Toolbar.txtSymbol_aleph": "Alef", @@ -627,7 +1166,7 @@ "DE.Controllers.Toolbar.txtSymbol_chi": "Chi", "DE.Controllers.Toolbar.txtSymbol_cong": "Kira-Kira Setara Dengan", "DE.Controllers.Toolbar.txtSymbol_cup": "Union", - "DE.Controllers.Toolbar.txtSymbol_ddots": "Serong Kanan Bawah ", + "DE.Controllers.Toolbar.txtSymbol_ddots": "Serong Kanan Bawah", "DE.Controllers.Toolbar.txtSymbol_degree": "Derajat", "DE.Controllers.Toolbar.txtSymbol_delta": "Delta", "DE.Controllers.Toolbar.txtSymbol_div": "Tanda Pembagi", @@ -637,7 +1176,7 @@ "DE.Controllers.Toolbar.txtSymbol_equals": "Setara", "DE.Controllers.Toolbar.txtSymbol_equiv": "Identik Dengan", "DE.Controllers.Toolbar.txtSymbol_eta": "Eta", - "DE.Controllers.Toolbar.txtSymbol_exists": "There Exist", + "DE.Controllers.Toolbar.txtSymbol_exists": "Ada di sana", "DE.Controllers.Toolbar.txtSymbol_factorial": "Faktorial", "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Derajat Fahrenheit", "DE.Controllers.Toolbar.txtSymbol_forall": "Untuk Semua", @@ -663,7 +1202,7 @@ "DE.Controllers.Toolbar.txtSymbol_neq": "Tidak Sama Dengan", "DE.Controllers.Toolbar.txtSymbol_ni": "Sertakan sebagai Anggota", "DE.Controllers.Toolbar.txtSymbol_not": "Tanda Negasi", - "DE.Controllers.Toolbar.txtSymbol_notexists": "There Does Not Exist", + "DE.Controllers.Toolbar.txtSymbol_notexists": "Tidak ada di sana", "DE.Controllers.Toolbar.txtSymbol_nu": "Nu", "DE.Controllers.Toolbar.txtSymbol_o": "Omikron", "DE.Controllers.Toolbar.txtSymbol_omega": "Omega", @@ -677,48 +1216,78 @@ "DE.Controllers.Toolbar.txtSymbol_psi": "Psi", "DE.Controllers.Toolbar.txtSymbol_qdrt": "Akar Kuadrat", "DE.Controllers.Toolbar.txtSymbol_qed": "Pembuktian Akhir", - "DE.Controllers.Toolbar.txtSymbol_rddots": "Up Right Diagonal Ellipsis", + "DE.Controllers.Toolbar.txtSymbol_rddots": "Elipsis diagonal kanan atas", "DE.Controllers.Toolbar.txtSymbol_rho": "Rho", "DE.Controllers.Toolbar.txtSymbol_rightarrow": "Tanda Panah ke Kanan", "DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "DE.Controllers.Toolbar.txtSymbol_sqrt": "Tanda Akar", "DE.Controllers.Toolbar.txtSymbol_tau": "Tau", - "DE.Controllers.Toolbar.txtSymbol_therefore": "Therefore", + "DE.Controllers.Toolbar.txtSymbol_therefore": "Oleh karena itu", "DE.Controllers.Toolbar.txtSymbol_theta": "Theta", "DE.Controllers.Toolbar.txtSymbol_times": "Tanda Perkalian", - "DE.Controllers.Toolbar.txtSymbol_uparrow": "Up Arrow", + "DE.Controllers.Toolbar.txtSymbol_uparrow": "Panah keatas", "DE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Varian Epsilon", "DE.Controllers.Toolbar.txtSymbol_varphi": "Varian Phi", "DE.Controllers.Toolbar.txtSymbol_varpi": "Varian Pi", "DE.Controllers.Toolbar.txtSymbol_varrho": "Varian Rho", - "DE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Variant", - "DE.Controllers.Toolbar.txtSymbol_vartheta": "Theta Variant", - "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis", + "DE.Controllers.Toolbar.txtSymbol_varsigma": "Varian Sigma", + "DE.Controllers.Toolbar.txtSymbol_vartheta": "Varian Theta", + "DE.Controllers.Toolbar.txtSymbol_vdots": "Elipsis vertikal", "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "DE.Controllers.Viewport.textFitPage": "Sesuaikan Halaman", "DE.Controllers.Viewport.textFitWidth": "Sesuaikan Lebar", + "DE.Controllers.Viewport.txtDarkMode": "Mode gelap", + "DE.Views.AddNewCaptionLabelDialog.textLabel": "Label:", + "DE.Views.AddNewCaptionLabelDialog.textLabelError": "Label tidak boleh kosong.", "DE.Views.BookmarksDialog.textAdd": "Tambahkan", + "DE.Views.BookmarksDialog.textBookmarkName": "Nama bookmark", "DE.Views.BookmarksDialog.textClose": "Tutup", "DE.Views.BookmarksDialog.textCopy": "Salin", "DE.Views.BookmarksDialog.textDelete": "Hapus", + "DE.Views.BookmarksDialog.textGetLink": "Dapatkan Link", + "DE.Views.BookmarksDialog.textGoto": "Pergi ke", + "DE.Views.BookmarksDialog.textHidden": "Bookmarks tersembunyi", "DE.Views.BookmarksDialog.textLocation": "Lokasi", "DE.Views.BookmarksDialog.textName": "Nama", "DE.Views.BookmarksDialog.textSort": "Urutkan berdasar", - "DE.Views.CaptionDialog.textAfter": "setelah", + "DE.Views.BookmarksDialog.textTitle": "Bookmarks", + "DE.Views.BookmarksDialog.txtInvalidName": "Nama bookmark hanya bisa dari alfabet, angka, dan garis bawah, dan harus dimulai dengan alfabet", + "DE.Views.CaptionDialog.textAdd": "Tambah label", + "DE.Views.CaptionDialog.textAfter": "Sesudah", "DE.Views.CaptionDialog.textBefore": "Sebelum", + "DE.Views.CaptionDialog.textCaption": "Caption", + "DE.Views.CaptionDialog.textChapter": "Bab dimulai dengan style", + "DE.Views.CaptionDialog.textChapterInc": "Sertakan nomor bab", "DE.Views.CaptionDialog.textColon": "Titik dua", + "DE.Views.CaptionDialog.textDash": "garis putus-putus", + "DE.Views.CaptionDialog.textDelete": "Hapus label", + "DE.Views.CaptionDialog.textEquation": "Persamaan", + "DE.Views.CaptionDialog.textExamples": "Contoh Tabel 2-A, Gambar 1.IV", + "DE.Views.CaptionDialog.textExclude": "Tidak sertakan label dari caption", + "DE.Views.CaptionDialog.textFigure": "Gambar", + "DE.Views.CaptionDialog.textHyphen": "hyphen", "DE.Views.CaptionDialog.textInsert": "Sisipkan", + "DE.Views.CaptionDialog.textLabel": "Label", + "DE.Views.CaptionDialog.textLongDash": "dash panjang", "DE.Views.CaptionDialog.textNumbering": "Penomoran", + "DE.Views.CaptionDialog.textPeriod": "periode", + "DE.Views.CaptionDialog.textSeparator": "Gunakan separator", "DE.Views.CaptionDialog.textTable": "Tabel", + "DE.Views.CaptionDialog.textTitle": "Sisipkan Caption", "DE.Views.CellsAddDialog.textCol": "Kolom", + "DE.Views.CellsAddDialog.textDown": "Di bawah cursor", + "DE.Views.CellsAddDialog.textLeft": "Ke kiri", + "DE.Views.CellsAddDialog.textRight": "Ke kanan", "DE.Views.CellsAddDialog.textRow": "Baris", + "DE.Views.CellsAddDialog.textTitle": "Sisipkan Beberapa", + "DE.Views.CellsAddDialog.textUp": "Diatas kursor", "DE.Views.ChartSettings.textAdvanced": "Tampilkan pengaturan lanjut", "DE.Views.ChartSettings.textChartType": "Ubah Tipe Bagan", "DE.Views.ChartSettings.textEditData": "Edit Data", - "DE.Views.ChartSettings.textHeight": "Ketinggian", - "DE.Views.ChartSettings.textOriginalSize": "Ukuran Standar", + "DE.Views.ChartSettings.textHeight": "Tinggi", + "DE.Views.ChartSettings.textOriginalSize": "Ukuran Sebenarnya", "DE.Views.ChartSettings.textSize": "Ukuran", "DE.Views.ChartSettings.textStyle": "Model", "DE.Views.ChartSettings.textUndock": "Lepaskan dari panel", @@ -734,20 +1303,85 @@ "DE.Views.ChartSettings.txtTopAndBottom": "Atas dan bawah", "DE.Views.ControlSettingsDialog.strGeneral": "Umum", "DE.Views.ControlSettingsDialog.textAdd": "Tambahkan", + "DE.Views.ControlSettingsDialog.textAppearance": "Tampilan", + "DE.Views.ControlSettingsDialog.textApplyAll": "Terapkan untuk Semua", + "DE.Views.ControlSettingsDialog.textBox": "Kotak Pembatas", "DE.Views.ControlSettingsDialog.textChange": "Sunting", + "DE.Views.ControlSettingsDialog.textCheckbox": "Kotak centang", + "DE.Views.ControlSettingsDialog.textChecked": "Simbol yang dicentang", "DE.Views.ControlSettingsDialog.textColor": "Warna", + "DE.Views.ControlSettingsDialog.textCombobox": "Kotak combo", + "DE.Views.ControlSettingsDialog.textDate": "Format Tanggal", "DE.Views.ControlSettingsDialog.textDelete": "Hapus", + "DE.Views.ControlSettingsDialog.textDisplayName": "Nama tampilan", + "DE.Views.ControlSettingsDialog.textDown": "Bawah", + "DE.Views.ControlSettingsDialog.textDropDown": "List drop-down", + "DE.Views.ControlSettingsDialog.textFormat": "Tampilkan tanggal seperti ini", "DE.Views.ControlSettingsDialog.textLang": "Bahasa", + "DE.Views.ControlSettingsDialog.textLock": "Mengunci", "DE.Views.ControlSettingsDialog.textName": "Judul", - "DE.Views.ControlSettingsDialog.textNone": "tidak ada", + "DE.Views.ControlSettingsDialog.textNone": "Tidak ada", + "DE.Views.ControlSettingsDialog.textPlaceholder": "Placeholder", + "DE.Views.ControlSettingsDialog.textShowAs": "Tampilkan sebagai", + "DE.Views.ControlSettingsDialog.textSystemColor": "Sistem", "DE.Views.ControlSettingsDialog.textTag": "Tandai", + "DE.Views.ControlSettingsDialog.textTitle": "Pengaturan Kontrol Konten", + "DE.Views.ControlSettingsDialog.textUnchecked": "Simbol tidak dicentang", "DE.Views.ControlSettingsDialog.textUp": "Naik", "DE.Views.ControlSettingsDialog.textValue": "Nilai", + "DE.Views.ControlSettingsDialog.tipChange": "Ganti simbol", + "DE.Views.ControlSettingsDialog.txtLockDelete": "Kontrol konten tidak bisa dihapus", + "DE.Views.ControlSettingsDialog.txtLockEdit": "Konten tidak bisa diedit", + "DE.Views.CrossReferenceDialog.textAboveBelow": "Atas/bawah", + "DE.Views.CrossReferenceDialog.textBookmark": "Bookmark", + "DE.Views.CrossReferenceDialog.textBookmarkText": "Bookmark teks", + "DE.Views.CrossReferenceDialog.textCaption": "Semua caption", + "DE.Views.CrossReferenceDialog.textEmpty": "Permintaan referensi kosong.", + "DE.Views.CrossReferenceDialog.textEndnote": "Endnote", + "DE.Views.CrossReferenceDialog.textEndNoteNum": "Nomor endnote", + "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Nomor endnote (diformat)", + "DE.Views.CrossReferenceDialog.textEquation": "Persamaan", + "DE.Views.CrossReferenceDialog.textFigure": "Gambar", + "DE.Views.CrossReferenceDialog.textFootnote": "Footnote", + "DE.Views.CrossReferenceDialog.textHeading": "Headings", + "DE.Views.CrossReferenceDialog.textHeadingNum": "Nomor heading", + "DE.Views.CrossReferenceDialog.textHeadingNumFull": "Nomor heading (konteks penuh)", + "DE.Views.CrossReferenceDialog.textHeadingNumNo": "Nomor heading (tanpa penuh)", + "DE.Views.CrossReferenceDialog.textHeadingText": "Teks heading", + "DE.Views.CrossReferenceDialog.textIncludeAbove": "Sertakan di atas/bawah", "DE.Views.CrossReferenceDialog.textInsert": "Sisipkan", + "DE.Views.CrossReferenceDialog.textInsertAs": "Sisipkan sebagai hyperlink", + "DE.Views.CrossReferenceDialog.textLabelNum": "Hanya label dan nomor", + "DE.Views.CrossReferenceDialog.textNoteNum": "Nomor footnote", + "DE.Views.CrossReferenceDialog.textNoteNumForm": "Nomor footnote (diformat)", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "Hanya teks caption", + "DE.Views.CrossReferenceDialog.textPageNum": "Nomor halaman", + "DE.Views.CrossReferenceDialog.textParagraph": "Barang yang dinomori", + "DE.Views.CrossReferenceDialog.textParaNum": "Nomor paragraf", + "DE.Views.CrossReferenceDialog.textParaNumFull": "Nomor paragraf (konteks penuh)", + "DE.Views.CrossReferenceDialog.textParaNumNo": "Nomor paragraf (tanpa konteks)", + "DE.Views.CrossReferenceDialog.textSeparate": "Pisahkan nomor dengan", "DE.Views.CrossReferenceDialog.textTable": "Tabel", + "DE.Views.CrossReferenceDialog.textText": "Teks paragraf", + "DE.Views.CrossReferenceDialog.textWhich": "Untuk caption ini", + "DE.Views.CrossReferenceDialog.textWhichBookmark": "Untuk bookmark ini", + "DE.Views.CrossReferenceDialog.textWhichEndnote": "Untuk endnote ini", + "DE.Views.CrossReferenceDialog.textWhichHeading": "Untuk heading ini", + "DE.Views.CrossReferenceDialog.textWhichNote": "Untuk footnote ini", + "DE.Views.CrossReferenceDialog.textWhichPara": "Untuk barang yang dinomorkan ini", + "DE.Views.CrossReferenceDialog.txtReference": "Sisipkan referensi ke", + "DE.Views.CrossReferenceDialog.txtTitle": "Cross-reference", + "DE.Views.CrossReferenceDialog.txtType": "Tipe referensi", "DE.Views.CustomColumnsDialog.textColumns": "Jumlah Kolom", + "DE.Views.CustomColumnsDialog.textSeparator": "Pembagi kolom", + "DE.Views.CustomColumnsDialog.textSpacing": "Spacing di antara kolom", "DE.Views.CustomColumnsDialog.textTitle": "Kolom", + "DE.Views.DateTimeDialog.confirmDefault": "Atur format default untuk {0}: \"{1}\"", + "DE.Views.DateTimeDialog.textDefault": "Atur sesuai default", + "DE.Views.DateTimeDialog.textFormat": "Format", "DE.Views.DateTimeDialog.textLang": "Bahasa", + "DE.Views.DateTimeDialog.textUpdate": "Update secara otomatis", + "DE.Views.DateTimeDialog.txtTitle": "Tanggal & Jam", "DE.Views.DocumentHolder.aboveText": "Di atas", "DE.Views.DocumentHolder.addCommentText": "Tambahkan Komentar", "DE.Views.DocumentHolder.advancedDropCapText": "Pengaturan Drop Cap", @@ -758,6 +1392,7 @@ "DE.Views.DocumentHolder.alignmentText": "Perataan", "DE.Views.DocumentHolder.belowText": "Di bawah", "DE.Views.DocumentHolder.breakBeforeText": "Jeda halaman sebelum", + "DE.Views.DocumentHolder.bulletsText": "Butir & Penomoran", "DE.Views.DocumentHolder.cellAlignText": "Sel Rata Atas", "DE.Views.DocumentHolder.cellText": "Sel", "DE.Views.DocumentHolder.centerText": "Tengah", @@ -767,10 +1402,10 @@ "DE.Views.DocumentHolder.deleteRowText": "Hapus Baris", "DE.Views.DocumentHolder.deleteTableText": "Hapus Tabel", "DE.Views.DocumentHolder.deleteText": "Hapus", - "DE.Views.DocumentHolder.direct270Text": "Rotate at 270°", - "DE.Views.DocumentHolder.direct90Text": "Rotate at 90°", - "DE.Views.DocumentHolder.directHText": "Horizontal", - "DE.Views.DocumentHolder.directionText": "Text Direction", + "DE.Views.DocumentHolder.direct270Text": "Rotasi Teks Keatas", + "DE.Views.DocumentHolder.direct90Text": "Rotasi Teks Kebawah", + "DE.Views.DocumentHolder.directHText": "Horisontal", + "DE.Views.DocumentHolder.directionText": "Arah Teks", "DE.Views.DocumentHolder.editChartText": "Edit Data", "DE.Views.DocumentHolder.editFooterText": "Edit Footer", "DE.Views.DocumentHolder.editHeaderText": "Edit Header", @@ -795,12 +1430,12 @@ "DE.Views.DocumentHolder.moreText": "Varian lain...", "DE.Views.DocumentHolder.noSpellVariantsText": "Tidak ada varian", "DE.Views.DocumentHolder.notcriticalErrorTitle": "Peringatan", - "DE.Views.DocumentHolder.originalSizeText": "Ukuran Standar", + "DE.Views.DocumentHolder.originalSizeText": "Ukuran Sebenarnya", "DE.Views.DocumentHolder.paragraphText": "Paragraf", "DE.Views.DocumentHolder.removeHyperlinkText": "Hapus Hyperlink", "DE.Views.DocumentHolder.rightText": "Kanan", "DE.Views.DocumentHolder.rowText": "Baris", - "DE.Views.DocumentHolder.saveStyleText": "Create new style", + "DE.Views.DocumentHolder.saveStyleText": "Buat style baru", "DE.Views.DocumentHolder.selectCellText": "Pilih Sel", "DE.Views.DocumentHolder.selectColumnText": "Pilih Kolom", "DE.Views.DocumentHolder.selectRowText": "Pilih Baris", @@ -810,116 +1445,172 @@ "DE.Views.DocumentHolder.spellcheckText": "Periksa ejaan", "DE.Views.DocumentHolder.splitCellsText": "Pisahkan Sel...", "DE.Views.DocumentHolder.splitCellTitleText": "Pisahkan Sel", - "DE.Views.DocumentHolder.styleText": "Formatting as Style", + "DE.Views.DocumentHolder.strDelete": "Hilangkan Tandatangan", + "DE.Views.DocumentHolder.strDetails": "Detail Tanda Tangan", + "DE.Views.DocumentHolder.strSetup": "Setup Tanda Tangan", + "DE.Views.DocumentHolder.strSign": "Tandatangan", + "DE.Views.DocumentHolder.styleText": "Format sebagai Style", "DE.Views.DocumentHolder.tableText": "Tabel", + "DE.Views.DocumentHolder.textAccept": "Terima perubahan", "DE.Views.DocumentHolder.textAlign": "Ratakan", "DE.Views.DocumentHolder.textArrange": "Susun", "DE.Views.DocumentHolder.textArrangeBack": "Jalankan di Background", "DE.Views.DocumentHolder.textArrangeBackward": "Mundurkan", "DE.Views.DocumentHolder.textArrangeForward": "Majukan", "DE.Views.DocumentHolder.textArrangeFront": "Tampilkan di Halaman Muka", + "DE.Views.DocumentHolder.textCells": "Sel", + "DE.Views.DocumentHolder.textCol": "Hapus semua kolom", + "DE.Views.DocumentHolder.textContentControls": "Kontrol konten", + "DE.Views.DocumentHolder.textContinueNumbering": "Lanjut penomoran", "DE.Views.DocumentHolder.textCopy": "Salin", - "DE.Views.DocumentHolder.textCropFill": "Isian", + "DE.Views.DocumentHolder.textCrop": "Isian", + "DE.Views.DocumentHolder.textCropFill": "Isi", + "DE.Views.DocumentHolder.textCropFit": "Fit", "DE.Views.DocumentHolder.textCut": "Potong", + "DE.Views.DocumentHolder.textDistributeCols": "Distribusikan kolom", + "DE.Views.DocumentHolder.textDistributeRows": "Distribusikan baris", + "DE.Views.DocumentHolder.textEditControls": "Pengaturan Kontrol Konten", + "DE.Views.DocumentHolder.textEditPoints": "Edit Titik", "DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Pembatas Potongan Teks", + "DE.Views.DocumentHolder.textFlipH": "Flip Horizontal", + "DE.Views.DocumentHolder.textFlipV": "Flip Vertikal", + "DE.Views.DocumentHolder.textFollow": "Ikuti pergerakan", "DE.Views.DocumentHolder.textFromFile": "Dari File", + "DE.Views.DocumentHolder.textFromStorage": "Dari Penyimpanan", "DE.Views.DocumentHolder.textFromUrl": "Dari URL", + "DE.Views.DocumentHolder.textJoinList": "Gabung ke list sebelumnya", + "DE.Views.DocumentHolder.textLeft": "Pindahkan sel ke kiri", + "DE.Views.DocumentHolder.textNest": "Nest table", "DE.Views.DocumentHolder.textNextPage": "Halaman Selanjutnya", + "DE.Views.DocumentHolder.textNumberingValue": "Penomoran Nilai", "DE.Views.DocumentHolder.textPaste": "Tempel", "DE.Views.DocumentHolder.textPrevPage": "Halaman Sebelumnya", + "DE.Views.DocumentHolder.textRefreshField": "Update area", + "DE.Views.DocumentHolder.textReject": "Tolak Perubahan", + "DE.Views.DocumentHolder.textRemCheckBox": "Hilangkan Checkbox", + "DE.Views.DocumentHolder.textRemComboBox": "Hilangkan Kotak Combo", + "DE.Views.DocumentHolder.textRemDropdown": "Hilangkan Dropdown", + "DE.Views.DocumentHolder.textRemField": "Hilangkan Area Teks", "DE.Views.DocumentHolder.textRemove": "Hapus", + "DE.Views.DocumentHolder.textRemoveControl": "Hilangkan Kontrol Konten", + "DE.Views.DocumentHolder.textRemPicture": "Hilangkan Gambar", + "DE.Views.DocumentHolder.textRemRadioBox": "Hilangkan Tombol Radio", "DE.Views.DocumentHolder.textReplace": "Ganti Gambar", + "DE.Views.DocumentHolder.textRotate": "Rotasi", + "DE.Views.DocumentHolder.textRotate270": "Rotasi 90° Berlawanan Jarum Jam", + "DE.Views.DocumentHolder.textRotate90": "Rotasi 90° Searah Jarum Jam", + "DE.Views.DocumentHolder.textRow": "Hapus semua baris", + "DE.Views.DocumentHolder.textSeparateList": "Pisahkan list", "DE.Views.DocumentHolder.textSettings": "Pengaturan", + "DE.Views.DocumentHolder.textSeveral": "Beberapa Baris/Kolom", "DE.Views.DocumentHolder.textShapeAlignBottom": "Rata Bawah", "DE.Views.DocumentHolder.textShapeAlignCenter": "Rata Tengah", "DE.Views.DocumentHolder.textShapeAlignLeft": "Rata Kiri", "DE.Views.DocumentHolder.textShapeAlignMiddle": "Rata di Tengah", "DE.Views.DocumentHolder.textShapeAlignRight": "Rata Kanan", "DE.Views.DocumentHolder.textShapeAlignTop": "Rata Atas", + "DE.Views.DocumentHolder.textStartNewList": "Mulai list baru", + "DE.Views.DocumentHolder.textStartNumberingFrom": "Atur nilai penomoran", + "DE.Views.DocumentHolder.textTitleCellsRemove": "Hapus Sel", "DE.Views.DocumentHolder.textTOC": "Daftar Isi", + "DE.Views.DocumentHolder.textTOCSettings": "Pengaturan daftar isi", "DE.Views.DocumentHolder.textUndo": "Batalkan", + "DE.Views.DocumentHolder.textUpdateAll": "Update keseluruhan tabel", + "DE.Views.DocumentHolder.textUpdatePages": "Update hanya nomor halaman", + "DE.Views.DocumentHolder.textUpdateTOC": "Update daftar isi", "DE.Views.DocumentHolder.textWrap": "Bentuk Potongan", "DE.Views.DocumentHolder.tipIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", - "DE.Views.DocumentHolder.txtAddBottom": "Add bottom border", - "DE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar", - "DE.Views.DocumentHolder.txtAddHor": "Add horizontal line", - "DE.Views.DocumentHolder.txtAddLB": "Add left bottom line", - "DE.Views.DocumentHolder.txtAddLeft": "Add left border", - "DE.Views.DocumentHolder.txtAddLT": "Add left top line", - "DE.Views.DocumentHolder.txtAddRight": "Add right border", - "DE.Views.DocumentHolder.txtAddTop": "Add top border", - "DE.Views.DocumentHolder.txtAddVer": "Add vertical line", - "DE.Views.DocumentHolder.txtAlignToChar": "Align to character", + "DE.Views.DocumentHolder.toDictionaryText": "Tambah ke Kamus", + "DE.Views.DocumentHolder.txtAddBottom": "Tambah pembatas bawah", + "DE.Views.DocumentHolder.txtAddFractionBar": "Tambah bar pecahan", + "DE.Views.DocumentHolder.txtAddHor": "Tambah garis horizontal", + "DE.Views.DocumentHolder.txtAddLB": "Tambah garis kiri bawah", + "DE.Views.DocumentHolder.txtAddLeft": "Tambah pembatas kiri", + "DE.Views.DocumentHolder.txtAddLT": "Tambah garis kiri atas", + "DE.Views.DocumentHolder.txtAddRight": "Tambah pembatas kiri", + "DE.Views.DocumentHolder.txtAddTop": "Tambah pembatas atas", + "DE.Views.DocumentHolder.txtAddVer": "Tambah garis vertikal", + "DE.Views.DocumentHolder.txtAlignToChar": "Rata dengan karakter", "DE.Views.DocumentHolder.txtBehind": "Di belakang", - "DE.Views.DocumentHolder.txtBorderProps": "Border properties", + "DE.Views.DocumentHolder.txtBorderProps": "Properti pembatas", "DE.Views.DocumentHolder.txtBottom": "Bawah", - "DE.Views.DocumentHolder.txtColumnAlign": "Column alignment", - "DE.Views.DocumentHolder.txtDecreaseArg": "Decrease argument size", - "DE.Views.DocumentHolder.txtDeleteArg": "Delete argument", - "DE.Views.DocumentHolder.txtDeleteBreak": "Delete manual break", - "DE.Views.DocumentHolder.txtDeleteChars": "Delete enclosing characters", - "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Delete enclosing characters and separators", - "DE.Views.DocumentHolder.txtDeleteEq": "Delete equation", - "DE.Views.DocumentHolder.txtDeleteGroupChar": "Delete char", - "DE.Views.DocumentHolder.txtDeleteRadical": "Delete radical", - "DE.Views.DocumentHolder.txtFractionLinear": "Change to linear fraction", - "DE.Views.DocumentHolder.txtFractionSkewed": "Change to skewed fraction", - "DE.Views.DocumentHolder.txtFractionStacked": "Change to stacked fraction", + "DE.Views.DocumentHolder.txtColumnAlign": "Rata kolom", + "DE.Views.DocumentHolder.txtDecreaseArg": "Kurangi ukuran argumen", + "DE.Views.DocumentHolder.txtDeleteArg": "Hapus argumen", + "DE.Views.DocumentHolder.txtDeleteBreak": "Hapus break manual", + "DE.Views.DocumentHolder.txtDeleteChars": "Hapus karakter terlampir", + "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Hapus karakter dan separator terlampir", + "DE.Views.DocumentHolder.txtDeleteEq": "Hapus persamaan", + "DE.Views.DocumentHolder.txtDeleteGroupChar": "Hapus char", + "DE.Views.DocumentHolder.txtDeleteRadical": "Hapus radikal", + "DE.Views.DocumentHolder.txtDistribHor": "Distribusikan Horizontal", + "DE.Views.DocumentHolder.txtDistribVert": "Distribusikan Vertikal", + "DE.Views.DocumentHolder.txtEmpty": "(Kosong)", + "DE.Views.DocumentHolder.txtFractionLinear": "Ubah ke pecahan linear", + "DE.Views.DocumentHolder.txtFractionSkewed": "Ubah ke pecahan", + "DE.Views.DocumentHolder.txtFractionStacked": "Ubah ke pecahan bertumpuk", "DE.Views.DocumentHolder.txtGroup": "Grup", - "DE.Views.DocumentHolder.txtGroupCharOver": "Char over text", - "DE.Views.DocumentHolder.txtGroupCharUnder": "Char under text", - "DE.Views.DocumentHolder.txtHideBottom": "Hide bottom border", - "DE.Views.DocumentHolder.txtHideBottomLimit": "Hide bottom limit", - "DE.Views.DocumentHolder.txtHideCloseBracket": "Hide closing bracket", - "DE.Views.DocumentHolder.txtHideDegree": "Hide degree", - "DE.Views.DocumentHolder.txtHideHor": "Hide horizontal line", - "DE.Views.DocumentHolder.txtHideLB": "Hide left bottom line", - "DE.Views.DocumentHolder.txtHideLeft": "Hide left border", - "DE.Views.DocumentHolder.txtHideLT": "Hide left top line", - "DE.Views.DocumentHolder.txtHideOpenBracket": "Hide opening bracket", - "DE.Views.DocumentHolder.txtHidePlaceholder": "Hide placeholder", - "DE.Views.DocumentHolder.txtHideRight": "Hide right border", - "DE.Views.DocumentHolder.txtHideTop": "Hide top border", - "DE.Views.DocumentHolder.txtHideTopLimit": "Hide top limit", - "DE.Views.DocumentHolder.txtHideVer": "Hide vertical line", - "DE.Views.DocumentHolder.txtIncreaseArg": "Increase argument size", + "DE.Views.DocumentHolder.txtGroupCharOver": "Karakter di atas teks", + "DE.Views.DocumentHolder.txtGroupCharUnder": "Karakter di bawah teks", + "DE.Views.DocumentHolder.txtHideBottom": "Sembunyikan pembatas bawah", + "DE.Views.DocumentHolder.txtHideBottomLimit": "Sembunyikan nilai batas bawah", + "DE.Views.DocumentHolder.txtHideCloseBracket": "Sembunyikan tanda kurung tutup", + "DE.Views.DocumentHolder.txtHideDegree": "Sembunyikan degree", + "DE.Views.DocumentHolder.txtHideHor": "Sembunyikan garis horizontal", + "DE.Views.DocumentHolder.txtHideLB": "Sembunyikan garis bawah kiri", + "DE.Views.DocumentHolder.txtHideLeft": "Sembunyikan pembatas kiri", + "DE.Views.DocumentHolder.txtHideLT": "Sembunyikan garis atas kiri", + "DE.Views.DocumentHolder.txtHideOpenBracket": "Sembunyikan tanda kurung buka", + "DE.Views.DocumentHolder.txtHidePlaceholder": "Sembunyikan placeholder", + "DE.Views.DocumentHolder.txtHideRight": "Sembunyikan pembatas kanan", + "DE.Views.DocumentHolder.txtHideTop": "Sembunyikan pembatas atas", + "DE.Views.DocumentHolder.txtHideTopLimit": "Sembunyikan nilai batas atas", + "DE.Views.DocumentHolder.txtHideVer": "Sembunyikan garis vertikal", + "DE.Views.DocumentHolder.txtIncreaseArg": "Tingkatkan ukuran argumen", "DE.Views.DocumentHolder.txtInFront": "Di depan", "DE.Views.DocumentHolder.txtInline": "Berderet", - "DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after", - "DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before", - "DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break", - "DE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after", - "DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before", - "DE.Views.DocumentHolder.txtLimitChange": "Change limits location", - "DE.Views.DocumentHolder.txtLimitOver": "Limit over text", - "DE.Views.DocumentHolder.txtLimitUnder": "Limit under text", - "DE.Views.DocumentHolder.txtMatchBrackets": "Match brackets to argument height", - "DE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment", - "DE.Views.DocumentHolder.txtOverbar": "Bar over text", - "DE.Views.DocumentHolder.txtPressLink": "Tekan CTRL dan klik tautan", - "DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", - "DE.Views.DocumentHolder.txtRemLimit": "Remove limit", - "DE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character", - "DE.Views.DocumentHolder.txtRemoveBar": "Remove bar", - "DE.Views.DocumentHolder.txtRemScripts": "Remove scripts", - "DE.Views.DocumentHolder.txtRemSubscript": "Remove subscript", - "DE.Views.DocumentHolder.txtRemSuperscript": "Remove superscript", - "DE.Views.DocumentHolder.txtScriptsAfter": "Scripts after text", - "DE.Views.DocumentHolder.txtScriptsBefore": "Scripts before text", - "DE.Views.DocumentHolder.txtShowBottomLimit": "Show bottom limit", - "DE.Views.DocumentHolder.txtShowCloseBracket": "Show closing bracket", - "DE.Views.DocumentHolder.txtShowDegree": "Show degree", - "DE.Views.DocumentHolder.txtShowOpenBracket": "Show opening bracket", - "DE.Views.DocumentHolder.txtShowPlaceholder": "Show placeholder", - "DE.Views.DocumentHolder.txtShowTopLimit": "Show top limit", + "DE.Views.DocumentHolder.txtInsertArgAfter": "Sisipkan argumen setelah", + "DE.Views.DocumentHolder.txtInsertArgBefore": "Sisipkan argumen sebelum", + "DE.Views.DocumentHolder.txtInsertBreak": "Sisipkan break manual", + "DE.Views.DocumentHolder.txtInsertCaption": "Sisipkan Caption", + "DE.Views.DocumentHolder.txtInsertEqAfter": "Sisipkan persamaan setelah", + "DE.Views.DocumentHolder.txtInsertEqBefore": "Sisipkan persamaan sebelum", + "DE.Views.DocumentHolder.txtKeepTextOnly": "Pertahankan hanya teks", + "DE.Views.DocumentHolder.txtLimitChange": "Ganti lokasi limit", + "DE.Views.DocumentHolder.txtLimitOver": "Batasi di atas teks", + "DE.Views.DocumentHolder.txtLimitUnder": "Batasi di bawah teks", + "DE.Views.DocumentHolder.txtMatchBrackets": "Sesuaikan tanda kurung dengan tinggi argumen", + "DE.Views.DocumentHolder.txtMatrixAlign": "Rata matriks", + "DE.Views.DocumentHolder.txtOverbar": "Bar di atas teks", + "DE.Views.DocumentHolder.txtOverwriteCells": "Tiban sel", + "DE.Views.DocumentHolder.txtPasteSourceFormat": "Pertahankan formatting sumber", + "DE.Views.DocumentHolder.txtPressLink": "Tekan Ctrl dan klik link", + "DE.Views.DocumentHolder.txtPrintSelection": "Print Pilihan", + "DE.Views.DocumentHolder.txtRemFractionBar": "Hilangkan bar pecahan", + "DE.Views.DocumentHolder.txtRemLimit": "Hilangkan limit", + "DE.Views.DocumentHolder.txtRemoveAccentChar": "Hilangkan aksen karakter", + "DE.Views.DocumentHolder.txtRemoveBar": "Hilangkan diagram batang", + "DE.Views.DocumentHolder.txtRemoveWarning": "Apakah Anda ingin menghilangkan tandatangan ini?
Proses tidak bisa dikembalikan.", + "DE.Views.DocumentHolder.txtRemScripts": "Hilangkan skrip", + "DE.Views.DocumentHolder.txtRemSubscript": "Hilangkan subscript", + "DE.Views.DocumentHolder.txtRemSuperscript": "Hilangkan superscript", + "DE.Views.DocumentHolder.txtScriptsAfter": "Scripts setelah teks", + "DE.Views.DocumentHolder.txtScriptsBefore": "Scripts sebelum teks", + "DE.Views.DocumentHolder.txtShowBottomLimit": "Tampilkan batas bawah", + "DE.Views.DocumentHolder.txtShowCloseBracket": "Tampilkan kurung penutup", + "DE.Views.DocumentHolder.txtShowDegree": "Tampilkan degree", + "DE.Views.DocumentHolder.txtShowOpenBracket": "Tampilkan kurung pembuka", + "DE.Views.DocumentHolder.txtShowPlaceholder": "Tampilkan placeholder", + "DE.Views.DocumentHolder.txtShowTopLimit": "Tampilkan batas atas", "DE.Views.DocumentHolder.txtSquare": "Persegi", - "DE.Views.DocumentHolder.txtStretchBrackets": "Stretch brackets", + "DE.Views.DocumentHolder.txtStretchBrackets": "Regangkan dalam kurung", "DE.Views.DocumentHolder.txtThrough": "Tembus", "DE.Views.DocumentHolder.txtTight": "Ketat", - "DE.Views.DocumentHolder.txtTop": "Top", + "DE.Views.DocumentHolder.txtTop": "Atas", "DE.Views.DocumentHolder.txtTopAndBottom": "Atas dan bawah", - "DE.Views.DocumentHolder.txtUnderbar": "Bar under text", + "DE.Views.DocumentHolder.txtUnderbar": "Bar di bawah teks", "DE.Views.DocumentHolder.txtUngroup": "Pisahkan dari grup", + "DE.Views.DocumentHolder.txtWarnUrl": "Klik link ini bisa berbahaya untuk perangkat dan data Anda.
Apakah Anda ingin tetap lanjut?", "DE.Views.DocumentHolder.updateStyleText": "Update %1 style", "DE.Views.DocumentHolder.vertAlignText": "Perataan Vertikal", "DE.Views.DropcapSettingsAdvanced.strBorders": "Pembatas & Isian", @@ -940,7 +1631,7 @@ "DE.Views.DropcapSettingsAdvanced.textFlow": "Kerangka alur", "DE.Views.DropcapSettingsAdvanced.textFont": "Huruf", "DE.Views.DropcapSettingsAdvanced.textFrame": "Kerangka", - "DE.Views.DropcapSettingsAdvanced.textHeight": "Ketinggian", + "DE.Views.DropcapSettingsAdvanced.textHeight": "Tinggi", "DE.Views.DropcapSettingsAdvanced.textHorizontal": "Horisontal", "DE.Views.DropcapSettingsAdvanced.textInline": "Kerangka berderet", "DE.Views.DropcapSettingsAdvanced.textInMargin": "Dalam margin", @@ -961,34 +1652,50 @@ "DE.Views.DropcapSettingsAdvanced.textTop": "Atas", "DE.Views.DropcapSettingsAdvanced.textVertical": "Vertikal", "DE.Views.DropcapSettingsAdvanced.textWidth": "Lebar", - "DE.Views.DropcapSettingsAdvanced.tipFontName": "Nama Huruf", + "DE.Views.DropcapSettingsAdvanced.tipFontName": "Huruf", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", + "DE.Views.EditListItemDialog.textDisplayName": "Nama tampilan", + "DE.Views.EditListItemDialog.textNameError": "Nama tampilan tidak boleh kosong", "DE.Views.EditListItemDialog.textValue": "Nilai", + "DE.Views.EditListItemDialog.textValueError": "Barang dengan nilai yang sama sudah ada.", "DE.Views.FileMenu.btnBackCaption": "Buka Dokumen", + "DE.Views.FileMenu.btnCloseMenuCaption": "Tutup Menu", "DE.Views.FileMenu.btnCreateNewCaption": "Buat Baru", "DE.Views.FileMenu.btnDownloadCaption": "Unduh sebagai...", + "DE.Views.FileMenu.btnExitCaption": "Tutup", + "DE.Views.FileMenu.btnFileOpenCaption": "Buka...", "DE.Views.FileMenu.btnHelpCaption": "Bantuan...", - "DE.Views.FileMenu.btnHistoryCaption": "Version History", + "DE.Views.FileMenu.btnHistoryCaption": "Riwayat Versi", "DE.Views.FileMenu.btnInfoCaption": "Informasi Dokumen...", "DE.Views.FileMenu.btnPrintCaption": "Cetak", + "DE.Views.FileMenu.btnProtectCaption": "Proteksi", "DE.Views.FileMenu.btnRecentFilesCaption": "Membuka yang Terbaru...", + "DE.Views.FileMenu.btnRenameCaption": "Ganti nama...", "DE.Views.FileMenu.btnReturnCaption": "Kembali ke Dokumen", - "DE.Views.FileMenu.btnRightsCaption": "Access Rights...", - "DE.Views.FileMenu.btnSaveAsCaption": "Save as", + "DE.Views.FileMenu.btnRightsCaption": "Hak Akses...", + "DE.Views.FileMenu.btnSaveAsCaption": "Simpan sebagai", "DE.Views.FileMenu.btnSaveCaption": "Simpan", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "Simpan Salinan sebagai...", "DE.Views.FileMenu.btnSettingsCaption": "Pengaturan Lanjut...", "DE.Views.FileMenu.btnToEditCaption": "Edit Dokumen", - "DE.Views.FileMenu.textDownload": "Download", + "DE.Views.FileMenu.textDownload": "Unduh", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Dokumen Kosong", "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Buat Baru", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Terapkan", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tambahkan penulis", - "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Penulis", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Tambah teks", + "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplikasi", + "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Penyusun", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Ubah hak akses", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Memuat...", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Terakhir Dimodifikasi Oleh", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Terakhir Dimodifikasi", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Tidak", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Halaman", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Ukuran Halaman", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraf", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak", @@ -996,26 +1703,35 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbol", - "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul Dokumen", + "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Kata", - "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", - "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Ya", + "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ubah hak akses", + "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Orang yang memiliki hak", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan", + "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Dengan password", + "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteksi Dokumen", + "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Dengan tanda tangan", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit Dokumen", + "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editing akan menghapus tandatangan dari dokumen.
Lanjutkan?", + "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Dokumen ini dilindungi dengan password", + "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Dokumen ini perlu ditandatangani.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Tandatangan valid sudah ditambahkan ke dokumen. Dokumen dilindungi dari editan.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Beberapa tandatangan digital di dokumen tidak valid atau tidak bisa diverifikasi. Dokumen dilindungi dari editan.", + "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Tampilkan tanda tangan", "DE.Views.FileMenuPanels.Settings.okButtonText": "Terapkan", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Aktifkan simpan otomatis", - "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", - "DE.Views.FileMenuPanels.Settings.strFast": "Fast", + "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode Edit Bersama", + "DE.Views.FileMenuPanels.Settings.strFast": "Cepat", "DE.Views.FileMenuPanels.Settings.strFontRender": "Contoh Huruf", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Aktifkan hieroglif", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Aktifkan opsi komentar langsung", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Tambah versi ke penyimpanan setelah klik menu Siman atau Ctrl+S", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Pengaturan Macros", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "Tampilkan tombol Opsi Paste ketika konten sedang dipaste", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Perubahan Kolaborasi Realtime", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aktifkan opsi pemeriksa ejaan", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", + "DE.Views.FileMenuPanels.Settings.strTheme": "Tema interface", "DE.Views.FileMenuPanels.Settings.strUnit": "Satuan Ukuran", "DE.Views.FileMenuPanels.Settings.strZoom": "Skala Pembesaran Standar", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Tiap 10 Menit", @@ -1023,62 +1739,165 @@ "DE.Views.FileMenuPanels.Settings.text5Minutes": "Tiap 5 Menit", "DE.Views.FileMenuPanels.Settings.text60Minutes": "Tiap Jam", "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Panduan Penjajaran", + "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Recover otmoatis", "DE.Views.FileMenuPanels.Settings.textAutoSave": "Simpan otomatis", + "DE.Views.FileMenuPanels.Settings.textCompatible": "Kompatibilitas", "DE.Views.FileMenuPanels.Settings.textDisabled": "Nonaktif", + "DE.Views.FileMenuPanels.Settings.textForceSave": "Menyimpan versi intermedier", "DE.Views.FileMenuPanels.Settings.textMinute": "Tiap Menit", + "DE.Views.FileMenuPanels.Settings.textOldVersions": "Buat file kompatibel dengan versi lama MS Word ketika disimpan sebagai DOCX", "DE.Views.FileMenuPanels.Settings.txtAll": "Lihat Semua", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opsi AutoCorrect...", + "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Mode cache default", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Tampilkan dengan klik di balon", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Tampilkan dengan mengarahkan kursor ke tooltips", "DE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Hidupkan mode gelap dokumen", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Sesuaikan Halaman", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Sesuaikan Lebar", + "DE.Views.FileMenuPanels.Settings.txtInch": "Inci", "DE.Views.FileMenuPanels.Settings.txtInput": "Ganti Input", "DE.Views.FileMenuPanels.Settings.txtLast": "Lihat yang Terakhir", "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Komentar Langsung", "DE.Views.FileMenuPanels.Settings.txtMac": "sebagai OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Asli", "DE.Views.FileMenuPanels.Settings.txtNone": "Tidak Ada yang Dilihat", + "DE.Views.FileMenuPanels.Settings.txtProofing": "Proofing", "DE.Views.FileMenuPanels.Settings.txtPt": "Titik", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Aktifkan Semua", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktifkan semua macros tanpa notifikasi", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Periksa Ejaan", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Nonaktifkan Semua", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Nonaktifkan semua macros tanpa notifikasi", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Tampilkan Notifikasi", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Nonaktifkan semua macros dengan notifikasi", "DE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows", + "DE.Views.FormSettings.textAlways": "Selalu", + "DE.Views.FormSettings.textAspect": "Kunci aspek rasio", + "DE.Views.FormSettings.textAutofit": "AutoFit", "DE.Views.FormSettings.textBackgroundColor": "Warna Latar", + "DE.Views.FormSettings.textCheckbox": "Kotak centang", "DE.Views.FormSettings.textColor": "Warna Pembatas", + "DE.Views.FormSettings.textComb": "Karakter bersisir", + "DE.Views.FormSettings.textCombobox": "Kotak combo", + "DE.Views.FormSettings.textConnected": "Area terhubung", "DE.Views.FormSettings.textDelete": "Hapus", "DE.Views.FormSettings.textDisconnect": "Putuskan hubungan", + "DE.Views.FormSettings.textDropDown": "Dropdown", + "DE.Views.FormSettings.textField": "Area Teks", + "DE.Views.FormSettings.textFixed": "Area ukuran tetap", "DE.Views.FormSettings.textFromFile": "Dari File", + "DE.Views.FormSettings.textFromStorage": "Dari Penyimpanan", "DE.Views.FormSettings.textFromUrl": "Dari URL", + "DE.Views.FormSettings.textGroupKey": "Satukan kunci", "DE.Views.FormSettings.textImage": "Gambar", + "DE.Views.FormSettings.textKey": "Kunci", + "DE.Views.FormSettings.textLock": "Kunci", + "DE.Views.FormSettings.textMaxChars": "Batas karakter", + "DE.Views.FormSettings.textMulti": "Area multi-garis", "DE.Views.FormSettings.textNever": "tidak pernah", + "DE.Views.FormSettings.textNoBorder": "Tanpa pembatas", + "DE.Views.FormSettings.textPlaceholder": "Placeholder", + "DE.Views.FormSettings.textRadiobox": "Tombol Radio", + "DE.Views.FormSettings.textRequired": "Dibutuhkan", + "DE.Views.FormSettings.textScale": "Waktu untuk menskala", + "DE.Views.FormSettings.textSelectImage": "Pilih Gambar", + "DE.Views.FormSettings.textTip": "Tip", + "DE.Views.FormSettings.textTipAdd": "Tambah nilai baru", + "DE.Views.FormSettings.textTipDelete": "Hapus nilai", + "DE.Views.FormSettings.textTipDown": "Pindah kebawah", + "DE.Views.FormSettings.textTipUp": "Pindah keatas", + "DE.Views.FormSettings.textTooBig": "Gambar Terlalu Besar", + "DE.Views.FormSettings.textTooSmall": "Gambar Terlalu Kecil", + "DE.Views.FormSettings.textUnlock": "Buka Kunci", + "DE.Views.FormSettings.textValue": "Opsi Nilai", + "DE.Views.FormSettings.textWidth": "Lebar sel", + "DE.Views.FormsTab.capBtnCheckBox": "Kotak centang", + "DE.Views.FormsTab.capBtnComboBox": "Kotak combo", + "DE.Views.FormsTab.capBtnDropDown": "Dropdown", "DE.Views.FormsTab.capBtnImage": "Gambar", + "DE.Views.FormsTab.capBtnNext": "Area Berikutnya", + "DE.Views.FormsTab.capBtnPrev": "Area Sebelumnya", + "DE.Views.FormsTab.capBtnRadioBox": "Tombol Radio", + "DE.Views.FormsTab.capBtnSaveForm": "Simpan sebagai oform", + "DE.Views.FormsTab.capBtnSubmit": "Submit", + "DE.Views.FormsTab.capBtnText": "Area Teks", + "DE.Views.FormsTab.capBtnView": "Tampilkan form", + "DE.Views.FormsTab.textClear": "Bersihkan Area", + "DE.Views.FormsTab.textClearFields": "Bersihkan Semua Area", + "DE.Views.FormsTab.textCreateForm": "Tambah area dan buat dokumen OFORM yang bisa diisi", + "DE.Views.FormsTab.textGotIt": "Mengerti", + "DE.Views.FormsTab.textHighlight": "Pengaturan Highlight", + "DE.Views.FormsTab.textNoHighlight": "Tanpa highlight", + "DE.Views.FormsTab.textRequired": "Isi semua area yang dibutuhkan untuk mengirim form.", + "DE.Views.FormsTab.textSubmited": "Form berhasil disubmit", + "DE.Views.FormsTab.tipCheckBox": "Sisipkan kotak centang", + "DE.Views.FormsTab.tipComboBox": "Sisipkan kotak kombo", + "DE.Views.FormsTab.tipDropDown": "Sisipkan list dropdown", "DE.Views.FormsTab.tipImageField": "Sisipkan Gambar", + "DE.Views.FormsTab.tipNextForm": "Pergi ke area berikutnya", + "DE.Views.FormsTab.tipPrevForm": "Pergi ke area sebelumnya", + "DE.Views.FormsTab.tipRadioBox": "Sisipkan tombol radio", + "DE.Views.FormsTab.tipSaveForm": "Simpan file sebagai dokumen OFORM yang bisa diisi", + "DE.Views.FormsTab.tipSubmit": "Submit form", + "DE.Views.FormsTab.tipTextField": "Sisipkan area teks", + "DE.Views.FormsTab.tipViewForm": "Tampilkan form", + "DE.Views.FormsTab.txtUntitled": "Tanpa Judul", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bawah Tengah", "DE.Views.HeaderFooterSettings.textBottomLeft": "Bawah Kiri", + "DE.Views.HeaderFooterSettings.textBottomPage": "Bawah halaman", "DE.Views.HeaderFooterSettings.textBottomRight": "Bawah Kanan", "DE.Views.HeaderFooterSettings.textDiffFirst": "Halaman pertama yang berbeda", "DE.Views.HeaderFooterSettings.textDiffOdd": "Halaman ganjil dan genap yang berbeda", + "DE.Views.HeaderFooterSettings.textFrom": "Dimulai pada", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Footer dari Bawah", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Header dari Atas", + "DE.Views.HeaderFooterSettings.textInsertCurrent": "Sisipkan ke Posisi Saat Ini", "DE.Views.HeaderFooterSettings.textOptions": "Pilihan", "DE.Views.HeaderFooterSettings.textPageNum": "Sisipkan Nomor Halaman", + "DE.Views.HeaderFooterSettings.textPageNumbering": "Penomoran Halaman", "DE.Views.HeaderFooterSettings.textPosition": "Posisi", + "DE.Views.HeaderFooterSettings.textPrev": "Lanjut dari sesi sebelumnya", "DE.Views.HeaderFooterSettings.textSameAs": "Tautkan dengan Sebelumnya", "DE.Views.HeaderFooterSettings.textTopCenter": "Atas Tengah", "DE.Views.HeaderFooterSettings.textTopLeft": "Atas Kiri", + "DE.Views.HeaderFooterSettings.textTopPage": "Atas Halaman", "DE.Views.HeaderFooterSettings.textTopRight": "Atas Kanan", "DE.Views.HyperlinkSettingsDialog.textDefault": "Fragmen teks yang dipilih", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Tampilan", "DE.Views.HyperlinkSettingsDialog.textExternal": "Tautan eksternal", + "DE.Views.HyperlinkSettingsDialog.textInternal": "Letakkan di Dokumen", "DE.Views.HyperlinkSettingsDialog.textTitle": "Pengaturan Hyperlink", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Teks ScreenTip", "DE.Views.HyperlinkSettingsDialog.textUrl": "Tautkan dengan", - "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Kolom ini harus diisi", + "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Awal dokumen", + "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Bookmarks", + "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Area ini dibutuhkan", + "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Headings", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", + "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Area ini dibatasi 2083 karakter", "DE.Views.ImageSettings.textAdvanced": "Tampilkan pengaturan lanjut", - "DE.Views.ImageSettings.textCropFill": "Isian", + "DE.Views.ImageSettings.textCrop": "Isian", + "DE.Views.ImageSettings.textCropFill": "Isi", + "DE.Views.ImageSettings.textCropFit": "Fit", + "DE.Views.ImageSettings.textCropToShape": "Crop menjadi bentuk", "DE.Views.ImageSettings.textEdit": "Sunting", + "DE.Views.ImageSettings.textEditObject": "Edit Objek", + "DE.Views.ImageSettings.textFitMargins": "Fit ke Margin", + "DE.Views.ImageSettings.textFlip": "Flip", "DE.Views.ImageSettings.textFromFile": "Dari File", + "DE.Views.ImageSettings.textFromStorage": "Dari Penyimpanan", "DE.Views.ImageSettings.textFromUrl": "Dari URL", - "DE.Views.ImageSettings.textHeight": "Ketinggian", + "DE.Views.ImageSettings.textHeight": "Tinggi", + "DE.Views.ImageSettings.textHint270": "Rotasi 90° Berlawanan Jarum Jam", + "DE.Views.ImageSettings.textHint90": "Rotasi 90° Searah Jarum Jam", + "DE.Views.ImageSettings.textHintFlipH": "Flip Horizontal", + "DE.Views.ImageSettings.textHintFlipV": "Flip Vertikal", "DE.Views.ImageSettings.textInsert": "Ganti Gambar", - "DE.Views.ImageSettings.textOriginalSize": "Ukuran Standar", + "DE.Views.ImageSettings.textOriginalSize": "Ukuran Sebenarnya", + "DE.Views.ImageSettings.textRecentlyUsed": "Baru Digunakan", + "DE.Views.ImageSettings.textRotate90": "Rotasi 90°", + "DE.Views.ImageSettings.textRotation": "Rotasi", "DE.Views.ImageSettings.textSize": "Ukuran", "DE.Views.ImageSettings.textWidth": "Lebar", "DE.Views.ImageSettings.textWrap": "Bentuk Potongan", @@ -1090,10 +1909,16 @@ "DE.Views.ImageSettings.txtTight": "Ketat", "DE.Views.ImageSettings.txtTopAndBottom": "Atas dan bawah", "DE.Views.ImageSettingsAdvanced.strMargins": "Lapisan Teks", + "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolut", "DE.Views.ImageSettingsAdvanced.textAlignment": "Perataan", + "DE.Views.ImageSettingsAdvanced.textAlt": "Teks Alternatif", "DE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi", + "DE.Views.ImageSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Judul", + "DE.Views.ImageSettingsAdvanced.textAngle": "Sudut", "DE.Views.ImageSettingsAdvanced.textArrows": "Tanda panah", + "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Kunci aspek rasio", + "DE.Views.ImageSettingsAdvanced.textAutofit": "AutoFit", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Ukuran Mulai", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Gaya Mulai", "DE.Views.ImageSettingsAdvanced.textBelow": "di bawah", @@ -1109,8 +1934,10 @@ "DE.Views.ImageSettingsAdvanced.textEndSize": "Ukuran Akhir", "DE.Views.ImageSettingsAdvanced.textEndStyle": "Model Akhir", "DE.Views.ImageSettingsAdvanced.textFlat": "Datar", - "DE.Views.ImageSettingsAdvanced.textHeight": "Ketinggian", + "DE.Views.ImageSettingsAdvanced.textFlipped": "Flipped", + "DE.Views.ImageSettingsAdvanced.textHeight": "Tinggi", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horisontal", + "DE.Views.ImageSettingsAdvanced.textHorizontally": "Secara Horizontal", "DE.Views.ImageSettingsAdvanced.textJoinType": "Gabungkan Tipe", "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporsi Konstan", "DE.Views.ImageSettingsAdvanced.textLeft": "Kiri", @@ -1121,29 +1948,36 @@ "DE.Views.ImageSettingsAdvanced.textMiter": "Siku-siku", "DE.Views.ImageSettingsAdvanced.textMove": "Pindah obyek bersama teks", "DE.Views.ImageSettingsAdvanced.textOptions": "Pilihan", - "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Ukuran Standar", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Ukuran Sebenarnya", "DE.Views.ImageSettingsAdvanced.textOverlap": "Ijinkan menumpuk", "DE.Views.ImageSettingsAdvanced.textPage": "Halaman", "DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraf", "DE.Views.ImageSettingsAdvanced.textPosition": "Posisi", + "DE.Views.ImageSettingsAdvanced.textPositionPc": "Posisi relatif", "DE.Views.ImageSettingsAdvanced.textRelative": "relatif dengan", + "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relatif", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "Ubah ukuran bentuk agar cocok ke teks", "DE.Views.ImageSettingsAdvanced.textRight": "Kanan", "DE.Views.ImageSettingsAdvanced.textRightMargin": "Margin Kanan", "DE.Views.ImageSettingsAdvanced.textRightOf": "ke sebelah kanan dari", + "DE.Views.ImageSettingsAdvanced.textRotation": "Rotasi", "DE.Views.ImageSettingsAdvanced.textRound": "Bulat", "DE.Views.ImageSettingsAdvanced.textShape": "Pengaturan Bentuk", "DE.Views.ImageSettingsAdvanced.textSize": "Ukuran", "DE.Views.ImageSettingsAdvanced.textSquare": "Persegi", + "DE.Views.ImageSettingsAdvanced.textTextBox": "Kotak Teks", "DE.Views.ImageSettingsAdvanced.textTitle": "Gambar - Pengaturan Lanjut", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Bagan - Pengaturan Lanjut", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Bentuk - Pengaturan Lanjut", "DE.Views.ImageSettingsAdvanced.textTop": "Atas", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Margin Atas", "DE.Views.ImageSettingsAdvanced.textVertical": "Vertikal", + "DE.Views.ImageSettingsAdvanced.textVertically": "Secara Vertikal", + "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Bobot & Panah", "DE.Views.ImageSettingsAdvanced.textWidth": "Lebar", "DE.Views.ImageSettingsAdvanced.textWrap": "Bentuk Potongan", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Di belakang", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Di Depan", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Di depan", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Berderet", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Persegi", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Tembus", @@ -1152,94 +1986,196 @@ "DE.Views.LeftMenu.tipAbout": "Tentang", "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "Komentar", + "DE.Views.LeftMenu.tipNavigation": "Navigasi", + "DE.Views.LeftMenu.tipPlugins": "Plugins", "DE.Views.LeftMenu.tipSearch": "Cari", "DE.Views.LeftMenu.tipSupport": "Masukan & Dukungan", "DE.Views.LeftMenu.tipTitles": "Judul", + "DE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPER", + "DE.Views.LeftMenu.txtLimit": "Batas Akses", + "DE.Views.LeftMenu.txtTrial": "MODE TRIAL", + "DE.Views.LeftMenu.txtTrialDev": "Mode Trial Developer", + "DE.Views.LineNumbersDialog.textAddLineNumbering": "Tambah nomor garis", + "DE.Views.LineNumbersDialog.textApplyTo": "Terapkan perubahan ke", + "DE.Views.LineNumbersDialog.textContinuous": "Kontinyu", + "DE.Views.LineNumbersDialog.textCountBy": "Dihitung dengan", + "DE.Views.LineNumbersDialog.textDocument": "Keseluruhan dokumen", + "DE.Views.LineNumbersDialog.textForward": "Dari poin ini sampai selanjutnya", + "DE.Views.LineNumbersDialog.textFromText": "Dari teks", "DE.Views.LineNumbersDialog.textNumbering": "Penomoran", + "DE.Views.LineNumbersDialog.textRestartEachPage": "Restart Setiap Halaman", + "DE.Views.LineNumbersDialog.textRestartEachSection": "Restart Setiap Sesi", + "DE.Views.LineNumbersDialog.textSection": "Sesi Saat Ini", + "DE.Views.LineNumbersDialog.textStartAt": "Dimulai pada", + "DE.Views.LineNumbersDialog.textTitle": "Nomor Garis", "DE.Views.LineNumbersDialog.txtAutoText": "Otomatis", + "DE.Views.Links.capBtnBookmarks": "Bookmark", + "DE.Views.Links.capBtnCaption": "Caption", + "DE.Views.Links.capBtnContentsUpdate": "Update Tabel", + "DE.Views.Links.capBtnCrossRef": "Cross-reference", "DE.Views.Links.capBtnInsContents": "Daftar Isi", + "DE.Views.Links.capBtnInsFootnote": "Footnote", + "DE.Views.Links.capBtnInsLink": "Hyperlink", + "DE.Views.Links.capBtnTOF": "Daftar gambar", + "DE.Views.Links.confirmDeleteFootnotes": "Apakah Anda ingin menghapus semua footnotes?", + "DE.Views.Links.confirmReplaceTOF": "Apakah Anda ingin mengubah daftar gambar yang dipilih?", + "DE.Views.Links.mniConvertNote": "Konversi Semua Catatan", + "DE.Views.Links.mniDelFootnote": "Hapus Semua Catatan", + "DE.Views.Links.mniInsEndnote": "Sisipkan Endnote", + "DE.Views.Links.mniInsFootnote": "Sisipkan Footnote", + "DE.Views.Links.mniNoteSettings": "Pengaturan Catatan", + "DE.Views.Links.textContentsRemove": "Hilangkan daftar isi", "DE.Views.Links.textContentsSettings": "Pengaturan", + "DE.Views.Links.textConvertToEndnotes": "Konversi Semua Footnotes Menjadi Endnotes", + "DE.Views.Links.textConvertToFootnotes": "Konversi Semua Endnotes Menjadi Footnotes", + "DE.Views.Links.textGotoEndnote": "Pergi ke Endnotes", + "DE.Views.Links.textGotoFootnote": "Pergi ke Footnotes", + "DE.Views.Links.textSwapNotes": "Tukar Footnotes dan Endnotes", + "DE.Views.Links.textUpdateAll": "Update keseluruhan tabel", + "DE.Views.Links.textUpdatePages": "Update hanya nomor halaman", + "DE.Views.Links.tipBookmarks": "Buat bookmark", + "DE.Views.Links.tipCaption": "Sisipkan Caption", + "DE.Views.Links.tipContents": "Sisipkan daftar isi", + "DE.Views.Links.tipContentsUpdate": "Update daftar isi", + "DE.Views.Links.tipCrossRef": "Sisipkan referensi-silang", "DE.Views.Links.tipInsertHyperlink": "Tambahkan hyperlink", + "DE.Views.Links.tipNotes": "Sisipkan atau edit footnote", + "DE.Views.Links.tipTableFigures": "Sisipkan daftar gambar", + "DE.Views.Links.tipTableFiguresUpdate": "Update Daftar Gambar", + "DE.Views.Links.titleUpdateTOF": "Update Daftar Gambar", "DE.Views.ListSettingsDialog.textAuto": "Otomatis", "DE.Views.ListSettingsDialog.textCenter": "Tengah", "DE.Views.ListSettingsDialog.textLeft": "Kiri", + "DE.Views.ListSettingsDialog.textLevel": "Level", "DE.Views.ListSettingsDialog.textPreview": "Pratinjau", "DE.Views.ListSettingsDialog.textRight": "Kanan", "DE.Views.ListSettingsDialog.txtAlign": "Perataan", + "DE.Views.ListSettingsDialog.txtBullet": "Butir", "DE.Views.ListSettingsDialog.txtColor": "Warna", - "DE.Views.ListSettingsDialog.txtNone": "tidak ada", + "DE.Views.ListSettingsDialog.txtFont": "Font dan Simbol", + "DE.Views.ListSettingsDialog.txtLikeText": "Seperti teks", + "DE.Views.ListSettingsDialog.txtNewBullet": "Butir baru", + "DE.Views.ListSettingsDialog.txtNone": "Tidak ada", "DE.Views.ListSettingsDialog.txtSize": "Ukuran", + "DE.Views.ListSettingsDialog.txtSymbol": "Simbol", + "DE.Views.ListSettingsDialog.txtTitle": "List Pengaturan", "DE.Views.ListSettingsDialog.txtType": "Tipe", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", - "DE.Views.MailMergeEmailDlg.okButtonText": "Send", - "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme", - "DE.Views.MailMergeEmailDlg.textAttachDocx": "Attach as DOCX", - "DE.Views.MailMergeEmailDlg.textAttachPdf": "Attach as PDF", - "DE.Views.MailMergeEmailDlg.textFileName": "File name", - "DE.Views.MailMergeEmailDlg.textFormat": "Mail format", - "DE.Views.MailMergeEmailDlg.textFrom": "From", + "DE.Views.MailMergeEmailDlg.okButtonText": "Kirim", + "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema", + "DE.Views.MailMergeEmailDlg.textAttachDocx": "Lampirkan sebagai DOCX", + "DE.Views.MailMergeEmailDlg.textAttachPdf": "Lampirkan sebagai PDF", + "DE.Views.MailMergeEmailDlg.textFileName": "Nama file", + "DE.Views.MailMergeEmailDlg.textFormat": "Format email", + "DE.Views.MailMergeEmailDlg.textFrom": "Dari", "DE.Views.MailMergeEmailDlg.textHTML": "HTML", - "DE.Views.MailMergeEmailDlg.textMessage": "Message", - "DE.Views.MailMergeEmailDlg.textSubject": "Subject Line", - "DE.Views.MailMergeEmailDlg.textTitle": "Send to Email", - "DE.Views.MailMergeEmailDlg.textTo": "To", - "DE.Views.MailMergeEmailDlg.textWarning": "Warning!", - "DE.Views.MailMergeEmailDlg.textWarningMsg": "Please note that mailing cannot be stopped once your click the 'Send' button.", + "DE.Views.MailMergeEmailDlg.textMessage": "Pesan", + "DE.Views.MailMergeEmailDlg.textSubject": "Garis Subjek", + "DE.Views.MailMergeEmailDlg.textTitle": "Kirim ke Email", + "DE.Views.MailMergeEmailDlg.textTo": "Ke", + "DE.Views.MailMergeEmailDlg.textWarning": "Peringatan!", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "Perlu dicatat bahwa mengirim email tidak bisa dihentikan setelah Anda klik tombol 'Kirim'.", "DE.Views.MailMergeSettings.downloadMergeTitle": "Merging", - "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Merge failed.", - "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Warning", - "DE.Views.MailMergeSettings.textAddRecipients": "Add some recipients to the list first", - "DE.Views.MailMergeSettings.textAll": "All records", - "DE.Views.MailMergeSettings.textCurrent": "Current record", - "DE.Views.MailMergeSettings.textDataSource": "Data Source", + "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Merge gagal.", + "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Peringatan", + "DE.Views.MailMergeSettings.textAddRecipients": "Tambah beberapa penerima ke daftar terlebih dahulu", + "DE.Views.MailMergeSettings.textAll": "Semua rekaman", + "DE.Views.MailMergeSettings.textCurrent": "Rekaman saat ini", + "DE.Views.MailMergeSettings.textDataSource": "Sumber Data", "DE.Views.MailMergeSettings.textDocx": "Docx", - "DE.Views.MailMergeSettings.textDownload": "Download", - "DE.Views.MailMergeSettings.textEditData": "Edit recipient list", + "DE.Views.MailMergeSettings.textDownload": "Unduh", + "DE.Views.MailMergeSettings.textEditData": "Edit list penerima", "DE.Views.MailMergeSettings.textEmail": "Email", - "DE.Views.MailMergeSettings.textFrom": "From", - "DE.Views.MailMergeSettings.textGoToMail": "Go to Mail", - "DE.Views.MailMergeSettings.textHighlight": "Highlight merge fields", - "DE.Views.MailMergeSettings.textInsertField": "Insert Merge Field", - "DE.Views.MailMergeSettings.textMaxRecepients": "Max 100 recipients.", + "DE.Views.MailMergeSettings.textFrom": "Dari", + "DE.Views.MailMergeSettings.textGoToMail": "Pergi ke Email", + "DE.Views.MailMergeSettings.textHighlight": "Highlight area merge", + "DE.Views.MailMergeSettings.textInsertField": "Sisipkan Area Merge", + "DE.Views.MailMergeSettings.textMaxRecepients": "Maks 100 penerima.", "DE.Views.MailMergeSettings.textMerge": "Merge", - "DE.Views.MailMergeSettings.textMergeFields": "Merge Fields", - "DE.Views.MailMergeSettings.textMergeTo": "Merge to", + "DE.Views.MailMergeSettings.textMergeFields": "Merge Area", + "DE.Views.MailMergeSettings.textMergeTo": "Merge ke", "DE.Views.MailMergeSettings.textPdf": "PDF", - "DE.Views.MailMergeSettings.textPortal": "Save", - "DE.Views.MailMergeSettings.textPreview": "Preview results", - "DE.Views.MailMergeSettings.textReadMore": "Read more", - "DE.Views.MailMergeSettings.textSendMsg": "All mail messages are ready and will be sent out within some time.
The speed of mailing depends on your mail service.
You can continue working with document or close it. After the operation is over the notification will be sent to your registration email address.", - "DE.Views.MailMergeSettings.textTo": "To", - "DE.Views.MailMergeSettings.txtFirst": "To first record", - "DE.Views.MailMergeSettings.txtFromToError": "\"From\" value must be less than \"To\" value", - "DE.Views.MailMergeSettings.txtLast": "To last record", - "DE.Views.MailMergeSettings.txtNext": "To next record", - "DE.Views.MailMergeSettings.txtPrev": "To previous record", - "DE.Views.MailMergeSettings.txtUntitled": "Untitled", - "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", + "DE.Views.MailMergeSettings.textPortal": "Simpan", + "DE.Views.MailMergeSettings.textPreview": "Tampilkan hasil", + "DE.Views.MailMergeSettings.textReadMore": "Baca lebih lanjut", + "DE.Views.MailMergeSettings.textSendMsg": "Semua pesan email sudah siap dan akan dikirim dalam beberapa saat lagi.
Kecepatan pengiriman email tergantung dari provider email Anda.
Anda bisa melanjutkan bekerja dengan dokumen ini atau menutupnya. Setelah operasi selesai, notifikasi akan dikirimkan ke email terdaftar Anda.", + "DE.Views.MailMergeSettings.textTo": "Ke", + "DE.Views.MailMergeSettings.txtFirst": "Ke rekaman pertama", + "DE.Views.MailMergeSettings.txtFromToError": "\"From\" nilai harus lebih kecil dari \"To\" nilai", + "DE.Views.MailMergeSettings.txtLast": "Ke rekaman terakhir", + "DE.Views.MailMergeSettings.txtNext": "Ke rekaman berikutnya", + "DE.Views.MailMergeSettings.txtPrev": "Ke rekaman sebelumnya", + "DE.Views.MailMergeSettings.txtUntitled": "Tanpa Judul", + "DE.Views.MailMergeSettings.warnProcessMailMerge": "Gagal memulai merge", "DE.Views.Navigation.txtCollapse": "Tutup semua", + "DE.Views.Navigation.txtDemote": "Demote", + "DE.Views.Navigation.txtEmpty": "Tidak ada heading di dokumen.
Terapkan style heading ke teks agar bisa terlihat di daftar isi.", + "DE.Views.Navigation.txtEmptyItem": "Header Kosong", + "DE.Views.Navigation.txtEmptyViewer": "Tidak ada heading di dokumen.", "DE.Views.Navigation.txtExpand": "Buka semua", + "DE.Views.Navigation.txtExpandToLevel": "Perluas sampai level", + "DE.Views.Navigation.txtHeadingAfter": "Heading baru setelah", + "DE.Views.Navigation.txtHeadingBefore": "Heading baru sebelum", + "DE.Views.Navigation.txtNewHeading": "Subheading baru", + "DE.Views.Navigation.txtPromote": "Promosi", + "DE.Views.Navigation.txtSelect": "Pilih konten", "DE.Views.NoteSettingsDialog.textApply": "Terapkan", + "DE.Views.NoteSettingsDialog.textApplyTo": "Terapkan perubahan ke", + "DE.Views.NoteSettingsDialog.textContinue": "Kontinyu", + "DE.Views.NoteSettingsDialog.textCustom": "Custom Tanda", + "DE.Views.NoteSettingsDialog.textDocEnd": "Akhir dokumen", + "DE.Views.NoteSettingsDialog.textDocument": "Keseluruhan dokumen", + "DE.Views.NoteSettingsDialog.textEachPage": "Restart Setiap Halaman", + "DE.Views.NoteSettingsDialog.textEachSection": "Restart Setiap Sesi", + "DE.Views.NoteSettingsDialog.textEndnote": "Endnote", + "DE.Views.NoteSettingsDialog.textFootnote": "Footnote", + "DE.Views.NoteSettingsDialog.textFormat": "Format", "DE.Views.NoteSettingsDialog.textInsert": "Sisipkan", "DE.Views.NoteSettingsDialog.textLocation": "Lokasi", "DE.Views.NoteSettingsDialog.textNumbering": "Penomoran", - "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning", - "DE.Views.PageMarginsDialog.textBottom": "Bottom", - "DE.Views.PageMarginsDialog.textLeft": "Left", + "DE.Views.NoteSettingsDialog.textNumFormat": "Format Nomor", + "DE.Views.NoteSettingsDialog.textPageBottom": "Bawah halaman", + "DE.Views.NoteSettingsDialog.textSectEnd": "Akhir sesi", + "DE.Views.NoteSettingsDialog.textSection": "Sesi Saat Ini", + "DE.Views.NoteSettingsDialog.textStart": "Dimulai pada", + "DE.Views.NoteSettingsDialog.textTextBottom": "Di bawah teks", + "DE.Views.NoteSettingsDialog.textTitle": "Pengaturan Catatan", + "DE.Views.NotesRemoveDialog.textEnd": "Hapus Semua Endnotes", + "DE.Views.NotesRemoveDialog.textFoot": "Hapus Semua Footnotes", + "DE.Views.NotesRemoveDialog.textTitle": "Hapus Catatan", + "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Peringatan", + "DE.Views.PageMarginsDialog.textBottom": "Bawah", + "DE.Views.PageMarginsDialog.textGutter": "Jarak Spasi", + "DE.Views.PageMarginsDialog.textGutterPosition": "Posisi jarak spasi", + "DE.Views.PageMarginsDialog.textInside": "Dalam", + "DE.Views.PageMarginsDialog.textLandscape": "Landscape", + "DE.Views.PageMarginsDialog.textLeft": "Kiri", + "DE.Views.PageMarginsDialog.textMirrorMargins": "Tiru margin", + "DE.Views.PageMarginsDialog.textMultiplePages": "Gandakan halaman", "DE.Views.PageMarginsDialog.textNormal": "Normal", + "DE.Views.PageMarginsDialog.textOrientation": "Orientasi", + "DE.Views.PageMarginsDialog.textOutside": "Luar", + "DE.Views.PageMarginsDialog.textPortrait": "Portrait", "DE.Views.PageMarginsDialog.textPreview": "Pratinjau", - "DE.Views.PageMarginsDialog.textRight": "Right", - "DE.Views.PageMarginsDialog.textTitle": "Margins", - "DE.Views.PageMarginsDialog.textTop": "Top", - "DE.Views.PageMarginsDialog.txtMarginsH": "Top and bottom margins are too high for a given page height", - "DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width", - "DE.Views.PageSizeDialog.textHeight": "Height", - "DE.Views.PageSizeDialog.textTitle": "Page Size", - "DE.Views.PageSizeDialog.textWidth": "Width", + "DE.Views.PageMarginsDialog.textRight": "Kanan", + "DE.Views.PageMarginsDialog.textTitle": "Margin", + "DE.Views.PageMarginsDialog.textTop": "Atas", + "DE.Views.PageMarginsDialog.txtMarginsH": "Margin atas dan bawah terlalu jauh untuk halaman setinggi ini", + "DE.Views.PageMarginsDialog.txtMarginsW": "Margin kiri dan kanan terlalu besar dengan lebar halaman yang ada", + "DE.Views.PageSizeDialog.textHeight": "Tinggi", + "DE.Views.PageSizeDialog.textPreset": "Preset", + "DE.Views.PageSizeDialog.textTitle": "Ukuran Halaman", + "DE.Views.PageSizeDialog.textWidth": "Lebar", "DE.Views.PageSizeDialog.txtCustom": "Khusus", + "DE.Views.PageThumbnails.textClosePanel": "Tutup thumbnails halaman", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Highlight bagian yang bisa terlihat di halaman", + "DE.Views.PageThumbnails.textPageThumbnails": "Thumbnails Halaman", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Pengaturan thumbnails", + "DE.Views.PageThumbnails.textThumbnailsSize": "Ukuran thumbnails", "DE.Views.ParagraphSettings.strIndent": "Indentasi", "DE.Views.ParagraphSettings.strIndentsLeftText": "Kiri", "DE.Views.ParagraphSettings.strIndentsRightText": "Kanan", + "DE.Views.ParagraphSettings.strIndentsSpecial": "Spesial", "DE.Views.ParagraphSettings.strLineHeight": "Spasi Antar Baris", "DE.Views.ParagraphSettings.strParagraphSpacing": "Spasi", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Jangan tambahkan interval antar paragraf dengan model yang sama", @@ -1252,6 +2188,8 @@ "DE.Views.ParagraphSettings.textBackColor": "Warna latar", "DE.Views.ParagraphSettings.textExact": "Persis", "DE.Views.ParagraphSettings.textFirstLine": "Baris Pertama", + "DE.Views.ParagraphSettings.textHanging": "Menggantung", + "DE.Views.ParagraphSettings.textNoneSpecial": "(tidak ada)", "DE.Views.ParagraphSettings.txtAutoText": "Otomatis", "DE.Views.ParagraphSettingsAdvanced.noTabs": "Tab yang ditentukan akan muncul pada bagian ini", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Huruf kapital semua", @@ -1261,15 +2199,18 @@ "DE.Views.ParagraphSettingsAdvanced.strIndent": "Indentasi", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Kiri", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Spasi Antar Baris", + "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Level outline", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Kanan", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Setelah", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Sebelum", - "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Tetap satukan garis", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Spesial", + "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Pertahankan garis bersama", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Satukan dengan berikutnya", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Lapisan", - "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Orphan control", + "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Kontrol Orphan", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Huruf", "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indentasi & Peletakan", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Break Garis & Halaman", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Penempatan", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Huruf Ukuran Kecil", "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Jangan tambahkan interval antar paragraf dengan model yang sama", @@ -1277,23 +2218,30 @@ "DE.Views.ParagraphSettingsAdvanced.strStrike": "Coret ganda", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subskrip", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superskrip", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Menekan nomor garis", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Perataan", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Sekurang-kurangnya", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Banyak", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Warna Latar", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Teks Basic", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Warna Pembatas", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Klik pada diagram atau gunakan tombol untuk memilih pembatas dan menerapkan pilihan model", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Ukuran Pembatas", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Bawah", + "DE.Views.ParagraphSettingsAdvanced.textCentered": "Tengah", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spasi Antar Karakter", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab Standar", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efek", "DE.Views.ParagraphSettingsAdvanced.textExact": "Persis", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", + "DE.Views.ParagraphSettingsAdvanced.textHanging": "Menggantung", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", + "DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri", - "DE.Views.ParagraphSettingsAdvanced.textNone": "tidak ada", + "DE.Views.ParagraphSettingsAdvanced.textLevel": "Level", + "DE.Views.ParagraphSettingsAdvanced.textNone": "Tidak ada", + "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(tidak ada)", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Posisi", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Hapus", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Hapus Semua", @@ -1317,44 +2265,60 @@ "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", "DE.Views.RightMenu.txtChartSettings": "Pengaturan Bagan", + "DE.Views.RightMenu.txtFormSettings": "Pengaturan Form", "DE.Views.RightMenu.txtHeaderFooterSettings": "Pengaturan Header dan Footer", "DE.Views.RightMenu.txtImageSettings": "Pengaturan Gambar", - "DE.Views.RightMenu.txtMailMergeSettings": "Mail Merge Settings", + "DE.Views.RightMenu.txtMailMergeSettings": "Pengaturan merge email", "DE.Views.RightMenu.txtParagraphSettings": "Pengaturan Paragraf", "DE.Views.RightMenu.txtShapeSettings": "Pengaturan Bentuk", + "DE.Views.RightMenu.txtSignatureSettings": "Pengaturan tanda tangan", "DE.Views.RightMenu.txtTableSettings": "Pengaturan Tabel", - "DE.Views.RightMenu.txtTextArtSettings": "Text Art Settings", + "DE.Views.RightMenu.txtTextArtSettings": "Pengaturan Text Art", "DE.Views.ShapeSettings.strBackground": "Warna latar", "DE.Views.ShapeSettings.strChange": "Ubah Bentuk Otomatis", "DE.Views.ShapeSettings.strColor": "Warna", - "DE.Views.ShapeSettings.strFill": "Isian", + "DE.Views.ShapeSettings.strFill": "Isi", "DE.Views.ShapeSettings.strForeground": "Warna latar depan", "DE.Views.ShapeSettings.strPattern": "Pola", + "DE.Views.ShapeSettings.strShadow": "Tampilkan bayangan", "DE.Views.ShapeSettings.strSize": "Ukuran", - "DE.Views.ShapeSettings.strStroke": "Tekanan", + "DE.Views.ShapeSettings.strStroke": "Garis", "DE.Views.ShapeSettings.strTransparency": "Opasitas", "DE.Views.ShapeSettings.strType": "Tipe", "DE.Views.ShapeSettings.textAdvanced": "Tampilkan pengaturan lanjut", - "DE.Views.ShapeSettings.textBorderSizeErr": "Input yang dimasukkan salah.
Silakan masukkan input antara 1pt dan 1584pt.", - "DE.Views.ShapeSettings.textColor": "Isian Warna", + "DE.Views.ShapeSettings.textAngle": "Sudut", + "DE.Views.ShapeSettings.textBorderSizeErr": "Nilai yang dimasukkan tidak tepat.
Silakan masukkan nilai antara 0 pt dan 1584 pt.", + "DE.Views.ShapeSettings.textColor": "Warna Isi", "DE.Views.ShapeSettings.textDirection": "Arah", "DE.Views.ShapeSettings.textEmptyPattern": "Tidak ada Pola", + "DE.Views.ShapeSettings.textFlip": "Flip", "DE.Views.ShapeSettings.textFromFile": "Dari File", + "DE.Views.ShapeSettings.textFromStorage": "Dari Penyimpanan", "DE.Views.ShapeSettings.textFromUrl": "Dari URL", "DE.Views.ShapeSettings.textGradient": "Gradien", "DE.Views.ShapeSettings.textGradientFill": "Isian Gradien", + "DE.Views.ShapeSettings.textHint270": "Rotasi 90° Berlawanan Jarum Jam", + "DE.Views.ShapeSettings.textHint90": "Rotasi 90° Searah Jarum Jam", + "DE.Views.ShapeSettings.textHintFlipH": "Flip Horizontal", + "DE.Views.ShapeSettings.textHintFlipV": "Flip Vertikal", "DE.Views.ShapeSettings.textImageTexture": "Gambar atau Tekstur", "DE.Views.ShapeSettings.textLinear": "Linier", "DE.Views.ShapeSettings.textNoFill": "Tidak ada Isian", "DE.Views.ShapeSettings.textPatternFill": "Pola", - "DE.Views.ShapeSettings.textPosition": "Jabatan", + "DE.Views.ShapeSettings.textPosition": "Posisi", "DE.Views.ShapeSettings.textRadial": "Radial", + "DE.Views.ShapeSettings.textRecentlyUsed": "Baru Digunakan", + "DE.Views.ShapeSettings.textRotate90": "Rotasi 90°", + "DE.Views.ShapeSettings.textRotation": "Rotasi", + "DE.Views.ShapeSettings.textSelectImage": "Pilih Foto", "DE.Views.ShapeSettings.textSelectTexture": "Pilih", "DE.Views.ShapeSettings.textStretch": "Rentangkan", "DE.Views.ShapeSettings.textStyle": "Model", "DE.Views.ShapeSettings.textTexture": "Dari Tekstur", "DE.Views.ShapeSettings.textTile": "Petak", "DE.Views.ShapeSettings.textWrap": "Bentuk Potongan", + "DE.Views.ShapeSettings.tipAddGradientPoint": "Tambah titik gradien", + "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Hilangkan titik gradien", "DE.Views.ShapeSettings.txtBehind": "Di belakang", "DE.Views.ShapeSettings.txtBrownPaper": "Kertas Coklat", "DE.Views.ShapeSettings.txtCanvas": "Kanvas", @@ -1375,26 +2339,74 @@ "DE.Views.ShapeSettings.txtTopAndBottom": "Atas dan bawah", "DE.Views.ShapeSettings.txtWood": "Kayu", "DE.Views.SignatureSettings.notcriticalErrorTitle": "Peringatan", + "DE.Views.SignatureSettings.strDelete": "Hilangkan Tandatangan", + "DE.Views.SignatureSettings.strDetails": "Detail Tanda Tangan", + "DE.Views.SignatureSettings.strInvalid": "Tanda tangan tidak valid", + "DE.Views.SignatureSettings.strRequested": "Penandatangan yang diminta", + "DE.Views.SignatureSettings.strSetup": "Setup Tanda Tangan", + "DE.Views.SignatureSettings.strSign": "Tandatangan", + "DE.Views.SignatureSettings.strSignature": "Tanda Tangan", + "DE.Views.SignatureSettings.strSigner": "Penandatangan", + "DE.Views.SignatureSettings.strValid": "Tanda tangan valid", + "DE.Views.SignatureSettings.txtContinueEditing": "Tetap edit", + "DE.Views.SignatureSettings.txtEditWarning": "Editing akan menghapus tandatangan dari dokumen.
Lanjutkan?", + "DE.Views.SignatureSettings.txtRemoveWarning": "Apakah Anda ingin menghilangkan tandatangan ini?
Proses tidak bisa dikembalikan.", + "DE.Views.SignatureSettings.txtRequestedSignatures": "Dokumen ini perlu ditandatangani.", + "DE.Views.SignatureSettings.txtSigned": "Tandatangan valid sudah ditambahkan ke dokumen. Dokumen dilindungi dari editan.", + "DE.Views.SignatureSettings.txtSignedInvalid": "Beberapa tandatangan digital di dokumen tidak valid atau tidak bisa diverifikasi. Dokumen dilindungi dari editan.", "DE.Views.Statusbar.goToPageText": "Buka Halaman", "DE.Views.Statusbar.pageIndexText": "Halaman {0} dari {1}", "DE.Views.Statusbar.tipFitPage": "Sesuaikan Halaman", "DE.Views.Statusbar.tipFitWidth": "Sesuaikan Lebar", + "DE.Views.Statusbar.tipHandTool": "Hand tool", + "DE.Views.Statusbar.tipSelectTool": "Pilih perangkat", "DE.Views.Statusbar.tipSetLang": "Atur Bahasa Teks", "DE.Views.Statusbar.tipZoomFactor": "Pembesaran", "DE.Views.Statusbar.tipZoomIn": "Perbesar", "DE.Views.Statusbar.tipZoomOut": "Perkecil", "DE.Views.Statusbar.txtPageNumInvalid": "Nomor halaman salah", - "DE.Views.StyleTitleDialog.textHeader": "Create New Style", - "DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style", - "DE.Views.StyleTitleDialog.textTitle": "Title", - "DE.Views.StyleTitleDialog.txtEmpty": "This field is required", - "DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty", - "DE.Views.TableOfContentsSettings.textNone": "tidak ada", + "DE.Views.StyleTitleDialog.textHeader": "Buat style baru", + "DE.Views.StyleTitleDialog.textNextStyle": "Style paragraf berikutnya", + "DE.Views.StyleTitleDialog.textTitle": "Judul", + "DE.Views.StyleTitleDialog.txtEmpty": "Kolom ini harus diisi", + "DE.Views.StyleTitleDialog.txtNotEmpty": "Area tidak boleh kosong", + "DE.Views.StyleTitleDialog.txtSameAs": "Sama seperti membuat style baru", + "DE.Views.TableFormulaDialog.textBookmark": "Paste Bookmark", + "DE.Views.TableFormulaDialog.textFormat": "Format Nomor", + "DE.Views.TableFormulaDialog.textFormula": "Formula", + "DE.Views.TableFormulaDialog.textInsertFunction": "Paste Fungsi", + "DE.Views.TableFormulaDialog.textTitle": "Pengaturan Formula", + "DE.Views.TableOfContentsSettings.strAlign": "Nomor halaman rata kanan", + "DE.Views.TableOfContentsSettings.strFullCaption": "Sertakan label dan nomor", + "DE.Views.TableOfContentsSettings.strLinks": "Format Daftar Isi sebagai Link", + "DE.Views.TableOfContentsSettings.strLinksOF": "Format daftar gambar sebagai link", + "DE.Views.TableOfContentsSettings.strShowPages": "Tampilkan nomor halaman", + "DE.Views.TableOfContentsSettings.textBuildTable": "Buat daftar isi dari", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "Buat daftar gambar dari", + "DE.Views.TableOfContentsSettings.textEquation": "Persamaan", + "DE.Views.TableOfContentsSettings.textFigure": "Gambar", + "DE.Views.TableOfContentsSettings.textLeader": "Leader", + "DE.Views.TableOfContentsSettings.textLevel": "Level", + "DE.Views.TableOfContentsSettings.textLevels": "Levels", + "DE.Views.TableOfContentsSettings.textNone": "Tidak ada", + "DE.Views.TableOfContentsSettings.textRadioCaption": "Caption", + "DE.Views.TableOfContentsSettings.textRadioLevels": "Level outline", "DE.Views.TableOfContentsSettings.textRadioStyle": "Model", + "DE.Views.TableOfContentsSettings.textRadioStyles": "Style yang dipilih", "DE.Views.TableOfContentsSettings.textStyle": "Model", + "DE.Views.TableOfContentsSettings.textStyles": "Style", "DE.Views.TableOfContentsSettings.textTable": "Tabel", "DE.Views.TableOfContentsSettings.textTitle": "Daftar Isi", + "DE.Views.TableOfContentsSettings.textTitleTOF": "Daftar gambar", + "DE.Views.TableOfContentsSettings.txtCentered": "Tengah", + "DE.Views.TableOfContentsSettings.txtClassic": "Klasik", "DE.Views.TableOfContentsSettings.txtCurrent": "Saat ini", + "DE.Views.TableOfContentsSettings.txtDistinctive": "Tersendiri", + "DE.Views.TableOfContentsSettings.txtFormal": "Formal", + "DE.Views.TableOfContentsSettings.txtModern": "Modern", + "DE.Views.TableOfContentsSettings.txtOnline": "Online", + "DE.Views.TableOfContentsSettings.txtSimple": "Simple", + "DE.Views.TableOfContentsSettings.txtStandard": "Standard", "DE.Views.TableSettings.deleteColumnText": "Hapus Kolom", "DE.Views.TableSettings.deleteRowText": "Hapus Baris", "DE.Views.TableSettings.deleteTableText": "Hapus Tabel", @@ -1410,17 +2422,22 @@ "DE.Views.TableSettings.splitCellsText": "Pisahkan Sel...", "DE.Views.TableSettings.splitCellTitleText": "Pisahkan Sel", "DE.Views.TableSettings.strRepeatRow": "Ulangi sebagai baris header di bagian atas tiap halaman", + "DE.Views.TableSettings.textAddFormula": "Tambah formula", "DE.Views.TableSettings.textAdvanced": "Tampilkan pengaturan lanjut", "DE.Views.TableSettings.textBackColor": "Warna Latar", "DE.Views.TableSettings.textBanded": "Bergaris", "DE.Views.TableSettings.textBorderColor": "Warna", "DE.Views.TableSettings.textBorders": "Gaya Pembatas", + "DE.Views.TableSettings.textCellSize": "Ukuran Baris & Kolom", "DE.Views.TableSettings.textColumns": "Kolom", + "DE.Views.TableSettings.textConvert": "Konversi Tabel ke Teks", + "DE.Views.TableSettings.textDistributeCols": "Distribusikan kolom", + "DE.Views.TableSettings.textDistributeRows": "Distribusikan baris", "DE.Views.TableSettings.textEdit": "Baris & Kolom", "DE.Views.TableSettings.textEmptyTemplate": "Tidak ada template", "DE.Views.TableSettings.textFirst": "Pertama", "DE.Views.TableSettings.textHeader": "Header", - "DE.Views.TableSettings.textHeight": "Ketinggian", + "DE.Views.TableSettings.textHeight": "Tinggi", "DE.Views.TableSettings.textLast": "Terakhir", "DE.Views.TableSettings.textRows": "Baris", "DE.Views.TableSettings.textSelectBorders": "Pilih pembatas yang ingin Anda ubah dengan menerarpkan model yang telah dipilih di atas", @@ -1438,13 +2455,23 @@ "DE.Views.TableSettings.tipRight": "Buat Pembatas Kanan-Luar Saja", "DE.Views.TableSettings.tipTop": "Buat Pembatas Atas-Luar Saja", "DE.Views.TableSettings.txtNoBorders": "Tidak ada pembatas", + "DE.Views.TableSettings.txtTable_Accent": "Aksen", + "DE.Views.TableSettings.txtTable_Colorful": "Berwarna", + "DE.Views.TableSettings.txtTable_Dark": "Gelap", + "DE.Views.TableSettings.txtTable_GridTable": "Grid Tabel", + "DE.Views.TableSettings.txtTable_Light": "Cerah", + "DE.Views.TableSettings.txtTable_ListTable": "List Tabel", + "DE.Views.TableSettings.txtTable_PlainTable": "Tabel Biasa", + "DE.Views.TableSettings.txtTable_TableGrid": "Gird Tabel", "DE.Views.TableSettingsAdvanced.textAlign": "Perataan", "DE.Views.TableSettingsAdvanced.textAlignment": "Perataan", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Beri spasi antar sel", + "DE.Views.TableSettingsAdvanced.textAlt": "Teks Alternatif", "DE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi", + "DE.Views.TableSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Judul", "DE.Views.TableSettingsAdvanced.textAnchorText": "Teks", - "DE.Views.TableSettingsAdvanced.textAutofit": "Otomatis sesuaikan ukuran dengan konten ", + "DE.Views.TableSettingsAdvanced.textAutofit": "Otomatis sesuaikan ukuran dengan konten", "DE.Views.TableSettingsAdvanced.textBackColor": "Latar Sel", "DE.Views.TableSettingsAdvanced.textBelow": "di bawah", "DE.Views.TableSettingsAdvanced.textBorderColor": "Warna Pembatas", @@ -1452,7 +2479,9 @@ "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Pembatas & Latar", "DE.Views.TableSettingsAdvanced.textBorderWidth": "Ukuran Pembatas", "DE.Views.TableSettingsAdvanced.textBottom": "Bawah", + "DE.Views.TableSettingsAdvanced.textCellOptions": "Opsi Sel", "DE.Views.TableSettingsAdvanced.textCellProps": "Properti Sel", + "DE.Views.TableSettingsAdvanced.textCellSize": "Ukuran Sel", "DE.Views.TableSettingsAdvanced.textCenter": "Tengah", "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Tengah", "DE.Views.TableSettingsAdvanced.textCheckMargins": "Gunakan margin standar", @@ -1464,12 +2493,14 @@ "DE.Views.TableSettingsAdvanced.textLeftTooltip": "Kiri", "DE.Views.TableSettingsAdvanced.textMargin": "Margin", "DE.Views.TableSettingsAdvanced.textMargins": "Margin Sel", + "DE.Views.TableSettingsAdvanced.textMeasure": "Diukur dalam", "DE.Views.TableSettingsAdvanced.textMove": "Pindah obyek bersama teks", "DE.Views.TableSettingsAdvanced.textOnlyCells": "Hanya untuk sel yang dipilih", "DE.Views.TableSettingsAdvanced.textOptions": "Pilihan", "DE.Views.TableSettingsAdvanced.textOverlap": "Ijinkan menumpuk", "DE.Views.TableSettingsAdvanced.textPage": "Halaman", "DE.Views.TableSettingsAdvanced.textPosition": "Posisi", + "DE.Views.TableSettingsAdvanced.textPrefWidth": "Lebar preferensi", "DE.Views.TableSettingsAdvanced.textPreview": "Pratinjau", "DE.Views.TableSettingsAdvanced.textRelative": "relatif dengan", "DE.Views.TableSettingsAdvanced.textRight": "Kanan", @@ -1477,6 +2508,7 @@ "DE.Views.TableSettingsAdvanced.textRightTooltip": "Kanan", "DE.Views.TableSettingsAdvanced.textTable": "Tabel", "DE.Views.TableSettingsAdvanced.textTableBackColor": "Latar Belakang Tabel", + "DE.Views.TableSettingsAdvanced.textTablePosition": "Posisi Tabel", "DE.Views.TableSettingsAdvanced.textTableSize": "Ukuran Tabel", "DE.Views.TableSettingsAdvanced.textTitle": "Tabel - Pengaturan Lanjut", "DE.Views.TableSettingsAdvanced.textTop": "Atas", @@ -1487,6 +2519,7 @@ "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabel berderet", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Tabel alur", "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Bentuk Potongan", + "DE.Views.TableSettingsAdvanced.textWrapText": "Wrap Teks", "DE.Views.TableSettingsAdvanced.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam", "DE.Views.TableSettingsAdvanced.tipCellAll": "Buat Pembatas untuk Sel Dalam Saja", "DE.Views.TableSettingsAdvanced.tipCellInner": "Buat Garis Vertikal dan Horisontal untuk Sel Dalam Saja", @@ -1498,128 +2531,207 @@ "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Buat Pembatas Luar dan Garis Vertikal dan Horisontal untuk Sel Dalam", "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Buat Pembatas Luar Tabel dan Pembatas Luar untuk Sel Dalam", "DE.Views.TableSettingsAdvanced.txtCm": "Sentimeter", + "DE.Views.TableSettingsAdvanced.txtInch": "Inci", "DE.Views.TableSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", + "DE.Views.TableSettingsAdvanced.txtPercent": "Persen", "DE.Views.TableSettingsAdvanced.txtPt": "Titik", + "DE.Views.TableToTextDialog.textEmpty": "Anda harus menulis karakter untuk separator custom.", + "DE.Views.TableToTextDialog.textNested": "Konversi tabel nested", "DE.Views.TableToTextDialog.textOther": "Lainnya", + "DE.Views.TableToTextDialog.textPara": "Tanda paragraf", + "DE.Views.TableToTextDialog.textSemicolon": "Semicolons", + "DE.Views.TableToTextDialog.textSeparator": "Pisahkan teks dengan", "DE.Views.TableToTextDialog.textTab": "Tab", - "DE.Views.TextArtSettings.strColor": "Color", - "DE.Views.TextArtSettings.strFill": "Fill", - "DE.Views.TextArtSettings.strSize": "Size", - "DE.Views.TextArtSettings.strStroke": "Stroke", - "DE.Views.TextArtSettings.strTransparency": "Opacity", + "DE.Views.TableToTextDialog.textTitle": "Konversi Tabel ke Teks", + "DE.Views.TextArtSettings.strColor": "Warna", + "DE.Views.TextArtSettings.strFill": "Isi", + "DE.Views.TextArtSettings.strSize": "Ukuran", + "DE.Views.TextArtSettings.strStroke": "Garis", + "DE.Views.TextArtSettings.strTransparency": "Opasitas", "DE.Views.TextArtSettings.strType": "Tipe", - "DE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", - "DE.Views.TextArtSettings.textColor": "Color Fill", - "DE.Views.TextArtSettings.textDirection": "Direction", - "DE.Views.TextArtSettings.textGradient": "Gradient", - "DE.Views.TextArtSettings.textGradientFill": "Gradient Fill", - "DE.Views.TextArtSettings.textLinear": "Linear", - "DE.Views.TextArtSettings.textNoFill": "No Fill", - "DE.Views.TextArtSettings.textPosition": "Jabatan", + "DE.Views.TextArtSettings.textAngle": "Sudut", + "DE.Views.TextArtSettings.textBorderSizeErr": "Nilai yang dimasukkan tidak tepat.
Silakan masukkan nilai antara 0 pt dan 1584 pt.", + "DE.Views.TextArtSettings.textColor": "Warna Isi", + "DE.Views.TextArtSettings.textDirection": "Arah", + "DE.Views.TextArtSettings.textGradient": "Titik Gradien", + "DE.Views.TextArtSettings.textGradientFill": "Isian Gradien", + "DE.Views.TextArtSettings.textLinear": "Linier", + "DE.Views.TextArtSettings.textNoFill": "Tidak ada Isian", + "DE.Views.TextArtSettings.textPosition": "Posisi", "DE.Views.TextArtSettings.textRadial": "Radial", - "DE.Views.TextArtSettings.textSelectTexture": "Select", - "DE.Views.TextArtSettings.textStyle": "Style", + "DE.Views.TextArtSettings.textSelectTexture": "Pilih", + "DE.Views.TextArtSettings.textStyle": "Model", "DE.Views.TextArtSettings.textTemplate": "Template", "DE.Views.TextArtSettings.textTransform": "Transform", - "DE.Views.TextArtSettings.txtNoBorders": "No Line", + "DE.Views.TextArtSettings.tipAddGradientPoint": "Tambah titik gradien", + "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Hilangkan titik gradien", + "DE.Views.TextArtSettings.txtNoBorders": "Tanpa Garis", + "DE.Views.TextToTableDialog.textAutofit": "Sifat Autofit", "DE.Views.TextToTableDialog.textColumns": "Kolom", + "DE.Views.TextToTableDialog.textContents": "Autofit ke konten", + "DE.Views.TextToTableDialog.textEmpty": "Anda harus menulis karakter untuk separator custom.", + "DE.Views.TextToTableDialog.textFixed": "Lebar kolom tetap", "DE.Views.TextToTableDialog.textOther": "Lainnya", "DE.Views.TextToTableDialog.textPara": "Paragraf", "DE.Views.TextToTableDialog.textRows": "Baris", + "DE.Views.TextToTableDialog.textSemicolon": "Semicolons", + "DE.Views.TextToTableDialog.textSeparator": "Pisahkan Teks pada", "DE.Views.TextToTableDialog.textTab": "Tab", "DE.Views.TextToTableDialog.textTableSize": "Ukuran Tabel", + "DE.Views.TextToTableDialog.textTitle": "Konversi Teks ke Tabel", + "DE.Views.TextToTableDialog.textWindow": "Autofit ke jendela", "DE.Views.TextToTableDialog.txtAutoText": "Otomatis", - "DE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar", + "DE.Views.Toolbar.capBtnAddComment": "Tambahkan Komentar", + "DE.Views.Toolbar.capBtnBlankPage": "Halaman Kosong", "DE.Views.Toolbar.capBtnColumns": "Kolom", "DE.Views.Toolbar.capBtnComment": "Komentar", - "DE.Views.Toolbar.capBtnInsChart": "Bagan", + "DE.Views.Toolbar.capBtnDateTime": "Tanggal & Jam", + "DE.Views.Toolbar.capBtnInsChart": "Grafik", + "DE.Views.Toolbar.capBtnInsControls": "Kontrol Konten", "DE.Views.Toolbar.capBtnInsDropcap": "Drop Cap", + "DE.Views.Toolbar.capBtnInsEquation": "Persamaan", + "DE.Views.Toolbar.capBtnInsHeader": "Header & Footer", "DE.Views.Toolbar.capBtnInsImage": "Gambar", + "DE.Views.Toolbar.capBtnInsPagebreak": "Breaks", + "DE.Views.Toolbar.capBtnInsShape": "Bentuk", + "DE.Views.Toolbar.capBtnInsSymbol": "Simbol", "DE.Views.Toolbar.capBtnInsTable": "Tabel", + "DE.Views.Toolbar.capBtnInsTextart": "Text Art", + "DE.Views.Toolbar.capBtnInsTextbox": "Kotak Teks", + "DE.Views.Toolbar.capBtnLineNumbers": "Nomor Garis", + "DE.Views.Toolbar.capBtnMargins": "Margin", + "DE.Views.Toolbar.capBtnPageOrient": "Orientasi", "DE.Views.Toolbar.capBtnPageSize": "Ukuran", - "DE.Views.Toolbar.capImgAlign": "Sejajarkan", + "DE.Views.Toolbar.capBtnWatermark": "Watermark", + "DE.Views.Toolbar.capImgAlign": "Ratakan", "DE.Views.Toolbar.capImgBackward": "Mundurkan", "DE.Views.Toolbar.capImgForward": "Majukan", "DE.Views.Toolbar.capImgGroup": "Grup", + "DE.Views.Toolbar.capImgWrapping": "Wrapping", + "DE.Views.Toolbar.mniCapitalizeWords": "Huruf Kapital Setiap Kata", "DE.Views.Toolbar.mniCustomTable": "Sisipkan Tabel Khusus", + "DE.Views.Toolbar.mniDrawTable": "Buat Tabel", + "DE.Views.Toolbar.mniEditControls": "Pengaturan Kontrol", "DE.Views.Toolbar.mniEditDropCap": "Pengaturan Drop Cap", "DE.Views.Toolbar.mniEditFooter": "Edit Footer", "DE.Views.Toolbar.mniEditHeader": "Edit Header", + "DE.Views.Toolbar.mniEraseTable": "Hapus Tabel", "DE.Views.Toolbar.mniFromFile": "Dari File", + "DE.Views.Toolbar.mniFromStorage": "Dari Penyimpanan", "DE.Views.Toolbar.mniFromUrl": "Dari URL", "DE.Views.Toolbar.mniHiddenBorders": "Pembatas Tabel Disembunyikan", "DE.Views.Toolbar.mniHiddenChars": "Karakter Tidak Dicetak", + "DE.Views.Toolbar.mniHighlightControls": "Pengaturan Highlight", "DE.Views.Toolbar.mniImageFromFile": "Gambar dari File", + "DE.Views.Toolbar.mniImageFromStorage": "Gambar dari Penyimpanan", "DE.Views.Toolbar.mniImageFromUrl": "Gambar dari URL", + "DE.Views.Toolbar.mniLowerCase": "huruf kecil", + "DE.Views.Toolbar.mniSentenceCase": "Case kalimat.", + "DE.Views.Toolbar.mniTextToTable": "Konversi Teks ke Tabel", + "DE.Views.Toolbar.mniToggleCase": "tOGGLE cASE", + "DE.Views.Toolbar.mniUpperCase": "HURUFBESAR", "DE.Views.Toolbar.strMenuNoFill": "Tidak ada Isian", "DE.Views.Toolbar.textAutoColor": "Otomatis", "DE.Views.Toolbar.textBold": "Tebal", - "DE.Views.Toolbar.textBottom": "Bottom: ", - "DE.Views.Toolbar.textColumnsLeft": "Left", - "DE.Views.Toolbar.textColumnsOne": "One", - "DE.Views.Toolbar.textColumnsRight": "Right", - "DE.Views.Toolbar.textColumnsThree": "Three", - "DE.Views.Toolbar.textColumnsTwo": "Two", + "DE.Views.Toolbar.textBottom": "Bawah: ", + "DE.Views.Toolbar.textChangeLevel": "Ganti Level List", + "DE.Views.Toolbar.textCheckboxControl": "Kotak centang", + "DE.Views.Toolbar.textColumnsCustom": "Custom Kolom", + "DE.Views.Toolbar.textColumnsLeft": "Kiri", + "DE.Views.Toolbar.textColumnsOne": "Satu", + "DE.Views.Toolbar.textColumnsRight": "Kanan", + "DE.Views.Toolbar.textColumnsThree": "Tiga", + "DE.Views.Toolbar.textColumnsTwo": "Dua", + "DE.Views.Toolbar.textComboboxControl": "Kotak combo", + "DE.Views.Toolbar.textContinuous": "Kontinyu", "DE.Views.Toolbar.textContPage": "Halaman Bersambung", + "DE.Views.Toolbar.textCustomLineNumbers": "Opsi Penomoran Garis", "DE.Views.Toolbar.textDateControl": "Tanggal", + "DE.Views.Toolbar.textDropdownControl": "List drop-down", + "DE.Views.Toolbar.textEditWatermark": "Custom Watermark", "DE.Views.Toolbar.textEvenPage": "Halaman Genap", "DE.Views.Toolbar.textInMargin": "Dalam Margin", - "DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break", + "DE.Views.Toolbar.textInsColumnBreak": "Sisipkan Break Kolom", + "DE.Views.Toolbar.textInsertPageCount": "Sisipkan nomor dari halaman", "DE.Views.Toolbar.textInsertPageNumber": "Sisipkan nomor halaman", "DE.Views.Toolbar.textInsPageBreak": "Sisipkan Jeda Halaman", "DE.Views.Toolbar.textInsSectionBreak": "Sisipkan Jeda Bagian", "DE.Views.Toolbar.textInText": "Dalam Teks", "DE.Views.Toolbar.textItalic": "Miring", - "DE.Views.Toolbar.textLeft": "Left: ", - "DE.Views.Toolbar.textMarginsLast": "Last Custom", - "DE.Views.Toolbar.textMarginsModerate": "Moderate", + "DE.Views.Toolbar.textLandscape": "Landscape", + "DE.Views.Toolbar.textLeft": "Kiri: ", + "DE.Views.Toolbar.textListSettings": "List Pengaturan", + "DE.Views.Toolbar.textMarginsLast": "Custom Terakhir", + "DE.Views.Toolbar.textMarginsModerate": "Moderat", "DE.Views.Toolbar.textMarginsNarrow": "Narrow", "DE.Views.Toolbar.textMarginsNormal": "Normal", + "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Wide", - "DE.Views.Toolbar.textNewColor": "Tambahkan Warna Khusus Baru", + "DE.Views.Toolbar.textNewColor": "Tambahkan warna khusus baru", "DE.Views.Toolbar.textNextPage": "Halaman Selanjutnya", + "DE.Views.Toolbar.textNoHighlight": "Tanpa highlight", "DE.Views.Toolbar.textNone": "Tidak ada", "DE.Views.Toolbar.textOddPage": "Halaman Ganjil", - "DE.Views.Toolbar.textPageMarginsCustom": "Custom margins", - "DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size", - "DE.Views.Toolbar.textRight": "Right: ", - "DE.Views.Toolbar.textStrikeout": "Coret", - "DE.Views.Toolbar.textStyleMenuDelete": "Delete style", - "DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles", - "DE.Views.Toolbar.textStyleMenuNew": "New style from selection", - "DE.Views.Toolbar.textStyleMenuRestore": "Restore to default", - "DE.Views.Toolbar.textStyleMenuRestoreAll": "Restore all to default styles", - "DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection", + "DE.Views.Toolbar.textPageMarginsCustom": "Custom Margin", + "DE.Views.Toolbar.textPageSizeCustom": "Custom Ukuran Halaman", + "DE.Views.Toolbar.textPictureControl": "Gambar", + "DE.Views.Toolbar.textPlainControl": "Teks biasa", + "DE.Views.Toolbar.textPortrait": "Portrait", + "DE.Views.Toolbar.textRemoveControl": "Hilangkan Kontrol Konten", + "DE.Views.Toolbar.textRemWatermark": "Hilangkan Watermark", + "DE.Views.Toolbar.textRestartEachPage": "Restart Setiap Halaman", + "DE.Views.Toolbar.textRestartEachSection": "Restart Setiap Sesi", + "DE.Views.Toolbar.textRichControl": "Rich text", + "DE.Views.Toolbar.textRight": "Kanan: ", + "DE.Views.Toolbar.textStrikeout": "Coret ganda", + "DE.Views.Toolbar.textStyleMenuDelete": "Hapus style", + "DE.Views.Toolbar.textStyleMenuDeleteAll": "Hapus semua style custom", + "DE.Views.Toolbar.textStyleMenuNew": "Style baru dari pilihan", + "DE.Views.Toolbar.textStyleMenuRestore": "Kembalikan ke default", + "DE.Views.Toolbar.textStyleMenuRestoreAll": "Kembalikan semua ke gaya default", + "DE.Views.Toolbar.textStyleMenuUpdate": "Update dari pilihan", "DE.Views.Toolbar.textSubscript": "Subskrip", "DE.Views.Toolbar.textSuperscript": "Superskrip", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Menekan untuk Paragraf Saat Ini", + "DE.Views.Toolbar.textTabCollaboration": "Kolaborasi", "DE.Views.Toolbar.textTabFile": "File", "DE.Views.Toolbar.textTabHome": "Halaman Depan", "DE.Views.Toolbar.textTabInsert": "Sisipkan", + "DE.Views.Toolbar.textTabLayout": "Layout", + "DE.Views.Toolbar.textTabLinks": "Referensi", + "DE.Views.Toolbar.textTabProtect": "Proteksi", "DE.Views.Toolbar.textTabReview": "Ulasan", "DE.Views.Toolbar.textTabView": "Lihat", - "DE.Views.Toolbar.textTitleError": "Error", + "DE.Views.Toolbar.textTitleError": "Kesalahan", "DE.Views.Toolbar.textToCurrent": "Ke posisi saat ini", - "DE.Views.Toolbar.textTop": "Top: ", + "DE.Views.Toolbar.textTop": "Atas: ", "DE.Views.Toolbar.textUnderline": "Garis bawah", "DE.Views.Toolbar.tipAlignCenter": "Rata Tengah", "DE.Views.Toolbar.tipAlignJust": "Rata Kiri-Kanan", "DE.Views.Toolbar.tipAlignLeft": "Rata Kiri", "DE.Views.Toolbar.tipAlignRight": "Rata Kanan", "DE.Views.Toolbar.tipBack": "Kembali", + "DE.Views.Toolbar.tipBlankPage": "Sisipkan halaman kosong", + "DE.Views.Toolbar.tipChangeCase": "Ubah case", "DE.Views.Toolbar.tipChangeChart": "Ubah Tipe Bagan", "DE.Views.Toolbar.tipClearStyle": "Hapus Model", "DE.Views.Toolbar.tipColorSchemas": "Ubah Skema Warna", - "DE.Views.Toolbar.tipColumns": "Insert columns", + "DE.Views.Toolbar.tipColumns": "Sisipkan kolom", + "DE.Views.Toolbar.tipControls": "Sisipkan kontrol konten", "DE.Views.Toolbar.tipCopy": "Salin", "DE.Views.Toolbar.tipCopyStyle": "Salin Model", + "DE.Views.Toolbar.tipDateTime": "Sisipkan tanggal dan jam sekarang", "DE.Views.Toolbar.tipDecFont": "Perkecil Ukuran Huruf", "DE.Views.Toolbar.tipDecPrLeft": "Kurangi Indentasi", "DE.Views.Toolbar.tipDropCap": "Sisipkan Drop Cap", "DE.Views.Toolbar.tipEditHeader": "Edit Header atau Footer", "DE.Views.Toolbar.tipFontColor": "Warna Huruf", - "DE.Views.Toolbar.tipFontName": "Nama Huruf", + "DE.Views.Toolbar.tipFontName": "Huruf", "DE.Views.Toolbar.tipFontSize": "Ukuran Huruf", "DE.Views.Toolbar.tipHighlightColor": "Warna Sorot", + "DE.Views.Toolbar.tipImgAlign": "Ratakan objek", + "DE.Views.Toolbar.tipImgGroup": "Satukan objek", + "DE.Views.Toolbar.tipImgWrapping": "Wrap Teks", "DE.Views.Toolbar.tipIncFont": "Perbesar Ukuran Huruf", "DE.Views.Toolbar.tipIncPrLeft": "Tambahkan Indentasi", "DE.Views.Toolbar.tipInsertChart": "Sisipkan Bagan", @@ -1627,15 +2739,29 @@ "DE.Views.Toolbar.tipInsertImage": "Sisipkan Gambar", "DE.Views.Toolbar.tipInsertNum": "Sisipkan Nomor Halaman", "DE.Views.Toolbar.tipInsertShape": "Sisipkan Bentuk Otomatis", + "DE.Views.Toolbar.tipInsertSymbol": "Sisipkan simbol", "DE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel", "DE.Views.Toolbar.tipInsertText": "Sisipkan Teks", + "DE.Views.Toolbar.tipInsertTextArt": "Sisipkan Text Art", + "DE.Views.Toolbar.tipLineNumbers": "Tampilkan nomor garis", "DE.Views.Toolbar.tipLineSpace": "Spasi Antar Baris Paragraf", - "DE.Views.Toolbar.tipMailRecepients": "Mail Merge", + "DE.Views.Toolbar.tipMailRecepients": "Merge email", "DE.Views.Toolbar.tipMarkers": "Butir", + "DE.Views.Toolbar.tipMarkersArrow": "Butir panah", + "DE.Views.Toolbar.tipMarkersCheckmark": "Butir tanda centang", + "DE.Views.Toolbar.tipMarkersDash": "Titik putus-putus", + "DE.Views.Toolbar.tipMarkersFRhombus": "Butir belah ketupat isi", + "DE.Views.Toolbar.tipMarkersFRound": "Butir lingkaran isi", + "DE.Views.Toolbar.tipMarkersFSquare": "Butir persegi isi", + "DE.Views.Toolbar.tipMarkersHRound": "Butir bundar hollow", + "DE.Views.Toolbar.tipMarkersStar": "Butir bintang", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Butir nomor multi-level", "DE.Views.Toolbar.tipMultilevels": "Ikhtisar", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Butir simbol multi-level", + "DE.Views.Toolbar.tipMultiLevelVarious": "Butir simbol variasi multi-level", "DE.Views.Toolbar.tipNumbers": "Penomoran", "DE.Views.Toolbar.tipPageBreak": "Sisipkan Halaman atau jeda Bagian", - "DE.Views.Toolbar.tipPageMargins": "Page Margins", + "DE.Views.Toolbar.tipPageMargins": "Margin halaman", "DE.Views.Toolbar.tipPageOrient": "Orientasi Halaman", "DE.Views.Toolbar.tipPageSize": "Ukuran Halaman", "DE.Views.Toolbar.tipParagraphStyle": "Model Paragraf", @@ -1650,13 +2776,19 @@ "DE.Views.Toolbar.tipShowHiddenChars": "Karakter Tidak Dicetak", "DE.Views.Toolbar.tipSynchronize": "Dokumen telah diubah oleh pengguna lain. Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.", "DE.Views.Toolbar.tipUndo": "Batalkan", + "DE.Views.Toolbar.tipWatermark": "Edit watermark", + "DE.Views.Toolbar.txtDistribHor": "Distribusikan Horizontal", + "DE.Views.Toolbar.txtDistribVert": "Distribusikan Vertikal", + "DE.Views.Toolbar.txtMarginAlign": "Rata dengan Margin", + "DE.Views.Toolbar.txtObjectsAlign": "Ratakan Objek yang Dipilih", + "DE.Views.Toolbar.txtPageAlign": "Rata dengan Halaman", "DE.Views.Toolbar.txtScheme1": "Office", "DE.Views.Toolbar.txtScheme10": "Median", "DE.Views.Toolbar.txtScheme11": "Metro", "DE.Views.Toolbar.txtScheme12": "Modul", "DE.Views.Toolbar.txtScheme13": "Mewah", "DE.Views.Toolbar.txtScheme14": "Jendela Oriel", - "DE.Views.Toolbar.txtScheme15": "Original", + "DE.Views.Toolbar.txtScheme15": "Origin", "DE.Views.Toolbar.txtScheme16": "Kertas", "DE.Views.Toolbar.txtScheme17": "Titik balik matahari", "DE.Views.Toolbar.txtScheme18": "Teknik", @@ -1664,6 +2796,7 @@ "DE.Views.Toolbar.txtScheme2": "Grayscale", "DE.Views.Toolbar.txtScheme20": "Urban", "DE.Views.Toolbar.txtScheme21": "Semangat", + "DE.Views.Toolbar.txtScheme22": "Office Baru", "DE.Views.Toolbar.txtScheme3": "Puncak", "DE.Views.Toolbar.txtScheme4": "Aspek", "DE.Views.Toolbar.txtScheme5": "Kewargaan", @@ -1671,20 +2804,37 @@ "DE.Views.Toolbar.txtScheme7": "Margin Sisa", "DE.Views.Toolbar.txtScheme8": "Alur", "DE.Views.Toolbar.txtScheme9": "Cetakan", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Selalu tampilkan toolbar", + "DE.Views.ViewTab.textDarkDocument": "Dokumen gelap", "DE.Views.ViewTab.textFitToPage": "Sesuaikan Halaman", "DE.Views.ViewTab.textFitToWidth": "Sesuaikan Lebar", - "DE.Views.ViewTab.textZoom": "Perbesar", + "DE.Views.ViewTab.textInterfaceTheme": "Tema interface", + "DE.Views.ViewTab.textNavigation": "Navigasi", + "DE.Views.ViewTab.textRulers": "Penggaris", + "DE.Views.ViewTab.textStatusBar": "Bar Status", + "DE.Views.ViewTab.textZoom": "Pembesaran", "DE.Views.WatermarkSettingsDialog.textAuto": "Otomatis", "DE.Views.WatermarkSettingsDialog.textBold": "Tebal", + "DE.Views.WatermarkSettingsDialog.textColor": "Warna teks", + "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", "DE.Views.WatermarkSettingsDialog.textFont": "Huruf", "DE.Views.WatermarkSettingsDialog.textFromFile": "Dari File", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "Dari Penyimpanan", "DE.Views.WatermarkSettingsDialog.textFromUrl": "Dari URL", - "DE.Views.WatermarkSettingsDialog.textHor": "Horizontal", + "DE.Views.WatermarkSettingsDialog.textHor": "Horisontal", + "DE.Views.WatermarkSettingsDialog.textImageW": "Watermark gambar", "DE.Views.WatermarkSettingsDialog.textItalic": "Miring", "DE.Views.WatermarkSettingsDialog.textLanguage": "Bahasa", - "DE.Views.WatermarkSettingsDialog.textNone": "tidak ada", + "DE.Views.WatermarkSettingsDialog.textLayout": "Layout", + "DE.Views.WatermarkSettingsDialog.textNone": "Tidak ada", + "DE.Views.WatermarkSettingsDialog.textScale": "Skala", + "DE.Views.WatermarkSettingsDialog.textSelect": "Pilih Gambar", "DE.Views.WatermarkSettingsDialog.textStrikeout": "Coret ganda", "DE.Views.WatermarkSettingsDialog.textText": "Teks", + "DE.Views.WatermarkSettingsDialog.textTextW": "Watermark teks", + "DE.Views.WatermarkSettingsDialog.textTitle": "Pengaturan Watermark", + "DE.Views.WatermarkSettingsDialog.textTransparency": "Semi Transparan", "DE.Views.WatermarkSettingsDialog.textUnderline": "Garis bawah", + "DE.Views.WatermarkSettingsDialog.tipFontName": "Nama Font", "DE.Views.WatermarkSettingsDialog.tipFontSize": "Ukuran Huruf" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index a8bb45618..a169290fb 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crea copia", "Common.Translation.warnFileLockedBtnView": "‎Aperto per la visualizzazione‎", "Common.UI.ButtonColored.textAutoColor": "Automatico", - "Common.UI.ButtonColored.textNewColor": "Aggiungere un nuovo colore personalizzato", + "Common.UI.ButtonColored.textNewColor": "Aggiungi Colore personalizzato", "Common.UI.Calendar.textApril": "Aprile", "Common.UI.Calendar.textAugust": "Agosto", "Common.UI.Calendar.textDecember": "Dicembre", @@ -916,17 +916,6 @@ "DE.Controllers.Toolbar.textSymbols": "Simboli", "DE.Controllers.Toolbar.textTabForms": "Forme‎", "DE.Controllers.Toolbar.textWarning": "Avviso", - "DE.Controllers.Toolbar.tipMarkersArrow": "Punti elenco a freccia", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Punti elenco a segno di spunta", - "DE.Controllers.Toolbar.tipMarkersDash": "Punti elenco a trattino", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Punti elenco a rombo pieno", - "DE.Controllers.Toolbar.tipMarkersFRound": "Punti elenco rotondi pieni", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Punti elenco quadrati pieni", - "DE.Controllers.Toolbar.tipMarkersHRound": "Punti elenco rotondi vuoti", - "DE.Controllers.Toolbar.tipMarkersStar": "Punti elenco a stella", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Elenco numerato a livelli multipli", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Simboli puntati a livelli multipli", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Punti numerati a livelli multipli", "DE.Controllers.Toolbar.txtAccent_Accent": "Acuto", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Freccia Destra-Sinistra in alto", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Freccia verso sinistra sopra", @@ -1527,14 +1516,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Aggiorna sommario", "DE.Views.DocumentHolder.textWrap": "Stile di disposizione testo", "DE.Views.DocumentHolder.tipIsLocked": "Questo elemento è attualmente in fase di modifica da un altro utente.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Punti elenco a freccia", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Punti elenco a segno di spunta", - "DE.Views.DocumentHolder.tipMarkersDash": "Punti elenco a trattino", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Punti elenco a rombo pieno", - "DE.Views.DocumentHolder.tipMarkersFRound": "Punti elenco rotondi pieni", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Punti elenco quadrati pieni", - "DE.Views.DocumentHolder.tipMarkersHRound": "Punti elenco rotondi vuoti", - "DE.Views.DocumentHolder.tipMarkersStar": "Punti elenco a stella", "DE.Views.DocumentHolder.toDictionaryText": "Aggiungi al Dizionario", "DE.Views.DocumentHolder.txtAddBottom": "Aggiungi bordo inferiore", "DE.Views.DocumentHolder.txtAddFractionBar": "Aggiungi barra di frazione", @@ -2132,6 +2113,7 @@ "DE.Views.Navigation.txtDemote": "Retrocedere", "DE.Views.Navigation.txtEmpty": "Non ci sono titoli nel documento.
Applica uno stile di titolo al testo in modo che appaia nel sommario.", "DE.Views.Navigation.txtEmptyItem": "Intestazione vuota", + "DE.Views.Navigation.txtEmptyViewer": "Non ci sono titoli nel documento.", "DE.Views.Navigation.txtExpand": "Espandi tutto", "DE.Views.Navigation.txtExpandToLevel": "Espandi al livello", "DE.Views.Navigation.txtHeadingAfter": "Nuova intestazione dopo", @@ -2765,7 +2747,18 @@ "DE.Views.Toolbar.tipLineSpace": "Interlinea paragrafo", "DE.Views.Toolbar.tipMailRecepients": "Stampa unione", "DE.Views.Toolbar.tipMarkers": "Elenchi puntati", + "DE.Views.Toolbar.tipMarkersArrow": "Punti elenco a freccia", + "DE.Views.Toolbar.tipMarkersCheckmark": "Punti elenco a segno di spunta", + "DE.Views.Toolbar.tipMarkersDash": "Punti elenco a trattino", + "DE.Views.Toolbar.tipMarkersFRhombus": "Punti elenco a rombo pieno", + "DE.Views.Toolbar.tipMarkersFRound": "Punti elenco rotondi pieni", + "DE.Views.Toolbar.tipMarkersFSquare": "Punti elenco quadrati pieni", + "DE.Views.Toolbar.tipMarkersHRound": "Punti elenco rotondi vuoti", + "DE.Views.Toolbar.tipMarkersStar": "Punti elenco a stella", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Elenco numerato a livelli multipli", "DE.Views.Toolbar.tipMultilevels": "Struttura", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Simboli puntati a livelli multipli", + "DE.Views.Toolbar.tipMultiLevelVarious": "Punti numerati a livelli multipli", "DE.Views.Toolbar.tipNumbers": "Elenchi numerati", "DE.Views.Toolbar.tipPageBreak": "Inserisci interruzione di pagina o di sezione", "DE.Views.Toolbar.tipPageMargins": "Margini della pagina", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 6ee05345e..35e86b759 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -1,6 +1,6 @@ { "Common.Controllers.Chat.notcriticalErrorTitle": "警告", - "Common.Controllers.Chat.textEnterMessage": "メッセージをここに挿入する", + "Common.Controllers.Chat.textEnterMessage": "ここにメッセージを挿入してください。", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "匿名者", "Common.Controllers.ExternalDiagramEditor.textClose": "閉じる", "Common.Controllers.ExternalDiagramEditor.warningText": "他のユーザは編集しているのためオブジェクトが無効になります。", @@ -19,22 +19,22 @@ "Common.Controllers.ReviewChanges.textCaps": "全ての英大文字", "Common.Controllers.ReviewChanges.textCenter": "中央揃え", "Common.Controllers.ReviewChanges.textChar": "文字レベル", - "Common.Controllers.ReviewChanges.textChart": "グラフ", + "Common.Controllers.ReviewChanges.textChart": "チャート", "Common.Controllers.ReviewChanges.textColor": "フォントの色", "Common.Controllers.ReviewChanges.textContextual": "同じスタイルの場合は、段落間に間隔を追加しません。", "Common.Controllers.ReviewChanges.textDeleted": "削除済み:", "Common.Controllers.ReviewChanges.textDStrikeout": "二重取り消し線", - "Common.Controllers.ReviewChanges.textEquation": "数式", + "Common.Controllers.ReviewChanges.textEquation": "方程式\t", "Common.Controllers.ReviewChanges.textExact": "固定値", "Common.Controllers.ReviewChanges.textFirstLine": "最初の行", "Common.Controllers.ReviewChanges.textFontSize": "フォントのサイズ", - "Common.Controllers.ReviewChanges.textFormatted": "書式付き", - "Common.Controllers.ReviewChanges.textHighlight": "強調表示の色", + "Common.Controllers.ReviewChanges.textFormatted": "書式設定済み", + "Common.Controllers.ReviewChanges.textHighlight": "ハイライトの色", "Common.Controllers.ReviewChanges.textImage": "画像", "Common.Controllers.ReviewChanges.textIndentLeft": "左インデント", "Common.Controllers.ReviewChanges.textIndentRight": "右インデント", "Common.Controllers.ReviewChanges.textInserted": "挿入済み:", - "Common.Controllers.ReviewChanges.textItalic": "斜体", + "Common.Controllers.ReviewChanges.textItalic": "イタリック", "Common.Controllers.ReviewChanges.textJustify": "両端揃え", "Common.Controllers.ReviewChanges.textKeepLines": "段落を分割しない", "Common.Controllers.ReviewChanges.textKeepNext": "次の段落と分離しない", @@ -42,22 +42,22 @@ "Common.Controllers.ReviewChanges.textLineSpacing": "行間:", "Common.Controllers.ReviewChanges.textMultiple": "複数", "Common.Controllers.ReviewChanges.textNoBreakBefore": "前にページ区切りなし", - "Common.Controllers.ReviewChanges.textNoContextual": "同じなスタイルの段落の間に間隔を追加する", + "Common.Controllers.ReviewChanges.textNoContextual": "同じスタイルの段落の間に間隔を追加する", "Common.Controllers.ReviewChanges.textNoKeepLines": "段落を分割する", "Common.Controllers.ReviewChanges.textNoKeepNext": "次の段落と分離する", - "Common.Controllers.ReviewChanges.textNot": "ありません", - "Common.Controllers.ReviewChanges.textNoWidow": "改ページ時1行残して段落を区切らないを制御しない。", - "Common.Controllers.ReviewChanges.textNum": "番号設定の変更", + "Common.Controllers.ReviewChanges.textNot": "ではない", + "Common.Controllers.ReviewChanges.textNoWidow": "ウィンドウ制御なし", + "Common.Controllers.ReviewChanges.textNum": "番号付けの変更", "Common.Controllers.ReviewChanges.textOff": "{0} は、変更履歴を使用しなくなりました。", "Common.Controllers.ReviewChanges.textOffGlobal": "{0} は全員に変更履歴を無効にしました", "Common.Controllers.ReviewChanges.textOn": "{0} は変更履歴を現在使用しています。", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} は全員に変更履歴を有効にしました。", "Common.Controllers.ReviewChanges.textParaDeleted": "段落が削除されました", - "Common.Controllers.ReviewChanges.textParaFormatted": "段落の書式変更", + "Common.Controllers.ReviewChanges.textParaFormatted": "段落の書式変更済み", "Common.Controllers.ReviewChanges.textParaInserted": "段落が挿入されました", - "Common.Controllers.ReviewChanges.textParaMoveFromDown": "下に移動された:", - "Common.Controllers.ReviewChanges.textParaMoveFromUp": "上に移動された:", - "Common.Controllers.ReviewChanges.textParaMoveTo": "移動された:", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "下に移動済み:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "上に移動済み:", + "Common.Controllers.ReviewChanges.textParaMoveTo": "移動済み:", "Common.Controllers.ReviewChanges.textPosition": "位置", "Common.Controllers.ReviewChanges.textRight": "右揃え", "Common.Controllers.ReviewChanges.textShape": "図形", @@ -72,7 +72,7 @@ "Common.Controllers.ReviewChanges.textSuperScript": "上付き文字", "Common.Controllers.ReviewChanges.textTableChanged": "テーブル設定が変更されました", "Common.Controllers.ReviewChanges.textTableRowsAdd": "テーブルに行が追加されました", - "Common.Controllers.ReviewChanges.textTableRowsDel": "テーブル行が削除されました", + "Common.Controllers.ReviewChanges.textTableRowsDel": "テーブルの行が削除されました", "Common.Controllers.ReviewChanges.textTabs": "タブの変更", "Common.Controllers.ReviewChanges.textTitleComparison": "比較設定", "Common.Controllers.ReviewChanges.textUnderline": "下線", @@ -81,36 +81,36 @@ "Common.Controllers.ReviewChanges.textWord": "単語レベル", "Common.define.chartData.textArea": "面グラフ", "Common.define.chartData.textAreaStacked": "積み上げ面", - "Common.define.chartData.textAreaStackedPer": "100% 積み上げ面", - "Common.define.chartData.textBar": "横棒グラフ", + "Common.define.chartData.textAreaStackedPer": "スタック領域 100%", + "Common.define.chartData.textBar": "バー", "Common.define.chartData.textBarNormal": "集合縦棒", "Common.define.chartData.textBarNormal3d": "3-D 集合縦棒", "Common.define.chartData.textBarNormal3dPerspective": "3-D 縦棒", "Common.define.chartData.textBarStacked": "積み上げ縦棒", "Common.define.chartData.textBarStacked3d": "3-D 積み上げ縦棒", - "Common.define.chartData.textBarStackedPer": "100% 積み上げ縦棒", - "Common.define.chartData.textBarStackedPer3d": "3-D 100% 積み上げ縦棒", - "Common.define.chartData.textCharts": "グラフ", + "Common.define.chartData.textBarStackedPer": "積み上げ縦棒 100% ", + "Common.define.chartData.textBarStackedPer3d": "3-D 積み上げ縦棒 100% ", + "Common.define.chartData.textCharts": "チャート", "Common.define.chartData.textColumn": "縦棒グラフ", "Common.define.chartData.textCombo": "複合", "Common.define.chartData.textComboAreaBar": "積み上げ面 - 集合縦棒", "Common.define.chartData.textComboBarLine": "集合縦棒 - 線", - "Common.define.chartData.textComboBarLineSecondary": "集合縦棒 - 第 2 軸の折れ線", + "Common.define.chartData.textComboBarLineSecondary": "集合縦棒 - 二次軸上の線", "Common.define.chartData.textComboCustom": "カスタム組み合わせ", "Common.define.chartData.textDoughnut": "ドーナツ", "Common.define.chartData.textHBarNormal": "集合横棒", "Common.define.chartData.textHBarNormal3d": "3-D 集合横棒", "Common.define.chartData.textHBarStacked": "積み上げ横棒", "Common.define.chartData.textHBarStacked3d": "3-D 積み上げ横棒", - "Common.define.chartData.textHBarStackedPer": "100%積み上げ横棒", - "Common.define.chartData.textHBarStackedPer3d": "3-D 100% 積み上げ横棒", + "Common.define.chartData.textHBarStackedPer": "積み上げ横棒 100%", + "Common.define.chartData.textHBarStackedPer3d": "3-D 積み上げ横棒 100% ", "Common.define.chartData.textLine": "折れ線グラフ", "Common.define.chartData.textLine3d": "3-D 折れ線", "Common.define.chartData.textLineMarker": "マーカー付き折れ線", "Common.define.chartData.textLineStacked": "積み上げ折れ線", "Common.define.chartData.textLineStackedMarker": "マーク付き積み上げ折れ線", - "Common.define.chartData.textLineStackedPer": "100% 積み上げ折れ線", - "Common.define.chartData.textLineStackedPerMarker": "マーカー付き 100% 積み上げ折れ線", + "Common.define.chartData.textLineStackedPer": "積み上げ折れ線 100% ", + "Common.define.chartData.textLineStackedPerMarker": "マーカー付き 積み上げ折れ線 100% ", "Common.define.chartData.textPie": "円グラフ", "Common.define.chartData.textPie3d": "3-D 円", "Common.define.chartData.textPoint": "点グラフ", @@ -123,9 +123,9 @@ "Common.define.chartData.textSurface": "表面", "Common.Translation.warnFileLocked": "このファイルは他のアプリで編集されているので、編集できません。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成する", - "Common.Translation.warnFileLockedBtnView": "閲覧可能", + "Common.Translation.warnFileLockedBtnView": "閲覧するために開く", "Common.UI.ButtonColored.textAutoColor": "自動​", - "Common.UI.ButtonColored.textNewColor": "ユーザー設定の色", + "Common.UI.ButtonColored.textNewColor": "新規カスタムカラーの追加", "Common.UI.Calendar.textApril": "4月", "Common.UI.Calendar.textAugust": "8月", "Common.UI.Calendar.textDecember": "12月", @@ -139,18 +139,18 @@ "Common.UI.Calendar.textNovember": "11月", "Common.UI.Calendar.textOctober": "10月", "Common.UI.Calendar.textSeptember": "9月", - "Common.UI.Calendar.textShortApril": "四月", + "Common.UI.Calendar.textShortApril": "4月", "Common.UI.Calendar.textShortAugust": "8月", - "Common.UI.Calendar.textShortDecember": "十二月", - "Common.UI.Calendar.textShortFebruary": "二月", + "Common.UI.Calendar.textShortDecember": "12月", + "Common.UI.Calendar.textShortFebruary": "2月", "Common.UI.Calendar.textShortFriday": "金", - "Common.UI.Calendar.textShortJanuary": "一月", - "Common.UI.Calendar.textShortJuly": "七月", - "Common.UI.Calendar.textShortJune": "六月", - "Common.UI.Calendar.textShortMarch": "三月", + "Common.UI.Calendar.textShortJanuary": "1月", + "Common.UI.Calendar.textShortJuly": "7月", + "Common.UI.Calendar.textShortJune": "6月", + "Common.UI.Calendar.textShortMarch": "3月", "Common.UI.Calendar.textShortMay": "5月", "Common.UI.Calendar.textShortMonday": "月", - "Common.UI.Calendar.textShortNovember": "十一月", + "Common.UI.Calendar.textShortNovember": "11月", "Common.UI.Calendar.textShortOctober": "10月", "Common.UI.Calendar.textShortSaturday": "土", "Common.UI.Calendar.textShortSeptember": "9月", @@ -168,16 +168,16 @@ "Common.UI.ExtendedColorDialog.textNew": "新しい", "Common.UI.ExtendedColorDialog.textRGBErr": "入力された値が正しくありません。
0〜255の数値を入力してください。", "Common.UI.HSBColorPicker.textNoColor": "色なし", - "Common.UI.InputFieldBtnPassword.textHintHidePwd": "パスワードを隠す", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "パスワードを表示しない", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "パスワードを表示する", - "Common.UI.SearchDialog.textHighlight": "結果を強調表示", + "Common.UI.SearchDialog.textHighlight": "結果のハイライト", "Common.UI.SearchDialog.textMatchCase": "大文字と小文字の区別", - "Common.UI.SearchDialog.textReplaceDef": "代替テキストの挿入する", - "Common.UI.SearchDialog.textSearchStart": "テキストをここに挿入する", + "Common.UI.SearchDialog.textReplaceDef": "代替テキストを挿入する", + "Common.UI.SearchDialog.textSearchStart": "テキストをここに挿入してください。", "Common.UI.SearchDialog.textTitle": "検索と置換", "Common.UI.SearchDialog.textTitle2": "検索", "Common.UI.SearchDialog.textWholeWords": "単語全体", - "Common.UI.SearchDialog.txtBtnHideReplace": "変更を表示しない", + "Common.UI.SearchDialog.txtBtnHideReplace": "置換を表示しない", "Common.UI.SearchDialog.txtBtnReplace": "置き換え", "Common.UI.SearchDialog.txtBtnReplaceAll": "全ての置き換え", "Common.UI.SynchronizeTip.textDontShow": "今後このメッセージを表示しない", @@ -202,24 +202,24 @@ "Common.Views.About.txtAddress": "アドレス:", "Common.Views.About.txtLicensee": "ライセンシー", "Common.Views.About.txtLicensor": "ライセンサー\t", - "Common.Views.About.txtMail": "メール", + "Common.Views.About.txtMail": "メール:", "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "電話番号:", "Common.Views.About.txtVersion": "バージョン", - "Common.Views.AutoCorrectDialog.textAdd": "加える", + "Common.Views.AutoCorrectDialog.textAdd": "追加", "Common.Views.AutoCorrectDialog.textApplyText": "入力時に適用する", "Common.Views.AutoCorrectDialog.textAutoCorrect": "テキストオートコレクト", - "Common.Views.AutoCorrectDialog.textAutoFormat": "入力時にオートフォーマット", - "Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書き", + "Common.Views.AutoCorrectDialog.textAutoFormat": "入力時に自動調整", + "Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書きリスト", "Common.Views.AutoCorrectDialog.textBy": "幅", "Common.Views.AutoCorrectDialog.textDelete": "削除する", "Common.Views.AutoCorrectDialog.textDoubleSpaces": "スペース2回でピリオドを入力する", "Common.Views.AutoCorrectDialog.textFLCells": "テーブルセルの最初の文字を大文字にする", "Common.Views.AutoCorrectDialog.textFLSentence": "文章の最初の文字を大文字にする", - "Common.Views.AutoCorrectDialog.textHyperlink": "インターネットとネットワークのアドレスをハイパーリンクに変更する", - "Common.Views.AutoCorrectDialog.textHyphens": "ハイフン(--)の代わりにダッシュ(—)", + "Common.Views.AutoCorrectDialog.textHyperlink": "ハイパーリンクを使用したインターネットとネットワークの経路", + "Common.Views.AutoCorrectDialog.textHyphens": "ハイフン(--)とダッシュ(-)の組み合わせ", "Common.Views.AutoCorrectDialog.textMathCorrect": "数式オートコレクト", - "Common.Views.AutoCorrectDialog.textNumbered": "自動番号付きリスト", + "Common.Views.AutoCorrectDialog.textNumbered": "自動番号付けリスト", "Common.Views.AutoCorrectDialog.textQuotes": "左右の区別がない引用符を、区別がある引用符に変更する", "Common.Views.AutoCorrectDialog.textRecognized": "認識された関数", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下の式は、認識される数式です。 自動的にイタリック体になることはありません。", @@ -231,13 +231,13 @@ "Common.Views.AutoCorrectDialog.textRestore": "復元する", "Common.Views.AutoCorrectDialog.textTitle": "オートコレクト", "Common.Views.AutoCorrectDialog.textWarnAddRec": "認識される関数には、大文字または小文字のAからZまでの文字のみを含める必要があります。", - "Common.Views.AutoCorrectDialog.textWarnResetRec": "追加した式はすべて削除され、削除された式が復元されます。 続けますか?", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "追加した式はすべて削除され、削除された式が復元されます。 このまま続けますか?", "Common.Views.AutoCorrectDialog.warnReplace": "%1のオートコレクトのエントリはすでに存在します。 取り替えますか?", - "Common.Views.AutoCorrectDialog.warnReset": "追加したオートコレクトはすべて削除され、変更されたものは元の値に復元されます。 続けますか?", + "Common.Views.AutoCorrectDialog.warnReset": "追加したオートコレクトはすべて削除され、変更されたものは元の値に復元されます。 このまま続けますか?", "Common.Views.AutoCorrectDialog.warnRestore": "%1のオートコレクトエントリは元の値にリセットされます。 続けますか?", "Common.Views.Chat.textSend": "送信", - "Common.Views.Comments.mniAuthorAsc": "AからZへで作者を表示する", - "Common.Views.Comments.mniAuthorDesc": "ZからAへで作者を表示する", + "Common.Views.Comments.mniAuthorAsc": "AからZで作成者を表示する", + "Common.Views.Comments.mniAuthorDesc": "ZからAで作成者を表示する", "Common.Views.Comments.mniDateAsc": "最も古い", "Common.Views.Comments.mniDateDesc": "最も新しい", "Common.Views.Comments.mniFilterGroups": "グループでフィルター", @@ -251,20 +251,20 @@ "Common.Views.Comments.textAnonym": "ゲスト", "Common.Views.Comments.textCancel": "キャンセル", "Common.Views.Comments.textClose": "閉じる", - "Common.Views.Comments.textClosePanel": "コメントを閉める", + "Common.Views.Comments.textClosePanel": "コメントを閉じる", "Common.Views.Comments.textComments": "コメント", "Common.Views.Comments.textEdit": "OK", - "Common.Views.Comments.textEnterCommentHint": "コメントをここに挿入する", + "Common.Views.Comments.textEnterCommentHint": "ここにコメントを挿入してください。", "Common.Views.Comments.textHintAddComment": "コメントを追加", - "Common.Views.Comments.textOpenAgain": "もう一度開きます", + "Common.Views.Comments.textOpenAgain": "もう一度開く", "Common.Views.Comments.textReply": "返信", "Common.Views.Comments.textResolve": "解決", "Common.Views.Comments.textResolved": "解決済み", "Common.Views.Comments.textSort": "コメントを並べ替える", "Common.Views.Comments.textViewResolved": "コメントを再開する権限がありません", "Common.Views.CopyWarningDialog.textDontShow": "今後このメッセージを表示しない", - "Common.Views.CopyWarningDialog.textMsg": "このタブの編集のツールバーのボタンとコンテキストメニューを使って、コピー、分割と貼り付けをすることができます。

他のアプリケーションにコピーと貼り付けのために、次のショートカットキー を使ってください:", - "Common.Views.CopyWarningDialog.textTitle": "コピー,切り取り,貼り付けの操作", + "Common.Views.CopyWarningDialog.textMsg": "エディターツールバーのボタンやコンテキストメニューの操作によるコピー、カット、ペーストの動作は、このエディタータブ内でのみ実行されます。

エディタータブ以外のアプリケーションとの間でコピーまたは貼り付けを行うには、次のキーボードの組み合わせを使用して下さい。", + "Common.Views.CopyWarningDialog.textTitle": "コピー、切り取り、貼り付けの操作", "Common.Views.CopyWarningDialog.textToCopy": "コピーのため", "Common.Views.CopyWarningDialog.textToCut": "切り取りのため", "Common.Views.CopyWarningDialog.textToPaste": "貼り付のため", @@ -272,15 +272,15 @@ "Common.Views.DocumentAccessDialog.textTitle": "共有設定", "Common.Views.ExternalDiagramEditor.textClose": "閉じる", "Common.Views.ExternalDiagramEditor.textSave": "保存&終了", - "Common.Views.ExternalDiagramEditor.textTitle": "グラフのエディタ", + "Common.Views.ExternalDiagramEditor.textTitle": "チャートのエディタ", "Common.Views.ExternalMergeEditor.textClose": "閉じる", "Common.Views.ExternalMergeEditor.textSave": "保存&終了", "Common.Views.ExternalMergeEditor.textTitle": "差し込み印刷の宛先", "Common.Views.Header.labelCoUsersDescr": "ファイルを編集しているユーザー:", "Common.Views.Header.textAddFavorite": "お気に入りとしてマーク", "Common.Views.Header.textAdvSettings": "詳細設定", - "Common.Views.Header.textBack": "ファイルのURLを開く", - "Common.Views.Header.textCompactView": "ツールバーを隠す", + "Common.Views.Header.textBack": "ファイルの場所を開く", + "Common.Views.Header.textCompactView": "ツールバーを表示しない", "Common.Views.Header.textHideLines": "ルーラーを表示しない", "Common.Views.Header.textHideStatusBar": "ステータスバーを表示しない", "Common.Views.Header.textRemoveFavorite": "お気に入りから削除", @@ -298,9 +298,9 @@ "Common.Views.Header.txtRename": "名前の変更", "Common.Views.History.textCloseHistory": "履歴を閉じる", "Common.Views.History.textHide": "折りたたみ", - "Common.Views.History.textHideAll": "詳細な変更を隠す", + "Common.Views.History.textHideAll": "詳細変更を表示しない", "Common.Views.History.textRestore": "復元する", - "Common.Views.History.textShow": "展開する", + "Common.Views.History.textShow": "拡張する", "Common.Views.History.textShowAll": "詳細な変更を表示する", "Common.Views.History.textVer": "版", "Common.Views.ImageFromUrlDialog.textUrl": "画像URLの貼り付け", @@ -317,10 +317,10 @@ "Common.Views.OpenDialog.closeButtonText": "ファイルを閉じる", "Common.Views.OpenDialog.txtEncoding": "エンコード", "Common.Views.OpenDialog.txtIncorrectPwd": "パスワードが正しくありません。", - "Common.Views.OpenDialog.txtOpenFile": "ファイルを開くためのパスワードを入力する", + "Common.Views.OpenDialog.txtOpenFile": "ファイルを開くためにパスワードを入力してください。", "Common.Views.OpenDialog.txtPassword": "パスワード", "Common.Views.OpenDialog.txtPreview": "下見", - "Common.Views.OpenDialog.txtProtected": "パスワードを入力してファイルを開くと、ファイルの既存のパスワードがリセットされます。", + "Common.Views.OpenDialog.txtProtected": "一度パスワードを入力してファイルを開くと、そのファイルの既存のパスワードがリセットされます。", "Common.Views.OpenDialog.txtTitle": "%1オプションの選択", "Common.Views.OpenDialog.txtTitleProtected": "保護ファイル", "Common.Views.PasswordDialog.txtDescription": "この文書を保護するためのパスワードを設定してください", @@ -335,12 +335,12 @@ "Common.Views.Plugins.textLoading": "読み込み中", "Common.Views.Plugins.textStart": "スタート", "Common.Views.Plugins.textStop": "停止", - "Common.Views.Protection.hintAddPwd": "パスワードを使用して暗号化", + "Common.Views.Protection.hintAddPwd": "パスワードを使用して暗号化する", "Common.Views.Protection.hintPwd": "パスワードを変更か削除する", "Common.Views.Protection.hintSignature": "デジタル署名かデジタル署名行を追加", "Common.Views.Protection.txtAddPwd": "パスワードの追加", "Common.Views.Protection.txtChangePwd": "パスワードを変更する", - "Common.Views.Protection.txtDeletePwd": "パスワード削除", + "Common.Views.Protection.txtDeletePwd": "パスワードを削除する", "Common.Views.Protection.txtEncrypt": "暗号化する", "Common.Views.Protection.txtInvisibleSignature": "デジタル署名を追加", "Common.Views.Protection.txtSignature": "サイン", @@ -394,19 +394,19 @@ "Common.Views.ReviewChanges.txtCompare": "比較", "Common.Views.ReviewChanges.txtDocLang": "言語", "Common.Views.ReviewChanges.txtEditing": "編集", - "Common.Views.ReviewChanges.txtFinal": "変更は承認された{0}", + "Common.Views.ReviewChanges.txtFinal": "全ての変更が承認されました{0}", "Common.Views.ReviewChanges.txtFinalCap": "最終版", "Common.Views.ReviewChanges.txtHistory": "バージョン履歴", "Common.Views.ReviewChanges.txtMarkup": "全ての変更{0}", "Common.Views.ReviewChanges.txtMarkupCap": "マークアップとバルーン", - "Common.Views.ReviewChanges.txtMarkupSimple": "すべての変更 {0}
バルーンがない", - "Common.Views.ReviewChanges.txtMarkupSimpleCap": "マークアップだけ", - "Common.Views.ReviewChanges.txtNext": "次の変更箇所", - "Common.Views.ReviewChanges.txtOff": "私に消す", - "Common.Views.ReviewChanges.txtOffGlobal": "私にと誰にも消す", - "Common.Views.ReviewChanges.txtOn": "私に点ける", - "Common.Views.ReviewChanges.txtOnGlobal": "私にと誰にも点ける", - "Common.Views.ReviewChanges.txtOriginal": "変更は拒否{0}", + "Common.Views.ReviewChanges.txtMarkupSimple": "すべての変更 {0}
吹き出しなし", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "マークアップのみ", + "Common.Views.ReviewChanges.txtNext": "次へ", + "Common.Views.ReviewChanges.txtOff": "私はオフする", + "Common.Views.ReviewChanges.txtOffGlobal": "私と全員オフにする", + "Common.Views.ReviewChanges.txtOn": "私はオンにする", + "Common.Views.ReviewChanges.txtOnGlobal": "私と全員オンにする", + "Common.Views.ReviewChanges.txtOriginal": "全ての変更が拒否されました{0}", "Common.Views.ReviewChanges.txtOriginalCap": "原本", "Common.Views.ReviewChanges.txtPrev": "前の​​変更箇所", "Common.Views.ReviewChanges.txtPreview": "下見", @@ -428,19 +428,19 @@ "Common.Views.ReviewChangesDialog.txtRejectAll": "すべての変更を元に戻す", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "現在の変更を元に戻します。", "Common.Views.ReviewPopover.textAdd": "追加", - "Common.Views.ReviewPopover.textAddReply": "返信する", + "Common.Views.ReviewPopover.textAddReply": "返信を追加", "Common.Views.ReviewPopover.textCancel": "キャンセル", "Common.Views.ReviewPopover.textClose": "閉じる", "Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textFollowMove": "移動する", - "Common.Views.ReviewPopover.textMention": "+言及されるユーザーは文書にアクセスのメール通知を取得します", - "Common.Views.ReviewPopover.textMentionNotify": "+言及されるユーザーはメールで通知されます", - "Common.Views.ReviewPopover.textOpenAgain": "もう一度開きます", + "Common.Views.ReviewPopover.textMention": "+メンションされるユーザーは文書にアクセスのメール通知を取得します", + "Common.Views.ReviewPopover.textMentionNotify": "+メンションされるユーザーはメールで通知されます", + "Common.Views.ReviewPopover.textOpenAgain": "もう一度開く", "Common.Views.ReviewPopover.textReply": "返事する", "Common.Views.ReviewPopover.textResolve": "解決", "Common.Views.ReviewPopover.textViewResolved": "コメントを再開する権限がありません", "Common.Views.ReviewPopover.txtAccept": "同意する", - "Common.Views.ReviewPopover.txtDeleteTip": "削除", + "Common.Views.ReviewPopover.txtDeleteTip": "削除する", "Common.Views.ReviewPopover.txtEditTip": "編集", "Common.Views.ReviewPopover.txtReject": "拒否する", "Common.Views.SaveAsDlg.textLoading": "読み込み中", @@ -451,18 +451,18 @@ "Common.Views.SignDialog.textCertificate": "証明書", "Common.Views.SignDialog.textChange": "変更する", "Common.Views.SignDialog.textInputName": "署名者の名前を入力", - "Common.Views.SignDialog.textItalic": "斜体", + "Common.Views.SignDialog.textItalic": "イタリック", "Common.Views.SignDialog.textNameError": "署名者の名前を空にしておくことはできません。", "Common.Views.SignDialog.textPurpose": "この文書にサインする目的", "Common.Views.SignDialog.textSelect": "選択", "Common.Views.SignDialog.textSelectImage": "画像を選択する", "Common.Views.SignDialog.textSignature": "署名は次のようになります", "Common.Views.SignDialog.textTitle": "文書のサイン", - "Common.Views.SignDialog.textUseImage": "または画像を署名として使用するため、「画像の選択」をクリックしてください", + "Common.Views.SignDialog.textUseImage": "または「画像を選択」をクリックして、画像を署名として使用します", "Common.Views.SignDialog.textValid": "%1から%2まで有効", "Common.Views.SignDialog.tipFontName": "フォント名", "Common.Views.SignDialog.tipFontSize": "フォントのサイズ", - "Common.Views.SignSettingsDialog.textAllowComment": " 署名者が署名ダイアログにコメントを追加できるようにする", + "Common.Views.SignSettingsDialog.textAllowComment": "署名ダイアログで署名者がコメントを追加できるようにする", "Common.Views.SignSettingsDialog.textInfo": "署名者情報", "Common.Views.SignSettingsDialog.textInfoEmail": "メール", "Common.Views.SignSettingsDialog.textInfoName": "名前", @@ -474,7 +474,7 @@ "Common.Views.SymbolTableDialog.textCharacter": "文字", "Common.Views.SymbolTableDialog.textCode": "UnicodeHEX値", "Common.Views.SymbolTableDialog.textCopyright": "著作権マーク", - "Common.Views.SymbolTableDialog.textDCQuote": "二重引用符(右)", + "Common.Views.SymbolTableDialog.textDCQuote": "二重引用符(右)を終了する", "Common.Views.SymbolTableDialog.textDOQuote": "二重の引用符(左)", "Common.Views.SymbolTableDialog.textEllipsis": "水平の省略記号", "Common.Views.SymbolTableDialog.textEmDash": "全角ダッシュ", @@ -483,13 +483,13 @@ "Common.Views.SymbolTableDialog.textEnSpace": "半角スペース", "Common.Views.SymbolTableDialog.textFont": "フォント", "Common.Views.SymbolTableDialog.textNBHyphen": "改行をしないハイフン", - "Common.Views.SymbolTableDialog.textNBSpace": "保護されたスペース", + "Common.Views.SymbolTableDialog.textNBSpace": "ノーブレークスペース", "Common.Views.SymbolTableDialog.textPilcrow": "段落記号", "Common.Views.SymbolTableDialog.textQEmSpace": "1/4スペース", "Common.Views.SymbolTableDialog.textRange": "範囲", "Common.Views.SymbolTableDialog.textRecent": "最近使用した記号", "Common.Views.SymbolTableDialog.textRegistered": "商標記号", - "Common.Views.SymbolTableDialog.textSCQuote": "単一引用符(右)", + "Common.Views.SymbolTableDialog.textSCQuote": "単一引用符(右)を終了する", "Common.Views.SymbolTableDialog.textSection": "節記号", "Common.Views.SymbolTableDialog.textShortcut": "ショートカットキー", "Common.Views.SymbolTableDialog.textSHyphen": "ソフトハイフン", @@ -501,7 +501,7 @@ "Common.Views.UserNameDialog.textDontShow": "二度と表示しない", "Common.Views.UserNameDialog.textLabel": "ラベル:", "Common.Views.UserNameDialog.textLabelError": "ラベルは空白にできません", - "DE.Controllers.LeftMenu.leavePageText": "変更を保存しないでドキュメントを閉じると変更が失われます。
保存するために「キャンセル 」、後に「保存」をクリックします。保存していないすべての変更を破棄するために、「OK」をクリックします。", + "DE.Controllers.LeftMenu.leavePageText": "この文書で保存されていない変更はすべて失われます。
「キャンセル」をクリックし、「保存」をクリックすると、変更が保存されます。「OK」をクリックすると、保存されていないすべての変更が破棄されます。", "DE.Controllers.LeftMenu.newDocumentTitle": "名前が付けられていないドキュメント", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "警告", "DE.Controllers.LeftMenu.requestEditRightsText": "アクセス権の編集の要求中...", @@ -511,12 +511,13 @@ "DE.Controllers.LeftMenu.textReplaceSuccess": "検索が行われました。変更された発生回数は{0}です。", "DE.Controllers.LeftMenu.txtCompatible": "ドキュメントは新しい形式で保存されます。 すべてのエディタ機能を使用できますが、ドキュメントのレイアウトに影響する可能性があります。
ファイルを古いバージョンのMS Wordと互換性を持たせる場合は、詳細設定の[互換性]オプションをご使用ください。", "DE.Controllers.LeftMenu.txtUntitled": "タイトルなし", - "DE.Controllers.LeftMenu.warnDownloadAs": "この形式で保存し続ける場合は、テキスト以外のすべての機能が失われます。
続行してもよろしいですか?", + "DE.Controllers.LeftMenu.warnDownloadAs": "この形式で保存を続けると、テキスト以外のすべての機能が失われます。
本当に続行してもよろしいですか?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "あなたの{0}は編集可能な形式に変換されます。これには時間がかかる場合があります。変換後のドキュメントは、テキストを編集できるように最適化されるため、特に元のファイルに多くのグラフィックが含まれている場合、元の {0} と全く同じようには見えないかもしれません。", - "DE.Controllers.LeftMenu.warnDownloadAsRTF": "この形式で保存を続けると、一部の書式が失われる可能性があります。
続行しますか?", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "この形式で保存を続けると、一部の書式が失われる可能性があります。
本当に続行しますか?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} は、置換フィールドに有効な特殊文字ではありません。", "DE.Controllers.Main.applyChangesTextText": "変更の読み込み中...", "DE.Controllers.Main.applyChangesTitleText": "変更の読み込み中", - "DE.Controllers.Main.convertationTimeoutText": "変換のタイムアウトを超過しました。", + "DE.Controllers.Main.convertationTimeoutText": "変換タイムアウトを超過しました。", "DE.Controllers.Main.criticalErrorExtText": "OKボタンを押すと文書リストに戻ることができます。", "DE.Controllers.Main.criticalErrorTitle": "エラー", "DE.Controllers.Main.downloadErrorText": "ダウンロード失敗", @@ -532,19 +533,19 @@ "DE.Controllers.Main.errorConnectToServer": "文書を保存できません。接続設定を確認するまたは、アドミニストレータを連絡してください。
「OK」ボタンをクリックすると文書をダウンロードするように求められます。", "DE.Controllers.Main.errorDatabaseConnection": "外部エラーです。
データベース接続エラーです。この問題は解決しない場合は、サポートにお問い合わせください。", "DE.Controllers.Main.errorDataEncrypted": "暗号化された変更を受信しました。残念ながら解読できません。", - "DE.Controllers.Main.errorDataRange": "データ範囲が正しくありません", + "DE.Controllers.Main.errorDataRange": "データ範囲が正しくありません。", "DE.Controllers.Main.errorDefaultMessage": "エラー コード:%1", "DE.Controllers.Main.errorDirectUrl": "文書へのリンクを確認してください。
このリンクは、ダウンロードしたいファイルへの直接なリンクであるのは必要です。", - "DE.Controllers.Main.errorEditingDownloadas": "文書の処理中にエラーが発生しました。
PCにファイルのバックアップを保存するように「としてダウンロード」を使用してください。", - "DE.Controllers.Main.errorEditingSaveas": "文書の処理中にエラーが発生しました。
PCにファイルのバックアップを保存するように「名前を付けて保存」を使用してください。", + "DE.Controllers.Main.errorEditingDownloadas": "文書の処理中にエラーが発生しました。
「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存してください。", + "DE.Controllers.Main.errorEditingSaveas": "文書の処理中にエラーが発生しました。
「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存してください。", "DE.Controllers.Main.errorEmailClient": "メールクライアントが見つかりませんでした。", "DE.Controllers.Main.errorFilePassProtect": "文書がパスワードで保護されているため開くことができません", "DE.Controllers.Main.errorFileSizeExceed": "ファイルサイズがサーバーで設定された制限を超過しています。
Documentサーバー管理者に詳細をお問い合わせください。", - "DE.Controllers.Main.errorForceSave": "文書の保存中にエラーが発生しました。PCにファイルを保存するように「としてダウンロード」を使用し、または後で再試行してください。", + "DE.Controllers.Main.errorForceSave": "文書の保存中にエラーが発生しました。「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピューターのハードディスクに保存するか、後で再試行してください。", "DE.Controllers.Main.errorKeyEncrypt": "不明なキーの記述子", - "DE.Controllers.Main.errorKeyExpire": "署名キーは期限切れました。", - "DE.Controllers.Main.errorLoadingFont": "フォントがダウンロードしませんでした。文書のサーバのアドミ二ストレータを連絡してください。", - "DE.Controllers.Main.errorMailMergeLoadFile": "ドキュメントの読み込みに失敗しました。 別のファイルを選択してください。", + "DE.Controllers.Main.errorKeyExpire": "キー記述子は有効期限が切れました", + "DE.Controllers.Main.errorLoadingFont": "フォントが読み込まれていません。
ドキュメントサーバーの管理者に連絡してください。", + "DE.Controllers.Main.errorMailMergeLoadFile": "ドキュメントの読み込みに失敗しました。別のファイルを選択してください。", "DE.Controllers.Main.errorMailMergeSaveFile": "結合に失敗しました。", "DE.Controllers.Main.errorProcessSaveResult": "保存に失敗しました", "DE.Controllers.Main.errorServerVersion": "エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。", @@ -552,7 +553,7 @@ "DE.Controllers.Main.errorSessionIdle": "このドキュメントはかなり長い間編集されていませんでした。このページを再度お読み込みください。", "DE.Controllers.Main.errorSessionToken": "サーバーとの接続が中断されました。このページを再度お読み込みください。", "DE.Controllers.Main.errorSetPassword": "パスワードを設定できませんでした。", - "DE.Controllers.Main.errorStockChart": "行の順序が正しくありません。この株価チャートを作成するには、
始値、高値、安値、終値の順でシートのデータを配置してください。", + "DE.Controllers.Main.errorStockChart": "行の順序が正しくありません。この株価チャートを作成するには、
始値、最大値、最小値、終値の順でシートのデータを配置してください。", "DE.Controllers.Main.errorSubmit": "送信に失敗しました。", "DE.Controllers.Main.errorToken": "ドキュメント・セキュリティ・トークンが正しく形成されていません。
ドキュメントサーバーの管理者にご連絡ください。", "DE.Controllers.Main.errorTokenExpire": "ドキュメント・セキュリティ・トークンの有効期限が切れています。
ドキュメントサーバーの管理者にご連絡ください。", @@ -560,23 +561,23 @@ "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されています。
作業を継続する前に、ファイルをダウンロードするか内容をコピーして、変更が消えてしまわないようにしてからページを再読み込みしてください。", "DE.Controllers.Main.errorUserDrop": "ファイルにアクセスできません", "DE.Controllers.Main.errorUsersExceed": "料金プランによってユーザ数を超過しています。", - "DE.Controllers.Main.errorViewerDisconnect": "接続が失われました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", + "DE.Controllers.Main.errorViewerDisconnect": "接続が切断されました。文書の表示は可能ですが、
再度接続されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", "DE.Controllers.Main.leavePageText": "この文書の保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。", - "DE.Controllers.Main.leavePageTextOnClose": "変更を保存せずにドキュメントを閉じると変更が失われます。
保存するには\"キャンセル\"を押して、保存をしてください。保存せずに破棄するには\"OK\"をクリックしてください。", - "DE.Controllers.Main.loadFontsTextText": "データを読み込んでいます", + "DE.Controllers.Main.leavePageTextOnClose": "この文書で保存されていない変更はすべて失われます。
「キャンセル」をクリックし、「保存」をクリックすると、変更が保存されます。「OK」をクリックすると、保存されていないすべての変更が破棄されます。", + "DE.Controllers.Main.loadFontsTextText": "データを読み込んでいます…", "DE.Controllers.Main.loadFontsTitleText": "データを読み込んでいます", - "DE.Controllers.Main.loadFontTextText": "データを読み込んでいます", + "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.loadingDocumentTitleText": "ドキュメントを読み込んでいます", + "DE.Controllers.Main.mailMergeLoadFileText": "データソースを読み込んでいます...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "データソースを読み込んでいます", "DE.Controllers.Main.notcriticalErrorTitle": "警告", - "DE.Controllers.Main.openErrorText": "ファイルを開く中にエラーが発生しました", + "DE.Controllers.Main.openErrorText": "ファイルを開くときにエラーが発生しました。", "DE.Controllers.Main.openTextText": "ドキュメントを開いています...", "DE.Controllers.Main.openTitleText": "ドキュメントを開いています", "DE.Controllers.Main.printTextText": "印刷ドキュメント中...", @@ -584,7 +585,7 @@ "DE.Controllers.Main.reloadButtonText": "ページの再読み込み", "DE.Controllers.Main.requestEditFailedMessageText": "この文書は他のユーザによって編集しています。後で編集してください。", "DE.Controllers.Main.requestEditFailedTitleText": "アクセスが拒否されました", - "DE.Controllers.Main.saveErrorText": "ファイル保存中にエラーが発生しました", + "DE.Controllers.Main.saveErrorText": "ファイルを保存中にエラーが発生しました。", "DE.Controllers.Main.saveErrorTextDesktop": "このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. ファイルが読み取り専用です。
2. ファイルが他のユーザーによって編集されています。
3. ディスクがいっぱいか破損しています。", "DE.Controllers.Main.saveTextText": "ドキュメントを保存しています...", "DE.Controllers.Main.saveTitleText": "ドキュメントを保存しています", @@ -597,13 +598,13 @@ "DE.Controllers.Main.textAnonymous": "匿名者", "DE.Controllers.Main.textApplyAll": "全ての数式に適用する", "DE.Controllers.Main.textBuyNow": "ウェブサイトを訪問する", - "DE.Controllers.Main.textChangesSaved": "変更が保存された", + "DE.Controllers.Main.textChangesSaved": "全ての変更が保存されました", "DE.Controllers.Main.textClose": "閉じる", - "DE.Controllers.Main.textCloseTip": "ヒントを閉じるためにクリックください", - "DE.Controllers.Main.textContactUs": "営業部を連絡する", + "DE.Controllers.Main.textCloseTip": "クリックでヒントを閉じる", + "DE.Controllers.Main.textContactUs": "営業部に連絡する", "DE.Controllers.Main.textConvertEquation": "この数式は、サポートされなくなった古いバージョンの数式エディタで作成されました。 編集するには、方程式をOffice Math ML形式に変換します。
今すぐ変換しますか?", "DE.Controllers.Main.textCustomLoader": "ライセンスの条件によっては、ローダーを変更する権利がないことにご注意ください。
見積もりについては、営業部門にお問い合わせください。", - "DE.Controllers.Main.textDisconnect": "接続が失われました", + "DE.Controllers.Main.textDisconnect": "接続が切断されました", "DE.Controllers.Main.textGuest": "ゲスト", "DE.Controllers.Main.textHasMacros": "ファイルには自動マクロが含まれています。
マクロを実行しますか?", "DE.Controllers.Main.textLearnMore": "詳細はこちら", @@ -611,41 +612,41 @@ "DE.Controllers.Main.textLongName": "128文字未満の名前を入力してください。", "DE.Controllers.Main.textNoLicenseTitle": "ライセンス制限に達しました。", "DE.Controllers.Main.textPaidFeature": "有料機能", - "DE.Controllers.Main.textReconnect": "接続を回復しました", + "DE.Controllers.Main.textReconnect": "接続が回復しました", "DE.Controllers.Main.textRemember": "選択内容を保存する", "DE.Controllers.Main.textRenameError": "ユーザー名は空にできません。", - "DE.Controllers.Main.textRenameLabel": "コラボレーションに使用する名前を入力します", + "DE.Controllers.Main.textRenameLabel": "コラボレーションに使用する名前を入力して下さい。", "DE.Controllers.Main.textShape": "図形", "DE.Controllers.Main.textStrict": "厳格モード", "DE.Controllers.Main.textTryUndoRedo": "ファスト共同編集モードに元に戻す/やり直しの機能は無効になります。
他のユーザーの干渉なし編集するために「厳密なモード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。", "DE.Controllers.Main.textTryUndoRedoWarn": "ファスト共同編集モードでは、元に戻す/やり直し機能が無効になります。", "DE.Controllers.Main.titleLicenseExp": "ライセンスの有効期限が切れています", - "DE.Controllers.Main.titleServerVersion": "エディターが更新された", + "DE.Controllers.Main.titleServerVersion": "編集者が更新されました", "DE.Controllers.Main.titleUpdateVersion": "バージョンを変更しました。", "DE.Controllers.Main.txtAbove": "上", "DE.Controllers.Main.txtArt": "あなたのテキストはここです。", "DE.Controllers.Main.txtBasicShapes": "基本図形", "DE.Controllers.Main.txtBelow": "下", - "DE.Controllers.Main.txtBookmarkError": "エラー! ブックマークが定義されていません。", + "DE.Controllers.Main.txtBookmarkError": "エラー!ブックマークが定義されていません。", "DE.Controllers.Main.txtButtons": "ボタン", "DE.Controllers.Main.txtCallouts": "引き出し", - "DE.Controllers.Main.txtCharts": "グラフ", + "DE.Controllers.Main.txtCharts": "チャート", "DE.Controllers.Main.txtChoose": "アイテムを選択してください", - "DE.Controllers.Main.txtClickToLoad": "クリックして写真を読み込む", - "DE.Controllers.Main.txtCurrentDocument": "現在文書", - "DE.Controllers.Main.txtDiagramTitle": "グラフ名", + "DE.Controllers.Main.txtClickToLoad": "クリックして画像を読み込む", + "DE.Controllers.Main.txtCurrentDocument": "現在の文書", + "DE.Controllers.Main.txtDiagramTitle": "チャートのタイトル", "DE.Controllers.Main.txtEditingMode": "編集モードを設定します。", "DE.Controllers.Main.txtEndOfFormula": "数式の予期しない完了", - "DE.Controllers.Main.txtEnterDate": "日付を入力します", + "DE.Controllers.Main.txtEnterDate": "日付を入力してください", "DE.Controllers.Main.txtErrorLoadHistory": "履歴の読み込みに失敗しました。", "DE.Controllers.Main.txtEvenPage": "偶数ページ", - "DE.Controllers.Main.txtFiguredArrows": "形の矢印", + "DE.Controllers.Main.txtFiguredArrows": "図形矢印", "DE.Controllers.Main.txtFirstPage": "最初のページ", "DE.Controllers.Main.txtFooter": "フッター", "DE.Controllers.Main.txtFormulaNotInTable": "表にない数式", "DE.Controllers.Main.txtHeader": "ヘッダー", "DE.Controllers.Main.txtHyperlink": "ハイパーリンク", - "DE.Controllers.Main.txtIndTooLarge": "インデックス番号が大きすぎます", + "DE.Controllers.Main.txtIndTooLarge": "インデックスが大きすぎます", "DE.Controllers.Main.txtLines": "行", "DE.Controllers.Main.txtMainDocOnly": "エラー!メイン文書のみ。", "DE.Controllers.Main.txtMath": "数学", @@ -654,22 +655,22 @@ "DE.Controllers.Main.txtNeedSynchronize": "更新があります。", "DE.Controllers.Main.txtNone": "なし", "DE.Controllers.Main.txtNoTableOfContents": "ドキュメントに見出しはありません。 目次に表示されるように、テキストに見出しスタイルをご適用ください。", - "DE.Controllers.Main.txtNoTableOfFigures": "図や表の掲載はありません。", + "DE.Controllers.Main.txtNoTableOfFigures": "図表のエントリーはありません。", "DE.Controllers.Main.txtNoText": "エラー!文書に指定されたスタイルのテキストがありません。", "DE.Controllers.Main.txtNotInTable": "テーブルにありません", - "DE.Controllers.Main.txtNotValidBookmark": "エラー!ブックマークセルフリファレンスが無効です。", + "DE.Controllers.Main.txtNotValidBookmark": "エラー!ブックマークの自己参照が無効です。", "DE.Controllers.Main.txtOddPage": "奇数ページ", "DE.Controllers.Main.txtOnPage": "ページで", "DE.Controllers.Main.txtRectangles": "四角形", "DE.Controllers.Main.txtSameAsPrev": "以前と同じ", "DE.Controllers.Main.txtSection": "-セクション", "DE.Controllers.Main.txtSeries": "系列", - "DE.Controllers.Main.txtShape_accentBorderCallout1": "線吹き出し 1(枠付きと強調線)", - "DE.Controllers.Main.txtShape_accentBorderCallout2": "線吹き出し 2 (枠付きと強調線)", - "DE.Controllers.Main.txtShape_accentBorderCallout3": "線吹き出し 3(枠付きと強調線)", - "DE.Controllers.Main.txtShape_accentCallout1": "線吹き出し 1(強調線)", - "DE.Controllers.Main.txtShape_accentCallout2": "線吹き出し 2 (強調線)", - "DE.Controllers.Main.txtShape_accentCallout3": "線吹き出し 3(強調線)", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "線吹き出し1(枠付きと強調線)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "線吹き出し2(枠付きと強調線)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "線吹き出し3(枠付きと強調線)", + "DE.Controllers.Main.txtShape_accentCallout1": "線吹き出し1(強調線)", + "DE.Controllers.Main.txtShape_accentCallout2": "線吹き出し2(強調線)", + "DE.Controllers.Main.txtShape_accentCallout3": "線吹き出し3(強調線)", "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "[戻る]ボタン", "DE.Controllers.Main.txtShape_actionButtonBeginning": "[始めに戻る]ボタン", "DE.Controllers.Main.txtShape_actionButtonBlank": "空白ボタン", @@ -688,27 +689,27 @@ "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "カギ線矢印コネクター", "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "カギ線の二重矢印コネクタ", "DE.Controllers.Main.txtShape_bentUpArrow": "屈折矢印", - "DE.Controllers.Main.txtShape_bevel": "面取り", + "DE.Controllers.Main.txtShape_bevel": "斜角", "DE.Controllers.Main.txtShape_blockArc": "アーチ", - "DE.Controllers.Main.txtShape_borderCallout1": "線吹き出し 1 ", - "DE.Controllers.Main.txtShape_borderCallout2": "線吹き出し 2", - "DE.Controllers.Main.txtShape_borderCallout3": "線吹き出し 3", - "DE.Controllers.Main.txtShape_bracePair": "中かっこ", - "DE.Controllers.Main.txtShape_callout1": "線吹き出し 1(枠付き無し)", - "DE.Controllers.Main.txtShape_callout2": "線吹き出し 2(枠付き無し)", - "DE.Controllers.Main.txtShape_callout3": "線吹き出し 3(枠付き無し)", - "DE.Controllers.Main.txtShape_can": "円筒", + "DE.Controllers.Main.txtShape_borderCallout1": "線吹き出し1 ", + "DE.Controllers.Main.txtShape_borderCallout2": "線吹き出し2", + "DE.Controllers.Main.txtShape_borderCallout3": "線吹き出し3", + "DE.Controllers.Main.txtShape_bracePair": "二重括弧", + "DE.Controllers.Main.txtShape_callout1": "線吹き出し1(枠付き無し)", + "DE.Controllers.Main.txtShape_callout2": "線吹き出し2(枠付き無し)", + "DE.Controllers.Main.txtShape_callout3": "線吹き出し3(枠付き無し)", + "DE.Controllers.Main.txtShape_can": "可能", "DE.Controllers.Main.txtShape_chevron": "シェブロン", "DE.Controllers.Main.txtShape_chord": "コード", "DE.Controllers.Main.txtShape_circularArrow": "円弧の矢印", - "DE.Controllers.Main.txtShape_cloud": "雲形", - "DE.Controllers.Main.txtShape_cloudCallout": "雲形吹き出し", + "DE.Controllers.Main.txtShape_cloud": "クラウド", + "DE.Controllers.Main.txtShape_cloudCallout": "クラウドコールアウト", "DE.Controllers.Main.txtShape_corner": "角", "DE.Controllers.Main.txtShape_cube": "立方体", "DE.Controllers.Main.txtShape_curvedConnector3": "曲線コネクタ", "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "曲線矢印コネクタ", "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "曲線の二重矢印コネクタ", - "DE.Controllers.Main.txtShape_curvedDownArrow": "曲線の下向きの矢印", + "DE.Controllers.Main.txtShape_curvedDownArrow": "曲線の下向き矢印", "DE.Controllers.Main.txtShape_curvedLeftArrow": "曲線の左矢印", "DE.Controllers.Main.txtShape_curvedRightArrow": "曲線の右矢印", "DE.Controllers.Main.txtShape_curvedUpArrow": "曲線の上矢印", @@ -717,44 +718,44 @@ "DE.Controllers.Main.txtShape_diamond": "ダイヤモンド", "DE.Controllers.Main.txtShape_dodecagon": "12角形", "DE.Controllers.Main.txtShape_donut": "ドーナツ", - "DE.Controllers.Main.txtShape_doubleWave": "小波", + "DE.Controllers.Main.txtShape_doubleWave": "二重波", "DE.Controllers.Main.txtShape_downArrow": "下矢印", "DE.Controllers.Main.txtShape_downArrowCallout": "下矢印吹き出し", "DE.Controllers.Main.txtShape_ellipse": "楕円", - "DE.Controllers.Main.txtShape_ellipseRibbon": "湾曲したリボン", - "DE.Controllers.Main.txtShape_ellipseRibbon2": "上カーブ リボン", + "DE.Controllers.Main.txtShape_ellipseRibbon": "下に湾曲したリボン", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "上に湾曲したリボン", "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "フローチャート:代替処理", "DE.Controllers.Main.txtShape_flowChartCollate": "フローチャート:照合", - "DE.Controllers.Main.txtShape_flowChartConnector": "フローチャート: 結合子", - "DE.Controllers.Main.txtShape_flowChartDecision": "フローチャート: 判断", - "DE.Controllers.Main.txtShape_flowChartDelay": "フローチャート: 遅延", - "DE.Controllers.Main.txtShape_flowChartDisplay": "フローチャート: 表示", - "DE.Controllers.Main.txtShape_flowChartDocument": "フローチャート: 文書", - "DE.Controllers.Main.txtShape_flowChartExtract": "フローチャート: 抜き出し", - "DE.Controllers.Main.txtShape_flowChartInputOutput": "フローチャート: データ", - "DE.Controllers.Main.txtShape_flowChartInternalStorage": "フローチャート: 内部ストレージ", - "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "フローチャート: 磁気ディスク", - "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "フローチャート: 直接アクセスのストレージ", - "DE.Controllers.Main.txtShape_flowChartMagneticTape": "フローチャート: 順次アクセス記憶", - "DE.Controllers.Main.txtShape_flowChartManualInput": "フローチャート: 手操作入力", - "DE.Controllers.Main.txtShape_flowChartManualOperation": "フローチャート: 手作業", - "DE.Controllers.Main.txtShape_flowChartMerge": "フローチャート: 組合せ", - "DE.Controllers.Main.txtShape_flowChartMultidocument": "フローチャート: 複数文書", - "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "フローチャート: 他ページ結合子", - "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "フローチャート: 記憶データ", - "DE.Controllers.Main.txtShape_flowChartOr": "フローチャート: 論理和", - "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "フローチャート: 事前定義されたプロセス", - "DE.Controllers.Main.txtShape_flowChartPreparation": "フローチャート: 準備", - "DE.Controllers.Main.txtShape_flowChartProcess": "フローチャート: 処理", + "DE.Controllers.Main.txtShape_flowChartConnector": "フローチャート:結合子", + "DE.Controllers.Main.txtShape_flowChartDecision": "フローチャート:判断", + "DE.Controllers.Main.txtShape_flowChartDelay": "フローチャート:遅延", + "DE.Controllers.Main.txtShape_flowChartDisplay": "フローチャート:表示", + "DE.Controllers.Main.txtShape_flowChartDocument": "フローチャート:文書", + "DE.Controllers.Main.txtShape_flowChartExtract": "フローチャート:抜き出し", + "DE.Controllers.Main.txtShape_flowChartInputOutput": "フローチャート:データ", + "DE.Controllers.Main.txtShape_flowChartInternalStorage": "フローチャート:内部ストレージ", + "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "フローチャート:磁気ディスク", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "フローチャート:直接アクセスストレージ", + "DE.Controllers.Main.txtShape_flowChartMagneticTape": "フローチャート:シーケンシャルアクセスストレージ", + "DE.Controllers.Main.txtShape_flowChartManualInput": "フローチャート:手操作入力", + "DE.Controllers.Main.txtShape_flowChartManualOperation": "フローチャート:手作業", + "DE.Controllers.Main.txtShape_flowChartMerge": "フローチャート:融合", + "DE.Controllers.Main.txtShape_flowChartMultidocument": "フローチャート:複数文書", + "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "フローチャート:他ページ結合子", + "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "フローチャート:保存されたデータ", + "DE.Controllers.Main.txtShape_flowChartOr": "フローチャート:論理和", + "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "フローチャート:事前定義されたプロセス", + "DE.Controllers.Main.txtShape_flowChartPreparation": "フローチャート:準備", + "DE.Controllers.Main.txtShape_flowChartProcess": "フローチャート:処理", "DE.Controllers.Main.txtShape_flowChartPunchedCard": "フローチャート:カード", - "DE.Controllers.Main.txtShape_flowChartPunchedTape": "フローチャート: せん孔テープ", - "DE.Controllers.Main.txtShape_flowChartSort": "フローチャート: 並べ替え", - "DE.Controllers.Main.txtShape_flowChartSummingJunction": "フローチャート: 和接合", - "DE.Controllers.Main.txtShape_flowChartTerminator": "フローチャート:  端子", + "DE.Controllers.Main.txtShape_flowChartPunchedTape": "フローチャート:せん孔テープ", + "DE.Controllers.Main.txtShape_flowChartSort": "フローチャート:並べ替え", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "フローチャート:和接合", + "DE.Controllers.Main.txtShape_flowChartTerminator": "フローチャート:ターミネーター", "DE.Controllers.Main.txtShape_foldedCorner": "折り曲げコーナー", "DE.Controllers.Main.txtShape_frame": "フレーム", "DE.Controllers.Main.txtShape_halfFrame": "半フレーム", - "DE.Controllers.Main.txtShape_heart": "心", + "DE.Controllers.Main.txtShape_heart": "ハート", "DE.Controllers.Main.txtShape_heptagon": "七角形", "DE.Controllers.Main.txtShape_hexagon": "六角形", "DE.Controllers.Main.txtShape_homePlate": "五角形", @@ -763,8 +764,8 @@ "DE.Controllers.Main.txtShape_irregularSeal2": "爆発 2", "DE.Controllers.Main.txtShape_leftArrow": "左矢印", "DE.Controllers.Main.txtShape_leftArrowCallout": "左矢印吹き出し", - "DE.Controllers.Main.txtShape_leftBrace": "左ブレース", - "DE.Controllers.Main.txtShape_leftBracket": "左かっこ", + "DE.Controllers.Main.txtShape_leftBrace": "左中括弧", + "DE.Controllers.Main.txtShape_leftBracket": "左括弧", "DE.Controllers.Main.txtShape_leftRightArrow": "左右矢印", "DE.Controllers.Main.txtShape_leftRightArrowCallout": "左右矢印吹き出し", "DE.Controllers.Main.txtShape_leftRightUpArrow": "三方向矢印", @@ -777,7 +778,7 @@ "DE.Controllers.Main.txtShape_mathEqual": "等号", "DE.Controllers.Main.txtShape_mathMinus": "マイナス", "DE.Controllers.Main.txtShape_mathMultiply": "乗算する", - "DE.Controllers.Main.txtShape_mathNotEqual": "不等号", + "DE.Controllers.Main.txtShape_mathNotEqual": "等しくない", "DE.Controllers.Main.txtShape_mathPlus": "プラス", "DE.Controllers.Main.txtShape_moon": "月形", "DE.Controllers.Main.txtShape_noSmoking": "\"禁止\"マーク", @@ -793,7 +794,7 @@ "DE.Controllers.Main.txtShape_quadArrow": "クワッド矢印", "DE.Controllers.Main.txtShape_quadArrowCallout": "四角矢印の吹き出し", "DE.Controllers.Main.txtShape_rect": "長方形", - "DE.Controllers.Main.txtShape_ribbon": "ダウンリボン", + "DE.Controllers.Main.txtShape_ribbon": "下リボン", "DE.Controllers.Main.txtShape_ribbon2": "上リボン", "DE.Controllers.Main.txtShape_rightArrow": "右矢印", "DE.Controllers.Main.txtShape_rightArrowCallout": "右矢印吹き出し", @@ -810,16 +811,16 @@ "DE.Controllers.Main.txtShape_snip2SameRect": "片側の2つの角を切り取った四角形", "DE.Controllers.Main.txtShape_snipRoundRect": "1つの角を切り取り1つの角を丸めた四角形", "DE.Controllers.Main.txtShape_spline": "曲線", - "DE.Controllers.Main.txtShape_star10": "十芒星", - "DE.Controllers.Main.txtShape_star12": "十二芒星", - "DE.Controllers.Main.txtShape_star16": "十六芒星", - "DE.Controllers.Main.txtShape_star24": "二十四芒星", + "DE.Controllers.Main.txtShape_star10": "10ポイントスター", + "DE.Controllers.Main.txtShape_star12": "12ポイントスター", + "DE.Controllers.Main.txtShape_star16": "16ポイントスター", + "DE.Controllers.Main.txtShape_star24": "24ポイントスター", "DE.Controllers.Main.txtShape_star32": "32ポイントスター", - "DE.Controllers.Main.txtShape_star4": "四芒星", - "DE.Controllers.Main.txtShape_star5": "五芒星", - "DE.Controllers.Main.txtShape_star6": "六芒星", - "DE.Controllers.Main.txtShape_star7": "七芒星", - "DE.Controllers.Main.txtShape_star8": "八芒星", + "DE.Controllers.Main.txtShape_star4": "4ポイントスター", + "DE.Controllers.Main.txtShape_star5": "5ポイントスター", + "DE.Controllers.Main.txtShape_star6": "6ポイントスター", + "DE.Controllers.Main.txtShape_star7": "7ポイントスター", + "DE.Controllers.Main.txtShape_star8": "8ポイントスター", "DE.Controllers.Main.txtShape_stripedRightArrow": "ストライプの右矢印", "DE.Controllers.Main.txtShape_sun": "太陽形", "DE.Controllers.Main.txtShape_teardrop": "滴", @@ -836,7 +837,7 @@ "DE.Controllers.Main.txtShape_wedgeRectCallout": "長方形の吹き出し", "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "角丸長方形の吹き出し", "DE.Controllers.Main.txtStarsRibbons": "スター&リボン", - "DE.Controllers.Main.txtStyle_Caption": "図表番号", + "DE.Controllers.Main.txtStyle_Caption": "キャプション", "DE.Controllers.Main.txtStyle_endnote_text": "文末脚注のテキスト", "DE.Controllers.Main.txtStyle_footnote_text": "脚注テキスト", "DE.Controllers.Main.txtStyle_Heading_1": "見出し1", @@ -848,9 +849,9 @@ "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_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": "小見出し", @@ -869,10 +870,10 @@ "DE.Controllers.Main.unknownErrorText": "不明なエラー", "DE.Controllers.Main.unsupportedBrowserErrorText": "お使いのブラウザがサポートされていません。", "DE.Controllers.Main.uploadDocExtMessage": "不明な文書形式", - "DE.Controllers.Main.uploadDocFileCountMessage": "アップロードされた文書がありません", + "DE.Controllers.Main.uploadDocFileCountMessage": "アップロードされた文書がありません。", "DE.Controllers.Main.uploadDocSizeMessage": "文書の最大サイズ制限を超えました", "DE.Controllers.Main.uploadImageExtMessage": "不明な画像形式", - "DE.Controllers.Main.uploadImageFileCountMessage": "アップロードされた画像がない", + "DE.Controllers.Main.uploadImageFileCountMessage": "画像のアップロードはありません。", "DE.Controllers.Main.uploadImageSizeMessage": "最大の画像サイズの上限を超えました。", "DE.Controllers.Main.uploadImageTextText": "画像がアップロード中...", "DE.Controllers.Main.uploadImageTitleText": "画像がアップロード中", @@ -882,15 +883,15 @@ "DE.Controllers.Main.warnLicenseExceeded": "%1エディターへの同時接続の制限に達しました。 このドキュメントは表示専用で開かれます。
詳細については、管理者にお問い合わせください。", "DE.Controllers.Main.warnLicenseExp": "ライセンスの有効期限が切れています。
ライセンスを更新してページをリロードしてください。", "DE.Controllers.Main.warnLicenseLimitedNoAccess": "ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください", + "DE.Controllers.Main.warnLicenseLimitedRenewed": "ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください。", "DE.Controllers.Main.warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細については、管理者にお問い合わせください。", "DE.Controllers.Main.warnNoLicense": "%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。", "DE.Controllers.Main.warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。", "DE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。", "DE.Controllers.Navigation.txtBeginning": "文書の先頭", - "DE.Controllers.Navigation.txtGotoBeginning": "文書の先頭に移動します", - "DE.Controllers.Statusbar.textDisconnect": "切断されました
設定を確認してください。", - "DE.Controllers.Statusbar.textHasChanges": "新しい変更が追跡された。", + "DE.Controllers.Navigation.txtGotoBeginning": "文書の先頭に移動する", + "DE.Controllers.Statusbar.textDisconnect": "接続が切断されました
接続を試みています。接続設定を確認してください。", + "DE.Controllers.Statusbar.textHasChanges": "新しい変更点を追記しました", "DE.Controllers.Statusbar.textSetTrackChanges": "変更履歴モードで編集中です", "DE.Controllers.Statusbar.textTrackChanges": "有効な変更履歴のモードにドキュメントがドキュメントが開かれました。", "DE.Controllers.Statusbar.tipReview": "変更履歴", @@ -899,7 +900,7 @@ "DE.Controllers.Toolbar.dataUrl": "データのURLを貼り付け", "DE.Controllers.Toolbar.notcriticalErrorTitle": "警告", "DE.Controllers.Toolbar.textAccent": "アクセントカラー", - "DE.Controllers.Toolbar.textBracket": "かっこ", + "DE.Controllers.Toolbar.textBracket": "括弧", "DE.Controllers.Toolbar.textEmptyImgUrl": "画像のURLを指定しなければなりません。", "DE.Controllers.Toolbar.textEmptyMMergeUrl": "URLを指定することが必要です。", "DE.Controllers.Toolbar.textFontSizeErr": "入力された値が正しくありません。
1〜300の数値を入力してください。", @@ -913,17 +914,11 @@ "DE.Controllers.Toolbar.textMatrix": "行列", "DE.Controllers.Toolbar.textOperator": "演算子", "DE.Controllers.Toolbar.textRadical": "冪根", + "DE.Controllers.Toolbar.textRecentlyUsed": "最近使用された", "DE.Controllers.Toolbar.textScript": "スクリプト", "DE.Controllers.Toolbar.textSymbols": "記号", "DE.Controllers.Toolbar.textTabForms": "フォーム", "DE.Controllers.Toolbar.textWarning": "警告", - "DE.Controllers.Toolbar.tipMarkersArrow": "箇条書き(矢印)", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "箇条書き(チェックマーク)", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "箇条書き(ひし形)", - "DE.Controllers.Toolbar.tipMarkersFRound": "箇条書き(丸)", - "DE.Controllers.Toolbar.tipMarkersFSquare": "箇条書き(四角)", - "DE.Controllers.Toolbar.tipMarkersHRound": "箇条書き(円)", - "DE.Controllers.Toolbar.tipMarkersStar": "箇条書き(星)", "DE.Controllers.Toolbar.txtAccent_Accent": "アキュート", "DE.Controllers.Toolbar.txtAccent_ArrowD": "左右双方向矢印 (上)", "DE.Controllers.Toolbar.txtAccent_ArrowL": "左に矢印 (上)", @@ -935,29 +930,29 @@ "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "四角囲み数式 (例)", "DE.Controllers.Toolbar.txtAccent_Check": "チェック", "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "下かっこ", - "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "ブレース上付き", + "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "上括弧", "DE.Controllers.Toolbar.txtAccent_Custom_1": "ベクトルA", "DE.Controllers.Toolbar.txtAccent_Custom_2": "オーバーライン付き ABC", "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XORと上線", "DE.Controllers.Toolbar.txtAccent_DDDot": "トリプル ドット", - "DE.Controllers.Toolbar.txtAccent_DDot": "ダブル ドット", + "DE.Controllers.Toolbar.txtAccent_DDot": "複付点", "DE.Controllers.Toolbar.txtAccent_Dot": "点", - "DE.Controllers.Toolbar.txtAccent_DoubleBar": "二重オーバーライン", + "DE.Controllers.Toolbar.txtAccent_DoubleBar": "二重上線", "DE.Controllers.Toolbar.txtAccent_Grave": "グレーブ", "DE.Controllers.Toolbar.txtAccent_GroupBot": "グループ化文字(下)", "DE.Controllers.Toolbar.txtAccent_GroupTop": "グループ化文字(上)", "DE.Controllers.Toolbar.txtAccent_HarpoonL": "左半矢印(上)", "DE.Controllers.Toolbar.txtAccent_HarpoonR": "右向き半矢印 (上)", "DE.Controllers.Toolbar.txtAccent_Hat": "ハット", - "DE.Controllers.Toolbar.txtAccent_Smile": "ブリーブ", + "DE.Controllers.Toolbar.txtAccent_Smile": "ブレーヴェ", "DE.Controllers.Toolbar.txtAccent_Tilde": "チルダ", - "DE.Controllers.Toolbar.txtBracket_Angle": "かっこ", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "かっこと縦棒", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "かっこと縦棒", + "DE.Controllers.Toolbar.txtBracket_Angle": "括弧", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "括弧と区切り線", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "括弧と区切り線", "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "単一かっこ", "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_Curve": "かっこ", - "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "かっこと縦棒", + "DE.Controllers.Toolbar.txtBracket_Curve": "括弧", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "括弧と区切り線", "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "単一かっこ", "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "単一かっこ", "DE.Controllers.Toolbar.txtBracket_Custom_1": "場合分け(条件2つ)", @@ -967,29 +962,29 @@ "DE.Controllers.Toolbar.txtBracket_Custom_5": "場合分けの例", "DE.Controllers.Toolbar.txtBracket_Custom_6": "二項係数", "DE.Controllers.Toolbar.txtBracket_Custom_7": "二項係数", - "DE.Controllers.Toolbar.txtBracket_Line": "かっこ", + "DE.Controllers.Toolbar.txtBracket_Line": "括弧", "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "単一かっこ", "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_LineDouble": "かっこ", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "括弧", "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "単一かっこ", "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_LowLim": "かっこ", + "DE.Controllers.Toolbar.txtBracket_LowLim": "括弧", "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "単一かっこ", "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_Round": "かっこ", - "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "かっこと縦棒", + "DE.Controllers.Toolbar.txtBracket_Round": "括弧", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "括弧と区切り線", "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "単一かっこ", "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_Square": "かっこ", - "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "かっこ", - "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "かっこ", + "DE.Controllers.Toolbar.txtBracket_Square": "括弧", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "括弧", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "括弧", "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "単一かっこ", "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "かっこ", - "DE.Controllers.Toolbar.txtBracket_SquareDouble": "かっこ", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "括弧", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "括弧", "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "単一かっこ", "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "単一かっこ", - "DE.Controllers.Toolbar.txtBracket_UppLim": "かっこ", + "DE.Controllers.Toolbar.txtBracket_UppLim": "括弧", "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "単一かっこ", "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "単一かっこ", "DE.Controllers.Toolbar.txtFractionDiagonal": "分数 (斜め)", @@ -1002,23 +997,23 @@ "DE.Controllers.Toolbar.txtFractionSmall": "分数 (小)", "DE.Controllers.Toolbar.txtFractionVertical": "分数 (縦)", "DE.Controllers.Toolbar.txtFunction_1_Cos": "逆余弦関数", - "DE.Controllers.Toolbar.txtFunction_1_Cosh": "逆双曲線余弦", + "DE.Controllers.Toolbar.txtFunction_1_Cosh": "双曲線逆余弦関数", "DE.Controllers.Toolbar.txtFunction_1_Cot": "逆余接関数", - "DE.Controllers.Toolbar.txtFunction_1_Coth": "双曲線逆余接", + "DE.Controllers.Toolbar.txtFunction_1_Coth": "双曲線逆共接関数", "DE.Controllers.Toolbar.txtFunction_1_Csc": "逆余割関数", - "DE.Controllers.Toolbar.txtFunction_1_Csch": "逆双曲線余割関数", + "DE.Controllers.Toolbar.txtFunction_1_Csch": "双曲線逆余割関数", "DE.Controllers.Toolbar.txtFunction_1_Sec": "逆正割関数", - "DE.Controllers.Toolbar.txtFunction_1_Sech": "逆双曲線正割", + "DE.Controllers.Toolbar.txtFunction_1_Sech": "双曲線逆正割関数", "DE.Controllers.Toolbar.txtFunction_1_Sin": "逆正弦関数", - "DE.Controllers.Toolbar.txtFunction_1_Sinh": "双曲線逆サイン", + "DE.Controllers.Toolbar.txtFunction_1_Sinh": "双曲線逆正弦関数", "DE.Controllers.Toolbar.txtFunction_1_Tan": "逆正接関数", - "DE.Controllers.Toolbar.txtFunction_1_Tanh": "双曲線逆正接", + "DE.Controllers.Toolbar.txtFunction_1_Tanh": "双曲線逆正接関数", "DE.Controllers.Toolbar.txtFunction_Cos": "余弦関数", "DE.Controllers.Toolbar.txtFunction_Cosh": "双曲線余弦関数", "DE.Controllers.Toolbar.txtFunction_Cot": "余接関数", "DE.Controllers.Toolbar.txtFunction_Coth": "双曲線余接関数", "DE.Controllers.Toolbar.txtFunction_Csc": "余割関数\t", - "DE.Controllers.Toolbar.txtFunction_Csch": "逆双曲線余割関数", + "DE.Controllers.Toolbar.txtFunction_Csch": "双曲線余割関数", "DE.Controllers.Toolbar.txtFunction_Custom_1": "Sin θ", "DE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", "DE.Controllers.Toolbar.txtFunction_Custom_3": "正接式", @@ -1027,15 +1022,15 @@ "DE.Controllers.Toolbar.txtFunction_Sin": "正弦関数", "DE.Controllers.Toolbar.txtFunction_Sinh": "双曲線正弦", "DE.Controllers.Toolbar.txtFunction_Tan": "逆正接関数", - "DE.Controllers.Toolbar.txtFunction_Tanh": "双曲線正接", + "DE.Controllers.Toolbar.txtFunction_Tanh": "双曲線正接関数", "DE.Controllers.Toolbar.txtIntegral": "積分", - "DE.Controllers.Toolbar.txtIntegral_dtheta": "微分 シータ", + "DE.Controllers.Toolbar.txtIntegral_dtheta": "微分シータ", "DE.Controllers.Toolbar.txtIntegral_dx": "微分x", - "DE.Controllers.Toolbar.txtIntegral_dy": "微分 y", + "DE.Controllers.Toolbar.txtIntegral_dy": "微分y", "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "積分", - "DE.Controllers.Toolbar.txtIntegralDouble": "2 重積分", - "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "2 重積分", - "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "2 重積分", + "DE.Controllers.Toolbar.txtIntegralDouble": "二重積分", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "二重積分", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "二重積分", "DE.Controllers.Toolbar.txtIntegralOriented": "周回積分", "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "周回積分", "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "面積分", @@ -1054,11 +1049,11 @@ "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "くさび形", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "くさび形", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "くさび形", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "余積", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "余積", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "余積", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "余積", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "余積", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "双対積", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "双対積", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "双対積", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "双対積", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "双対積", "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "総和", "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "総和", "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "総和", @@ -1089,7 +1084,7 @@ "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "和集合", "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "和集合", "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "和集合", - "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "極限の例", + "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "制限の例", "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "最大値の例", "DE.Controllers.Toolbar.txtLimitLog_Lim": "限度", "DE.Controllers.Toolbar.txtLimitLog_Ln": "自然対数", @@ -1098,21 +1093,21 @@ "DE.Controllers.Toolbar.txtLimitLog_Max": "最大", "DE.Controllers.Toolbar.txtLimitLog_Min": "最小", "DE.Controllers.Toolbar.txtMarginsH": "指定されたページの高さのために上下の余白は高すぎます。", - "DE.Controllers.Toolbar.txtMarginsW": "左右の余白の合計がページの幅を超えています。", + "DE.Controllers.Toolbar.txtMarginsW": "ページ幅に対して左右の余白が広すぎます。", "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2空行列", "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3空行列", "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 空行列", "DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 空行列", - "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "かっこ付き空行列", - "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "かっこ付き空行列", - "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "かっこ付き空行列", - "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "かっこ付き空行列", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "括弧付き空行列", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "括弧付き空行列", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "括弧付き空行列", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "括弧付き空行列", "DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 空行列", "DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 空行列", "DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 空行列", "DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 空行列", - "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "ベースライン ドット", - "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "ミッドライン ドット", + "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "基準線点", + "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "ミッドラインドット", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "斜めドット", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "縦向きドット", "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "疎行列", @@ -1129,8 +1124,8 @@ "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "右向き矢印 (上)", "DE.Controllers.Toolbar.txtOperator_ColonEquals": "コロン付き等号", "DE.Controllers.Toolbar.txtOperator_Custom_1": "導出", - "DE.Controllers.Toolbar.txtOperator_Custom_2": "誤差導出", - "DE.Controllers.Toolbar.txtOperator_Definition": "定義により等しい", + "DE.Controllers.Toolbar.txtOperator_Custom_2": "デルタイールド", + "DE.Controllers.Toolbar.txtOperator_Definition": "定義上等しい", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "デルタ付き等号", "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "左右双方向矢印 (下)", "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "左右双方向矢印 (上)", @@ -1156,21 +1151,21 @@ "DE.Controllers.Toolbar.txtScriptSubSup": "下付き文字 - 上付き文字", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "左下付き文字 - 上付き文字", "DE.Controllers.Toolbar.txtScriptSup": "上付き文字", - "DE.Controllers.Toolbar.txtSymbol_about": "近似", - "DE.Controllers.Toolbar.txtSymbol_additional": "補集合", + "DE.Controllers.Toolbar.txtSymbol_about": "約", + "DE.Controllers.Toolbar.txtSymbol_additional": "補数", "DE.Controllers.Toolbar.txtSymbol_aleph": "アレフ", "DE.Controllers.Toolbar.txtSymbol_alpha": "アルファ", "DE.Controllers.Toolbar.txtSymbol_approx": "ほぼ等しい", "DE.Controllers.Toolbar.txtSymbol_ast": "アスタリスク", "DE.Controllers.Toolbar.txtSymbol_beta": "ベータ", "DE.Controllers.Toolbar.txtSymbol_beth": "ベート", - "DE.Controllers.Toolbar.txtSymbol_bullet": "ビュレットのオペレーター", + "DE.Controllers.Toolbar.txtSymbol_bullet": "箇条書きの演算子", "DE.Controllers.Toolbar.txtSymbol_cap": "交点", "DE.Controllers.Toolbar.txtSymbol_cbrt": "立方根", "DE.Controllers.Toolbar.txtSymbol_cdots": "水平中央の省略記号", "DE.Controllers.Toolbar.txtSymbol_celsius": "摂氏", "DE.Controllers.Toolbar.txtSymbol_chi": "カイ", - "DE.Controllers.Toolbar.txtSymbol_cong": "ほぼ等しい", + "DE.Controllers.Toolbar.txtSymbol_cong": "にほぼ等しい", "DE.Controllers.Toolbar.txtSymbol_cup": "和集合", "DE.Controllers.Toolbar.txtSymbol_ddots": "下右斜めの省略記号", "DE.Controllers.Toolbar.txtSymbol_degree": "度", @@ -1180,15 +1175,15 @@ "DE.Controllers.Toolbar.txtSymbol_emptyset": "空集合", "DE.Controllers.Toolbar.txtSymbol_epsilon": "イプシロン", "DE.Controllers.Toolbar.txtSymbol_equals": "等号", - "DE.Controllers.Toolbar.txtSymbol_equiv": "合同", + "DE.Controllers.Toolbar.txtSymbol_equiv": "と同一", "DE.Controllers.Toolbar.txtSymbol_eta": "エータ", "DE.Controllers.Toolbar.txtSymbol_exists": "存在する\t", "DE.Controllers.Toolbar.txtSymbol_factorial": "階乗", "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "華氏", "DE.Controllers.Toolbar.txtSymbol_forall": "全てに", "DE.Controllers.Toolbar.txtSymbol_gamma": "ガンマ", - "DE.Controllers.Toolbar.txtSymbol_geq": "次の値以上", - "DE.Controllers.Toolbar.txtSymbol_gg": "より大きい", + "DE.Controllers.Toolbar.txtSymbol_geq": "より大きいか等しい", + "DE.Controllers.Toolbar.txtSymbol_gg": "よりもはるかに大きい", "DE.Controllers.Toolbar.txtSymbol_greater": "より大きい", "DE.Controllers.Toolbar.txtSymbol_in": "要素", "DE.Controllers.Toolbar.txtSymbol_inc": "増分", @@ -1198,15 +1193,15 @@ "DE.Controllers.Toolbar.txtSymbol_lambda": "ラムダ", "DE.Controllers.Toolbar.txtSymbol_leftarrow": "左矢印", "DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "左右矢印", - "DE.Controllers.Toolbar.txtSymbol_leq": "より小か等しい", - "DE.Controllers.Toolbar.txtSymbol_less": "より小", - "DE.Controllers.Toolbar.txtSymbol_ll": "より小さい", + "DE.Controllers.Toolbar.txtSymbol_leq": "より小さいか等しい", + "DE.Controllers.Toolbar.txtSymbol_less": "より小さい", + "DE.Controllers.Toolbar.txtSymbol_ll": "よりはるかに小さい", "DE.Controllers.Toolbar.txtSymbol_minus": "マイナス", - "DE.Controllers.Toolbar.txtSymbol_mp": "マイナス プラス\t", + "DE.Controllers.Toolbar.txtSymbol_mp": "マイナスプラス\t", "DE.Controllers.Toolbar.txtSymbol_mu": "ミュー", "DE.Controllers.Toolbar.txtSymbol_nabla": "ナブラ", "DE.Controllers.Toolbar.txtSymbol_neq": "と等しくない", - "DE.Controllers.Toolbar.txtSymbol_ni": "元として含む", + "DE.Controllers.Toolbar.txtSymbol_ni": "メンバーとして含む", "DE.Controllers.Toolbar.txtSymbol_not": "否定記号", "DE.Controllers.Toolbar.txtSymbol_notexists": "存在しません", "DE.Controllers.Toolbar.txtSymbol_nu": "ニュー", @@ -1221,7 +1216,7 @@ "DE.Controllers.Toolbar.txtSymbol_propto": "プロポーショナル", "DE.Controllers.Toolbar.txtSymbol_psi": "プサイ", "DE.Controllers.Toolbar.txtSymbol_qdrt": "四乗根", - "DE.Controllers.Toolbar.txtSymbol_qed": "証明終わり", + "DE.Controllers.Toolbar.txtSymbol_qed": "証明終了", "DE.Controllers.Toolbar.txtSymbol_rddots": "斜め(右上)の省略記号", "DE.Controllers.Toolbar.txtSymbol_rho": "ロー", "DE.Controllers.Toolbar.txtSymbol_rightarrow": "右矢印", @@ -1253,37 +1248,37 @@ "DE.Views.BookmarksDialog.textCopy": "コピー", "DE.Views.BookmarksDialog.textDelete": "削除する", "DE.Views.BookmarksDialog.textGetLink": "リンクを取得する", - "DE.Views.BookmarksDialog.textGoto": "移動", + "DE.Views.BookmarksDialog.textGoto": "に移動する", "DE.Views.BookmarksDialog.textHidden": "隠しブックマーク", "DE.Views.BookmarksDialog.textLocation": "位置", "DE.Views.BookmarksDialog.textName": "名前", "DE.Views.BookmarksDialog.textSort": "並べ替え", "DE.Views.BookmarksDialog.textTitle": "ブックマーク", - "DE.Views.BookmarksDialog.txtInvalidName": "ブックマーク名には、文字、数字、アンダースコアのみを使用でき、先頭は文字である必要があります", + "DE.Views.BookmarksDialog.txtInvalidName": "ブックマーク名には、文字、数字、アンダースコアのみを使用でき、先頭は文字で始まる必要があります。", "DE.Views.CaptionDialog.textAdd": "ラベルを追加", "DE.Views.CaptionDialog.textAfter": "後に", "DE.Views.CaptionDialog.textBefore": "前", - "DE.Views.CaptionDialog.textCaption": "図表番号", + "DE.Views.CaptionDialog.textCaption": "キャプション", "DE.Views.CaptionDialog.textChapter": "章タイトルのスタイル", "DE.Views.CaptionDialog.textChapterInc": "章番号を含める", "DE.Views.CaptionDialog.textColon": "コロン", "DE.Views.CaptionDialog.textDash": "ダッシュ", "DE.Views.CaptionDialog.textDelete": "ラベル削除", - "DE.Views.CaptionDialog.textEquation": "数式", + "DE.Views.CaptionDialog.textEquation": "方程式\t", "DE.Views.CaptionDialog.textExamples": " 例:表 2-A 、図 1.IV", - "DE.Views.CaptionDialog.textExclude": "ラベルを図表番号から除外する", + "DE.Views.CaptionDialog.textExclude": "キャプションからラベルを除外する", "DE.Views.CaptionDialog.textFigure": "図形", "DE.Views.CaptionDialog.textHyphen": "ハイフン", "DE.Views.CaptionDialog.textInsert": "挿入する", "DE.Views.CaptionDialog.textLabel": "ラベル", "DE.Views.CaptionDialog.textLongDash": "長いダッシュ", - "DE.Views.CaptionDialog.textNumbering": "番号付け", + "DE.Views.CaptionDialog.textNumbering": "ナンバリング", "DE.Views.CaptionDialog.textPeriod": "期間", "DE.Views.CaptionDialog.textSeparator": "セパレーターを使用する", "DE.Views.CaptionDialog.textTable": "表", - "DE.Views.CaptionDialog.textTitle": "図表番号の挿入", + "DE.Views.CaptionDialog.textTitle": "キャプションの挿入", "DE.Views.CellsAddDialog.textCol": "列", - "DE.Views.CellsAddDialog.textDown": "カーソルより下", + "DE.Views.CellsAddDialog.textDown": "カーソルの下", "DE.Views.CellsAddDialog.textLeft": "左に", "DE.Views.CellsAddDialog.textRight": "右に", "DE.Views.CellsAddDialog.textRow": "行", @@ -1301,13 +1296,13 @@ "DE.Views.ChartSettings.textWrap": "折り返しの種類と配置", "DE.Views.ChartSettings.txtBehind": "テキストの背後に", "DE.Views.ChartSettings.txtInFront": "テキストの前に", - "DE.Views.ChartSettings.txtInline": "インライン", + "DE.Views.ChartSettings.txtInline": "テキストに沿って", "DE.Views.ChartSettings.txtSquare": "四角", "DE.Views.ChartSettings.txtThrough": "スルー", "DE.Views.ChartSettings.txtTight": "外周", - "DE.Views.ChartSettings.txtTitle": "グラフ", + "DE.Views.ChartSettings.txtTitle": "チャート", "DE.Views.ChartSettings.txtTopAndBottom": "上と下", - "DE.Views.ControlSettingsDialog.strGeneral": "一般的", + "DE.Views.ControlSettingsDialog.strGeneral": "一般", "DE.Views.ControlSettingsDialog.textAdd": "追加", "DE.Views.ControlSettingsDialog.textAppearance": "外観", "DE.Views.ControlSettingsDialog.textApplyAll": "全てに適用する", @@ -1321,7 +1316,7 @@ "DE.Views.ControlSettingsDialog.textDelete": "削除する", "DE.Views.ControlSettingsDialog.textDisplayName": "表示名", "DE.Views.ControlSettingsDialog.textDown": "下", - "DE.Views.ControlSettingsDialog.textDropDown": "ドロップダウン リスト", + "DE.Views.ControlSettingsDialog.textDropDown": "ドロップダウンリスト", "DE.Views.ControlSettingsDialog.textFormat": "日付の表示形式", "DE.Views.ControlSettingsDialog.textLang": "言語", "DE.Views.ControlSettingsDialog.textLock": "ロック", @@ -1331,17 +1326,17 @@ "DE.Views.ControlSettingsDialog.textShowAs": "として示す", "DE.Views.ControlSettingsDialog.textSystemColor": "システム", "DE.Views.ControlSettingsDialog.textTag": "タグ", - "DE.Views.ControlSettingsDialog.textTitle": "コンテンツ コントロール設定", + "DE.Views.ControlSettingsDialog.textTitle": "コンテンツコントロール設定", "DE.Views.ControlSettingsDialog.textUnchecked": "[チェックしない]記号", "DE.Views.ControlSettingsDialog.textUp": "上", "DE.Views.ControlSettingsDialog.textValue": "値", "DE.Views.ControlSettingsDialog.tipChange": "記号の変更", - "DE.Views.ControlSettingsDialog.txtLockDelete": "コンテンツ コントロールの削除不可", - "DE.Views.ControlSettingsDialog.txtLockEdit": "コンテンツの編集不可", + "DE.Views.ControlSettingsDialog.txtLockDelete": "コンテンツコントロールは削除不可です。", + "DE.Views.ControlSettingsDialog.txtLockEdit": "コンテンツは編集不可です。", "DE.Views.CrossReferenceDialog.textAboveBelow": "上/下", "DE.Views.CrossReferenceDialog.textBookmark": "ブックマーク", "DE.Views.CrossReferenceDialog.textBookmarkText": "ブックマークのテキスト", - "DE.Views.CrossReferenceDialog.textCaption": "図表番号全体", + "DE.Views.CrossReferenceDialog.textCaption": "キャプション全体", "DE.Views.CrossReferenceDialog.textEmpty": "要求された参照は空です。", "DE.Views.CrossReferenceDialog.textEndnote": "文末脚注", "DE.Views.CrossReferenceDialog.textEndNoteNum": "文末脚注番号", @@ -1351,8 +1346,8 @@ "DE.Views.CrossReferenceDialog.textFootnote": "脚注", "DE.Views.CrossReferenceDialog.textHeading": "見出し", "DE.Views.CrossReferenceDialog.textHeadingNum": "見出し番号", - "DE.Views.CrossReferenceDialog.textHeadingNumFull": "見出し番号(完全)", - "DE.Views.CrossReferenceDialog.textHeadingNumNo": "見出し番号(コンテキストなし)", + "DE.Views.CrossReferenceDialog.textHeadingNumFull": "見出し番号(全文)", + "DE.Views.CrossReferenceDialog.textHeadingNumNo": "見出し番号(文脈なし)", "DE.Views.CrossReferenceDialog.textHeadingText": "見出しテキスト", "DE.Views.CrossReferenceDialog.textIncludeAbove": "上/下を含める", "DE.Views.CrossReferenceDialog.textInsert": "挿入する", @@ -1360,21 +1355,21 @@ "DE.Views.CrossReferenceDialog.textLabelNum": "ラベルと番号のみ", "DE.Views.CrossReferenceDialog.textNoteNum": "脚注番号", "DE.Views.CrossReferenceDialog.textNoteNumForm": "脚注番号(フォーマット済み)", - "DE.Views.CrossReferenceDialog.textOnlyCaption": "見出しのテキストだけ", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "キャプションのテキストのみ", "DE.Views.CrossReferenceDialog.textPageNum": "ページ番号", - "DE.Views.CrossReferenceDialog.textParagraph": "番号付きリスト", + "DE.Views.CrossReferenceDialog.textParagraph": "番号付き項目", "DE.Views.CrossReferenceDialog.textParaNum": "段落番号", - "DE.Views.CrossReferenceDialog.textParaNumFull": "段落番号(完全なコンテキスト)", - "DE.Views.CrossReferenceDialog.textParaNumNo": "段落番号(短い)", + "DE.Views.CrossReferenceDialog.textParaNumFull": "段落番号(全文)", + "DE.Views.CrossReferenceDialog.textParaNumNo": "段落番号(文脈なし)", "DE.Views.CrossReferenceDialog.textSeparate": "数字を分ける", "DE.Views.CrossReferenceDialog.textTable": "表", "DE.Views.CrossReferenceDialog.textText": "段落テキスト", - "DE.Views.CrossReferenceDialog.textWhich": "図表番号の参照先", - "DE.Views.CrossReferenceDialog.textWhichBookmark": "ブックマークの参照先", - "DE.Views.CrossReferenceDialog.textWhichEndnote": "どの文末脚注のために", - "DE.Views.CrossReferenceDialog.textWhichHeading": "見出しの参照先", - "DE.Views.CrossReferenceDialog.textWhichNote": "どちらの脚注に", - "DE.Views.CrossReferenceDialog.textWhichPara": "参照先", + "DE.Views.CrossReferenceDialog.textWhich": "どのキャプションに対して", + "DE.Views.CrossReferenceDialog.textWhichBookmark": "どのブックマークに対して", + "DE.Views.CrossReferenceDialog.textWhichEndnote": "どの文末脚注に対して", + "DE.Views.CrossReferenceDialog.textWhichHeading": "どの見出しに対して", + "DE.Views.CrossReferenceDialog.textWhichNote": "どの脚注に対して", + "DE.Views.CrossReferenceDialog.textWhichPara": "どの番号の項目に対して", "DE.Views.CrossReferenceDialog.txtReference": "に参照を挿入する", "DE.Views.CrossReferenceDialog.txtTitle": "相互参照", "DE.Views.CrossReferenceDialog.txtType": "参照タイプ", @@ -1390,7 +1385,7 @@ "DE.Views.DateTimeDialog.txtTitle": "日付&時刻", "DE.Views.DocumentHolder.aboveText": "上", "DE.Views.DocumentHolder.addCommentText": "コメントの追加", - "DE.Views.DocumentHolder.advancedDropCapText": "ドロップ キャップの設定", + "DE.Views.DocumentHolder.advancedDropCapText": "ドロップキャップの設定", "DE.Views.DocumentHolder.advancedFrameText": "フレームの詳細設定", "DE.Views.DocumentHolder.advancedParagraphText": "段落の詳細設定", "DE.Views.DocumentHolder.advancedTableText": "テーブルの詳細設定", @@ -1402,24 +1397,24 @@ "DE.Views.DocumentHolder.cellAlignText": "セルの縦方向の配置", "DE.Views.DocumentHolder.cellText": "セル", "DE.Views.DocumentHolder.centerText": "中央揃え", - "DE.Views.DocumentHolder.chartText": "グラフの詳細設定", + "DE.Views.DocumentHolder.chartText": "チャートの詳細設定", "DE.Views.DocumentHolder.columnText": "列", "DE.Views.DocumentHolder.deleteColumnText": "列の削除", "DE.Views.DocumentHolder.deleteRowText": "行の削除", "DE.Views.DocumentHolder.deleteTableText": "表の削除", - "DE.Views.DocumentHolder.deleteText": "削除", + "DE.Views.DocumentHolder.deleteText": "削除する", "DE.Views.DocumentHolder.direct270Text": "270度回転", "DE.Views.DocumentHolder.direct90Text": "90度回転", "DE.Views.DocumentHolder.directHText": "水平", "DE.Views.DocumentHolder.directionText": "文字列の方向", - "DE.Views.DocumentHolder.editChartText": "データ バーの編集", + "DE.Views.DocumentHolder.editChartText": "データの編集", "DE.Views.DocumentHolder.editFooterText": "フッターの編集", "DE.Views.DocumentHolder.editHeaderText": "ヘッダーの編集", "DE.Views.DocumentHolder.editHyperlinkText": "ハイパーリンクの編集", "DE.Views.DocumentHolder.guestText": "ゲスト", "DE.Views.DocumentHolder.hyperlinkText": "ハイパーリンク", - "DE.Views.DocumentHolder.ignoreAllSpellText": "全ての無視", - "DE.Views.DocumentHolder.ignoreSpellText": "無視", + "DE.Views.DocumentHolder.ignoreAllSpellText": "全てを無視する", + "DE.Views.DocumentHolder.ignoreSpellText": "無視する", "DE.Views.DocumentHolder.imageText": "画像の詳細設定", "DE.Views.DocumentHolder.insertColumnLeftText": "1 列左", "DE.Views.DocumentHolder.insertColumnRightText": "1 列右", @@ -1433,7 +1428,7 @@ "DE.Views.DocumentHolder.leftText": "左", "DE.Views.DocumentHolder.loadSpellText": "バリエーションの読み込み中...", "DE.Views.DocumentHolder.mergeCellsText": "セルの結合", - "DE.Views.DocumentHolder.moreText": "以上のバリエーション...", + "DE.Views.DocumentHolder.moreText": "その他のバリエーション...", "DE.Views.DocumentHolder.noSpellVariantsText": "バリエーションなし", "DE.Views.DocumentHolder.notcriticalErrorTitle": "警告", "DE.Views.DocumentHolder.originalSizeText": "実際のサイズ", @@ -1455,9 +1450,9 @@ "DE.Views.DocumentHolder.strDetails": "サインの詳細", "DE.Views.DocumentHolder.strSetup": "署名の設定", "DE.Views.DocumentHolder.strSign": "サイン", - "DE.Views.DocumentHolder.styleText": "スタイルようにフォーマッティングする", + "DE.Views.DocumentHolder.styleText": "スタイルとしての書式設定", "DE.Views.DocumentHolder.tableText": "テーブル", - "DE.Views.DocumentHolder.textAccept": "変更を受け入れる", + "DE.Views.DocumentHolder.textAccept": "変更を承諾する", "DE.Views.DocumentHolder.textAlign": "整列", "DE.Views.DocumentHolder.textArrange": "整列", "DE.Views.DocumentHolder.textArrangeBack": "背景へ移動", @@ -1466,7 +1461,7 @@ "DE.Views.DocumentHolder.textArrangeFront": "前景に移動", "DE.Views.DocumentHolder.textCells": "セル", "DE.Views.DocumentHolder.textCol": "列全体を削除", - "DE.Views.DocumentHolder.textContentControls": "コンテンツ コントロール", + "DE.Views.DocumentHolder.textContentControls": "コンテンツコントロール", "DE.Views.DocumentHolder.textContinueNumbering": "番号付けを続行", "DE.Views.DocumentHolder.textCopy": "コピー", "DE.Views.DocumentHolder.textCrop": "トリミング", @@ -1475,7 +1470,7 @@ "DE.Views.DocumentHolder.textCut": "切り取り", "DE.Views.DocumentHolder.textDistributeCols": "列の幅を揃える", "DE.Views.DocumentHolder.textDistributeRows": "行の高さを揃える", - "DE.Views.DocumentHolder.textEditControls": "コンテンツ コントロール設定", + "DE.Views.DocumentHolder.textEditControls": "コンテンツコントロール設定", "DE.Views.DocumentHolder.textEditWrapBoundary": "折り返し点の編集", "DE.Views.DocumentHolder.textFlipH": "左右に反転", "DE.Views.DocumentHolder.textFlipV": "上下に反転", @@ -1487,10 +1482,11 @@ "DE.Views.DocumentHolder.textLeft": "左方向にシフト", "DE.Views.DocumentHolder.textNest": "ネスト表", "DE.Views.DocumentHolder.textNextPage": "次のページ", - "DE.Views.DocumentHolder.textNumberingValue": "番号", + "DE.Views.DocumentHolder.textNumberingValue": "ナンバリング値", "DE.Views.DocumentHolder.textPaste": "貼り付け", "DE.Views.DocumentHolder.textPrevPage": "前のページ", - "DE.Views.DocumentHolder.textRefreshField": "再表示フィールド", + "DE.Views.DocumentHolder.textRefreshField": "フィールドの更新", + "DE.Views.DocumentHolder.textReject": "変更を拒否", "DE.Views.DocumentHolder.textRemCheckBox": "チェックボックスを削除する", "DE.Views.DocumentHolder.textRemComboBox": "コンボ・ボックスを削除する", "DE.Views.DocumentHolder.textRemDropdown": "ドロップダウン・リストを削除する", @@ -1520,22 +1516,15 @@ "DE.Views.DocumentHolder.textTOCSettings": "目次設定", "DE.Views.DocumentHolder.textUndo": "元に戻す", "DE.Views.DocumentHolder.textUpdateAll": "テーブル全体の更新", - "DE.Views.DocumentHolder.textUpdatePages": "ページ番号の変更のみ", + "DE.Views.DocumentHolder.textUpdatePages": "ページ番号の更新のみ", "DE.Views.DocumentHolder.textUpdateTOC": "目次を更新する", "DE.Views.DocumentHolder.textWrap": "折り返しの種類と配置", "DE.Views.DocumentHolder.tipIsLocked": "今、この要素が他のユーザによって編集されています。", - "DE.Views.DocumentHolder.tipMarkersArrow": "箇条書き(矢印)", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "箇条書き(チェックマーク)", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "箇条書き(ひし形)", - "DE.Views.DocumentHolder.tipMarkersFRound": "箇条書き(丸)", - "DE.Views.DocumentHolder.tipMarkersFSquare": "箇条書き(四角)", - "DE.Views.DocumentHolder.tipMarkersHRound": "箇条書き(円)", - "DE.Views.DocumentHolder.tipMarkersStar": "箇条書き(星)", "DE.Views.DocumentHolder.toDictionaryText": "辞書に追加", "DE.Views.DocumentHolder.txtAddBottom": "下罫線の追加", "DE.Views.DocumentHolder.txtAddFractionBar": "分数罫の追加", "DE.Views.DocumentHolder.txtAddHor": "水平線の追加", - "DE.Views.DocumentHolder.txtAddLB": "左実線(下部)の追加", + "DE.Views.DocumentHolder.txtAddLB": "左下線の追加", "DE.Views.DocumentHolder.txtAddLeft": "左罫線の追加", "DE.Views.DocumentHolder.txtAddLT": "左上線の追加", "DE.Views.DocumentHolder.txtAddRight": "右罫線の追加", @@ -1549,8 +1538,8 @@ "DE.Views.DocumentHolder.txtDecreaseArg": "引数のサイズの縮小", "DE.Views.DocumentHolder.txtDeleteArg": "引数の削除", "DE.Views.DocumentHolder.txtDeleteBreak": "任意指定の改行を削除", - "DE.Views.DocumentHolder.txtDeleteChars": "開始文字と終了文字の削除", - "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "開始文字、終了文字と区切り文字の削除", + "DE.Views.DocumentHolder.txtDeleteChars": "囲み文字の削除", + "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "囲み文字と区切り文字の削除", "DE.Views.DocumentHolder.txtDeleteEq": "数式の削除", "DE.Views.DocumentHolder.txtDeleteGroupChar": "文字の削除", "DE.Views.DocumentHolder.txtDeleteRadical": "冪根を削除する", @@ -1565,13 +1554,13 @@ "DE.Views.DocumentHolder.txtGroupCharUnder": "テキストの下の文字", "DE.Views.DocumentHolder.txtHideBottom": "下罫線を表示しない", "DE.Views.DocumentHolder.txtHideBottomLimit": "下極限を表示しない", - "DE.Views.DocumentHolder.txtHideCloseBracket": "右かっこを表示しない", + "DE.Views.DocumentHolder.txtHideCloseBracket": "右括弧を表示しない", "DE.Views.DocumentHolder.txtHideDegree": "次数を表示しない", - "DE.Views.DocumentHolder.txtHideHor": "水平線を表示しない", - "DE.Views.DocumentHolder.txtHideLB": "左詰め(下)のラインを表示しない", + "DE.Views.DocumentHolder.txtHideHor": "横線を表示しない", + "DE.Views.DocumentHolder.txtHideLB": "左(下)の線を表示しない", "DE.Views.DocumentHolder.txtHideLeft": "左罫線を表示しない", - "DE.Views.DocumentHolder.txtHideLT": "左詰め(上)のラインを表示しない", - "DE.Views.DocumentHolder.txtHideOpenBracket": "左かっこを表示しない", + "DE.Views.DocumentHolder.txtHideLT": "左(上)の線を表示しない", + "DE.Views.DocumentHolder.txtHideOpenBracket": "左括弧を表示しない", "DE.Views.DocumentHolder.txtHidePlaceholder": "プレースホルダを表示しない", "DE.Views.DocumentHolder.txtHideRight": "右罫線を枠線表示しない", "DE.Views.DocumentHolder.txtHideTop": "上罫線を表示しない", @@ -1579,18 +1568,18 @@ "DE.Views.DocumentHolder.txtHideVer": "縦線を表示しない", "DE.Views.DocumentHolder.txtIncreaseArg": "引数のサイズの拡大", "DE.Views.DocumentHolder.txtInFront": "テキストの前に", - "DE.Views.DocumentHolder.txtInline": "インライン", - "DE.Views.DocumentHolder.txtInsertArgAfter": "後に引数を挿入", - "DE.Views.DocumentHolder.txtInsertArgBefore": "前に引数を挿入", + "DE.Views.DocumentHolder.txtInline": "テキストに沿って", + "DE.Views.DocumentHolder.txtInsertArgAfter": "の後に引数を挿入", + "DE.Views.DocumentHolder.txtInsertArgBefore": "の前に引数を挿入", "DE.Views.DocumentHolder.txtInsertBreak": "任意指定の改行を挿入", - "DE.Views.DocumentHolder.txtInsertCaption": "図表番号の挿入", - "DE.Views.DocumentHolder.txtInsertEqAfter": "後に数式の挿入", - "DE.Views.DocumentHolder.txtInsertEqBefore": "前に数式の挿入", + "DE.Views.DocumentHolder.txtInsertCaption": "キャプションの挿入", + "DE.Views.DocumentHolder.txtInsertEqAfter": "の後に数式を挿入", + "DE.Views.DocumentHolder.txtInsertEqBefore": "の前に数式を挿入", "DE.Views.DocumentHolder.txtKeepTextOnly": "テキスト保存のみ", - "DE.Views.DocumentHolder.txtLimitChange": "極限の位置を変更します。", - "DE.Views.DocumentHolder.txtLimitOver": "テキストの上に限定する", - "DE.Views.DocumentHolder.txtLimitUnder": "テキストの下に限定する", - "DE.Views.DocumentHolder.txtMatchBrackets": "かっこを引数の高さに合わせる", + "DE.Views.DocumentHolder.txtLimitChange": "制限位置の変更", + "DE.Views.DocumentHolder.txtLimitOver": "テキストの上に制限する", + "DE.Views.DocumentHolder.txtLimitUnder": "テキストの下に制限する", + "DE.Views.DocumentHolder.txtMatchBrackets": "括弧を引数の高さに合わせる", "DE.Views.DocumentHolder.txtMatrixAlign": "行列の配置", "DE.Views.DocumentHolder.txtOverbar": "テキストの上のバー", "DE.Views.DocumentHolder.txtOverwriteCells": "セルを上書きする", @@ -1621,30 +1610,30 @@ "DE.Views.DocumentHolder.txtTopAndBottom": "上と下", "DE.Views.DocumentHolder.txtUnderbar": "テキストの下のバー", "DE.Views.DocumentHolder.txtUngroup": "グループ解除", - "DE.Views.DocumentHolder.txtWarnUrl": "このリンクをクリックすると、デバイスに害を及ぼす可能性があります。続けてもよろしいでしょうか?", + "DE.Views.DocumentHolder.txtWarnUrl": "このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。
本当に続けてよろしいですか?", "DE.Views.DocumentHolder.updateStyleText": "%1スタイルの更新", "DE.Views.DocumentHolder.vertAlignText": "垂直方向の整列", "DE.Views.DropcapSettingsAdvanced.strBorders": "罫線と塗りつぶし", - "DE.Views.DropcapSettingsAdvanced.strDropcap": "ドロップ キャップ", + "DE.Views.DropcapSettingsAdvanced.strDropcap": "ドロップキャップ", "DE.Views.DropcapSettingsAdvanced.strMargins": "余白", "DE.Views.DropcapSettingsAdvanced.textAlign": "配置", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "最小", "DE.Views.DropcapSettingsAdvanced.textAuto": "自動", "DE.Views.DropcapSettingsAdvanced.textBackColor": "背景色", - "DE.Views.DropcapSettingsAdvanced.textBorderColor": "ボーダー色", - "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "罫線を選択するためにダイアグラムをクリックします。または、ボタンを使うことができます。", + "DE.Views.DropcapSettingsAdvanced.textBorderColor": "罫線の色", + "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "図をクリックするか、ボタンで枠を選択します。", "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "罫線のサイズ", "DE.Views.DropcapSettingsAdvanced.textBottom": "下", "DE.Views.DropcapSettingsAdvanced.textCenter": "中央揃え", "DE.Views.DropcapSettingsAdvanced.textColumn": "列", "DE.Views.DropcapSettingsAdvanced.textDistance": "文字列との間隔", "DE.Views.DropcapSettingsAdvanced.textExact": "固定値", - "DE.Views.DropcapSettingsAdvanced.textFlow": "フロー フレーム", + "DE.Views.DropcapSettingsAdvanced.textFlow": "フローフレーム", "DE.Views.DropcapSettingsAdvanced.textFont": "フォント", "DE.Views.DropcapSettingsAdvanced.textFrame": "フレーム", "DE.Views.DropcapSettingsAdvanced.textHeight": "高さ", "DE.Views.DropcapSettingsAdvanced.textHorizontal": "水平", - "DE.Views.DropcapSettingsAdvanced.textInline": "フレームの挿入", + "DE.Views.DropcapSettingsAdvanced.textInline": "インラインフレーム", "DE.Views.DropcapSettingsAdvanced.textInMargin": "余白", "DE.Views.DropcapSettingsAdvanced.textInText": "テキスト", "DE.Views.DropcapSettingsAdvanced.textLeft": "左", @@ -1658,7 +1647,7 @@ "DE.Views.DropcapSettingsAdvanced.textRelative": "相対", "DE.Views.DropcapSettingsAdvanced.textRight": "右に", "DE.Views.DropcapSettingsAdvanced.textRowHeight": "行の高さ", - "DE.Views.DropcapSettingsAdvanced.textTitle": "ドロップ キャップの詳細設定", + "DE.Views.DropcapSettingsAdvanced.textTitle": "ドロップキャップの詳細設定", "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "フレーム - 詳細設定", "DE.Views.DropcapSettingsAdvanced.textTop": "トップ", "DE.Views.DropcapSettingsAdvanced.textVertical": "縦", @@ -1668,19 +1657,19 @@ "DE.Views.EditListItemDialog.textDisplayName": "表示名", "DE.Views.EditListItemDialog.textNameError": "表示名は空白にできません。", "DE.Views.EditListItemDialog.textValue": "値", - "DE.Views.EditListItemDialog.textValueError": " 同じ値の項目がすでに存在します。", - "DE.Views.FileMenu.btnBackCaption": "ファイルのURLを開く", + "DE.Views.EditListItemDialog.textValueError": "同じ値の項目がすでに存在します。", + "DE.Views.FileMenu.btnBackCaption": "ファイルの場所を開く", "DE.Views.FileMenu.btnCloseMenuCaption": "(←戻る)", "DE.Views.FileMenu.btnCreateNewCaption": "新規作成", "DE.Views.FileMenu.btnDownloadCaption": "名前を付けてダウンロード", "DE.Views.FileMenu.btnExitCaption": "終了", - "DE.Views.FileMenu.btnFileOpenCaption": "開く", + "DE.Views.FileMenu.btnFileOpenCaption": "開く...", "DE.Views.FileMenu.btnHelpCaption": "ヘルプ...", "DE.Views.FileMenu.btnHistoryCaption": "バージョン履歴", "DE.Views.FileMenu.btnInfoCaption": "ファイル情報", "DE.Views.FileMenu.btnPrintCaption": "印刷", "DE.Views.FileMenu.btnProtectCaption": "保護する", - "DE.Views.FileMenu.btnRecentFilesCaption": "最近使ったファイル", + "DE.Views.FileMenu.btnRecentFilesCaption": "最近開いた...", "DE.Views.FileMenu.btnRenameCaption": "名前変更", "DE.Views.FileMenu.btnReturnCaption": "文書に戻る", "DE.Views.FileMenu.btnRightsCaption": "アクセス許可...", @@ -1688,10 +1677,10 @@ "DE.Views.FileMenu.btnSaveCaption": "保存", "DE.Views.FileMenu.btnSaveCopyAsCaption": "別名で保存...", "DE.Views.FileMenu.btnSettingsCaption": "詳細設定...", - "DE.Views.FileMenu.btnToEditCaption": "ドキュメントの編集", + "DE.Views.FileMenu.btnToEditCaption": "ドキュメントを編集", "DE.Views.FileMenu.textDownload": "ダウンロード", "DE.Views.FileMenuPanels.CreateNew.txtBlank": "空の文書", - "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "新しいを作成", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "新規作成", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "適用する", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "著者を追加", "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "テキストの追加", @@ -1699,10 +1688,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作成者", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "アクセス許可の変更", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "コメント", - "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "作成された", + "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "作成済み", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "読み込み中...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "最終更新者", - "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "最終更新", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "最後の変更", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "所有者", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "ページ", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落", @@ -1721,14 +1710,14 @@ "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "パスワードを使って", "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "文書を保護", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "サインを使って", - "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "文書を編集する", + "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "ドキュメントを編集", "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "編集すると、文書から署名が削除されます。
続行しますか?", "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "このドキュメントはパスワードで保護されています", "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "この文書には署名が必要です。", "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有効な署名がドキュメントに追加されました。 ドキュメントは編集されないように保護されています。", "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。", "DE.Views.FileMenuPanels.ProtectDoc.txtView": "署名の表示", - "DE.Views.FileMenuPanels.Settings.okButtonText": "適用", + "DE.Views.FileMenuPanels.Settings.okButtonText": "適用する", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "配置ガイドを有効にする", "DE.Views.FileMenuPanels.Settings.strAutoRecover": "自動バックアップをオンにします。", "DE.Views.FileMenuPanels.Settings.strAutosave": "自動保存をオンにします。", @@ -1736,7 +1725,7 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "他のユーザーにすぐに変更が表示されます", "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "変更を見る前に、変更を承諾する必要があります。", "DE.Views.FileMenuPanels.Settings.strFast": "ファスト", - "DE.Views.FileMenuPanels.Settings.strFontRender": "フォント・ヒンティング", + "DE.Views.FileMenuPanels.Settings.strFontRender": "フォントヒンティング", "DE.Views.FileMenuPanels.Settings.strForcesave": "保存またはCtrl + Sを押した後、バージョンをサーバーに保存する。", "DE.Views.FileMenuPanels.Settings.strInputMode": "漢字をオンにします。", "DE.Views.FileMenuPanels.Settings.strLiveComment": "テキストコメントの表示をオンにします。", @@ -1750,54 +1739,54 @@ "DE.Views.FileMenuPanels.Settings.strStrict": "高レベル", "DE.Views.FileMenuPanels.Settings.strTheme": "インターフェイスのテーマ", "DE.Views.FileMenuPanels.Settings.strUnit": "測定単位", - "DE.Views.FileMenuPanels.Settings.strZoom": "既定のズーム値", + "DE.Views.FileMenuPanels.Settings.strZoom": "デフォルトのズーム値", "DE.Views.FileMenuPanels.Settings.text10Minutes": "10 分ごと", "DE.Views.FileMenuPanels.Settings.text30Minutes": "30 分ごと", "DE.Views.FileMenuPanels.Settings.text5Minutes": "5 分ごと", "DE.Views.FileMenuPanels.Settings.text60Minutes": "1 時間ごと", "DE.Views.FileMenuPanels.Settings.textAlignGuides": "配置ガイド", - "DE.Views.FileMenuPanels.Settings.textAutoRecover": "自動バックアップ", + "DE.Views.FileMenuPanels.Settings.textAutoRecover": "自動回復", "DE.Views.FileMenuPanels.Settings.textAutoSave": "自動保存", "DE.Views.FileMenuPanels.Settings.textCompatible": "互換性", "DE.Views.FileMenuPanels.Settings.textDisabled": "無効", "DE.Views.FileMenuPanels.Settings.textForceSave": "中間バージョンの保存", "DE.Views.FileMenuPanels.Settings.textMinute": "1 分ごと", - "DE.Views.FileMenuPanels.Settings.textOldVersions": " DOCXとして保存する場合は、MS Wordの古いバージョンと互換性のあるファイルにします", + "DE.Views.FileMenuPanels.Settings.textOldVersions": "DOCXとして保存する場合は、MS Wordの古いバージョンと互換性のあるファイルにしてください", "DE.Views.FileMenuPanels.Settings.txtAll": "全ての表示", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "オートコレクト設定", - "DE.Views.FileMenuPanels.Settings.txtCacheMode": "既定のキャッシュ モード", + "DE.Views.FileMenuPanels.Settings.txtCacheMode": "デフォルトのキャッシュモード", "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "バルーンをクリックで表示する", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "ヒントをクリックで表示する", "DE.Views.FileMenuPanels.Settings.txtCm": "センチ", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "ドキュメントをダークモードに変更", "DE.Views.FileMenuPanels.Settings.txtFitPage": "ページに合わせる", - "DE.Views.FileMenuPanels.Settings.txtFitWidth": "幅を合わせる", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "幅に合わせる", "DE.Views.FileMenuPanels.Settings.txtInch": "インチ", "DE.Views.FileMenuPanels.Settings.txtInput": "代替入力", "DE.Views.FileMenuPanels.Settings.txtLast": "最後の", - "DE.Views.FileMenuPanels.Settings.txtLiveComment": "コメントの表示", - "DE.Views.FileMenuPanels.Settings.txtMac": "OS Xのような", + "DE.Views.FileMenuPanels.Settings.txtLiveComment": "コメント表示", + "DE.Views.FileMenuPanels.Settings.txtMac": "OS Xとして", "DE.Views.FileMenuPanels.Settings.txtNative": "ネイティブ", "DE.Views.FileMenuPanels.Settings.txtNone": "表示なし", "DE.Views.FileMenuPanels.Settings.txtProofing": "校正", "DE.Views.FileMenuPanels.Settings.txtPt": "ポイント", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "全てを有効にする", - "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "マクロを有効にして、通知しない", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "全てのマクロを有効にして、通知しない", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "スペル チェック", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "全てを無効にする", - "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "マクロを無効にして、通知しない", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "全てのマクロを無効にして、通知しない", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "通知を表示する", - "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "マクロを無効にして、通知する", - "DE.Views.FileMenuPanels.Settings.txtWin": "Windowsのような", - "DE.Views.FormSettings.textAlways": "いつも", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "全てのマクロを無効にして、通知する", + "DE.Views.FileMenuPanels.Settings.txtWin": "Windowsとして", + "DE.Views.FormSettings.textAlways": "常に", "DE.Views.FormSettings.textAspect": "縦横比の固定", "DE.Views.FormSettings.textAutofit": "自動調整", "DE.Views.FormSettings.textBackgroundColor": "背景色", "DE.Views.FormSettings.textCheckbox": "チェックボックス", "DE.Views.FormSettings.textColor": "罫線の色", "DE.Views.FormSettings.textComb": "文字の組み合わせ", - "DE.Views.FormSettings.textCombobox": "コンボ・ボックス", - "DE.Views.FormSettings.textConnected": "接続されたフィールド", + "DE.Views.FormSettings.textCombobox": "コンボボックス", + "DE.Views.FormSettings.textConnected": "フィールド接続済み", "DE.Views.FormSettings.textDelete": "削除する", "DE.Views.FormSettings.textDisconnect": "切断する", "DE.Views.FormSettings.textDropDown": "ドロップダウン", @@ -1806,7 +1795,7 @@ "DE.Views.FormSettings.textFromFile": "ファイルから", "DE.Views.FormSettings.textFromStorage": "ストレージから", "DE.Views.FormSettings.textFromUrl": "URLから", - "DE.Views.FormSettings.textGroupKey": "グループ・キー", + "DE.Views.FormSettings.textGroupKey": "グループキー", "DE.Views.FormSettings.textImage": "画像", "DE.Views.FormSettings.textKey": "キー", "DE.Views.FormSettings.textLock": "ロックする", @@ -1828,39 +1817,39 @@ "DE.Views.FormSettings.textTooSmall": "画像が小さすぎます", "DE.Views.FormSettings.textUnlock": "ロックを解除する", "DE.Views.FormSettings.textValue": "値のオプション", - "DE.Views.FormSettings.textWidth": "セル幅", + "DE.Views.FormSettings.textWidth": "セルの幅", "DE.Views.FormsTab.capBtnCheckBox": "チェックボックス", - "DE.Views.FormsTab.capBtnComboBox": "コンボ・ボックス", + "DE.Views.FormsTab.capBtnComboBox": "コンボボックス", "DE.Views.FormsTab.capBtnDropDown": "ドロップダウン", "DE.Views.FormsTab.capBtnImage": "画像", - "DE.Views.FormsTab.capBtnNext": "新しいフィールド", + "DE.Views.FormsTab.capBtnNext": "次のフィールド", "DE.Views.FormsTab.capBtnPrev": "前のフィールド", "DE.Views.FormsTab.capBtnRadioBox": "ラジオボタン", "DE.Views.FormsTab.capBtnSaveForm": "オリジナルフォームとして保存", "DE.Views.FormsTab.capBtnSubmit": "送信", "DE.Views.FormsTab.capBtnText": "テキストフィールド", "DE.Views.FormsTab.capBtnView": "フォームを表示する", - "DE.Views.FormsTab.textClear": "フィールドを解除する", + "DE.Views.FormsTab.textClear": "フィールドをクリアする", "DE.Views.FormsTab.textClearFields": "すべてのフィールドをクリアする", "DE.Views.FormsTab.textCreateForm": "フィールドを追加して、記入可能なOFORM文書を作成する", "DE.Views.FormsTab.textGotIt": "OK", - "DE.Views.FormsTab.textHighlight": "強調表示設定", - "DE.Views.FormsTab.textNoHighlight": "強調表示なし", + "DE.Views.FormsTab.textHighlight": "ハイライト設定", + "DE.Views.FormsTab.textNoHighlight": "ハイライト表示なし", "DE.Views.FormsTab.textRequired": "必須事項をすべて入力し、送信してください。", "DE.Views.FormsTab.textSubmited": "フォームの送信成功", "DE.Views.FormsTab.tipCheckBox": "チェックボックスを挿入する", - "DE.Views.FormsTab.tipComboBox": "コンボ・ボックスを挿入する", - "DE.Views.FormsTab.tipDropDown": "ドロップダウン・リストを挿入する", + "DE.Views.FormsTab.tipComboBox": "コンボボックスを挿入", + "DE.Views.FormsTab.tipDropDown": "ドロップダウンリストを挿入", "DE.Views.FormsTab.tipImageField": "画像の挿入", - "DE.Views.FormsTab.tipNextForm": "次のフィールドへ", - "DE.Views.FormsTab.tipPrevForm": "前のフィールドへ", + "DE.Views.FormsTab.tipNextForm": "次のフィールドに移動する", + "DE.Views.FormsTab.tipPrevForm": "前のフィールドに移動する", "DE.Views.FormsTab.tipRadioBox": "ラジオボタンの挿入\t", "DE.Views.FormsTab.tipSaveForm": "ファイルをOFORMの記入式ドキュメントとして保存", "DE.Views.FormsTab.tipSubmit": "フォームを送信", - "DE.Views.FormsTab.tipTextField": "テキストフィールドを挿入する", + "DE.Views.FormsTab.tipTextField": "テキストフィールドを挿入", "DE.Views.FormsTab.tipViewForm": "フォームを表示する", "DE.Views.FormsTab.txtUntitled": "無題", - "DE.Views.HeaderFooterSettings.textBottomCenter": "左下", + "DE.Views.HeaderFooterSettings.textBottomCenter": "中央下", "DE.Views.HeaderFooterSettings.textBottomLeft": "左下", "DE.Views.HeaderFooterSettings.textBottomPage": "ページの下部", "DE.Views.HeaderFooterSettings.textBottomRight": "右下", @@ -1881,12 +1870,12 @@ "DE.Views.HeaderFooterSettings.textTopPage": "ページの上部", "DE.Views.HeaderFooterSettings.textTopRight": "右上", "DE.Views.HyperlinkSettingsDialog.textDefault": "テキスト フラグメントの選択", - "DE.Views.HyperlinkSettingsDialog.textDisplay": "ディスプレイ", + "DE.Views.HyperlinkSettingsDialog.textDisplay": "表示", "DE.Views.HyperlinkSettingsDialog.textExternal": "外部リンク", "DE.Views.HyperlinkSettingsDialog.textInternal": "文書内の場所", "DE.Views.HyperlinkSettingsDialog.textTitle": "ハイパーリンクの設定", "DE.Views.HyperlinkSettingsDialog.textTooltip": "ヒントのテキスト:", - "DE.Views.HyperlinkSettingsDialog.textUrl": "リンク", + "DE.Views.HyperlinkSettingsDialog.textUrl": "リンク先", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "文書の先頭", "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "ブックマーク", "DE.Views.HyperlinkSettingsDialog.txtEmpty": "このフィールドは必須項目です", @@ -1912,6 +1901,7 @@ "DE.Views.ImageSettings.textHintFlipV": "上下に反転", "DE.Views.ImageSettings.textInsert": "画像を置き換える", "DE.Views.ImageSettings.textOriginalSize": "実際のサイズ", + "DE.Views.ImageSettings.textRecentlyUsed": "最近使用された", "DE.Views.ImageSettings.textRotate90": "90度回転", "DE.Views.ImageSettings.textRotation": "回転", "DE.Views.ImageSettings.textSize": "サイズ", @@ -1919,7 +1909,7 @@ "DE.Views.ImageSettings.textWrap": "折り返しの種類と配置", "DE.Views.ImageSettings.txtBehind": "テキストの背後に", "DE.Views.ImageSettings.txtInFront": "テキストの前に", - "DE.Views.ImageSettings.txtInline": "インライン", + "DE.Views.ImageSettings.txtInline": "テキストに沿って", "DE.Views.ImageSettings.txtSquare": "四角", "DE.Views.ImageSettings.txtThrough": "スルー", "DE.Views.ImageSettings.txtTight": "外周", @@ -1931,14 +1921,14 @@ "DE.Views.ImageSettingsAdvanced.textAltDescription": "説明", "DE.Views.ImageSettingsAdvanced.textAltTip": "代替テキストとは、表、図、画像などのオブジェクトが持つ情報の、テキストによる代替表現です。この情報は、視覚や認知機能に障碍があり、オブジェクトを見たり認識したりできない方の役に立ちます。", "DE.Views.ImageSettingsAdvanced.textAltTitle": "タイトル", - "DE.Views.ImageSettingsAdvanced.textAngle": "角", + "DE.Views.ImageSettingsAdvanced.textAngle": "角度", "DE.Views.ImageSettingsAdvanced.textArrows": "矢印", - "DE.Views.ImageSettingsAdvanced.textAspectRatio": "縦横比の一定", + "DE.Views.ImageSettingsAdvanced.textAspectRatio": "縦横比の固定", "DE.Views.ImageSettingsAdvanced.textAutofit": "自動調整", - "DE.Views.ImageSettingsAdvanced.textBeginSize": "始点のサイズ", - "DE.Views.ImageSettingsAdvanced.textBeginStyle": "始点のスタイル", + "DE.Views.ImageSettingsAdvanced.textBeginSize": "開始サイズ", + "DE.Views.ImageSettingsAdvanced.textBeginStyle": "開始スタイル", "DE.Views.ImageSettingsAdvanced.textBelow": "下", - "DE.Views.ImageSettingsAdvanced.textBevel": "面取り", + "DE.Views.ImageSettingsAdvanced.textBevel": "斜角", "DE.Views.ImageSettingsAdvanced.textBottom": "下", "DE.Views.ImageSettingsAdvanced.textBottomMargin": "下余白", "DE.Views.ImageSettingsAdvanced.textBtnWrap": "テキストの折り返し\t", @@ -1947,7 +1937,7 @@ "DE.Views.ImageSettingsAdvanced.textCharacter": "文字", "DE.Views.ImageSettingsAdvanced.textColumn": "列", "DE.Views.ImageSettingsAdvanced.textDistance": "文字列との間隔", - "DE.Views.ImageSettingsAdvanced.textEndSize": "終点のサイズ", + "DE.Views.ImageSettingsAdvanced.textEndSize": "終了サイズ", "DE.Views.ImageSettingsAdvanced.textEndStyle": "終了スタイル", "DE.Views.ImageSettingsAdvanced.textFlat": "フラット", "DE.Views.ImageSettingsAdvanced.textFlipped": "反転された", @@ -1961,11 +1951,11 @@ "DE.Views.ImageSettingsAdvanced.textLine": "行", "DE.Views.ImageSettingsAdvanced.textLineStyle": "線のスタイル", "DE.Views.ImageSettingsAdvanced.textMargin": "余白", - "DE.Views.ImageSettingsAdvanced.textMiter": "角", + "DE.Views.ImageSettingsAdvanced.textMiter": "留め継ぎ", "DE.Views.ImageSettingsAdvanced.textMove": "文字列と一緒に移動する", "DE.Views.ImageSettingsAdvanced.textOptions": "オプション", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "実際のサイズ", - "DE.Views.ImageSettingsAdvanced.textOverlap": "オーバーラップさせる", + "DE.Views.ImageSettingsAdvanced.textOverlap": "オーバーラップを許可する", "DE.Views.ImageSettingsAdvanced.textPage": "ページ", "DE.Views.ImageSettingsAdvanced.textParagraph": "段落", "DE.Views.ImageSettingsAdvanced.textPosition": "位置", @@ -1983,7 +1973,7 @@ "DE.Views.ImageSettingsAdvanced.textSquare": "四角の", "DE.Views.ImageSettingsAdvanced.textTextBox": "テキストボックス", "DE.Views.ImageSettingsAdvanced.textTitle": "画像 - 詳細設定", - "DE.Views.ImageSettingsAdvanced.textTitleChart": "グラフー詳細設定", + "DE.Views.ImageSettingsAdvanced.textTitleChart": "チャートー詳細設定", "DE.Views.ImageSettingsAdvanced.textTitleShape": "図形 - 詳細設定", "DE.Views.ImageSettingsAdvanced.textTop": "トップ", "DE.Views.ImageSettingsAdvanced.textTopMargin": "上余白", @@ -1994,7 +1984,7 @@ "DE.Views.ImageSettingsAdvanced.textWrap": "折り返しの種類と配置", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "テキストの背後に", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "テキストの前に", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "インライン", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "テキストに沿って", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "四角", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "スルー", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "外周", @@ -2013,12 +2003,12 @@ "DE.Views.LeftMenu.txtTrialDev": "試用開発者モード", "DE.Views.LineNumbersDialog.textAddLineNumbering": "行番号を追加する", "DE.Views.LineNumbersDialog.textApplyTo": "に変更を適用する", - "DE.Views.LineNumbersDialog.textContinuous": "継続的な", + "DE.Views.LineNumbersDialog.textContinuous": "継続的", "DE.Views.LineNumbersDialog.textCountBy": "行番号の増分", "DE.Views.LineNumbersDialog.textDocument": "全ての文書", "DE.Views.LineNumbersDialog.textForward": "このポイント以降", "DE.Views.LineNumbersDialog.textFromText": "テキストから", - "DE.Views.LineNumbersDialog.textNumbering": "番号付け", + "DE.Views.LineNumbersDialog.textNumbering": "ナンバリング", "DE.Views.LineNumbersDialog.textRestartEachPage": "各ページに振り直し", "DE.Views.LineNumbersDialog.textRestartEachSection": "各セクションに振り直し", "DE.Views.LineNumbersDialog.textSection": "現在のセクション", @@ -2026,8 +2016,8 @@ "DE.Views.LineNumbersDialog.textTitle": "行番号", "DE.Views.LineNumbersDialog.txtAutoText": "自動", "DE.Views.Links.capBtnBookmarks": "ブックマーク", - "DE.Views.Links.capBtnCaption": "図表番号", - "DE.Views.Links.capBtnContentsUpdate": "更新", + "DE.Views.Links.capBtnCaption": "キャプション", + "DE.Views.Links.capBtnContentsUpdate": "テーブルの更新", "DE.Views.Links.capBtnCrossRef": "相互参照", "DE.Views.Links.capBtnInsContents": "目次", "DE.Views.Links.capBtnInsFootnote": "脚注", @@ -2037,7 +2027,7 @@ "DE.Views.Links.confirmReplaceTOF": "選択した図表を置き換えますか?", "DE.Views.Links.mniConvertNote": "すべてのメモを変換する", "DE.Views.Links.mniDelFootnote": "すべての脚注を削除する", - "DE.Views.Links.mniInsEndnote": "文末脚注を挿入する", + "DE.Views.Links.mniInsEndnote": "文末脚注を挿入", "DE.Views.Links.mniInsFootnote": "フットノートの挿入", "DE.Views.Links.mniNoteSettings": "ノートの設定", "DE.Views.Links.textContentsRemove": "目次の削除", @@ -2045,17 +2035,17 @@ "DE.Views.Links.textConvertToEndnotes": "すべての脚注を文末脚注に変換する", "DE.Views.Links.textConvertToFootnotes": "すべての文末脚注を脚注に変換する", "DE.Views.Links.textGotoEndnote": "文末脚注に移動する", - "DE.Views.Links.textGotoFootnote": "脚注へ移動", + "DE.Views.Links.textGotoFootnote": "脚注に移動する", "DE.Views.Links.textSwapNotes": "脚注と文末脚注を交換する", "DE.Views.Links.textUpdateAll": "テーブル全体の更新", - "DE.Views.Links.textUpdatePages": "ページ番号の変更のみ", + "DE.Views.Links.textUpdatePages": "ページ番号の更新のみ", "DE.Views.Links.tipBookmarks": "ブックマークの作成", - "DE.Views.Links.tipCaption": "図表番号の挿入", + "DE.Views.Links.tipCaption": "キャプションの挿入", "DE.Views.Links.tipContents": "目次を挿入", "DE.Views.Links.tipContentsUpdate": "目次を更新する", - "DE.Views.Links.tipCrossRef": "相互参照を挿入する", + "DE.Views.Links.tipCrossRef": "相互参照を挿入", "DE.Views.Links.tipInsertHyperlink": "ハイパーリンクの追加", - "DE.Views.Links.tipNotes": "フットノートを挿入か編集", + "DE.Views.Links.tipNotes": "フットノートを挿入または編集", "DE.Views.Links.tipTableFigures": "図表を挿入する", "DE.Views.Links.tipTableFiguresUpdate": "図表を更新する", "DE.Views.Links.titleUpdateTOF": "図表を更新する", @@ -2066,7 +2056,7 @@ "DE.Views.ListSettingsDialog.textPreview": "下見", "DE.Views.ListSettingsDialog.textRight": "右揃え", "DE.Views.ListSettingsDialog.txtAlign": "配置", - "DE.Views.ListSettingsDialog.txtBullet": "行頭文字", + "DE.Views.ListSettingsDialog.txtBullet": "箇条書き", "DE.Views.ListSettingsDialog.txtColor": "色", "DE.Views.ListSettingsDialog.txtFont": "フォントと記号", "DE.Views.ListSettingsDialog.txtLikeText": "テキストのように", @@ -2094,19 +2084,19 @@ "DE.Views.MailMergeSettings.downloadMergeTitle": "結合中", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "結合に失敗しました。", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "警告", - "DE.Views.MailMergeSettings.textAddRecipients": "最初に、リストに受信者を追加します。", - "DE.Views.MailMergeSettings.textAll": "全てのレコード", - "DE.Views.MailMergeSettings.textCurrent": "カレント レコード", - "DE.Views.MailMergeSettings.textDataSource": "データ ソース", + "DE.Views.MailMergeSettings.textAddRecipients": "初めに数名の受信者をリストに追加する", + "DE.Views.MailMergeSettings.textAll": "全ての記録", + "DE.Views.MailMergeSettings.textCurrent": "現在の履歴", + "DE.Views.MailMergeSettings.textDataSource": "データソース", "DE.Views.MailMergeSettings.textDocx": "Docx", "DE.Views.MailMergeSettings.textDownload": "ダウンロード", "DE.Views.MailMergeSettings.textEditData": "アドレス帳の編集", "DE.Views.MailMergeSettings.textEmail": "メール", "DE.Views.MailMergeSettings.textFrom": "から", "DE.Views.MailMergeSettings.textGoToMail": "メールに移動", - "DE.Views.MailMergeSettings.textHighlight": "差し込み印刷フィールドの強調表示", + "DE.Views.MailMergeSettings.textHighlight": "差し込みフィールドをハイライト", "DE.Views.MailMergeSettings.textInsertField": "差し込みフィールドの挿入", - "DE.Views.MailMergeSettings.textMaxRecepients": "受信者の最大数は100人です。", + "DE.Views.MailMergeSettings.textMaxRecepients": "受信者の最大人数は100人です。", "DE.Views.MailMergeSettings.textMerge": "結合", "DE.Views.MailMergeSettings.textMergeFields": "差し込みフィールド", "DE.Views.MailMergeSettings.textMergeTo": "に結合", @@ -2114,7 +2104,7 @@ "DE.Views.MailMergeSettings.textPortal": "保存", "DE.Views.MailMergeSettings.textPreview": "結果のプレビュー", "DE.Views.MailMergeSettings.textReadMore": "続きを読む", - "DE.Views.MailMergeSettings.textSendMsg": "すべての電子メールの準備ができました。 しばらく時間にメールメッセージが送信されます。
配信速度はメールサーバに依存します。
ドキュメントの作業を続行するか、閉じることができます。メッセージが送信されると、送信者はメッセージが開封されると送信される通知です。", + "DE.Views.MailMergeSettings.textSendMsg": "すべてのメールの準備ができました。 しばらくするとメッセージが送信されます。
配信速度はメールサーバにより変動します。
ドキュメントの作業を続けることも、閉じることもできます。操作終了後、登録したメールアドレスに通知が届きます。", "DE.Views.MailMergeSettings.textTo": "へ", "DE.Views.MailMergeSettings.txtFirst": "先頭レコード", "DE.Views.MailMergeSettings.txtFromToError": "\"From \"の値は \"To \"の値よりも小さくなければなりません。", @@ -2127,17 +2117,18 @@ "DE.Views.Navigation.txtDemote": "下げる", "DE.Views.Navigation.txtEmpty": "ドキュメントに見出しはありません。
目次に表示されるように、テキストに見出しスタイルをご適用ください。", "DE.Views.Navigation.txtEmptyItem": "空白の見出し", - "DE.Views.Navigation.txtExpand": "すべてを展開", - "DE.Views.Navigation.txtExpandToLevel": "レベルまでに展開する", + "DE.Views.Navigation.txtEmptyViewer": "ドキュメントに見出しはありません。", + "DE.Views.Navigation.txtExpand": "すべてを拡張する", + "DE.Views.Navigation.txtExpandToLevel": "レベルまで拡張する", "DE.Views.Navigation.txtHeadingAfter": "後の新しい見出し", "DE.Views.Navigation.txtHeadingBefore": "前の新しい見出し", - "DE.Views.Navigation.txtNewHeading": "小見出し", + "DE.Views.Navigation.txtNewHeading": "新しい小見出し", "DE.Views.Navigation.txtPromote": "レベルアップ", "DE.Views.Navigation.txtSelect": "コンテンツの選択", "DE.Views.NoteSettingsDialog.textApply": "適用する", "DE.Views.NoteSettingsDialog.textApplyTo": "変更適用", "DE.Views.NoteSettingsDialog.textContinue": "継続的", - "DE.Views.NoteSettingsDialog.textCustom": "ユーザー設定のマーク", + "DE.Views.NoteSettingsDialog.textCustom": "カスタムマーク", "DE.Views.NoteSettingsDialog.textDocEnd": "文書の最後", "DE.Views.NoteSettingsDialog.textDocument": "全ての文書", "DE.Views.NoteSettingsDialog.textEachPage": "ページごとに振り直し", @@ -2147,16 +2138,16 @@ "DE.Views.NoteSettingsDialog.textFormat": "形式", "DE.Views.NoteSettingsDialog.textInsert": "挿入する", "DE.Views.NoteSettingsDialog.textLocation": "位置", - "DE.Views.NoteSettingsDialog.textNumbering": "番号付け", + "DE.Views.NoteSettingsDialog.textNumbering": "ナンバリング", "DE.Views.NoteSettingsDialog.textNumFormat": "数の書式", "DE.Views.NoteSettingsDialog.textPageBottom": "ページの下部", "DE.Views.NoteSettingsDialog.textSectEnd": "セクションの終わり", "DE.Views.NoteSettingsDialog.textSection": "現在のセクション", "DE.Views.NoteSettingsDialog.textStart": "から始まる", - "DE.Views.NoteSettingsDialog.textTextBottom": "テキストより下", + "DE.Views.NoteSettingsDialog.textTextBottom": "テキストの下", "DE.Views.NoteSettingsDialog.textTitle": "ノートの設定", - "DE.Views.NotesRemoveDialog.textEnd": "すべての文末脚注を削除する", - "DE.Views.NotesRemoveDialog.textFoot": "すべての文末脚注を削除する", + "DE.Views.NotesRemoveDialog.textEnd": "すべての文末脚注を削除", + "DE.Views.NotesRemoveDialog.textFoot": "すべての文末脚注を削除", "DE.Views.NotesRemoveDialog.textTitle": "メモを削除する", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "警告", "DE.Views.PageMarginsDialog.textBottom": "下", @@ -2169,20 +2160,23 @@ "DE.Views.PageMarginsDialog.textMultiplePages": "複数ページ", "DE.Views.PageMarginsDialog.textNormal": "正常", "DE.Views.PageMarginsDialog.textOrientation": "印刷の向き", - "DE.Views.PageMarginsDialog.textOutside": "外面的", + "DE.Views.PageMarginsDialog.textOutside": "外面", "DE.Views.PageMarginsDialog.textPortrait": "縦向き", "DE.Views.PageMarginsDialog.textPreview": "下見", "DE.Views.PageMarginsDialog.textRight": "右", "DE.Views.PageMarginsDialog.textTitle": "余白", "DE.Views.PageMarginsDialog.textTop": "トップ", "DE.Views.PageMarginsDialog.txtMarginsH": "指定されたページの高さのために上下の余白は高すぎます。", - "DE.Views.PageMarginsDialog.txtMarginsW": "左右の余白の合計がページの幅を超えています。", + "DE.Views.PageMarginsDialog.txtMarginsW": "ページ幅に対して左右の余白が広すぎます。", "DE.Views.PageSizeDialog.textHeight": "高さ", "DE.Views.PageSizeDialog.textPreset": "あらかじめ設定された", "DE.Views.PageSizeDialog.textTitle": "ページのサイズ", "DE.Views.PageSizeDialog.textWidth": "幅", - "DE.Views.PageSizeDialog.txtCustom": "ユーザー設定", + "DE.Views.PageSizeDialog.txtCustom": "カスタム", "DE.Views.PageThumbnails.textClosePanel": "ページサムネイルを閉じる", + "DE.Views.PageThumbnails.textPageThumbnails": "ページサムネイル", + "DE.Views.PageThumbnails.textThumbnailsSettings": "サムネイルの設定", + "DE.Views.PageThumbnails.textThumbnailsSize": "サムネイルサイズ", "DE.Views.ParagraphSettings.strIndent": "インデント", "DE.Views.ParagraphSettings.strIndentsLeftText": "左", "DE.Views.ParagraphSettings.strIndentsRightText": "右", @@ -2210,7 +2204,7 @@ "DE.Views.ParagraphSettingsAdvanced.strIndent": "インデント", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "行間", - "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "アウトライン・レベル", + "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "アウトラインレベル", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右に", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "後に", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "前", @@ -2218,10 +2212,10 @@ "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "段落を分割しない", "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "次の段落と分離しない", "DE.Views.ParagraphSettingsAdvanced.strMargins": "埋め込み文字", - "DE.Views.ParagraphSettingsAdvanced.strOrphan": "改ページ時1行残して段落を区切らないを制御する", + "DE.Views.ParagraphSettingsAdvanced.strOrphan": "改ページ時 1 行残して段落を区切らない", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "フォント", "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "インデント&行間隔", - "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "改行や改ページ", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "改行&改ページ", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "位置", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "小型英大文字", "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "同じスタイルの場合は、段落間に間隔を追加しません。", @@ -2235,14 +2229,14 @@ "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "最小", "DE.Views.ParagraphSettingsAdvanced.textAuto": "複数", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "背景色", - "DE.Views.ParagraphSettingsAdvanced.textBodyText": "基本的なテキスト", - "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "ボーダー色", - "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "罫線の選択と枠線に選択されたスタイルの適用のためにダイアグラムをクリックします。または、ボタンを使うことができます。", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "基本テキスト", + "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "罫線の色", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "図をクリックするか、ボタンで枠を選択し、選択したスタイルを適用します。", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "罫線のサイズ", "DE.Views.ParagraphSettingsAdvanced.textBottom": "下", - "DE.Views.ParagraphSettingsAdvanced.textCentered": "中央揃え", + "DE.Views.ParagraphSettingsAdvanced.textCentered": "中央揃え済み", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "文字間隔", - "DE.Views.ParagraphSettingsAdvanced.textDefault": "既定のタブ", + "DE.Views.ParagraphSettingsAdvanced.textDefault": "デフォルトのタブ", "DE.Views.ParagraphSettingsAdvanced.textEffects": "効果", "DE.Views.ParagraphSettingsAdvanced.textExact": "固定値", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "最初の行", @@ -2275,7 +2269,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "上罫線だけを設定します。", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "罫線なし", - "DE.Views.RightMenu.txtChartSettings": "グラフ設定", + "DE.Views.RightMenu.txtChartSettings": "チャート設定", "DE.Views.RightMenu.txtFormSettings": "フォーム設定", "DE.Views.RightMenu.txtHeaderFooterSettings": "ヘッダーとフッターの設定", "DE.Views.RightMenu.txtImageSettings": "画像の設定", @@ -2297,7 +2291,7 @@ "DE.Views.ShapeSettings.strTransparency": "不透明度", "DE.Views.ShapeSettings.strType": "タイプ", "DE.Views.ShapeSettings.textAdvanced": "詳細設定の表示", - "DE.Views.ShapeSettings.textAngle": "角", + "DE.Views.ShapeSettings.textAngle": "角度", "DE.Views.ShapeSettings.textBorderSizeErr": "入力された値が正しくありません。
0〜1584の数値を入力してください。", "DE.Views.ShapeSettings.textColor": "色で塗りつぶし", "DE.Views.ShapeSettings.textDirection": "方向", @@ -2318,6 +2312,7 @@ "DE.Views.ShapeSettings.textPatternFill": "パターン", "DE.Views.ShapeSettings.textPosition": "位置", "DE.Views.ShapeSettings.textRadial": "放射状", + "DE.Views.ShapeSettings.textRecentlyUsed": "最近使用された", "DE.Views.ShapeSettings.textRotate90": "90度回転", "DE.Views.ShapeSettings.textRotation": "回転", "DE.Views.ShapeSettings.textSelectImage": "画像の選択", @@ -2335,10 +2330,10 @@ "DE.Views.ShapeSettings.txtCarton": "カートン", "DE.Views.ShapeSettings.txtDarkFabric": "ダークファブリック", "DE.Views.ShapeSettings.txtGrain": "粒子", - "DE.Views.ShapeSettings.txtGranite": "みかげ石", + "DE.Views.ShapeSettings.txtGranite": "花崗岩", "DE.Views.ShapeSettings.txtGreyPaper": "グレー紙", "DE.Views.ShapeSettings.txtInFront": "テキストの前に", - "DE.Views.ShapeSettings.txtInline": "インライン", + "DE.Views.ShapeSettings.txtInline": "テキストに沿って", "DE.Views.ShapeSettings.txtKnit": "ニット", "DE.Views.ShapeSettings.txtLeather": "レザー", "DE.Views.ShapeSettings.txtNoBorders": "線なし", @@ -2351,7 +2346,7 @@ "DE.Views.SignatureSettings.notcriticalErrorTitle": "警告", "DE.Views.SignatureSettings.strDelete": "署名の削除", "DE.Views.SignatureSettings.strDetails": "署名の詳細", - "DE.Views.SignatureSettings.strInvalid": "不正な署名", + "DE.Views.SignatureSettings.strInvalid": "無効な署名", "DE.Views.SignatureSettings.strRequested": "必要な署名", "DE.Views.SignatureSettings.strSetup": "署名の設定", "DE.Views.SignatureSettings.strSign": "サイン", @@ -2365,9 +2360,10 @@ "DE.Views.SignatureSettings.txtSigned": "有効な署名がドキュメントに追加されました。 ドキュメントは編集されないように保護されています。", "DE.Views.SignatureSettings.txtSignedInvalid": "文書のデジタル署名の一部が無効であるか、検証できませんでした。 文書は編集できないように保護されています。", "DE.Views.Statusbar.goToPageText": "ページに移動", - "DE.Views.Statusbar.pageIndexText": "{1}から​​{0}ページ", + "DE.Views.Statusbar.pageIndexText": "{1}の​​{0}ページ", "DE.Views.Statusbar.tipFitPage": "ページに合わせる", - "DE.Views.Statusbar.tipFitWidth": "幅を合わせる", + "DE.Views.Statusbar.tipFitWidth": "幅に合わせる", + "DE.Views.Statusbar.tipSelectTool": "選択ツール", "DE.Views.Statusbar.tipSetLang": "テキストの言語を設定します。", "DE.Views.Statusbar.tipZoomFactor": "拡大率", "DE.Views.Statusbar.tipZoomIn": "拡大", @@ -2387,7 +2383,7 @@ "DE.Views.TableOfContentsSettings.strAlign": "ページ番号の右揃え", "DE.Views.TableOfContentsSettings.strFullCaption": "ラベルと番号を含める", "DE.Views.TableOfContentsSettings.strLinks": "目次をリンクとして書式設定する", - "DE.Views.TableOfContentsSettings.strLinksOF": "図や表をリンクとしてフォーマットする", + "DE.Views.TableOfContentsSettings.strLinksOF": "図表をリンクとして書式設定する", "DE.Views.TableOfContentsSettings.strShowPages": "ページ番号の表示", "DE.Views.TableOfContentsSettings.textBuildTable": "目次の作成要素:", "DE.Views.TableOfContentsSettings.textBuildTableOF": "次から図表を作成する", @@ -2397,8 +2393,8 @@ "DE.Views.TableOfContentsSettings.textLevel": "レベル", "DE.Views.TableOfContentsSettings.textLevels": "レベル", "DE.Views.TableOfContentsSettings.textNone": "なし", - "DE.Views.TableOfContentsSettings.textRadioCaption": "見出し", - "DE.Views.TableOfContentsSettings.textRadioLevels": "アウトライン・レベル", + "DE.Views.TableOfContentsSettings.textRadioCaption": "キャプション", + "DE.Views.TableOfContentsSettings.textRadioLevels": "アウトラインレベル", "DE.Views.TableOfContentsSettings.textRadioStyle": "スタイル", "DE.Views.TableOfContentsSettings.textRadioStyles": "選択されたスタイル", "DE.Views.TableOfContentsSettings.textStyle": "スタイル", @@ -2406,12 +2402,12 @@ "DE.Views.TableOfContentsSettings.textTable": "表", "DE.Views.TableOfContentsSettings.textTitle": "目次", "DE.Views.TableOfContentsSettings.textTitleTOF": "図表", - "DE.Views.TableOfContentsSettings.txtCentered": "中央揃え", + "DE.Views.TableOfContentsSettings.txtCentered": "中央揃え済み", "DE.Views.TableOfContentsSettings.txtClassic": "クラシック", "DE.Views.TableOfContentsSettings.txtCurrent": "現在", "DE.Views.TableOfContentsSettings.txtDistinctive": "特徴的", - "DE.Views.TableOfContentsSettings.txtFormal": "公式な", - "DE.Views.TableOfContentsSettings.txtModern": "現代", + "DE.Views.TableOfContentsSettings.txtFormal": "フォーマル", + "DE.Views.TableOfContentsSettings.txtModern": "モダン", "DE.Views.TableOfContentsSettings.txtOnline": "オンライン", "DE.Views.TableOfContentsSettings.txtSimple": "簡単な", "DE.Views.TableOfContentsSettings.txtStandard": "標準", @@ -2480,10 +2476,10 @@ "DE.Views.TableSettingsAdvanced.textAltTitle": "タイトル", "DE.Views.TableSettingsAdvanced.textAnchorText": "テキスト", "DE.Views.TableSettingsAdvanced.textAutofit": "自動的にセルのサイズを変更する", - "DE.Views.TableSettingsAdvanced.textBackColor": "セルの背景色", + "DE.Views.TableSettingsAdvanced.textBackColor": "セルの背景", "DE.Views.TableSettingsAdvanced.textBelow": "下", - "DE.Views.TableSettingsAdvanced.textBorderColor": "ボーダー色", - "DE.Views.TableSettingsAdvanced.textBorderDesc": "罫線の選択と枠線に選択されたスタイルの適用のためにダイアグラムをクリックします。または、ボタンを使うことができます。", + "DE.Views.TableSettingsAdvanced.textBorderColor": "罫線の色", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "図をクリックするか、ボタンで枠を選択し、選択したスタイルを適用します。", "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "罫線と背景", "DE.Views.TableSettingsAdvanced.textBorderWidth": "罫線のサイズ", "DE.Views.TableSettingsAdvanced.textBottom": "下", @@ -2493,19 +2489,19 @@ "DE.Views.TableSettingsAdvanced.textCenter": "中央揃え", "DE.Views.TableSettingsAdvanced.textCenterTooltip": "中央揃え", "DE.Views.TableSettingsAdvanced.textCheckMargins": "既定の余白を使用します。", - "DE.Views.TableSettingsAdvanced.textDefaultMargins": "既定のセルの余白", + "DE.Views.TableSettingsAdvanced.textDefaultMargins": "デフォルトのセルの余白", "DE.Views.TableSettingsAdvanced.textDistance": "文字列との間隔", "DE.Views.TableSettingsAdvanced.textHorizontal": "水平", "DE.Views.TableSettingsAdvanced.textIndLeft": "左端からのインデント", "DE.Views.TableSettingsAdvanced.textLeft": "左", "DE.Views.TableSettingsAdvanced.textLeftTooltip": "左", "DE.Views.TableSettingsAdvanced.textMargin": "余白", - "DE.Views.TableSettingsAdvanced.textMargins": "セル内の配置", + "DE.Views.TableSettingsAdvanced.textMargins": "セル内の余白", "DE.Views.TableSettingsAdvanced.textMeasure": "測定", "DE.Views.TableSettingsAdvanced.textMove": "文字列と一緒に移動する", - "DE.Views.TableSettingsAdvanced.textOnlyCells": "選択されたセルだけのため", + "DE.Views.TableSettingsAdvanced.textOnlyCells": "選択されたセルだけに適応", "DE.Views.TableSettingsAdvanced.textOptions": "オプション", - "DE.Views.TableSettingsAdvanced.textOverlap": "オーバーラップさせる", + "DE.Views.TableSettingsAdvanced.textOverlap": "オーバーラップを許可する", "DE.Views.TableSettingsAdvanced.textPage": "ページ", "DE.Views.TableSettingsAdvanced.textPosition": "位置", "DE.Views.TableSettingsAdvanced.textPrefWidth": "幅", @@ -2524,8 +2520,8 @@ "DE.Views.TableSettingsAdvanced.textWidth": "幅", "DE.Views.TableSettingsAdvanced.textWidthSpaces": "幅&スペース", "DE.Views.TableSettingsAdvanced.textWrap": "テキストの折り返し\t", - "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "表形式", - "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "フローの表", + "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "インラインテーブル", + "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "フローテーブル", "DE.Views.TableSettingsAdvanced.textWrappingStyle": "折り返しの種類と配置", "DE.Views.TableSettingsAdvanced.textWrapText": "左右の折り返し", "DE.Views.TableSettingsAdvanced.tipAll": "外部の罫線と全ての内部の線", @@ -2557,7 +2553,7 @@ "DE.Views.TextArtSettings.strStroke": "行", "DE.Views.TextArtSettings.strTransparency": "不透明度", "DE.Views.TextArtSettings.strType": "タイプ", - "DE.Views.TextArtSettings.textAngle": "角", + "DE.Views.TextArtSettings.textAngle": "角度", "DE.Views.TextArtSettings.textBorderSizeErr": "入力された値が正しくありません。
0〜1584の数値を入力してください。", "DE.Views.TextArtSettings.textColor": "色で塗りつぶし", "DE.Views.TextArtSettings.textDirection": "方向", @@ -2574,11 +2570,11 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "グラデーションポイントを追加する", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "グラデーションポイントを削除する", "DE.Views.TextArtSettings.txtNoBorders": "線なし", - "DE.Views.TextToTableDialog.textAutofit": "オートフィットの動作", + "DE.Views.TextToTableDialog.textAutofit": "自動調整の動作", "DE.Views.TextToTableDialog.textColumns": "列", - "DE.Views.TextToTableDialog.textContents": "コンテンツへのオートフィット", + "DE.Views.TextToTableDialog.textContents": "コンテンツへの自動調整", "DE.Views.TextToTableDialog.textEmpty": "カスタムセパレータの文字を入力する必要があります。", - "DE.Views.TextToTableDialog.textFixed": "カラムの幅を固定", + "DE.Views.TextToTableDialog.textFixed": "固定カラム幅", "DE.Views.TextToTableDialog.textOther": "その他", "DE.Views.TextToTableDialog.textPara": "段落", "DE.Views.TextToTableDialog.textRows": "行", @@ -2587,17 +2583,17 @@ "DE.Views.TextToTableDialog.textTab": "タブ", "DE.Views.TextToTableDialog.textTableSize": "表のサイズ", "DE.Views.TextToTableDialog.textTitle": "文字を表に変換する", - "DE.Views.TextToTableDialog.textWindow": "ウインドウへのオートフィット", + "DE.Views.TextToTableDialog.textWindow": "ウインドウへの自動調整", "DE.Views.TextToTableDialog.txtAutoText": "自動", "DE.Views.Toolbar.capBtnAddComment": "コメントを追加", "DE.Views.Toolbar.capBtnBlankPage": "空白ページ", "DE.Views.Toolbar.capBtnColumns": "列", "DE.Views.Toolbar.capBtnComment": "コメント", "DE.Views.Toolbar.capBtnDateTime": "日付&時刻", - "DE.Views.Toolbar.capBtnInsChart": "グラフ", - "DE.Views.Toolbar.capBtnInsControls": "コンテンツ コントロール", - "DE.Views.Toolbar.capBtnInsDropcap": "ドロップ キャップ", - "DE.Views.Toolbar.capBtnInsEquation": "数式", + "DE.Views.Toolbar.capBtnInsChart": "チャート", + "DE.Views.Toolbar.capBtnInsControls": "コンテンツコントロール", + "DE.Views.Toolbar.capBtnInsDropcap": "ドロップキャップ", + "DE.Views.Toolbar.capBtnInsEquation": "方程式\t", "DE.Views.Toolbar.capBtnInsHeader": "ヘッダー/フッター", "DE.Views.Toolbar.capBtnInsImage": "画像", "DE.Views.Toolbar.capBtnInsPagebreak": "区切り", @@ -2616,20 +2612,20 @@ "DE.Views.Toolbar.capImgForward": "前面へ移動", "DE.Views.Toolbar.capImgGroup": "グループ化する", "DE.Views.Toolbar.capImgWrapping": "折り返し", - "DE.Views.Toolbar.mniCapitalizeWords": "各単語の先頭文字を大文字にする", - "DE.Views.Toolbar.mniCustomTable": "ユーザー設定​​の表の挿入", + "DE.Views.Toolbar.mniCapitalizeWords": "各単語を大文字にする", + "DE.Views.Toolbar.mniCustomTable": "カスタムテーブルの挿入", "DE.Views.Toolbar.mniDrawTable": "罫線を引く", - "DE.Views.Toolbar.mniEditControls": "コントロールの設定", - "DE.Views.Toolbar.mniEditDropCap": "ドロップ キャップの設定", + "DE.Views.Toolbar.mniEditControls": "コントロール設定", + "DE.Views.Toolbar.mniEditDropCap": "ドロップキャップの設定", "DE.Views.Toolbar.mniEditFooter": "フッターの編集", "DE.Views.Toolbar.mniEditHeader": "ヘッダーの編集", "DE.Views.Toolbar.mniEraseTable": "テーブルの削除", - "DE.Views.Toolbar.mniFromFile": " ファイルから", + "DE.Views.Toolbar.mniFromFile": "ファイルから", "DE.Views.Toolbar.mniFromStorage": "ストレージから", "DE.Views.Toolbar.mniFromUrl": "URLから", "DE.Views.Toolbar.mniHiddenBorders": "隠しテーブルの罫線", - "DE.Views.Toolbar.mniHiddenChars": "編集記号の表示", - "DE.Views.Toolbar.mniHighlightControls": "強調表示設定", + "DE.Views.Toolbar.mniHiddenChars": "非表示文字", + "DE.Views.Toolbar.mniHighlightControls": "ハイライト設定", "DE.Views.Toolbar.mniImageFromFile": "ファイルからの画像", "DE.Views.Toolbar.mniImageFromStorage": "ストレージから画像", "DE.Views.Toolbar.mniImageFromUrl": "URLからのファイル", @@ -2642,46 +2638,46 @@ "DE.Views.Toolbar.textAutoColor": "自動", "DE.Views.Toolbar.textBold": "太字", "DE.Views.Toolbar.textBottom": "下:", - "DE.Views.Toolbar.textChangeLevel": "変更リストラベル", + "DE.Views.Toolbar.textChangeLevel": "リストラベルの変更", "DE.Views.Toolbar.textCheckboxControl": "チェックボックス", - "DE.Views.Toolbar.textColumnsCustom": "ユーザー設定の列", + "DE.Views.Toolbar.textColumnsCustom": "カスタム設定の列", "DE.Views.Toolbar.textColumnsLeft": "左", "DE.Views.Toolbar.textColumnsOne": "1", "DE.Views.Toolbar.textColumnsRight": "右に", "DE.Views.Toolbar.textColumnsThree": "三", "DE.Views.Toolbar.textColumnsTwo": "二", "DE.Views.Toolbar.textComboboxControl": "コンボボックス", - "DE.Views.Toolbar.textContinuous": "継続的な", - "DE.Views.Toolbar.textContPage": "連続ページ表示", + "DE.Views.Toolbar.textContinuous": "継続的", + "DE.Views.Toolbar.textContPage": "連続ページ", "DE.Views.Toolbar.textCustomLineNumbers": "行番号オプション", "DE.Views.Toolbar.textDateControl": "日付", - "DE.Views.Toolbar.textDropdownControl": "ドロップダウン リスト", - "DE.Views.Toolbar.textEditWatermark": "ユーザー設定の透かし", + "DE.Views.Toolbar.textDropdownControl": "ドロップダウンリスト", + "DE.Views.Toolbar.textEditWatermark": "カスタム設定の透かし", "DE.Views.Toolbar.textEvenPage": "偶数ページから開始", "DE.Views.Toolbar.textInMargin": "余白", "DE.Views.Toolbar.textInsColumnBreak": "段区切りの挿入", - "DE.Views.Toolbar.textInsertPageCount": "ページ数を挿入する", + "DE.Views.Toolbar.textInsertPageCount": "ページ数を挿入", "DE.Views.Toolbar.textInsertPageNumber": "ページ番号の挿入", "DE.Views.Toolbar.textInsPageBreak": "改ページの挿入", "DE.Views.Toolbar.textInsSectionBreak": "セクション区切りの挿入", "DE.Views.Toolbar.textInText": "テキスト", - "DE.Views.Toolbar.textItalic": "斜体", + "DE.Views.Toolbar.textItalic": "イタリック", "DE.Views.Toolbar.textLandscape": "横向き", "DE.Views.Toolbar.textLeft": "左:", "DE.Views.Toolbar.textListSettings": "リストの設定", - "DE.Views.Toolbar.textMarginsLast": "最後に適用したユーザー", + "DE.Views.Toolbar.textMarginsLast": "最後に適用した設定", "DE.Views.Toolbar.textMarginsModerate": "標準", "DE.Views.Toolbar.textMarginsNarrow": "狭い", "DE.Views.Toolbar.textMarginsNormal": "標準", "DE.Views.Toolbar.textMarginsUsNormal": "ノーマル(アメリカの標準)", "DE.Views.Toolbar.textMarginsWide": "広い", - "DE.Views.Toolbar.textNewColor": "ユーザー設定の色の追加", + "DE.Views.Toolbar.textNewColor": "新規カスタムカラーの追加", "DE.Views.Toolbar.textNextPage": "次のページ", - "DE.Views.Toolbar.textNoHighlight": "強調表示なし", + "DE.Views.Toolbar.textNoHighlight": "ハイライト表示なし", "DE.Views.Toolbar.textNone": "なし", "DE.Views.Toolbar.textOddPage": "奇数ページから開始", - "DE.Views.Toolbar.textPageMarginsCustom": "ユーザー設定の余白", - "DE.Views.Toolbar.textPageSizeCustom": "ユーザー設定のページ サイズ", + "DE.Views.Toolbar.textPageMarginsCustom": "カスタム設定の余白", + "DE.Views.Toolbar.textPageSizeCustom": "カスタム設定のページサイズ", "DE.Views.Toolbar.textPictureControl": "画像", "DE.Views.Toolbar.textPlainControl": "プレーンテキスト", "DE.Views.Toolbar.textPortrait": "縦向き", @@ -2693,7 +2689,7 @@ "DE.Views.Toolbar.textRight": "右:", "DE.Views.Toolbar.textStrikeout": "取り消し線", "DE.Views.Toolbar.textStyleMenuDelete": "スタイルの削除", - "DE.Views.Toolbar.textStyleMenuDeleteAll": "ユーザー設定のスタイルの削除", + "DE.Views.Toolbar.textStyleMenuDeleteAll": "カスタム設定のスタイルを全て削除", "DE.Views.Toolbar.textStyleMenuNew": "選択からの新しいスタイル", "DE.Views.Toolbar.textStyleMenuRestore": "デフォルトへの復元", "DE.Views.Toolbar.textStyleMenuRestoreAll": "全てのデフォルトスタイルの復元", @@ -2725,18 +2721,18 @@ "DE.Views.Toolbar.tipClearStyle": "スタイルのクリア", "DE.Views.Toolbar.tipColorSchemas": "配色の変更", "DE.Views.Toolbar.tipColumns": "列の挿入", - "DE.Views.Toolbar.tipControls": "コンテンツ コントロールの挿入", + "DE.Views.Toolbar.tipControls": "コンテンツコントロールの挿入", "DE.Views.Toolbar.tipCopy": "コピー", "DE.Views.Toolbar.tipCopyStyle": "スタイルのコピー", - "DE.Views.Toolbar.tipDateTime": " 現在の日付と時刻を挿入", - "DE.Views.Toolbar.tipDecFont": "フォントのサイズの減分", + "DE.Views.Toolbar.tipDateTime": "現在の日付と時刻を挿入", + "DE.Views.Toolbar.tipDecFont": "フォントサイズを小さくする", "DE.Views.Toolbar.tipDecPrLeft": "インデントを減らす", - "DE.Views.Toolbar.tipDropCap": "ドロップ キャップの挿入", - "DE.Views.Toolbar.tipEditHeader": "ヘッダーやフッターの編集", + "DE.Views.Toolbar.tipDropCap": "ドロップキャップの挿入", + "DE.Views.Toolbar.tipEditHeader": "ヘッダーまたはフッターの編集", "DE.Views.Toolbar.tipFontColor": "フォントの色", "DE.Views.Toolbar.tipFontName": "フォント", "DE.Views.Toolbar.tipFontSize": "フォントのサイズ", - "DE.Views.Toolbar.tipHighlightColor": "強調表示の色", + "DE.Views.Toolbar.tipHighlightColor": "ハイライトの色", "DE.Views.Toolbar.tipImgAlign": "オブジェクトを配置する", "DE.Views.Toolbar.tipImgGroup": "オブジェクトをグループ化する", "DE.Views.Toolbar.tipImgWrapping": "文字列の折り返し", @@ -2749,14 +2745,21 @@ "DE.Views.Toolbar.tipInsertShape": "オートシェイプの挿入", "DE.Views.Toolbar.tipInsertSymbol": "記号の挿入", "DE.Views.Toolbar.tipInsertTable": "表の挿入", - "DE.Views.Toolbar.tipInsertText": "テキスト ボックスの挿入", - "DE.Views.Toolbar.tipInsertTextArt": "テキスト アートの挿入", + "DE.Views.Toolbar.tipInsertText": "テキストボックスの挿入", + "DE.Views.Toolbar.tipInsertTextArt": "テキストアートの挿入", "DE.Views.Toolbar.tipLineNumbers": "行番号を表示する", "DE.Views.Toolbar.tipLineSpace": "段落の行間", "DE.Views.Toolbar.tipMailRecepients": "差し込み印刷", "DE.Views.Toolbar.tipMarkers": "箇条書き", + "DE.Views.Toolbar.tipMarkersArrow": "箇条書き(矢印)", + "DE.Views.Toolbar.tipMarkersCheckmark": "箇条書き(チェックマーク)", + "DE.Views.Toolbar.tipMarkersFRhombus": "箇条書き(ひし形)", + "DE.Views.Toolbar.tipMarkersFRound": "箇条書き(丸)", + "DE.Views.Toolbar.tipMarkersFSquare": "箇条書き(四角)", + "DE.Views.Toolbar.tipMarkersHRound": "箇条書き(円)", + "DE.Views.Toolbar.tipMarkersStar": "箇条書き(星)", "DE.Views.Toolbar.tipMultilevels": "複数レベルのリスト", - "DE.Views.Toolbar.tipNumbers": "番号設定", + "DE.Views.Toolbar.tipNumbers": "ナンバリング", "DE.Views.Toolbar.tipPageBreak": "ページの挿入またはセクション区切り", "DE.Views.Toolbar.tipPageMargins": "ページ余白", "DE.Views.Toolbar.tipPageOrient": "ページの向き", @@ -2770,7 +2773,7 @@ "DE.Views.Toolbar.tipSaveCoauth": "他のユーザが変更を見れるために変更を保存します。", "DE.Views.Toolbar.tipSendBackward": "背面へ移動", "DE.Views.Toolbar.tipSendForward": "前面へ移動", - "DE.Views.Toolbar.tipShowHiddenChars": "編集記号の表示", + "DE.Views.Toolbar.tipShowHiddenChars": "非表示文字", "DE.Views.Toolbar.tipSynchronize": "ドキュメントは他のユーザーによって変更されました。変更を保存するためにここでクリックし、アップデートを再ロードしてください。", "DE.Views.Toolbar.tipUndo": "元に戻す", "DE.Views.Toolbar.tipWatermark": "透かしを編集する", @@ -2780,13 +2783,13 @@ "DE.Views.Toolbar.txtObjectsAlign": "選択したオブジェクトを整列する", "DE.Views.Toolbar.txtPageAlign": "ページに揃え", "DE.Views.Toolbar.txtScheme1": "オフィス", - "DE.Views.Toolbar.txtScheme10": "デザート", + "DE.Views.Toolbar.txtScheme10": "中位数", "DE.Views.Toolbar.txtScheme11": "メトロ", "DE.Views.Toolbar.txtScheme12": "モジュール", - "DE.Views.Toolbar.txtScheme13": "キュート", - "DE.Views.Toolbar.txtScheme14": "スパイス", + "DE.Views.Toolbar.txtScheme13": "オピュレント", + "DE.Views.Toolbar.txtScheme14": "オリエル", "DE.Views.Toolbar.txtScheme15": "発生元", - "DE.Views.Toolbar.txtScheme16": "ペーパー", + "DE.Views.Toolbar.txtScheme16": "紙", "DE.Views.Toolbar.txtScheme17": "フレッシュ", "DE.Views.Toolbar.txtScheme18": "テクノロジー", "DE.Views.Toolbar.txtScheme19": "トラベル", @@ -2794,19 +2797,21 @@ "DE.Views.Toolbar.txtScheme20": "アーバン", "DE.Views.Toolbar.txtScheme21": "ネオン", "DE.Views.Toolbar.txtScheme22": "新しいオフィス", - "DE.Views.Toolbar.txtScheme3": "ひらめき", + "DE.Views.Toolbar.txtScheme3": "エイペックス", "DE.Views.Toolbar.txtScheme4": "アスペクト", - "DE.Views.Toolbar.txtScheme5": "クール", + "DE.Views.Toolbar.txtScheme5": "シビック", "DE.Views.Toolbar.txtScheme6": "ビジネス", - "DE.Views.Toolbar.txtScheme7": "株主資本", + "DE.Views.Toolbar.txtScheme7": "エクイティ", "DE.Views.Toolbar.txtScheme8": "フロー", - "DE.Views.Toolbar.txtScheme9": "エコロジー", + "DE.Views.Toolbar.txtScheme9": "ファウンドリー", "DE.Views.ViewTab.textAlwaysShowToolbar": "ツールバーを常に表示する", - "DE.Views.ViewTab.textDarkDocument": "ダーク ドキュメント", + "DE.Views.ViewTab.textDarkDocument": "ダークドキュメント", "DE.Views.ViewTab.textFitToPage": "ページに合わせる", + "DE.Views.ViewTab.textFitToWidth": "幅に合わせる", "DE.Views.ViewTab.textInterfaceTheme": "インターフェイスのテーマ", "DE.Views.ViewTab.textNavigation": "ナビゲーション", "DE.Views.ViewTab.textRulers": "ルーラー", + "DE.Views.ViewTab.textStatusBar": "ステータスバー", "DE.Views.ViewTab.textZoom": "ズーム", "DE.Views.WatermarkSettingsDialog.textAuto": "自動", "DE.Views.WatermarkSettingsDialog.textBold": "太字", @@ -2818,7 +2823,7 @@ "DE.Views.WatermarkSettingsDialog.textFromUrl": "URLから", "DE.Views.WatermarkSettingsDialog.textHor": "水平", "DE.Views.WatermarkSettingsDialog.textImageW": "画像透かし", - "DE.Views.WatermarkSettingsDialog.textItalic": "斜体", + "DE.Views.WatermarkSettingsDialog.textItalic": "イタリック", "DE.Views.WatermarkSettingsDialog.textLanguage": "言語", "DE.Views.WatermarkSettingsDialog.textLayout": "レイアウト", "DE.Views.WatermarkSettingsDialog.textNone": "なし", diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json index d4b6ebf86..a87f4e191 100644 --- a/apps/documenteditor/main/locale/ko.json +++ b/apps/documenteditor/main/locale/ko.json @@ -2099,6 +2099,7 @@ "DE.Views.Navigation.txtDemote": "강등", "DE.Views.Navigation.txtEmpty": "문서에 제목이 없습니다.
텍스트에 제목 스타일을 적용하여 목차에 표시되도록 합니다.", "DE.Views.Navigation.txtEmptyItem": "머리말 없슴", + "DE.Views.Navigation.txtEmptyViewer": "문서에 제목이 없습니다. ", "DE.Views.Navigation.txtExpand": "모두 확장", "DE.Views.Navigation.txtExpandToLevel": "레벨로 확장하기", "DE.Views.Navigation.txtHeadingAfter": "뒤에 신규 머리글 ", diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json index 838e7c627..fef9fb281 100644 --- a/apps/documenteditor/main/locale/lo.json +++ b/apps/documenteditor/main/locale/lo.json @@ -124,6 +124,8 @@ "Common.Translation.warnFileLocked": "ແຟ້ມ ກຳ ລັງຖືກດັດແກ້ຢູ່ໃນແອັບ ອື່ນ. ທ່ານສາມາດສືບຕໍ່ດັດແກ້ແລະບັນທຶກເປັນ ສຳ ເນົາ", "Common.Translation.warnFileLockedBtnEdit": "ສ້າງສຳເນົາ", "Common.Translation.warnFileLockedBtnView": "ເປີດເບິ່ງ", + "Common.UI.ButtonColored.textAutoColor": "ອັດຕະໂນມັດ", + "Common.UI.ButtonColored.textNewColor": "ເພີ່ມສີທີ່ກຳໜົດເອງໃໝ່", "Common.UI.Calendar.textApril": "ເມສາ", "Common.UI.Calendar.textAugust": "ສິງຫາ", "Common.UI.Calendar.textDecember": "ເດືອນທັນວາ", @@ -166,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "ໃຫມ່", "Common.UI.ExtendedColorDialog.textRGBErr": "ຄ່າທີ່ປ້ອນເຂົ້າບໍ່ຖືກຕ້ອງ.
ກະລຸນາໃສ່ຄ່າຕົວເລກລະຫວ່າງ 0 ເຖິງ 255.", "Common.UI.HSBColorPicker.textNoColor": "ບໍ່ມີສີ", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "ເຊື່ອງລະຫັດຜ່ານ", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "ສະແດງລະຫັດຜ່ານ", "Common.UI.SearchDialog.textHighlight": "ໄຮໄລ້ ຜົນ", "Common.UI.SearchDialog.textMatchCase": "ກໍລະນີທີ່ສຳຄັນ", "Common.UI.SearchDialog.textReplaceDef": "ກະລຸນາໃສ່ຕົວ ໜັງ ສືທົດແທນເນື້ອຫາ", @@ -209,7 +213,10 @@ "Common.Views.AutoCorrectDialog.textBulleted": "ລາຍການຫົວຂໍ້ຍອ່ຍແບບອັດຕະໂນມັດ", "Common.Views.AutoCorrectDialog.textBy": "ໂດຍ", "Common.Views.AutoCorrectDialog.textDelete": "ລົບ", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "ເພີ່ມໄລຍະຊ່ອງຫວ່າງສອງເທົ່າ", + "Common.Views.AutoCorrectDialog.textFLCells": "ໃຊ້ໂຕພິມໃຫຍ່ໂຕທຳອິດຂອງຕາລາງຕາຕະລາງ", "Common.Views.AutoCorrectDialog.textFLSentence": "ໃຊ້ຕົວອັກສອນທຳອິດເປັນຕົວພິມໃຫຍ່", + "Common.Views.AutoCorrectDialog.textHyperlink": "ອິນເຕີນັດ ແລະ ເຄື່ອຂ່າຍແບບຫຼາຍຊ່ອງທາງ", "Common.Views.AutoCorrectDialog.textHyphens": "ເຄື່ອງໝາຍຂີດເສັ້ນ (--) ເຄື່ອງໝາຍຂີດປະ", "Common.Views.AutoCorrectDialog.textMathCorrect": "ການແກ້ໄຂອັດຕະໂນມັດທາງຄະນິດສາດ", "Common.Views.AutoCorrectDialog.textNumbered": "ລາຍການລຳດັບຕົວເລກແບບອັດຕະໂນມັດ", @@ -229,13 +236,22 @@ "Common.Views.AutoCorrectDialog.warnReset": "ທຸກໆການແກ້ໄຂອັດຕະໂນມັດທີ່ທ່ານເພີ່ມຈະຖືກລຶບອອກແລະສິ່ງທີ່ຖືກປ່ຽນແປງຈະຖືກນຳກັບມາໃຊ້ແບບເດີມ. ທ່ານຕ້ອງການດຳເນີນການຕໍ່ບໍ?", "Common.Views.AutoCorrectDialog.warnRestore": "ການປ້ອນຂໍ້ມູນທີ່ຖືກຕ້ອງ ສຳ ລັບ% 1 ຈະຖືກຕັ້ງຄ່າໃຫ້ກັບຄ່າເດີມ. ທ່ານຕ້ອງການ ດຳ ເນີນການຕໍ່ບໍ?", "Common.Views.Chat.textSend": "ສົ່ງ", + "Common.Views.Comments.mniAuthorAsc": "ລຽງ A ຫາ Z", + "Common.Views.Comments.mniAuthorDesc": "ລຽງ Z ເຖິງ A", + "Common.Views.Comments.mniDateAsc": "ເກົ່າທີ່ສຸດ", + "Common.Views.Comments.mniDateDesc": "ໃໝ່ລ່າສຸດ", + "Common.Views.Comments.mniFilterGroups": "ກັ່ນຕອງຕາມກຸ່ມ", + "Common.Views.Comments.mniPositionAsc": "ຈາກດ້ານເທິງ", + "Common.Views.Comments.mniPositionDesc": "ຈາກລຸ່ມ", "Common.Views.Comments.textAdd": "ເພີ່ມ", "Common.Views.Comments.textAddComment": "ເພີ່ມຄຳເຫັນ", "Common.Views.Comments.textAddCommentToDoc": "ເພີ່ມຄຳເຫັນໃສ່ເອກະສານ", "Common.Views.Comments.textAddReply": "ຕອບຄີືນ", + "Common.Views.Comments.textAll": "ທັງໝົດ", "Common.Views.Comments.textAnonym": " ແຂກ", "Common.Views.Comments.textCancel": "ຍົກເລີກ", "Common.Views.Comments.textClose": "ປິດ", + "Common.Views.Comments.textClosePanel": "ປິດຄຳເຫັນ", "Common.Views.Comments.textComments": "ຄຳເຫັນ", "Common.Views.Comments.textEdit": "ຕົກລົງ", "Common.Views.Comments.textEnterCommentHint": "ໃສ່ຄຳເຫັນຂອງທ່ານທີ່ນີ້", @@ -244,6 +260,8 @@ "Common.Views.Comments.textReply": "ຕອບ", "Common.Views.Comments.textResolve": "ແກ້ໄຂ", "Common.Views.Comments.textResolved": "ແກ້ໄຂແລ້ວ", + "Common.Views.Comments.textSort": "ຈັດຮຽງຄຳເຫັນ", + "Common.Views.Comments.textViewResolved": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເປີດຄໍາຄິດເຫັນຄືນ", "Common.Views.CopyWarningDialog.textDontShow": "ຢ່າສະແດງຂໍ້ຄວາມນີ້ອີກ", "Common.Views.CopyWarningDialog.textMsg": "ດຳເນີນການ ສຳເນົາ,ຕັດ ແລະ ວາງ", "Common.Views.CopyWarningDialog.textTitle": "ປະຕິບັດການ ສໍາເນົາ, ຕັດ ແລະ ວາງ", @@ -381,6 +399,8 @@ "Common.Views.ReviewChanges.txtHistory": "ປະຫວັດ", "Common.Views.ReviewChanges.txtMarkup": "ການປ່ຽນແປງທັງໝົດ{0}", "Common.Views.ReviewChanges.txtMarkupCap": "ໝາຍ", + "Common.Views.ReviewChanges.txtMarkupSimple": "ການປ່ຽນທັງໝົດ {0}
ບໍ່ມີປູມເປົ້າ", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "ມາກອັບເທົ່ານັ້ນ", "Common.Views.ReviewChanges.txtNext": "ທັດໄປ", "Common.Views.ReviewChanges.txtOff": "ປິດສະເພາະຂ້ອຍ", "Common.Views.ReviewChanges.txtOffGlobal": "ປິດສະເພາະຂ້ອຍ ແລະ ທຸກຄົນ", @@ -418,6 +438,11 @@ "Common.Views.ReviewPopover.textOpenAgain": "ເປີດໃໝ່ອີກຄັ້ງ", "Common.Views.ReviewPopover.textReply": "ຕອບ", "Common.Views.ReviewPopover.textResolve": "ແກ້ໄຂ", + "Common.Views.ReviewPopover.textViewResolved": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເປີດຄໍາຄິດເຫັນຄືນ", + "Common.Views.ReviewPopover.txtAccept": "ຍອມຮັບ", + "Common.Views.ReviewPopover.txtDeleteTip": "ລົບ", + "Common.Views.ReviewPopover.txtEditTip": "ແກ້ໄຂ", + "Common.Views.ReviewPopover.txtReject": "ປະຕິເສດ", "Common.Views.SaveAsDlg.textLoading": "ກຳລັງໂຫລດ", "Common.Views.SaveAsDlg.textTitle": "ແຟ້ມສຳລັບບັນທຶກ", "Common.Views.SelectFileDlg.textLoading": "ກຳລັງໂຫລດ", @@ -487,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "ເອກະສານຈະຖືກບັນທຶກເປັນຮູບແບບ ໃໝ່. ມັນຈະອະນຸຍາດໃຫ້ ນຳ ໃຊ້ທຸກລັກສະນະຂອງບັນນາທິການ, ແຕ່ອາດຈະສົ່ງຜົນກະທົບຕໍ່ການຈັດວາງເອກະສານ.
ໃຊ້ຕົວເລືອກ 'ຄວາມເຂົ້າກັນໄດ້' ຂອງການຕັ້ງຄ່າຂັ້ນສູງຖ້າທ່ານຕ້ອງການທີ່ຈະເຮັດໃຫ້ແຟ້ມຂໍ້ມູນເຂົ້າກັນໄດ້ກັບລຸ້ນ MS Word ເກົ່າ.", "DE.Controllers.LeftMenu.txtUntitled": "ບໍ່ມີຫົວຂໍ້", "DE.Controllers.LeftMenu.warnDownloadAs": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ທຸກລັກສະນະ ຍົກເວັ້ນຂໍ້ຄວາມຈະຫາຍໄປ.
ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດໍາເນີນຕໍ່?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "{0} ຂອງທ່ານຈະຖືກປ່ຽນເປັນຮູບແບບທີ່ສາມາດແກ້ໄຂໄດ້. ອັນນີ້ອາດຈະໃຊ້ເວລາໜ່ອຍໜຶ່ງ. ເອກະສານຜົນໄດ້ຮັບຈະຖືກປັບແຕ່ງເພື່ອໃຫ້ທ່ານສາມາດແກ້ໄຂຂໍ້ຄວາມໄດ້, ດັ່ງນັ້ນມັນອາດຈະບໍ່ຄືກັບ {0} ຕົ້ນສະບັບ, ໂດຍສະເພາະຖ້າໄຟລ໌ຕົ້ນສະບັບມີກຣາຟິກຫຼາຍ.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ ບາງຮູບແບບອາດຈະຫາຍໄປ.
ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດຳເນີນການຕໍ່?", "DE.Controllers.Main.applyChangesTextText": "ກຳລັງໂຫລດການປ່ຽນແປງ", "DE.Controllers.Main.applyChangesTitleText": "ກຳລັງໂຫລດການປ່ຽນແປງ", @@ -517,6 +543,7 @@ "DE.Controllers.Main.errorForceSave": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເບັນທຶກຝາຍ. ກະລຸນາໃຊ້ຕົວເລືອກ 'ດາວໂຫລດເປັນ' ເພື່ອບັນທຶກເອກະສານໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານຫຼືລອງໃໝ່ພາຍຫຼັງ.", "DE.Controllers.Main.errorKeyEncrypt": "ບໍ່ຮູ້ຄຳອະທິບາຍຫຼັກ", "DE.Controllers.Main.errorKeyExpire": "ລະຫັດໝົດອາຍຸ", + "DE.Controllers.Main.errorLoadingFont": "ຟອນບໍ່ໄດ້ຖືກໂຫລດ.
ກະລຸນາແອດມີນຂອງທ່ານ.", "DE.Controllers.Main.errorMailMergeLoadFile": "ບໍ່ສາມາດໂລດເອກະສານ,ກະລຸນາເລືອກເອກກະສານໃໝ່", "DE.Controllers.Main.errorMailMergeSaveFile": "ບໍ່ສາມາດລວມໄດ້", "DE.Controllers.Main.errorProcessSaveResult": "ບັນທຶກບຊ່ສຳເລັດ", @@ -576,6 +603,7 @@ "DE.Controllers.Main.textContactUs": "ຕິດຕໍ່ຜູ້ຂາຍ", "DE.Controllers.Main.textConvertEquation": "ສົມຜົນນີ້ໄດ້ຖືກສ້າງຂື້ນມາກັບບັນນາທິການສົມຜົນລຸ້ນເກົ່າເຊິ່ງບໍ່ໄດ້ຮັບການສະ ໜັບ ສະ ໜູນ ອີກຕໍ່ໄປ ເພື່ອດັດແກ້ມັນ, ປ່ຽນສົມຜົນໃຫ້ເປັນຮູບແບບ Office Math ML.
ປ່ຽນດຽວນີ້ບໍ?", "DE.Controllers.Main.textCustomLoader": "ກະລຸນາຮັບຊາບວ່າ ອີງຕາມຂໍ້ ກຳນົດຂອງໃບອະນຸຍາດ ທ່ານບໍ່ມີສິດທີ່ຈະປ່ຽນແປງ ການບັນຈຸ.
ກະລຸນາຕິດຕໍ່ຝ່າຍຂາຍຂອງພວກເຮົາເພື່ອຂໍໃບສະເໜີ.", + "DE.Controllers.Main.textDisconnect": "ຂາດການເຊື່ອມຕໍ່", "DE.Controllers.Main.textGuest": " ແຂກ", "DE.Controllers.Main.textHasMacros": "ເອກະສານບັນຈຸ ມາກໂຄ
ແບບອັດຕະໂນມັດ, ທ່ານຍັງຕ້ອງການດໍາເນີນງານ ມາກໂຄ ບໍ ", "DE.Controllers.Main.textLearnMore": "ຮຽນຮູ້ເພີ່ມຕື່ມ", @@ -583,6 +611,7 @@ "DE.Controllers.Main.textLongName": "ໃສ່ຊື່ທີ່ມີຄວາມຍາວນ້ອຍກວ່າ 128 ຕົວ", "DE.Controllers.Main.textNoLicenseTitle": "ຈໍານວນໃບອະນຸຍາດໄດ້ໃຊ້ຄົບແລ້ວ", "DE.Controllers.Main.textPaidFeature": "ຄວາມສາມາດ ທີຕ້ອງຊື້ເພີ່ມ", + "DE.Controllers.Main.textReconnect": "ການເຊື່ອມຕໍ່ຖືກກູ້ຄືນມາ", "DE.Controllers.Main.textRemember": "ຈື່ທາງເລືອກຂອງຂ້ອຍ", "DE.Controllers.Main.textRenameError": "ຕ້ອງບໍ່ມີຊື່ຜູ້ໃຊ້", "DE.Controllers.Main.textRenameLabel": "ໃສ່ຊື່ສຳລັບເປັນຜູ້ປະສານງານ", @@ -844,7 +873,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "ເກີນຂີດ ຈຳ ກັດຂະ ໜາດ ເອກະສານ.", "DE.Controllers.Main.uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ", "DE.Controllers.Main.uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ", - "DE.Controllers.Main.uploadImageSizeMessage": "ເກີນ ຈຳ ກັດຂະ ໜາດ ຂອງຮູບພາບ.", + "DE.Controllers.Main.uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.", "DE.Controllers.Main.uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ", "DE.Controllers.Main.uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", "DE.Controllers.Main.waitText": "ກະລຸນາລໍຖ້າ...", @@ -860,16 +889,19 @@ "DE.Controllers.Main.warnProcessRightsChange": "ທ່ານໄດ້ຖືກປະຕິເສດສິດໃນການແກ້ໄຂເອກະສານດັ່ງກ່າວ.", "DE.Controllers.Navigation.txtBeginning": "ຈຸດເລີ່ມຕົ້ນຂອງເອກະສານ", "DE.Controllers.Navigation.txtGotoBeginning": "ໄປຍັງຈຸດເລີ່ມຕົ້ນຂອງ", + "DE.Controllers.Statusbar.textDisconnect": "ຂາດເຊື່ອມຕໍ່
ກຳລັງພະຍາຍາມເຊື່ອມຕໍ່. ກະລຸນາກວດເບິ່ງການຕັ້ງຄ່າການເຊື່ອມຕໍ່.", "DE.Controllers.Statusbar.textHasChanges": "ການປ່ຽນແປງ ໃໝ່ ໄດ້ຖືກຕິດຕາມ", "DE.Controllers.Statusbar.textSetTrackChanges": "ທ່ານຢູ່ໃນໂໝດກຳລັງຕິດຕາມການປ່ຽນແປງ", "DE.Controllers.Statusbar.textTrackChanges": "ເອກະສານໄດ້ຖືກເປີດດ້ວຍຮູບແບບການຕິດຕາມການປ່ຽນແປງທີ່ຖືກເປີດໃຊ້ງານ", "DE.Controllers.Statusbar.tipReview": "ໝາຍການແກ້ໄຂ ", "DE.Controllers.Statusbar.zoomText": "ຂະຫຍາຍ {0}%", "DE.Controllers.Toolbar.confirmAddFontName": "ຕົວອັກສອນທີ່ທ່ານ ກຳ ລັງຈະບັນທຶກແມ່ນບໍ່ມີຢູ່ໃນອຸປະກອນປັດຈຸບັນ.
ຮູບແບບຕົວ ໜັງ ສືຈະຖືກສະແດງໂດຍໃຊ້ຕົວອັກສອນລະບົບໜຶ່ງ, ຕົວອັກສອນທີ່ບັນທຶກຈະຖືກ ນຳ ໃຊ້ໃນເວລາທີ່ມັນມີຢູ່.
ທ່ານຕ້ອງການສືບຕໍ່ບໍ ?", + "DE.Controllers.Toolbar.dataUrl": "ວາງ URL ຂໍ້ມູນ", "DE.Controllers.Toolbar.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", "DE.Controllers.Toolbar.textAccent": "ສຳນຽງ", "DE.Controllers.Toolbar.textBracket": "ວົງເລັບ", "DE.Controllers.Toolbar.textEmptyImgUrl": "ທ່ານຕ້ອງບອກທີຢູ່ຮູບ URL", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "ທ່ານຕ້ອງລະບຸ URL.", "DE.Controllers.Toolbar.textFontSizeErr": "ຄ່າທີ່ປ້ອນເຂົ້າບໍ່ຖືກຕ້ອງ.
ກະລຸນາໃສ່ຄ່າຕົວເລກລະຫວ່າງ 1 ເຖິງ 300", "DE.Controllers.Toolbar.textFraction": "ສ່ວນໜຶ່ງ", "DE.Controllers.Toolbar.textFunction": "ໜ້າທີ່", @@ -881,6 +913,7 @@ "DE.Controllers.Toolbar.textMatrix": "ແມ່ພິມ", "DE.Controllers.Toolbar.textOperator": "ຜູ້ປະຕິບັດງານ", "DE.Controllers.Toolbar.textRadical": "ຮາກຖານ", + "DE.Controllers.Toolbar.textRecentlyUsed": "ໃຊ້ລ່າສຸດ", "DE.Controllers.Toolbar.textScript": "ບົດເລື່ອງ,ບົດລະຄອນ ", "DE.Controllers.Toolbar.textSymbols": "ສັນຍາລັກ", "DE.Controllers.Toolbar.textTabForms": "ແບບຟອມ", @@ -1396,6 +1429,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "ລວມ ແຖວ", "DE.Views.DocumentHolder.moreText": "ຕົວແປອື່ນໆ ...", "DE.Views.DocumentHolder.noSpellVariantsText": "ບໍ່ມີຕົວແປ", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "ເຕືອນ", "DE.Views.DocumentHolder.originalSizeText": "ຂະໜາດຕົວຈິງ", "DE.Views.DocumentHolder.paragraphText": "ວັກ", "DE.Views.DocumentHolder.removeHyperlinkText": "ລົບ Hyperlink", @@ -1417,6 +1451,7 @@ "DE.Views.DocumentHolder.strSign": "ເຊັນ", "DE.Views.DocumentHolder.styleText": "ປະເພດທີ່ຄືຕັ້ນແບບ", "DE.Views.DocumentHolder.tableText": "ຕາຕະລາງ", + "DE.Views.DocumentHolder.textAccept": "ຍອມຮັບການປ່ຽນ", "DE.Views.DocumentHolder.textAlign": "ຈັດແນວ", "DE.Views.DocumentHolder.textArrange": "ຈັດແຈງ", "DE.Views.DocumentHolder.textArrangeBack": "ສົ່ງໄປເປັນພື້ນຫຼັງ", @@ -1435,6 +1470,7 @@ "DE.Views.DocumentHolder.textDistributeCols": "ກະຈາຍຖັນ", "DE.Views.DocumentHolder.textDistributeRows": "ກະຈາຍແຖວ", "DE.Views.DocumentHolder.textEditControls": "ການຕັ້ງຄ່າການຄວບຄຸມເນື້ອຫາ", + "DE.Views.DocumentHolder.textEditPoints": "ແກ້ໄຂຄະແນນ", "DE.Views.DocumentHolder.textEditWrapBoundary": "ແກ້ໄຂຫໍ່ເຂດແດນ", "DE.Views.DocumentHolder.textFlipH": "ດີດຕາມແນວນອນ ", "DE.Views.DocumentHolder.textFlipV": "ດີດຕາມແນວຕັງ", @@ -1450,6 +1486,7 @@ "DE.Views.DocumentHolder.textPaste": "ວາງ", "DE.Views.DocumentHolder.textPrevPage": "ໜ້າກອ່ນ", "DE.Views.DocumentHolder.textRefreshField": "ໂຫລດຄືນພາກສວ່ນ", + "DE.Views.DocumentHolder.textReject": "ປະຕິເສດການປ່ຽນແປງ", "DE.Views.DocumentHolder.textRemCheckBox": "ລຶບກ່ອງເຄື່ອງໝາຍ", "DE.Views.DocumentHolder.textRemComboBox": "ລຶບກອ່ງຜະສົມ", "DE.Views.DocumentHolder.textRemDropdown": "ລຶບອອກຈາກແຖບເລື່ອນ", @@ -1553,6 +1590,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "ເອົາຂໍ້ຈຳກັດອອກ", "DE.Views.DocumentHolder.txtRemoveAccentChar": "ລົບອັກສອນເນັ້ນສຽງ", "DE.Views.DocumentHolder.txtRemoveBar": "ລຶບແຖບ", + "DE.Views.DocumentHolder.txtRemoveWarning": "ທ່ານຕ້ອງການຕັດລາຍເຊັນນີ້ອອກບໍ່?
ຈະບໍ່ສາມາດກູ້ຄືນໄດ້", "DE.Views.DocumentHolder.txtRemScripts": "ລືບເນື້ອເລື່ອງອອກ", "DE.Views.DocumentHolder.txtRemSubscript": "ລົບອອກຈາກຕົວຫຍໍ້", "DE.Views.DocumentHolder.txtRemSuperscript": "ເອົາຕົວຫຍໍ້ອອກ (ລົບຕົວຫຍໍ້ອອກ)", @@ -1572,6 +1610,7 @@ "DE.Views.DocumentHolder.txtTopAndBottom": "ເທີງແລະລຸ່ມ", "DE.Views.DocumentHolder.txtUnderbar": "ຂີດກອ້ງຕົວໜັງສື", "DE.Views.DocumentHolder.txtUngroup": "ຍົກເລີກການຈັດກຸ່ມ", + "DE.Views.DocumentHolder.txtWarnUrl": "ການຄລິກລິ້ງນີ້ອາດເປັນອັນຕະລາຍຕໍ່ອຸປະກອນ ແລະຂໍ້ມູນຂອງທ່ານ.
ທ່ານແນ່ໃຈບໍ່ວ່າຕ້ອງການສືບຕໍ່?", "DE.Views.DocumentHolder.updateStyleText": "ປັບປຸງຮູບແບບ% 1", "DE.Views.DocumentHolder.vertAlignText": "ຈັດຕາມແນວຕັ້ງ", "DE.Views.DropcapSettingsAdvanced.strBorders": "ເສັ້ນຂອບ ແລະ ຕື່ມ", @@ -1623,6 +1662,8 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "ປິດລາຍການ", "DE.Views.FileMenu.btnCreateNewCaption": "ສ້າງໃໝ່", "DE.Views.FileMenu.btnDownloadCaption": "ດາວໂຫລດດ້ວຍ", + "DE.Views.FileMenu.btnExitCaption": " ປິດ", + "DE.Views.FileMenu.btnFileOpenCaption": "ເປີດ...", "DE.Views.FileMenu.btnHelpCaption": "ຊ່ວຍເຫຼືອ", "DE.Views.FileMenu.btnHistoryCaption": "ປະຫວັດ", "DE.Views.FileMenu.btnInfoCaption": "ຂໍ້ມູນເອກະສານ ...", @@ -1638,6 +1679,8 @@ "DE.Views.FileMenu.btnSettingsCaption": "ຕັ້ງ​ຄ່າ​ຂັ້ນ​ສູງ...", "DE.Views.FileMenu.btnToEditCaption": "ແກ້ໄຂເອກະສານ", "DE.Views.FileMenu.textDownload": "ດາວໂຫຼດ", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "ເອກະສານເປົ່າ", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "ສ້າງໃໝ່", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "ໃຊ້", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "ເພີ່ມຜູ້ຂຽນ", "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "ເພີ່ມຂໍ້ຄວາມ", @@ -1649,8 +1692,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "ກໍາລັງດາວໂຫຼດ...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "ແກ້ໄຂຄັ້ງລ້າສຸດໂດຍ", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "ການແກ້ໄຂຄັ້ງລ້າສຸດ", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "ບໍ່", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "ເຈົ້າຂອງ", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "ໜ້າ", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "ຂະໜາດໜ້າ", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "ວັກ", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "ສະຖານທີ", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "ບຸກຄົນທີ່ມີສິດ", @@ -1661,6 +1706,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "ຫົວຂໍ້", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "ອັບໂຫລດ", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "ຕົວໜັງສື", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "ແມ່ນແລ້ວ", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "ປ່ຽນສິດການເຂົ້າເຖິງ", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "ບຸກຄົນທີ່ມີສິດ", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", @@ -1690,6 +1736,7 @@ "DE.Views.FileMenuPanels.Settings.strPaste": "ຕັດ, ສຳເນົາ ແລະ ວາງ", "DE.Views.FileMenuPanels.Settings.strPasteButton": "ສະແດງປຸ່ມເລືອກວາງ ເມື່ອເນື້ອຫາໄດ້ຖືກຄັດຕິດ", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "ເປີດການສະແດງ ຄຳ ເຫັນທີ່ຖືກແກ້ໄຂ", + "DE.Views.FileMenuPanels.Settings.strReviewHover": "ຕິດຕາມການປ່ຽນແປງການສະແດງ", "DE.Views.FileMenuPanels.Settings.strShowChanges": "ການແກ້່ໄຂຮ່ວມກັນແບບ ReaL time", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "ເປີດຕົວເລືອກການກວດສອບການສະກົດຄໍາ", "DE.Views.FileMenuPanels.Settings.strStrict": "ເຂັ້ມງວດ, ໂຕເຂັ້ມ", @@ -1711,7 +1758,10 @@ "DE.Views.FileMenuPanels.Settings.txtAll": "ເບິ່ງ​ທັງ​ຫມົດ", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "ແກ້ໄຂຕົວເລືອກອັດຕະໂນມັດ", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "ໂຫມດເກັບຄ່າເລີ່ມຕົ້ນ", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "ສະແດງໂດຍການຄລິກ", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "ນຳເມົ້າໄປວ່າງແລ້ວຈະຄຳຂໍ້ຄວາມສະແດງຂື້ນ", "DE.Views.FileMenuPanels.Settings.txtCm": "ເຊັນຕິເມັດ", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "ເປີດໂໝດມືດ", "DE.Views.FileMenuPanels.Settings.txtFitPage": "ພໍດີຂອບ", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "ພໍດີຂອບ", "DE.Views.FileMenuPanels.Settings.txtInch": "ຫົວຫນ່ວຍວັດແທກ (ນີ້ວ)", @@ -1731,6 +1781,10 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "ສະແດງການແຈ້ງເຕືອນ", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "ປິດທຸກ ມາກໂຄ ດ້ວຍ ການແຈ້ງເຕືອນ", "DE.Views.FileMenuPanels.Settings.txtWin": "ເປັນວິນໂດ້", + "DE.Views.FormSettings.textAlways": "ສະເໝີ", + "DE.Views.FormSettings.textAspect": "ລັອກອັດຕາສ່ວນ", + "DE.Views.FormSettings.textAutofit": "ປັບພໍດີອັດຕະໂນມັດ", + "DE.Views.FormSettings.textBackgroundColor": "ສີພື້ນຫຼັງ", "DE.Views.FormSettings.textCheckbox": "ກວດກາກ່ອງ", "DE.Views.FormSettings.textColor": "ສີເສັ້ນຂອບ", "DE.Views.FormSettings.textComb": "ສະສາງຄຸນລັກສະນະ", @@ -1749,16 +1803,21 @@ "DE.Views.FormSettings.textKey": "ຄີ", "DE.Views.FormSettings.textLock": "ລັອກ", "DE.Views.FormSettings.textMaxChars": "ຈຳກັດຄຸນລັກສະນະ", + "DE.Views.FormSettings.textMulti": "ຊ່ອງຂໍ້ມູນຫຼາຍແຖວ", + "DE.Views.FormSettings.textNever": "ບໍ່ເຄີຍ", "DE.Views.FormSettings.textNoBorder": "ບໍ່ມີຂອບ", "DE.Views.FormSettings.textPlaceholder": "ຕົວຍຶດ", "DE.Views.FormSettings.textRadiobox": "ປຸ່ມຕົວເລືອກ", "DE.Views.FormSettings.textRequired": "ຕ້ອງການ", + "DE.Views.FormSettings.textScale": "ຂະຫຍາຍ", "DE.Views.FormSettings.textSelectImage": "ເລືອກຮູບພາບ", "DE.Views.FormSettings.textTip": "ເຄັດລັບ", "DE.Views.FormSettings.textTipAdd": "ເພີ່ມຄ່າໃໝ່", "DE.Views.FormSettings.textTipDelete": "ຄ່າການລົບ", "DE.Views.FormSettings.textTipDown": "ຍ້າຍ​ລົງ", "DE.Views.FormSettings.textTipUp": "ຍ້າຍຂຶ້ນ", + "DE.Views.FormSettings.textTooBig": "ຮູບພາບໃຫຍ່ເກີນໄປ", + "DE.Views.FormSettings.textTooSmall": "ຮູບພາບນ້ອຍເກີນໄປ", "DE.Views.FormSettings.textUnlock": "ປົດລັອກ", "DE.Views.FormSettings.textValue": "ຕົວເລືອກຄ່າ", "DE.Views.FormSettings.textWidth": "ຄວາມກວ້າງຂອງແຊວ", @@ -1769,13 +1828,17 @@ "DE.Views.FormsTab.capBtnNext": "ຟີວທັດໄປ", "DE.Views.FormsTab.capBtnPrev": "ຟີວກ່ອນຫນ້າ", "DE.Views.FormsTab.capBtnRadioBox": "ປຸ່ມຕົວເລືອກ", + "DE.Views.FormsTab.capBtnSaveForm": "ບັນທຶກເປັນຮູບແບບ", "DE.Views.FormsTab.capBtnSubmit": "ສົ່ງອອກ", "DE.Views.FormsTab.capBtnText": "ຊ່ອງຂໍ້ຄວາມ", "DE.Views.FormsTab.capBtnView": "ເບິ່ງແບບຟອມ", "DE.Views.FormsTab.textClear": "ລ້າງອອກ", "DE.Views.FormsTab.textClearFields": "ລຶບລ້າງຟີລດທັງໝົດ", + "DE.Views.FormsTab.textCreateForm": "ເພີ່ມຊ່ອງຂໍ້ມູນ ແລະ ສ້າງເອກະສານ FORM ທີ່ສາມາດບັບແຕ່ງໄດ້", + "DE.Views.FormsTab.textGotIt": "ໄດ້ແລ້ວ", "DE.Views.FormsTab.textHighlight": "ໄຮໄລການຕັ້ງຄ່າ", "DE.Views.FormsTab.textNoHighlight": "ບໍ່ມີຈຸດເດັ່ນ", + "DE.Views.FormsTab.textRequired": "ຕື່ມຂໍ້ມູນໃສ່ທຸກຊ່ອງທີ່ຕ້ອງການເພື່ອສົ່ງແບບຟອມ.", "DE.Views.FormsTab.textSubmited": "ສົ່ງແບບຟອມແລ້ວ", "DE.Views.FormsTab.tipCheckBox": "ເພີ່ມເຂົ້າໃນກ່ອງ Checkbox", "DE.Views.FormsTab.tipComboBox": "ເພີ່ມ combobox", @@ -1788,6 +1851,7 @@ "DE.Views.FormsTab.tipSubmit": "ສົ່ງອອກແບບຟອມ", "DE.Views.FormsTab.tipTextField": "ເພີ່ມຂໍ້ຄວາມໃນຊ່ອງ", "DE.Views.FormsTab.tipViewForm": "ຕື່ມຈາກໂໝດ", + "DE.Views.FormsTab.txtUntitled": "ບໍ່ມີຫົວຂໍ້", "DE.Views.HeaderFooterSettings.textBottomCenter": "ສູນກາງທາງລຸ່ມ", "DE.Views.HeaderFooterSettings.textBottomLeft": "ປູ່ມດ້ານຊ້າຍ", "DE.Views.HeaderFooterSettings.textBottomPage": "ທາງລຸ່ມສຸດຂອງໜ້າເຈ້ຍ", @@ -1825,6 +1889,7 @@ "DE.Views.ImageSettings.textCrop": "ຕັດເປັນສ່ວນ", "DE.Views.ImageSettings.textCropFill": "ຕື່ມ", "DE.Views.ImageSettings.textCropFit": "ພໍດີ", + "DE.Views.ImageSettings.textCropToShape": "ຂອບຕັດເພືອເປັນຮູ້ຮ່າງ", "DE.Views.ImageSettings.textEdit": "ແກ້ໄຂ", "DE.Views.ImageSettings.textEditObject": "ແກໄຂຈຸດປະສົງ", "DE.Views.ImageSettings.textFitMargins": "ພໍດີຂອບ", @@ -1839,6 +1904,7 @@ "DE.Views.ImageSettings.textHintFlipV": "ດີດຕາມແນວຕັ້ງ", "DE.Views.ImageSettings.textInsert": "ປ່ຽນແທນຮູບ", "DE.Views.ImageSettings.textOriginalSize": "ຂະໜາດຕົວຈິງ", + "DE.Views.ImageSettings.textRecentlyUsed": "ໃຊ້ລ່າສຸດ", "DE.Views.ImageSettings.textRotate90": "ໝຸນ 90°", "DE.Views.ImageSettings.textRotation": "ການໝຸນ", "DE.Views.ImageSettings.textSize": "ຂະໜາດ", @@ -2054,6 +2120,7 @@ "DE.Views.Navigation.txtDemote": "ລົດລະດັບ", "DE.Views.Navigation.txtEmpty": "ບໍ່ມີຫົວຂໍ້ໃນເອກະສານ.
ນຳໃຊ້ຮູບແບບຫົວຂໍ້ໃສ່ຂໍ້ຄວາມເພື່ອໃຫ້ມັນປາກົດຢູ່ໃນຕາຕະລາງເນື້ອໃນ.", "DE.Views.Navigation.txtEmptyItem": "ພື້ນທີ່ຫວ່າງສ່ວນຫົວ", + "DE.Views.Navigation.txtEmptyViewer": "ບໍ່ມີຫົວຂໍ້ໃນເອກະສານ.", "DE.Views.Navigation.txtExpand": "ຂະຫຍາຍສ່ວນທັງໝົດ", "DE.Views.Navigation.txtExpandToLevel": "ຂະຫຍາຍໄປຍັງລະດັບ", "DE.Views.Navigation.txtHeadingAfter": "ຫົວຂໍ້ ໃໝ່ ຫລັງຈາກ", @@ -2109,6 +2176,11 @@ "DE.Views.PageSizeDialog.textTitle": "ຂະໜາດໜ້າ", "DE.Views.PageSizeDialog.textWidth": "ລວງກວ້າງ", "DE.Views.PageSizeDialog.txtCustom": "ລູກຄ້າ", + "DE.Views.PageThumbnails.textClosePanel": "ປິດຮູບຫຍໍ້ຂອງໜ້າ", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "ໝາຍສີໃສ່ສ່ວນທີ່ເຫັນຂອງໜ້າ", + "DE.Views.PageThumbnails.textPageThumbnails": "ຮູບຫຍໍ້ໜ້າ", + "DE.Views.PageThumbnails.textThumbnailsSettings": "ການຕັ້ງຄ່າຮູບຕົວຢ່າງ", + "DE.Views.PageThumbnails.textThumbnailsSize": "ຂະໜາດຕົວຢ່າງ", "DE.Views.ParagraphSettings.strIndent": "ຫຍໍ້ຫນ້າ", "DE.Views.ParagraphSettings.strIndentsLeftText": "ຊ້າຍ", "DE.Views.ParagraphSettings.strIndentsRightText": "ຂວາ", @@ -2244,6 +2316,7 @@ "DE.Views.ShapeSettings.textPatternFill": "ຮູບແບບ", "DE.Views.ShapeSettings.textPosition": "ຕໍາແໜ່ງ", "DE.Views.ShapeSettings.textRadial": "ລັງສີ", + "DE.Views.ShapeSettings.textRecentlyUsed": "ໃຊ້ລ່າສຸດ", "DE.Views.ShapeSettings.textRotate90": "ໝຸນ 90°", "DE.Views.ShapeSettings.textRotation": "ການໝຸນ", "DE.Views.ShapeSettings.textSelectImage": "ເລືອກຮູບພາບ", @@ -2294,6 +2367,8 @@ "DE.Views.Statusbar.pageIndexText": "ໜ້າ {0} ຂອງ {1}", "DE.Views.Statusbar.tipFitPage": "ພໍດີຂອບ", "DE.Views.Statusbar.tipFitWidth": "ພໍດີຂອບ", + "DE.Views.Statusbar.tipHandTool": "ເຄື່ອງມືນຳໃຊ້", + "DE.Views.Statusbar.tipSelectTool": "ເລືອກເຄື່ອງມື", "DE.Views.Statusbar.tipSetLang": "ກຳນົດພາສາຂໍ້ຄວາມ", "DE.Views.Statusbar.tipZoomFactor": "ຂະຫຍາຍ ", "DE.Views.Statusbar.tipZoomIn": "ຊຸມເຂົ້າ", @@ -2524,7 +2599,7 @@ "DE.Views.Toolbar.capBtnInsControls": "ການຄວບຄຸມທັງໝົດເນື້ອຫາ", "DE.Views.Toolbar.capBtnInsDropcap": "ຝາຫຼົມ", "DE.Views.Toolbar.capBtnInsEquation": "ສົມຜົນ", - "DE.Views.Toolbar.capBtnInsHeader": "ສ່ວນຫົວ/ສ່ວນພື້ນ", + "DE.Views.Toolbar.capBtnInsHeader": "ສ່ວນຫົວ/ສ່ວນທ້າຍ", "DE.Views.Toolbar.capBtnInsImage": "ຮູບພາບ", "DE.Views.Toolbar.capBtnInsPagebreak": "ແຍກຫນ້າ", "DE.Views.Toolbar.capBtnInsShape": "ຮູບຮ່າງ", @@ -2550,6 +2625,9 @@ "DE.Views.Toolbar.mniEditFooter": "ແກ້ໄຂສ່ວນຂອບລູ່ມ", "DE.Views.Toolbar.mniEditHeader": "ແກ້ໄຂຫົວຂໍ້", "DE.Views.Toolbar.mniEraseTable": "ລຶບຕາຕະລາງ", + "DE.Views.Toolbar.mniFromFile": "ຈາກຟາຍ", + "DE.Views.Toolbar.mniFromStorage": "ຈາກບ່ອນເກັບ", + "DE.Views.Toolbar.mniFromUrl": "ຈາກ URL", "DE.Views.Toolbar.mniHiddenBorders": "ເຊື່ອງຂອບຕາຕະລາງ", "DE.Views.Toolbar.mniHiddenChars": "ບໍ່ມີຕົວອັກສອນພິມ", "DE.Views.Toolbar.mniHighlightControls": "ໄຮໄລການຕັ້ງຄ່າ", @@ -2632,6 +2710,7 @@ "DE.Views.Toolbar.textTabLinks": "ເອກະສານອ້າງອີງ", "DE.Views.Toolbar.textTabProtect": "ການປ້ອງກັນ", "DE.Views.Toolbar.textTabReview": "ກວດຄືນ", + "DE.Views.Toolbar.textTabView": "ມຸມມອງ", "DE.Views.Toolbar.textTitleError": "ຂໍ້ຜິດພາດ", "DE.Views.Toolbar.textToCurrent": "ເຖິງ ຕຳ ແໜ່ງ ປະຈຸບັນ", "DE.Views.Toolbar.textTop": "ທາງເທີງ:", @@ -2677,7 +2756,18 @@ "DE.Views.Toolbar.tipLineSpace": "ເສັ້ນຂອບວັກ", "DE.Views.Toolbar.tipMailRecepients": "ລວມເມວເຂົ້າກັນ", "DE.Views.Toolbar.tipMarkers": "ຂີດໜ້າ", + "DE.Views.Toolbar.tipMarkersArrow": "ລູກສອນ", + "DE.Views.Toolbar.tipMarkersCheckmark": "ເຄື່ອງໝາຍຖືກ ສະແດງຫົວຂໍ້", + "DE.Views.Toolbar.tipMarkersDash": "ຫົວແຫລມ", + "DE.Views.Toolbar.tipMarkersFRhombus": "ເພີ່ມຮູບ 5 ຫລຽມ", + "DE.Views.Toolbar.tipMarkersFRound": "ເພີ່ມຮູບວົງມົນ", + "DE.Views.Toolbar.tipMarkersFSquare": "ເພີ່ມຮູບສີ່ຫຼ່ຽມ", + "DE.Views.Toolbar.tipMarkersHRound": "ແບບຮອບກວ້າງ", + "DE.Views.Toolbar.tipMarkersStar": "ຮູບແບບດາວ", + "DE.Views.Toolbar.tipMultiLevelNumbered": "ຮູບແບບສັນຍາລັກຫຍໍ້ໜ້າຫຼາຍລະດັບ", "DE.Views.Toolbar.tipMultilevels": "ລາຍການຫລາຍລະດັບ", + "DE.Views.Toolbar.tipMultiLevelSymbols": "ຮູບແບບສັນຍາລັກຫຼາຍລະດັບ", + "DE.Views.Toolbar.tipMultiLevelVarious": "ຮູບແບບຕົວເລກຕ່າງໆຫຼາຍລະດັບ", "DE.Views.Toolbar.tipNumbers": "ການນັບ", "DE.Views.Toolbar.tipPageBreak": "ເພີ່ມໜ້າ ຫຼື ຢຸດມາດຕາ", "DE.Views.Toolbar.tipPageMargins": "ຂອບໜ້າ", @@ -2715,6 +2805,7 @@ "DE.Views.Toolbar.txtScheme2": "ໂທນສີເທົາ", "DE.Views.Toolbar.txtScheme20": "ໃນເມືອງ", "DE.Views.Toolbar.txtScheme21": "Verve", + "DE.Views.Toolbar.txtScheme22": "ຫ້ອງການໃໝ່", "DE.Views.Toolbar.txtScheme3": "ເອເພັກສ", "DE.Views.Toolbar.txtScheme4": "ມຸມມອງ", "DE.Views.Toolbar.txtScheme5": "ປະຫວັດ", @@ -2722,7 +2813,15 @@ "DE.Views.Toolbar.txtScheme7": "ຄວາມເທົ່າທຽມກັນ", "DE.Views.Toolbar.txtScheme8": "ຂະບວນການ", "DE.Views.Toolbar.txtScheme9": "ໂຮງຫລໍ່", + "DE.Views.ViewTab.textAlwaysShowToolbar": "ສະແດງແຖບເຄື່ອງມືສະເໝີ", + "DE.Views.ViewTab.textDarkDocument": "ເອກະສານສີດຳ", + "DE.Views.ViewTab.textFitToPage": "ພໍດີຂອບ", + "DE.Views.ViewTab.textFitToWidth": "ຄວາມກວ້າງພໍດີ", "DE.Views.ViewTab.textInterfaceTheme": "ຮູບແບບການສະແດງຜົນ", + "DE.Views.ViewTab.textNavigation": "ການນຳທາງ", + "DE.Views.ViewTab.textRulers": "ໄມ້ບັນທັດ", + "DE.Views.ViewTab.textStatusBar": "ຮູບແບບບາ", + "DE.Views.ViewTab.textZoom": "ຂະຫຍາຍ ເຂົ້າ-ອອກ", "DE.Views.WatermarkSettingsDialog.textAuto": "ອັດຕະໂນມັດ", "DE.Views.WatermarkSettingsDialog.textBold": "ໂຕເຂັມ ", "DE.Views.WatermarkSettingsDialog.textColor": "ສີຂໍ້ຄວາມ", diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index 5395c04b3..736e66846 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -1320,6 +1320,7 @@ "DE.Views.Navigation.txtDemote": "Pazemināt", "DE.Views.Navigation.txtEmpty": "Šajā dokumentā nav virsrakstu", "DE.Views.Navigation.txtEmptyItem": "Tukšs virsraksts", + "DE.Views.Navigation.txtEmptyViewer": "Šajā dokumentā nav virsrakstu.", "DE.Views.Navigation.txtExpand": "Parādīt visas", "DE.Views.Navigation.txtExpandToLevel": "Parādīt līdz līmenim", "DE.Views.Navigation.txtHeadingAfter": "Jauns virsraksts pēc", @@ -1728,7 +1729,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "Parastie (ASV standarts)", "DE.Views.Toolbar.textMarginsWide": "Wide", - "DE.Views.Toolbar.textNewColor": "Pievienot jaunu krāsu", + "DE.Views.Toolbar.textNewColor": "Pievienot jauno krāsu", "DE.Views.Toolbar.textNextPage": "Next Page", "DE.Views.Toolbar.textNone": "None", "DE.Views.Toolbar.textOddPage": "Odd Page", diff --git a/apps/documenteditor/main/locale/nb.json b/apps/documenteditor/main/locale/nb.json index a238e6489..47f25a79a 100644 --- a/apps/documenteditor/main/locale/nb.json +++ b/apps/documenteditor/main/locale/nb.json @@ -34,6 +34,7 @@ "Common.define.chartData.textCharts": "Diagrammer", "Common.define.chartData.textColumn": "Kolonne", "Common.UI.ButtonColored.textAutoColor": "Automatisk", + "Common.UI.ButtonColored.textNewColor": "Legg til ny egendefinert farge", "Common.UI.Calendar.textApril": "april", "Common.UI.Calendar.textAugust": "august", "Common.UI.Calendar.textDecember": "desember", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index dba5ba8ff..d4d84b978 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Maak een kopie", "Common.Translation.warnFileLockedBtnView": "Open voor lezen", "Common.UI.ButtonColored.textAutoColor": "Automatisch", - "Common.UI.ButtonColored.textNewColor": "Voeg nieuwe aangepaste kleur toe", + "Common.UI.ButtonColored.textNewColor": "Nieuwe aangepaste kleur", "Common.UI.Calendar.textApril": "april", "Common.UI.Calendar.textAugust": "augustus", "Common.UI.Calendar.textDecember": "december", @@ -915,9 +915,6 @@ "DE.Controllers.Toolbar.textSymbols": "Symbolen", "DE.Controllers.Toolbar.textTabForms": "Formulieren", "DE.Controllers.Toolbar.textWarning": "Waarschuwing", - "DE.Controllers.Toolbar.tipMarkersArrow": "Pijltjes", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Vinkjes", - "DE.Controllers.Toolbar.tipMarkersDash": "Streepjes", "DE.Controllers.Toolbar.txtAccent_Accent": "Aigu", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Pijl van rechts naar links boven", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Pijl links boven", @@ -1519,9 +1516,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Inhoudsopgave verversen", "DE.Views.DocumentHolder.textWrap": "Terugloopstijl", "DE.Views.DocumentHolder.tipIsLocked": "Dit element wordt op dit moment bewerkt door een andere gebruiker.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Pijltjes", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Vinkjes", - "DE.Views.DocumentHolder.tipMarkersDash": "Streepjes", "DE.Views.DocumentHolder.toDictionaryText": "Toevoegen aan woordenboek", "DE.Views.DocumentHolder.txtAddBottom": "Onderrand toevoegen", "DE.Views.DocumentHolder.txtAddFractionBar": "Deelteken toevoegen", @@ -2119,6 +2113,7 @@ "DE.Views.Navigation.txtDemote": "Degraderen", "DE.Views.Navigation.txtEmpty": "Er zijn geen koppen in het document.
Pas een kopstijl toe op de tekst zodat deze in de inhoudsopgave wordt weergegeven.", "DE.Views.Navigation.txtEmptyItem": "Lege koptekst", + "DE.Views.Navigation.txtEmptyViewer": "Er zijn geen koppen in het document.", "DE.Views.Navigation.txtExpand": "Alle uitbreiden", "DE.Views.Navigation.txtExpandToLevel": "Uitbreiden tot niveau", "DE.Views.Navigation.txtHeadingAfter": "Nieuwe kop na", @@ -2671,7 +2666,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normaal", "DE.Views.Toolbar.textMarginsUsNormal": "Normaal (VS)", "DE.Views.Toolbar.textMarginsWide": "Breed", - "DE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "DE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur", "DE.Views.Toolbar.textNextPage": "Volgende pagina", "DE.Views.Toolbar.textNoHighlight": "Geen accentuering", "DE.Views.Toolbar.textNone": "Geen", @@ -2751,6 +2746,9 @@ "DE.Views.Toolbar.tipLineSpace": "Regelafstand alinea", "DE.Views.Toolbar.tipMailRecepients": "Afdruk samenvoegen", "DE.Views.Toolbar.tipMarkers": "Opsommingstekens", + "DE.Views.Toolbar.tipMarkersArrow": "Pijltjes", + "DE.Views.Toolbar.tipMarkersCheckmark": "Vinkjes", + "DE.Views.Toolbar.tipMarkersDash": "Streepjes", "DE.Views.Toolbar.tipMultilevels": "Lijst met meerdere niveaus", "DE.Views.Toolbar.tipNumbers": "Nummering", "DE.Views.Toolbar.tipPageBreak": "Pagina- of sectie-einde invoegen", diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index 49c8f9be5..4a6a17c38 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Utwórz kopię", "Common.Translation.warnFileLockedBtnView": "Otwarte do oglądania", "Common.UI.ButtonColored.textAutoColor": "Automatyczny", - "Common.UI.ButtonColored.textNewColor": "Dodaj nowy niestandardowy kolor", + "Common.UI.ButtonColored.textNewColor": "Nowy niestandardowy kolor", "Common.UI.Calendar.textApril": "Kwiecień", "Common.UI.Calendar.textAugust": "Sierpień", "Common.UI.Calendar.textDecember": "Grudzień", @@ -2100,6 +2100,7 @@ "DE.Views.Navigation.txtDemote": "Zdegradować", "DE.Views.Navigation.txtEmpty": "W dokumencie nie ma nagłówków.
Zastosuj styl nagłówka do tekstu, aby pojawił się w spisie treści.", "DE.Views.Navigation.txtEmptyItem": "Pusty nagłówek", + "DE.Views.Navigation.txtEmptyViewer": "W dokumencie nie ma nagłówków.", "DE.Views.Navigation.txtExpand": "Rozwiń wszystko", "DE.Views.Navigation.txtExpandToLevel": "Rozwiń do poziomu", "DE.Views.Navigation.txtHeadingAfter": "Nowy nagłówek po", diff --git a/apps/documenteditor/main/locale/pt-PT.json b/apps/documenteditor/main/locale/pt-PT.json new file mode 100644 index 000000000..2ab1ad0a0 --- /dev/null +++ b/apps/documenteditor/main/locale/pt-PT.json @@ -0,0 +1,2854 @@ +{ + "Common.Controllers.Chat.notcriticalErrorTitle": "Aviso", + "Common.Controllers.Chat.textEnterMessage": "Insira sua mensagem aqui", + "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anónimo", + "Common.Controllers.ExternalDiagramEditor.textClose": "Fechar", + "Common.Controllers.ExternalDiagramEditor.warningText": "O objeto foi desativado porque está a ser editado por outro utilizador.", + "Common.Controllers.ExternalDiagramEditor.warningTitle": "Aviso", + "Common.Controllers.ExternalMergeEditor.textAnonymous": "Anónimo", + "Common.Controllers.ExternalMergeEditor.textClose": "Fechar", + "Common.Controllers.ExternalMergeEditor.warningText": "O objeto foi desativado porque está a ser editado por outro utilizador.", + "Common.Controllers.ExternalMergeEditor.warningTitle": "Aviso", + "Common.Controllers.History.notcriticalErrorTitle": "Aviso", + "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "A fim de comparar os documentos, todas as alterações neles verificadas serão consideradas como tendo sido aceites. Deseja continuar?", + "Common.Controllers.ReviewChanges.textAtLeast": "no mínimo", + "Common.Controllers.ReviewChanges.textAuto": "auto", + "Common.Controllers.ReviewChanges.textBaseline": "Linha base", + "Common.Controllers.ReviewChanges.textBold": "Bold", + "Common.Controllers.ReviewChanges.textBreakBefore": "Quebra de página antes", + "Common.Controllers.ReviewChanges.textCaps": "Tudo em maiúsculas", + "Common.Controllers.ReviewChanges.textCenter": "Alinhar ao centro", + "Common.Controllers.ReviewChanges.textChar": "Nível de carácter", + "Common.Controllers.ReviewChanges.textChart": "Gráfico", + "Common.Controllers.ReviewChanges.textColor": "Cor do tipo de letra", + "Common.Controllers.ReviewChanges.textContextual": "Não adicionar intervalo entre parágrafos do mesmo estilo", + "Common.Controllers.ReviewChanges.textDeleted": "Eliminado:", + "Common.Controllers.ReviewChanges.textDStrikeout": "Tachado duplo", + "Common.Controllers.ReviewChanges.textEquation": "Equação", + "Common.Controllers.ReviewChanges.textExact": "exatamente", + "Common.Controllers.ReviewChanges.textFirstLine": "Primeira linha", + "Common.Controllers.ReviewChanges.textFontSize": "Tamanho do tipo de letra", + "Common.Controllers.ReviewChanges.textFormatted": "Formatado", + "Common.Controllers.ReviewChanges.textHighlight": "Cor de destaque", + "Common.Controllers.ReviewChanges.textImage": "Imagem", + "Common.Controllers.ReviewChanges.textIndentLeft": "Avanço à esquerda", + "Common.Controllers.ReviewChanges.textIndentRight": "Avanço à direita", + "Common.Controllers.ReviewChanges.textInserted": "Inserido:", + "Common.Controllers.ReviewChanges.textItalic": "Itálico", + "Common.Controllers.ReviewChanges.textJustify": "Alinhar justificado", + "Common.Controllers.ReviewChanges.textKeepLines": "Manter linhas juntas", + "Common.Controllers.ReviewChanges.textKeepNext": "Manter com seguinte", + "Common.Controllers.ReviewChanges.textLeft": "Alinhar à esquerda", + "Common.Controllers.ReviewChanges.textLineSpacing": "Espaçamento entre linhas:", + "Common.Controllers.ReviewChanges.textMultiple": "múltiplo", + "Common.Controllers.ReviewChanges.textNoBreakBefore": "Sem quebra de página antes", + "Common.Controllers.ReviewChanges.textNoContextual": "Adicionar intervalo entre parágrafos com o mesmo estilo", + "Common.Controllers.ReviewChanges.textNoKeepLines": "Não manter linhas juntas", + "Common.Controllers.ReviewChanges.textNoKeepNext": "Não manter com seguinte", + "Common.Controllers.ReviewChanges.textNot": "Não", + "Common.Controllers.ReviewChanges.textNoWidow": "Não controlar órfãos", + "Common.Controllers.ReviewChanges.textNum": "Alterar numeração", + "Common.Controllers.ReviewChanges.textOff": "{0} já não está a utilizar O Registo de Alterações.", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} Registar Alterações desativado para todos.", + "Common.Controllers.ReviewChanges.textOn": "{0} está agora a utilizar o Registar Alterações.", + "Common.Controllers.ReviewChanges.textOnGlobal": "{0} Registar Alterações ativado para todos.", + "Common.Controllers.ReviewChanges.textParaDeleted": "Parágrafo eliminado", + "Common.Controllers.ReviewChanges.textParaFormatted": "Parágrafo formatado", + "Common.Controllers.ReviewChanges.textParaInserted": "Parágrafo inserido", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Movido para baixo:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Movido para cima:", + "Common.Controllers.ReviewChanges.textParaMoveTo": "Movido:", + "Common.Controllers.ReviewChanges.textPosition": "Posição", + "Common.Controllers.ReviewChanges.textRight": "Alinhar à direita", + "Common.Controllers.ReviewChanges.textShape": "Forma", + "Common.Controllers.ReviewChanges.textShd": "Cor de fundo", + "Common.Controllers.ReviewChanges.textShow": "Mostrar alterações em", + "Common.Controllers.ReviewChanges.textSmallCaps": "Versaletes", + "Common.Controllers.ReviewChanges.textSpacing": "Espaçamento", + "Common.Controllers.ReviewChanges.textSpacingAfter": "Espaçamento depois", + "Common.Controllers.ReviewChanges.textSpacingBefore": "Espaçamento antes", + "Common.Controllers.ReviewChanges.textStrikeout": "Riscado", + "Common.Controllers.ReviewChanges.textSubScript": "Subscrito", + "Common.Controllers.ReviewChanges.textSuperScript": "Sobrescrito", + "Common.Controllers.ReviewChanges.textTableChanged": "Definições de tabela alteradas", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "Linhas de tabela adicionadas", + "Common.Controllers.ReviewChanges.textTableRowsDel": "Linhas de tabela eliminadas", + "Common.Controllers.ReviewChanges.textTabs": "Alterar separadores", + "Common.Controllers.ReviewChanges.textTitleComparison": "Definições de comparação", + "Common.Controllers.ReviewChanges.textUnderline": "Sublinhado", + "Common.Controllers.ReviewChanges.textUrl": "Colar de um URL", + "Common.Controllers.ReviewChanges.textWidow": "Controlo de órfãos", + "Common.Controllers.ReviewChanges.textWord": "Nível de palavra", + "Common.define.chartData.textArea": "Área", + "Common.define.chartData.textAreaStacked": "Área empilhada", + "Common.define.chartData.textAreaStackedPer": "Área 100% alinhada", + "Common.define.chartData.textBar": "Barra", + "Common.define.chartData.textBarNormal": "Coluna agrupada", + "Common.define.chartData.textBarNormal3d": "Coluna 3-D agrupada", + "Common.define.chartData.textBarNormal3dPerspective": "Coluna 3-D", + "Common.define.chartData.textBarStacked": "Coluna empilhada", + "Common.define.chartData.textBarStacked3d": "Coluna 3-D agrupada", + "Common.define.chartData.textBarStackedPer": "Coluna 100% alinhada", + "Common.define.chartData.textBarStackedPer3d": "Coluna 3-D 100% alinhada", + "Common.define.chartData.textCharts": "Gráficos", + "Common.define.chartData.textColumn": "Coluna", + "Common.define.chartData.textCombo": "Combinação", + "Common.define.chartData.textComboAreaBar": "Área empilhada – coluna agrupada", + "Common.define.chartData.textComboBarLine": "Coluna agrupada – linha", + "Common.define.chartData.textComboBarLineSecondary": "Coluna agrupada – linha num eixo secundário", + "Common.define.chartData.textComboCustom": "Combinação personalizada", + "Common.define.chartData.textDoughnut": "Rosca", + "Common.define.chartData.textHBarNormal": "Barra Agrupada", + "Common.define.chartData.textHBarNormal3d": "Barra 3-D agrupada", + "Common.define.chartData.textHBarStacked": "Barra empilhada", + "Common.define.chartData.textHBarStacked3d": "Barra 3-D agrupada", + "Common.define.chartData.textHBarStackedPer": "Barra 100% alinhada", + "Common.define.chartData.textHBarStackedPer3d": "Barra 3-D 100% alinhada", + "Common.define.chartData.textLine": "Linha", + "Common.define.chartData.textLine3d": "Linha 3-D", + "Common.define.chartData.textLineMarker": "Linha com marcadores", + "Common.define.chartData.textLineStacked": "Linha empilhada", + "Common.define.chartData.textLineStackedMarker": "Linha empilhada com marcadores", + "Common.define.chartData.textLineStackedPer": "100% Alinhado", + "Common.define.chartData.textLineStackedPerMarker": "Alinhado com 100%", + "Common.define.chartData.textPie": "Tarte", + "Common.define.chartData.textPie3d": "Tarte 3-D", + "Common.define.chartData.textPoint": "XY (gráfico de dispersão)", + "Common.define.chartData.textScatter": "Dispersão", + "Common.define.chartData.textScatterLine": "Dispersão com Linhas Retas", + "Common.define.chartData.textScatterLineMarker": "Dispersão com Linhas e Marcadores Retos", + "Common.define.chartData.textScatterSmooth": "Dispersão com Linhas Suaves", + "Common.define.chartData.textScatterSmoothMarker": "Dispersão com Linhas Suaves e Marcadores", + "Common.define.chartData.textStock": "Gráfico de ações", + "Common.define.chartData.textSurface": "Superfície", + "Common.Translation.warnFileLocked": "Não pode editar o ficheiro porque este está a ser editado por outra aplicação.", + "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", + "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", + "Common.UI.ButtonColored.textAutoColor": "Automático", + "Common.UI.ButtonColored.textNewColor": "Adicionar nova cor personalizada", + "Common.UI.Calendar.textApril": "Abril", + "Common.UI.Calendar.textAugust": "Agosto", + "Common.UI.Calendar.textDecember": "Dezembro", + "Common.UI.Calendar.textFebruary": "Fevereiro", + "Common.UI.Calendar.textJanuary": "Janeiro", + "Common.UI.Calendar.textJuly": "Julho", + "Common.UI.Calendar.textJune": "Junho", + "Common.UI.Calendar.textMarch": "Março", + "Common.UI.Calendar.textMay": "Mai", + "Common.UI.Calendar.textMonths": "Meses", + "Common.UI.Calendar.textNovember": "Novembro", + "Common.UI.Calendar.textOctober": "Outubro", + "Common.UI.Calendar.textSeptember": "Setembro", + "Common.UI.Calendar.textShortApril": "Abr", + "Common.UI.Calendar.textShortAugust": "Ago", + "Common.UI.Calendar.textShortDecember": "Dez", + "Common.UI.Calendar.textShortFebruary": "Fev", + "Common.UI.Calendar.textShortFriday": "Sex", + "Common.UI.Calendar.textShortJanuary": "Jan", + "Common.UI.Calendar.textShortJuly": "Jul", + "Common.UI.Calendar.textShortJune": "Jun", + "Common.UI.Calendar.textShortMarch": "Mar", + "Common.UI.Calendar.textShortMay": "Maio", + "Common.UI.Calendar.textShortMonday": "Seg", + "Common.UI.Calendar.textShortNovember": "Nov", + "Common.UI.Calendar.textShortOctober": "Out", + "Common.UI.Calendar.textShortSaturday": "Sáb", + "Common.UI.Calendar.textShortSeptember": "Set", + "Common.UI.Calendar.textShortSunday": "Dom", + "Common.UI.Calendar.textShortThursday": "Qui", + "Common.UI.Calendar.textShortTuesday": "Ter", + "Common.UI.Calendar.textShortWednesday": "Qua", + "Common.UI.Calendar.textYears": "Anos", + "Common.UI.ComboBorderSize.txtNoBorders": "Sem contornos", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem contornos", + "Common.UI.ComboDataView.emptyComboText": "Sem estilos", + "Common.UI.ExtendedColorDialog.addButtonText": "Adicionar", + "Common.UI.ExtendedColorDialog.textCurrent": "Atual", + "Common.UI.ExtendedColorDialog.textHexErr": "O valor inserido não está correto.
Introduza um valor entre 000000 e FFFFFF.", + "Common.UI.ExtendedColorDialog.textNew": "Novo", + "Common.UI.ExtendedColorDialog.textRGBErr": "O valor inserido não está correto.
Introduza um valor numérico entre 0 e 255.", + "Common.UI.HSBColorPicker.textNoColor": "Sem cor", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar palavra-passe", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar palavra-passe", + "Common.UI.SearchDialog.textHighlight": "Destacar resultados", + "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", + "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto de substituição", + "Common.UI.SearchDialog.textSearchStart": "Insira seu texto aqui", + "Common.UI.SearchDialog.textTitle": "Localizar e substituir", + "Common.UI.SearchDialog.textTitle2": "Localizar", + "Common.UI.SearchDialog.textWholeWords": "Palavras inteiras apenas", + "Common.UI.SearchDialog.txtBtnHideReplace": "Ocultar substituição", + "Common.UI.SearchDialog.txtBtnReplace": "Substituir", + "Common.UI.SearchDialog.txtBtnReplaceAll": "Substituir tudo", + "Common.UI.SynchronizeTip.textDontShow": "Não exibir esta mensagem novamente", + "Common.UI.SynchronizeTip.textSynchronize": "O documento foi alterado por outro utilizador.
Clique para guardar as suas alterações e recarregar o documento.", + "Common.UI.ThemeColorPalette.textStandartColors": "Cores padrão", + "Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema", + "Common.UI.Themes.txtThemeClassicLight": "Clássico claro", + "Common.UI.Themes.txtThemeDark": "Escuro", + "Common.UI.Themes.txtThemeLight": "Claro", + "Common.UI.Window.cancelButtonText": "Cancelar", + "Common.UI.Window.closeButtonText": "Fechar", + "Common.UI.Window.noButtonText": "Não", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Confirmação", + "Common.UI.Window.textDontShow": "Não exibir esta mensagem novamente", + "Common.UI.Window.textError": "Erro", + "Common.UI.Window.textInformation": "Informações", + "Common.UI.Window.textWarning": "Aviso", + "Common.UI.Window.yesButtonText": "Sim", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "endereço:", + "Common.Views.About.txtLicensee": "LICENÇA", + "Common.Views.About.txtLicensor": "LICENCIANTE", + "Common.Views.About.txtMail": "e-mail:", + "Common.Views.About.txtPoweredBy": "Desenvolvido por", + "Common.Views.About.txtTel": "tel.: ", + "Common.Views.About.txtVersion": "Versão", + "Common.Views.AutoCorrectDialog.textAdd": "Adicionar", + "Common.Views.AutoCorrectDialog.textApplyText": "Aplicar ao escrever", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autocorreção de Texto", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Formatação automática ao escrever", + "Common.Views.AutoCorrectDialog.textBulleted": "Lista automática com marcas", + "Common.Views.AutoCorrectDialog.textBy": "Por", + "Common.Views.AutoCorrectDialog.textDelete": "Eliminar", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Adicionar parágrafo com espaçamento duplo", + "Common.Views.AutoCorrectDialog.textFLCells": "Maiúscula na primeira letra das células da tabela", + "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalizar a primeira letra das frases", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e locais de rede com hiperligações", + "Common.Views.AutoCorrectDialog.textHyphens": "Hífens (--) com traço (-)", + "Common.Views.AutoCorrectDialog.textMathCorrect": " Correção automática de matemática", + "Common.Views.AutoCorrectDialog.textNumbered": "Lista automática com números", + "Common.Views.AutoCorrectDialog.textQuotes": "\"Aspas retas\" com \"aspas inteligentes\"", + "Common.Views.AutoCorrectDialog.textRecognized": "Funções Reconhecidas", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "As seguintes expressões são expressões matemáticas reconhecidas. Não serão colocadas automaticamente em itálico.", + "Common.Views.AutoCorrectDialog.textReplace": "Substituir", + "Common.Views.AutoCorrectDialog.textReplaceText": "Substituir à medida que digita", + "Common.Views.AutoCorrectDialog.textReplaceType": "Substitua o texto à medida que digita", + "Common.Views.AutoCorrectDialog.textReset": "Repor", + "Common.Views.AutoCorrectDialog.textResetAll": "Repor para a predefinição", + "Common.Views.AutoCorrectDialog.textRestore": "Restaurar", + "Common.Views.AutoCorrectDialog.textTitle": "Correção automática", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "As funções reconhecidas devem conter apenas as letras de A a Z, maiúsculas ou minúsculas.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Qualquer expressão que tenha adicionado será removida e as expressões removidas serão restauradas. Quer continuar?", + "Common.Views.AutoCorrectDialog.warnReplace": "A correção automática para %1 já existe. Quer substituí-la?", + "Common.Views.AutoCorrectDialog.warnReset": "Qualquer correção automática que tenha adicionado será removida e as alterações serão restauradas aos seus valores originais. Quer continuar?", + "Common.Views.AutoCorrectDialog.warnRestore": "A correção automática para %1 já existe. Quer substituí-la?", + "Common.Views.Chat.textSend": "Enviar", + "Common.Views.Comments.mniAuthorAsc": "Autor de A a Z", + "Common.Views.Comments.mniAuthorDesc": "Autor Z a A", + "Common.Views.Comments.mniDateAsc": "Mais antigo", + "Common.Views.Comments.mniDateDesc": "Novidades", + "Common.Views.Comments.mniFilterGroups": "Filtrar por Grupo", + "Common.Views.Comments.mniPositionAsc": "De cima", + "Common.Views.Comments.mniPositionDesc": "Do fundo", + "Common.Views.Comments.textAdd": "Adicionar", + "Common.Views.Comments.textAddComment": "Adicionar comentário", + "Common.Views.Comments.textAddCommentToDoc": "Adicionar comentário ao documento", + "Common.Views.Comments.textAddReply": "Adicionar resposta", + "Common.Views.Comments.textAll": "Tudo", + "Common.Views.Comments.textAnonym": "Visitante", + "Common.Views.Comments.textCancel": "Cancelar", + "Common.Views.Comments.textClose": "Fechar", + "Common.Views.Comments.textClosePanel": "Fechar comentários", + "Common.Views.Comments.textComments": "Comentários", + "Common.Views.Comments.textEdit": "Editar", + "Common.Views.Comments.textEnterCommentHint": "Introduza o seu comentário aqui", + "Common.Views.Comments.textHintAddComment": "Adicionar comentário", + "Common.Views.Comments.textOpenAgain": "Abrir novamente", + "Common.Views.Comments.textReply": "Responder", + "Common.Views.Comments.textResolve": "Resolver", + "Common.Views.Comments.textResolved": "Resolvido", + "Common.Views.Comments.textSort": "Ordenar comentários", + "Common.Views.Comments.textViewResolved": "Não tem permissão para reabrir o comentário", + "Common.Views.CopyWarningDialog.textDontShow": "Não exibir esta mensagem novamente", + "Common.Views.CopyWarningDialog.textMsg": "As ações copiar, cortar e colar através dos botões da barra de ferramentas ou através do menu de contexto apenas serão executadas neste separador.

Para copiar ou colar de outras aplicações deve utilizar estas teclas de atalho:", + "Common.Views.CopyWarningDialog.textTitle": "Ações copiar, cortar e colar", + "Common.Views.CopyWarningDialog.textToCopy": "para copiar", + "Common.Views.CopyWarningDialog.textToCut": "para cortar", + "Common.Views.CopyWarningDialog.textToPaste": "para Colar", + "Common.Views.DocumentAccessDialog.textLoading": "Carregando...", + "Common.Views.DocumentAccessDialog.textTitle": "Definições de partilha", + "Common.Views.ExternalDiagramEditor.textClose": "Fechar", + "Common.Views.ExternalDiagramEditor.textSave": "Guardar e sair", + "Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico", + "Common.Views.ExternalMergeEditor.textClose": "Fechar", + "Common.Views.ExternalMergeEditor.textSave": "Guardar e sair", + "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recepients", + "Common.Views.Header.labelCoUsersDescr": "Utilizadores que estão a editar o ficheiro:", + "Common.Views.Header.textAddFavorite": "Marcar como favorito", + "Common.Views.Header.textAdvSettings": "Definições avançadas", + "Common.Views.Header.textBack": "Abrir localização", + "Common.Views.Header.textCompactView": "Ocultar barra de ferramentas", + "Common.Views.Header.textHideLines": "Ocultar réguas", + "Common.Views.Header.textHideStatusBar": "Ocultar barra de estado", + "Common.Views.Header.textRemoveFavorite": "Remover dos favoritos", + "Common.Views.Header.textZoom": "Ampliação", + "Common.Views.Header.tipAccessRights": "Gerir direitos de acesso ao documento", + "Common.Views.Header.tipDownload": "Descarregar ficheiro", + "Common.Views.Header.tipGoEdit": "Editar ficheiro atual", + "Common.Views.Header.tipPrint": "Imprimir ficheiro", + "Common.Views.Header.tipRedo": "Refazer", + "Common.Views.Header.tipSave": "Guardar", + "Common.Views.Header.tipUndo": "Desfazer", + "Common.Views.Header.tipViewSettings": "Definições de visualização", + "Common.Views.Header.tipViewUsers": "Ver utilizadores e gerir direitos de acesso", + "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", + "Common.Views.Header.txtRename": "Renomear", + "Common.Views.History.textCloseHistory": "Fechar histórico", + "Common.Views.History.textHide": "Recolher", + "Common.Views.History.textHideAll": "Ocultar alterações detalhadas", + "Common.Views.History.textRestore": "Restaurar", + "Common.Views.History.textShow": "Expandir", + "Common.Views.History.textShowAll": "Mostrar alterações detalhadas", + "Common.Views.History.textVer": "ver.", + "Common.Views.ImageFromUrlDialog.textUrl": "Colar URL de uma imagem:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "Tem que especificar um número válido de linhas e de colunas.", + "Common.Views.InsertTableDialog.txtColumns": "Número de colunas", + "Common.Views.InsertTableDialog.txtMaxText": "O valor máximo para este campo é {0}.", + "Common.Views.InsertTableDialog.txtMinText": "O valor mínimo para este campo é {0}.", + "Common.Views.InsertTableDialog.txtRows": "Número de linhas", + "Common.Views.InsertTableDialog.txtTitle": "Tamanho da tabela", + "Common.Views.InsertTableDialog.txtTitleSplit": "Dividir célula", + "Common.Views.LanguageDialog.labelSelect": "Selecionar idioma do documento", + "Common.Views.OpenDialog.closeButtonText": "Fechar ficheiro", + "Common.Views.OpenDialog.txtEncoding": "Codificação", + "Common.Views.OpenDialog.txtIncorrectPwd": "Palavra-passe inválida.", + "Common.Views.OpenDialog.txtOpenFile": "Introduza a palavra-passe para abrir o ficheiro", + "Common.Views.OpenDialog.txtPassword": "Palavra-passe", + "Common.Views.OpenDialog.txtPreview": "Pré-visualizar", + "Common.Views.OpenDialog.txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta.", + "Common.Views.OpenDialog.txtTitle": "Escolher opções %1", + "Common.Views.OpenDialog.txtTitleProtected": "Ficheiro protegido", + "Common.Views.PasswordDialog.txtDescription": "Defina uma palavra-passe para proteger este documento", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Disparidade nas palavras-passe introduzidas", + "Common.Views.PasswordDialog.txtPassword": "Palavra-passe", + "Common.Views.PasswordDialog.txtRepeat": "Repetição de palavra-passe", + "Common.Views.PasswordDialog.txtTitle": "Definir palavra-passe", + "Common.Views.PasswordDialog.txtWarning": "Aviso: Se perder ou esquecer a palavra-passe, não será possível recuperá-la. Guarde-a num local seguro.", + "Common.Views.PluginDlg.textLoading": "A carregar", + "Common.Views.Plugins.groupCaption": "Plugins", + "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textLoading": "A carregar", + "Common.Views.Plugins.textStart": "Iniciar", + "Common.Views.Plugins.textStop": "Parar", + "Common.Views.Protection.hintAddPwd": "Cifrar com palavra-passe", + "Common.Views.Protection.hintPwd": "Alterar ou eliminar palavra-passe", + "Common.Views.Protection.hintSignature": "Adicionar assinatura digital ou linha de assinatura", + "Common.Views.Protection.txtAddPwd": "Adicionar palavra-passe", + "Common.Views.Protection.txtChangePwd": "Alterar palavra-passe", + "Common.Views.Protection.txtDeletePwd": "Eliminar palavra-passe", + "Common.Views.Protection.txtEncrypt": "Cifrar", + "Common.Views.Protection.txtInvisibleSignature": "Adicionar assinatura digital", + "Common.Views.Protection.txtSignature": "Assinatura", + "Common.Views.Protection.txtSignatureLine": "Adicionar linha de assinatura", + "Common.Views.RenameDialog.textName": "Nome do ficheiro", + "Common.Views.RenameDialog.txtInvalidName": "O nome do ficheiro não pode ter qualquer um dos seguintes caracteres:", + "Common.Views.ReviewChanges.hintNext": "Para a próxima alteração", + "Common.Views.ReviewChanges.hintPrev": "Para a alteração anterior", + "Common.Views.ReviewChanges.mniFromFile": "Documento de um ficheiro", + "Common.Views.ReviewChanges.mniFromStorage": "Documento de um armazenamento", + "Common.Views.ReviewChanges.mniFromUrl": "Documento de um URL", + "Common.Views.ReviewChanges.mniSettings": "Definições de comparação", + "Common.Views.ReviewChanges.strFast": "Rápido", + "Common.Views.ReviewChanges.strFastDesc": "Edição em tempo real. Todas as alterações foram guardadas.", + "Common.Views.ReviewChanges.strStrict": "Estrito", + "Common.Views.ReviewChanges.strStrictDesc": "Utilize o botão 'Guardar' para sincronizar as alterações efetuadas ao documento.", + "Common.Views.ReviewChanges.textEnable": "Ativar", + "Common.Views.ReviewChanges.textWarnTrackChanges": "O Registo de Alterações estará ligadas para todos os utilizadores com acesso total. A próxima vez que alguém abrir o documento, o Registo Alterações permanecerá ativado.", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Ativar rastreio de alterações para todos?", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Aceitar alteração atual", + "Common.Views.ReviewChanges.tipCoAuthMode": "Definir modo de coedição", + "Common.Views.ReviewChanges.tipCommentRem": "Remover comentários", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Remover comentários atuais", + "Common.Views.ReviewChanges.tipCommentResolve": "Resolver comentários", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resolver comentários atuais", + "Common.Views.ReviewChanges.tipCompare": "Comparar o documento atual com outro", + "Common.Views.ReviewChanges.tipHistory": "Mostrar histórico de versão", + "Common.Views.ReviewChanges.tipRejectCurrent": "Rejeitar alterações atuais", + "Common.Views.ReviewChanges.tipReview": "Rastrear alterações", + "Common.Views.ReviewChanges.tipReviewView": "Selecione o modo em que pretende que as alterações sejam apresentadas", + "Common.Views.ReviewChanges.tipSetDocLang": "Definir idioma do documento", + "Common.Views.ReviewChanges.tipSetSpelling": "Verificação ortográfica", + "Common.Views.ReviewChanges.tipSharing": "Gerir direitos de acesso ao documento", + "Common.Views.ReviewChanges.txtAccept": "Aceitar", + "Common.Views.ReviewChanges.txtAcceptAll": "Aceitar todas as alterações", + "Common.Views.ReviewChanges.txtAcceptChanges": "Aceitar alterações", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Aceitar alteração atual", + "Common.Views.ReviewChanges.txtChat": "Conversa", + "Common.Views.ReviewChanges.txtClose": "Fechar", + "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de co-edição", + "Common.Views.ReviewChanges.txtCommentRemAll": "Remover todos os comentários", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remover comentários atuais", + "Common.Views.ReviewChanges.txtCommentRemMy": "Remover os meus comentários", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remover os meus comentários atuais", + "Common.Views.ReviewChanges.txtCommentRemove": "Remover", + "Common.Views.ReviewChanges.txtCommentResolve": "Resolver", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolver todos os comentários", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolver comentários atuais", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolver os meus comentários", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolver os meus comentários atuais", + "Common.Views.ReviewChanges.txtCompare": "Comparar", + "Common.Views.ReviewChanges.txtDocLang": "Idioma", + "Common.Views.ReviewChanges.txtEditing": "A editar", + "Common.Views.ReviewChanges.txtFinal": "Todas as alterações aceites {0}", + "Common.Views.ReviewChanges.txtFinalCap": "Final", + "Common.Views.ReviewChanges.txtHistory": "Histórico da versão", + "Common.Views.ReviewChanges.txtMarkup": "Todas as alterações {0}", + "Common.Views.ReviewChanges.txtMarkupCap": "Marcação e balões", + "Common.Views.ReviewChanges.txtMarkupSimple": "Todas as alterações {0}
Não há balões", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Apenas marcação", + "Common.Views.ReviewChanges.txtNext": "To Next Change", + "Common.Views.ReviewChanges.txtOff": "Desligado pra mim", + "Common.Views.ReviewChanges.txtOffGlobal": "Desligado pra mim e para todos", + "Common.Views.ReviewChanges.txtOn": "Ligado para mim", + "Common.Views.ReviewChanges.txtOnGlobal": "Ligado para mim e para todos", + "Common.Views.ReviewChanges.txtOriginal": "Todas as alterações recusadas {0}", + "Common.Views.ReviewChanges.txtOriginalCap": "Original", + "Common.Views.ReviewChanges.txtPrev": "To Previous Change", + "Common.Views.ReviewChanges.txtPreview": "Pré-visualizar", + "Common.Views.ReviewChanges.txtReject": "Rejeitar", + "Common.Views.ReviewChanges.txtRejectAll": "Rejeitar todas as alterações", + "Common.Views.ReviewChanges.txtRejectChanges": "Rejeitar alterações", + "Common.Views.ReviewChanges.txtRejectCurrent": "Rejeitar alteração atual", + "Common.Views.ReviewChanges.txtSharing": "Partilhar", + "Common.Views.ReviewChanges.txtSpelling": "Verificação ortográfica", + "Common.Views.ReviewChanges.txtTurnon": "Rastrear alterações", + "Common.Views.ReviewChanges.txtView": "Modo de exibição", + "Common.Views.ReviewChangesDialog.textTitle": "Rever alterações", + "Common.Views.ReviewChangesDialog.txtAccept": "Aceitar", + "Common.Views.ReviewChangesDialog.txtAcceptAll": "Aceitar todas as alterações", + "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Aceitar alteração atual", + "Common.Views.ReviewChangesDialog.txtNext": "Para a próxima alteração", + "Common.Views.ReviewChangesDialog.txtPrev": "Para a alteração anterior", + "Common.Views.ReviewChangesDialog.txtReject": "Rejeitar", + "Common.Views.ReviewChangesDialog.txtRejectAll": "Rejeitar todas as alterações", + "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Rejeitar alteração atual", + "Common.Views.ReviewPopover.textAdd": "Adicionar", + "Common.Views.ReviewPopover.textAddReply": "Adicionar resposta", + "Common.Views.ReviewPopover.textCancel": "Cancelar", + "Common.Views.ReviewPopover.textClose": "Fechar", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textFollowMove": "Seguir movimento", + "Common.Views.ReviewPopover.textMention": "+menção disponibiliza o acesso ao documento e envia um e-mail ao utilizador", + "Common.Views.ReviewPopover.textMentionNotify": "+menção notifica o utilizador por e-mail", + "Common.Views.ReviewPopover.textOpenAgain": "Abrir novamente", + "Common.Views.ReviewPopover.textReply": "Responder", + "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "Não tem permissão para reabrir o comentário", + "Common.Views.ReviewPopover.txtAccept": "Aceitar", + "Common.Views.ReviewPopover.txtDeleteTip": "Eliminar", + "Common.Views.ReviewPopover.txtEditTip": "Editar", + "Common.Views.ReviewPopover.txtReject": "Rejeitar", + "Common.Views.SaveAsDlg.textLoading": "A carregar", + "Common.Views.SaveAsDlg.textTitle": "Pasta para guardar", + "Common.Views.SelectFileDlg.textLoading": "A carregar", + "Common.Views.SelectFileDlg.textTitle": "Selecionar fonte de dados", + "Common.Views.SignDialog.textBold": "Negrito", + "Common.Views.SignDialog.textCertificate": " Certificado", + "Common.Views.SignDialog.textChange": "Alterar", + "Common.Views.SignDialog.textInputName": "Inserir nome do assinante", + "Common.Views.SignDialog.textItalic": "Itálico", + "Common.Views.SignDialog.textNameError": "O nome do assinante não pode estar vazio", + "Common.Views.SignDialog.textPurpose": "Objetivo para assinar o documento", + "Common.Views.SignDialog.textSelect": "Selecionar", + "Common.Views.SignDialog.textSelectImage": "Selecionar imagem", + "Common.Views.SignDialog.textSignature": "A assinatura parece ser", + "Common.Views.SignDialog.textTitle": "Assinar o documento", + "Common.Views.SignDialog.textUseImage": "ou clique \"Selecionar imagem\" para a utilizar como assinatura", + "Common.Views.SignDialog.textValid": "Válida de %1 até %2", + "Common.Views.SignDialog.tipFontName": "Nome do tipo de letra", + "Common.Views.SignDialog.tipFontSize": "Tamanho do tipo de letra", + "Common.Views.SignSettingsDialog.textAllowComment": "Permitir ao signatário inserir comentários no diálogo de assinatura", + "Common.Views.SignSettingsDialog.textInfo": "Informação sobre o Assinante", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", + "Common.Views.SignSettingsDialog.textInfoName": "Nome", + "Common.Views.SignSettingsDialog.textInfoTitle": "Título do Assinante", + "Common.Views.SignSettingsDialog.textInstructions": "Instruções para o assinante", + "Common.Views.SignSettingsDialog.textShowDate": "Mostrar data na linha de assinatura", + "Common.Views.SignSettingsDialog.textTitle": "Definições de Assinatura", + "Common.Views.SignSettingsDialog.txtEmpty": "Este campo é obrigatório", + "Common.Views.SymbolTableDialog.textCharacter": "Caractere", + "Common.Views.SymbolTableDialog.textCode": "Valor Unicode HEX", + "Common.Views.SymbolTableDialog.textCopyright": "Assinatura Copyright", + "Common.Views.SymbolTableDialog.textDCQuote": "Aspas Duplas de Fechamento", + "Common.Views.SymbolTableDialog.textDOQuote": "Aspas de abertura", + "Common.Views.SymbolTableDialog.textEllipsis": "Elipse horizontal", + "Common.Views.SymbolTableDialog.textEmDash": "Travessão", + "Common.Views.SymbolTableDialog.textEmSpace": "Espaço", + "Common.Views.SymbolTableDialog.textEnDash": "Travessão", + "Common.Views.SymbolTableDialog.textEnSpace": "Espaço", + "Common.Views.SymbolTableDialog.textFont": "Fonte", + "Common.Views.SymbolTableDialog.textNBHyphen": "Hífen inseparável", + "Common.Views.SymbolTableDialog.textNBSpace": "Espaço sem interrupção", + "Common.Views.SymbolTableDialog.textPilcrow": "Sinal de antígrafo", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 de espaço (Em)", + "Common.Views.SymbolTableDialog.textRange": "Intervalo", + "Common.Views.SymbolTableDialog.textRecent": "Símbolos usados recentemente", + "Common.Views.SymbolTableDialog.textRegistered": "Sinal Registado", + "Common.Views.SymbolTableDialog.textSCQuote": "Aspas de Fechamento", + "Common.Views.SymbolTableDialog.textSection": "Sinal de secção", + "Common.Views.SymbolTableDialog.textShortcut": "Tecla de atalho", + "Common.Views.SymbolTableDialog.textSHyphen": "Hífen virtual", + "Common.Views.SymbolTableDialog.textSOQuote": "Apóstrofo de abertura", + "Common.Views.SymbolTableDialog.textSpecial": "Caracteres especiais", + "Common.Views.SymbolTableDialog.textSymbols": "Símbolos", + "Common.Views.SymbolTableDialog.textTitle": "Símbolo", + "Common.Views.SymbolTableDialog.textTradeMark": "Símbolo de Marca Registada.", + "Common.Views.UserNameDialog.textDontShow": "Não perguntar novamente", + "Common.Views.UserNameDialog.textLabel": "Etiqueta:", + "Common.Views.UserNameDialog.textLabelError": "Etiqueta não deve estar em branco.", + "DE.Controllers.LeftMenu.leavePageText": "Todas as alterações não guardadas serão perdidas.
Prima \"Cancelar\" e, depois, prima \"Guardar\". Clique \"Ok\" para descartar as alterações não guardadas.", + "DE.Controllers.LeftMenu.newDocumentTitle": "Documento sem nome", + "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Aviso", + "DE.Controllers.LeftMenu.requestEditRightsText": "Solicitando direitos de edição...", + "DE.Controllers.LeftMenu.textLoadHistory": "A carregar o histórico de versões...", + "DE.Controllers.LeftMenu.textNoTextFound": "Não foi possível localizar os dados procurados. Por favor ajuste as opções de pesquisa.", + "DE.Controllers.LeftMenu.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", + "DE.Controllers.LeftMenu.textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", + "DE.Controllers.LeftMenu.txtCompatible": "O documento será guardado com um novo formato. Desta forma, pode utilizar todas as funcionalidades do editor mas que poderão afetar a disposição do documento.
Utilize a opção 'Compatibilidade' nas definições avançadas que quiser tornar este ficheiro compatível com as versões antigas do MS Word.", + "DE.Controllers.LeftMenu.txtUntitled": "Sem título", + "DE.Controllers.LeftMenu.warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos exceto o texto serão perdidos.
Você tem certeza que quer continuar?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "O seu {0} será convertido para um formato editável. Isto pode demorar algum tempo. O documento resultante será otimizado para lhe permitir editar o texto, pelo que poderá não ser exatamente igual ao {0} original, especialmente se o ficheiro original contiver muitos gráficos.", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Se guardar o documento neste formato, perderá alguns dos atributos de formatação.
Tem a certeza de que deseja continuar?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} não é um caracter especial válido para o campo de substituição.", + "DE.Controllers.Main.applyChangesTextText": "Carregando as alterações...", + "DE.Controllers.Main.applyChangesTitleText": "Carregando as alterações", + "DE.Controllers.Main.convertationTimeoutText": "Excedeu o tempo limite de conversão.", + "DE.Controllers.Main.criticalErrorExtText": "Prima \"OK\" para voltar para a lista de documentos.", + "DE.Controllers.Main.criticalErrorTitle": "Erro", + "DE.Controllers.Main.downloadErrorText": "Falha ao descarregar.", + "DE.Controllers.Main.downloadMergeText": "A descarregar...", + "DE.Controllers.Main.downloadMergeTitle": "A descarregar", + "DE.Controllers.Main.downloadTextText": "A descarregar documento...", + "DE.Controllers.Main.downloadTitleText": "A descarregar documento", + "DE.Controllers.Main.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissões.
Por favor contacte o administrador do servidor de documentos.", + "DE.Controllers.Main.errorBadImageUrl": "URL inválido", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão com servidor perdida. O documento não pode ser editado neste momento.", + "DE.Controllers.Main.errorComboSeries": "Para criar um gráfico de combinação, selecione pelo menos duas séries de dados.", + "DE.Controllers.Main.errorCompare": "A funcionalidade de Comparar Documentos não está disponível enquanto se faz a coedição.", + "DE.Controllers.Main.errorConnectToServer": "Não foi possível guardar o documento. Verifique a sua ligação de rede ou contacte o seu administrador.
Ao clicar no botão OK, ser-lhe-á pedido para descarregar o documento.", + "DE.Controllers.Main.errorDatabaseConnection": "Erro externo.
Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.", + "DE.Controllers.Main.errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", + "DE.Controllers.Main.errorDataRange": "Intervalo de dados inválido.", + "DE.Controllers.Main.errorDefaultMessage": "Código do erro: %1", + "DE.Controllers.Main.errorDirectUrl": "Verifique a ligação ao documento.
Deve ser uma ligação direta para o ficheiro a descarregar.", + "DE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no seu computador.", + "DE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Guardar como...' para guardar uma cópia do ficheiro no seu computador.", + "DE.Controllers.Main.errorEmailClient": "Não foi possível encontrar nenhum cliente de e-mail.", + "DE.Controllers.Main.errorFilePassProtect": "O ficheiro está protegido por palavra-passe e não pode ser aberto.", + "DE.Controllers.Main.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", + "DE.Controllers.Main.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar' para guardar o ficheiro no seu computador e tentar mais tarde.", + "DE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", + "DE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", + "DE.Controllers.Main.errorLoadingFont": "Os tipos de letra não foram carregados.
Contacte o administrador do servidor de documentos.", + "DE.Controllers.Main.errorMailMergeLoadFile": "Não foi possível carregar o documento. Por favor escolha outro ficheiro.", + "DE.Controllers.Main.errorMailMergeSaveFile": "Falha ao unir.", + "DE.Controllers.Main.errorProcessSaveResult": "Salvamento falhou.", + "DE.Controllers.Main.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", + "DE.Controllers.Main.errorSessionAbsolute": "A sessão de edição expirou. Tente recarregar a página.", + "DE.Controllers.Main.errorSessionIdle": "Este documento não foi editado durante muito tempo. Tente recarregar a página.", + "DE.Controllers.Main.errorSessionToken": "A ligação ao servidor foi interrompida. Tente recarregar a página.", + "DE.Controllers.Main.errorSetPassword": "Não foi possível definir a palavra-passe.", + "DE.Controllers.Main.errorStockChart": "Ordem de linha inválida. Para criar um gráfico de cotações, coloque os dados na folha pela seguinte ordem:
preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "DE.Controllers.Main.errorSubmit": "Falha ao submeter.", + "DE.Controllers.Main.errorToken": "O token de segurança do documento não foi formatado corretamente.
Entre em contato com o administrador do Servidor de Documentos.", + "DE.Controllers.Main.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contato com o administrador do Servidor de Documentos.", + "DE.Controllers.Main.errorUpdateVersion": "A versão do ficheiro foi alterada. A página será recarregada.", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", + "DE.Controllers.Main.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", + "DE.Controllers.Main.errorUsersExceed": "Excedeu o número máximo de utilizadores permitidos pelo seu plano", + "DE.Controllers.Main.errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas
não o conseguirá descarregar até que a ligação seja restaurada e a página recarregada.", + "DE.Controllers.Main.leavePageText": "Este documento tem alterações não guardadas. Clique 'Ficar na página' para que o documento seja guardado automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", + "DE.Controllers.Main.leavePageTextOnClose": "Todas as alterações não guardadas serão perdidas.
Clique em \"Cancelar\" e depois em \"Guardar\" para as guardar. Clique em \"Ok\" para descartar todas as alterações não guardadas.", + "DE.Controllers.Main.loadFontsTextText": "Carregando dados...", + "DE.Controllers.Main.loadFontsTitleText": "Carregando dados", + "DE.Controllers.Main.loadFontTextText": "Carregando dados...", + "DE.Controllers.Main.loadFontTitleText": "Carregando dados", + "DE.Controllers.Main.loadImagesTextText": "A carregar imagens...", + "DE.Controllers.Main.loadImagesTitleText": "A carregar imagens", + "DE.Controllers.Main.loadImageTextText": "A carregar imagem...", + "DE.Controllers.Main.loadImageTitleText": "A carregar imagem", + "DE.Controllers.Main.loadingDocumentTextText": "Carregando documento...", + "DE.Controllers.Main.loadingDocumentTitleText": "Carregando documento", + "DE.Controllers.Main.mailMergeLoadFileText": "A carregar origem de dados...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "A carregar origem de dados", + "DE.Controllers.Main.notcriticalErrorTitle": "Aviso", + "DE.Controllers.Main.openErrorText": "Ocorreu um erro ao abrir o ficheiro.", + "DE.Controllers.Main.openTextText": "Abrindo documento...", + "DE.Controllers.Main.openTitleText": "Abrindo documento", + "DE.Controllers.Main.printTextText": "Imprimindo documento...", + "DE.Controllers.Main.printTitleText": "Imprimindo documento", + "DE.Controllers.Main.reloadButtonText": "Recarregar página", + "DE.Controllers.Main.requestEditFailedMessageText": "Alguém está editando este documento neste momento. Tente novamente mais tarde.", + "DE.Controllers.Main.requestEditFailedTitleText": "Acesso recusado", + "DE.Controllers.Main.saveErrorText": "Ocorreu um erro ao guardar o ficheiro.", + "DE.Controllers.Main.saveErrorTextDesktop": "Este ficheiro não pode ser guardado ou criado.
Os motivos podem ser:
1. O ficheiro é apenas de leitura.
2. O ficheiro está a ser editado por outro utilizador.
3. O disco está cheio ou danificado.", + "DE.Controllers.Main.saveTextText": "Salvando documento...", + "DE.Controllers.Main.saveTitleText": "Salvando documento", + "DE.Controllers.Main.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Tente recarregar a página.", + "DE.Controllers.Main.sendMergeText": "A enviar combinação...", + "DE.Controllers.Main.sendMergeTitle": "A enviar combinação", + "DE.Controllers.Main.splitDividerErrorText": "O número de linhas deve ser um divisor de %1.", + "DE.Controllers.Main.splitMaxColsErrorText": "O número de colunas deve ser inferior a %1.", + "DE.Controllers.Main.splitMaxRowsErrorText": "O número de linhas deve ser inferior a %1.", + "DE.Controllers.Main.textAnonymous": "Anónimo", + "DE.Controllers.Main.textApplyAll": "Aplicar a todas as equações", + "DE.Controllers.Main.textBuyNow": "Visitar site", + "DE.Controllers.Main.textChangesSaved": "Todas as alterações foram guardadas", + "DE.Controllers.Main.textClose": "Fechar", + "DE.Controllers.Main.textCloseTip": "Clique para fechar a dica", + "DE.Controllers.Main.textContactUs": "Contacte a equipa comercial", + "DE.Controllers.Main.textConvertEquation": "Esta equação foi criada com uma versão anterior da aplicação e já não é suportada. Para a editar, tem que converter a equação para o formato Office Math ML.
Converter agora?", + "DE.Controllers.Main.textCustomLoader": "Tenha em conta de que, de acordo com os termos da licença, não tem permissões para alterar o carregador.
Por favor contacte a equipa comercial.", + "DE.Controllers.Main.textDisconnect": "A ligação está perdida", + "DE.Controllers.Main.textGuest": "Convidado(a)", + "DE.Controllers.Main.textHasMacros": "O ficheiro contém macros automáticas.
Deseja executar as macros?", + "DE.Controllers.Main.textLearnMore": "Saiba mais", + "DE.Controllers.Main.textLoadingDocument": "Carregando documento", + "DE.Controllers.Main.textLongName": "Introduza um nome com menos de 128 caracteres.", + "DE.Controllers.Main.textNoLicenseTitle": "Atingiu o limite da licença", + "DE.Controllers.Main.textPaidFeature": "Funcionalidade paga", + "DE.Controllers.Main.textReconnect": "A ligação foi reposta", + "DE.Controllers.Main.textRemember": "Memorizar a minha escolha", + "DE.Controllers.Main.textRenameError": "O nome de utilizador não pode estar em branco.", + "DE.Controllers.Main.textRenameLabel": "Introduza um nome a ser usado para colaboração", + "DE.Controllers.Main.textShape": "Forma", + "DE.Controllers.Main.textStrict": "Modo estrito", + "DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer foram desativadas para se poder co-editar o documento.
Clique no botão 'Modo estrito' para ativar este modo de edição e editar o ficheiro sem ser incomodado por outros utilizadores enviando apenas as suas alterações assim que terminar e guardar. Pode alternar entre modos de co-edição através das definições avançadas.", + "DE.Controllers.Main.textTryUndoRedoWarn": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.", + "DE.Controllers.Main.titleLicenseExp": "Licença expirada", + "DE.Controllers.Main.titleServerVersion": "Editor atualizado", + "DE.Controllers.Main.titleUpdateVersion": "Versão alterada", + "DE.Controllers.Main.txtAbove": "acima", + "DE.Controllers.Main.txtArt": "O seu texto aqui", + "DE.Controllers.Main.txtBasicShapes": "Formas básicas", + "DE.Controllers.Main.txtBelow": "abaixo", + "DE.Controllers.Main.txtBookmarkError": "Erro! Marcador não definido.", + "DE.Controllers.Main.txtButtons": "Botões", + "DE.Controllers.Main.txtCallouts": "Textos explicativos", + "DE.Controllers.Main.txtCharts": "Gráficos", + "DE.Controllers.Main.txtChoose": "Escolha um item", + "DE.Controllers.Main.txtClickToLoad": "Clique para carregar a imagem", + "DE.Controllers.Main.txtCurrentDocument": "Documento atual", + "DE.Controllers.Main.txtDiagramTitle": "Título do diagrama", + "DE.Controllers.Main.txtEditingMode": "Definir modo de edição...", + "DE.Controllers.Main.txtEndOfFormula": "Fim Inesperado da Fórmula", + "DE.Controllers.Main.txtEnterDate": "Indique uma data", + "DE.Controllers.Main.txtErrorLoadHistory": "Falha ao carregar histórico", + "DE.Controllers.Main.txtEvenPage": "Página par", + "DE.Controllers.Main.txtFiguredArrows": "Setas figuradas", + "DE.Controllers.Main.txtFirstPage": "Primeira página", + "DE.Controllers.Main.txtFooter": "Rodapé", + "DE.Controllers.Main.txtFormulaNotInTable": "A Fórmula Não Está na Tabela", + "DE.Controllers.Main.txtHeader": "Cabeçalho", + "DE.Controllers.Main.txtHyperlink": "Hiperligação", + "DE.Controllers.Main.txtIndTooLarge": "Índice demasiado grande", + "DE.Controllers.Main.txtLines": "Linhas", + "DE.Controllers.Main.txtMainDocOnly": "Erro! Apenas documento principal.", + "DE.Controllers.Main.txtMath": "Matemática", + "DE.Controllers.Main.txtMissArg": "Argumento em falta", + "DE.Controllers.Main.txtMissOperator": "Operador em falta", + "DE.Controllers.Main.txtNeedSynchronize": "Você tem atualizações", + "DE.Controllers.Main.txtNone": "Nenhum", + "DE.Controllers.Main.txtNoTableOfContents": "Não existem títulos no documento. Aplique um estilo de título ao texto para que este apareça no índice remissivo.", + "DE.Controllers.Main.txtNoTableOfFigures": "Não foi encontrada nenhuma entrada no índice de ilustrações.", + "DE.Controllers.Main.txtNoText": "Erro! Não existe texto com este estilo no documento.", + "DE.Controllers.Main.txtNotInTable": "Não é uma tabela", + "DE.Controllers.Main.txtNotValidBookmark": "Erro! Não é uma auto-referência de marcador válida.", + "DE.Controllers.Main.txtOddPage": "Página ímpar", + "DE.Controllers.Main.txtOnPage": "na página", + "DE.Controllers.Main.txtRectangles": "Retângulos", + "DE.Controllers.Main.txtSameAsPrev": "Igual à anterior", + "DE.Controllers.Main.txtSection": "-Secção", + "DE.Controllers.Main.txtSeries": "Série", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "Chamada da linha 1 (contorno e barra de destaque)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "Chamada da linha 2 (contorno e barra de destaque)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "Chamada da linha 3 (contorno e barra de destaque)", + "DE.Controllers.Main.txtShape_accentCallout1": "Chamada da linha 1 (barra de destaque)", + "DE.Controllers.Main.txtShape_accentCallout2": "Chamada da linha 2 (barra de destaque)", + "DE.Controllers.Main.txtShape_accentCallout3": "Chamada da linha 3 (barra de destaque)", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Botão Recuar ou Anterior", + "DE.Controllers.Main.txtShape_actionButtonBeginning": "Botão Início", + "DE.Controllers.Main.txtShape_actionButtonBlank": "Botão vazio", + "DE.Controllers.Main.txtShape_actionButtonDocument": "Botão Documento", + "DE.Controllers.Main.txtShape_actionButtonEnd": "Botão Final", + "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Botões Recuar e/ou Avançar", + "DE.Controllers.Main.txtShape_actionButtonHelp": "Botão Ajuda", + "DE.Controllers.Main.txtShape_actionButtonHome": "Botão Base", + "DE.Controllers.Main.txtShape_actionButtonInformation": "Botão Informação", + "DE.Controllers.Main.txtShape_actionButtonMovie": "Botão Filme", + "DE.Controllers.Main.txtShape_actionButtonReturn": "Botão de Voltar", + "DE.Controllers.Main.txtShape_actionButtonSound": "Botão Som", + "DE.Controllers.Main.txtShape_arc": "Arco", + "DE.Controllers.Main.txtShape_bentArrow": "Seta curvada", + "DE.Controllers.Main.txtShape_bentConnector5": "Conector angular", + "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Conector de seta angular", + "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Conector de seta dupla angulada", + "DE.Controllers.Main.txtShape_bentUpArrow": "Seta para cima dobrada", + "DE.Controllers.Main.txtShape_bevel": "Chanfro", + "DE.Controllers.Main.txtShape_blockArc": "Arco de bloco", + "DE.Controllers.Main.txtShape_borderCallout1": "Chamada da linha 1", + "DE.Controllers.Main.txtShape_borderCallout2": "Chamada da linha 2", + "DE.Controllers.Main.txtShape_borderCallout3": "Chamada da linha 3", + "DE.Controllers.Main.txtShape_bracePair": "Chaveta dupla", + "DE.Controllers.Main.txtShape_callout1": "Chamada da linha 1 (sem contorno)", + "DE.Controllers.Main.txtShape_callout2": "Chamada da linha 2 (sem contorno)", + "DE.Controllers.Main.txtShape_callout3": "Chamada da linha 3 (sem contorno)", + "DE.Controllers.Main.txtShape_can": "Pode", + "DE.Controllers.Main.txtShape_chevron": "Divisa", + "DE.Controllers.Main.txtShape_chord": "Acorde", + "DE.Controllers.Main.txtShape_circularArrow": "Seta circular", + "DE.Controllers.Main.txtShape_cloud": "Nuvem", + "DE.Controllers.Main.txtShape_cloudCallout": "Texto explicativo na nuvem", + "DE.Controllers.Main.txtShape_corner": "Canto", + "DE.Controllers.Main.txtShape_cube": "Cubo", + "DE.Controllers.Main.txtShape_curvedConnector3": "Conector curvado", + "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Conector de seta curvada", + "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Conector de seta dupla curvado", + "DE.Controllers.Main.txtShape_curvedDownArrow": "Seta curvada para baixo", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "Seta curvada para a esquerda", + "DE.Controllers.Main.txtShape_curvedRightArrow": "Seta curvava para a direita", + "DE.Controllers.Main.txtShape_curvedUpArrow": "Seta curvada para cima", + "DE.Controllers.Main.txtShape_decagon": "Decágono", + "DE.Controllers.Main.txtShape_diagStripe": "Faixa diagonal", + "DE.Controllers.Main.txtShape_diamond": "Diamante", + "DE.Controllers.Main.txtShape_dodecagon": "Dodecágono", + "DE.Controllers.Main.txtShape_donut": "Donut", + "DE.Controllers.Main.txtShape_doubleWave": "Til", + "DE.Controllers.Main.txtShape_downArrow": "Seta para baixo", + "DE.Controllers.Main.txtShape_downArrowCallout": "Chamada com seta para baixo", + "DE.Controllers.Main.txtShape_ellipse": "Elipse", + "DE.Controllers.Main.txtShape_ellipseRibbon": "Faixa curvada para baixo", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "Faixa curvada para cima", + "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Fluxograma: Processo alternativo", + "DE.Controllers.Main.txtShape_flowChartCollate": "Fluxograma: Agrupar", + "DE.Controllers.Main.txtShape_flowChartConnector": "Fluxograma: Conector", + "DE.Controllers.Main.txtShape_flowChartDecision": "Fluxograma: Decisão", + "DE.Controllers.Main.txtShape_flowChartDelay": "Fluxograma: Atraso", + "DE.Controllers.Main.txtShape_flowChartDisplay": "Fluxograma: Exibir", + "DE.Controllers.Main.txtShape_flowChartDocument": "Fluxograma: Documento", + "DE.Controllers.Main.txtShape_flowChartExtract": "Fluxograma: Extrair", + "DE.Controllers.Main.txtShape_flowChartInputOutput": "Fluxograma: Dados", + "DE.Controllers.Main.txtShape_flowChartInternalStorage": "Fluxograma: Armazenamento interno", + "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Fluxograma: Disco magnético", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Fluxograma: Armazenamento de acesso direto", + "DE.Controllers.Main.txtShape_flowChartMagneticTape": "Fluxograma: Armazenamento de acesso sequencial", + "DE.Controllers.Main.txtShape_flowChartManualInput": "Fluxograma: Entrada manual", + "DE.Controllers.Main.txtShape_flowChartManualOperation": "Fluxograma: Operação manual", + "DE.Controllers.Main.txtShape_flowChartMerge": "Fluxograma: Unir", + "DE.Controllers.Main.txtShape_flowChartMultidocument": "Fluxograma: Vários documentos", + "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "Fluxograma: Conector fora da página", + "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "Fluxograma: Dados armazenados", + "DE.Controllers.Main.txtShape_flowChartOr": "Fluxograma: Ou", + "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Fluxograma: Processo predefinido", + "DE.Controllers.Main.txtShape_flowChartPreparation": "Fluxograma: Preparação", + "DE.Controllers.Main.txtShape_flowChartProcess": "Fluxograma: Processo", + "DE.Controllers.Main.txtShape_flowChartPunchedCard": "Fluxograma: Cartão", + "DE.Controllers.Main.txtShape_flowChartPunchedTape": "Fluxograma: Fita perfurada", + "DE.Controllers.Main.txtShape_flowChartSort": "Fluxograma: Ordenar", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "Fluxograma: Junção de Soma", + "DE.Controllers.Main.txtShape_flowChartTerminator": "Fluxograma: Exterminador", + "DE.Controllers.Main.txtShape_foldedCorner": "Canto dobrado", + "DE.Controllers.Main.txtShape_frame": "Moldura", + "DE.Controllers.Main.txtShape_halfFrame": "Meia moldura", + "DE.Controllers.Main.txtShape_heart": "Coração", + "DE.Controllers.Main.txtShape_heptagon": "Heptágono", + "DE.Controllers.Main.txtShape_hexagon": "Hexágono", + "DE.Controllers.Main.txtShape_homePlate": "Pentágono", + "DE.Controllers.Main.txtShape_horizontalScroll": "Deslocação horizontal", + "DE.Controllers.Main.txtShape_irregularSeal1": "Explosão 1", + "DE.Controllers.Main.txtShape_irregularSeal2": "Explosão 2", + "DE.Controllers.Main.txtShape_leftArrow": "Seta para esquerda", + "DE.Controllers.Main.txtShape_leftArrowCallout": "Chamada com seta para a esquerda", + "DE.Controllers.Main.txtShape_leftBrace": "Chaveta esquerda", + "DE.Controllers.Main.txtShape_leftBracket": "Parêntese esquerdo", + "DE.Controllers.Main.txtShape_leftRightArrow": "Seta para a esquerda e para a direita", + "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Chamada com seta para a esquerda e direita", + "DE.Controllers.Main.txtShape_leftRightUpArrow": "Seta para cima, para a direita e para a esquerda", + "DE.Controllers.Main.txtShape_leftUpArrow": "Seta para a esquerda e para cima", + "DE.Controllers.Main.txtShape_lightningBolt": "Relâmpago", + "DE.Controllers.Main.txtShape_line": "Linha", + "DE.Controllers.Main.txtShape_lineWithArrow": "Seta", + "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Seta dupla", + "DE.Controllers.Main.txtShape_mathDivide": "Divisão", + "DE.Controllers.Main.txtShape_mathEqual": "Igual", + "DE.Controllers.Main.txtShape_mathMinus": "Menos", + "DE.Controllers.Main.txtShape_mathMultiply": "Multiplicar", + "DE.Controllers.Main.txtShape_mathNotEqual": "Não é igual", + "DE.Controllers.Main.txtShape_mathPlus": "Mais", + "DE.Controllers.Main.txtShape_moon": "Lua", + "DE.Controllers.Main.txtShape_noSmoking": "Símbolo \"Não\"", + "DE.Controllers.Main.txtShape_notchedRightArrow": "Seta entalhada para a direita", + "DE.Controllers.Main.txtShape_octagon": "Octógono", + "DE.Controllers.Main.txtShape_parallelogram": "Paralelograma", + "DE.Controllers.Main.txtShape_pentagon": "Pentágono", + "DE.Controllers.Main.txtShape_pie": "Tarte", + "DE.Controllers.Main.txtShape_plaque": "Assinar", + "DE.Controllers.Main.txtShape_plus": "Mais", + "DE.Controllers.Main.txtShape_polyline1": "Rabisco", + "DE.Controllers.Main.txtShape_polyline2": "Forma livre", + "DE.Controllers.Main.txtShape_quadArrow": "Seta cruzada", + "DE.Controllers.Main.txtShape_quadArrowCallout": "Chamada com seta cruzada", + "DE.Controllers.Main.txtShape_rect": "Retângulo", + "DE.Controllers.Main.txtShape_ribbon": "Faixa para baixo", + "DE.Controllers.Main.txtShape_ribbon2": "Faixa para cima", + "DE.Controllers.Main.txtShape_rightArrow": "Seta para a direita", + "DE.Controllers.Main.txtShape_rightArrowCallout": "Chamada com seta para a direita", + "DE.Controllers.Main.txtShape_rightBrace": "Chaveta à Direita", + "DE.Controllers.Main.txtShape_rightBracket": "Parêntese direito", + "DE.Controllers.Main.txtShape_round1Rect": "Retângulo de Apenas Um Canto Redondo", + "DE.Controllers.Main.txtShape_round2DiagRect": "Retângulo Diagonal Redondo", + "DE.Controllers.Main.txtShape_round2SameRect": "Retângulo do Mesmo Lado Redondo", + "DE.Controllers.Main.txtShape_roundRect": "Retângulo de Cantos Redondos", + "DE.Controllers.Main.txtShape_rtTriangle": "Triângulo à Direita", + "DE.Controllers.Main.txtShape_smileyFace": "Sorriso", + "DE.Controllers.Main.txtShape_snip1Rect": "Retângulo de Canto Cortado", + "DE.Controllers.Main.txtShape_snip2DiagRect": "Retângulo de Cantos Diagonais Cortados", + "DE.Controllers.Main.txtShape_snip2SameRect": "Retângulo de Cantos Cortados No Mesmo Lado", + "DE.Controllers.Main.txtShape_snipRoundRect": "Retângulo Com Canto Arredondado e Canto Cortado", + "DE.Controllers.Main.txtShape_spline": "Curva", + "DE.Controllers.Main.txtShape_star10": "Estrela de 10 pontos", + "DE.Controllers.Main.txtShape_star12": "Estrela de 12 pontos", + "DE.Controllers.Main.txtShape_star16": "Estrela de 16 pontos", + "DE.Controllers.Main.txtShape_star24": "Estrela de 24 pontos", + "DE.Controllers.Main.txtShape_star32": "Estrela de 32 pontos", + "DE.Controllers.Main.txtShape_star4": "Estrela de 4 pontos", + "DE.Controllers.Main.txtShape_star5": "Estrela de 5 pontos", + "DE.Controllers.Main.txtShape_star6": "Estrela de 6 pontos", + "DE.Controllers.Main.txtShape_star7": "Estrela de 7 pontos", + "DE.Controllers.Main.txtShape_star8": "Estrela de 8 pontos", + "DE.Controllers.Main.txtShape_stripedRightArrow": "Seta riscada para a direita", + "DE.Controllers.Main.txtShape_sun": "Sol", + "DE.Controllers.Main.txtShape_teardrop": "Lágrima", + "DE.Controllers.Main.txtShape_textRect": "Caixa de texto", + "DE.Controllers.Main.txtShape_trapezoid": "Trapézio", + "DE.Controllers.Main.txtShape_triangle": "Triângulo", + "DE.Controllers.Main.txtShape_upArrow": "Seta para cima", + "DE.Controllers.Main.txtShape_upArrowCallout": "Chamada com seta para cima", + "DE.Controllers.Main.txtShape_upDownArrow": "Seta para cima e para baixo", + "DE.Controllers.Main.txtShape_uturnArrow": "Seta em forma de U", + "DE.Controllers.Main.txtShape_verticalScroll": "Deslocação vertical", + "DE.Controllers.Main.txtShape_wave": "Onda", + "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Chamada oval", + "DE.Controllers.Main.txtShape_wedgeRectCallout": "Chamada retangular", + "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Chamada retangular arredondada", + "DE.Controllers.Main.txtStarsRibbons": "Estrelas e arco-íris", + "DE.Controllers.Main.txtStyle_Caption": "Legenda", + "DE.Controllers.Main.txtStyle_endnote_text": "Texto da nota final", + "DE.Controllers.Main.txtStyle_footnote_text": "Texto da nota de rodapé", + "DE.Controllers.Main.txtStyle_Heading_1": "Título 1", + "DE.Controllers.Main.txtStyle_Heading_2": "Título 2", + "DE.Controllers.Main.txtStyle_Heading_3": "Título 3", + "DE.Controllers.Main.txtStyle_Heading_4": "Título 4", + "DE.Controllers.Main.txtStyle_Heading_5": "Título 5", + "DE.Controllers.Main.txtStyle_Heading_6": "Título 6", + "DE.Controllers.Main.txtStyle_Heading_7": "Título 7", + "DE.Controllers.Main.txtStyle_Heading_8": "Título 8", + "DE.Controllers.Main.txtStyle_Heading_9": "Título 9", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Citação forte", + "DE.Controllers.Main.txtStyle_List_Paragraph": "Parágrafo em lista", + "DE.Controllers.Main.txtStyle_No_Spacing": "Sem espaçamento", + "DE.Controllers.Main.txtStyle_Normal": "Normal", + "DE.Controllers.Main.txtStyle_Quote": "Citar", + "DE.Controllers.Main.txtStyle_Subtitle": "Subtítulo", + "DE.Controllers.Main.txtStyle_Title": "Titulo", + "DE.Controllers.Main.txtSyntaxError": "Erro de Sintaxe", + "DE.Controllers.Main.txtTableInd": "O Índice da Tabela Não Pode Ser Zero", + "DE.Controllers.Main.txtTableOfContents": "Índice remissivo", + "DE.Controllers.Main.txtTableOfFigures": "Tabela de figuras", + "DE.Controllers.Main.txtTOCHeading": "Cabeçalho do Índice", + "DE.Controllers.Main.txtTooLarge": "Número Demasiado Grande para Formatar", + "DE.Controllers.Main.txtTypeEquation": "Digite uma equação aqui.", + "DE.Controllers.Main.txtUndefBookmark": "Marcador Não-Definido", + "DE.Controllers.Main.txtXAxis": "Eixo X", + "DE.Controllers.Main.txtYAxis": "Eixo Y", + "DE.Controllers.Main.txtZeroDivide": "Divisão por zero", + "DE.Controllers.Main.unknownErrorText": "Erro desconhecido.", + "DE.Controllers.Main.unsupportedBrowserErrorText": "Seu navegador não é suportado.", + "DE.Controllers.Main.uploadDocExtMessage": "Formato de documento desconhecido.", + "DE.Controllers.Main.uploadDocFileCountMessage": "Nenhum documento foi carregado.", + "DE.Controllers.Main.uploadDocSizeMessage": "Excedeu o limite de tamanho para o documento.", + "DE.Controllers.Main.uploadImageExtMessage": "Formato desconhecido", + "DE.Controllers.Main.uploadImageFileCountMessage": "Nenhuma imagem carregada.", + "DE.Controllers.Main.uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.", + "DE.Controllers.Main.uploadImageTextText": "A enviar imagem...", + "DE.Controllers.Main.uploadImageTitleText": "A enviar imagem", + "DE.Controllers.Main.waitText": "Aguarde...", + "DE.Controllers.Main.warnBrowserIE9": "A aplicação não funciona corretamente com IE9. Deve utilizar IE10 ou superior", + "DE.Controllers.Main.warnBrowserZoom": "A definição 'zoom' do seu navegador não é totalmente suportada. Prima Ctrl+0 para repor o valor padrão.", + "DE.Controllers.Main.warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
Contacte o administrador para obter mais detalhes.", + "DE.Controllers.Main.warnLicenseExp": "A sua licença expirou.
Deve atualizar a licença e recarregar a página.", + "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licença expirada.
Não pode editar o documento.
Contacte o administrador de sistemas.", + "DE.Controllers.Main.warnLicenseLimitedRenewed": "Tem que renovar a sua licença.
A edição de documentos está limitada.
Contacte o administrador de sistemas para obter acesso completo.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", + "DE.Controllers.Main.warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
Contacte a equipa comercial %1 para saber mais sobre os termos de licenciamento.", + "DE.Controllers.Main.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", + "DE.Controllers.Main.warnProcessRightsChange": "Você não tem permissões para editar o ficheiro.", + "DE.Controllers.Navigation.txtBeginning": "Início do documento", + "DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento", + "DE.Controllers.Statusbar.textDisconnect": "Sem Ligação
A tentar ligar. Por favor, verifique as definições de ligação.", + "DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", + "DE.Controllers.Statusbar.textSetTrackChanges": "Está no modo Registar Alterações", + "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", + "DE.Controllers.Statusbar.tipReview": "Rastrear alterações", + "DE.Controllers.Statusbar.zoomText": "Zoom {0}%", + "DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
Do you want to continue?", + "DE.Controllers.Toolbar.dataUrl": "Colar um URL de dados", + "DE.Controllers.Toolbar.notcriticalErrorTitle": "Aviso", + "DE.Controllers.Toolbar.textAccent": "Destaques", + "DE.Controllers.Toolbar.textBracket": "Parênteses", + "DE.Controllers.Toolbar.textEmptyImgUrl": "Tem que especificar o URL da imagem.", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Precisa de especificar o URL.", + "DE.Controllers.Toolbar.textFontSizeErr": "O valor inserido não está correto.
Introduza um valor numérico entre 1 e 300.", + "DE.Controllers.Toolbar.textFraction": "Frações", + "DE.Controllers.Toolbar.textFunction": "Funções", + "DE.Controllers.Toolbar.textGroup": "Grupo", + "DE.Controllers.Toolbar.textInsert": "Inserir", + "DE.Controllers.Toolbar.textIntegral": "Inteiros", + "DE.Controllers.Toolbar.textLargeOperator": "Grandes operadores", + "DE.Controllers.Toolbar.textLimitAndLog": "Limites e logaritmos", + "DE.Controllers.Toolbar.textMatrix": "Matrizes", + "DE.Controllers.Toolbar.textOperator": "Operadores", + "DE.Controllers.Toolbar.textRadical": "Radicais", + "DE.Controllers.Toolbar.textRecentlyUsed": "Utilizado recentemente", + "DE.Controllers.Toolbar.textScript": "Scripts", + "DE.Controllers.Toolbar.textSymbols": "Símbolos", + "DE.Controllers.Toolbar.textTabForms": "Formulários", + "DE.Controllers.Toolbar.textWarning": "Aviso", + "DE.Controllers.Toolbar.txtAccent_Accent": "Agudo", + "DE.Controllers.Toolbar.txtAccent_ArrowD": "Seta para direita-esquerda acima", + "DE.Controllers.Toolbar.txtAccent_ArrowL": "Seta adiante para cima", + "DE.Controllers.Toolbar.txtAccent_ArrowR": "Seta para direita acima", + "DE.Controllers.Toolbar.txtAccent_Bar": "Barra", + "DE.Controllers.Toolbar.txtAccent_BarBot": "Barra inferior", + "DE.Controllers.Toolbar.txtAccent_BarTop": "Barra superior", + "DE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula embalada (com Placeholder)", + "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula embalada(Exemplo)", + "DE.Controllers.Toolbar.txtAccent_Check": "Verificar", + "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Chave Inferior", + "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Chave Superior", + "DE.Controllers.Toolbar.txtAccent_Custom_1": "Vetor A", + "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC com barra superior ", + "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y com barra superior", + "DE.Controllers.Toolbar.txtAccent_DDDot": "Ponto triplo", + "DE.Controllers.Toolbar.txtAccent_DDot": "Ponto duplo", + "DE.Controllers.Toolbar.txtAccent_Dot": "Ponto", + "DE.Controllers.Toolbar.txtAccent_DoubleBar": "Barra superior dupla", + "DE.Controllers.Toolbar.txtAccent_Grave": "Grave", + "DE.Controllers.Toolbar.txtAccent_GroupBot": "Agrupamento de caracteres abaixo", + "DE.Controllers.Toolbar.txtAccent_GroupTop": "Agrupamento de caracteres acima", + "DE.Controllers.Toolbar.txtAccent_HarpoonL": "Arpão adiante para cima", + "DE.Controllers.Toolbar.txtAccent_HarpoonR": "Arpão para direita acima", + "DE.Controllers.Toolbar.txtAccent_Hat": "Acento circunflexo", + "DE.Controllers.Toolbar.txtAccent_Smile": "Breve", + "DE.Controllers.Toolbar.txtAccent_Tilde": "Til", + "DE.Controllers.Toolbar.txtBracket_Angle": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Parênteses com separadores", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Parênteses com separadores", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_Curve": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Parênteses com separadores", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (Duas Condições)", + "DE.Controllers.Toolbar.txtBracket_Custom_2": "Casos (Três Condições)", + "DE.Controllers.Toolbar.txtBracket_Custom_3": "Objeto Empilhado", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "Objeto Empilhado", + "DE.Controllers.Toolbar.txtBracket_Custom_5": "Exemplo de casos", + "DE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficiente binominal", + "DE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficiente binominal", + "DE.Controllers.Toolbar.txtBracket_Line": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_LowLim": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_Round": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parênteses com separadores", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_Square": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_UppLim": "Parênteses", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Colchete Simples", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Colchete Simples", + "DE.Controllers.Toolbar.txtFractionDiagonal": "Fração inclinada", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "Diferencial", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "Diferencial", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "Diferencial", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "Diferencial", + "DE.Controllers.Toolbar.txtFractionHorizontal": "Fração linear", + "DE.Controllers.Toolbar.txtFractionPi_2": "Pi sobre 2", + "DE.Controllers.Toolbar.txtFractionSmall": "Fração pequena", + "DE.Controllers.Toolbar.txtFractionVertical": "Fração Empilhada", + "DE.Controllers.Toolbar.txtFunction_1_Cos": "Função cosseno inverso", + "DE.Controllers.Toolbar.txtFunction_1_Cosh": "Função cosseno inverso hiperbólico", + "DE.Controllers.Toolbar.txtFunction_1_Cot": "Função cotangente inversa", + "DE.Controllers.Toolbar.txtFunction_1_Coth": "Função cotangente inversa hiperbólica", + "DE.Controllers.Toolbar.txtFunction_1_Csc": "Função cossecante inversa", + "DE.Controllers.Toolbar.txtFunction_1_Csch": "Função cossecante inversa hiperbólica", + "DE.Controllers.Toolbar.txtFunction_1_Sec": "Função secante inversa", + "DE.Controllers.Toolbar.txtFunction_1_Sech": "Função secante inversa hiperbólica", + "DE.Controllers.Toolbar.txtFunction_1_Sin": "Função seno inverso", + "DE.Controllers.Toolbar.txtFunction_1_Sinh": "Função seno inverso hiperbólico", + "DE.Controllers.Toolbar.txtFunction_1_Tan": "Função tangente inversa", + "DE.Controllers.Toolbar.txtFunction_1_Tanh": "Função tangente inversa hiperbólica", + "DE.Controllers.Toolbar.txtFunction_Cos": "Função cosseno", + "DE.Controllers.Toolbar.txtFunction_Cosh": "Função cosseno hiperbólico", + "DE.Controllers.Toolbar.txtFunction_Cot": "Função cotangente", + "DE.Controllers.Toolbar.txtFunction_Coth": "Função cotangente hiperbólica", + "DE.Controllers.Toolbar.txtFunction_Csc": "Função cossecante", + "DE.Controllers.Toolbar.txtFunction_Csch": "Função co-secante hiperbólica", + "DE.Controllers.Toolbar.txtFunction_Custom_1": "Teta seno", + "DE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "DE.Controllers.Toolbar.txtFunction_Custom_3": "Fórmula da tangente", + "DE.Controllers.Toolbar.txtFunction_Sec": "Função secante", + "DE.Controllers.Toolbar.txtFunction_Sech": "Função secante hiperbólica", + "DE.Controllers.Toolbar.txtFunction_Sin": "Função de seno", + "DE.Controllers.Toolbar.txtFunction_Sinh": "Função seno hiperbólico", + "DE.Controllers.Toolbar.txtFunction_Tan": "Função da tangente", + "DE.Controllers.Toolbar.txtFunction_Tanh": "Função tangente hiperbólica", + "DE.Controllers.Toolbar.txtIntegral": "Inteiro", + "DE.Controllers.Toolbar.txtIntegral_dtheta": "Teta diferencial", + "DE.Controllers.Toolbar.txtIntegral_dx": "Diferencial x", + "DE.Controllers.Toolbar.txtIntegral_dy": "Diferencial y", + "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Inteiro", + "DE.Controllers.Toolbar.txtIntegralDouble": "Inteiro duplo", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Inteiro duplo", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Inteiro duplo", + "DE.Controllers.Toolbar.txtIntegralOriented": "Contorno integral", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contorno integral", + "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integral de Superfície", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integral de Superfície", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integral de Superfície", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contorno integral", + "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integral de Volume", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integral de Volume", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integral de Volume", + "DE.Controllers.Toolbar.txtIntegralSubSup": "Inteiro", + "DE.Controllers.Toolbar.txtIntegralTriple": "Inteiro triplo", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Inteiro triplo", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Inteiro triplo", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Triangular", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Triangular", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Triangular", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Triangular", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Triangular", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coproduto", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coproduto", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coproduto", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coproduto", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coproduto", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Somatório", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Somatório", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Somatório", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produto", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "União", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Interseção", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Interseção", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Interseção", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Interseção", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Interseção", + "DE.Controllers.Toolbar.txtLargeOperator_Prod": "Produto", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produto", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produto", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produto", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produto", + "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Somatório", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Somatório", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Somatório", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Somatório", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Somatório", + "DE.Controllers.Toolbar.txtLargeOperator_Union": "União", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "União", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "União", + "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "União", + "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "União", + "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemplo limite", + "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemplo máximo", + "DE.Controllers.Toolbar.txtLimitLog_Lim": "Limite", + "DE.Controllers.Toolbar.txtLimitLog_Ln": "Logaritmo natural", + "DE.Controllers.Toolbar.txtLimitLog_Log": "Logaritmo", + "DE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmo", + "DE.Controllers.Toolbar.txtLimitLog_Max": "Máximo", + "DE.Controllers.Toolbar.txtLimitLog_Min": "Mínimo", + "DE.Controllers.Toolbar.txtMarginsH": "As margens superior e inferior são muito grandes para a altura indicada", + "DE.Controllers.Toolbar.txtMarginsW": "As margens direita e esquerda são muito grandes para a largura indicada", + "DE.Controllers.Toolbar.txtMatrix_1_2": "Matriz vazia 1x2", + "DE.Controllers.Toolbar.txtMatrix_1_3": "Matriz vazia 1x3", + "DE.Controllers.Toolbar.txtMatrix_2_1": "Matriz vazia 2x1", + "DE.Controllers.Toolbar.txtMatrix_2_2": "Matriz vazia 2x2", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matriz vazia com parênteses", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matriz vazia com parênteses", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matriz vazia com parênteses", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matriz vazia com parênteses", + "DE.Controllers.Toolbar.txtMatrix_2_3": "Matriz vazia 2x3", + "DE.Controllers.Toolbar.txtMatrix_3_1": "Matriz vazia 3x1", + "DE.Controllers.Toolbar.txtMatrix_3_2": "Matriz vazia 3x2", + "DE.Controllers.Toolbar.txtMatrix_3_3": "Matriz vazia 3x3", + "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Pontos da linha base", + "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Pontos de linha média", + "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Pontos diagonais", + "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Pontos verticais", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matriz dispersa", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matriz dispersa", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matriz da identidade 2x2", + "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matriz da identidade 3x3", + "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matriz da identidade 3x3", + "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matriz da identidade 3x3", + "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Seta para direita esquerda abaixo", + "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Seta para direita-esquerda acima", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Seta à esquerda para baixo", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Seta adiante para cima", + "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Seta para direita abaixo", + "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Seta para direita acima", + "DE.Controllers.Toolbar.txtOperator_ColonEquals": "Dois-pontos-Sinal de Igual", + "DE.Controllers.Toolbar.txtOperator_Custom_1": "Resultados", + "DE.Controllers.Toolbar.txtOperator_Custom_2": "Resultados de Delta", + "DE.Controllers.Toolbar.txtOperator_Definition": "Igual a por definição", + "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta igual a", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Seta para direita esquerda abaixo", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Seta para direita-esquerda acima", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Seta à esquerda para baixo", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Seta adiante para cima", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Seta para direita abaixo", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Seta para direita acima", + "DE.Controllers.Toolbar.txtOperator_EqualsEquals": "Sinal de Igual-Sinal de Igual", + "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Sinal de Menos-Sinal de Igual", + "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Sinal de Mais-Sinal de Igual", + "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Medido por", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "DE.Controllers.Toolbar.txtRadicalRoot_2": "Raiz quadrada com grau", + "DE.Controllers.Toolbar.txtRadicalRoot_3": "Raiz cúbica", + "DE.Controllers.Toolbar.txtRadicalRoot_n": "Radical com grau", + "DE.Controllers.Toolbar.txtRadicalSqrt": "Raiz quadrada", + "DE.Controllers.Toolbar.txtScriptCustom_1": "Script", + "DE.Controllers.Toolbar.txtScriptCustom_2": "Script", + "DE.Controllers.Toolbar.txtScriptCustom_3": "Script", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "DE.Controllers.Toolbar.txtScriptSub": "Subscrito", + "DE.Controllers.Toolbar.txtScriptSubSup": "Subscrito-Sobrescrito", + "DE.Controllers.Toolbar.txtScriptSubSupLeft": "LeftSubscript-Superscript", + "DE.Controllers.Toolbar.txtScriptSup": "Sobrescrito", + "DE.Controllers.Toolbar.txtSymbol_about": "Aproximadamente", + "DE.Controllers.Toolbar.txtSymbol_additional": "Complemento", + "DE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "DE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "DE.Controllers.Toolbar.txtSymbol_approx": "Quase igual a", + "DE.Controllers.Toolbar.txtSymbol_ast": "Operador de asterisco", + "DE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "DE.Controllers.Toolbar.txtSymbol_beth": "Aposta", + "DE.Controllers.Toolbar.txtSymbol_bullet": "Operador de marcador", + "DE.Controllers.Toolbar.txtSymbol_cap": "Interseção", + "DE.Controllers.Toolbar.txtSymbol_cbrt": "Raiz cúbica", + "DE.Controllers.Toolbar.txtSymbol_cdots": "Reticências horizontais de linha média", + "DE.Controllers.Toolbar.txtSymbol_celsius": "Graus Celsius", + "DE.Controllers.Toolbar.txtSymbol_chi": "Ki", + "DE.Controllers.Toolbar.txtSymbol_cong": "Aproximadamente igual a", + "DE.Controllers.Toolbar.txtSymbol_cup": "União", + "DE.Controllers.Toolbar.txtSymbol_ddots": "Reticências diagonal para baixo à direita", + "DE.Controllers.Toolbar.txtSymbol_degree": "Graus", + "DE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "DE.Controllers.Toolbar.txtSymbol_div": "Sinal de divisão", + "DE.Controllers.Toolbar.txtSymbol_downarrow": "Seta para baixo", + "DE.Controllers.Toolbar.txtSymbol_emptyset": "Conjunto vazio", + "DE.Controllers.Toolbar.txtSymbol_epsilon": "Epsílon", + "DE.Controllers.Toolbar.txtSymbol_equals": "Igual", + "DE.Controllers.Toolbar.txtSymbol_equiv": "Idêntico a", + "DE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "DE.Controllers.Toolbar.txtSymbol_exists": "Existe", + "DE.Controllers.Toolbar.txtSymbol_factorial": "Fatorial", + "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus Fahrenheit", + "DE.Controllers.Toolbar.txtSymbol_forall": "Para todos", + "DE.Controllers.Toolbar.txtSymbol_gamma": "Gama", + "DE.Controllers.Toolbar.txtSymbol_geq": "Superior a ou igual a", + "DE.Controllers.Toolbar.txtSymbol_gg": "Muito superior a", + "DE.Controllers.Toolbar.txtSymbol_greater": "Superior a", + "DE.Controllers.Toolbar.txtSymbol_in": "Elemento de", + "DE.Controllers.Toolbar.txtSymbol_inc": "Incremento", + "DE.Controllers.Toolbar.txtSymbol_infinity": "Infinidade", + "DE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "DE.Controllers.Toolbar.txtSymbol_kappa": "Capa", + "DE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "DE.Controllers.Toolbar.txtSymbol_leftarrow": "Seta para esquerda", + "DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Seta esquerda-direita", + "DE.Controllers.Toolbar.txtSymbol_leq": "Inferior a ou igual a", + "DE.Controllers.Toolbar.txtSymbol_less": "Inferior a", + "DE.Controllers.Toolbar.txtSymbol_ll": "Muito inferior a", + "DE.Controllers.Toolbar.txtSymbol_minus": "Menos", + "DE.Controllers.Toolbar.txtSymbol_mp": "Sinal de Menos-Sinal de Mais", + "DE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "DE.Controllers.Toolbar.txtSymbol_neq": "Não igual a", + "DE.Controllers.Toolbar.txtSymbol_ni": "Contém como membro", + "DE.Controllers.Toolbar.txtSymbol_not": "Não entrar", + "DE.Controllers.Toolbar.txtSymbol_notexists": "Não existe", + "DE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "DE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "DE.Controllers.Toolbar.txtSymbol_omega": "Ômega", + "DE.Controllers.Toolbar.txtSymbol_partial": "Diferencial parcial", + "DE.Controllers.Toolbar.txtSymbol_percent": "Porcentagem", + "DE.Controllers.Toolbar.txtSymbol_phi": "Fi", + "DE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "DE.Controllers.Toolbar.txtSymbol_plus": "Mais", + "DE.Controllers.Toolbar.txtSymbol_pm": "Sinal de Menos-Sinal de Igual", + "DE.Controllers.Toolbar.txtSymbol_propto": "Proporcional a", + "DE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "DE.Controllers.Toolbar.txtSymbol_qdrt": "Quarta raiz", + "DE.Controllers.Toolbar.txtSymbol_qed": "Fim da prova", + "DE.Controllers.Toolbar.txtSymbol_rddots": "Reticências diagonal direitas para cima", + "DE.Controllers.Toolbar.txtSymbol_rho": "Rô", + "DE.Controllers.Toolbar.txtSymbol_rightarrow": "Seta para direita", + "DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "DE.Controllers.Toolbar.txtSymbol_sqrt": "Sinal de Radical", + "DE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "DE.Controllers.Toolbar.txtSymbol_therefore": "Portanto", + "DE.Controllers.Toolbar.txtSymbol_theta": "Teta", + "DE.Controllers.Toolbar.txtSymbol_times": "Sinal de multiplicação", + "DE.Controllers.Toolbar.txtSymbol_uparrow": "Seta para cima", + "DE.Controllers.Toolbar.txtSymbol_upsilon": "Ípsilon", + "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Variante de Epsílon", + "DE.Controllers.Toolbar.txtSymbol_varphi": "Variante de fi", + "DE.Controllers.Toolbar.txtSymbol_varpi": "Variante de Pi", + "DE.Controllers.Toolbar.txtSymbol_varrho": "Variante de Rô", + "DE.Controllers.Toolbar.txtSymbol_varsigma": "Variante de Sigma", + "DE.Controllers.Toolbar.txtSymbol_vartheta": "Variante de Teta", + "DE.Controllers.Toolbar.txtSymbol_vdots": "Reticências verticais", + "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "DE.Controllers.Viewport.textFitPage": "Ajustar à página", + "DE.Controllers.Viewport.textFitWidth": "Ajustar à largura", + "DE.Controllers.Viewport.txtDarkMode": "Modo escuro", + "DE.Views.AddNewCaptionLabelDialog.textLabel": "Etiqueta:", + "DE.Views.AddNewCaptionLabelDialog.textLabelError": "Etiqueta não deve estar em branco.", + "DE.Views.BookmarksDialog.textAdd": "Adicionar", + "DE.Views.BookmarksDialog.textBookmarkName": "Nome do marcador", + "DE.Views.BookmarksDialog.textClose": "Fechar", + "DE.Views.BookmarksDialog.textCopy": "Copiar", + "DE.Views.BookmarksDialog.textDelete": "Eliminar", + "DE.Views.BookmarksDialog.textGetLink": "Obter ligação", + "DE.Views.BookmarksDialog.textGoto": "Ir para", + "DE.Views.BookmarksDialog.textHidden": "Favoritos ocultos", + "DE.Views.BookmarksDialog.textLocation": "Localização", + "DE.Views.BookmarksDialog.textName": "Nome", + "DE.Views.BookmarksDialog.textSort": "Ordenar por", + "DE.Views.BookmarksDialog.textTitle": "Marcadores", + "DE.Views.BookmarksDialog.txtInvalidName": "Apenas pode utilizar letras, dígitos e sublinhado (_) para o nome do marcador e deve começar com uma letra", + "DE.Views.CaptionDialog.textAdd": "Adicionar", + "DE.Views.CaptionDialog.textAfter": "Depois", + "DE.Views.CaptionDialog.textBefore": "Antes", + "DE.Views.CaptionDialog.textCaption": "Legenda", + "DE.Views.CaptionDialog.textChapter": "Capítulo inicia com estilo", + "DE.Views.CaptionDialog.textChapterInc": "Inclui o número do capítulo", + "DE.Views.CaptionDialog.textColon": "Dois pontos", + "DE.Views.CaptionDialog.textDash": "traço", + "DE.Views.CaptionDialog.textDelete": "Eliminar", + "DE.Views.CaptionDialog.textEquation": "Equação", + "DE.Views.CaptionDialog.textExamples": "Exemplos: Tabela 2-A, Imagem 1.IV", + "DE.Views.CaptionDialog.textExclude": "Eliminar rótulo da legenda", + "DE.Views.CaptionDialog.textFigure": "Figura", + "DE.Views.CaptionDialog.textHyphen": "hífen", + "DE.Views.CaptionDialog.textInsert": "Inserir", + "DE.Views.CaptionDialog.textLabel": "Etiqueta", + "DE.Views.CaptionDialog.textLongDash": "traço longo", + "DE.Views.CaptionDialog.textNumbering": "Numeração", + "DE.Views.CaptionDialog.textPeriod": "período", + "DE.Views.CaptionDialog.textSeparator": "Use separador", + "DE.Views.CaptionDialog.textTable": "Tabela", + "DE.Views.CaptionDialog.textTitle": "Inserir legenda", + "DE.Views.CellsAddDialog.textCol": "Colunas", + "DE.Views.CellsAddDialog.textDown": "Abaixo do cursor", + "DE.Views.CellsAddDialog.textLeft": "Para a esquerda", + "DE.Views.CellsAddDialog.textRight": "Para a direita", + "DE.Views.CellsAddDialog.textRow": "Linhas", + "DE.Views.CellsAddDialog.textTitle": "Insira vários", + "DE.Views.CellsAddDialog.textUp": "Acima do cursor", + "DE.Views.CellsRemoveDialog.textCol": "Eliminar toda a coluna", + "DE.Views.CellsRemoveDialog.textLeft": "Deslocar células para a esquerda", + "DE.Views.CellsRemoveDialog.textRow": "Eliminar a linha inteira", + "DE.Views.CellsRemoveDialog.textTitle": "Eliminar células", + "DE.Views.ChartSettings.textAdvanced": "Mostrar definições avançadas", + "DE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico", + "DE.Views.ChartSettings.textEditData": "Editar dados", + "DE.Views.ChartSettings.textHeight": "Altura", + "DE.Views.ChartSettings.textOriginalSize": "Tamanho real", + "DE.Views.ChartSettings.textSize": "Tamanho", + "DE.Views.ChartSettings.textStyle": "Estilo", + "DE.Views.ChartSettings.textUndock": "Desafixar do painel", + "DE.Views.ChartSettings.textWidth": "Largura", + "DE.Views.ChartSettings.textWrap": "Estilo de moldagem", + "DE.Views.ChartSettings.txtBehind": "Atrás", + "DE.Views.ChartSettings.txtInFront": "Em frente", + "DE.Views.ChartSettings.txtInline": "Em Linha com o Texto", + "DE.Views.ChartSettings.txtSquare": "Quadrado", + "DE.Views.ChartSettings.txtThrough": "Através", + "DE.Views.ChartSettings.txtTight": "Justo", + "DE.Views.ChartSettings.txtTitle": "Gráfico", + "DE.Views.ChartSettings.txtTopAndBottom": "Parte superior e inferior", + "DE.Views.CompareSettingsDialog.textChar": "Nível de carácter", + "DE.Views.CompareSettingsDialog.textShow": "Mostrar alterações em", + "DE.Views.CompareSettingsDialog.textTitle": "Definições de comparação", + "DE.Views.CompareSettingsDialog.textWord": "Nível de palavra", + "DE.Views.ControlSettingsDialog.strGeneral": "Geral", + "DE.Views.ControlSettingsDialog.textAdd": "Adicionar", + "DE.Views.ControlSettingsDialog.textAppearance": "Aparência", + "DE.Views.ControlSettingsDialog.textApplyAll": "Aplicar a todos", + "DE.Views.ControlSettingsDialog.textBox": "Caixa delimitadora", + "DE.Views.ControlSettingsDialog.textChange": "Editar", + "DE.Views.ControlSettingsDialog.textCheckbox": "Caixa de seleção", + "DE.Views.ControlSettingsDialog.textChecked": "Símbolo marcado", + "DE.Views.ControlSettingsDialog.textColor": "Cor", + "DE.Views.ControlSettingsDialog.textCombobox": "Caixa de combinação", + "DE.Views.ControlSettingsDialog.textDate": "Formato da data", + "DE.Views.ControlSettingsDialog.textDelete": "Eliminar", + "DE.Views.ControlSettingsDialog.textDisplayName": "Nome de exibição", + "DE.Views.ControlSettingsDialog.textDown": "Para baixo", + "DE.Views.ControlSettingsDialog.textDropDown": "Lista suspensa", + "DE.Views.ControlSettingsDialog.textFormat": "Mostra a data assim", + "DE.Views.ControlSettingsDialog.textLang": "Idioma", + "DE.Views.ControlSettingsDialog.textLock": "Bloqueio", + "DE.Views.ControlSettingsDialog.textName": "Título", + "DE.Views.ControlSettingsDialog.textNone": "Nenhum", + "DE.Views.ControlSettingsDialog.textPlaceholder": "Marcador de posição", + "DE.Views.ControlSettingsDialog.textShowAs": "Mostrar como", + "DE.Views.ControlSettingsDialog.textSystemColor": "Sistema", + "DE.Views.ControlSettingsDialog.textTag": "Etiqueta", + "DE.Views.ControlSettingsDialog.textTitle": "Definições de controlo de conteúdo", + "DE.Views.ControlSettingsDialog.textUnchecked": "Símbolo desmarcado", + "DE.Views.ControlSettingsDialog.textUp": "Para cima", + "DE.Views.ControlSettingsDialog.textValue": "Valor", + "DE.Views.ControlSettingsDialog.tipChange": "Alterar símbolo", + "DE.Views.ControlSettingsDialog.txtLockDelete": "Controlo de conteúdo não pode ser eliminado", + "DE.Views.ControlSettingsDialog.txtLockEdit": "Não é possível editar o conteúdo", + "DE.Views.CrossReferenceDialog.textAboveBelow": "Acima/abaixo", + "DE.Views.CrossReferenceDialog.textBookmark": "Marcador", + "DE.Views.CrossReferenceDialog.textBookmarkText": "Texto do marcador", + "DE.Views.CrossReferenceDialog.textCaption": "Legenda inteira", + "DE.Views.CrossReferenceDialog.textEmpty": "A referência do pedido está vazia.", + "DE.Views.CrossReferenceDialog.textEndnote": "Nota final", + "DE.Views.CrossReferenceDialog.textEndNoteNum": "Número de nota final", + "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Número da nota final (formatado)", + "DE.Views.CrossReferenceDialog.textEquation": "Equação", + "DE.Views.CrossReferenceDialog.textFigure": "Figura", + "DE.Views.CrossReferenceDialog.textFootnote": "Nota de rodapé", + "DE.Views.CrossReferenceDialog.textHeading": "Título", + "DE.Views.CrossReferenceDialog.textHeadingNum": "Número do título", + "DE.Views.CrossReferenceDialog.textHeadingNumFull": "Número do título (contexto total)", + "DE.Views.CrossReferenceDialog.textHeadingNumNo": "Número do título (sem contexto)", + "DE.Views.CrossReferenceDialog.textHeadingText": "Texto do título", + "DE.Views.CrossReferenceDialog.textIncludeAbove": "Incluir acima/abaixo", + "DE.Views.CrossReferenceDialog.textInsert": "Inserir", + "DE.Views.CrossReferenceDialog.textInsertAs": "Inserir como hiperligação", + "DE.Views.CrossReferenceDialog.textLabelNum": "Apenas etiqueta e número", + "DE.Views.CrossReferenceDialog.textNoteNum": "Número da nota de rodapé", + "DE.Views.CrossReferenceDialog.textNoteNumForm": "Número da nota de rodapé (formatado)", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "Apenas texto de legenda", + "DE.Views.CrossReferenceDialog.textPageNum": "Número de página", + "DE.Views.CrossReferenceDialog.textParagraph": "Item numerado", + "DE.Views.CrossReferenceDialog.textParaNum": "Número do parágrafo", + "DE.Views.CrossReferenceDialog.textParaNumFull": "Número do parágrafo (contexto completo)", + "DE.Views.CrossReferenceDialog.textParaNumNo": "Número do parágrafo (sem contexto)", + "DE.Views.CrossReferenceDialog.textSeparate": "Separar números com", + "DE.Views.CrossReferenceDialog.textTable": "Tabela", + "DE.Views.CrossReferenceDialog.textText": "Texto do parágrafo", + "DE.Views.CrossReferenceDialog.textWhich": "Para qual legenda", + "DE.Views.CrossReferenceDialog.textWhichBookmark": "Para qual favorito", + "DE.Views.CrossReferenceDialog.textWhichEndnote": "Para qual nota final", + "DE.Views.CrossReferenceDialog.textWhichHeading": "De qual título", + "DE.Views.CrossReferenceDialog.textWhichNote": "Para qual nota de rodapé", + "DE.Views.CrossReferenceDialog.textWhichPara": "Para qual item numerado", + "DE.Views.CrossReferenceDialog.txtReference": "Inserir referência a", + "DE.Views.CrossReferenceDialog.txtTitle": "Referência-cruzada", + "DE.Views.CrossReferenceDialog.txtType": "Tipo de Referência", + "DE.Views.CustomColumnsDialog.textColumns": "Número de colunas", + "DE.Views.CustomColumnsDialog.textSeparator": "Separador de colunas", + "DE.Views.CustomColumnsDialog.textSpacing": "Espaçamento entre colunas", + "DE.Views.CustomColumnsDialog.textTitle": "Colunas", + "DE.Views.DateTimeDialog.confirmDefault": "Definir formato predefinido para {0}: \"{1}\"", + "DE.Views.DateTimeDialog.textDefault": "Definir como predefinido", + "DE.Views.DateTimeDialog.textFormat": "Formatos", + "DE.Views.DateTimeDialog.textLang": "Idioma", + "DE.Views.DateTimeDialog.textUpdate": "Atualizar automaticamente", + "DE.Views.DateTimeDialog.txtTitle": "Data e Hora", + "DE.Views.DocumentHolder.aboveText": "Acima", + "DE.Views.DocumentHolder.addCommentText": "Adicionar comentário", + "DE.Views.DocumentHolder.advancedDropCapText": "Definições de capitulares", + "DE.Views.DocumentHolder.advancedFrameText": "Definições avançadas de moldura", + "DE.Views.DocumentHolder.advancedParagraphText": "Definições avançadas de parágrafo", + "DE.Views.DocumentHolder.advancedTableText": "Definições avançadas de tabela", + "DE.Views.DocumentHolder.advancedText": "Definições avançadas", + "DE.Views.DocumentHolder.alignmentText": "Alinhamento", + "DE.Views.DocumentHolder.belowText": "Abaixo", + "DE.Views.DocumentHolder.breakBeforeText": "Quebra de página antes", + "DE.Views.DocumentHolder.bulletsText": "Marcadores e numeração", + "DE.Views.DocumentHolder.cellAlignText": "Alinhamento vertical da célula", + "DE.Views.DocumentHolder.cellText": "Célula", + "DE.Views.DocumentHolder.centerText": "Centro", + "DE.Views.DocumentHolder.chartText": "Definições avançadas de gráfico", + "DE.Views.DocumentHolder.columnText": "Coluna", + "DE.Views.DocumentHolder.deleteColumnText": "Eliminar coluna", + "DE.Views.DocumentHolder.deleteRowText": "Excluir linha", + "DE.Views.DocumentHolder.deleteTableText": "Eliminar tabela", + "DE.Views.DocumentHolder.deleteText": "Excluir", + "DE.Views.DocumentHolder.direct270Text": "Rodar texto para cima", + "DE.Views.DocumentHolder.direct90Text": "Rodar texto para baixo", + "DE.Views.DocumentHolder.directHText": "Horizontal", + "DE.Views.DocumentHolder.directionText": "Text Direction", + "DE.Views.DocumentHolder.editChartText": "Editar dados", + "DE.Views.DocumentHolder.editFooterText": "Editar rodapé", + "DE.Views.DocumentHolder.editHeaderText": "Editar cabeçalho", + "DE.Views.DocumentHolder.editHyperlinkText": "Editar hiperligação", + "DE.Views.DocumentHolder.guestText": "Visitante", + "DE.Views.DocumentHolder.hyperlinkText": "Hiperligação", + "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar tudo", + "DE.Views.DocumentHolder.ignoreSpellText": "Ignorar", + "DE.Views.DocumentHolder.imageText": "Definições avançadas de imagem", + "DE.Views.DocumentHolder.insertColumnLeftText": "Coluna esquerda", + "DE.Views.DocumentHolder.insertColumnRightText": "Coluna direita", + "DE.Views.DocumentHolder.insertColumnText": "Inserir coluna", + "DE.Views.DocumentHolder.insertRowAboveText": "Linha acima", + "DE.Views.DocumentHolder.insertRowBelowText": "Linha abaixo", + "DE.Views.DocumentHolder.insertRowText": "Inserir linha", + "DE.Views.DocumentHolder.insertText": "Inserir", + "DE.Views.DocumentHolder.keepLinesText": "Manter linhas juntas", + "DE.Views.DocumentHolder.langText": "Selecionar idioma", + "DE.Views.DocumentHolder.leftText": "Esquerda", + "DE.Views.DocumentHolder.loadSpellText": "Carregando variantes...", + "DE.Views.DocumentHolder.mergeCellsText": "Mesclar células", + "DE.Views.DocumentHolder.moreText": "Mais variantes...", + "DE.Views.DocumentHolder.noSpellVariantsText": "Sem varientes", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Aviso", + "DE.Views.DocumentHolder.originalSizeText": "Tamanho padrão", + "DE.Views.DocumentHolder.paragraphText": "Parágrafo", + "DE.Views.DocumentHolder.removeHyperlinkText": "Remover hiperligação", + "DE.Views.DocumentHolder.rightText": "Direita", + "DE.Views.DocumentHolder.rowText": "Linha", + "DE.Views.DocumentHolder.saveStyleText": "Criar novo estilo", + "DE.Views.DocumentHolder.selectCellText": "Selecionar célula", + "DE.Views.DocumentHolder.selectColumnText": "Selecionar coluna", + "DE.Views.DocumentHolder.selectRowText": "Selecionar linha", + "DE.Views.DocumentHolder.selectTableText": "Selecionar tabela", + "DE.Views.DocumentHolder.selectText": "Selecionar", + "DE.Views.DocumentHolder.shapeText": "Definições avançadas de forma", + "DE.Views.DocumentHolder.spellcheckText": "Verificação ortográfica", + "DE.Views.DocumentHolder.splitCellsText": "Dividir célula...", + "DE.Views.DocumentHolder.splitCellTitleText": "Dividir célula", + "DE.Views.DocumentHolder.strDelete": "Remover assinatura", + "DE.Views.DocumentHolder.strDetails": "Detalhes da assinatura", + "DE.Views.DocumentHolder.strSetup": "Definições de Assinatura", + "DE.Views.DocumentHolder.strSign": "Assinar", + "DE.Views.DocumentHolder.styleText": "Formatting as Style", + "DE.Views.DocumentHolder.tableText": "Tabela", + "DE.Views.DocumentHolder.textAccept": "Aceitar Alteração", + "DE.Views.DocumentHolder.textAlign": "Alinhar", + "DE.Views.DocumentHolder.textArrange": "Dispor", + "DE.Views.DocumentHolder.textArrangeBack": "Enviar para plano de fundo", + "DE.Views.DocumentHolder.textArrangeBackward": "Mover para trás", + "DE.Views.DocumentHolder.textArrangeForward": "Mover para frente", + "DE.Views.DocumentHolder.textArrangeFront": "Trazer para primeiro plano", + "DE.Views.DocumentHolder.textCells": "Células", + "DE.Views.DocumentHolder.textCol": "Eliminar toda a coluna", + "DE.Views.DocumentHolder.textContentControls": "Controlo de conteúdo", + "DE.Views.DocumentHolder.textContinueNumbering": "Continuar numeração", + "DE.Views.DocumentHolder.textCopy": "Copiar", + "DE.Views.DocumentHolder.textCrop": "Recortar", + "DE.Views.DocumentHolder.textCropFill": "Preencher", + "DE.Views.DocumentHolder.textCropFit": "Ajustar", + "DE.Views.DocumentHolder.textCut": "Cortar", + "DE.Views.DocumentHolder.textDistributeCols": "Distribuir colunas", + "DE.Views.DocumentHolder.textDistributeRows": "Distribuir linhas", + "DE.Views.DocumentHolder.textEditControls": "Definições de controlo de conteúdo", + "DE.Views.DocumentHolder.textEditPoints": "Editar Pontos", + "DE.Views.DocumentHolder.textEditWrapBoundary": "Editar limites", + "DE.Views.DocumentHolder.textFlipH": "Virar horizontalmente", + "DE.Views.DocumentHolder.textFlipV": "Virar verticalmente", + "DE.Views.DocumentHolder.textFollow": "Seguir movimento", + "DE.Views.DocumentHolder.textFromFile": "De um ficheiro", + "DE.Views.DocumentHolder.textFromStorage": "De um armazenamento", + "DE.Views.DocumentHolder.textFromUrl": "De um URL", + "DE.Views.DocumentHolder.textJoinList": "Juntar à lista anterior", + "DE.Views.DocumentHolder.textLeft": "Deslocar células para a esquerda", + "DE.Views.DocumentHolder.textNest": "Aninhar tabela", + "DE.Views.DocumentHolder.textNextPage": "Página seguinte", + "DE.Views.DocumentHolder.textNumberingValue": "Valor de numeração", + "DE.Views.DocumentHolder.textPaste": "Colar", + "DE.Views.DocumentHolder.textPrevPage": "Página anterior", + "DE.Views.DocumentHolder.textRefreshField": "Atualizar o campo", + "DE.Views.DocumentHolder.textReject": "Rejeitar Alteração", + "DE.Views.DocumentHolder.textRemCheckBox": "Remover caixa de seleção", + "DE.Views.DocumentHolder.textRemComboBox": "Remover caixa de combinação", + "DE.Views.DocumentHolder.textRemDropdown": "Remover lista suspensa", + "DE.Views.DocumentHolder.textRemField": "Remover Campo de Texto", + "DE.Views.DocumentHolder.textRemove": "Remover", + "DE.Views.DocumentHolder.textRemoveControl": "Remover controlo de conteúdo", + "DE.Views.DocumentHolder.textRemPicture": "Remover imagem", + "DE.Views.DocumentHolder.textRemRadioBox": "Remover botão de seleção", + "DE.Views.DocumentHolder.textReplace": "Substituir imagem", + "DE.Views.DocumentHolder.textRotate": "Rodar", + "DE.Views.DocumentHolder.textRotate270": "Rodar 90º à esquerda", + "DE.Views.DocumentHolder.textRotate90": "Rodar 90º à direita", + "DE.Views.DocumentHolder.textRow": "Eliminar a linha inteira", + "DE.Views.DocumentHolder.textSeparateList": "Lista distinta", + "DE.Views.DocumentHolder.textSettings": "Definições", + "DE.Views.DocumentHolder.textSeveral": "Diversas linhas/colunas", + "DE.Views.DocumentHolder.textShapeAlignBottom": "Alinhar em baixo", + "DE.Views.DocumentHolder.textShapeAlignCenter": "Alinhar ao centro", + "DE.Views.DocumentHolder.textShapeAlignLeft": "Alinhar à esquerda", + "DE.Views.DocumentHolder.textShapeAlignMiddle": "Alinhar ao centro", + "DE.Views.DocumentHolder.textShapeAlignRight": "Alinhar à direita", + "DE.Views.DocumentHolder.textShapeAlignTop": "Alinhar em cima", + "DE.Views.DocumentHolder.textStartNewList": "Iniciar nova lista", + "DE.Views.DocumentHolder.textStartNumberingFrom": "Definir valor de numeração", + "DE.Views.DocumentHolder.textTitleCellsRemove": "Eliminar células", + "DE.Views.DocumentHolder.textTOC": "Índice remissivo", + "DE.Views.DocumentHolder.textTOCSettings": "Definições do índice remissivo", + "DE.Views.DocumentHolder.textUndo": "Desfazer", + "DE.Views.DocumentHolder.textUpdateAll": "Recarregar tabela", + "DE.Views.DocumentHolder.textUpdatePages": "Recarregar apenas o número de páginas", + "DE.Views.DocumentHolder.textUpdateTOC": "Recarregar índice remissivo", + "DE.Views.DocumentHolder.textWrap": "Estilo de moldagem", + "DE.Views.DocumentHolder.tipIsLocked": "Este elemento está a ser editado por outro utilizador.", + "DE.Views.DocumentHolder.toDictionaryText": "Adicionar ao dicionário", + "DE.Views.DocumentHolder.txtAddBottom": "Adicionar contorno inferior", + "DE.Views.DocumentHolder.txtAddFractionBar": "Adicionar barra de fração", + "DE.Views.DocumentHolder.txtAddHor": "Adicionar linha horizontal", + "DE.Views.DocumentHolder.txtAddLB": "Adicionar linha inferior esquerda", + "DE.Views.DocumentHolder.txtAddLeft": "Adicionar contorno esquerdo", + "DE.Views.DocumentHolder.txtAddLT": "Adicionar linha superior esquerda", + "DE.Views.DocumentHolder.txtAddRight": "Adicionar contorno direito", + "DE.Views.DocumentHolder.txtAddTop": "Adicionar contorno superior", + "DE.Views.DocumentHolder.txtAddVer": "Adicionar linha vertical", + "DE.Views.DocumentHolder.txtAlignToChar": "Alinhar ao carácter", + "DE.Views.DocumentHolder.txtBehind": "Atrás", + "DE.Views.DocumentHolder.txtBorderProps": "Propriedades do contorno", + "DE.Views.DocumentHolder.txtBottom": "Baixo", + "DE.Views.DocumentHolder.txtColumnAlign": "Alinhamento de colunas", + "DE.Views.DocumentHolder.txtDecreaseArg": "Diminuir tamanho do argumento", + "DE.Views.DocumentHolder.txtDeleteArg": "Eliminar argumento", + "DE.Views.DocumentHolder.txtDeleteBreak": "Eliminar quebra manual", + "DE.Views.DocumentHolder.txtDeleteChars": "Eliminar caracteres anexos ", + "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Eliminar separadores e caracteres anexos", + "DE.Views.DocumentHolder.txtDeleteEq": "Eliminar equação", + "DE.Views.DocumentHolder.txtDeleteGroupChar": "Eliminar carácter", + "DE.Views.DocumentHolder.txtDeleteRadical": "Eliminar radical", + "DE.Views.DocumentHolder.txtDistribHor": "Distribuir horizontalmente", + "DE.Views.DocumentHolder.txtDistribVert": "Distribuir verticalmente", + "DE.Views.DocumentHolder.txtEmpty": "(Vazio)", + "DE.Views.DocumentHolder.txtFractionLinear": "Alterar para fração linear", + "DE.Views.DocumentHolder.txtFractionSkewed": "Alterar para fração inclinada", + "DE.Views.DocumentHolder.txtFractionStacked": "Alterar para fração empilhada", + "DE.Views.DocumentHolder.txtGroup": "Grupo", + "DE.Views.DocumentHolder.txtGroupCharOver": "Caractere sobre texto", + "DE.Views.DocumentHolder.txtGroupCharUnder": "Carácter sob texto", + "DE.Views.DocumentHolder.txtHideBottom": "Ocultar contorno inferior", + "DE.Views.DocumentHolder.txtHideBottomLimit": "Ocultar limite inferior", + "DE.Views.DocumentHolder.txtHideCloseBracket": "Ocultar o parêntesis de fecho", + "DE.Views.DocumentHolder.txtHideDegree": "Ocultar grau", + "DE.Views.DocumentHolder.txtHideHor": "Ocultar linha horizontal", + "DE.Views.DocumentHolder.txtHideLB": "Ocultar linha inferior esquerda", + "DE.Views.DocumentHolder.txtHideLeft": "Ocultar contorno esquerdo", + "DE.Views.DocumentHolder.txtHideLT": "Ocultar linha superior esquerda", + "DE.Views.DocumentHolder.txtHideOpenBracket": "Ocultar parêntese de abertura", + "DE.Views.DocumentHolder.txtHidePlaceholder": "Ocultar espaço reservado", + "DE.Views.DocumentHolder.txtHideRight": "Ocultar contorno direito", + "DE.Views.DocumentHolder.txtHideTop": "Ocultar contorno superior", + "DE.Views.DocumentHolder.txtHideTopLimit": "Ocultar limite superior", + "DE.Views.DocumentHolder.txtHideVer": "Ocultar linha vertical", + "DE.Views.DocumentHolder.txtIncreaseArg": "Aumentar tamanho do argumento", + "DE.Views.DocumentHolder.txtInFront": "Em frente", + "DE.Views.DocumentHolder.txtInline": "Inline", + "DE.Views.DocumentHolder.txtInsertArgAfter": "Inserir argumento após", + "DE.Views.DocumentHolder.txtInsertArgBefore": "Inserir argumento antes", + "DE.Views.DocumentHolder.txtInsertBreak": "Inserir quebra manual", + "DE.Views.DocumentHolder.txtInsertCaption": "Inserir legenda", + "DE.Views.DocumentHolder.txtInsertEqAfter": "Inserir equação a seguir", + "DE.Views.DocumentHolder.txtInsertEqBefore": "Inserir equação à frente", + "DE.Views.DocumentHolder.txtKeepTextOnly": "Manter apenas texto", + "DE.Views.DocumentHolder.txtLimitChange": "Alterar localização de limites", + "DE.Views.DocumentHolder.txtLimitOver": "Limite sobre o texto", + "DE.Views.DocumentHolder.txtLimitUnder": "Limite sob o texto", + "DE.Views.DocumentHolder.txtMatchBrackets": "Combinar parênteses com a altura do argumento", + "DE.Views.DocumentHolder.txtMatrixAlign": "Alinhamento de matriz", + "DE.Views.DocumentHolder.txtOverbar": "Barra por cima do texto", + "DE.Views.DocumentHolder.txtOverwriteCells": "Substituir células", + "DE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação original", + "DE.Views.DocumentHolder.txtPressLink": "Prima Ctrl e clique na ligação", + "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir seleção", + "DE.Views.DocumentHolder.txtRemFractionBar": "Remover barra de fração", + "DE.Views.DocumentHolder.txtRemLimit": "Remover limite", + "DE.Views.DocumentHolder.txtRemoveAccentChar": "Remover caractere destacado", + "DE.Views.DocumentHolder.txtRemoveBar": "Remover barra", + "DE.Views.DocumentHolder.txtRemoveWarning": "Quer remover esta assinatura?
Isto não pode ser anulado.", + "DE.Views.DocumentHolder.txtRemScripts": "Remover scripts", + "DE.Views.DocumentHolder.txtRemSubscript": "Remover subscrito", + "DE.Views.DocumentHolder.txtRemSuperscript": "Remover sobrescrito", + "DE.Views.DocumentHolder.txtScriptsAfter": "Scripts após o texto", + "DE.Views.DocumentHolder.txtScriptsBefore": "Scripts antes do texto", + "DE.Views.DocumentHolder.txtShowBottomLimit": "Mostrar limite inferior", + "DE.Views.DocumentHolder.txtShowCloseBracket": "Mostrar colchetes de fechamento", + "DE.Views.DocumentHolder.txtShowDegree": "Exibir grau", + "DE.Views.DocumentHolder.txtShowOpenBracket": "Mostrar chaveta de abertura", + "DE.Views.DocumentHolder.txtShowPlaceholder": "Exibir espaço reservado", + "DE.Views.DocumentHolder.txtShowTopLimit": "Exibir limite superior", + "DE.Views.DocumentHolder.txtSquare": "Quadrado", + "DE.Views.DocumentHolder.txtStretchBrackets": "Esticar colchetes", + "DE.Views.DocumentHolder.txtThrough": "Através", + "DE.Views.DocumentHolder.txtTight": "Justo", + "DE.Views.DocumentHolder.txtTop": "Parte superior", + "DE.Views.DocumentHolder.txtTopAndBottom": "Parte superior e inferior", + "DE.Views.DocumentHolder.txtUnderbar": "Barra por baixo do texto", + "DE.Views.DocumentHolder.txtUngroup": "Desagrupar", + "DE.Views.DocumentHolder.txtWarnUrl": "Clicar nesta ligação pode ser prejudicial ao seu dispositivo e dados.
Deseja continuar?", + "DE.Views.DocumentHolder.updateStyleText": "Atualizar estilo %1", + "DE.Views.DocumentHolder.vertAlignText": "Alinhamento vertical", + "DE.Views.DropcapSettingsAdvanced.strBorders": "Contornos e Preenchimento", + "DE.Views.DropcapSettingsAdvanced.strDropcap": "Letra capitular", + "DE.Views.DropcapSettingsAdvanced.strMargins": "Margens", + "DE.Views.DropcapSettingsAdvanced.textAlign": "Alinhamento", + "DE.Views.DropcapSettingsAdvanced.textAtLeast": "No mínimo", + "DE.Views.DropcapSettingsAdvanced.textAuto": "Automático", + "DE.Views.DropcapSettingsAdvanced.textBackColor": "Cor de fundo", + "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Cor do contorno", + "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Clique no diagrama ou utilize os botões para selecionar o contorno", + "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Tamanho do contorno", + "DE.Views.DropcapSettingsAdvanced.textBottom": "Inferior", + "DE.Views.DropcapSettingsAdvanced.textCenter": "Centro", + "DE.Views.DropcapSettingsAdvanced.textColumn": "Coluna", + "DE.Views.DropcapSettingsAdvanced.textDistance": "Distância do texto", + "DE.Views.DropcapSettingsAdvanced.textExact": "Exatamente", + "DE.Views.DropcapSettingsAdvanced.textFlow": "Estrutura de fluxo", + "DE.Views.DropcapSettingsAdvanced.textFont": "Fonte", + "DE.Views.DropcapSettingsAdvanced.textFrame": "Moldura", + "DE.Views.DropcapSettingsAdvanced.textHeight": "Altura", + "DE.Views.DropcapSettingsAdvanced.textHorizontal": "Horizontal", + "DE.Views.DropcapSettingsAdvanced.textInline": "Moldura embutida", + "DE.Views.DropcapSettingsAdvanced.textInMargin": "Na margem", + "DE.Views.DropcapSettingsAdvanced.textInText": "No texto", + "DE.Views.DropcapSettingsAdvanced.textLeft": "Esquerda", + "DE.Views.DropcapSettingsAdvanced.textMargin": "Margem", + "DE.Views.DropcapSettingsAdvanced.textMove": "Mover com texto", + "DE.Views.DropcapSettingsAdvanced.textNone": "Nenhum", + "DE.Views.DropcapSettingsAdvanced.textPage": "Página", + "DE.Views.DropcapSettingsAdvanced.textParagraph": "Parágrafo", + "DE.Views.DropcapSettingsAdvanced.textParameters": "Parâmetros", + "DE.Views.DropcapSettingsAdvanced.textPosition": "Posição", + "DE.Views.DropcapSettingsAdvanced.textRelative": "Relativo para", + "DE.Views.DropcapSettingsAdvanced.textRight": "Direita", + "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Altura em linhas", + "DE.Views.DropcapSettingsAdvanced.textTitle": "Capitulares - Definições avançadas", + "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Moldura - Definições avançadas", + "DE.Views.DropcapSettingsAdvanced.textTop": "Parte superior", + "DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical", + "DE.Views.DropcapSettingsAdvanced.textWidth": "Largura", + "DE.Views.DropcapSettingsAdvanced.tipFontName": "Nome da fonte", + "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sem contornos", + "DE.Views.EditListItemDialog.textDisplayName": "Nome de exibição", + "DE.Views.EditListItemDialog.textNameError": "O nome de exibição não deve estar vazio.", + "DE.Views.EditListItemDialog.textValue": "Valor", + "DE.Views.EditListItemDialog.textValueError": "Já existe um item com este mesmo valor.", + "DE.Views.FileMenu.btnBackCaption": "Abrir localização", + "DE.Views.FileMenu.btnCloseMenuCaption": "Fechar menu", + "DE.Views.FileMenu.btnCreateNewCaption": "Criar novo", + "DE.Views.FileMenu.btnDownloadCaption": "Descarregar como...", + "DE.Views.FileMenu.btnExitCaption": "Sair", + "DE.Views.FileMenu.btnFileOpenCaption": "Abrir...", + "DE.Views.FileMenu.btnHelpCaption": "Ajuda...", + "DE.Views.FileMenu.btnHistoryCaption": "Histórico da versão", + "DE.Views.FileMenu.btnInfoCaption": "Informações do documento...", + "DE.Views.FileMenu.btnPrintCaption": "Imprimir", + "DE.Views.FileMenu.btnProtectCaption": "Proteger", + "DE.Views.FileMenu.btnRecentFilesCaption": "Abrir recente...", + "DE.Views.FileMenu.btnRenameCaption": "Renomear...", + "DE.Views.FileMenu.btnReturnCaption": "Voltar para documento", + "DE.Views.FileMenu.btnRightsCaption": "Direitos de acesso...", + "DE.Views.FileMenu.btnSaveAsCaption": "Save as", + "DE.Views.FileMenu.btnSaveCaption": "Salvar", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "Guardar cópia como...", + "DE.Views.FileMenu.btnSettingsCaption": "Definições avançadas...", + "DE.Views.FileMenu.btnToEditCaption": "Editar documento", + "DE.Views.FileMenu.textDownload": "Descarregar", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Documento em branco", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Criar novo", + "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Adicionar autor", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Adicionar texto", + "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicação", + "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", + "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Alterar direitos de acesso", + "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentário", + "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Criado", + "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Carregando...", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última modificação por", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última modificação", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Não", + "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Proprietário", + "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Páginas", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Tamanho da página", + "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Parágrafos", + "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Localização", + "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbolos com espaços", + "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas", + "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", + "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", + "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Enviado", + "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palavras", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Sim", + "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Alterar direitos de acesso", + "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos", + "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", + "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Com palavra-passe", + "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger o documento", + "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Com assinatura", + "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar documento", + "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Se editar este documento, remove as assinaturas.
Tem a certeza de que deseja continuar?", + "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Este documento está protegido com uma palavra-passe", + "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Este documento precisa de ser assinado.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Assinaturas adicionadas ao documento. Este documento não pode ser editado.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algumas das assinaturas digitais são inválidas ou não puderam ser verificadas. Este documento não pode ser editado.", + "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver assinaturas", + "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", + "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Ativar guias de alinhamento", + "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Ativar recuperação automática", + "DE.Views.FileMenuPanels.Settings.strAutosave": "Ativar salvamento automático", + "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modo de co-edição", + "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Outros utilizadores verão as suas alterações de uma vez", + "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", + "DE.Views.FileMenuPanels.Settings.strFast": "Rápido", + "DE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Guardar sempre no servidor (caso contrário, guardar no servidor ao fechar o documento)", + "DE.Views.FileMenuPanels.Settings.strInputMode": "Ativar hieróglifos", + "DE.Views.FileMenuPanels.Settings.strLiveComment": "Ligar a exibição dos comentários", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Definições de macros", + "DE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar e colar", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar botão Opções de colagem ao colar conteúdo", + "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Aceder à visualização dos comentários resolvidos", + "DE.Views.FileMenuPanels.Settings.strReviewHover": "Visualização de Registar Alterações", + "DE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real", + "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ativar a opção de verificação ortográfica", + "DE.Views.FileMenuPanels.Settings.strStrict": "Estrito", + "DE.Views.FileMenuPanels.Settings.strTheme": "Tema da interface", + "DE.Views.FileMenuPanels.Settings.strUnit": "Unidade de medida", + "DE.Views.FileMenuPanels.Settings.strZoom": "Valor de zoom padrão", + "DE.Views.FileMenuPanels.Settings.text10Minutes": "Cada 10 minutos", + "DE.Views.FileMenuPanels.Settings.text30Minutes": "Cada 30 minutos", + "DE.Views.FileMenuPanels.Settings.text5Minutes": "Cada 5 minutos", + "DE.Views.FileMenuPanels.Settings.text60Minutes": "Cada hora", + "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Guias de alinhamento", + "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Recuperação automática", + "DE.Views.FileMenuPanels.Settings.textAutoSave": "Salvamento automático", + "DE.Views.FileMenuPanels.Settings.textCompatible": "Compatibilidade", + "DE.Views.FileMenuPanels.Settings.textDisabled": "Desativado", + "DE.Views.FileMenuPanels.Settings.textForceSave": "Guardar no servidor", + "DE.Views.FileMenuPanels.Settings.textMinute": "Cada minuto", + "DE.Views.FileMenuPanels.Settings.textOldVersions": "Ao guardar como DOCX, tornar ficheiro compatível com versões antigas do MS Word", + "DE.Views.FileMenuPanels.Settings.txtAll": "Ver tudo", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opções de correção automática...", + "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Modo de cache predefinido", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Mostrar ao clicar nos balões", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Mostrar ao sobrepor o cursor nas descrições", + "DE.Views.FileMenuPanels.Settings.txtCm": "Centímetro", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Ligar o modo escuro do documento", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajustar à página", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar à largura", + "DE.Views.FileMenuPanels.Settings.txtInch": "Polegada", + "DE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", + "DE.Views.FileMenuPanels.Settings.txtLast": "Ver último", + "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Exibição de comentários", + "DE.Views.FileMenuPanels.Settings.txtMac": "como OS X", + "DE.Views.FileMenuPanels.Settings.txtNative": "Nativo", + "DE.Views.FileMenuPanels.Settings.txtNone": "Ver nenhum", + "DE.Views.FileMenuPanels.Settings.txtProofing": "Correção", + "DE.Views.FileMenuPanels.Settings.txtPt": "Ponto", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Ativar tudo", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Ativar todas as macros sem uma notificação", + "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Verificação ortográfica", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Desativar tudo", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Desativar todas as macros sem uma notificação", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificação", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", + "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", + "DE.Views.FormSettings.textAlways": "Sempre", + "DE.Views.FormSettings.textAspect": "Bloquear proporção", + "DE.Views.FormSettings.textAutofit": "Ajuste automático", + "DE.Views.FormSettings.textBackgroundColor": "Cor de fundo", + "DE.Views.FormSettings.textCheckbox": "Caixa de seleção", + "DE.Views.FormSettings.textColor": "Cor do contorno", + "DE.Views.FormSettings.textComb": "Conjunto de caracteres", + "DE.Views.FormSettings.textCombobox": "Caixa de combinação", + "DE.Views.FormSettings.textConnected": "Campos ligados", + "DE.Views.FormSettings.textDelete": "Eliminar", + "DE.Views.FormSettings.textDisconnect": "Desconectar", + "DE.Views.FormSettings.textDropDown": "Suspenso", + "DE.Views.FormSettings.textField": "Campo de texto", + "DE.Views.FormSettings.textFixed": "Campo de tamanho fixo", + "DE.Views.FormSettings.textFromFile": "Do ficheiro", + "DE.Views.FormSettings.textFromStorage": "Do armazenamento", + "DE.Views.FormSettings.textFromUrl": "De um URL", + "DE.Views.FormSettings.textGroupKey": "Agrupar chave", + "DE.Views.FormSettings.textImage": "Imagem", + "DE.Views.FormSettings.textKey": "Chave", + "DE.Views.FormSettings.textLock": "Bloquear", + "DE.Views.FormSettings.textMaxChars": "Limite de caracteres", + "DE.Views.FormSettings.textMulti": "Campo com Múltiplas Linhas", + "DE.Views.FormSettings.textNever": "Nunca", + "DE.Views.FormSettings.textNoBorder": "Sem contorno", + "DE.Views.FormSettings.textPlaceholder": "Marcador de posição", + "DE.Views.FormSettings.textRadiobox": "Botão Seleção", + "DE.Views.FormSettings.textRequired": "Necessário", + "DE.Views.FormSettings.textScale": "Quando escalar", + "DE.Views.FormSettings.textSelectImage": "Selecionar imagem", + "DE.Views.FormSettings.textTip": "Dica", + "DE.Views.FormSettings.textTipAdd": "Adicionar novo valor", + "DE.Views.FormSettings.textTipDelete": "Eliminar valor", + "DE.Views.FormSettings.textTipDown": "Mover para baixo", + "DE.Views.FormSettings.textTipUp": "Mover para cima", + "DE.Views.FormSettings.textTooBig": "A imagem é demasiado grande", + "DE.Views.FormSettings.textTooSmall": "A imagem é demasiado pequena", + "DE.Views.FormSettings.textUnlock": "Desbloquear", + "DE.Views.FormSettings.textValue": "Opções de valor", + "DE.Views.FormSettings.textWidth": "Largura da célula", + "DE.Views.FormsTab.capBtnCheckBox": "Caixa de seleção", + "DE.Views.FormsTab.capBtnComboBox": "Caixa de combinação", + "DE.Views.FormsTab.capBtnDropDown": "Suspenso", + "DE.Views.FormsTab.capBtnImage": "Imagem", + "DE.Views.FormsTab.capBtnNext": "Campo seguinte", + "DE.Views.FormsTab.capBtnPrev": "Campo anterior", + "DE.Views.FormsTab.capBtnRadioBox": "Botão Seleção", + "DE.Views.FormsTab.capBtnSaveForm": "Guardar como oform", + "DE.Views.FormsTab.capBtnSubmit": "Submeter", + "DE.Views.FormsTab.capBtnText": "Campo de texto", + "DE.Views.FormsTab.capBtnView": "Ver formulário", + "DE.Views.FormsTab.textClear": "Limpar campos", + "DE.Views.FormsTab.textClearFields": "Limpar todos os campos", + "DE.Views.FormsTab.textCreateForm": "Adicione campos e crie um documento FORM preenchível", + "DE.Views.FormsTab.textGotIt": "Percebi", + "DE.Views.FormsTab.textHighlight": "Definições de destaque", + "DE.Views.FormsTab.textNoHighlight": "Sem realce", + "DE.Views.FormsTab.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.", + "DE.Views.FormsTab.textSubmited": "Formulário enviado com sucesso", + "DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção", + "DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação", + "DE.Views.FormsTab.tipDropDown": "Inserir lista suspensa", + "DE.Views.FormsTab.tipImageField": "Inserir imagem", + "DE.Views.FormsTab.tipNextForm": "Ir para o campo seguinte", + "DE.Views.FormsTab.tipPrevForm": "Ir para o campo anterior", + "DE.Views.FormsTab.tipRadioBox": "Inserir botão de seleção", + "DE.Views.FormsTab.tipSaveForm": "Guardar um ficheiro como um documento OFORM preenchível", + "DE.Views.FormsTab.tipSubmit": "Submeter forma", + "DE.Views.FormsTab.tipTextField": "Inserir campo de texto", + "DE.Views.FormsTab.tipViewForm": "Ver formulário", + "DE.Views.FormsTab.txtUntitled": "Sem título", + "DE.Views.HeaderFooterSettings.textBottomCenter": "Centro inferior", + "DE.Views.HeaderFooterSettings.textBottomLeft": "Esquerda inferior", + "DE.Views.HeaderFooterSettings.textBottomPage": "Fundo da página", + "DE.Views.HeaderFooterSettings.textBottomRight": "Direita inferior", + "DE.Views.HeaderFooterSettings.textDiffFirst": "Primeira página diferente", + "DE.Views.HeaderFooterSettings.textDiffOdd": "Páginas pares e ímpares diferentes", + "DE.Views.HeaderFooterSettings.textFrom": "Iniciar em", + "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Rodapé abaixo", + "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Cabeçalho no início", + "DE.Views.HeaderFooterSettings.textInsertCurrent": "Inserir na posição atual ", + "DE.Views.HeaderFooterSettings.textOptions": "Opções", + "DE.Views.HeaderFooterSettings.textPageNum": "Inserir número da página", + "DE.Views.HeaderFooterSettings.textPageNumbering": "Numeração de páginas", + "DE.Views.HeaderFooterSettings.textPosition": "Posição", + "DE.Views.HeaderFooterSettings.textPrev": "Continuar da secção anterior", + "DE.Views.HeaderFooterSettings.textSameAs": "Ligação à anterior", + "DE.Views.HeaderFooterSettings.textTopCenter": "Superior central", + "DE.Views.HeaderFooterSettings.textTopLeft": "Superior esquerdo", + "DE.Views.HeaderFooterSettings.textTopPage": "Topo da página", + "DE.Views.HeaderFooterSettings.textTopRight": "Superior direito", + "DE.Views.HyperlinkSettingsDialog.textDefault": "Fragmento de texto selecionado", + "DE.Views.HyperlinkSettingsDialog.textDisplay": "Exibir", + "DE.Views.HyperlinkSettingsDialog.textExternal": "Ligação externa", + "DE.Views.HyperlinkSettingsDialog.textInternal": "Colocar no Documento", + "DE.Views.HyperlinkSettingsDialog.textTitle": "Definições de hiperligação", + "DE.Views.HyperlinkSettingsDialog.textTooltip": "Texto de dica de tela:", + "DE.Views.HyperlinkSettingsDialog.textUrl": "Ligação a", + "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Início do documento", + "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Marcadores", + "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Este campo é obrigatório", + "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Títulos", + "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Este campo está limitado a 2083 caracteres", + "DE.Views.ImageSettings.textAdvanced": "Mostrar definições avançadas", + "DE.Views.ImageSettings.textCrop": "Recortar", + "DE.Views.ImageSettings.textCropFill": "Preencher", + "DE.Views.ImageSettings.textCropFit": "Ajustar", + "DE.Views.ImageSettings.textCropToShape": "Recortar com Forma", + "DE.Views.ImageSettings.textEdit": "Editar", + "DE.Views.ImageSettings.textEditObject": "Editar objeto", + "DE.Views.ImageSettings.textFitMargins": "Ajustar à margem", + "DE.Views.ImageSettings.textFlip": "Virar", + "DE.Views.ImageSettings.textFromFile": "De um ficheiro", + "DE.Views.ImageSettings.textFromStorage": "De um armazenamento", + "DE.Views.ImageSettings.textFromUrl": "De um URL", + "DE.Views.ImageSettings.textHeight": "Altura", + "DE.Views.ImageSettings.textHint270": "Rodar 90º à esquerda", + "DE.Views.ImageSettings.textHint90": "Rodar 90º à direita", + "DE.Views.ImageSettings.textHintFlipH": "Virar horizontalmente", + "DE.Views.ImageSettings.textHintFlipV": "Virar verticalmente", + "DE.Views.ImageSettings.textInsert": "Substituir imagem", + "DE.Views.ImageSettings.textOriginalSize": "Tamanho padrão", + "DE.Views.ImageSettings.textRecentlyUsed": "Utilizado recentemente", + "DE.Views.ImageSettings.textRotate90": "Rodar 90°", + "DE.Views.ImageSettings.textRotation": "Rotação", + "DE.Views.ImageSettings.textSize": "Tamanho", + "DE.Views.ImageSettings.textWidth": "Largura", + "DE.Views.ImageSettings.textWrap": "Estilo de moldagem", + "DE.Views.ImageSettings.txtBehind": "Atrás", + "DE.Views.ImageSettings.txtInFront": "Em frente", + "DE.Views.ImageSettings.txtInline": "Em Linha com o Texto", + "DE.Views.ImageSettings.txtSquare": "Quadrado", + "DE.Views.ImageSettings.txtThrough": "Através", + "DE.Views.ImageSettings.txtTight": "Justo", + "DE.Views.ImageSettings.txtTopAndBottom": "Parte superior e inferior", + "DE.Views.ImageSettingsAdvanced.strMargins": "Preenchimento de texto", + "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absoluto", + "DE.Views.ImageSettingsAdvanced.textAlignment": "Alinhamento", + "DE.Views.ImageSettingsAdvanced.textAlt": "Texto alternativo", + "DE.Views.ImageSettingsAdvanced.textAltDescription": "Descrição", + "DE.Views.ImageSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", + "DE.Views.ImageSettingsAdvanced.textAltTitle": "Título", + "DE.Views.ImageSettingsAdvanced.textAngle": "Ângulo", + "DE.Views.ImageSettingsAdvanced.textArrows": "Setas", + "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Bloquear proporção", + "DE.Views.ImageSettingsAdvanced.textAutofit": "Ajuste automático", + "DE.Views.ImageSettingsAdvanced.textBeginSize": "Tamanho inicial", + "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Estilo inicial", + "DE.Views.ImageSettingsAdvanced.textBelow": "abaixo", + "DE.Views.ImageSettingsAdvanced.textBevel": "Bisel", + "DE.Views.ImageSettingsAdvanced.textBottom": "Inferior", + "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Margem inferior", + "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Moldar texto", + "DE.Views.ImageSettingsAdvanced.textCapType": "Tipo de letra", + "DE.Views.ImageSettingsAdvanced.textCenter": "Centro", + "DE.Views.ImageSettingsAdvanced.textCharacter": "Caractere", + "DE.Views.ImageSettingsAdvanced.textColumn": "Coluna", + "DE.Views.ImageSettingsAdvanced.textDistance": "Distância do texto", + "DE.Views.ImageSettingsAdvanced.textEndSize": "Tamanho final", + "DE.Views.ImageSettingsAdvanced.textEndStyle": "Estilo final", + "DE.Views.ImageSettingsAdvanced.textFlat": "Plano", + "DE.Views.ImageSettingsAdvanced.textFlipped": "Invertido", + "DE.Views.ImageSettingsAdvanced.textHeight": "Altura", + "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal", + "DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalmente", + "DE.Views.ImageSettingsAdvanced.textJoinType": "Tipo de junção", + "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporções constantes", + "DE.Views.ImageSettingsAdvanced.textLeft": "Esquerda", + "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Margem esquerda", + "DE.Views.ImageSettingsAdvanced.textLine": "Linha", + "DE.Views.ImageSettingsAdvanced.textLineStyle": "Estilo de linha", + "DE.Views.ImageSettingsAdvanced.textMargin": "Margem", + "DE.Views.ImageSettingsAdvanced.textMiter": "Malhete", + "DE.Views.ImageSettingsAdvanced.textMove": "Mover objeto com texto", + "DE.Views.ImageSettingsAdvanced.textOptions": "Opções", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamanho padrão", + "DE.Views.ImageSettingsAdvanced.textOverlap": "Permitir sobreposição", + "DE.Views.ImageSettingsAdvanced.textPage": "Página", + "DE.Views.ImageSettingsAdvanced.textParagraph": "Parágrafo", + "DE.Views.ImageSettingsAdvanced.textPosition": "Posição", + "DE.Views.ImageSettingsAdvanced.textPositionPc": "Posição relativa", + "DE.Views.ImageSettingsAdvanced.textRelative": "relativo para", + "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relativo", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "Redimensionar forma para se ajustar ao texto", + "DE.Views.ImageSettingsAdvanced.textRight": "Direita", + "DE.Views.ImageSettingsAdvanced.textRightMargin": "Margem direita", + "DE.Views.ImageSettingsAdvanced.textRightOf": "para a direita de", + "DE.Views.ImageSettingsAdvanced.textRotation": "Rotação", + "DE.Views.ImageSettingsAdvanced.textRound": "Rodada", + "DE.Views.ImageSettingsAdvanced.textShape": "Definições de forma", + "DE.Views.ImageSettingsAdvanced.textSize": "Tamanho", + "DE.Views.ImageSettingsAdvanced.textSquare": "Quadrado", + "DE.Views.ImageSettingsAdvanced.textTextBox": "Caixa de texto", + "DE.Views.ImageSettingsAdvanced.textTitle": "Imagem - Definições avançadas", + "DE.Views.ImageSettingsAdvanced.textTitleChart": "Gráfico - Definições avançadas", + "DE.Views.ImageSettingsAdvanced.textTitleShape": "Forma - Definições avançadas", + "DE.Views.ImageSettingsAdvanced.textTop": "Parte superior", + "DE.Views.ImageSettingsAdvanced.textTopMargin": "Margem superior", + "DE.Views.ImageSettingsAdvanced.textVertical": "Vertical", + "DE.Views.ImageSettingsAdvanced.textVertically": "Verticalmente", + "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Pesos e Setas", + "DE.Views.ImageSettingsAdvanced.textWidth": "Largura", + "DE.Views.ImageSettingsAdvanced.textWrap": "Estilo de moldagem", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Atrás", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Em frente", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Em Linha com o Texto", + "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Quadrado", + "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Através", + "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Justo", + "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Parte superior e inferior", + "DE.Views.LeftMenu.tipAbout": "Acerca", + "DE.Views.LeftMenu.tipChat": "Chat", + "DE.Views.LeftMenu.tipComments": "Comentários", + "DE.Views.LeftMenu.tipNavigation": "Navegação", + "DE.Views.LeftMenu.tipPlugins": "Plugins", + "DE.Views.LeftMenu.tipSearch": "Pesquisa", + "DE.Views.LeftMenu.tipSupport": "Feedback e Suporte", + "DE.Views.LeftMenu.tipTitles": "Títulos", + "DE.Views.LeftMenu.txtDeveloper": "MODO DE PROGRAMADOR", + "DE.Views.LeftMenu.txtLimit": "Limitar o acesso", + "DE.Views.LeftMenu.txtTrial": "MODO DE TESTE", + "DE.Views.LeftMenu.txtTrialDev": "Versão de Avaliação do Modo de Programador", + "DE.Views.LineNumbersDialog.textAddLineNumbering": "Adicionar numeração de linhas", + "DE.Views.LineNumbersDialog.textApplyTo": "Aplicar alterações a", + "DE.Views.LineNumbersDialog.textContinuous": "Contínuo", + "DE.Views.LineNumbersDialog.textCountBy": "Contar por", + "DE.Views.LineNumbersDialog.textDocument": "Documento inteiro", + "DE.Views.LineNumbersDialog.textForward": "A partir deste ponto", + "DE.Views.LineNumbersDialog.textFromText": "De um texto", + "DE.Views.LineNumbersDialog.textNumbering": "Numeração", + "DE.Views.LineNumbersDialog.textRestartEachPage": "Reiniciar cada página", + "DE.Views.LineNumbersDialog.textRestartEachSection": "Reiniciar Em Cada Secção", + "DE.Views.LineNumbersDialog.textSection": "Secção atual", + "DE.Views.LineNumbersDialog.textStartAt": "Iniciar em", + "DE.Views.LineNumbersDialog.textTitle": "Números de Linhas", + "DE.Views.LineNumbersDialog.txtAutoText": "Automático", + "DE.Views.Links.capBtnBookmarks": "Marcador", + "DE.Views.Links.capBtnCaption": "Legenda", + "DE.Views.Links.capBtnContentsUpdate": "Atualizar Tabela", + "DE.Views.Links.capBtnCrossRef": "Referência-cruzada", + "DE.Views.Links.capBtnInsContents": "Índice remissivo", + "DE.Views.Links.capBtnInsFootnote": "Nota de rodapé", + "DE.Views.Links.capBtnInsLink": "Hiperligação", + "DE.Views.Links.capBtnTOF": "Tabela de figuras", + "DE.Views.Links.confirmDeleteFootnotes": "Deseja eliminar todas as notas de rodapé?", + "DE.Views.Links.confirmReplaceTOF": "Quer substituir a tabela de figuras selecionada?", + "DE.Views.Links.mniConvertNote": "Converter todas as notas", + "DE.Views.Links.mniDelFootnote": "Eliminar todas as notas", + "DE.Views.Links.mniInsEndnote": "Inserir nota final", + "DE.Views.Links.mniInsFootnote": "Inserir nota de rodapé", + "DE.Views.Links.mniNoteSettings": "Definições de nota", + "DE.Views.Links.textContentsRemove": "Remover índice remissivo", + "DE.Views.Links.textContentsSettings": "Definições", + "DE.Views.Links.textConvertToEndnotes": "Converter todas as notas de rodapé em notas finais", + "DE.Views.Links.textConvertToFootnotes": "Converter todas as notas finais em notas de rodapé", + "DE.Views.Links.textGotoEndnote": "Ir para notas finais", + "DE.Views.Links.textGotoFootnote": "Ir para notas de rodapé", + "DE.Views.Links.textSwapNotes": "Trocar as notas de rodapé pelas notas de fim", + "DE.Views.Links.textUpdateAll": "Recarregar tabela", + "DE.Views.Links.textUpdatePages": "Recarregar apenas o número de páginas", + "DE.Views.Links.tipBookmarks": "Criar marcador", + "DE.Views.Links.tipCaption": "Inserir legenda", + "DE.Views.Links.tipContents": "Inserir índice remissivo", + "DE.Views.Links.tipContentsUpdate": "Recarregar índice remissivo", + "DE.Views.Links.tipCrossRef": "Inserir referência cruzada", + "DE.Views.Links.tipInsertHyperlink": "Adicionar hiperligação", + "DE.Views.Links.tipNotes": "Inserir ou editar notas de rodapé", + "DE.Views.Links.tipTableFigures": "Inserir tabela de figuras", + "DE.Views.Links.tipTableFiguresUpdate": "Recarregar tabela de figuras", + "DE.Views.Links.titleUpdateTOF": "Recarregar tabela de figuras", + "DE.Views.ListSettingsDialog.textAuto": "Automático", + "DE.Views.ListSettingsDialog.textCenter": "Centro", + "DE.Views.ListSettingsDialog.textLeft": "Esquerda", + "DE.Views.ListSettingsDialog.textLevel": "Nível", + "DE.Views.ListSettingsDialog.textPreview": "Pré-visualizar", + "DE.Views.ListSettingsDialog.textRight": "Direita", + "DE.Views.ListSettingsDialog.txtAlign": "Alinhamento", + "DE.Views.ListSettingsDialog.txtBullet": "Marcador", + "DE.Views.ListSettingsDialog.txtColor": "Cor", + "DE.Views.ListSettingsDialog.txtFont": "Tipo de letra e Símbolo", + "DE.Views.ListSettingsDialog.txtLikeText": "Como um texto", + "DE.Views.ListSettingsDialog.txtNewBullet": "Nova marca", + "DE.Views.ListSettingsDialog.txtNone": "Nenhum", + "DE.Views.ListSettingsDialog.txtSize": "Tamanho", + "DE.Views.ListSettingsDialog.txtSymbol": "Símbolo", + "DE.Views.ListSettingsDialog.txtTitle": "Definições da lista", + "DE.Views.ListSettingsDialog.txtType": "Tipo", + "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", + "DE.Views.MailMergeEmailDlg.okButtonText": "Enviar", + "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Tema", + "DE.Views.MailMergeEmailDlg.textAttachDocx": "Attach as DOCX", + "DE.Views.MailMergeEmailDlg.textAttachPdf": "Attach as PDF", + "DE.Views.MailMergeEmailDlg.textFileName": "Nome do ficheiro", + "DE.Views.MailMergeEmailDlg.textFormat": "Mail format", + "DE.Views.MailMergeEmailDlg.textFrom": "De", + "DE.Views.MailMergeEmailDlg.textHTML": "HTML", + "DE.Views.MailMergeEmailDlg.textMessage": "Mensagem", + "DE.Views.MailMergeEmailDlg.textSubject": "Linha de assunto", + "DE.Views.MailMergeEmailDlg.textTitle": "Send to Email", + "DE.Views.MailMergeEmailDlg.textTo": "a", + "DE.Views.MailMergeEmailDlg.textWarning": "Aviso!", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "Tenha em atenção que não é possível interromper o envio de e-mail assim que selecionar 'Enviar'", + "DE.Views.MailMergeSettings.downloadMergeTitle": "Merging", + "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Falha ao unir.", + "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Aviso", + "DE.Views.MailMergeSettings.textAddRecipients": "Tem que adicionar alguns destinatários à lista", + "DE.Views.MailMergeSettings.textAll": "Todos os registos", + "DE.Views.MailMergeSettings.textCurrent": "Current record", + "DE.Views.MailMergeSettings.textDataSource": "Fonte de dados", + "DE.Views.MailMergeSettings.textDocx": "Docx", + "DE.Views.MailMergeSettings.textDownload": "Descarregar", + "DE.Views.MailMergeSettings.textEditData": "Editar lista de destinatários", + "DE.Views.MailMergeSettings.textEmail": "Email", + "DE.Views.MailMergeSettings.textFrom": "De", + "DE.Views.MailMergeSettings.textGoToMail": "Go to Mail", + "DE.Views.MailMergeSettings.textHighlight": "Highlight merge fields", + "DE.Views.MailMergeSettings.textInsertField": "Insert Merge Field", + "DE.Views.MailMergeSettings.textMaxRecepients": "Max 100 recepients.", + "DE.Views.MailMergeSettings.textMerge": "Unir", + "DE.Views.MailMergeSettings.textMergeFields": "Merge Fields", + "DE.Views.MailMergeSettings.textMergeTo": "Merge to", + "DE.Views.MailMergeSettings.textPdf": "PDF", + "DE.Views.MailMergeSettings.textPortal": "Salvar", + "DE.Views.MailMergeSettings.textPreview": "Resultados da pré-visualização", + "DE.Views.MailMergeSettings.textReadMore": "Ler mais", + "DE.Views.MailMergeSettings.textSendMsg": "Todas as mensagens de e-mail estão prontas e serão enviadas seguidamente.
A velocidade do envio depende do seu serviço de correio eletrónico.
Pode continuar a trabalhar ou fechar o documento. Terminada a ação, será enviada uma notificação por e-mail para o endereço de e-mail registado.", + "DE.Views.MailMergeSettings.textTo": "a", + "DE.Views.MailMergeSettings.txtFirst": "To first record", + "DE.Views.MailMergeSettings.txtFromToError": "O valor \"De\" deve ser menor do que o valor \"Até\"", + "DE.Views.MailMergeSettings.txtLast": "Para último registo", + "DE.Views.MailMergeSettings.txtNext": "To next record", + "DE.Views.MailMergeSettings.txtPrev": "To previous record", + "DE.Views.MailMergeSettings.txtUntitled": "Sem título", + "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", + "DE.Views.Navigation.txtCollapse": "Recolher tudo", + "DE.Views.Navigation.txtDemote": "Rebaixar", + "DE.Views.Navigation.txtEmpty": "Não existem títulos no documento.
Aplique um estilo de título ao texto para que este apareça no índice remissivo.", + "DE.Views.Navigation.txtEmptyItem": "Título vazio", + "DE.Views.Navigation.txtExpand": "Expandir tudo", + "DE.Views.Navigation.txtExpandToLevel": "Expandir ao nível", + "DE.Views.Navigation.txtHeadingAfter": "Novo título depois", + "DE.Views.Navigation.txtHeadingBefore": "Novo título antes", + "DE.Views.Navigation.txtNewHeading": "Novo subtítulo", + "DE.Views.Navigation.txtPromote": "Promover", + "DE.Views.Navigation.txtSelect": "Selecionar conteúdo", + "DE.Views.NoteSettingsDialog.textApply": "Aplicar", + "DE.Views.NoteSettingsDialog.textApplyTo": "Aplicar alterações a", + "DE.Views.NoteSettingsDialog.textContinue": "Contínua", + "DE.Views.NoteSettingsDialog.textCustom": "Marca personalizada", + "DE.Views.NoteSettingsDialog.textDocEnd": "Fim do documento", + "DE.Views.NoteSettingsDialog.textDocument": "Documento inteiro", + "DE.Views.NoteSettingsDialog.textEachPage": "Reiniciar cada página", + "DE.Views.NoteSettingsDialog.textEachSection": "Reiniciar Em Cada Secção", + "DE.Views.NoteSettingsDialog.textEndnote": "Nota final", + "DE.Views.NoteSettingsDialog.textFootnote": "Nota de rodapé", + "DE.Views.NoteSettingsDialog.textFormat": "Formato", + "DE.Views.NoteSettingsDialog.textInsert": "Inserir", + "DE.Views.NoteSettingsDialog.textLocation": "Localização", + "DE.Views.NoteSettingsDialog.textNumbering": "Numeração", + "DE.Views.NoteSettingsDialog.textNumFormat": "Formato de número", + "DE.Views.NoteSettingsDialog.textPageBottom": "Fundo da página", + "DE.Views.NoteSettingsDialog.textSectEnd": "Fim da secção", + "DE.Views.NoteSettingsDialog.textSection": "Secção atual", + "DE.Views.NoteSettingsDialog.textStart": "Iniciar em", + "DE.Views.NoteSettingsDialog.textTextBottom": "Abaixo do texto", + "DE.Views.NoteSettingsDialog.textTitle": "Definições de nota", + "DE.Views.NotesRemoveDialog.textEnd": "Eliminar todas as notas finais", + "DE.Views.NotesRemoveDialog.textFoot": "Eliminar todas as notas de rodapé", + "DE.Views.NotesRemoveDialog.textTitle": "Eliminar notas", + "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Aviso", + "DE.Views.PageMarginsDialog.textBottom": "Baixo", + "DE.Views.PageMarginsDialog.textGutter": "Medianiz", + "DE.Views.PageMarginsDialog.textGutterPosition": "Posição da Medianiz", + "DE.Views.PageMarginsDialog.textInside": "Dentro de", + "DE.Views.PageMarginsDialog.textLandscape": "Horizontal", + "DE.Views.PageMarginsDialog.textLeft": "Esquerda", + "DE.Views.PageMarginsDialog.textMirrorMargins": "Margens espelho", + "DE.Views.PageMarginsDialog.textMultiplePages": "Várias páginas", + "DE.Views.PageMarginsDialog.textNormal": "Normal", + "DE.Views.PageMarginsDialog.textOrientation": "Orientação", + "DE.Views.PageMarginsDialog.textOutside": "Exterior", + "DE.Views.PageMarginsDialog.textPortrait": "Vertical", + "DE.Views.PageMarginsDialog.textPreview": "Pré-visualizar", + "DE.Views.PageMarginsDialog.textRight": "Direita", + "DE.Views.PageMarginsDialog.textTitle": "Margens", + "DE.Views.PageMarginsDialog.textTop": "Parte superior", + "DE.Views.PageMarginsDialog.txtMarginsH": "As margens superior e inferior são muito grandes para a altura indicada", + "DE.Views.PageMarginsDialog.txtMarginsW": "As margens direita e esquerda são muito grandes para a largura indicada", + "DE.Views.PageSizeDialog.textHeight": "Altura", + "DE.Views.PageSizeDialog.textPreset": "Predefinição", + "DE.Views.PageSizeDialog.textTitle": "Tamanho da página", + "DE.Views.PageSizeDialog.textWidth": "Largura", + "DE.Views.PageSizeDialog.txtCustom": "Personalizar", + "DE.Views.PageThumbnails.textClosePanel": "Fechar os thumbnails da página", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Realçar a parte visível da página", + "DE.Views.PageThumbnails.textPageThumbnails": "Thumbnails da Página", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Definições de Thumbnails", + "DE.Views.PageThumbnails.textThumbnailsSize": "Tamanho de Thumbnails", + "DE.Views.ParagraphSettings.strIndent": "Recuos", + "DE.Views.ParagraphSettings.strIndentsLeftText": "Esquerda", + "DE.Views.ParagraphSettings.strIndentsRightText": "Direita", + "DE.Views.ParagraphSettings.strIndentsSpecial": "Especial", + "DE.Views.ParagraphSettings.strLineHeight": "Espaçamento entre linhas", + "DE.Views.ParagraphSettings.strParagraphSpacing": "Espaçamento", + "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Não adicionar intervalo entre parágrafos do mesmo estilo", + "DE.Views.ParagraphSettings.strSpacingAfter": "Depois", + "DE.Views.ParagraphSettings.strSpacingBefore": "Antes", + "DE.Views.ParagraphSettings.textAdvanced": "Mostrar definições avançadas", + "DE.Views.ParagraphSettings.textAt": "Em", + "DE.Views.ParagraphSettings.textAtLeast": "Pelo menos", + "DE.Views.ParagraphSettings.textAuto": "Múltiplo", + "DE.Views.ParagraphSettings.textBackColor": "Cor de fundo", + "DE.Views.ParagraphSettings.textExact": "Exatamente", + "DE.Views.ParagraphSettings.textFirstLine": "Primeira linha", + "DE.Views.ParagraphSettings.textHanging": "Suspensão", + "DE.Views.ParagraphSettings.textNoneSpecial": "(nenhum)", + "DE.Views.ParagraphSettings.txtAutoText": "Automático", + "DE.Views.ParagraphSettingsAdvanced.noTabs": "Os separadores especificados aparecerão neste campo", + "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tudo em maiúsculas", + "DE.Views.ParagraphSettingsAdvanced.strBorders": "Contornos e Preenchimento", + "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Quebra de página antes", + "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Tachado duplo", + "DE.Views.ParagraphSettingsAdvanced.strIndent": "Recuos", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Esquerda", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Espaçamento entre linhas", + "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Nível de contorno", + "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Direita", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Depois", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Antes", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial", + "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Manter linhas juntas", + "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Manter com seguinte", + "DE.Views.ParagraphSettingsAdvanced.strMargins": "Preenchimentos", + "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Controle de órfão", + "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Fonte", + "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Avanços e espaçamento", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Quebras de linha e de página", + "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Posicionamento", + "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versaletes", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Não adicionar intervalo entre parágrafos do mesmo estilo", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaçamento", + "DE.Views.ParagraphSettingsAdvanced.strStrike": "Riscado", + "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscrito", + "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Sobrescrito", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Suprimir números de linhas", + "DE.Views.ParagraphSettingsAdvanced.strTabs": "Aba", + "DE.Views.ParagraphSettingsAdvanced.textAlign": "Alinhamento", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Pelo menos", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiplo", + "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Cor de fundo", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texto básico", + "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Cor do contorno", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Clique no diagrama ou utilize os botões para selecionar os contornos e aplicar um estilo", + "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Tamanho do contorno", + "DE.Views.ParagraphSettingsAdvanced.textBottom": "Inferior", + "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrado", + "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaçamento entre caracteres", + "DE.Views.ParagraphSettingsAdvanced.textDefault": "Aba padrão", + "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efeitos", + "DE.Views.ParagraphSettingsAdvanced.textExact": "Exatamente", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primeira linha", + "DE.Views.ParagraphSettingsAdvanced.textHanging": "Suspensão", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "Justificado", + "DE.Views.ParagraphSettingsAdvanced.textLeader": "Guia", + "DE.Views.ParagraphSettingsAdvanced.textLeft": "Esquerda", + "DE.Views.ParagraphSettingsAdvanced.textLevel": "Nível", + "DE.Views.ParagraphSettingsAdvanced.textNone": "Nenhum", + "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nenhum)", + "DE.Views.ParagraphSettingsAdvanced.textPosition": "Posição", + "DE.Views.ParagraphSettingsAdvanced.textRemove": "Remover", + "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remover todos", + "DE.Views.ParagraphSettingsAdvanced.textRight": "Direita", + "DE.Views.ParagraphSettingsAdvanced.textSet": "Especificar", + "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Espaçamento", + "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centro", + "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Esquerda", + "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posição da aba", + "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Direita", + "DE.Views.ParagraphSettingsAdvanced.textTitle": "Parágrafo - Definições avançadas", + "DE.Views.ParagraphSettingsAdvanced.textTop": "Parte superior", + "DE.Views.ParagraphSettingsAdvanced.tipAll": "Definir contorno externo e todas as linhas internas", + "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Definir apenas contorno inferior", + "DE.Views.ParagraphSettingsAdvanced.tipInner": "Definir apenas linhas internas horizontais", + "DE.Views.ParagraphSettingsAdvanced.tipLeft": "Definir apenas contorno esquerdo", + "DE.Views.ParagraphSettingsAdvanced.tipNone": "Definir sem contornos", + "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Definir apenas contorno externo", + "DE.Views.ParagraphSettingsAdvanced.tipRight": "Definir apenas contorno direito", + "DE.Views.ParagraphSettingsAdvanced.tipTop": "Definir apenas contorno superior", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", + "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sem contornos", + "DE.Views.RightMenu.txtChartSettings": "Definições de gráfico", + "DE.Views.RightMenu.txtFormSettings": "Definições do formulário", + "DE.Views.RightMenu.txtHeaderFooterSettings": "Definições de cabeçalho/rodapé", + "DE.Views.RightMenu.txtImageSettings": "Definições de imagem", + "DE.Views.RightMenu.txtMailMergeSettings": "Definições de e-mail em série", + "DE.Views.RightMenu.txtParagraphSettings": "Definições de parágrafo", + "DE.Views.RightMenu.txtShapeSettings": "Definições de forma", + "DE.Views.RightMenu.txtSignatureSettings": "Definições de assinatura", + "DE.Views.RightMenu.txtTableSettings": "Definições da tabela", + "DE.Views.RightMenu.txtTextArtSettings": "Definições de texto artístico", + "DE.Views.ShapeSettings.strBackground": "Cor de fundo", + "DE.Views.ShapeSettings.strChange": "Alterar forma automática", + "DE.Views.ShapeSettings.strColor": "Cor", + "DE.Views.ShapeSettings.strFill": "Preencher", + "DE.Views.ShapeSettings.strForeground": "Cor principal", + "DE.Views.ShapeSettings.strPattern": "Padrão", + "DE.Views.ShapeSettings.strShadow": "Mostrar sombra", + "DE.Views.ShapeSettings.strSize": "Tamanho", + "DE.Views.ShapeSettings.strStroke": "Linha", + "DE.Views.ShapeSettings.strTransparency": "Opacidade", + "DE.Views.ShapeSettings.strType": "Tipo", + "DE.Views.ShapeSettings.textAdvanced": "Mostrar definições avançadas", + "DE.Views.ShapeSettings.textAngle": "Ângulo", + "DE.Views.ShapeSettings.textBorderSizeErr": "O valor inserido não está correto.
Introduza um valor entre 0 pt e 1584 pt.", + "DE.Views.ShapeSettings.textColor": "Cor de preenchimento", + "DE.Views.ShapeSettings.textDirection": "Direção", + "DE.Views.ShapeSettings.textEmptyPattern": "Sem padrão", + "DE.Views.ShapeSettings.textFlip": "Virar", + "DE.Views.ShapeSettings.textFromFile": "De um ficheiro", + "DE.Views.ShapeSettings.textFromStorage": "De um armazenamento", + "DE.Views.ShapeSettings.textFromUrl": "De um URL", + "DE.Views.ShapeSettings.textGradient": "Ponto de gradiente", + "DE.Views.ShapeSettings.textGradientFill": "Preenchimento gradiente", + "DE.Views.ShapeSettings.textHint270": "Rodar 90º à esquerda", + "DE.Views.ShapeSettings.textHint90": "Rodar 90º à direita", + "DE.Views.ShapeSettings.textHintFlipH": "Virar horizontalmente", + "DE.Views.ShapeSettings.textHintFlipV": "Virar verticalmente", + "DE.Views.ShapeSettings.textImageTexture": "Imagem ou Textura", + "DE.Views.ShapeSettings.textLinear": "Linear", + "DE.Views.ShapeSettings.textNoFill": "Sem preenchimento", + "DE.Views.ShapeSettings.textPatternFill": "Padrão", + "DE.Views.ShapeSettings.textPosition": "Posição", + "DE.Views.ShapeSettings.textRadial": "Radial", + "DE.Views.ShapeSettings.textRecentlyUsed": "Utilizado recentemente", + "DE.Views.ShapeSettings.textRotate90": "Rodar 90°", + "DE.Views.ShapeSettings.textRotation": "Rotação", + "DE.Views.ShapeSettings.textSelectImage": "Selecionar imagem", + "DE.Views.ShapeSettings.textSelectTexture": "Selecionar", + "DE.Views.ShapeSettings.textStretch": "Alongar", + "DE.Views.ShapeSettings.textStyle": "Estilo", + "DE.Views.ShapeSettings.textTexture": "De uma textura", + "DE.Views.ShapeSettings.textTile": "Lado a lado", + "DE.Views.ShapeSettings.textWrap": "Estilo de moldagem", + "DE.Views.ShapeSettings.tipAddGradientPoint": "Adicionar ponto de gradiente", + "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Remover Ponto de Gradiente", + "DE.Views.ShapeSettings.txtBehind": "Atrás", + "DE.Views.ShapeSettings.txtBrownPaper": "Papel pardo", + "DE.Views.ShapeSettings.txtCanvas": "Canvas", + "DE.Views.ShapeSettings.txtCarton": "Cartão", + "DE.Views.ShapeSettings.txtDarkFabric": "Tecido escuro", + "DE.Views.ShapeSettings.txtGrain": "Granulação", + "DE.Views.ShapeSettings.txtGranite": "Granito", + "DE.Views.ShapeSettings.txtGreyPaper": "Papel cinza", + "DE.Views.ShapeSettings.txtInFront": "Em frente", + "DE.Views.ShapeSettings.txtInline": "Em Linha com o Texto", + "DE.Views.ShapeSettings.txtKnit": "Encontro", + "DE.Views.ShapeSettings.txtLeather": "Couro", + "DE.Views.ShapeSettings.txtNoBorders": "Sem linha", + "DE.Views.ShapeSettings.txtPapyrus": "Papiro", + "DE.Views.ShapeSettings.txtSquare": "Quadrado", + "DE.Views.ShapeSettings.txtThrough": "Através", + "DE.Views.ShapeSettings.txtTight": "Justo", + "DE.Views.ShapeSettings.txtTopAndBottom": "Parte superior e inferior", + "DE.Views.ShapeSettings.txtWood": "Madeira", + "DE.Views.SignatureSettings.notcriticalErrorTitle": "Aviso", + "DE.Views.SignatureSettings.strDelete": "Remover assinatura", + "DE.Views.SignatureSettings.strDetails": "Detalhes da assinatura", + "DE.Views.SignatureSettings.strInvalid": "Assinaturas inválidas", + "DE.Views.SignatureSettings.strRequested": "Assinaturas solicitadas", + "DE.Views.SignatureSettings.strSetup": "Definições de Assinatura", + "DE.Views.SignatureSettings.strSign": "Assinar", + "DE.Views.SignatureSettings.strSignature": "Assinatura", + "DE.Views.SignatureSettings.strSigner": "Assinante", + "DE.Views.SignatureSettings.strValid": "Assinaturas válidas", + "DE.Views.SignatureSettings.txtContinueEditing": "Editar mesmo assim", + "DE.Views.SignatureSettings.txtEditWarning": "Se editar este documento, remove as assinaturas.
Tem a certeza de que deseja continuar?", + "DE.Views.SignatureSettings.txtRemoveWarning": "Quer remover esta assinatura?
Isto não pode ser anulado.", + "DE.Views.SignatureSettings.txtRequestedSignatures": "Este documento precisa de ser assinado.", + "DE.Views.SignatureSettings.txtSigned": "Assinaturas adicionadas ao documento. Este documento não pode ser editado.", + "DE.Views.SignatureSettings.txtSignedInvalid": "Algumas das assinaturas digitais são inválidas ou não puderam ser verificadas. Este documento não pode ser editado.", + "DE.Views.Statusbar.goToPageText": "Ir para a página", + "DE.Views.Statusbar.pageIndexText": "Página {0} de {1}", + "DE.Views.Statusbar.tipFitPage": "Ajustar à página", + "DE.Views.Statusbar.tipFitWidth": "Ajustar largura", + "DE.Views.Statusbar.tipHandTool": "Ferramenta de mão", + "DE.Views.Statusbar.tipSelectTool": "Selecionar ferramenta", + "DE.Views.Statusbar.tipSetLang": "Definir idioma do texto", + "DE.Views.Statusbar.tipZoomFactor": "Ampliação", + "DE.Views.Statusbar.tipZoomIn": "Ampliar", + "DE.Views.Statusbar.tipZoomOut": "Reduzir", + "DE.Views.Statusbar.txtPageNumInvalid": "Número da página inválido", + "DE.Views.StyleTitleDialog.textHeader": "Criar novo estilo", + "DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style", + "DE.Views.StyleTitleDialog.textTitle": "Título", + "DE.Views.StyleTitleDialog.txtEmpty": "This field is required", + "DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty", + "DE.Views.StyleTitleDialog.txtSameAs": "Igual ao novo estilo criado", + "DE.Views.TableFormulaDialog.textBookmark": "Colar Marcador", + "DE.Views.TableFormulaDialog.textFormat": "Formato de número", + "DE.Views.TableFormulaDialog.textFormula": "Fórmula", + "DE.Views.TableFormulaDialog.textInsertFunction": "Colar Função", + "DE.Views.TableFormulaDialog.textTitle": "Definições de fórmula", + "DE.Views.TableOfContentsSettings.strAlign": "Alinhar número das páginas à direita", + "DE.Views.TableOfContentsSettings.strFullCaption": "Incluir etiqueta e número", + "DE.Views.TableOfContentsSettings.strLinks": "Formatar índice remissivo como ligação", + "DE.Views.TableOfContentsSettings.strLinksOF": "Formatar tabela de figuras como ligações", + "DE.Views.TableOfContentsSettings.strShowPages": "Mostrar número da página", + "DE.Views.TableOfContentsSettings.textBuildTable": "Criar índice remissivo com base em", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "Construir tabela de figuras de", + "DE.Views.TableOfContentsSettings.textEquation": "Equação", + "DE.Views.TableOfContentsSettings.textFigure": "Figura", + "DE.Views.TableOfContentsSettings.textLeader": "Guia", + "DE.Views.TableOfContentsSettings.textLevel": "Nível", + "DE.Views.TableOfContentsSettings.textLevels": "Níveis", + "DE.Views.TableOfContentsSettings.textNone": "Nenhum", + "DE.Views.TableOfContentsSettings.textRadioCaption": "Legenda", + "DE.Views.TableOfContentsSettings.textRadioLevels": "Níveis de contorno", + "DE.Views.TableOfContentsSettings.textRadioStyle": "Estilo", + "DE.Views.TableOfContentsSettings.textRadioStyles": "Estilos selecionados", + "DE.Views.TableOfContentsSettings.textStyle": "Estilo", + "DE.Views.TableOfContentsSettings.textStyles": "Estilos", + "DE.Views.TableOfContentsSettings.textTable": "Tabela", + "DE.Views.TableOfContentsSettings.textTitle": "Índice remissivo", + "DE.Views.TableOfContentsSettings.textTitleTOF": "Tabela de figuras", + "DE.Views.TableOfContentsSettings.txtCentered": "Centrado", + "DE.Views.TableOfContentsSettings.txtClassic": "Clássico", + "DE.Views.TableOfContentsSettings.txtCurrent": "Atual", + "DE.Views.TableOfContentsSettings.txtDistinctive": "Distintivo", + "DE.Views.TableOfContentsSettings.txtFormal": "Formal", + "DE.Views.TableOfContentsSettings.txtModern": "Moderno", + "DE.Views.TableOfContentsSettings.txtOnline": "Online", + "DE.Views.TableOfContentsSettings.txtSimple": "Simples", + "DE.Views.TableOfContentsSettings.txtStandard": "Padrão", + "DE.Views.TableSettings.deleteColumnText": "Eliminar coluna", + "DE.Views.TableSettings.deleteRowText": "Excluir linha", + "DE.Views.TableSettings.deleteTableText": "Eliminar tabela", + "DE.Views.TableSettings.insertColumnLeftText": "Inserir coluna à esquerda", + "DE.Views.TableSettings.insertColumnRightText": "Inserir coluna à direita", + "DE.Views.TableSettings.insertRowAboveText": "Inserir linha acima", + "DE.Views.TableSettings.insertRowBelowText": "Inserir linha abaixo", + "DE.Views.TableSettings.mergeCellsText": "Mesclar células", + "DE.Views.TableSettings.selectCellText": "Selecionar célula", + "DE.Views.TableSettings.selectColumnText": "Selecionar coluna", + "DE.Views.TableSettings.selectRowText": "Selecionar linha", + "DE.Views.TableSettings.selectTableText": "Selecionar tabela", + "DE.Views.TableSettings.splitCellsText": "Dividir célula...", + "DE.Views.TableSettings.splitCellTitleText": "Dividir célula", + "DE.Views.TableSettings.strRepeatRow": "Repetir como linha de cabeçalho em todas as páginas", + "DE.Views.TableSettings.textAddFormula": "Adicionar fórmula", + "DE.Views.TableSettings.textAdvanced": "Mostrar definições avançadas", + "DE.Views.TableSettings.textBackColor": "Cor de fundo", + "DE.Views.TableSettings.textBanded": "Em tiras", + "DE.Views.TableSettings.textBorderColor": "Cor", + "DE.Views.TableSettings.textBorders": "Estilo do contorno", + "DE.Views.TableSettings.textCellSize": "Tamanho de linhas e de colunas", + "DE.Views.TableSettings.textColumns": "Colunas", + "DE.Views.TableSettings.textConvert": "Converter tabela em texto", + "DE.Views.TableSettings.textDistributeCols": "Distribuir colunas", + "DE.Views.TableSettings.textDistributeRows": "Distribuir linhas", + "DE.Views.TableSettings.textEdit": "Linhas e colunas", + "DE.Views.TableSettings.textEmptyTemplate": "Sem modelos", + "DE.Views.TableSettings.textFirst": "Primeiro", + "DE.Views.TableSettings.textHeader": "Cabeçalho", + "DE.Views.TableSettings.textHeight": "Altura", + "DE.Views.TableSettings.textLast": "Última", + "DE.Views.TableSettings.textRows": "Linhas", + "DE.Views.TableSettings.textSelectBorders": "Selecione os contornos aos quais pretende aplicar o estilo escolhido", + "DE.Views.TableSettings.textTemplate": "Selecionar de um modelo", + "DE.Views.TableSettings.textTotal": "Total", + "DE.Views.TableSettings.textWidth": "Largura", + "DE.Views.TableSettings.tipAll": "Definir contorno externo e todas as linhas internas", + "DE.Views.TableSettings.tipBottom": "Definir apenas contorno inferior externo", + "DE.Views.TableSettings.tipInner": "Definir apenas linhas internas", + "DE.Views.TableSettings.tipInnerHor": "Definir apenas linhas internas horizontais", + "DE.Views.TableSettings.tipInnerVert": "Definir apenas linhas internas verticais", + "DE.Views.TableSettings.tipLeft": "Definir apenas contorno esquerdo externo", + "DE.Views.TableSettings.tipNone": "Definir sem contornos", + "DE.Views.TableSettings.tipOuter": "Definir apenas contorno externo", + "DE.Views.TableSettings.tipRight": "Definir apenas contorno direito externo", + "DE.Views.TableSettings.tipTop": "Definir apenas contorno superior externo", + "DE.Views.TableSettings.txtNoBorders": "Sem contornos", + "DE.Views.TableSettings.txtTable_Accent": "Destaque", + "DE.Views.TableSettings.txtTable_Colorful": "Colorido", + "DE.Views.TableSettings.txtTable_Dark": "Escuro", + "DE.Views.TableSettings.txtTable_GridTable": "Tabela em grelha", + "DE.Views.TableSettings.txtTable_Light": "Claro", + "DE.Views.TableSettings.txtTable_ListTable": "Tabela em lista", + "DE.Views.TableSettings.txtTable_PlainTable": "Tabela simples", + "DE.Views.TableSettings.txtTable_TableGrid": "Grelha da tabela", + "DE.Views.TableSettingsAdvanced.textAlign": "Alinhamento", + "DE.Views.TableSettingsAdvanced.textAlignment": "Alinhamento", + "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Permitir espaçamento entre células", + "DE.Views.TableSettingsAdvanced.textAlt": "Texto alternativo", + "DE.Views.TableSettingsAdvanced.textAltDescription": "Descrição", + "DE.Views.TableSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", + "DE.Views.TableSettingsAdvanced.textAltTitle": "Título", + "DE.Views.TableSettingsAdvanced.textAnchorText": "Тexto", + "DE.Views.TableSettingsAdvanced.textAutofit": "Redimensionar automaticamente para se ajustar ao conteúdo", + "DE.Views.TableSettingsAdvanced.textBackColor": "Plano de fundo da célula", + "DE.Views.TableSettingsAdvanced.textBelow": "abaixo", + "DE.Views.TableSettingsAdvanced.textBorderColor": "Cor do contorno", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "Clique no diagrama ou utilize os botões para selecionar os contornos e aplicar um estilo", + "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Contornos e Fundo", + "DE.Views.TableSettingsAdvanced.textBorderWidth": "Tamanho do contorno", + "DE.Views.TableSettingsAdvanced.textBottom": "Inferior", + "DE.Views.TableSettingsAdvanced.textCellOptions": "Opções de célula", + "DE.Views.TableSettingsAdvanced.textCellProps": "Propriedades da célula", + "DE.Views.TableSettingsAdvanced.textCellSize": "Tamanho da célula", + "DE.Views.TableSettingsAdvanced.textCenter": "Centro", + "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Centro", + "DE.Views.TableSettingsAdvanced.textCheckMargins": "Usar margens padrão", + "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Margens padrão", + "DE.Views.TableSettingsAdvanced.textDistance": "Distância do texto", + "DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal", + "DE.Views.TableSettingsAdvanced.textIndLeft": "Recuo da esquerda", + "DE.Views.TableSettingsAdvanced.textLeft": "Esquerda", + "DE.Views.TableSettingsAdvanced.textLeftTooltip": "Esquerda", + "DE.Views.TableSettingsAdvanced.textMargin": "Margem", + "DE.Views.TableSettingsAdvanced.textMargins": "Margens da célula", + "DE.Views.TableSettingsAdvanced.textMeasure": "Medir em", + "DE.Views.TableSettingsAdvanced.textMove": "Mover objeto com texto", + "DE.Views.TableSettingsAdvanced.textOnlyCells": "Apenas para as células selecionadas", + "DE.Views.TableSettingsAdvanced.textOptions": "Opções", + "DE.Views.TableSettingsAdvanced.textOverlap": "Permitir sobreposição", + "DE.Views.TableSettingsAdvanced.textPage": "Página", + "DE.Views.TableSettingsAdvanced.textPosition": "Posição", + "DE.Views.TableSettingsAdvanced.textPrefWidth": "Largura preferida", + "DE.Views.TableSettingsAdvanced.textPreview": "Pré-visualizar", + "DE.Views.TableSettingsAdvanced.textRelative": "relativo para", + "DE.Views.TableSettingsAdvanced.textRight": "Direita", + "DE.Views.TableSettingsAdvanced.textRightOf": "para a direita de", + "DE.Views.TableSettingsAdvanced.textRightTooltip": "Direita", + "DE.Views.TableSettingsAdvanced.textTable": "Tabela", + "DE.Views.TableSettingsAdvanced.textTableBackColor": "Fundo da tabela", + "DE.Views.TableSettingsAdvanced.textTablePosition": "Posição da tabela", + "DE.Views.TableSettingsAdvanced.textTableSize": "Tamanho da tabela", + "DE.Views.TableSettingsAdvanced.textTitle": "Tabela - Definições avançadas", + "DE.Views.TableSettingsAdvanced.textTop": "Parte superior", + "DE.Views.TableSettingsAdvanced.textVertical": "Vertical", + "DE.Views.TableSettingsAdvanced.textWidth": "Largura", + "DE.Views.TableSettingsAdvanced.textWidthSpaces": "Largura e Espaços", + "DE.Views.TableSettingsAdvanced.textWrap": "Moldar texto", + "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabela embutida", + "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Tabela de fluxo", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Estilo de moldagem", + "DE.Views.TableSettingsAdvanced.textWrapText": "Moldar texto", + "DE.Views.TableSettingsAdvanced.tipAll": "Definir contorno externo e todas as linhas internas", + "DE.Views.TableSettingsAdvanced.tipCellAll": "Definir contornos para células internas apenas", + "DE.Views.TableSettingsAdvanced.tipCellInner": "Definir linhas verticais e horizontais apenas para células internas", + "DE.Views.TableSettingsAdvanced.tipCellOuter": "Definir contornos externos apenas para células internas", + "DE.Views.TableSettingsAdvanced.tipInner": "Definir apenas linhas internas", + "DE.Views.TableSettingsAdvanced.tipNone": "Definir sem contornos", + "DE.Views.TableSettingsAdvanced.tipOuter": "Definir apenas contorno externo", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Definir contorno externo e contornos para todas as células internas", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Definir contorno externo e linhas verticais e horizontais para células internas", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Definir contorno externo da tabela e contornos externos para células internas", + "DE.Views.TableSettingsAdvanced.txtCm": "Centímetro", + "DE.Views.TableSettingsAdvanced.txtInch": "Polegada", + "DE.Views.TableSettingsAdvanced.txtNoBorders": "Sem contornos", + "DE.Views.TableSettingsAdvanced.txtPercent": "Percentagem", + "DE.Views.TableSettingsAdvanced.txtPt": "Ponto", + "DE.Views.TableToTextDialog.textEmpty": "Deve escrever um carácter para o separador personalizado.", + "DE.Views.TableToTextDialog.textNested": "Converter tabelas aninhadas", + "DE.Views.TableToTextDialog.textOther": "Outros", + "DE.Views.TableToTextDialog.textPara": "Marcas de parágrafo", + "DE.Views.TableToTextDialog.textSemicolon": "Ponto e vírgula", + "DE.Views.TableToTextDialog.textSeparator": "Separar texto com", + "DE.Views.TableToTextDialog.textTab": "Separadores", + "DE.Views.TableToTextDialog.textTitle": "Converter tabela em texto", + "DE.Views.TextArtSettings.strColor": "Cor", + "DE.Views.TextArtSettings.strFill": "Preencher", + "DE.Views.TextArtSettings.strSize": "Tamanho", + "DE.Views.TextArtSettings.strStroke": "Traço", + "DE.Views.TextArtSettings.strTransparency": "Opacidade", + "DE.Views.TextArtSettings.strType": "Tipo", + "DE.Views.TextArtSettings.textAngle": "Ângulo", + "DE.Views.TextArtSettings.textBorderSizeErr": "O valor inserido não está correto.
Introduza um valor entre 0 pt e 1584 pt.", + "DE.Views.TextArtSettings.textColor": "Cor de preenchimento", + "DE.Views.TextArtSettings.textDirection": "Direção", + "DE.Views.TextArtSettings.textGradient": "Gradiente", + "DE.Views.TextArtSettings.textGradientFill": "Preenchimento gradiente", + "DE.Views.TextArtSettings.textLinear": "Linear", + "DE.Views.TextArtSettings.textNoFill": "Sem preenchimento", + "DE.Views.TextArtSettings.textPosition": "Posição", + "DE.Views.TextArtSettings.textRadial": "Radial", + "DE.Views.TextArtSettings.textSelectTexture": "Selecionar", + "DE.Views.TextArtSettings.textStyle": "Estilo", + "DE.Views.TextArtSettings.textTemplate": "Modelo", + "DE.Views.TextArtSettings.textTransform": "Transform", + "DE.Views.TextArtSettings.tipAddGradientPoint": "Adicionar ponto de gradiente", + "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Remover Ponto de Gradiente", + "DE.Views.TextArtSettings.txtNoBorders": "Sem linha", + "DE.Views.TextToTableDialog.textAutofit": "Comportamento de auto-ajuste", + "DE.Views.TextToTableDialog.textColumns": "Colunas", + "DE.Views.TextToTableDialog.textContents": "Adaptação automática ao conteúdo", + "DE.Views.TextToTableDialog.textEmpty": "Deve escrever um carácter para o separador personalizado.", + "DE.Views.TextToTableDialog.textFixed": "Largura fixa da coluna", + "DE.Views.TextToTableDialog.textOther": "Outros", + "DE.Views.TextToTableDialog.textPara": "Parágrafos", + "DE.Views.TextToTableDialog.textRows": "Linhas", + "DE.Views.TextToTableDialog.textSemicolon": "Ponto e vírgula", + "DE.Views.TextToTableDialog.textSeparator": "Separar texto em", + "DE.Views.TextToTableDialog.textTab": "Separadores", + "DE.Views.TextToTableDialog.textTableSize": "Tamanho da tabela", + "DE.Views.TextToTableDialog.textTitle": "Converter texto em tabela", + "DE.Views.TextToTableDialog.textWindow": "Ajustar automaticamente à janela", + "DE.Views.TextToTableDialog.txtAutoText": "Automático", + "DE.Views.Toolbar.capBtnAddComment": "Adicionar comentário", + "DE.Views.Toolbar.capBtnBlankPage": "Página vazia", + "DE.Views.Toolbar.capBtnColumns": "Colunas", + "DE.Views.Toolbar.capBtnComment": "Comentário", + "DE.Views.Toolbar.capBtnDateTime": "Data e Hora", + "DE.Views.Toolbar.capBtnInsChart": "Gráfico", + "DE.Views.Toolbar.capBtnInsControls": "Controlos de conteúdo", + "DE.Views.Toolbar.capBtnInsDropcap": "Letra capitular", + "DE.Views.Toolbar.capBtnInsEquation": "Equação", + "DE.Views.Toolbar.capBtnInsHeader": "Cabeçalho/rodapé", + "DE.Views.Toolbar.capBtnInsImage": "Imagem", + "DE.Views.Toolbar.capBtnInsPagebreak": "Quebras", + "DE.Views.Toolbar.capBtnInsShape": "Forma", + "DE.Views.Toolbar.capBtnInsSymbol": "Símbolo", + "DE.Views.Toolbar.capBtnInsTable": "Tabela", + "DE.Views.Toolbar.capBtnInsTextart": "Lágrima", + "DE.Views.Toolbar.capBtnInsTextbox": "Caixa de texto", + "DE.Views.Toolbar.capBtnLineNumbers": "Números de Linhas", + "DE.Views.Toolbar.capBtnMargins": "Margens", + "DE.Views.Toolbar.capBtnPageOrient": "Orientação", + "DE.Views.Toolbar.capBtnPageSize": "Tamanho", + "DE.Views.Toolbar.capBtnWatermark": "Marca d'água", + "DE.Views.Toolbar.capImgAlign": "Alinhar", + "DE.Views.Toolbar.capImgBackward": "Enviar para trás", + "DE.Views.Toolbar.capImgForward": "Trazer para a frente", + "DE.Views.Toolbar.capImgGroup": "Grupo", + "DE.Views.Toolbar.capImgWrapping": "Moldar", + "DE.Views.Toolbar.mniCapitalizeWords": "Capitalizar cada palavra", + "DE.Views.Toolbar.mniCustomTable": "Inserir tabela personalizada", + "DE.Views.Toolbar.mniDrawTable": "Desenhar tabela", + "DE.Views.Toolbar.mniEditControls": "Definições de controlo", + "DE.Views.Toolbar.mniEditDropCap": "Definições de capitulares", + "DE.Views.Toolbar.mniEditFooter": "Editar rodapé", + "DE.Views.Toolbar.mniEditHeader": "Editar cabeçalho", + "DE.Views.Toolbar.mniEraseTable": "Eliminar tabela", + "DE.Views.Toolbar.mniFromFile": "Do ficheiro", + "DE.Views.Toolbar.mniFromStorage": "Do armazenamento", + "DE.Views.Toolbar.mniFromUrl": "De um URL", + "DE.Views.Toolbar.mniHiddenBorders": "Ocultar contornos da tabela", + "DE.Views.Toolbar.mniHiddenChars": "Caracteres não imprimíveis", + "DE.Views.Toolbar.mniHighlightControls": "Definições de destaque", + "DE.Views.Toolbar.mniImageFromFile": "Imagem de um ficheiro", + "DE.Views.Toolbar.mniImageFromStorage": "Imagem de um armazenamento", + "DE.Views.Toolbar.mniImageFromUrl": "Imagem de um URL", + "DE.Views.Toolbar.mniLowerCase": "minúscula", + "DE.Views.Toolbar.mniSentenceCase": "Maiúscula no Início da frase.", + "DE.Views.Toolbar.mniTextToTable": "Converter texto em tabela", + "DE.Views.Toolbar.mniToggleCase": "iNVERTER mAIÚSCULAS/mINÚSCULAS", + "DE.Views.Toolbar.mniUpperCase": "MAIÚSCULAS", + "DE.Views.Toolbar.strMenuNoFill": "Sem preenchimento", + "DE.Views.Toolbar.textAutoColor": "Automático", + "DE.Views.Toolbar.textBold": "Negrito", + "DE.Views.Toolbar.textBottom": "Inferior:", + "DE.Views.Toolbar.textChangeLevel": "Alterar nível de lista", + "DE.Views.Toolbar.textCheckboxControl": "Caixa de seleção", + "DE.Views.Toolbar.textColumnsCustom": "Colunas personalizadas", + "DE.Views.Toolbar.textColumnsLeft": "Esquerda", + "DE.Views.Toolbar.textColumnsOne": "Uma", + "DE.Views.Toolbar.textColumnsRight": "Direita", + "DE.Views.Toolbar.textColumnsThree": "Três", + "DE.Views.Toolbar.textColumnsTwo": "Duas", + "DE.Views.Toolbar.textComboboxControl": "Caixa de combinação", + "DE.Views.Toolbar.textContinuous": "Contínuo", + "DE.Views.Toolbar.textContPage": "Página contínua", + "DE.Views.Toolbar.textCustomLineNumbers": "Opções de numeração de linha", + "DE.Views.Toolbar.textDateControl": "Data", + "DE.Views.Toolbar.textDropdownControl": "Lista suspensa", + "DE.Views.Toolbar.textEditWatermark": "Marca d'água personalizada", + "DE.Views.Toolbar.textEvenPage": "Página par", + "DE.Views.Toolbar.textInMargin": "Na margem", + "DE.Views.Toolbar.textInsColumnBreak": "Inserir quebra de coluna", + "DE.Views.Toolbar.textInsertPageCount": "Inserir número de páginas", + "DE.Views.Toolbar.textInsertPageNumber": "Inserir número de página", + "DE.Views.Toolbar.textInsPageBreak": "Inserir quebra de página", + "DE.Views.Toolbar.textInsSectionBreak": "Inserir quebra de seção", + "DE.Views.Toolbar.textInText": "No texto", + "DE.Views.Toolbar.textItalic": "Itálico", + "DE.Views.Toolbar.textLandscape": "Horizontal", + "DE.Views.Toolbar.textLeft": "Esquerda:", + "DE.Views.Toolbar.textListSettings": "Definições da lista", + "DE.Views.Toolbar.textMarginsLast": "Última personalizada", + "DE.Views.Toolbar.textMarginsModerate": "Moderado", + "DE.Views.Toolbar.textMarginsNarrow": "Estreita", + "DE.Views.Toolbar.textMarginsNormal": "Normal", + "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", + "DE.Views.Toolbar.textMarginsWide": "Amplo", + "DE.Views.Toolbar.textNewColor": "Adicionar nova cor personalizada", + "DE.Views.Toolbar.textNextPage": "Página seguinte", + "DE.Views.Toolbar.textNoHighlight": "Sem realce", + "DE.Views.Toolbar.textNone": "Nenhum", + "DE.Views.Toolbar.textOddPage": "Página ímpar", + "DE.Views.Toolbar.textPageMarginsCustom": "Margens personalizadas", + "DE.Views.Toolbar.textPageSizeCustom": "Tamanho de página personalizado", + "DE.Views.Toolbar.textPictureControl": "Imagem", + "DE.Views.Toolbar.textPlainControl": "Texto simples", + "DE.Views.Toolbar.textPortrait": "Vertical", + "DE.Views.Toolbar.textRemoveControl": "Remover controlo de conteúdo", + "DE.Views.Toolbar.textRemWatermark": "Remover marca d'água", + "DE.Views.Toolbar.textRestartEachPage": "Reiniciar cada página", + "DE.Views.Toolbar.textRestartEachSection": "Reiniciar Em Cada Secção", + "DE.Views.Toolbar.textRichControl": "Texto simples", + "DE.Views.Toolbar.textRight": "Direita:", + "DE.Views.Toolbar.textStrikeout": "Riscado", + "DE.Views.Toolbar.textStyleMenuDelete": "Delete style", + "DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles", + "DE.Views.Toolbar.textStyleMenuNew": "Novo estilo baseado na seleção", + "DE.Views.Toolbar.textStyleMenuRestore": "Repor valores padrão", + "DE.Views.Toolbar.textStyleMenuRestoreAll": "Restore all to default styles", + "DE.Views.Toolbar.textStyleMenuUpdate": "Atualizar com base na seleção", + "DE.Views.Toolbar.textSubscript": "Subscrito", + "DE.Views.Toolbar.textSuperscript": "Sobrescrito", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suprimir para Parágrafo Atual", + "DE.Views.Toolbar.textTabCollaboration": "Colaboração", + "DE.Views.Toolbar.textTabFile": "Ficheiro", + "DE.Views.Toolbar.textTabHome": "Base", + "DE.Views.Toolbar.textTabInsert": "Inserir", + "DE.Views.Toolbar.textTabLayout": "Disposição", + "DE.Views.Toolbar.textTabLinks": "Referências", + "DE.Views.Toolbar.textTabProtect": "Proteção", + "DE.Views.Toolbar.textTabReview": "Rever", + "DE.Views.Toolbar.textTabView": "Visualizar", + "DE.Views.Toolbar.textTitleError": "Erro", + "DE.Views.Toolbar.textToCurrent": "Para posição atual", + "DE.Views.Toolbar.textTop": "Parte superior:", + "DE.Views.Toolbar.textUnderline": "Sublinhado", + "DE.Views.Toolbar.tipAlignCenter": "Alinhar ao centro", + "DE.Views.Toolbar.tipAlignJust": "Justificado", + "DE.Views.Toolbar.tipAlignLeft": "Alinhar à esquerda", + "DE.Views.Toolbar.tipAlignRight": "Alinhar à direita", + "DE.Views.Toolbar.tipBack": "Voltar", + "DE.Views.Toolbar.tipBlankPage": "Inserir página vazia", + "DE.Views.Toolbar.tipChangeCase": "Alternar maiúscula/minúscula", + "DE.Views.Toolbar.tipChangeChart": "Alterar tipo de gráfico", + "DE.Views.Toolbar.tipClearStyle": "Limpar estilo", + "DE.Views.Toolbar.tipColorSchemas": "Alterar esquema de cor", + "DE.Views.Toolbar.tipColumns": "Inserir colunas", + "DE.Views.Toolbar.tipControls": "Adicionar controlos de conteúdo", + "DE.Views.Toolbar.tipCopy": "Copiar", + "DE.Views.Toolbar.tipCopyStyle": "Copiar estilo", + "DE.Views.Toolbar.tipDateTime": "Insira a data e hora atuais", + "DE.Views.Toolbar.tipDecFont": "Diminuir tamanho do tipo de letra", + "DE.Views.Toolbar.tipDecPrLeft": "Diminuir o Recuo", + "DE.Views.Toolbar.tipDropCap": "Inserir letra capitular", + "DE.Views.Toolbar.tipEditHeader": "Editar cabeçalho e rodapé", + "DE.Views.Toolbar.tipFontColor": "Cor do tipo de letra", + "DE.Views.Toolbar.tipFontName": "Nome da fonte", + "DE.Views.Toolbar.tipFontSize": "Tamanho do tipo de letra", + "DE.Views.Toolbar.tipHighlightColor": "Cor de destaque", + "DE.Views.Toolbar.tipImgAlign": "Alinhar objetos", + "DE.Views.Toolbar.tipImgGroup": "Agrupar objetos", + "DE.Views.Toolbar.tipImgWrapping": "Moldar texto", + "DE.Views.Toolbar.tipIncFont": "Aumentar tamanho do tipo de letra", + "DE.Views.Toolbar.tipIncPrLeft": "Aumentar recuo", + "DE.Views.Toolbar.tipInsertChart": "Inserir gráfico", + "DE.Views.Toolbar.tipInsertEquation": "Inserir equação", + "DE.Views.Toolbar.tipInsertImage": "Inserir imagem", + "DE.Views.Toolbar.tipInsertNum": "Inserir número da página", + "DE.Views.Toolbar.tipInsertShape": "Inserir forma automática", + "DE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo", + "DE.Views.Toolbar.tipInsertTable": "Inserir tabela", + "DE.Views.Toolbar.tipInsertText": "Inserir caixa de texto", + "DE.Views.Toolbar.tipInsertTextArt": "Inserir arte de texto", + "DE.Views.Toolbar.tipLineNumbers": "Mostrar número das linhas", + "DE.Views.Toolbar.tipLineSpace": "Espaçamento entre linhas do parágrafo", + "DE.Views.Toolbar.tipMailRecepients": "Select Recepients", + "DE.Views.Toolbar.tipMarkers": "Marcadores", + "DE.Views.Toolbar.tipMarkersArrow": "Marcadores de setas", + "DE.Views.Toolbar.tipMarkersCheckmark": "Marcas de verificação", + "DE.Views.Toolbar.tipMarkersDash": "Marcadores de traços", + "DE.Views.Toolbar.tipMarkersHRound": "Marcas de lista redondas vazias", + "DE.Views.Toolbar.tipMarkersStar": "Marcas em estrela", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Listas Multiníveis Numeradas ", + "DE.Views.Toolbar.tipMultilevels": "Lista multi-níveis", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Listas de Símbolos Multiníveis", + "DE.Views.Toolbar.tipMultiLevelVarious": "Várias Listas Multiníveis Numeradas", + "DE.Views.Toolbar.tipNumbers": "Numeração", + "DE.Views.Toolbar.tipPageBreak": "Inserir página ou quebra de seção", + "DE.Views.Toolbar.tipPageMargins": "Margens da página", + "DE.Views.Toolbar.tipPageOrient": "Orientação da página", + "DE.Views.Toolbar.tipPageSize": "Tamanho da página", + "DE.Views.Toolbar.tipParagraphStyle": "Estilo do parágrafo", + "DE.Views.Toolbar.tipPaste": "Colar", + "DE.Views.Toolbar.tipPrColor": "Cor de fundo do parágrafo", + "DE.Views.Toolbar.tipPrint": "Imprimir", + "DE.Views.Toolbar.tipRedo": "Refazer", + "DE.Views.Toolbar.tipSave": "Salvar", + "DE.Views.Toolbar.tipSaveCoauth": "Guarde as suas alterações para que os outros utilizadores as possam ver.", + "DE.Views.Toolbar.tipSendBackward": "Enviar para trás", + "DE.Views.Toolbar.tipSendForward": "Trazer para a frente", + "DE.Views.Toolbar.tipShowHiddenChars": "Caracteres não imprimíveis", + "DE.Views.Toolbar.tipSynchronize": "O documento foi alterado por outro utilizador. Clique para guardar as suas alterações e recarregar o documento.", + "DE.Views.Toolbar.tipUndo": "Desfazer", + "DE.Views.Toolbar.tipWatermark": "Editar marca d'água", + "DE.Views.Toolbar.txtDistribHor": "Distribuir horizontalmente", + "DE.Views.Toolbar.txtDistribVert": "Distribuir verticalmente", + "DE.Views.Toolbar.txtMarginAlign": "Alinhar à margem", + "DE.Views.Toolbar.txtObjectsAlign": "Alinhar objetos selecionados", + "DE.Views.Toolbar.txtPageAlign": "Alinhar à página", + "DE.Views.Toolbar.txtScheme1": "Office", + "DE.Views.Toolbar.txtScheme10": "Mediana", + "DE.Views.Toolbar.txtScheme11": "Metro", + "DE.Views.Toolbar.txtScheme12": "Módulo", + "DE.Views.Toolbar.txtScheme13": "Opulento", + "DE.Views.Toolbar.txtScheme14": "Balcão envidraçado", + "DE.Views.Toolbar.txtScheme15": "Origem", + "DE.Views.Toolbar.txtScheme16": "Papel", + "DE.Views.Toolbar.txtScheme17": "Solstício", + "DE.Views.Toolbar.txtScheme18": "Técnica", + "DE.Views.Toolbar.txtScheme19": "Viagem", + "DE.Views.Toolbar.txtScheme2": "Escala de cinza", + "DE.Views.Toolbar.txtScheme20": "Urbano", + "DE.Views.Toolbar.txtScheme21": "Verve", + "DE.Views.Toolbar.txtScheme22": "Novo Escritório", + "DE.Views.Toolbar.txtScheme3": "Ápice", + "DE.Views.Toolbar.txtScheme4": "Aspeto", + "DE.Views.Toolbar.txtScheme5": "Cívico", + "DE.Views.Toolbar.txtScheme6": "Concurso", + "DE.Views.Toolbar.txtScheme7": "Patrimônio Líquido", + "DE.Views.Toolbar.txtScheme8": "Fluxo", + "DE.Views.Toolbar.txtScheme9": "Fundição", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Mostrar sempre a barra de ferramentas", + "DE.Views.ViewTab.textDarkDocument": "Documento escuro", + "DE.Views.ViewTab.textFitToPage": "Ajustar à página", + "DE.Views.ViewTab.textFitToWidth": "Ajustar à Largura", + "DE.Views.ViewTab.textInterfaceTheme": "Tema da interface", + "DE.Views.ViewTab.textNavigation": "Navegação", + "DE.Views.ViewTab.textRulers": "Réguas", + "DE.Views.ViewTab.textStatusBar": "Barra de estado", + "DE.Views.ViewTab.textZoom": "Zoom", + "DE.Views.WatermarkSettingsDialog.textAuto": "Automático", + "DE.Views.WatermarkSettingsDialog.textBold": "Negrito", + "DE.Views.WatermarkSettingsDialog.textColor": "Cor do texto", + "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", + "DE.Views.WatermarkSettingsDialog.textFont": "Fonte", + "DE.Views.WatermarkSettingsDialog.textFromFile": "De um ficheiro", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "De um armazenamento", + "DE.Views.WatermarkSettingsDialog.textFromUrl": "De um URL", + "DE.Views.WatermarkSettingsDialog.textHor": "Horizontal", + "DE.Views.WatermarkSettingsDialog.textImageW": "Marca d'água da imagem", + "DE.Views.WatermarkSettingsDialog.textItalic": "Itálico", + "DE.Views.WatermarkSettingsDialog.textLanguage": "Idioma", + "DE.Views.WatermarkSettingsDialog.textLayout": "Disposição", + "DE.Views.WatermarkSettingsDialog.textNone": "Nenhum", + "DE.Views.WatermarkSettingsDialog.textScale": "Redimensionar", + "DE.Views.WatermarkSettingsDialog.textSelect": "Selecionar imagem", + "DE.Views.WatermarkSettingsDialog.textStrikeout": "Riscado", + "DE.Views.WatermarkSettingsDialog.textText": "Тexto", + "DE.Views.WatermarkSettingsDialog.textTextW": "Marca d'água de texto", + "DE.Views.WatermarkSettingsDialog.textTitle": "Definições de marcas d'água", + "DE.Views.WatermarkSettingsDialog.textTransparency": "Semi-transparente", + "DE.Views.WatermarkSettingsDialog.textUnderline": "Sublinhado", + "DE.Views.WatermarkSettingsDialog.tipFontName": "Nome do tipo de letra", + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamanho do tipo de letra" +} \ No newline at end of file diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index a31fcd768..8d492aa75 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnView": "Aberto para visualização", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Adicionar nova cor personalizada", + "Common.UI.ButtonColored.textNewColor": "Nova cor personalizada", "Common.UI.Calendar.textApril": "Abril", "Common.UI.Calendar.textAugust": "Agosto", "Common.UI.Calendar.textDecember": "Dezembro", @@ -918,17 +918,6 @@ "DE.Controllers.Toolbar.textSymbols": "Símbolos", "DE.Controllers.Toolbar.textTabForms": "Formulários", "DE.Controllers.Toolbar.textWarning": "Aviso", - "DE.Controllers.Toolbar.tipMarkersArrow": "Balas de flecha", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Marcas de verificação", - "DE.Controllers.Toolbar.tipMarkersDash": "Marcadores de roteiro", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Vinhetas rômbicas cheias", - "DE.Controllers.Toolbar.tipMarkersFRound": "Balas redondas cheias", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Balas quadradas cheias", - "DE.Controllers.Toolbar.tipMarkersHRound": "Balas redondas ocas", - "DE.Controllers.Toolbar.tipMarkersStar": "Balas de estrelas", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Marcadores numerados de vários níveis", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Marcadores de símbolos de vários níveis", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Várias balas numeradas de vários níveis", "DE.Controllers.Toolbar.txtAccent_Accent": "Agudo", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Seta para direita-esquerda acima", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Seta adiante para cima", @@ -1531,14 +1520,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Atualizar a tabela de conteúdo", "DE.Views.DocumentHolder.textWrap": "Estilo da quebra automática", "DE.Views.DocumentHolder.tipIsLocked": "Este elemento está sendo atualmente editado por outro usuário.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Balas de flecha", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Marcas de verificação", - "DE.Views.DocumentHolder.tipMarkersDash": "Marcadores de roteiro", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Vinhetas rômbicas cheias", - "DE.Views.DocumentHolder.tipMarkersFRound": "Balas redondas cheias", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Balas quadradas cheias", - "DE.Views.DocumentHolder.tipMarkersHRound": "Balas redondas ocas", - "DE.Views.DocumentHolder.tipMarkersStar": "Balas de estrelas", "DE.Views.DocumentHolder.toDictionaryText": "Incluir no Dicionário", "DE.Views.DocumentHolder.txtAddBottom": "Adicionar borda inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Adicionar barra de fração", @@ -2136,6 +2117,7 @@ "DE.Views.Navigation.txtDemote": "Rebaixar", "DE.Views.Navigation.txtEmpty": "Não há títulos no documento.
Aplique um estilo de título ao texto para que ele apareça no índice.", "DE.Views.Navigation.txtEmptyItem": "Título Vazio", + "DE.Views.Navigation.txtEmptyViewer": "Não há títulos no documento.", "DE.Views.Navigation.txtExpand": "Expandir tudo", "DE.Views.Navigation.txtExpandToLevel": "Expandir ao nível", "DE.Views.Navigation.txtHeadingAfter": "Novo título após", @@ -2691,7 +2673,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Amplo", - "DE.Views.Toolbar.textNewColor": "Adicionar nova cor personalizada", + "DE.Views.Toolbar.textNewColor": "Nova cor personalizada", "DE.Views.Toolbar.textNextPage": "Próxima página", "DE.Views.Toolbar.textNoHighlight": "Sem destaque", "DE.Views.Toolbar.textNone": "Nenhum", @@ -2771,7 +2753,18 @@ "DE.Views.Toolbar.tipLineSpace": "Espaçamento entre linhas do parágrafo", "DE.Views.Toolbar.tipMailRecepients": "Select Recepients", "DE.Views.Toolbar.tipMarkers": "Marcadores", + "DE.Views.Toolbar.tipMarkersArrow": "Balas de flecha", + "DE.Views.Toolbar.tipMarkersCheckmark": "Marcas de verificação", + "DE.Views.Toolbar.tipMarkersDash": "Marcadores de roteiro", + "DE.Views.Toolbar.tipMarkersFRhombus": "Vinhetas rômbicas cheias", + "DE.Views.Toolbar.tipMarkersFRound": "Balas redondas cheias", + "DE.Views.Toolbar.tipMarkersFSquare": "Balas quadradas cheias", + "DE.Views.Toolbar.tipMarkersHRound": "Balas redondas ocas", + "DE.Views.Toolbar.tipMarkersStar": "Balas de estrelas", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Marcadores numerados de vários níveis", "DE.Views.Toolbar.tipMultilevels": "Contorno", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Marcadores de símbolos de vários níveis", + "DE.Views.Toolbar.tipMultiLevelVarious": "Várias balas numeradas de vários níveis", "DE.Views.Toolbar.tipNumbers": "Numeração", "DE.Views.Toolbar.tipPageBreak": "Inserir página ou quebra de seção", "DE.Views.Toolbar.tipPageMargins": "Margens da página", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index ac257d705..02acbff66 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", "Common.UI.ButtonColored.textAutoColor": "Automat", - "Common.UI.ButtonColored.textNewColor": "Adăugarea unei culori particularizate noi", + "Common.UI.ButtonColored.textNewColor": "Сuloare particularizată", "Common.UI.Calendar.textApril": "Aprilie", "Common.UI.Calendar.textAugust": "August", "Common.UI.Calendar.textDecember": "Decembrie", @@ -262,6 +262,7 @@ "Common.Views.Comments.textResolved": "Rezolvat", "Common.Views.Comments.textSort": "Sortare comentarii", "Common.Views.Comments.textViewResolved": "Dvs. nu aveți permisiunea de a redeschide comentariu", + "Common.Views.Comments.txtEmpty": "Nu există niciun comentariu.", "Common.Views.CopyWarningDialog.textDontShow": "Nu afișa acest mesaj din nou", "Common.Views.CopyWarningDialog.textMsg": "Operațiuni de copiere, decupare și lipire din bară de instrumente sau meniul contextual al editorului se execută numai în editorul.

Pentru copiere și lipire din sau în aplicații exterioare folosiți următoarele combinații de taste:", "Common.Views.CopyWarningDialog.textTitle": "Comenzile de copiere, decupare și lipire", @@ -514,6 +515,7 @@ "DE.Controllers.LeftMenu.warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
Sunteți sigur că doriți să continuați?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Fișierul dvs {0} va fi convertit într-un format editabil. Convertirea poate dura ceva timp. Documentul rezultat va fi optimizat pentru a vă permite să editați textul, dar s-ar putea să nu arate exact ca original {0}, mai ales dacă fișierul original conține mai multe elemente grafice.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Dacă salvați în acest format de fișier, este posibil ca unele dintre formatări să se piardă.
Sigur doriți să continuați?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} nu este un caracter special pe care îl puteți introduce în câmpul pentru înlocuire.", "DE.Controllers.Main.applyChangesTextText": "Încărcarea modificărilor...", "DE.Controllers.Main.applyChangesTitleText": "Încărcare modificări", "DE.Controllers.Main.convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", @@ -918,17 +920,6 @@ "DE.Controllers.Toolbar.textSymbols": "Simboluri", "DE.Controllers.Toolbar.textTabForms": "Formulare", "DE.Controllers.Toolbar.textWarning": "Avertisment", - "DE.Controllers.Toolbar.tipMarkersArrow": "Listă cu marcatori săgeată", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare", - "DE.Controllers.Toolbar.tipMarkersDash": "Listă cu marcatori cu o liniuță", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Listă cu marcatori romb umplut", - "DE.Controllers.Toolbar.tipMarkersFRound": "Listă cu marcatori cerc umplut", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Listă cu marcatori pătrat umplut", - "DE.Controllers.Toolbar.tipMarkersHRound": "Listă cu marcatori cerc gol ", - "DE.Controllers.Toolbar.tipMarkersStar": "Listă cu marcatori stele", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Listă multinivel numerotată", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Listă multinivel cu marcatori", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Listă multinivel cu numerotare diversă ", "DE.Controllers.Toolbar.txtAccent_Accent": "Ascuțit", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Săgeată deasupra de la dreapta la stînga", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Săgeată deasupra spre stânga ", @@ -1531,14 +1522,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Actualizare cuprins", "DE.Views.DocumentHolder.textWrap": "Stil de încadrare", "DE.Views.DocumentHolder.tipIsLocked": "La moment acest obiect este editat de către un alt utilizator.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Listă cu marcatori săgeată", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare", - "DE.Views.DocumentHolder.tipMarkersDash": "Listă cu marcatori cu o liniuță", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Listă cu marcatori romb umplut", - "DE.Views.DocumentHolder.tipMarkersFRound": "Listă cu marcatori cerc umplut", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Listă cu marcatori pătrat umplut", - "DE.Views.DocumentHolder.tipMarkersHRound": "Listă cu marcatori cerc gol ", - "DE.Views.DocumentHolder.tipMarkersStar": "Listă cu marcatori stele", "DE.Views.DocumentHolder.toDictionaryText": "Adăugare la dicționar", "DE.Views.DocumentHolder.txtAddBottom": "Adăugare bordură de jos", "DE.Views.DocumentHolder.txtAddFractionBar": "Adăugare linia de fracție", @@ -1681,7 +1664,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "Închidere meniu", "DE.Views.FileMenu.btnCreateNewCaption": "Crearea unui document nou", "DE.Views.FileMenu.btnDownloadCaption": "Descărcare ca...", - "DE.Views.FileMenu.btnExitCaption": "Ieșire", + "DE.Views.FileMenu.btnExitCaption": "Închidere", "DE.Views.FileMenu.btnFileOpenCaption": "Deschidere...", "DE.Views.FileMenu.btnHelpCaption": "Asistență...", "DE.Views.FileMenu.btnHistoryCaption": "Istoricul versiune", @@ -1708,12 +1691,17 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Modificare permisiuni", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentariu", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "A fost creat", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Vizualizare rapidă web", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Se incarca...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Modificat ultima dată de către", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Data ultimei modificări", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Nu", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Proprietar", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pagini", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Dimensiune pagină", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragrafe", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF etichetat", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versiune a PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locația", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persoane care au dreptul de acces", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simboluri cu spații", @@ -1723,6 +1711,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titlu", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S-a încărcat", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Cuvinte", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Da", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Modificare permisiuni", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persoane care au dreptul de acces", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avertisment", @@ -2136,6 +2125,7 @@ "DE.Views.Navigation.txtDemote": "Retrogradare", "DE.Views.Navigation.txtEmpty": "Documentul nu are anteturi.
Aplicați un stil de titlu pentru textul care va fi inclus în cuprins.", "DE.Views.Navigation.txtEmptyItem": "Titlul necompletat", + "DE.Views.Navigation.txtEmptyViewer": "Documentul nu are anteturi.", "DE.Views.Navigation.txtExpand": "Extindere totală ", "DE.Views.Navigation.txtExpandToLevel": "Extindere la nivel", "DE.Views.Navigation.txtHeadingAfter": "Titlul nou după", @@ -2771,7 +2761,18 @@ "DE.Views.Toolbar.tipLineSpace": "Spațiere interlinie paragraf ", "DE.Views.Toolbar.tipMailRecepients": "Îmbinare corespondență", "DE.Views.Toolbar.tipMarkers": "Marcatori", + "DE.Views.Toolbar.tipMarkersArrow": "Listă cu marcatori săgeată", + "DE.Views.Toolbar.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare", + "DE.Views.Toolbar.tipMarkersDash": "Listă cu marcatori cu o liniuță", + "DE.Views.Toolbar.tipMarkersFRhombus": "Listă cu marcatori romb umplut", + "DE.Views.Toolbar.tipMarkersFRound": "Listă cu marcatori cerc umplut", + "DE.Views.Toolbar.tipMarkersFSquare": "Listă cu marcatori pătrat umplut", + "DE.Views.Toolbar.tipMarkersHRound": "Listă cu marcatori cerc gol ", + "DE.Views.Toolbar.tipMarkersStar": "Listă cu marcatori stele", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Listă multinivel numerotată", "DE.Views.Toolbar.tipMultilevels": "Listă multinivel", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Listă multinivel cu marcatori", + "DE.Views.Toolbar.tipMultiLevelVarious": "Listă multinivel cu numerotare diversă ", "DE.Views.Toolbar.tipNumbers": "Numerotare", "DE.Views.Toolbar.tipPageBreak": "Inserare sfârșit de pagină sau secțiune", "DE.Views.Toolbar.tipPageMargins": "Margini de pagină", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 4ac9eb04b..a905ad454 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -263,6 +263,7 @@ "Common.Views.Comments.textResolved": "Решено", "Common.Views.Comments.textSort": "Сортировать комментарии", "Common.Views.Comments.textViewResolved": "У вас нет прав для повторного открытия комментария", + "Common.Views.Comments.txtEmpty": "В документе нет комментариев.", "Common.Views.CopyWarningDialog.textDontShow": "Больше не показывать это сообщение", "Common.Views.CopyWarningDialog.textMsg": "Операции копирования, вырезания и вставки можно выполнить с помощью кнопок на панели инструментов и команд контекстного меню только в этой вкладке редактора.

Для копирования в другие приложения и вставки из них используйте следующие сочетания клавиш:", "Common.Views.CopyWarningDialog.textTitle": "Операции копирования, вырезания и вставки", @@ -512,9 +513,10 @@ "DE.Controllers.LeftMenu.textReplaceSuccess": "Поиск выполнен. Заменено вхождений: {0}", "DE.Controllers.LeftMenu.txtCompatible": "Документ будет сохранен в новый формат. Это позволит использовать все функции редактора, но может повлиять на структуру документа.
Используйте опцию 'Совместимость' в дополнительных параметрах, если хотите сделать файлы совместимыми с более старыми версиями MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Без имени", - "DE.Controllers.LeftMenu.warnDownloadAs": "Если Вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
Вы действительно хотите продолжить?", + "DE.Controllers.LeftMenu.warnDownloadAs": "Если Вы продолжите сохранение в этот формат, вcя функциональность, кроме текста, будет потеряна.
Вы действительно хотите продолжить?", "DE.Controllers.LeftMenu.warnDownloadAsPdf": "{0} будет сконвертирован в редактируемый формат. Это может занять некоторое время. Получившийся в результате документ будет оптимизирован для редактирования текста, поэтому он может отличаться от исходного {0}, особенно если исходный файл содержит много графических элементов.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Если вы продолжите сохранение в этот формат, часть форматирования может быть потеряна.
Вы действительно хотите продолжить?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} нельзя использовать как специальный символ в поле замены.", "DE.Controllers.Main.applyChangesTextText": "Загрузка изменений...", "DE.Controllers.Main.applyChangesTitleText": "Загрузка изменений", "DE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.", @@ -919,17 +921,6 @@ "DE.Controllers.Toolbar.textSymbols": "Символы", "DE.Controllers.Toolbar.textTabForms": "Формы", "DE.Controllers.Toolbar.textWarning": "Предупреждение", - "DE.Controllers.Toolbar.tipMarkersArrow": "Маркеры-стрелки", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Маркеры-галочки", - "DE.Controllers.Toolbar.tipMarkersDash": "Маркеры-тире", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Заполненные ромбовидные маркеры", - "DE.Controllers.Toolbar.tipMarkersFRound": "Заполненные круглые маркеры", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры", - "DE.Controllers.Toolbar.tipMarkersHRound": "Пустые круглые маркеры", - "DE.Controllers.Toolbar.tipMarkersStar": "Маркеры-звездочки", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Многоуровневые нумерованные маркеры", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Многоуровневые маркеры-сивволы", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Многоуровневые разные нумерованные маркеры", "DE.Controllers.Toolbar.txtAccent_Accent": "Ударение", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрелка вправо-влево сверху", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрелка влево сверху", @@ -1532,14 +1523,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Обновить оглавление", "DE.Views.DocumentHolder.textWrap": "Стиль обтекания", "DE.Views.DocumentHolder.tipIsLocked": "Этот элемент редактируется другим пользователем.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрелки", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Маркеры-галочки", - "DE.Views.DocumentHolder.tipMarkersDash": "Маркеры-тире", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Заполненные ромбовидные маркеры", - "DE.Views.DocumentHolder.tipMarkersFRound": "Заполненные круглые маркеры", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Заполненные квадратные маркеры", - "DE.Views.DocumentHolder.tipMarkersHRound": "Пустые круглые маркеры", - "DE.Views.DocumentHolder.tipMarkersStar": "Маркеры-звездочки", "DE.Views.DocumentHolder.toDictionaryText": "Добавить в словарь", "DE.Views.DocumentHolder.txtAddBottom": "Добавить нижнюю границу", "DE.Views.DocumentHolder.txtAddFractionBar": "Добавить дробную черту", @@ -1682,7 +1665,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню", "DE.Views.FileMenu.btnCreateNewCaption": "Создать новый", "DE.Views.FileMenu.btnDownloadCaption": "Скачать как...", - "DE.Views.FileMenu.btnExitCaption": "Выйти", + "DE.Views.FileMenu.btnExitCaption": "Закрыть", "DE.Views.FileMenu.btnFileOpenCaption": "Открыть...", "DE.Views.FileMenu.btnHelpCaption": "Справка...", "DE.Views.FileMenu.btnHistoryCaption": "История версий", @@ -1709,12 +1692,17 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Изменить права доступа", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Комментарий", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Создан", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Быстрый веб-просмотр", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Загрузка...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Автор последнего изменения", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Последнее изменение", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Нет", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Владелец", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Страницы", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Размер страницы", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Абзацы", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF с тегами", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Версия PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Размещение", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Люди, имеющие права", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Символы с пробелами", @@ -1724,6 +1712,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Загружен", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Слова", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Да", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Изменить права доступа", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Люди, имеющие права", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Внимание", @@ -2137,6 +2126,7 @@ "DE.Views.Navigation.txtDemote": "Понизить уровень", "DE.Views.Navigation.txtEmpty": "В документе нет заголовков.
Примените стиль заголовка к тексту, чтобы он появился в оглавлении.", "DE.Views.Navigation.txtEmptyItem": "Пустой заголовок", + "DE.Views.Navigation.txtEmptyViewer": "В документе нет заголовков.", "DE.Views.Navigation.txtExpand": "Развернуть все", "DE.Views.Navigation.txtExpandToLevel": "Развернуть до уровня", "DE.Views.Navigation.txtHeadingAfter": "Новый заголовок после", @@ -2772,7 +2762,18 @@ "DE.Views.Toolbar.tipLineSpace": "Междустрочный интервал в абзацах", "DE.Views.Toolbar.tipMailRecepients": "Слияние", "DE.Views.Toolbar.tipMarkers": "Маркированный список", + "DE.Views.Toolbar.tipMarkersArrow": "Маркеры-стрелки", + "DE.Views.Toolbar.tipMarkersCheckmark": "Маркеры-галочки", + "DE.Views.Toolbar.tipMarkersDash": "Маркеры-тире", + "DE.Views.Toolbar.tipMarkersFRhombus": "Заполненные ромбовидные маркеры", + "DE.Views.Toolbar.tipMarkersFRound": "Заполненные круглые маркеры", + "DE.Views.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры", + "DE.Views.Toolbar.tipMarkersHRound": "Пустые круглые маркеры", + "DE.Views.Toolbar.tipMarkersStar": "Маркеры-звездочки", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Многоуровневые нумерованные маркеры", "DE.Views.Toolbar.tipMultilevels": "Многоуровневый список", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Многоуровневые маркеры-сивволы", + "DE.Views.Toolbar.tipMultiLevelVarious": "Многоуровневые разные нумерованные маркеры", "DE.Views.Toolbar.tipNumbers": "Нумерованный список", "DE.Views.Toolbar.tipPageBreak": "Вставить разрыв страницы или раздела", "DE.Views.Toolbar.tipPageMargins": "Поля страницы", diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index 08b4085da..b29cfbdc5 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -62,6 +62,7 @@ "Common.Controllers.ReviewChanges.textRight": "Zarovnať doprava", "Common.Controllers.ReviewChanges.textShape": "Tvar", "Common.Controllers.ReviewChanges.textShd": "Farba pozadia", + "Common.Controllers.ReviewChanges.textShow": "Zobraziť zmeny na", "Common.Controllers.ReviewChanges.textSmallCaps": "Malé písmená", "Common.Controllers.ReviewChanges.textSpacing": "Medzery", "Common.Controllers.ReviewChanges.textSpacingAfter": "Medzera za", @@ -77,38 +78,54 @@ "Common.Controllers.ReviewChanges.textUnderline": "Podčiarknuť", "Common.Controllers.ReviewChanges.textUrl": "Vlepiť URL dokumentu", "Common.Controllers.ReviewChanges.textWidow": "Ovládanie okien", + "Common.Controllers.ReviewChanges.textWord": "Úroveň slova", "Common.define.chartData.textArea": "Plošný graf", + "Common.define.chartData.textAreaStacked": "Skladaná oblasť", "Common.define.chartData.textAreaStackedPer": "100% stohovaná oblasť", "Common.define.chartData.textBar": "Pruhový graf", "Common.define.chartData.textBarNormal": "Zoskupený stĺpec", "Common.define.chartData.textBarNormal3d": "3-D klastrovaný stĺpec", "Common.define.chartData.textBarNormal3dPerspective": "3D stĺpec", + "Common.define.chartData.textBarStacked": "Skladaný stĺpec", "Common.define.chartData.textBarStacked3d": "3-D stohovaný stĺpec", "Common.define.chartData.textBarStackedPer": "100% stohovaný stĺpec", "Common.define.chartData.textBarStackedPer3d": "3-D 100% stohovaný stĺpec", "Common.define.chartData.textCharts": "Grafy", "Common.define.chartData.textColumn": "Stĺpec", "Common.define.chartData.textCombo": "Kombo", + "Common.define.chartData.textComboAreaBar": "Skladaná oblasť - zoskupené", "Common.define.chartData.textComboBarLine": "Zoskupený stĺpec - riadok", "Common.define.chartData.textComboBarLineSecondary": "Zoskupený stĺpec - čiara na sekundárnej osi", "Common.define.chartData.textComboCustom": "Vlastná kombinácia", "Common.define.chartData.textDoughnut": "Šiška", "Common.define.chartData.textHBarNormal": "Zoskupená lišta", "Common.define.chartData.textHBarNormal3d": "3-D zoskupená lišta", + "Common.define.chartData.textHBarStacked": "Skladaný bar", "Common.define.chartData.textHBarStacked3d": "3-D zoskupená lišta", "Common.define.chartData.textHBarStackedPer": "100% stohovaná lišta", "Common.define.chartData.textHBarStackedPer3d": "3-D 100% stohovaná lišta", "Common.define.chartData.textLine": "Čiara/líniový graf", "Common.define.chartData.textLine3d": "3-D línia", + "Common.define.chartData.textLineMarker": "Líniový so značkami", + "Common.define.chartData.textLineStacked": "Skladaná linka", + "Common.define.chartData.textLineStackedMarker": "Skladaná linka so značkami", "Common.define.chartData.textLineStackedPer": "100% stohovaná čiara", "Common.define.chartData.textLineStackedPerMarker": "100% stohovaná línia so značkami", "Common.define.chartData.textPie": "Koláčový graf", "Common.define.chartData.textPie3d": "3-D koláč", "Common.define.chartData.textPoint": "Bodový graf", + "Common.define.chartData.textScatter": "Bodový", + "Common.define.chartData.textScatterLine": "Bodový s rovnými linkami", + "Common.define.chartData.textScatterLineMarker": "Bodový s rovnými linkami a značkami", + "Common.define.chartData.textScatterSmooth": "Bodový s vyhladenými linkami", + "Common.define.chartData.textScatterSmoothMarker": "Bodový s vyhladenými linkami a značkami", "Common.define.chartData.textStock": "Akcie/burzový graf", "Common.define.chartData.textSurface": "Povrch", + "Common.Translation.warnFileLocked": "Dokument nie je možné editovať, pretože je používaný inou aplikáciou.", "Common.Translation.warnFileLockedBtnEdit": "Vytvoriť kópiu", + "Common.Translation.warnFileLockedBtnView": "Otvoriť pre náhľad", "Common.UI.ButtonColored.textAutoColor": "Automaticky", + "Common.UI.ButtonColored.textNewColor": "Pridať novú vlastnú farbu", "Common.UI.Calendar.textApril": "apríl", "Common.UI.Calendar.textAugust": "august", "Common.UI.Calendar.textDecember": "december", @@ -141,6 +158,7 @@ "Common.UI.Calendar.textShortThursday": "št", "Common.UI.Calendar.textShortTuesday": "út", "Common.UI.Calendar.textShortWednesday": "st", + "Common.UI.Calendar.textYears": "Roky", "Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania", "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly", @@ -150,6 +168,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nový", "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez farby", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Skrýt heslo", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Zobraziť heslo", "Common.UI.SearchDialog.textHighlight": "Zvýrazniť výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovať veľkosť písmen", "Common.UI.SearchDialog.textReplaceDef": "Zadať náhradný text", @@ -164,7 +184,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Dokument bol zmenený ďalším používateľom.
Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.", "Common.UI.ThemeColorPalette.textStandartColors": "Štandardné farby", "Common.UI.ThemeColorPalette.textThemeColors": "Farebné témy", + "Common.UI.Themes.txtThemeClassicLight": "Štandardná svetlosť", "Common.UI.Themes.txtThemeDark": "Tmavý", + "Common.UI.Themes.txtThemeLight": "Svetlé", "Common.UI.Window.cancelButtonText": "Zrušiť", "Common.UI.Window.closeButtonText": "Zatvoriť", "Common.UI.Window.noButtonText": "Nie", @@ -186,14 +208,21 @@ "Common.Views.About.txtVersion": "Verzia", "Common.Views.AutoCorrectDialog.textAdd": "Pridať", "Common.Views.AutoCorrectDialog.textApplyText": "Aplikujte počas písania", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorekcia textu", "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformátovať počas písania", "Common.Views.AutoCorrectDialog.textBulleted": "Automatické zoznamy s odrážkami", "Common.Views.AutoCorrectDialog.textBy": "Od", "Common.Views.AutoCorrectDialog.textDelete": "Vymazať", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Pridaj interval s dvojitou medzerou", + "Common.Views.AutoCorrectDialog.textFLCells": "Prvé písmeno v obsahu buniek tabuľky meniť na veľké", + "Common.Views.AutoCorrectDialog.textFLSentence": "Veľlé písmeno na začiatku vety", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a sieťové prístupy s hypertextovými odkazmi", "Common.Views.AutoCorrectDialog.textHyphens": "Rozdeľovníky (--) s pomlčkou (-)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autokorekcia pre matematiku", "Common.Views.AutoCorrectDialog.textNumbered": "Automatické očíslované zoznamy ", "Common.Views.AutoCorrectDialog.textQuotes": "\"Rovné úvodzovky\" s \"chytrými úvodzovkami\"", "Common.Views.AutoCorrectDialog.textRecognized": "Uznané funkcie", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Nasledujúce výrazy sú rozpoznané ako matematické funkcie. Nebudú aplikované pravidlá týkajúce sa veľkých a malých písmen.", "Common.Views.AutoCorrectDialog.textReplace": "Nahradiť", "Common.Views.AutoCorrectDialog.textReplaceText": "Nahrádzať počas písania", "Common.Views.AutoCorrectDialog.textReplaceType": "Nahrádzať text počas písania", @@ -207,13 +236,22 @@ "Common.Views.AutoCorrectDialog.warnReset": "Akákoľvek automatická oprava bude odstránená a zmeny budú vrátené na pôvodné hodnoty. Chcete pokračovať?", "Common.Views.AutoCorrectDialog.warnRestore": "Samooprava pre %1 bude resetovaná na pôvodnú hodnotu. Chcete pokračovať?", "Common.Views.Chat.textSend": "Poslať", + "Common.Views.Comments.mniAuthorAsc": "Autor A až Z", + "Common.Views.Comments.mniAuthorDesc": "Autor Z až A", + "Common.Views.Comments.mniDateAsc": "Najstarší", + "Common.Views.Comments.mniDateDesc": "Najnovší", + "Common.Views.Comments.mniFilterGroups": "Filtrovať podľa skupiny", + "Common.Views.Comments.mniPositionAsc": "Zhora ", + "Common.Views.Comments.mniPositionDesc": "Zdola", "Common.Views.Comments.textAdd": "Pridať", "Common.Views.Comments.textAddComment": "Pridať komentár", "Common.Views.Comments.textAddCommentToDoc": "Pridať komentár k dokumentu", "Common.Views.Comments.textAddReply": "Pridať odpoveď", + "Common.Views.Comments.textAll": "Všetko", "Common.Views.Comments.textAnonym": "Hosť", "Common.Views.Comments.textCancel": "Zrušiť", "Common.Views.Comments.textClose": "Zatvoriť", + "Common.Views.Comments.textClosePanel": "Zavrieť komentáre", "Common.Views.Comments.textComments": "Komentáre", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Zadať svoj komentár tu", @@ -222,6 +260,8 @@ "Common.Views.Comments.textReply": "Odpovedať", "Common.Views.Comments.textResolve": "Vyriešiť", "Common.Views.Comments.textResolved": "Vyriešené", + "Common.Views.Comments.textSort": "Triediť komentáre", + "Common.Views.Comments.textViewResolved": "Nemáte povolenie pre opätovné otvorenie komentáru", "Common.Views.CopyWarningDialog.textDontShow": "Neukazovať túto správu znova", "Common.Views.CopyWarningDialog.textMsg": "Kopírovať, vystrihovať a priliepať pomocou tlačidiel panela nástrojov editora a kontextovej ponuky sa vykonajú iba v rámci tejto karty editora.

Ak chcete kopírovať alebo priliepať do alebo z aplikácií mimo editora, použite nasledujúce klávesové skratky: ", "Common.Views.CopyWarningDialog.textTitle": "Akcia kopírovať, vystrihnúť a prilepiť", @@ -237,11 +277,13 @@ "Common.Views.ExternalMergeEditor.textSave": "Uložiť a Zatvoriť", "Common.Views.ExternalMergeEditor.textTitle": "Príjemcovia hromadnej korešpondencie", "Common.Views.Header.labelCoUsersDescr": "Používatelia, ktorí súbor práve upravujú:", + "Common.Views.Header.textAddFavorite": "Označiť ako obľúbené", "Common.Views.Header.textAdvSettings": "Pokročilé nastavenia", "Common.Views.Header.textBack": "Otvoriť umiestnenie súboru", "Common.Views.Header.textCompactView": "Skryť panel s nástrojmi", "Common.Views.Header.textHideLines": "Skryť pravítka", "Common.Views.Header.textHideStatusBar": "Schovať stavový riadok", + "Common.Views.Header.textRemoveFavorite": "Odstrániť z obľúbených", "Common.Views.Header.textZoom": "Priblíženie", "Common.Views.Header.tipAccessRights": "Spravovať prístupové práva k dokumentom", "Common.Views.Header.tipDownload": "Stiahnuť súbor", @@ -250,6 +292,7 @@ "Common.Views.Header.tipRedo": "Opakovať", "Common.Views.Header.tipSave": "Uložiť", "Common.Views.Header.tipUndo": "Krok späť", + "Common.Views.Header.tipViewSettings": "Zobraziť nastavenia", "Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom", "Common.Views.Header.txtAccessRights": "Zmeniť prístupové práva", "Common.Views.Header.txtRename": "Premenovať", @@ -259,6 +302,7 @@ "Common.Views.History.textRestore": "Obnoviť", "Common.Views.History.textShow": "Expandovať/rozšíriť", "Common.Views.History.textShowAll": "Zobraziť detailné zmeny", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Vložte obrázok URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", @@ -283,6 +327,7 @@ "Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú", "Common.Views.PasswordDialog.txtPassword": "Heslo", "Common.Views.PasswordDialog.txtRepeat": "Zopakujte heslo", + "Common.Views.PasswordDialog.txtTitle": "Nastaviť Heslo", "Common.Views.PasswordDialog.txtWarning": "Upozornenie: Ak stratíte alebo zabudnete heslo, nemožno ho obnoviť. Uschovajte ho na bezpečnom mieste.", "Common.Views.PluginDlg.textLoading": "Nahrávanie", "Common.Views.Plugins.groupCaption": "Pluginy", @@ -311,12 +356,16 @@ "Common.Views.ReviewChanges.strFast": "Rýchly", "Common.Views.ReviewChanges.strFastDesc": "Spoločné úpravy v reálnom čase. Všetky zmeny sú ukladané automaticky.", "Common.Views.ReviewChanges.strStrict": "Prísny", + "Common.Views.ReviewChanges.strStrictDesc": "Pre synchronizáciu zmien, ktoré ste urobili vy a ostatný, použite tlačítko \"Uložiť\".", "Common.Views.ReviewChanges.textEnable": "Zapnúť", + "Common.Views.ReviewChanges.textWarnTrackChanges": "Sledovanie zmien bude zapnuté pre všetkých užívateľov s plným prístupom. Pri nasledujúcom otvorení dokumentu bude sledovanie zmien zachované.", "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Povoliť sledovanie zmien všetkým?", "Common.Views.ReviewChanges.tipAcceptCurrent": "Akceptovať aktuálnu zmenu", "Common.Views.ReviewChanges.tipCoAuthMode": "Nastaviť mód spoločných úprav", "Common.Views.ReviewChanges.tipCommentRem": "Odstrániť komentáre", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Odstrániť aktuálne komentáre", + "Common.Views.ReviewChanges.tipCommentResolve": "Vyriešiť komentáre", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Vyriešiť aktuálne komentáre", "Common.Views.ReviewChanges.tipCompare": "Porovnať súčasný dokument s iným", "Common.Views.ReviewChanges.tipHistory": "Zobraziť históriu verzií", "Common.Views.ReviewChanges.tipRejectCurrent": "Odmietnuť aktuálnu zmenu", @@ -337,14 +386,26 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "Odstrániť moje komentáre", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Odstrániť moje aktuálne komentáre", "Common.Views.ReviewChanges.txtCommentRemove": "Odstrániť", + "Common.Views.ReviewChanges.txtCommentResolve": "Vyriešiť", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Vyriešiť všetky komentáre", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Vyriešiť aktuálne komentáre", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Vyriešiť moje komentáre", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Vyriešiť moje aktuálne komentáre", "Common.Views.ReviewChanges.txtCompare": "Porovnať", "Common.Views.ReviewChanges.txtDocLang": "Jazyk", "Common.Views.ReviewChanges.txtEditing": "upravované", "Common.Views.ReviewChanges.txtFinal": "Všetky zmeny prijaté {0}", "Common.Views.ReviewChanges.txtFinalCap": "Posledný", + "Common.Views.ReviewChanges.txtHistory": "História verzií", "Common.Views.ReviewChanges.txtMarkup": "Všetky zmeny {0}", - "Common.Views.ReviewChanges.txtMarkupCap": "Vyznačenie", + "Common.Views.ReviewChanges.txtMarkupCap": "Označenie a bubliny", + "Common.Views.ReviewChanges.txtMarkupSimple": "Všetky zmeny {0}
Bez rečových bublín", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "Len označenie", "Common.Views.ReviewChanges.txtNext": "Nasledujúci", + "Common.Views.ReviewChanges.txtOff": "Vypnúť pre mňa", + "Common.Views.ReviewChanges.txtOffGlobal": "Vypnúť pre mňa a ostatných", + "Common.Views.ReviewChanges.txtOn": "Zapnúť pre mňa", + "Common.Views.ReviewChanges.txtOnGlobal": "Zapnúť pre mňa a ostatných", "Common.Views.ReviewChanges.txtOriginal": "Všetky zmeny boli zamietnuté {0}", "Common.Views.ReviewChanges.txtOriginalCap": "Originál", "Common.Views.ReviewChanges.txtPrev": "Predchádzajúci", @@ -371,11 +432,17 @@ "Common.Views.ReviewPopover.textCancel": "Zrušiť", "Common.Views.ReviewPopover.textClose": "Zatvoriť", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textFollowMove": "Nasledovať Pohyb", "Common.Views.ReviewPopover.textMention": "+zmienka poskytne prístup k dokumentu a odošle mail", "Common.Views.ReviewPopover.textMentionNotify": "+zmienka upovedomí užívateľa mailom", "Common.Views.ReviewPopover.textOpenAgain": "Znova otvoriť", "Common.Views.ReviewPopover.textReply": "Odpoveď", "Common.Views.ReviewPopover.textResolve": "Vyriešiť", + "Common.Views.ReviewPopover.textViewResolved": "Nemáte povolenie pre opätovné otvorenie komentáru", + "Common.Views.ReviewPopover.txtAccept": "Akceptovať", + "Common.Views.ReviewPopover.txtDeleteTip": "Zmazať", + "Common.Views.ReviewPopover.txtEditTip": "Upraviť", + "Common.Views.ReviewPopover.txtReject": "Odmietnuť", "Common.Views.SaveAsDlg.textLoading": "Načítavanie", "Common.Views.SaveAsDlg.textTitle": "Priečinok na uloženie", "Common.Views.SelectFileDlg.textLoading": "Načítavanie", @@ -385,6 +452,7 @@ "Common.Views.SignDialog.textChange": "Zmeniť", "Common.Views.SignDialog.textInputName": "Zadať meno signatára", "Common.Views.SignDialog.textItalic": "Kurzíva", + "Common.Views.SignDialog.textNameError": "Meno podpisovateľa nesmie byť prázdne. ", "Common.Views.SignDialog.textPurpose": "Účel podpisovania tohto dokumentu", "Common.Views.SignDialog.textSelect": "Vybrať", "Common.Views.SignDialog.textSelectImage": "Vybrať obrázok", @@ -404,21 +472,32 @@ "Common.Views.SignSettingsDialog.textTitle": "Nastavenia podpisu", "Common.Views.SignSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", "Common.Views.SymbolTableDialog.textCharacter": "Symbol", + "Common.Views.SymbolTableDialog.textCode": "Hodnota unicode HEX ", "Common.Views.SymbolTableDialog.textCopyright": "Znak autorských práv", "Common.Views.SymbolTableDialog.textDCQuote": "Uzatvárajúca úvodzovka", "Common.Views.SymbolTableDialog.textDOQuote": "Úvodná úvodzovka", "Common.Views.SymbolTableDialog.textEllipsis": "Horizontálna elipsa", + "Common.Views.SymbolTableDialog.textEmDash": "Dlhá pomlčka", + "Common.Views.SymbolTableDialog.textEmSpace": "Dlhá medzera", + "Common.Views.SymbolTableDialog.textEnDash": "Krátka pomlčka", + "Common.Views.SymbolTableDialog.textEnSpace": "Krátka medzera", "Common.Views.SymbolTableDialog.textFont": "Písmo", + "Common.Views.SymbolTableDialog.textNBHyphen": "Pevná pomlčka", + "Common.Views.SymbolTableDialog.textNBSpace": "Nezalomiteľná medzera", + "Common.Views.SymbolTableDialog.textPilcrow": "Pí", "Common.Views.SymbolTableDialog.textQEmSpace": "Medzera 1/4 Em", "Common.Views.SymbolTableDialog.textRange": "Rozsah", "Common.Views.SymbolTableDialog.textRecent": "Nedávno použité symboly", "Common.Views.SymbolTableDialog.textRegistered": "Registrovaná značka", "Common.Views.SymbolTableDialog.textSCQuote": "Uzatvárajúca úvodzovka", + "Common.Views.SymbolTableDialog.textSection": "Paragraf", "Common.Views.SymbolTableDialog.textShortcut": "Klávesová skratka", + "Common.Views.SymbolTableDialog.textSHyphen": "Mäkký spojovník", "Common.Views.SymbolTableDialog.textSOQuote": "Úvodná jednoduchá úvodzovka", "Common.Views.SymbolTableDialog.textSpecial": "špeciálne znaky", "Common.Views.SymbolTableDialog.textSymbols": "Symboly", "Common.Views.SymbolTableDialog.textTitle": "Symbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Symbol ochrannej známky", "Common.Views.UserNameDialog.textDontShow": "Nepýtať sa ma znova", "Common.Views.UserNameDialog.textLabel": "Štítok:", "Common.Views.UserNameDialog.textLabelError": "Etiketa nesmie byť prázdna.", @@ -430,7 +509,10 @@ "DE.Controllers.LeftMenu.textNoTextFound": "Dáta, ktoré hľadáte sa nedajú nájsť. Prosím, upravte svoje možnosti vyhľadávania.", "DE.Controllers.LeftMenu.textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.", "DE.Controllers.LeftMenu.textReplaceSuccess": "Vyhľadávanie bolo uskutočnené. Nahradené udalosti: {0}", + "DE.Controllers.LeftMenu.txtCompatible": "Dokument bude uložený v novom formáte. Umožní Vám využiť všetky funkcie editora, ale môže ovplyvniť rozloženie dokumentu.
Pokiaľ chcete, aby súbory boli kompatibilné so staršími verziami MS Word, použite voľbu \"Kompatibilita\" v pokročilých nastaveniach.", + "DE.Controllers.LeftMenu.txtUntitled": "Bez názvu", "DE.Controllers.LeftMenu.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Vaše {0} bude prevedené do editovateľného formátu. Táto operácia môže chvíľu trvať. Výsledný dokument bude optimalizovaný a umožní editáciu textu. Nemusí vyzerať totožne ako pôvodný {0}, zvlášť pokiaľ pôvodný súbor obsahoval veľké množstvo grafiky. ", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Ak budete pokračovať v ukladaní tohto formátu, časť z formátovania sa môže stratiť.
Ste si istí, že chcete pokračovať?", "DE.Controllers.Main.applyChangesTextText": "Načítavanie zmien...", "DE.Controllers.Main.applyChangesTitleText": "Načítavanie zmien", @@ -445,6 +527,7 @@ "DE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.", + "DE.Controllers.Main.errorComboSeries": "Pre vytvorenie kombinovaného grafu, zvoľte aspoň dve skupiny dát.", "DE.Controllers.Main.errorCompare": "Počas spoločných úprav nie je Porovnávanie dokumentov dostupné.", "DE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.", "DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ", @@ -456,9 +539,11 @@ "DE.Controllers.Main.errorEditingSaveas": "Pri práci s dokumentom došlo k chybe.
Použite voľbu \"Uložiť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", "DE.Controllers.Main.errorEmailClient": "Nenašiel sa žiadny emailový klient.", "DE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", + "DE.Controllers.Main.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
Pre ďalšie podrobnosti kontaktujte prosím vášho správcu dokumentového servera.", "DE.Controllers.Main.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", "DE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", "DE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", + "DE.Controllers.Main.errorLoadingFont": "Štýly písma nie sú načítané
Prosím kontaktujte Vášho administrátora dokumentových serverov.", "DE.Controllers.Main.errorMailMergeLoadFile": "Načítavanie zlyhalo. Vyberte iný súbor.", "DE.Controllers.Main.errorMailMergeSaveFile": "Zlúčenie zlyhalo.", "DE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo.", @@ -466,7 +551,9 @@ "DE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.", "DE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.", "DE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", + "DE.Controllers.Main.errorSetPassword": "Heslo nemohlo byť použité", "DE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", + "DE.Controllers.Main.errorSubmit": "Potvrdenie zlyhalo", "DE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "DE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "DE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", @@ -475,6 +562,7 @@ "DE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", "DE.Controllers.Main.errorViewerDisconnect": "Spojenie so serverom je prerušené. Dokument môžete zobraziť,
ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.", "DE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknite na \"Zostať na tejto stránke\", potom \"Uložiť\" aby ste zmeny uložili. Kliknutím na \"Odísť z tejto stránky\" zrušíte všetky neuložené zmeny. ", + "DE.Controllers.Main.leavePageTextOnClose": "Všetky neuložené zmeny v tomto dokumente budú stratené.
Kliknite na \"Zrušiť\" a potom na \"Uložiť\" pre uloženie. Kliknite na \"OK\" pre zrušenie všetkých neuložených zmien.", "DE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", "DE.Controllers.Main.loadFontsTitleText": "Načítavanie dát", "DE.Controllers.Main.loadFontTextText": "Načítavanie dát...", @@ -497,6 +585,7 @@ "DE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.", "DE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý", "DE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", + "DE.Controllers.Main.saveErrorTextDesktop": "Súbor nemohol byť uložený, alebo vytvorený
Možné dôvody:
1.Súbor je možne použiť iba na čítanie.
2. Súbor je editovaný iným užívateľom.
3.Úložisko je plné, alebo poškodené.", "DE.Controllers.Main.saveTextText": "Ukladanie dokumentu...", "DE.Controllers.Main.saveTitleText": "Ukladanie dokumentu", "DE.Controllers.Main.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", @@ -512,18 +601,24 @@ "DE.Controllers.Main.textClose": "Zatvoriť", "DE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip", "DE.Controllers.Main.textContactUs": "Kontaktujte predajcu", + "DE.Controllers.Main.textConvertEquation": "Táto rovnica bola vytvorená starou verziou editora rovníc, ktorá už nie je podporovaná. Pre jej upravenie, preveďte rovnicu do formátu Office Math ML.
Previesť teraz?", "DE.Controllers.Main.textCustomLoader": "Všimnite si, prosím, že podľa zmluvných podmienok licencie nemáte oprávnenie zmeniť loader.
Kontaktujte prosím naše Predajné oddelenie, aby ste získali odhad ceny.", + "DE.Controllers.Main.textDisconnect": "Spojenie sa stratilo", "DE.Controllers.Main.textGuest": "Hosť", + "DE.Controllers.Main.textHasMacros": "Súbor obsahuje automatické makrá.
Naozaj chcete makra spustiť?", "DE.Controllers.Main.textLearnMore": "Viac informácií", "DE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu", "DE.Controllers.Main.textLongName": "Vložte meno, ktorého dĺžka je menej ako 128 znakov.", "DE.Controllers.Main.textNoLicenseTitle": "Bol dosiahnutý limit licencie", "DE.Controllers.Main.textPaidFeature": "Platená funkcia", - "DE.Controllers.Main.textRemember": "Pamätať si moju voľbu", + "DE.Controllers.Main.textReconnect": "Spojenie sa obnovilo", + "DE.Controllers.Main.textRemember": "Pamätať si moju voľbu pre všetky súbory", + "DE.Controllers.Main.textRenameError": "Meno užívateľa nesmie byť prázdne.", "DE.Controllers.Main.textRenameLabel": "Zadajte meno, ktoré sa bude používať pre spoluprácu", "DE.Controllers.Main.textShape": "Tvar", "DE.Controllers.Main.textStrict": "Prísny režim", "DE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.
Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.", + "DE.Controllers.Main.textTryUndoRedoWarn": "Funkcia Späť/Znova sú vypnuté pre rýchli režim spolupráce. ", "DE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", "DE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", "DE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená", @@ -536,23 +631,30 @@ "DE.Controllers.Main.txtCallouts": "Popisky obrázku", "DE.Controllers.Main.txtCharts": "Grafy", "DE.Controllers.Main.txtChoose": "Zvolte položku", + "DE.Controllers.Main.txtClickToLoad": "Klikni pre nahratie obrázku", "DE.Controllers.Main.txtCurrentDocument": "Aktuálny dokument", "DE.Controllers.Main.txtDiagramTitle": "Názov grafu", "DE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...", + "DE.Controllers.Main.txtEndOfFormula": "Neočakávaný koniec vzorca", "DE.Controllers.Main.txtEnterDate": "Zadajte dátum", "DE.Controllers.Main.txtErrorLoadHistory": "Načítavanie histórie zlyhalo", "DE.Controllers.Main.txtEvenPage": "Párna stránka", "DE.Controllers.Main.txtFiguredArrows": "Šipky", "DE.Controllers.Main.txtFirstPage": "Prvá strana", "DE.Controllers.Main.txtFooter": "Päta stránky", + "DE.Controllers.Main.txtFormulaNotInTable": "Vzorec nie je v tabuľke", "DE.Controllers.Main.txtHeader": "Hlavička", "DE.Controllers.Main.txtHyperlink": "Hypertextový odkaz", "DE.Controllers.Main.txtIndTooLarge": "Index je priveľký", "DE.Controllers.Main.txtLines": "Riadky", "DE.Controllers.Main.txtMainDocOnly": "Chyba! Iba hlavný dokument.", "DE.Controllers.Main.txtMath": "Matematika", + "DE.Controllers.Main.txtMissArg": "Chýba argument", "DE.Controllers.Main.txtMissOperator": "Chýbajúci operátor", "DE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie", + "DE.Controllers.Main.txtNone": "Žiadny", + "DE.Controllers.Main.txtNoTableOfContents": "V dokumente neboli nájdené žiadne nadpisy. Použite na ne v texte štýl pre nadpisy, aby sa objavili v tabuľke obsahu.", + "DE.Controllers.Main.txtNoTableOfFigures": "Žiadne vstupné hodnoty pre obsah neboli nájdené.", "DE.Controllers.Main.txtNoText": "Chyba! V dokumente nie je žiaden text špecifikovaného štýlu.", "DE.Controllers.Main.txtNotInTable": "Nie je v tabuľke", "DE.Controllers.Main.txtNotValidBookmark": "Chyba! Nie je platnou záložkou odkazujúcou na seba.", @@ -563,7 +665,11 @@ "DE.Controllers.Main.txtSection": "-Sekcia", "DE.Controllers.Main.txtSeries": "Rady", "DE.Controllers.Main.txtShape_accentBorderCallout1": "Vyvolanie riadku 1 (ohraničenie a akcentový pruh)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "Bublina s čiarou 2 (ohraničenie a zvýraznenie)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "Čiarová bublina 3 (Ohraničenie a zvýraznenie)", "DE.Controllers.Main.txtShape_accentCallout1": "Vyvolanie riadku 1 (Accent Bar)", + "DE.Controllers.Main.txtShape_accentCallout2": "Bublina s čiarou 2 (zvýraznenie)", + "DE.Controllers.Main.txtShape_accentCallout3": "Čiarová bublina 3 (zvýraznená)", "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tlačítko Späť alebo Predchádzajúci", "DE.Controllers.Main.txtShape_actionButtonBeginning": "Tlačítko Začiatok", "DE.Controllers.Main.txtShape_actionButtonBlank": "Prázdne tlačítko", @@ -585,8 +691,12 @@ "DE.Controllers.Main.txtShape_bevel": "Skosenie", "DE.Controllers.Main.txtShape_blockArc": "Časť kruhu", "DE.Controllers.Main.txtShape_borderCallout1": "Vyvolanie riadku 1", + "DE.Controllers.Main.txtShape_borderCallout2": "Bublina s čiarou 2", + "DE.Controllers.Main.txtShape_borderCallout3": "Čiarová bublina 3", "DE.Controllers.Main.txtShape_bracePair": "Dvojitá zátvorka", "DE.Controllers.Main.txtShape_callout1": "Vyvolanie riadku 1 (bez ohraničenia)", + "DE.Controllers.Main.txtShape_callout2": "Bublina s čiarou 2 (bez orámovania)", + "DE.Controllers.Main.txtShape_callout3": "Čiarová bublina 3 (bez orámovania)", "DE.Controllers.Main.txtShape_can": "Môže", "DE.Controllers.Main.txtShape_chevron": "Chevron", "DE.Controllers.Main.txtShape_chord": "Akord", @@ -671,16 +781,22 @@ "DE.Controllers.Main.txtShape_mathPlus": "Plus", "DE.Controllers.Main.txtShape_moon": "Mesiac", "DE.Controllers.Main.txtShape_noSmoking": "Symbol \"Nie\"", + "DE.Controllers.Main.txtShape_notchedRightArrow": "Šípka v pravo so zárezom", "DE.Controllers.Main.txtShape_octagon": "Osemuholník", "DE.Controllers.Main.txtShape_parallelogram": "Rovnobežník", "DE.Controllers.Main.txtShape_pentagon": "Päťuholník", "DE.Controllers.Main.txtShape_pie": "Koláčový graf", "DE.Controllers.Main.txtShape_plaque": "Podpísať", "DE.Controllers.Main.txtShape_plus": "Plus", + "DE.Controllers.Main.txtShape_polyline1": "Čmárať", "DE.Controllers.Main.txtShape_polyline2": "Voľná forma", + "DE.Controllers.Main.txtShape_quadArrow": "Štvorstranná šípka", + "DE.Controllers.Main.txtShape_quadArrowCallout": "Bublina so štvorstrannou šípkou", "DE.Controllers.Main.txtShape_rect": "Pravouholník", "DE.Controllers.Main.txtShape_ribbon": "Spodný pruh", + "DE.Controllers.Main.txtShape_ribbon2": "Pásik hore", "DE.Controllers.Main.txtShape_rightArrow": "Pravá šípka", + "DE.Controllers.Main.txtShape_rightArrowCallout": "Bublina so šípkou vpravo", "DE.Controllers.Main.txtShape_rightBrace": "Pravá svorka", "DE.Controllers.Main.txtShape_rightBracket": "Pravá zátvorka", "DE.Controllers.Main.txtShape_round1Rect": "Obdĺžnik s jedným oblým rohom", @@ -689,6 +805,10 @@ "DE.Controllers.Main.txtShape_roundRect": "obdĺžnik s oblými rohmi", "DE.Controllers.Main.txtShape_rtTriangle": "Pravý trojuholník", "DE.Controllers.Main.txtShape_smileyFace": "Smajlík", + "DE.Controllers.Main.txtShape_snip1Rect": "Obdĺžnik s jedným odstrihnutým rohom", + "DE.Controllers.Main.txtShape_snip2DiagRect": "Obdĺžnik s dvoma protiľahlými odstrihnutými rohmi", + "DE.Controllers.Main.txtShape_snip2SameRect": "Obdĺžnik s dvoma odstrihnutými rohmi na rovnakej strane ", + "DE.Controllers.Main.txtShape_snipRoundRect": "Obdĺžnik s jedným zaobleným a jedným odstrihnutým rohom hore", "DE.Controllers.Main.txtShape_spline": "Krivka", "DE.Controllers.Main.txtShape_star10": "10-cípa hviezda", "DE.Controllers.Main.txtShape_star12": "12-cípa hviezda", @@ -700,11 +820,24 @@ "DE.Controllers.Main.txtShape_star6": "6-cípa hviezda", "DE.Controllers.Main.txtShape_star7": "7-cípa hviezda", "DE.Controllers.Main.txtShape_star8": "8-cípa hviezda", + "DE.Controllers.Main.txtShape_stripedRightArrow": "Prúžkovaná šípka vpravo", "DE.Controllers.Main.txtShape_sun": "Slnko", "DE.Controllers.Main.txtShape_teardrop": "Slza", "DE.Controllers.Main.txtShape_textRect": "Textové pole", + "DE.Controllers.Main.txtShape_trapezoid": "Lichobežník", + "DE.Controllers.Main.txtShape_triangle": "Trojuholník", + "DE.Controllers.Main.txtShape_upArrow": "Šípka hore", + "DE.Controllers.Main.txtShape_upArrowCallout": "Bublina so šípkou hore", + "DE.Controllers.Main.txtShape_upDownArrow": "Šípka hore a dole", + "DE.Controllers.Main.txtShape_uturnArrow": "Šípka s otočkou", + "DE.Controllers.Main.txtShape_verticalScroll": "Vertikálne posúvanie", + "DE.Controllers.Main.txtShape_wave": "Vlnovka", + "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oválna bublina", + "DE.Controllers.Main.txtShape_wedgeRectCallout": "Obdĺžniková bublina", + "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Bublina v tvare obdĺžnika so zaoblenými rohmi", "DE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", "DE.Controllers.Main.txtStyle_Caption": "Popis", + "DE.Controllers.Main.txtStyle_endnote_text": "Text vysvetlívky", "DE.Controllers.Main.txtStyle_footnote_text": "Poznámka pod čiarou", "DE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1", "DE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2", @@ -725,40 +858,54 @@ "DE.Controllers.Main.txtSyntaxError": "Syntaktická chyba", "DE.Controllers.Main.txtTableInd": "Index tabuľky nemôže byť nula", "DE.Controllers.Main.txtTableOfContents": "Obsah", + "DE.Controllers.Main.txtTableOfFigures": "Obsah", + "DE.Controllers.Main.txtTOCHeading": "Nadpis Obsahu", "DE.Controllers.Main.txtTooLarge": "Číslo priveľké na formátovanie", + "DE.Controllers.Main.txtTypeEquation": "Sem zadajte rovnicu", + "DE.Controllers.Main.txtUndefBookmark": "Nedefinovaná záložka", "DE.Controllers.Main.txtXAxis": "Os X", "DE.Controllers.Main.txtYAxis": "Os Y", + "DE.Controllers.Main.txtZeroDivide": "Delenie nulou", "DE.Controllers.Main.unknownErrorText": "Neznáma chyba.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", + "DE.Controllers.Main.uploadDocExtMessage": "Neznámy formát dokumentu", "DE.Controllers.Main.uploadDocFileCountMessage": "Neboli nahraté žiadne dokumenty.", "DE.Controllers.Main.uploadDocSizeMessage": "Prekročený limit maximálnej veľkosti dokumentu.", "DE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", "DE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", - "DE.Controllers.Main.uploadImageSizeMessage": "Prekročená maximálna veľkosť obrázka", + "DE.Controllers.Main.uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.", "DE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", "DE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", "DE.Controllers.Main.waitText": "Čakajte, prosím...", "DE.Controllers.Main.warnBrowserIE9": "Aplikácia má na IE9 slabé schopnosti. Použite IE10 alebo vyššie.", "DE.Controllers.Main.warnBrowserZoom": "Súčasné nastavenie priblíženia nie je plne podporované prehliadačom. Obnovte štandardné priblíženie stlačením klávesov Ctrl+0.", + "DE.Controllers.Main.warnLicenseExceeded": "Dosiahli ste limit počtu súbežných spojení %1 editora. Dokument bude otvorený len na náhľad. Pre viac podrobností kontaktujte svojho správcu. ", "DE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencia vypršala.
K funkcii úprav dokumentu už nemáte prístup.
Kontaktujte svojho administrátora, prosím.", "DE.Controllers.Main.warnLicenseLimitedRenewed": "Je potrebné obnoviť licenciu.
K funkciám úprav dokumentov máte obmedzený prístup.
Pre získanie úplného prístupu kontaktujte prosím svojho administrátora.", - "DE.Controllers.Main.warnNoLicense": "Táto verzia aplikácie %1 editors má určité obmedzenia pre súbežné pripojenia k dokumentovému serveru.
Ak potrebujete viac, zvážte aktualizáciu aktuálnej licencie alebo zakúpenie komerčnej.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Dosiahli ste limit %1 editora v režime spolupráce na úpravách. Ohľadne podrobnosti sa obráťte na svojho správcu. ", + "DE.Controllers.Main.warnNoLicense": "Dosiahli ste limit súběžných pripojení %1 editora. Dokument bude otvorený len na prezeranie.
Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", + "DE.Controllers.Main.warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", "DE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", "DE.Controllers.Navigation.txtBeginning": "Začiatok dokumentu", "DE.Controllers.Navigation.txtGotoBeginning": "Ísť na začiatok dokumentu", + "DE.Controllers.Statusbar.textDisconnect": "Spojenie sa stratilo
Pokus o opätovné spojenie. Skontrolujte nastavenie pripojenia. ", "DE.Controllers.Statusbar.textHasChanges": "Boli sledované nové zmeny", + "DE.Controllers.Statusbar.textSetTrackChanges": "Ste v móde Sledovania Zmien", "DE.Controllers.Statusbar.textTrackChanges": "Dokument je otvorený so zapnutým režimom sledovania zmien.", "DE.Controllers.Statusbar.tipReview": "Sledovať zmeny", "DE.Controllers.Statusbar.zoomText": "Priblíženie {0}%", "DE.Controllers.Toolbar.confirmAddFontName": "Písmo, ktoré chcete uložiť, nie je dostupné na aktuálnom zariadení.
Štýl textu sa zobrazí pomocou jedného zo systémových písiem, uložené písmo sa použije, keď bude k dispozícii.
Chcete pokračovať?", + "DE.Controllers.Toolbar.dataUrl": "Vložiť adresu domény URL", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Upozornenie", "DE.Controllers.Toolbar.textAccent": "Akcenty", "DE.Controllers.Toolbar.textBracket": "Zátvorky", "DE.Controllers.Toolbar.textEmptyImgUrl": "Musíte upresniť URL obrázka.", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "Musíte špecifikovať adresu URL.", "DE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 1 a 300.", "DE.Controllers.Toolbar.textFraction": "Zlomky", "DE.Controllers.Toolbar.textFunction": "Funkcie", + "DE.Controllers.Toolbar.textGroup": "Skupina", "DE.Controllers.Toolbar.textInsert": "Vložiť", "DE.Controllers.Toolbar.textIntegral": "Integrály", "DE.Controllers.Toolbar.textLargeOperator": "Veľké operátory", @@ -766,6 +913,7 @@ "DE.Controllers.Toolbar.textMatrix": "Matice", "DE.Controllers.Toolbar.textOperator": "Operátory", "DE.Controllers.Toolbar.textRadical": "Odmocniny", + "DE.Controllers.Toolbar.textRecentlyUsed": "Nedávno použité", "DE.Controllers.Toolbar.textScript": "Mocniny", "DE.Controllers.Toolbar.textSymbols": "Symboly", "DE.Controllers.Toolbar.textTabForms": "Formuláre", @@ -1090,6 +1238,7 @@ "DE.Controllers.Toolbar.txtSymbol_zeta": "Zéta", "DE.Controllers.Viewport.textFitPage": "Prispôsobiť na stranu", "DE.Controllers.Viewport.textFitWidth": "Prispôsobiť na šírku", + "DE.Controllers.Viewport.txtDarkMode": "Tmavý režim", "DE.Views.AddNewCaptionLabelDialog.textLabel": "Štítok:", "DE.Views.AddNewCaptionLabelDialog.textLabelError": "Etiketa nesmie byť prázdna", "DE.Views.BookmarksDialog.textAdd": "Pridať", @@ -1121,12 +1270,16 @@ "DE.Views.CaptionDialog.textHyphen": "Rozdeľovník", "DE.Views.CaptionDialog.textInsert": "Vložiť", "DE.Views.CaptionDialog.textLabel": "Štítok", + "DE.Views.CaptionDialog.textLongDash": "dlhá pomlčka", "DE.Views.CaptionDialog.textNumbering": "Číslovanie", "DE.Views.CaptionDialog.textPeriod": "Perióda", + "DE.Views.CaptionDialog.textSeparator": "Použi oddeľovač", "DE.Views.CaptionDialog.textTable": "Tabuľka", "DE.Views.CaptionDialog.textTitle": "Vložte titulok", "DE.Views.CellsAddDialog.textCol": "Stĺpce", "DE.Views.CellsAddDialog.textDown": "Pod kurzorom", + "DE.Views.CellsAddDialog.textLeft": "Doľava", + "DE.Views.CellsAddDialog.textRight": "Doprava", "DE.Views.CellsAddDialog.textRow": "Riadky", "DE.Views.CellsAddDialog.textTitle": "Vložiť niekoľko", "DE.Views.CellsAddDialog.textUp": "Nad kurzorom", @@ -1141,7 +1294,7 @@ "DE.Views.ChartSettings.textWidth": "Šírka", "DE.Views.ChartSettings.textWrap": "Obtekanie textu", "DE.Views.ChartSettings.txtBehind": "Za", - "DE.Views.ChartSettings.txtInFront": "vpredu", + "DE.Views.ChartSettings.txtInFront": "Vpredu", "DE.Views.ChartSettings.txtInline": "Zarovno s textom", "DE.Views.ChartSettings.txtSquare": "Štvorec", "DE.Views.ChartSettings.txtThrough": "Cez", @@ -1165,11 +1318,17 @@ "DE.Views.ControlSettingsDialog.textDropDown": "Rozbaľovací zoznam", "DE.Views.ControlSettingsDialog.textFormat": "Zobraz dátum takto", "DE.Views.ControlSettingsDialog.textLang": "Jazyk", + "DE.Views.ControlSettingsDialog.textLock": "Zamykanie", + "DE.Views.ControlSettingsDialog.textName": "Nadpis", "DE.Views.ControlSettingsDialog.textNone": "žiadny", + "DE.Views.ControlSettingsDialog.textPlaceholder": "Zástupný symbol", "DE.Views.ControlSettingsDialog.textShowAs": "Ukázať ako", "DE.Views.ControlSettingsDialog.textSystemColor": "Systém", "DE.Views.ControlSettingsDialog.textTag": "Značka", "DE.Views.ControlSettingsDialog.textTitle": "Nastavenia kontroly obsahu", + "DE.Views.ControlSettingsDialog.textUnchecked": "Symbol nezaškrtnuté", + "DE.Views.ControlSettingsDialog.textUp": "Hore", + "DE.Views.ControlSettingsDialog.textValue": "Hodnota", "DE.Views.ControlSettingsDialog.tipChange": "Zmeniť symbol", "DE.Views.ControlSettingsDialog.txtLockDelete": "Kontrolu obsahu nemožno vymazať", "DE.Views.ControlSettingsDialog.txtLockEdit": "Obsah nie je možné upravovať", @@ -1177,6 +1336,7 @@ "DE.Views.CrossReferenceDialog.textBookmark": "Záložka", "DE.Views.CrossReferenceDialog.textBookmarkText": "Zazáložkovať text", "DE.Views.CrossReferenceDialog.textCaption": "Celý titulok", + "DE.Views.CrossReferenceDialog.textEmpty": "Odkaz na požiadavku je prázdny.", "DE.Views.CrossReferenceDialog.textEndnote": "Poznámka na konci textu", "DE.Views.CrossReferenceDialog.textEndNoteNum": "Číslo poznámky na konci textu", "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Číslo poznámky na konci textu (formátované)", @@ -1194,6 +1354,7 @@ "DE.Views.CrossReferenceDialog.textLabelNum": "Len štítok a číslo", "DE.Views.CrossReferenceDialog.textNoteNum": "Číslo poznámky pod čiarou", "DE.Views.CrossReferenceDialog.textNoteNumForm": "Číslo poznámky pod čiarou (formátované)", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "Len text popisu", "DE.Views.CrossReferenceDialog.textPageNum": "Číslo strany", "DE.Views.CrossReferenceDialog.textParagraph": "Číslovaná položka", "DE.Views.CrossReferenceDialog.textParaNum": "Číslo odseku", @@ -1219,6 +1380,7 @@ "DE.Views.DateTimeDialog.textDefault": "Nastaviť ako defaultné", "DE.Views.DateTimeDialog.textFormat": "Formáty", "DE.Views.DateTimeDialog.textLang": "Jazyk", + "DE.Views.DateTimeDialog.textUpdate": "Aktualizovať automaticky", "DE.Views.DateTimeDialog.txtTitle": "Dátum a čas", "DE.Views.DocumentHolder.aboveText": "Nad", "DE.Views.DocumentHolder.addCommentText": "Pridať komentár", @@ -1267,6 +1429,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Zlúčiť bunky", "DE.Views.DocumentHolder.moreText": "Viac variantov...", "DE.Views.DocumentHolder.noSpellVariantsText": "Žiadne varianty", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "Varovanie", "DE.Views.DocumentHolder.originalSizeText": "Predvolená veľkosť", "DE.Views.DocumentHolder.paragraphText": "Odsek", "DE.Views.DocumentHolder.removeHyperlinkText": "Odstrániť hypertextový odkaz", @@ -1288,6 +1451,7 @@ "DE.Views.DocumentHolder.strSign": "Podpísať", "DE.Views.DocumentHolder.styleText": "Formátovanie ako štýl", "DE.Views.DocumentHolder.tableText": "Tabuľka", + "DE.Views.DocumentHolder.textAccept": "Akceptovať zmenu", "DE.Views.DocumentHolder.textAlign": "Zarovnať", "DE.Views.DocumentHolder.textArrange": "Upraviť/usporiadať/zarovnať", "DE.Views.DocumentHolder.textArrangeBack": "Presunúť do pozadia", @@ -1306,20 +1470,31 @@ "DE.Views.DocumentHolder.textDistributeCols": "Rozdeliť stĺpce", "DE.Views.DocumentHolder.textDistributeRows": "Rozložiť riadky", "DE.Views.DocumentHolder.textEditControls": "Nastavenia kontroly obsahu", + "DE.Views.DocumentHolder.textEditPoints": "Upraviť body", "DE.Views.DocumentHolder.textEditWrapBoundary": "Upraviť okrajovú obálku", "DE.Views.DocumentHolder.textFlipH": "Prevrátiť horizontálne", "DE.Views.DocumentHolder.textFlipV": "Prevrátiť vertikálne", + "DE.Views.DocumentHolder.textFollow": "Nasledovať pohyb", "DE.Views.DocumentHolder.textFromFile": "Zo súboru", "DE.Views.DocumentHolder.textFromStorage": "Z úložiska", "DE.Views.DocumentHolder.textFromUrl": "Z URL adresy ", "DE.Views.DocumentHolder.textJoinList": "Pripojiť k predošlému zoznamu", + "DE.Views.DocumentHolder.textLeft": "Posunúť bunky v ľavo", + "DE.Views.DocumentHolder.textNest": "Vnoriť tabuľku", "DE.Views.DocumentHolder.textNextPage": "Ďalšia stránka", "DE.Views.DocumentHolder.textNumberingValue": "Hodnota číslovania", "DE.Views.DocumentHolder.textPaste": "Vložiť", "DE.Views.DocumentHolder.textPrevPage": "Predchádzajúca strana", "DE.Views.DocumentHolder.textRefreshField": "Obnoviť pole", + "DE.Views.DocumentHolder.textReject": "Odmietnuť zmenu", + "DE.Views.DocumentHolder.textRemCheckBox": "Odstrániť zaškrtávacie pole", + "DE.Views.DocumentHolder.textRemComboBox": "Odstrániť výberové pole", + "DE.Views.DocumentHolder.textRemDropdown": "Odstrániť rozbaľovací zoznam", + "DE.Views.DocumentHolder.textRemField": "Odstrániť textové pole", "DE.Views.DocumentHolder.textRemove": "Odstrániť", "DE.Views.DocumentHolder.textRemoveControl": "Odstrániť kontrolu obsahu", + "DE.Views.DocumentHolder.textRemPicture": "Odstrániť obrázok", + "DE.Views.DocumentHolder.textRemRadioBox": "Odstrániť prepínač", "DE.Views.DocumentHolder.textReplace": "Nahradiť obrázok", "DE.Views.DocumentHolder.textRotate": "Otočiť", "DE.Views.DocumentHolder.textRotate270": "Otočiť o 90° doľava", @@ -1392,7 +1567,7 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Skryť horné ohraničenie", "DE.Views.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru", "DE.Views.DocumentHolder.txtIncreaseArg": "Zväčšiť veľkosť obsahu/argumentu", - "DE.Views.DocumentHolder.txtInFront": "vpredu", + "DE.Views.DocumentHolder.txtInFront": "Vpredu", "DE.Views.DocumentHolder.txtInline": "Zarovno s textom", "DE.Views.DocumentHolder.txtInsertArgAfter": "Vložiť argument/obsah po", "DE.Views.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred", @@ -1415,6 +1590,7 @@ "DE.Views.DocumentHolder.txtRemLimit": "Odstrániť limitu", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Odstrániť znak akcentu", "DE.Views.DocumentHolder.txtRemoveBar": "Odstrániť vodorovnú čiaru", + "DE.Views.DocumentHolder.txtRemoveWarning": "Chcete odstrániť tento podpis?
Tento krok je nezvratný.", "DE.Views.DocumentHolder.txtRemScripts": "Odstrániť skripty", "DE.Views.DocumentHolder.txtRemSubscript": "Odstrániť dolný index", "DE.Views.DocumentHolder.txtRemSuperscript": "Odstrániť horný index", @@ -1434,6 +1610,7 @@ "DE.Views.DocumentHolder.txtTopAndBottom": "Hore a dole", "DE.Views.DocumentHolder.txtUnderbar": "Čiara pod textom", "DE.Views.DocumentHolder.txtUngroup": "Oddeliť", + "DE.Views.DocumentHolder.txtWarnUrl": "Kliknutie na tento odkaz môže byť škodlivé pre Vaše zariadenie a Vaše dáta.
Ste si istý, že chcete pokračovať?", "DE.Views.DocumentHolder.updateStyleText": "Aktualizovať %1 štýl", "DE.Views.DocumentHolder.vertAlignText": "Vertikálne zarovnanie", "DE.Views.DropcapSettingsAdvanced.strBorders": "Orámovanie a výplň", @@ -1479,11 +1656,14 @@ "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Bez orámovania", "DE.Views.EditListItemDialog.textDisplayName": "Meno/názov na zobrazenie", "DE.Views.EditListItemDialog.textNameError": "Názov na zobrazenie nesmie byť prázdny.", + "DE.Views.EditListItemDialog.textValue": "Hodnota", "DE.Views.EditListItemDialog.textValueError": "Položka s rovnakou hodnotou už existuje.", "DE.Views.FileMenu.btnBackCaption": "Otvoriť umiestnenie súboru", "DE.Views.FileMenu.btnCloseMenuCaption": "Zatvoriť menu", "DE.Views.FileMenu.btnCreateNewCaption": "Vytvoriť nový", "DE.Views.FileMenu.btnDownloadCaption": "Stiahnuť ako...", + "DE.Views.FileMenu.btnExitCaption": "Koniec", + "DE.Views.FileMenu.btnFileOpenCaption": "Otvoriť...", "DE.Views.FileMenu.btnHelpCaption": "Pomoc...", "DE.Views.FileMenu.btnHistoryCaption": "História verzií", "DE.Views.FileMenu.btnInfoCaption": "Informácie o dokumente...", @@ -1499,6 +1679,8 @@ "DE.Views.FileMenu.btnSettingsCaption": "Pokročilé nastavenia...", "DE.Views.FileMenu.btnToEditCaption": "Upraviť dokument", "DE.Views.FileMenu.textDownload": "Stiahnuť", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "Prázdny dokument", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Vytvoriť nový", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Použiť", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Pridať autora", "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Pridať text", @@ -1520,14 +1702,21 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Predmet", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboly", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov", + "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Nahrané", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Slová", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmeniť prístupové práva", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami", + "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Varovanie", + "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Za pomoci hesla", "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Ochrániť dokument", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Podpis", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Upraviť dokument", "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Upravovanie odstráni z dokumentu podpisy
Ste si istí, že chcete pokračovať?", + "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Tento dokument je zabezpečený heslom", + "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Tento dokument je potrebné podpísať.", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Do dokumentu boli pridané platné podpisy. Je zabezpečený proti úpravám.", "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Niektoré digitálne podpisy v dokumente nie sú platné alebo nemohli byť overené. Dokument nie je možné upravovať.", + "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobraziť podpisy", "DE.Views.FileMenuPanels.Settings.okButtonText": "Použiť", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnúť tipy zarovnávania", "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnúť automatickú obnovu", @@ -1537,16 +1726,18 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ", "DE.Views.FileMenuPanels.Settings.strFast": "Rýchly", "DE.Views.FileMenuPanels.Settings.strFontRender": "Náznak typu písma", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Pridaj verziu na úložisko kliknutím na Uložiť alebo Ctrl+S", "DE.Views.FileMenuPanels.Settings.strInputMode": "Zapnúť hieroglyfy", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Zapnúť zobrazovanie komentárov", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Nastavenia makier", "DE.Views.FileMenuPanels.Settings.strPaste": "Vystrihni, skopíruj a vlep", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Po vložení obsahu ukázať tlačítko Možnosti vloženia", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Zapnúť zobrazenie vyriešených komentárov", + "DE.Views.FileMenuPanels.Settings.strReviewHover": "Zobraziť sledovanie zmien", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Zmeny spolupráce v reálnom čase", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnúť kontrolu pravopisu", "DE.Views.FileMenuPanels.Settings.strStrict": "Prísny", + "DE.Views.FileMenuPanels.Settings.strTheme": "Vzhľad prostredia", "DE.Views.FileMenuPanels.Settings.strUnit": "Jednotka merania", "DE.Views.FileMenuPanels.Settings.strZoom": "Predvolená hodnota priblíženia", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Každých 10 minút", @@ -1558,13 +1749,16 @@ "DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatické ukladanie", "DE.Views.FileMenuPanels.Settings.textCompatible": "Kompatibilita", "DE.Views.FileMenuPanels.Settings.textDisabled": "Zakázané", - "DE.Views.FileMenuPanels.Settings.textForceSave": "Uložiť na Server", + "DE.Views.FileMenuPanels.Settings.textForceSave": "Uložiť dočasnú verziu", "DE.Views.FileMenuPanels.Settings.textMinute": "Každú minútu", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Pri uložení ako DOCX urobiť súbory kompatibilné so staršími verziami MS Word", "DE.Views.FileMenuPanels.Settings.txtAll": "Zobraziť všetko", "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Možnosti automatickej opravy...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Prednastavený mód cache", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Zobraziť kliknutím do bublín", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Zobraziť prejdemím na popisy", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Zapnúť tmavý režim pre dokument", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Prispôsobiť na stranu", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Prispôsobiť na šírku", "DE.Views.FileMenuPanels.Settings.txtInch": "Palec (miera 2,54 cm)", @@ -1584,6 +1778,10 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Ukázať oznámenie", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Zablokovať všetky makrá s upozornením", "DE.Views.FileMenuPanels.Settings.txtWin": "ako Windows", + "DE.Views.FormSettings.textAlways": "Vždy", + "DE.Views.FormSettings.textAspect": "Uzamknúť pomer strán", + "DE.Views.FormSettings.textAutofit": "Automaticky prispôsobiť", + "DE.Views.FormSettings.textBackgroundColor": "Farba pozadia", "DE.Views.FormSettings.textCheckbox": "Zaškrtávacie pole", "DE.Views.FormSettings.textColor": "Farba okraja", "DE.Views.FormSettings.textComb": "Hrebeň znakov", @@ -1593,26 +1791,51 @@ "DE.Views.FormSettings.textDisconnect": "Odpojiť", "DE.Views.FormSettings.textDropDown": "Rozbaľovacia ponuka", "DE.Views.FormSettings.textField": "Textové pole", + "DE.Views.FormSettings.textFixed": "Fixná veľkosť poľa", "DE.Views.FormSettings.textFromFile": "Zo súboru", "DE.Views.FormSettings.textFromStorage": "Z úložiska", "DE.Views.FormSettings.textFromUrl": "Z URL adresy ", "DE.Views.FormSettings.textGroupKey": "Skupinový kľúč", "DE.Views.FormSettings.textImage": "Obrázok", "DE.Views.FormSettings.textKey": "Kľúč", + "DE.Views.FormSettings.textLock": "Uzamknúť", "DE.Views.FormSettings.textMaxChars": "Limit znakov", + "DE.Views.FormSettings.textMulti": "Viacriadkové pole", + "DE.Views.FormSettings.textNever": "Nikdy", + "DE.Views.FormSettings.textNoBorder": "Žiadne ohraničenie", + "DE.Views.FormSettings.textPlaceholder": "Zástupný symbol", "DE.Views.FormSettings.textRadiobox": "Prepínač", + "DE.Views.FormSettings.textRequired": "Nevyhnutné", + "DE.Views.FormSettings.textScale": "Kedy škálovať", + "DE.Views.FormSettings.textSelectImage": "Vybrať obrázok", + "DE.Views.FormSettings.textTip": "Pomocník", "DE.Views.FormSettings.textTipAdd": "Pridať novú hodnotu", "DE.Views.FormSettings.textTipDelete": "Vymazať hodnotu", + "DE.Views.FormSettings.textTipDown": "Presunúť dole ", + "DE.Views.FormSettings.textTipUp": "Presunúť hore", + "DE.Views.FormSettings.textTooBig": "Obrázok je príliš veľký", + "DE.Views.FormSettings.textTooSmall": "Obrázok je príliš malý", + "DE.Views.FormSettings.textUnlock": "Odomknúť", + "DE.Views.FormSettings.textValue": "Možnosti hodnôt", "DE.Views.FormSettings.textWidth": "Šírka bunky", "DE.Views.FormsTab.capBtnCheckBox": "Zaškrtávacie pole", "DE.Views.FormsTab.capBtnComboBox": "Zmiešaná schránka", "DE.Views.FormsTab.capBtnDropDown": "Rozbaľovacia ponuka", "DE.Views.FormsTab.capBtnImage": "Obrázok", "DE.Views.FormsTab.capBtnNext": "Nasledujúce pole", + "DE.Views.FormsTab.capBtnPrev": "Predchádzajúce pole", + "DE.Views.FormsTab.capBtnRadioBox": "Prepínač", + "DE.Views.FormsTab.capBtnSaveForm": "Uložiť ako oform", + "DE.Views.FormsTab.capBtnSubmit": "Potvrdiť", + "DE.Views.FormsTab.capBtnText": "Textové pole", + "DE.Views.FormsTab.capBtnView": "Zobraziť formulár", "DE.Views.FormsTab.textClear": "Vyčistiť políčka", "DE.Views.FormsTab.textClearFields": "Vyčistiť všetky polia", + "DE.Views.FormsTab.textCreateForm": "Pridať polia a vytvoriť dokument OFORM z možnosťou vyplnenia. ", + "DE.Views.FormsTab.textGotIt": "Rozumiem", "DE.Views.FormsTab.textHighlight": "Nastavenia zvýraznenia", "DE.Views.FormsTab.textNoHighlight": "Bez zvýraznenia", + "DE.Views.FormsTab.textRequired": "Pre odoslanie formulára vyplňte všetky požadované polia.", "DE.Views.FormsTab.textSubmited": "Formulár úspešne odoslaný", "DE.Views.FormsTab.tipCheckBox": "Vložiť začiarkavacie políčko", "DE.Views.FormsTab.tipComboBox": "Vložiť výberové pole", @@ -1621,8 +1844,11 @@ "DE.Views.FormsTab.tipNextForm": "Prejsť na ďalšie pole", "DE.Views.FormsTab.tipPrevForm": "Ísť na predošlé pole", "DE.Views.FormsTab.tipRadioBox": "Vložiť prepínač", + "DE.Views.FormsTab.tipSaveForm": "Uložiť ako vyplniteľný dokument OFORM", + "DE.Views.FormsTab.tipSubmit": "Potvrdiť formulár", "DE.Views.FormsTab.tipTextField": "Vložiť textové pole", - "DE.Views.FormsTab.tipViewForm": "Režim vypĺňania formulára", + "DE.Views.FormsTab.tipViewForm": "Zobraziť formulár", + "DE.Views.FormsTab.txtUntitled": "Bez názvu", "DE.Views.HeaderFooterSettings.textBottomCenter": "Dole v strede", "DE.Views.HeaderFooterSettings.textBottomLeft": "Dole vľavo", "DE.Views.HeaderFooterSettings.textBottomPage": "Spodná časť stránky", @@ -1641,6 +1867,7 @@ "DE.Views.HeaderFooterSettings.textSameAs": "Odkaz na predchádzajúci", "DE.Views.HeaderFooterSettings.textTopCenter": "Hore v strede", "DE.Views.HeaderFooterSettings.textTopLeft": "Hore vľavo", + "DE.Views.HeaderFooterSettings.textTopPage": "Horná časť stránky", "DE.Views.HeaderFooterSettings.textTopRight": "Hore vpravo", "DE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný textový úryvok", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Zobraziť", @@ -1654,10 +1881,12 @@ "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Nadpisy", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", + "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Toto pole je obmedzené na 2083 znakov", "DE.Views.ImageSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "DE.Views.ImageSettings.textCrop": "Orezať", "DE.Views.ImageSettings.textCropFill": "Vyplniť", "DE.Views.ImageSettings.textCropFit": "Prispôsobiť", + "DE.Views.ImageSettings.textCropToShape": "Orezať podľa tvaru", "DE.Views.ImageSettings.textEdit": "Upraviť", "DE.Views.ImageSettings.textEditObject": "Upraviť objekt", "DE.Views.ImageSettings.textFitMargins": "Prispôsobiť na okraj", @@ -1672,13 +1901,14 @@ "DE.Views.ImageSettings.textHintFlipV": "Prevrátiť vertikálne", "DE.Views.ImageSettings.textInsert": "Nahradiť obrázok", "DE.Views.ImageSettings.textOriginalSize": "Predvolená veľkosť", + "DE.Views.ImageSettings.textRecentlyUsed": "Nedávno použité", "DE.Views.ImageSettings.textRotate90": "Otočiť o 90°", "DE.Views.ImageSettings.textRotation": "Otočenie", "DE.Views.ImageSettings.textSize": "Veľkosť", "DE.Views.ImageSettings.textWidth": "Šírka", "DE.Views.ImageSettings.textWrap": "Obtekanie textu", "DE.Views.ImageSettings.txtBehind": "Za", - "DE.Views.ImageSettings.txtInFront": "vpredu", + "DE.Views.ImageSettings.txtInFront": "Vpredu", "DE.Views.ImageSettings.txtInline": "Zarovno s textom", "DE.Views.ImageSettings.txtSquare": "Štvorec", "DE.Views.ImageSettings.txtThrough": "Cez", @@ -1748,11 +1978,12 @@ "DE.Views.ImageSettingsAdvanced.textTop": "Hore", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Horný okraj", "DE.Views.ImageSettingsAdvanced.textVertical": "Zvislý", + "DE.Views.ImageSettingsAdvanced.textVertically": "Vertikálne", "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Tvary a šípky", "DE.Views.ImageSettingsAdvanced.textWidth": "Šírka", "DE.Views.ImageSettingsAdvanced.textWrap": "Obtekanie textu", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Za", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "vpredu", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Vpredu", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Zarovno s textom", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Štvorec", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Cez", @@ -1769,10 +2000,13 @@ "DE.Views.LeftMenu.txtDeveloper": "VÝVOJÁRSKY REŽIM", "DE.Views.LeftMenu.txtLimit": "Obmedziť prístup", "DE.Views.LeftMenu.txtTrial": "Skúšobný režim", + "DE.Views.LeftMenu.txtTrialDev": "Skúšobný vývojársky režim", "DE.Views.LineNumbersDialog.textAddLineNumbering": "Pridať číslovanie riadkov", "DE.Views.LineNumbersDialog.textApplyTo": "Aplikovať zmeny na", "DE.Views.LineNumbersDialog.textContinuous": "Nepretržitý", "DE.Views.LineNumbersDialog.textCountBy": "Rátať podľa", + "DE.Views.LineNumbersDialog.textDocument": "Celý dokument", + "DE.Views.LineNumbersDialog.textForward": "Z aktuálneho miesta", "DE.Views.LineNumbersDialog.textFromText": "Z textu", "DE.Views.LineNumbersDialog.textNumbering": "Číslovanie", "DE.Views.LineNumbersDialog.textRestartEachPage": "Reštartovať/znova spustiť každú stránku", @@ -1783,15 +2017,16 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnBookmarks": "Záložka", "DE.Views.Links.capBtnCaption": "Popis", - "DE.Views.Links.capBtnContentsUpdate": "Obnoviť", + "DE.Views.Links.capBtnContentsUpdate": "Obnoviť tabuľku", "DE.Views.Links.capBtnCrossRef": "Krížový odkaz", "DE.Views.Links.capBtnInsContents": "Obsah", "DE.Views.Links.capBtnInsFootnote": "Poznámka pod čiarou", "DE.Views.Links.capBtnInsLink": "Hypertextový odkaz", + "DE.Views.Links.capBtnTOF": "Obsah", "DE.Views.Links.confirmDeleteFootnotes": "Chcete odstrániť všetky poznámky pod čiarou?", "DE.Views.Links.confirmReplaceTOF": "Chcete nahradiť vybranú tabuľku čísiel", "DE.Views.Links.mniConvertNote": "Konvertovať všetky poznámky", - "DE.Views.Links.mniDelFootnote": "Odstrániť všetky poznámky pod čiarou", + "DE.Views.Links.mniDelFootnote": "Odstrániť všetky poznámky", "DE.Views.Links.mniInsEndnote": "Vložiť poznámku na konci textu", "DE.Views.Links.mniInsFootnote": "Vložiť poznámku pod čiarou", "DE.Views.Links.mniNoteSettings": "Nastavenia poznámok", @@ -1812,6 +2047,8 @@ "DE.Views.Links.tipInsertHyperlink": "Pridať odkaz", "DE.Views.Links.tipNotes": "Vložiť alebo editovať poznámky pod čiarou", "DE.Views.Links.tipTableFigures": "Vložiť tabuľku s údajmi", + "DE.Views.Links.tipTableFiguresUpdate": "Obnoviť obsah", + "DE.Views.Links.titleUpdateTOF": "Obnoviť obsah", "DE.Views.ListSettingsDialog.textAuto": "Automaticky", "DE.Views.ListSettingsDialog.textCenter": "Stred", "DE.Views.ListSettingsDialog.textLeft": "Vľavo", @@ -1828,6 +2065,7 @@ "DE.Views.ListSettingsDialog.txtSize": "Veľkosť", "DE.Views.ListSettingsDialog.txtSymbol": "Symbol", "DE.Views.ListSettingsDialog.txtTitle": "Nastavenia zoznamu", + "DE.Views.ListSettingsDialog.txtType": "Typ", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Poslať", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Téma", @@ -1877,12 +2115,15 @@ "DE.Views.MailMergeSettings.warnProcessMailMerge": "Spustenie zlúčenia zlyhalo", "DE.Views.Navigation.txtCollapse": "Zbaliť všetko", "DE.Views.Navigation.txtDemote": "Zníženie hodnosti", + "DE.Views.Navigation.txtEmpty": "Tento dokument neobsahuje nadpisy.
Pre zahrnutie textu v obsahu použite na text štýl nadpisov.", "DE.Views.Navigation.txtEmptyItem": "Prázdne záhlavie", + "DE.Views.Navigation.txtEmptyViewer": "Tento dokument neobsahuje nadpisy.", "DE.Views.Navigation.txtExpand": "Rozbaliť všetko", "DE.Views.Navigation.txtExpandToLevel": "Rozšíriť na úroveň", "DE.Views.Navigation.txtHeadingAfter": "Nový nadpis po", "DE.Views.Navigation.txtHeadingBefore": "Nový nadpis pred", "DE.Views.Navigation.txtNewHeading": "Nový podnadpis", + "DE.Views.Navigation.txtPromote": "Povýšiť", "DE.Views.Navigation.txtSelect": "Vybrať obsah", "DE.Views.NoteSettingsDialog.textApply": "Použiť", "DE.Views.NoteSettingsDialog.textApplyTo": "Použiť zmeny na", @@ -1919,6 +2160,7 @@ "DE.Views.PageMarginsDialog.textMultiplePages": "Viacnásobné stránky", "DE.Views.PageMarginsDialog.textNormal": "Normálny", "DE.Views.PageMarginsDialog.textOrientation": "Orientácia", + "DE.Views.PageMarginsDialog.textOutside": "Vonkajšok", "DE.Views.PageMarginsDialog.textPortrait": "Na výšku", "DE.Views.PageMarginsDialog.textPreview": "Náhľad", "DE.Views.PageMarginsDialog.textRight": "Vpravo", @@ -1931,8 +2173,15 @@ "DE.Views.PageSizeDialog.textTitle": "Veľkosť stránky", "DE.Views.PageSizeDialog.textWidth": "Šírka", "DE.Views.PageSizeDialog.txtCustom": "Vlastný", + "DE.Views.PageThumbnails.textClosePanel": "Zavrieť náhľady stránok", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "Zvýrazniť viditeľnú časť stránky", + "DE.Views.PageThumbnails.textPageThumbnails": "Náhľady stránok", + "DE.Views.PageThumbnails.textThumbnailsSettings": "Nastavenia pre náhľady", + "DE.Views.PageThumbnails.textThumbnailsSize": "Veľkosť náhľadov", "DE.Views.ParagraphSettings.strIndent": "Odsadenia", "DE.Views.ParagraphSettings.strIndentsLeftText": "Vľavo", + "DE.Views.ParagraphSettings.strIndentsRightText": "Vpravo", + "DE.Views.ParagraphSettings.strIndentsSpecial": "Špeciálne", "DE.Views.ParagraphSettings.strLineHeight": "Riadkovanie", "DE.Views.ParagraphSettings.strParagraphSpacing": "Riadkovanie medzi odstavcami", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Nepridávať medzeru medzi odseky s rovnakým štýlom", @@ -1945,6 +2194,7 @@ "DE.Views.ParagraphSettings.textBackColor": "Farba pozadia", "DE.Views.ParagraphSettings.textExact": "Presne", "DE.Views.ParagraphSettings.textFirstLine": "Prvý riadok", + "DE.Views.ParagraphSettings.textHanging": "Závesný", "DE.Views.ParagraphSettings.textNoneSpecial": "(žiadne)", "DE.Views.ParagraphSettings.txtAutoText": "Automaticky", "DE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli", @@ -1955,6 +2205,7 @@ "DE.Views.ParagraphSettingsAdvanced.strIndent": "Odsadenia", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Riadkovanie", + "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Úroveň obrysov", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Za", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Pred", @@ -1990,6 +2241,7 @@ "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty", "DE.Views.ParagraphSettingsAdvanced.textExact": "presne", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Prvý riadok", + "DE.Views.ParagraphSettingsAdvanced.textHanging": "Závesný", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Podľa okrajov", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Vodítko", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Vľavo", @@ -2061,6 +2313,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Vzor", "DE.Views.ShapeSettings.textPosition": "Pozícia", "DE.Views.ShapeSettings.textRadial": "Kruhový/hviezdicovitý", + "DE.Views.ShapeSettings.textRecentlyUsed": "Nedávno použité", "DE.Views.ShapeSettings.textRotate90": "Otočiť o 90°", "DE.Views.ShapeSettings.textRotation": "Rotácia", "DE.Views.ShapeSettings.textSelectImage": "Vybrať obrázok", @@ -2080,7 +2333,7 @@ "DE.Views.ShapeSettings.txtGrain": "Textúra/zrnitosť", "DE.Views.ShapeSettings.txtGranite": "Mramorovaný", "DE.Views.ShapeSettings.txtGreyPaper": "Sivý papier", - "DE.Views.ShapeSettings.txtInFront": "vpredu", + "DE.Views.ShapeSettings.txtInFront": "Vpredu", "DE.Views.ShapeSettings.txtInline": "Zarovno s textom", "DE.Views.ShapeSettings.txtKnit": "Pletený", "DE.Views.ShapeSettings.txtLeather": "Koža/kožený", @@ -2091,6 +2344,7 @@ "DE.Views.ShapeSettings.txtTight": "Tesný", "DE.Views.ShapeSettings.txtTopAndBottom": "Hore a dole", "DE.Views.ShapeSettings.txtWood": "Drevo", + "DE.Views.SignatureSettings.notcriticalErrorTitle": "Varovanie", "DE.Views.SignatureSettings.strDelete": "Odstrániť podpis", "DE.Views.SignatureSettings.strDetails": "Podrobnosti podpisu", "DE.Views.SignatureSettings.strInvalid": "Neplatné podpisy", @@ -2103,11 +2357,15 @@ "DE.Views.SignatureSettings.txtContinueEditing": "Aj tak uprav", "DE.Views.SignatureSettings.txtEditWarning": "Upravovanie odstráni z dokumentu podpisy
Ste si istí, že chcete pokračovať?", "DE.Views.SignatureSettings.txtRemoveWarning": "Chcete odstrániť tento podpis?
Nie je možné to vrátiť späť.", + "DE.Views.SignatureSettings.txtRequestedSignatures": "Tento dokument je potrebné podpísať.", + "DE.Views.SignatureSettings.txtSigned": "Do dokumentu boli pridané platné podpisy. Je zabezpečený proti úpravám. ", "DE.Views.SignatureSettings.txtSignedInvalid": "Niektoré digitálne podpisy v dokumente nie sú platné alebo nemohli byť overené. Dokument nie je možné upravovať.", "DE.Views.Statusbar.goToPageText": "Ísť na stranu", "DE.Views.Statusbar.pageIndexText": "Strana {0} z {1}", "DE.Views.Statusbar.tipFitPage": "Prispôsobiť na stranu", "DE.Views.Statusbar.tipFitWidth": "Prispôsobiť na šírku", + "DE.Views.Statusbar.tipHandTool": "Nástroj ruka", + "DE.Views.Statusbar.tipSelectTool": "Zvoliť nástroj", "DE.Views.Statusbar.tipSetLang": "Nastaviť jazyk textu", "DE.Views.Statusbar.tipZoomFactor": "Priblíženie", "DE.Views.Statusbar.tipZoomIn": "Priblížiť", @@ -2138,10 +2396,14 @@ "DE.Views.TableOfContentsSettings.textLevels": "Stupne", "DE.Views.TableOfContentsSettings.textNone": "žiadny", "DE.Views.TableOfContentsSettings.textRadioCaption": "Popis", + "DE.Views.TableOfContentsSettings.textRadioLevels": "Úroveň osnovy", + "DE.Views.TableOfContentsSettings.textRadioStyle": "Štýl", "DE.Views.TableOfContentsSettings.textRadioStyles": "Vybrané štýly", "DE.Views.TableOfContentsSettings.textStyle": "Štýl", "DE.Views.TableOfContentsSettings.textStyles": "Štýly", + "DE.Views.TableOfContentsSettings.textTable": "Tabuľka", "DE.Views.TableOfContentsSettings.textTitle": "Obsah", + "DE.Views.TableOfContentsSettings.textTitleTOF": "Obsah", "DE.Views.TableOfContentsSettings.txtCentered": "Vycentrované", "DE.Views.TableOfContentsSettings.txtClassic": "Klasický", "DE.Views.TableOfContentsSettings.txtCurrent": "Aktuálny", @@ -2174,6 +2436,7 @@ "DE.Views.TableSettings.textBorders": "Štýl orámovania", "DE.Views.TableSettings.textCellSize": "Veľkosť bunky", "DE.Views.TableSettings.textColumns": "Stĺpce", + "DE.Views.TableSettings.textConvert": "Previesť tabuľku na text", "DE.Views.TableSettings.textDistributeCols": "Rozdeliť stĺpce", "DE.Views.TableSettings.textDistributeRows": "Rozložiť riadky", "DE.Views.TableSettings.textEdit": "Riadky a stĺpce", @@ -2186,6 +2449,7 @@ "DE.Views.TableSettings.textSelectBorders": "Vyberte orámovanie, ktoré chcete zmeniť podľa vyššie uvedeného štýlu", "DE.Views.TableSettings.textTemplate": "Vybrať zo šablóny", "DE.Views.TableSettings.textTotal": "Celkovo", + "DE.Views.TableSettings.textWidth": "Šírka", "DE.Views.TableSettings.tipAll": "Nastaviť vonkajšie orámovanie a všetky vnútorné čiary", "DE.Views.TableSettings.tipBottom": "Nastaviť len spodné vonkajšie orámovanie", "DE.Views.TableSettings.tipInner": "Nastaviť len vnútorné čiary", @@ -2202,6 +2466,7 @@ "DE.Views.TableSettings.txtTable_Dark": "Tmavý", "DE.Views.TableSettings.txtTable_GridTable": "Mriežková tabuľka", "DE.Views.TableSettings.txtTable_Light": "Ľahký", + "DE.Views.TableSettings.txtTable_ListTable": "Tabuľka obsahu", "DE.Views.TableSettings.txtTable_PlainTable": "Jednoduchá tabuľka", "DE.Views.TableSettings.txtTable_TableGrid": "Mriežka tabuľky", "DE.Views.TableSettingsAdvanced.textAlign": "Zarovnanie", @@ -2276,6 +2541,14 @@ "DE.Views.TableSettingsAdvanced.txtNoBorders": "Bez orámovania", "DE.Views.TableSettingsAdvanced.txtPercent": "Percento", "DE.Views.TableSettingsAdvanced.txtPt": "Bod", + "DE.Views.TableToTextDialog.textEmpty": "Zadajte znak, ktorý bude použitý ako vlastný oddeľovač.", + "DE.Views.TableToTextDialog.textNested": "Preniesť vnorené tabuľky", + "DE.Views.TableToTextDialog.textOther": "Ostatné", + "DE.Views.TableToTextDialog.textPara": "Znaky odstavca", + "DE.Views.TableToTextDialog.textSemicolon": "Bodkočiarky", + "DE.Views.TableToTextDialog.textSeparator": "Rozdeliť text s/so", + "DE.Views.TableToTextDialog.textTab": "Karty", + "DE.Views.TableToTextDialog.textTitle": "Previesť tabuľku na text", "DE.Views.TextArtSettings.strColor": "Farba", "DE.Views.TextArtSettings.strFill": "Vyplniť", "DE.Views.TextArtSettings.strSize": "Veľkosť", @@ -2299,6 +2572,21 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "Pridať spádový bod", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Odstrániť spádový bod", "DE.Views.TextArtSettings.txtNoBorders": "Bez čiary", + "DE.Views.TextToTableDialog.textAutofit": "Vlastnosti automatického prispôsobenia", + "DE.Views.TextToTableDialog.textColumns": "Stĺpce", + "DE.Views.TextToTableDialog.textContents": "Automaticky prispôsobiť obsahu", + "DE.Views.TextToTableDialog.textEmpty": "Zadajte znak, ktorý bude použitý ako vlastný oddeľovač.", + "DE.Views.TextToTableDialog.textFixed": "Fixná šírka stĺpca", + "DE.Views.TextToTableDialog.textOther": "Ostatné", + "DE.Views.TextToTableDialog.textPara": "Odseky", + "DE.Views.TextToTableDialog.textRows": "Riadky", + "DE.Views.TextToTableDialog.textSemicolon": "Bodkočiarky", + "DE.Views.TextToTableDialog.textSeparator": "Rozdeliť text na", + "DE.Views.TextToTableDialog.textTab": "Karty", + "DE.Views.TextToTableDialog.textTableSize": "Veľkosť tabuľky", + "DE.Views.TextToTableDialog.textTitle": "Previesť text na tabuľku", + "DE.Views.TextToTableDialog.textWindow": "Automaticky prispôsobiť oknu", + "DE.Views.TextToTableDialog.txtAutoText": "Automaticky", "DE.Views.Toolbar.capBtnAddComment": "Pridať komentár", "DE.Views.Toolbar.capBtnBlankPage": "Prázdná stránka", "DE.Views.Toolbar.capBtnColumns": "Stĺpce", @@ -2308,7 +2596,7 @@ "DE.Views.Toolbar.capBtnInsControls": "Kontroly obsahu", "DE.Views.Toolbar.capBtnInsDropcap": "Iniciála", "DE.Views.Toolbar.capBtnInsEquation": "Rovnica", - "DE.Views.Toolbar.capBtnInsHeader": "Záhlavie/päta", + "DE.Views.Toolbar.capBtnInsHeader": "Záhlavie & Päta", "DE.Views.Toolbar.capBtnInsImage": "Obrázok", "DE.Views.Toolbar.capBtnInsPagebreak": "Oddeľovač stránky/zlom strany", "DE.Views.Toolbar.capBtnInsShape": "Tvar", @@ -2320,6 +2608,7 @@ "DE.Views.Toolbar.capBtnMargins": "Okraje", "DE.Views.Toolbar.capBtnPageOrient": "Orientácia", "DE.Views.Toolbar.capBtnPageSize": "Veľkosť", + "DE.Views.Toolbar.capBtnWatermark": "Vodoznak", "DE.Views.Toolbar.capImgAlign": "Zarovnať", "DE.Views.Toolbar.capImgBackward": "Posunúť späť", "DE.Views.Toolbar.capImgForward": "Posunúť vpred", @@ -2333,12 +2622,20 @@ "DE.Views.Toolbar.mniEditFooter": "Upraviť pätu", "DE.Views.Toolbar.mniEditHeader": "Upraviť hlavičku", "DE.Views.Toolbar.mniEraseTable": "Vymazať tabuľku", + "DE.Views.Toolbar.mniFromFile": "Zo súboru", + "DE.Views.Toolbar.mniFromStorage": "Z úložiska", + "DE.Views.Toolbar.mniFromUrl": "Z adresy URL", "DE.Views.Toolbar.mniHiddenBorders": "Skryté orámovania tabuľky", "DE.Views.Toolbar.mniHiddenChars": "Formátovacie značky", "DE.Views.Toolbar.mniHighlightControls": "Nastavenia zvýraznenia", "DE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru", "DE.Views.Toolbar.mniImageFromStorage": "Obrázok z úložiska", "DE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy", + "DE.Views.Toolbar.mniLowerCase": "malé písmena", + "DE.Views.Toolbar.mniSentenceCase": "Veľké písmeno na začiatku vety.", + "DE.Views.Toolbar.mniTextToTable": "Previesť text na tabuľku", + "DE.Views.Toolbar.mniToggleCase": "zAMENIŤ mALÉ a vEĽKÉ", + "DE.Views.Toolbar.mniUpperCase": "VEĽKÉ PÍSMENÁ", "DE.Views.Toolbar.strMenuNoFill": "Bez výplne", "DE.Views.Toolbar.textAutoColor": "Automaticky", "DE.Views.Toolbar.textBold": "Tučné", @@ -2390,6 +2687,7 @@ "DE.Views.Toolbar.textRemWatermark": "Odstrániť vodoznak", "DE.Views.Toolbar.textRestartEachPage": "Reštartovať/znova spustiť každú stránku", "DE.Views.Toolbar.textRestartEachSection": "Reštartovať každú sekciu", + "DE.Views.Toolbar.textRichControl": "Formátovaný text", "DE.Views.Toolbar.textRight": "Vpravo:", "DE.Views.Toolbar.textStrikeout": "Prečiarknuť", "DE.Views.Toolbar.textStyleMenuDelete": "Odstrániť štýl", @@ -2409,6 +2707,7 @@ "DE.Views.Toolbar.textTabLinks": "Referencie", "DE.Views.Toolbar.textTabProtect": "Ochrana", "DE.Views.Toolbar.textTabReview": "Prehľad", + "DE.Views.Toolbar.textTabView": "Zobraziť", "DE.Views.Toolbar.textTitleError": "Chyba", "DE.Views.Toolbar.textToCurrent": "Na aktuálnu pozíciu", "DE.Views.Toolbar.textTop": "Hore:", @@ -2419,11 +2718,11 @@ "DE.Views.Toolbar.tipAlignRight": "Zarovnať doprava", "DE.Views.Toolbar.tipBack": "Späť", "DE.Views.Toolbar.tipBlankPage": "Vložiť prázdnu stranu", - "DE.Views.Toolbar.tipChangeCase": "Zmeniť púzdro", + "DE.Views.Toolbar.tipChangeCase": "Zmeniť veľkosť písmen", "DE.Views.Toolbar.tipChangeChart": "Zmeniť typ grafu", "DE.Views.Toolbar.tipClearStyle": "Vymazať štýl", "DE.Views.Toolbar.tipColorSchemas": "Zmeniť farebnú schému", - "DE.Views.Toolbar.tipColumns": "Vložiť riadky", + "DE.Views.Toolbar.tipColumns": "Vložiť stĺpce", "DE.Views.Toolbar.tipControls": "Vložiť kontrolu obsahu", "DE.Views.Toolbar.tipCopy": "Kopírovať", "DE.Views.Toolbar.tipCopyStyle": "Kopírovať štýl", @@ -2454,7 +2753,18 @@ "DE.Views.Toolbar.tipLineSpace": "Riadkovanie odstavcov", "DE.Views.Toolbar.tipMailRecepients": "Zlúčenie pošty", "DE.Views.Toolbar.tipMarkers": "Odrážky", + "DE.Views.Toolbar.tipMarkersArrow": "Šípkové odrážky", + "DE.Views.Toolbar.tipMarkersCheckmark": "Začiarknuteľné odrážky", + "DE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky", + "DE.Views.Toolbar.tipMarkersFRhombus": "Kosoštvorcové odrážky s výplňou", + "DE.Views.Toolbar.tipMarkersFRound": "Vyplnené okrúhle odrážky", + "DE.Views.Toolbar.tipMarkersFSquare": "Vyplnené štvorcové odrážky", + "DE.Views.Toolbar.tipMarkersHRound": "Prázdne okrúhle odrážky", + "DE.Views.Toolbar.tipMarkersStar": "Hviezdičkové odrážky", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Viacúrovňové číslované odrážky", "DE.Views.Toolbar.tipMultilevels": "Viacúrovňový zoznam", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Viacúrovňové symbolové odrážky", + "DE.Views.Toolbar.tipMultiLevelVarious": "Viacúrovňové rôzne číslované odrážky", "DE.Views.Toolbar.tipNumbers": "Číslovanie", "DE.Views.Toolbar.tipPageBreak": "Vložiť zlom strany alebo sekcie", "DE.Views.Toolbar.tipPageMargins": "Okraje stránky", @@ -2492,6 +2802,7 @@ "DE.Views.Toolbar.txtScheme2": "Odtiene sivej", "DE.Views.Toolbar.txtScheme20": "Mestský", "DE.Views.Toolbar.txtScheme21": "Elán", + "DE.Views.Toolbar.txtScheme22": "Nová kancelária", "DE.Views.Toolbar.txtScheme3": "Vrchol", "DE.Views.Toolbar.txtScheme4": "Aspekt", "DE.Views.Toolbar.txtScheme5": "Občiansky", @@ -2499,6 +2810,15 @@ "DE.Views.Toolbar.txtScheme7": "Spravodlivosť", "DE.Views.Toolbar.txtScheme8": "Prietok", "DE.Views.Toolbar.txtScheme9": "Zlieváreň", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Vždy zobrazovať panel nástrojov", + "DE.Views.ViewTab.textDarkDocument": "Tmavý dokument", + "DE.Views.ViewTab.textFitToPage": "Prispôsobiť stránke", + "DE.Views.ViewTab.textFitToWidth": "Prispôsobiť šírke", + "DE.Views.ViewTab.textInterfaceTheme": "Vzhľad prostredia", + "DE.Views.ViewTab.textNavigation": "Navigácia", + "DE.Views.ViewTab.textRulers": "Pravítka", + "DE.Views.ViewTab.textStatusBar": "Stavový riadok", + "DE.Views.ViewTab.textZoom": "Priblížiť", "DE.Views.WatermarkSettingsDialog.textAuto": "Automaticky", "DE.Views.WatermarkSettingsDialog.textBold": "Tučné", "DE.Views.WatermarkSettingsDialog.textColor": "Farba textu", @@ -2518,7 +2838,9 @@ "DE.Views.WatermarkSettingsDialog.textStrikeout": "Preškrtnutie", "DE.Views.WatermarkSettingsDialog.textText": "Text", "DE.Views.WatermarkSettingsDialog.textTextW": "Vodoznak textu", + "DE.Views.WatermarkSettingsDialog.textTitle": "Nastavenie vodoznaku", "DE.Views.WatermarkSettingsDialog.textTransparency": "Polopriehľadný", + "DE.Views.WatermarkSettingsDialog.textUnderline": "Podčiarknutie", "DE.Views.WatermarkSettingsDialog.tipFontName": "Názov písma", "DE.Views.WatermarkSettingsDialog.tipFontSize": "Veľkosť písma" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index a46bdedca..44d7b8e9c 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -100,6 +100,7 @@ "Common.define.chartData.textStock": "Založni grafikon", "Common.Translation.warnFileLockedBtnEdit": "Ustvari kopijo", "Common.UI.ButtonColored.textAutoColor": "Avtomatsko", + "Common.UI.ButtonColored.textNewColor": "Dodaj novo barvo po meri", "Common.UI.Calendar.textApril": "April", "Common.UI.Calendar.textAugust": "Avgust", "Common.UI.Calendar.textDecember": "December", @@ -1449,6 +1450,7 @@ "DE.Views.MailMergeSettings.txtUntitled": "Untitled", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", "DE.Views.Navigation.txtEmpty": "V dokumentu ni naslovov.
Z uporabo slogov v besedilu določite naslove, tako se bodo prikazali v kazalu in navigaciji.", + "DE.Views.Navigation.txtEmptyViewer": "V dokumentu ni naslovov.", "DE.Views.NoteSettingsDialog.textApply": "Uporabi", "DE.Views.NoteSettingsDialog.textApplyTo": "Uveljavi spremembe za", "DE.Views.NoteSettingsDialog.textEndnote": "Končna opomba", diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index 95e4c597e..c7f97a05a 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia", "Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad", "Common.UI.ButtonColored.textAutoColor": "Automatisk", - "Common.UI.ButtonColored.textNewColor": "Lägg till en ny anpassad färg", + "Common.UI.ButtonColored.textNewColor": "Lägg till ny egen färg", "Common.UI.Calendar.textApril": "April", "Common.UI.Calendar.textAugust": "Augusti", "Common.UI.Calendar.textDecember": "December", @@ -213,6 +213,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatiska punktlistor", "Common.Views.AutoCorrectDialog.textBy": "Av", "Common.Views.AutoCorrectDialog.textDelete": "Radera", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Lägg till punkt med dubbla mellanslag", "Common.Views.AutoCorrectDialog.textFLCells": "Sätt den första bokstaven i tabellcellerna till en versal", "Common.Views.AutoCorrectDialog.textFLSentence": "Stor bokstav varje mening", "Common.Views.AutoCorrectDialog.textHyperlink": "Sökvägar för internet och nätverk med hyperlänk", @@ -511,6 +512,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Dokumentet sparas i det nya formatet. Det tillåter att använda alla redigeringsfunktioner, men kan påverka dokumentlayouten.
Använd alternativet 'Kompatibilitet' i de avancerade inställningarna om du vill göra filerna kompatibla med äldre MS Word-versioner.", "DE.Controllers.LeftMenu.txtUntitled": "Odöpt", "DE.Controllers.LeftMenu.warnDownloadAs": "Om du fortsätter att spara i detta format kommer alla funktioner utom texten försvinna.
Är du säker på att du vill fortsätta?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Din {0} kommer att konverteras till ett redigerbart format. Detta kan ta en stund. Det färdiga dokumentet kommer att optimeras så att du kan redigera texten. Det är därför inte säkert att det ser ut precis som originalet {0}, speciellt om originalfilen innehöll mycket grafik.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Om du fortsätter att spara i det här formatet kan en del av formateringen gå förlorad.
Är du säker på att du vill fortsätta?", "DE.Controllers.Main.applyChangesTextText": "Laddar ändringar...", "DE.Controllers.Main.applyChangesTitleText": "Laddar ändringar", @@ -916,17 +918,6 @@ "DE.Controllers.Toolbar.textSymbols": "Symboler", "DE.Controllers.Toolbar.textTabForms": "Formulär", "DE.Controllers.Toolbar.textWarning": "Varning", - "DE.Controllers.Toolbar.tipMarkersArrow": "Pil punkter", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Bock punkt", - "DE.Controllers.Toolbar.tipMarkersDash": "Sträck punkter", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Fyllda romb punkter", - "DE.Controllers.Toolbar.tipMarkersFRound": "Fyllda runda punkter", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Fyllda kvadratiska punkter", - "DE.Controllers.Toolbar.tipMarkersHRound": "Ofylld rund punkt", - "DE.Controllers.Toolbar.tipMarkersStar": "Stjärn punkter", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Numrerade punkter på flera nivåer", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Symbol punkter på flera nivåer", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Olika numrerade punkter på flera nivåer", "DE.Controllers.Toolbar.txtAccent_Accent": "Akut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Höger-vänster pil ovanför", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Vänsterpil ovan", @@ -1460,6 +1451,7 @@ "DE.Views.DocumentHolder.strSign": "Underteckna", "DE.Views.DocumentHolder.styleText": "Formatering som stil", "DE.Views.DocumentHolder.tableText": "Tabell", + "DE.Views.DocumentHolder.textAccept": "Acceptera ändringarna", "DE.Views.DocumentHolder.textAlign": "Justera", "DE.Views.DocumentHolder.textArrange": "Ordna", "DE.Views.DocumentHolder.textArrangeBack": "Skicka längst bak", @@ -1494,6 +1486,7 @@ "DE.Views.DocumentHolder.textPaste": "Klistra in", "DE.Views.DocumentHolder.textPrevPage": "Föregående sida", "DE.Views.DocumentHolder.textRefreshField": "Uppdatera fältet", + "DE.Views.DocumentHolder.textReject": "Förkasta ändring", "DE.Views.DocumentHolder.textRemCheckBox": "Radera kryssruta", "DE.Views.DocumentHolder.textRemComboBox": "Radera Combobox", "DE.Views.DocumentHolder.textRemDropdown": "Ta bort dropdown", @@ -1527,14 +1520,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Uppdatera innehållsförteckningen", "DE.Views.DocumentHolder.textWrap": "Figursättning", "DE.Views.DocumentHolder.tipIsLocked": "Detta element redigeras för närvarande av en annan användare.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Pil punkter", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Bock punkt", - "DE.Views.DocumentHolder.tipMarkersDash": "Sträck punkter", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Fyllda romb punkter", - "DE.Views.DocumentHolder.tipMarkersFRound": "Fyllda runda punkter", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Fyllda kvadratiska punkter", - "DE.Views.DocumentHolder.tipMarkersHRound": "Ofylld runda punkter", - "DE.Views.DocumentHolder.tipMarkersStar": "Stjärnpunkter", "DE.Views.DocumentHolder.toDictionaryText": "Lägg till i ordlista", "DE.Views.DocumentHolder.txtAddBottom": "Lägg till nedre linje", "DE.Views.DocumentHolder.txtAddFractionBar": "Lägg fraktion bar", @@ -2032,7 +2017,7 @@ "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnBookmarks": "Bokmärke", "DE.Views.Links.capBtnCaption": "Rubrik", - "DE.Views.Links.capBtnContentsUpdate": "Uppdatera", + "DE.Views.Links.capBtnContentsUpdate": "Uppdatera tabellen", "DE.Views.Links.capBtnCrossRef": "Korsreferens", "DE.Views.Links.capBtnInsContents": "Innehållsförteckning", "DE.Views.Links.capBtnInsFootnote": "Fotnot", @@ -2132,6 +2117,7 @@ "DE.Views.Navigation.txtDemote": "Degradera", "DE.Views.Navigation.txtEmpty": "Det finns inga rubriker i dokumentet.
Tillämpa en rubrikstil på texten så att den visas i innehållsförteckningen.", "DE.Views.Navigation.txtEmptyItem": "Tom rubrik", + "DE.Views.Navigation.txtEmptyViewer": "Det finns inga rubriker i dokumentet.", "DE.Views.Navigation.txtExpand": "Expandera alla", "DE.Views.Navigation.txtExpandToLevel": "Expandera till nivå", "DE.Views.Navigation.txtHeadingAfter": "Ny rubrik efter", @@ -2378,6 +2364,8 @@ "DE.Views.Statusbar.pageIndexText": "Sida {0} av {1}", "DE.Views.Statusbar.tipFitPage": "Anpassa till sida", "DE.Views.Statusbar.tipFitWidth": "Anpassa till bredd", + "DE.Views.Statusbar.tipHandTool": "Handverktyg", + "DE.Views.Statusbar.tipSelectTool": "Välj verktyg", "DE.Views.Statusbar.tipSetLang": "Ställ in text språk", "DE.Views.Statusbar.tipZoomFactor": "Förstoring", "DE.Views.Statusbar.tipZoomIn": "Zooma in", @@ -2765,7 +2753,18 @@ "DE.Views.Toolbar.tipLineSpace": "Styckets radavstånd", "DE.Views.Toolbar.tipMailRecepients": "Slå ihop e-post", "DE.Views.Toolbar.tipMarkers": "Punktlista", + "DE.Views.Toolbar.tipMarkersArrow": "Pil punkter", + "DE.Views.Toolbar.tipMarkersCheckmark": "Bock punkt", + "DE.Views.Toolbar.tipMarkersDash": "Sträck punkter", + "DE.Views.Toolbar.tipMarkersFRhombus": "Fyllda romb punkter", + "DE.Views.Toolbar.tipMarkersFRound": "Fyllda runda punkter", + "DE.Views.Toolbar.tipMarkersFSquare": "Fyllda kvadratiska punkter", + "DE.Views.Toolbar.tipMarkersHRound": "Ofyllda runda punkter", + "DE.Views.Toolbar.tipMarkersStar": "Stjärn punkter", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Numrerade punkter på flera nivåer", "DE.Views.Toolbar.tipMultilevels": "Flernivålista", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Symbol punkter på flera nivåer", + "DE.Views.Toolbar.tipMultiLevelVarious": "Olika numrerade punkter på flera nivåer", "DE.Views.Toolbar.tipNumbers": "Numrering", "DE.Views.Toolbar.tipPageBreak": "Infoga sida eller sektionsbrytning", "DE.Views.Toolbar.tipPageMargins": "Sidmarginal", diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index 1fa916143..d62bc1a6d 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -915,17 +915,6 @@ "DE.Controllers.Toolbar.textSymbols": "Simgeler", "DE.Controllers.Toolbar.textTabForms": "Formlar", "DE.Controllers.Toolbar.textWarning": "Dikkat", - "DE.Controllers.Toolbar.tipMarkersArrow": "Ok işaretleri", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Onay işaretleri", - "DE.Controllers.Toolbar.tipMarkersDash": "Çizgi işaretleri", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler", - "DE.Controllers.Toolbar.tipMarkersFRound": "Dolu yuvarlak işaretler", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Dolu kare işaretler", - "DE.Controllers.Toolbar.tipMarkersHRound": "İçi boş daire işaretler", - "DE.Controllers.Toolbar.tipMarkersStar": "Yıldız işaretleri", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Çok düzeyli numaralı işaretler", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Çok düzeyli sembol işaretleri", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Çok düzeyli çeşitli numaralı işaretler", "DE.Controllers.Toolbar.txtAccent_Accent": "Akut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Right-Left Arrow Above", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards Arrow Above", @@ -1526,14 +1515,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "İçindekiler tablosunu yenile", "DE.Views.DocumentHolder.textWrap": "Kaydırma Stili", "DE.Views.DocumentHolder.tipIsLocked": "Bu element şu an başka bir kullanıcı tarafından düzenleniyor.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Ok işaretleri", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Onay işaretleri", - "DE.Views.DocumentHolder.tipMarkersDash": "Çizgi işaretleri", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler", - "DE.Views.DocumentHolder.tipMarkersFRound": "Dolu yuvarlak işaretler", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Dolu kare işaretler", - "DE.Views.DocumentHolder.tipMarkersHRound": "İçi boş daire işaretler", - "DE.Views.DocumentHolder.tipMarkersStar": "Yıldız işaretleri", "DE.Views.DocumentHolder.toDictionaryText": "Sözlüğe ekle", "DE.Views.DocumentHolder.txtAddBottom": "Alt kenarlık ekle", "DE.Views.DocumentHolder.txtAddFractionBar": "Kesir çubuğu ekle", @@ -2131,6 +2112,7 @@ "DE.Views.Navigation.txtDemote": "İndirgeme", "DE.Views.Navigation.txtEmpty": "Belgede başlık yok.
İçindekiler tablosunda görünmesi için metne bir başlık stili uygulayın.", "DE.Views.Navigation.txtEmptyItem": "Boş Başlık", + "DE.Views.Navigation.txtEmptyViewer": "Belgede başlık yok.", "DE.Views.Navigation.txtExpand": "Hepsini genişlet", "DE.Views.Navigation.txtExpandToLevel": "Seviyeye genişlet", "DE.Views.Navigation.txtHeadingAfter": "Sonra yeni başlık", @@ -2764,7 +2746,18 @@ "DE.Views.Toolbar.tipLineSpace": "Paragraf satır aralığı", "DE.Views.Toolbar.tipMailRecepients": "Mail Merge", "DE.Views.Toolbar.tipMarkers": "Maddeler", + "DE.Views.Toolbar.tipMarkersArrow": "Ok işaretleri", + "DE.Views.Toolbar.tipMarkersCheckmark": "Onay işaretleri", + "DE.Views.Toolbar.tipMarkersDash": "Çizgi işaretleri", + "DE.Views.Toolbar.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler", + "DE.Views.Toolbar.tipMarkersFRound": "Dolu yuvarlak işaretler", + "DE.Views.Toolbar.tipMarkersFSquare": "Dolu kare işaretler", + "DE.Views.Toolbar.tipMarkersHRound": "İçi boş daire işaretler", + "DE.Views.Toolbar.tipMarkersStar": "Yıldız işaretleri", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Çok düzeyli numaralı işaretler", "DE.Views.Toolbar.tipMultilevels": "Çok düzeyli liste", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Çok düzeyli sembol işaretleri", + "DE.Views.Toolbar.tipMultiLevelVarious": "Çok düzeyli çeşitli numaralı işaretler", "DE.Views.Toolbar.tipNumbers": "Numaralandırma", "DE.Views.Toolbar.tipPageBreak": "Sayfa yada Bölüm Kesmesi Ekle", "DE.Views.Toolbar.tipPageMargins": "Sayfa kenar boşlukları", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index ca8b50ec7..274183bf0 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -125,7 +125,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Створити копію", "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", "Common.UI.ButtonColored.textAutoColor": "Автоматичний", - "Common.UI.ButtonColored.textNewColor": "Додати новий спеціальний колір", + "Common.UI.ButtonColored.textNewColor": "Новий спеціальний колір", "Common.UI.Calendar.textApril": "Квітень", "Common.UI.Calendar.textAugust": "Серпень", "Common.UI.Calendar.textDecember": "Грудень", @@ -916,17 +916,6 @@ "DE.Controllers.Toolbar.textSymbols": "Символи", "DE.Controllers.Toolbar.textTabForms": "Форми", "DE.Controllers.Toolbar.textWarning": "Застереження", - "DE.Controllers.Toolbar.tipMarkersArrow": "Маркери-стрілки", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "Маркери-галочки", - "DE.Controllers.Toolbar.tipMarkersDash": "Маркери-тире", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "Заповнені ромбоподібні маркери", - "DE.Controllers.Toolbar.tipMarkersFRound": "Заповнені круглі маркери", - "DE.Controllers.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери", - "DE.Controllers.Toolbar.tipMarkersHRound": "Пусті круглі маркери", - "DE.Controllers.Toolbar.tipMarkersStar": "Маркери-зірочки", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "Багаторівневі нумеровані маркери", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "Багаторівневі маркери-символи", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "Багаторівневі різні нумеровані маркери", "DE.Controllers.Toolbar.txtAccent_Accent": "Гострий", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Стрілка праворуч вліво вище", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Стрілка вліво вгору", @@ -1527,14 +1516,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "Оновити зміст", "DE.Views.DocumentHolder.textWrap": "Стиль упаковки", "DE.Views.DocumentHolder.tipIsLocked": "Цей елемент в даний час редагує інший користувач.", - "DE.Views.DocumentHolder.tipMarkersArrow": "Маркери-стрілки", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "Маркери-галочки", - "DE.Views.DocumentHolder.tipMarkersDash": "Маркери-тире", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "Заповнені ромбоподібні маркери", - "DE.Views.DocumentHolder.tipMarkersFRound": "Заповнені круглі маркери", - "DE.Views.DocumentHolder.tipMarkersFSquare": "Заповнені квадратні маркери", - "DE.Views.DocumentHolder.tipMarkersHRound": "Пусті круглі маркери", - "DE.Views.DocumentHolder.tipMarkersStar": "Маркери-зірочки", "DE.Views.DocumentHolder.toDictionaryText": "Додати в словник", "DE.Views.DocumentHolder.txtAddBottom": "Додати нижню межу", "DE.Views.DocumentHolder.txtAddFractionBar": "Додати фракційну панель", @@ -2132,6 +2113,7 @@ "DE.Views.Navigation.txtDemote": "Понизити рівень", "DE.Views.Navigation.txtEmpty": "У документі відсутні заголовки.
Застосуйте стиль заголовків до тексту, щоби він з'явився у змісті.", "DE.Views.Navigation.txtEmptyItem": "Пустий заголовок", + "DE.Views.Navigation.txtEmptyViewer": "У документі відсутні заголовки.", "DE.Views.Navigation.txtExpand": "Розгорнути все", "DE.Views.Navigation.txtExpandToLevel": "Розгорнути до рівня", "DE.Views.Navigation.txtHeadingAfter": "Новий заголовок після", @@ -2685,7 +2667,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Нормальний", "DE.Views.Toolbar.textMarginsUsNormal": "Нормальний US", "DE.Views.Toolbar.textMarginsWide": "Широкий", - "DE.Views.Toolbar.textNewColor": "Додати новий власний колір", + "DE.Views.Toolbar.textNewColor": "Новий спеціальний колір", "DE.Views.Toolbar.textNextPage": "Наступна сторінка", "DE.Views.Toolbar.textNoHighlight": "Без виділення", "DE.Views.Toolbar.textNone": "Жоден", @@ -2765,7 +2747,18 @@ "DE.Views.Toolbar.tipLineSpace": "Розмітка міжрядкових інтервалів", "DE.Views.Toolbar.tipMailRecepients": "Надіслати ел.поштою", "DE.Views.Toolbar.tipMarkers": "Кулі", + "DE.Views.Toolbar.tipMarkersArrow": "Маркери-стрілки", + "DE.Views.Toolbar.tipMarkersCheckmark": "Маркери-галочки", + "DE.Views.Toolbar.tipMarkersDash": "Маркери-тире", + "DE.Views.Toolbar.tipMarkersFRhombus": "Заповнені ромбоподібні маркери", + "DE.Views.Toolbar.tipMarkersFRound": "Заповнені круглі маркери", + "DE.Views.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери", + "DE.Views.Toolbar.tipMarkersHRound": "Пусті круглі маркери", + "DE.Views.Toolbar.tipMarkersStar": "Маркери-зірочки", + "DE.Views.Toolbar.tipMultiLevelNumbered": "Багаторівневі нумеровані маркери", "DE.Views.Toolbar.tipMultilevels": "Багаторівневий список", + "DE.Views.Toolbar.tipMultiLevelSymbols": "Багаторівневі маркери-символи", + "DE.Views.Toolbar.tipMultiLevelVarious": "Багаторівневі різні нумеровані маркери", "DE.Views.Toolbar.tipNumbers": "Нумерація", "DE.Views.Toolbar.tipPageBreak": "Вставити розрив сторінки або розділу", "DE.Views.Toolbar.tipPageMargins": "Поля сторінки", diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json index 3304f0edf..e6118b8c3 100644 --- a/apps/documenteditor/main/locale/vi.json +++ b/apps/documenteditor/main/locale/vi.json @@ -71,6 +71,7 @@ "Common.define.chartData.textPoint": "XY (Phân tán)", "Common.define.chartData.textStock": "Cổ phiếu", "Common.define.chartData.textSurface": "Bề mặt", + "Common.UI.ButtonColored.textNewColor": "Màu tùy chỉnh", "Common.UI.ComboBorderSize.txtNoBorders": "Không viền", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền", "Common.UI.ComboDataView.emptyComboText": "Không có kiểu", @@ -1505,7 +1506,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Thường", "DE.Views.Toolbar.textMarginsUsNormal": "Mỹ Thường", "DE.Views.Toolbar.textMarginsWide": "Rộng", - "DE.Views.Toolbar.textNewColor": "Thêm màu tùy chỉnh mới", + "DE.Views.Toolbar.textNewColor": "Màu tùy chỉnh", "DE.Views.Toolbar.textNextPage": "Trang tiếp theo", "DE.Views.Toolbar.textNone": "Không", "DE.Views.Toolbar.textOddPage": "Trang lẻ", diff --git a/apps/documenteditor/main/locale/zh-TW.json b/apps/documenteditor/main/locale/zh-TW.json new file mode 100644 index 000000000..b6d09a934 --- /dev/null +++ b/apps/documenteditor/main/locale/zh-TW.json @@ -0,0 +1,2857 @@ +{ + "Common.Controllers.Chat.notcriticalErrorTitle": "警告", + "Common.Controllers.Chat.textEnterMessage": "在這裡輸入您的信息", + "Common.Controllers.ExternalDiagramEditor.textAnonymous": "匿名", + "Common.Controllers.ExternalDiagramEditor.textClose": "關閉", + "Common.Controllers.ExternalDiagramEditor.warningText": "該物件被禁用,因為它正在由另一個帳戶編輯。", + "Common.Controllers.ExternalDiagramEditor.warningTitle": "警告", + "Common.Controllers.ExternalMergeEditor.textAnonymous": "匿名", + "Common.Controllers.ExternalMergeEditor.textClose": "關閉", + "Common.Controllers.ExternalMergeEditor.warningText": "該物件被禁用,因為它正在由另一個帳戶編輯。", + "Common.Controllers.ExternalMergeEditor.warningTitle": "警告", + "Common.Controllers.History.notcriticalErrorTitle": "警告", + "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "為了比較文檔,所有被跟蹤的更改都將被視為已接受。你想繼續嗎?", + "Common.Controllers.ReviewChanges.textAtLeast": "至少", + "Common.Controllers.ReviewChanges.textAuto": "自動", + "Common.Controllers.ReviewChanges.textBaseline": "基準線", + "Common.Controllers.ReviewChanges.textBold": "粗體", + "Common.Controllers.ReviewChanges.textBreakBefore": "分頁之前", + "Common.Controllers.ReviewChanges.textCaps": "全部大寫", + "Common.Controllers.ReviewChanges.textCenter": "居中對齊", + "Common.Controllers.ReviewChanges.textChar": "文字水平", + "Common.Controllers.ReviewChanges.textChart": "圖表", + "Common.Controllers.ReviewChanges.textColor": "字體顏色", + "Common.Controllers.ReviewChanges.textContextual": "不要在相同風格的文字段落之間添加間隔", + "Common.Controllers.ReviewChanges.textDeleted": "已刪除", + "Common.Controllers.ReviewChanges.textDStrikeout": "雙刪除線", + "Common.Controllers.ReviewChanges.textEquation": "方程式", + "Common.Controllers.ReviewChanges.textExact": "準確", + "Common.Controllers.ReviewChanges.textFirstLine": "第一行", + "Common.Controllers.ReviewChanges.textFontSize": "字體大小", + "Common.Controllers.ReviewChanges.textFormatted": "已格式化", + "Common.Controllers.ReviewChanges.textHighlight": "熒光色選", + "Common.Controllers.ReviewChanges.textImage": "圖像", + "Common.Controllers.ReviewChanges.textIndentLeft": "向左內縮", + "Common.Controllers.ReviewChanges.textIndentRight": "向右內縮", + "Common.Controllers.ReviewChanges.textInserted": "已插入:", + "Common.Controllers.ReviewChanges.textItalic": "斜體", + "Common.Controllers.ReviewChanges.textJustify": "對齊", + "Common.Controllers.ReviewChanges.textKeepLines": "保持線條一致", + "Common.Controllers.ReviewChanges.textKeepNext": "跟著下一個", + "Common.Controllers.ReviewChanges.textLeft": "對齊左側", + "Common.Controllers.ReviewChanges.textLineSpacing": "行間距: ", + "Common.Controllers.ReviewChanges.textMultiple": "多項", + "Common.Controllers.ReviewChanges.textNoBreakBefore": "之前沒有分頁符", + "Common.Controllers.ReviewChanges.textNoContextual": "在相同風格的段落之間加入間隔", + "Common.Controllers.ReviewChanges.textNoKeepLines": "不要保持多個線條在一起", + "Common.Controllers.ReviewChanges.textNoKeepNext": "不要與文字保持在一起", + "Common.Controllers.ReviewChanges.textNot": "不", + "Common.Controllers.ReviewChanges.textNoWidow": "無窗口控制", + "Common.Controllers.ReviewChanges.textNum": "變更編號", + "Common.Controllers.ReviewChanges.textOff": "{0} 已沒有再使用Track.", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} 關閉了所有用戶的Track Changes.", + "Common.Controllers.ReviewChanges.textOn": "{0} 已開始使用Track.", + "Common.Controllers.ReviewChanges.textOnGlobal": "{0} 開啟了所有帳戶的Track Changes.", + "Common.Controllers.ReviewChanges.textParaDeleted": "段落已刪除", + "Common.Controllers.ReviewChanges.textParaFormatted": "段落格式", + "Common.Controllers.ReviewChanges.textParaInserted": "段落已插入", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "已下移:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "已上移:", + "Common.Controllers.ReviewChanges.textParaMoveTo": "已移動:", + "Common.Controllers.ReviewChanges.textPosition": "職務", + "Common.Controllers.ReviewChanges.textRight": "對齊右側", + "Common.Controllers.ReviewChanges.textShape": "形狀", + "Common.Controllers.ReviewChanges.textShd": "背景顏色", + "Common.Controllers.ReviewChanges.textShow": "顯示更改", + "Common.Controllers.ReviewChanges.textSmallCaps": "小大寫", + "Common.Controllers.ReviewChanges.textSpacing": "間距", + "Common.Controllers.ReviewChanges.textSpacingAfter": "間隔後", + "Common.Controllers.ReviewChanges.textSpacingBefore": "前間距", + "Common.Controllers.ReviewChanges.textStrikeout": "刪除線", + "Common.Controllers.ReviewChanges.textSubScript": "下標", + "Common.Controllers.ReviewChanges.textSuperScript": "上標", + "Common.Controllers.ReviewChanges.textTableChanged": "表格設定已刪除", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "已添加表格行", + "Common.Controllers.ReviewChanges.textTableRowsDel": "已刪除表格行", + "Common.Controllers.ReviewChanges.textTabs": "變更定位", + "Common.Controllers.ReviewChanges.textTitleComparison": "比較設定", + "Common.Controllers.ReviewChanges.textUnderline": "底線", + "Common.Controllers.ReviewChanges.textUrl": "粘貼文檔網址", + "Common.Controllers.ReviewChanges.textWidow": "遺留文字控制", + "Common.Controllers.ReviewChanges.textWord": "字級", + "Common.define.chartData.textArea": "區域", + "Common.define.chartData.textAreaStacked": "堆叠面積", + "Common.define.chartData.textAreaStackedPer": "100% 堆疊面積圖", + "Common.define.chartData.textBar": "槓", + "Common.define.chartData.textBarNormal": "劇集柱形", + "Common.define.chartData.textBarNormal3d": "3-D 簇狀直式長條圖", + "Common.define.chartData.textBarNormal3dPerspective": "3-D 直式長條圖", + "Common.define.chartData.textBarStacked": "堆叠柱形", + "Common.define.chartData.textBarStacked3d": "3-D 堆疊直式長條圖", + "Common.define.chartData.textBarStackedPer": "100% 堆疊直式長條圖", + "Common.define.chartData.textBarStackedPer3d": "3-D 100% 堆疊直式長條圖", + "Common.define.chartData.textCharts": "圖表", + "Common.define.chartData.textColumn": "欄", + "Common.define.chartData.textCombo": "組合", + "Common.define.chartData.textComboAreaBar": "堆叠面積 - 劇集柱形", + "Common.define.chartData.textComboBarLine": "劇集柱形 - 綫", + "Common.define.chartData.textComboBarLineSecondary": "劇集柱形 - 副軸綫", + "Common.define.chartData.textComboCustom": "自訂組合", + "Common.define.chartData.textDoughnut": "甜甜圈圖", + "Common.define.chartData.textHBarNormal": "劇集條形", + "Common.define.chartData.textHBarNormal3d": "3-D 簇狀橫式長條圖", + "Common.define.chartData.textHBarStacked": "堆叠條形", + "Common.define.chartData.textHBarStacked3d": "3-D 堆疊橫式長條圖", + "Common.define.chartData.textHBarStackedPer": "100% 堆疊橫式長條圖", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% 堆疊橫式長條圖", + "Common.define.chartData.textLine": "線", + "Common.define.chartData.textLine3d": "3-D 直線圖", + "Common.define.chartData.textLineMarker": "直線加標記", + "Common.define.chartData.textLineStacked": "堆叠綫", + "Common.define.chartData.textLineStackedMarker": "堆積綫及標記", + "Common.define.chartData.textLineStackedPer": "100% 堆疊直線圖", + "Common.define.chartData.textLineStackedPerMarker": "100% 堆疊直線圖加標記", + "Common.define.chartData.textPie": "餅", + "Common.define.chartData.textPie3d": "3-D 圓餅圖", + "Common.define.chartData.textPoint": "XY(散點圖)", + "Common.define.chartData.textScatter": "散佈圖", + "Common.define.chartData.textScatterLine": "散佈圖同直線", + "Common.define.chartData.textScatterLineMarker": "散佈圖同直線及標記", + "Common.define.chartData.textScatterSmooth": "散佈圖同平滑線", + "Common.define.chartData.textScatterSmoothMarker": "散佈圖同平滑線及標記", + "Common.define.chartData.textStock": "庫存", + "Common.define.chartData.textSurface": "表面", + "Common.Translation.warnFileLocked": "該文件正在另一個應用程式中進行編輯。您可以繼續編輯並將其另存為副本。", + "Common.Translation.warnFileLockedBtnEdit": "\n建立副本", + "Common.Translation.warnFileLockedBtnView": "打開查看", + "Common.UI.ButtonColored.textAutoColor": "自動", + "Common.UI.ButtonColored.textNewColor": "新增自訂顏色", + "Common.UI.Calendar.textApril": "四月", + "Common.UI.Calendar.textAugust": "八月", + "Common.UI.Calendar.textDecember": "十二月", + "Common.UI.Calendar.textFebruary": "二月", + "Common.UI.Calendar.textJanuary": "一月", + "Common.UI.Calendar.textJuly": "七月", + "Common.UI.Calendar.textJune": "六月", + "Common.UI.Calendar.textMarch": "三月", + "Common.UI.Calendar.textMay": "五月", + "Common.UI.Calendar.textMonths": "月", + "Common.UI.Calendar.textNovember": "十一月", + "Common.UI.Calendar.textOctober": "八邊形", + "Common.UI.Calendar.textSeptember": "九月", + "Common.UI.Calendar.textShortApril": "Apr", + "Common.UI.Calendar.textShortAugust": "八月", + "Common.UI.Calendar.textShortDecember": "十二月", + "Common.UI.Calendar.textShortFebruary": "二月", + "Common.UI.Calendar.textShortFriday": "Fr", + "Common.UI.Calendar.textShortJanuary": "一月", + "Common.UI.Calendar.textShortJuly": "七月", + "Common.UI.Calendar.textShortJune": "六月", + "Common.UI.Calendar.textShortMarch": "三月", + "Common.UI.Calendar.textShortMay": "五月", + "Common.UI.Calendar.textShortMonday": "Mo", + "Common.UI.Calendar.textShortNovember": "十一月", + "Common.UI.Calendar.textShortOctober": "十月", + "Common.UI.Calendar.textShortSaturday": "Sa", + "Common.UI.Calendar.textShortSeptember": "九月", + "Common.UI.Calendar.textShortSunday": "Su", + "Common.UI.Calendar.textShortThursday": "th", + "Common.UI.Calendar.textShortTuesday": "Tu", + "Common.UI.Calendar.textShortWednesday": "我們", + "Common.UI.Calendar.textYears": "年", + "Common.UI.ComboBorderSize.txtNoBorders": "無邊框", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "無邊框", + "Common.UI.ComboDataView.emptyComboText": "無風格", + "Common.UI.ExtendedColorDialog.addButtonText": "新增", + "Common.UI.ExtendedColorDialog.textCurrent": "當前", + "Common.UI.ExtendedColorDialog.textHexErr": "輸入的值不正確。
請輸入一個介於000000和FFFFFF之間的值。", + "Common.UI.ExtendedColorDialog.textNew": "新", + "Common.UI.ExtendedColorDialog.textRGBErr": "輸入的值不正確。
請輸入0到255之間的數字。", + "Common.UI.HSBColorPicker.textNoColor": "無顏色", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "不顯示密碼", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "顯示密碼", + "Common.UI.SearchDialog.textHighlight": "強調結果", + "Common.UI.SearchDialog.textMatchCase": "區分大小寫", + "Common.UI.SearchDialog.textReplaceDef": "輸入替換文字", + "Common.UI.SearchDialog.textSearchStart": "在這裡輸入您的文字", + "Common.UI.SearchDialog.textTitle": "尋找與取代", + "Common.UI.SearchDialog.textTitle2": "尋找", + "Common.UI.SearchDialog.textWholeWords": "僅全字", + "Common.UI.SearchDialog.txtBtnHideReplace": "隱藏替換", + "Common.UI.SearchDialog.txtBtnReplace": "取代", + "Common.UI.SearchDialog.txtBtnReplaceAll": "取代全部", + "Common.UI.SynchronizeTip.textDontShow": "不再顯示此消息", + "Common.UI.SynchronizeTip.textSynchronize": "該文檔已被其他帳戶更改。
請單擊以儲存更改並重新加載更新。", + "Common.UI.ThemeColorPalette.textStandartColors": "標準顏色", + "Common.UI.ThemeColorPalette.textThemeColors": "主題顏色", + "Common.UI.Themes.txtThemeClassicLight": "傳統亮色", + "Common.UI.Themes.txtThemeDark": "暗", + "Common.UI.Themes.txtThemeLight": "光亮色系", + "Common.UI.Window.cancelButtonText": "取消", + "Common.UI.Window.closeButtonText": "關閉", + "Common.UI.Window.noButtonText": "沒有", + "Common.UI.Window.okButtonText": "確定", + "Common.UI.Window.textConfirmation": "確認", + "Common.UI.Window.textDontShow": "不再顯示此消息", + "Common.UI.Window.textError": "錯誤", + "Common.UI.Window.textInformation": "資訊", + "Common.UI.Window.textWarning": "警告", + "Common.UI.Window.yesButtonText": "是", + "Common.Utils.Metric.txtCm": "公分", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "地址:", + "Common.Views.About.txtLicensee": "被許可人", + "Common.Views.About.txtLicensor": "許可人", + "Common.Views.About.txtMail": "電子郵件:", + "Common.Views.About.txtPoweredBy": "於支援", + "Common.Views.About.txtTel": "電話: ", + "Common.Views.About.txtVersion": "版本", + "Common.Views.AutoCorrectDialog.textAdd": "新增", + "Common.Views.AutoCorrectDialog.textApplyText": "鍵入時同時申請", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "自動更正", + "Common.Views.AutoCorrectDialog.textAutoFormat": "鍵入時自動調整規格", + "Common.Views.AutoCorrectDialog.textBulleted": "自動項目符號列表", + "Common.Views.AutoCorrectDialog.textBy": "依照", + "Common.Views.AutoCorrectDialog.textDelete": "刪除", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "按兩下空白鍵自動增加一個句點(.)符號", + "Common.Views.AutoCorrectDialog.textFLCells": "儲存格首字母大寫", + "Common.Views.AutoCorrectDialog.textFLSentence": "英文句子第一個字母大寫", + "Common.Views.AutoCorrectDialog.textHyperlink": "網絡路徑超連結", + "Common.Views.AutoCorrectDialog.textHyphens": "帶連字符(-)的連字符(-)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "數學自動更正", + "Common.Views.AutoCorrectDialog.textNumbered": "自動編號列表", + "Common.Views.AutoCorrectDialog.textQuotes": "\"直引號\"與\"智能引號\"", + "Common.Views.AutoCorrectDialog.textRecognized": "公認的功能", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下表達式是公認的數學表達式。它們不會自動斜體顯示。", + "Common.Views.AutoCorrectDialog.textReplace": "取代", + "Common.Views.AutoCorrectDialog.textReplaceText": "鍵入時替換", + "Common.Views.AutoCorrectDialog.textReplaceType": "鍵入時替換文字", + "Common.Views.AutoCorrectDialog.textReset": "重設", + "Common.Views.AutoCorrectDialog.textResetAll": "重置為預設", + "Common.Views.AutoCorrectDialog.textRestore": "恢復", + "Common.Views.AutoCorrectDialog.textTitle": "自動更正", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "公認的函數只能包含字母A到Z,大寫或小寫。", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "您新增的所有表達式都將被刪除,被刪除的表達式將被恢復。你想繼續嗎?", + "Common.Views.AutoCorrectDialog.warnReplace": "%1的自動更正條目已存在。您要更換嗎?", + "Common.Views.AutoCorrectDialog.warnReset": "您增加的所有自動更正功能將被刪除,更改後的自動更正將恢復為其原始值。你想繼續嗎?", + "Common.Views.AutoCorrectDialog.warnRestore": "%1的自動更正條目將被重置為其原始值。你想繼續嗎?", + "Common.Views.Chat.textSend": "傳送", + "Common.Views.Comments.mniAuthorAsc": "作者排行A到Z", + "Common.Views.Comments.mniAuthorDesc": "作者排行Z到A", + "Common.Views.Comments.mniDateAsc": "從最老的", + "Common.Views.Comments.mniDateDesc": "從最新的", + "Common.Views.Comments.mniFilterGroups": "依群組篩選", + "Common.Views.Comments.mniPositionAsc": "從上到下", + "Common.Views.Comments.mniPositionDesc": "自下而上", + "Common.Views.Comments.textAdd": "新增", + "Common.Views.Comments.textAddComment": "發表註解", + "Common.Views.Comments.textAddCommentToDoc": "在文檔中新增註解", + "Common.Views.Comments.textAddReply": "加入回應", + "Common.Views.Comments.textAll": "全部", + "Common.Views.Comments.textAnonym": "來賓帳戶", + "Common.Views.Comments.textCancel": "取消", + "Common.Views.Comments.textClose": "關閉", + "Common.Views.Comments.textClosePanel": "關閉註解", + "Common.Views.Comments.textComments": "註解", + "Common.Views.Comments.textEdit": "確定", + "Common.Views.Comments.textEnterCommentHint": "在這裡輸入您的註解", + "Common.Views.Comments.textHintAddComment": "新增註解", + "Common.Views.Comments.textOpenAgain": "重新打開", + "Common.Views.Comments.textReply": "回覆", + "Common.Views.Comments.textResolve": "解決", + "Common.Views.Comments.textResolved": "已解決", + "Common.Views.Comments.textSort": "註解分類", + "Common.Views.Comments.textViewResolved": "你沒有權限來重新開啟這個註解", + "Common.Views.CopyWarningDialog.textDontShow": "不再顯示此消息", + "Common.Views.CopyWarningDialog.textMsg": "使用編輯器工具欄按鈕進行[複制],[剪下]和[貼上]的操作以及內文選單操作僅能在此編輯器中執行。

要在“編輯器”之外的應用程式之間進行[複製]或[貼上],請使用以下鍵盤組合:", + "Common.Views.CopyWarningDialog.textTitle": "複製, 剪下, 與貼上之動作", + "Common.Views.CopyWarningDialog.textToCopy": "複印", + "Common.Views.CopyWarningDialog.textToCut": "切", + "Common.Views.CopyWarningDialog.textToPaste": "粘貼", + "Common.Views.DocumentAccessDialog.textLoading": "載入中...", + "Common.Views.DocumentAccessDialog.textTitle": "分享設定", + "Common.Views.ExternalDiagramEditor.textClose": "關閉", + "Common.Views.ExternalDiagramEditor.textSave": "存檔並離開", + "Common.Views.ExternalDiagramEditor.textTitle": "圖表編輯器", + "Common.Views.ExternalMergeEditor.textClose": "關閉", + "Common.Views.ExternalMergeEditor.textSave": "存檔並離開", + "Common.Views.ExternalMergeEditor.textTitle": "郵件合併收件人", + "Common.Views.Header.labelCoUsersDescr": "正在編輯文件的帳戶:", + "Common.Views.Header.textAddFavorite": "標記為最愛收藏", + "Common.Views.Header.textAdvSettings": "進階設定", + "Common.Views.Header.textBack": "打開文件所在位置", + "Common.Views.Header.textCompactView": "隱藏工具欄", + "Common.Views.Header.textHideLines": "隱藏標尺", + "Common.Views.Header.textHideStatusBar": "隱藏狀態欄", + "Common.Views.Header.textRemoveFavorite": "\n從最愛收藏夾中刪除", + "Common.Views.Header.textZoom": "放大", + "Common.Views.Header.tipAccessRights": "管理文檔存取權限", + "Common.Views.Header.tipDownload": "下載文件", + "Common.Views.Header.tipGoEdit": "編輯當前文件", + "Common.Views.Header.tipPrint": "列印文件", + "Common.Views.Header.tipRedo": "重複", + "Common.Views.Header.tipSave": "存檔", + "Common.Views.Header.tipUndo": "復原", + "Common.Views.Header.tipViewSettings": "查看設定", + "Common.Views.Header.tipViewUsers": "查看帳戶並管理文檔存取權限", + "Common.Views.Header.txtAccessRights": "變更存取權限", + "Common.Views.Header.txtRename": "重新命名", + "Common.Views.History.textCloseHistory": "關閉歷史紀錄", + "Common.Views.History.textHide": "縮小", + "Common.Views.History.textHideAll": "隱藏詳細的更改", + "Common.Views.History.textRestore": "恢復", + "Common.Views.History.textShow": "擴大", + "Common.Views.History.textShowAll": "顯示詳細的更改", + "Common.Views.History.textVer": "版本", + "Common.Views.ImageFromUrlDialog.textUrl": "粘貼圖片網址:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "這是必填欄", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "此段落應為“ http://www.example.com”格式的網址", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "您需要指定有效的行數和列數。", + "Common.Views.InsertTableDialog.txtColumns": "列數", + "Common.Views.InsertTableDialog.txtMaxText": "此段落的最大值為{0}。", + "Common.Views.InsertTableDialog.txtMinText": "此段落的最小值為{0}。", + "Common.Views.InsertTableDialog.txtRows": "行數", + "Common.Views.InsertTableDialog.txtTitle": "表格大小", + "Common.Views.InsertTableDialog.txtTitleSplit": "分割儲存格", + "Common.Views.LanguageDialog.labelSelect": "選擇文件語言", + "Common.Views.OpenDialog.closeButtonText": "關閉檔案", + "Common.Views.OpenDialog.txtEncoding": "編碼", + "Common.Views.OpenDialog.txtIncorrectPwd": "密碼錯誤。", + "Common.Views.OpenDialog.txtOpenFile": "輸入檔案密碼", + "Common.Views.OpenDialog.txtPassword": "密碼", + "Common.Views.OpenDialog.txtPreview": "預覽", + "Common.Views.OpenDialog.txtProtected": "輸入密碼並打開文件後,該文件的當前密碼將被重置。", + "Common.Views.OpenDialog.txtTitle": "選擇%1個選項", + "Common.Views.OpenDialog.txtTitleProtected": "受保護的檔案", + "Common.Views.PasswordDialog.txtDescription": "設置密碼以保護此文檔", + "Common.Views.PasswordDialog.txtIncorrectPwd": "確認密碼不相同", + "Common.Views.PasswordDialog.txtPassword": "密碼", + "Common.Views.PasswordDialog.txtRepeat": "重複輸入密碼", + "Common.Views.PasswordDialog.txtTitle": "設置密碼", + "Common.Views.PasswordDialog.txtWarning": "警告:如果失去密碼,將無法取回。請妥善保存。", + "Common.Views.PluginDlg.textLoading": "載入中", + "Common.Views.Plugins.groupCaption": "外掛程式", + "Common.Views.Plugins.strPlugins": "外掛程式", + "Common.Views.Plugins.textLoading": "載入中", + "Common.Views.Plugins.textStart": "開始", + "Common.Views.Plugins.textStop": "停止", + "Common.Views.Protection.hintAddPwd": "用密碼加密", + "Common.Views.Protection.hintPwd": "變更或刪除密碼", + "Common.Views.Protection.hintSignature": "新增數字簽名或簽名行", + "Common.Views.Protection.txtAddPwd": "新增密碼", + "Common.Views.Protection.txtChangePwd": "變更密碼", + "Common.Views.Protection.txtDeletePwd": "刪除密碼", + "Common.Views.Protection.txtEncrypt": "加密", + "Common.Views.Protection.txtInvisibleSignature": "新增數字簽名", + "Common.Views.Protection.txtSignature": "簽名", + "Common.Views.Protection.txtSignatureLine": "新增簽名行", + "Common.Views.RenameDialog.textName": "檔案名稱", + "Common.Views.RenameDialog.txtInvalidName": "文件名不能包含以下任何字符:", + "Common.Views.ReviewChanges.hintNext": "到下一個變化", + "Common.Views.ReviewChanges.hintPrev": "到以前的變化", + "Common.Views.ReviewChanges.mniFromFile": "檔案裡的文件", + "Common.Views.ReviewChanges.mniFromStorage": "儲存巢裡的文件", + "Common.Views.ReviewChanges.mniFromUrl": "來自URL裡文件", + "Common.Views.ReviewChanges.mniSettings": "比較設定", + "Common.Views.ReviewChanges.strFast": "快", + "Common.Views.ReviewChanges.strFastDesc": "即時共同編輯。所有更改將自動保存。", + "Common.Views.ReviewChanges.strStrict": "嚴格", + "Common.Views.ReviewChanges.strStrictDesc": "使用“存檔”按鈕同步您和其他人所做的更改。", + "Common.Views.ReviewChanges.textEnable": "啟用", + "Common.Views.ReviewChanges.textWarnTrackChanges": "Track Changes將會幫有權限的帳戶開啟。下一次任何帳戶開啟文件時,Track Changes會保持開啟狀態。", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "幫所有使用者開啟Track Changes?", + "Common.Views.ReviewChanges.tipAcceptCurrent": "同意當前更改", + "Common.Views.ReviewChanges.tipCoAuthMode": "設定共同編輯模式", + "Common.Views.ReviewChanges.tipCommentRem": "刪除註解", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "刪除當前註解", + "Common.Views.ReviewChanges.tipCommentResolve": "標記註解為已解決", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "將所有的註解標記為已解決", + "Common.Views.ReviewChanges.tipCompare": "比較當前文件和另一個文件", + "Common.Views.ReviewChanges.tipHistory": "顯示版本歷史", + "Common.Views.ReviewChanges.tipRejectCurrent": "拒絕當前變化", + "Common.Views.ReviewChanges.tipReview": "跟蹤變化", + "Common.Views.ReviewChanges.tipReviewView": "選擇您要顯示更改的模式", + "Common.Views.ReviewChanges.tipSetDocLang": "設定文件語言", + "Common.Views.ReviewChanges.tipSetSpelling": "拼字檢查", + "Common.Views.ReviewChanges.tipSharing": "管理文檔存取權限", + "Common.Views.ReviewChanges.txtAccept": "同意", + "Common.Views.ReviewChanges.txtAcceptAll": "同意所有更改", + "Common.Views.ReviewChanges.txtAcceptChanges": "同意更改", + "Common.Views.ReviewChanges.txtAcceptCurrent": "同意當前更改", + "Common.Views.ReviewChanges.txtChat": "聊天", + "Common.Views.ReviewChanges.txtClose": "關閉", + "Common.Views.ReviewChanges.txtCoAuthMode": "共同編輯模式", + "Common.Views.ReviewChanges.txtCommentRemAll": "刪除所有註解", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "刪除當前註解", + "Common.Views.ReviewChanges.txtCommentRemMy": "刪除我的註解", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "刪除我當前的註解", + "Common.Views.ReviewChanges.txtCommentRemove": "移除", + "Common.Views.ReviewChanges.txtCommentResolve": "解決", + "Common.Views.ReviewChanges.txtCommentResolveAll": "將所有註解標記為已解決", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "將註解標記為已解決", + "Common.Views.ReviewChanges.txtCommentResolveMy": "將自己所有的註解標記為已解決", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "將自己的註解標記為已解決", + "Common.Views.ReviewChanges.txtCompare": "相比", + "Common.Views.ReviewChanges.txtDocLang": "語言", + "Common.Views.ReviewChanges.txtEditing": "编辑中", + "Common.Views.ReviewChanges.txtFinal": "更改已全部接受 {0}", + "Common.Views.ReviewChanges.txtFinalCap": "最後", + "Common.Views.ReviewChanges.txtHistory": "版本歷史", + "Common.Views.ReviewChanges.txtMarkup": "全部的更改{0}", + "Common.Views.ReviewChanges.txtMarkupCap": "標記與氣球", + "Common.Views.ReviewChanges.txtMarkupSimple": "所有變化{0}
無文字通知", + "Common.Views.ReviewChanges.txtMarkupSimpleCap": "只改標記的", + "Common.Views.ReviewChanges.txtNext": "下一個", + "Common.Views.ReviewChanges.txtOff": "給自己關閉", + "Common.Views.ReviewChanges.txtOffGlobal": "給自己跟所有使用者關閉", + "Common.Views.ReviewChanges.txtOn": "給自己開啟", + "Common.Views.ReviewChanges.txtOnGlobal": "給自己跟所有使用者開啟", + "Common.Views.ReviewChanges.txtOriginal": "全部更改被拒絕{0}", + "Common.Views.ReviewChanges.txtOriginalCap": "原始", + "Common.Views.ReviewChanges.txtPrev": "前一個", + "Common.Views.ReviewChanges.txtPreview": "預覽", + "Common.Views.ReviewChanges.txtReject": "拒絕", + "Common.Views.ReviewChanges.txtRejectAll": "拒絕所有更改", + "Common.Views.ReviewChanges.txtRejectChanges": "拒絕更改", + "Common.Views.ReviewChanges.txtRejectCurrent": "拒絕當前變化", + "Common.Views.ReviewChanges.txtSharing": "分享", + "Common.Views.ReviewChanges.txtSpelling": "拼字檢查", + "Common.Views.ReviewChanges.txtTurnon": "跟蹤變化", + "Common.Views.ReviewChanges.txtView": "顯示模式", + "Common.Views.ReviewChangesDialog.textTitle": "查看變更", + "Common.Views.ReviewChangesDialog.txtAccept": "同意", + "Common.Views.ReviewChangesDialog.txtAcceptAll": "同意所有更改", + "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "同意當前更改", + "Common.Views.ReviewChangesDialog.txtNext": "到下一個變化", + "Common.Views.ReviewChangesDialog.txtPrev": "到以前的變化", + "Common.Views.ReviewChangesDialog.txtReject": "拒絕", + "Common.Views.ReviewChangesDialog.txtRejectAll": "拒絕所有更改", + "Common.Views.ReviewChangesDialog.txtRejectCurrent": "拒絕當前變化", + "Common.Views.ReviewPopover.textAdd": "新增", + "Common.Views.ReviewPopover.textAddReply": "加入回應", + "Common.Views.ReviewPopover.textCancel": "取消", + "Common.Views.ReviewPopover.textClose": "關閉", + "Common.Views.ReviewPopover.textEdit": "確定", + "Common.Views.ReviewPopover.textFollowMove": "跟隨移動", + "Common.Views.ReviewPopover.textMention": "+提及將提供對文檔的存取權限並發送電子郵件", + "Common.Views.ReviewPopover.textMentionNotify": "+提及將通過電子郵件通知帳戶", + "Common.Views.ReviewPopover.textOpenAgain": "重新打開", + "Common.Views.ReviewPopover.textReply": "回覆", + "Common.Views.ReviewPopover.textResolve": "解決", + "Common.Views.ReviewPopover.textViewResolved": "你沒有權限來重新開啟這個註解", + "Common.Views.ReviewPopover.txtAccept": "同意", + "Common.Views.ReviewPopover.txtDeleteTip": "刪除", + "Common.Views.ReviewPopover.txtEditTip": "編輯", + "Common.Views.ReviewPopover.txtReject": "拒絕", + "Common.Views.SaveAsDlg.textLoading": "載入中", + "Common.Views.SaveAsDlg.textTitle": "儲存文件夾", + "Common.Views.SelectFileDlg.textLoading": "載入中", + "Common.Views.SelectFileDlg.textTitle": "選擇資料來源", + "Common.Views.SignDialog.textBold": "粗體", + "Common.Views.SignDialog.textCertificate": "證書", + "Common.Views.SignDialog.textChange": "變更", + "Common.Views.SignDialog.textInputName": "輸入簽名者名稱", + "Common.Views.SignDialog.textItalic": "斜體", + "Common.Views.SignDialog.textNameError": "簽名人姓名不能留空。", + "Common.Views.SignDialog.textPurpose": "簽署本文件的目的", + "Common.Views.SignDialog.textSelect": "選擇", + "Common.Views.SignDialog.textSelectImage": "選擇圖片", + "Common.Views.SignDialog.textSignature": "簽名看起來像", + "Common.Views.SignDialog.textTitle": "簽署文件", + "Common.Views.SignDialog.textUseImage": "或單擊“選擇圖像”以使用圖片作為簽名", + "Common.Views.SignDialog.textValid": "從%1到%2有效", + "Common.Views.SignDialog.tipFontName": "字體名稱", + "Common.Views.SignDialog.tipFontSize": "字體大小", + "Common.Views.SignSettingsDialog.textAllowComment": "允許簽名者在簽名對話框中添加註釋", + "Common.Views.SignSettingsDialog.textInfo": "簽名者資訊", + "Common.Views.SignSettingsDialog.textInfoEmail": "電子郵件", + "Common.Views.SignSettingsDialog.textInfoName": "名稱", + "Common.Views.SignSettingsDialog.textInfoTitle": "簽名人稱號", + "Common.Views.SignSettingsDialog.textInstructions": "簽名者說明", + "Common.Views.SignSettingsDialog.textShowDate": "在簽名行中顯示簽名日期", + "Common.Views.SignSettingsDialog.textTitle": "簽名設置", + "Common.Views.SignSettingsDialog.txtEmpty": "這是必填欄", + "Common.Views.SymbolTableDialog.textCharacter": "文字", + "Common.Views.SymbolTableDialog.textCode": "Unicode HEX 值", + "Common.Views.SymbolTableDialog.textCopyright": "版權標誌", + "Common.Views.SymbolTableDialog.textDCQuote": "結束雙引號", + "Common.Views.SymbolTableDialog.textDOQuote": "開頭雙引號", + "Common.Views.SymbolTableDialog.textEllipsis": "水平橢圓", + "Common.Views.SymbolTableDialog.textEmDash": "空槓", + "Common.Views.SymbolTableDialog.textEmSpace": "空白空間", + "Common.Views.SymbolTableDialog.textEnDash": "En 橫槓", + "Common.Views.SymbolTableDialog.textEnSpace": "En 空白", + "Common.Views.SymbolTableDialog.textFont": "字體", + "Common.Views.SymbolTableDialog.textNBHyphen": "不間斷連字符", + "Common.Views.SymbolTableDialog.textNBSpace": "不間斷空間", + "Common.Views.SymbolTableDialog.textPilcrow": "稻草人標誌", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 空白空間", + "Common.Views.SymbolTableDialog.textRange": "範圍", + "Common.Views.SymbolTableDialog.textRecent": "最近使用的符號", + "Common.Views.SymbolTableDialog.textRegistered": "註冊標誌", + "Common.Views.SymbolTableDialog.textSCQuote": "結束單引號", + "Common.Views.SymbolTableDialog.textSection": "分區標誌", + "Common.Views.SymbolTableDialog.textShortcut": "快捷鍵", + "Common.Views.SymbolTableDialog.textSHyphen": "軟連字符", + "Common.Views.SymbolTableDialog.textSOQuote": "開單報價", + "Common.Views.SymbolTableDialog.textSpecial": "特殊字符", + "Common.Views.SymbolTableDialog.textSymbols": "符號", + "Common.Views.SymbolTableDialog.textTitle": "符號", + "Common.Views.SymbolTableDialog.textTradeMark": "商標符號", + "Common.Views.UserNameDialog.textDontShow": "不要再顯示", + "Common.Views.UserNameDialog.textLabel": "標籤:", + "Common.Views.UserNameDialog.textLabelError": "標籤不能為空。", + "DE.Controllers.LeftMenu.leavePageText": "該文檔中所有未儲存的更改都將丟失。
單擊“取消”,然後單擊“存檔”以保存它們。單擊“確定”,放棄所有未儲存的更改。", + "DE.Controllers.LeftMenu.newDocumentTitle": "未命名文件", + "DE.Controllers.LeftMenu.notcriticalErrorTitle": "警告", + "DE.Controllers.LeftMenu.requestEditRightsText": "正在請求編輯權限...", + "DE.Controllers.LeftMenu.textLoadHistory": "正在載入版本歷史記錄...", + "DE.Controllers.LeftMenu.textNoTextFound": "找不到您一直在搜索的數據。請調整您的搜索選項。", + "DE.Controllers.LeftMenu.textReplaceSkipped": "替換已完成。 {0}個事件被跳過。", + "DE.Controllers.LeftMenu.textReplaceSuccess": "搜索已完成。發生的事件已替換:{0}", + "DE.Controllers.LeftMenu.txtCompatible": "該文檔將儲存為新格式。它將允許使用所有編輯器功能,但可能會影響文檔佈局。
如果要使文件與舊版MS Word兼容,請使用高級設置的“兼容性”選項。", + "DE.Controllers.LeftMenu.txtUntitled": "無標題", + "DE.Controllers.LeftMenu.warnDownloadAs": "如果繼續以這種格式保存,則除文本外的所有功能都將丟失。
確定要繼續嗎?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "您的 {0} 將轉換成一份可修改的文件。系統需要處理一段時間。轉換後的文件即可隨之修改,但可能不完全跟您的原 {0} 相同,特別是如果原文件有過多的圖像將會更有差異。", + "DE.Controllers.LeftMenu.warnDownloadAsRTF": "如果繼續以這種格式保存,則某些格式可能會丟失。
確定要繼續嗎?", + "DE.Controllers.Main.applyChangesTextText": "加載更改...", + "DE.Controllers.Main.applyChangesTitleText": "加載更改", + "DE.Controllers.Main.convertationTimeoutText": "轉換逾時。", + "DE.Controllers.Main.criticalErrorExtText": "按“確定”返回文檔列表。", + "DE.Controllers.Main.criticalErrorTitle": "錯誤", + "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.errorComboSeries": "如要新增組合圖表,選擇兩個以上的Series資料。", + "DE.Controllers.Main.errorCompare": "共同編輯時,“比較文檔”功能不可用。", + "DE.Controllers.Main.errorConnectToServer": "無法儲存該文檔。請檢查連接設置或與管理員聯繫。
單擊“確定”按鈕時,系統將提示您下載文檔。", + "DE.Controllers.Main.errorDatabaseConnection": "外部錯誤。
數據庫連接錯誤。如果錯誤仍然存在,請聯繫支持。", + "DE.Controllers.Main.errorDataEncrypted": "已收到加密的更改,無法解密。", + "DE.Controllers.Main.errorDataRange": "不正確的資料範圍", + "DE.Controllers.Main.errorDefaultMessage": "錯誤編號:%1", + "DE.Controllers.Main.errorDirectUrl": "請驗證指向文檔的連結。
此連結必須是指向要下載文件的直接連結。", + "DE.Controllers.Main.errorEditingDownloadas": "在處理文檔期間發生錯誤。
使用“下載為...”選項將文件備份副本儲存到電腦硬碟中。", + "DE.Controllers.Main.errorEditingSaveas": "使用文檔期間發生錯誤。
使用“另存為...”選項將文件備份副本儲存到電腦硬碟中。", + "DE.Controllers.Main.errorEmailClient": "找不到電子郵件客戶端。", + "DE.Controllers.Main.errorFilePassProtect": "該文件受密碼保護,無法打開。", + "DE.Controllers.Main.errorFileSizeExceed": "此檔案超過這一主機限制的大小
進一步資訊,請聯絡您的文件服務主機的管理者。", + "DE.Controllers.Main.errorForceSave": "儲存文件時發生錯誤。請使用“下載為”選項將文件儲存到電腦機硬碟中,或稍後再試。", + "DE.Controllers.Main.errorKeyEncrypt": "未知密鑰描述符", + "DE.Controllers.Main.errorKeyExpire": "密鑰描述符已過期", + "DE.Controllers.Main.errorLoadingFont": "字體未加載。
請聯繫文件服務器管理員。", + "DE.Controllers.Main.errorMailMergeLoadFile": "文件載入中", + "DE.Controllers.Main.errorMailMergeSaveFile": "合併失敗.", + "DE.Controllers.Main.errorProcessSaveResult": "儲存失敗", + "DE.Controllers.Main.errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。", + "DE.Controllers.Main.errorSessionAbsolute": "此文件編輯的會期已經過時。請重新載入此頁面。", + "DE.Controllers.Main.errorSessionIdle": "此文件已經在編輯狀態有很長時間, 請重新載入此頁面。", + "DE.Controllers.Main.errorSessionToken": "與服務器的連接已中斷。請重新加載頁面。", + "DE.Controllers.Main.errorSetPassword": "無法重設密碼。", + "DE.Controllers.Main.errorStockChart": "不正確的列次序。要建立一推疊圖表, 需要將此表的資料放置為以下的次序
出價, 最高價, 最低價, 節標價。", + "DE.Controllers.Main.errorSubmit": "傳送失敗", + "DE.Controllers.Main.errorToken": "文檔安全令牌的格式不正確。
請與您的Document Server管理員聯繫。", + "DE.Controllers.Main.errorTokenExpire": "文檔安全令牌已過期。
請與您的Document Server管理員聯繫。", + "DE.Controllers.Main.errorUpdateVersion": "文件版本已更改。該頁面將重新加載。", + "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet連接已恢復,文件版本已更改。
在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。", + "DE.Controllers.Main.errorUserDrop": "目前無法存取該文件。", + "DE.Controllers.Main.errorUsersExceed": "超出了定價計劃所允許的帳戶數量", + "DE.Controllers.Main.errorViewerDisconnect": "連線失敗。您仍然可以查看該檔案,但在恢復連接並重新加載頁面之前將無法下載或列印該檔案。", + "DE.Controllers.Main.leavePageText": "您在此文檔中尚未儲存更改。單擊“保留在此頁面上”,然後單擊“存檔”以儲存更改。單擊“離開此頁面”以放棄所有未儲存的更改。", + "DE.Controllers.Main.leavePageTextOnClose": "該文檔中所有未儲存的更改都將遺失。
單擊“取消”,然後單擊“存檔”以保存它們。單擊“確定”,放棄所有未儲存的更改。", + "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.reloadButtonText": "重新載入頁面", + "DE.Controllers.Main.requestEditFailedMessageText": "有人正在編輯此文檔。請稍後再試。", + "DE.Controllers.Main.requestEditFailedTitleText": "存取拒絕", + "DE.Controllers.Main.saveErrorText": "儲存檔案時發生錯誤", + "DE.Controllers.Main.saveErrorTextDesktop": "無法存檔或新增此文件。
可能的原因是:
1。該文件是唯獨模式的。
2。該文件正在由其他帳戶編輯。
3。磁碟已滿或損壞。", + "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.textApplyAll": "適用於所有方程式", + "DE.Controllers.Main.textBuyNow": "訪問網站", + "DE.Controllers.Main.textChangesSaved": "所有更改已儲存", + "DE.Controllers.Main.textClose": "關閉", + "DE.Controllers.Main.textCloseTip": "點擊關閉提示", + "DE.Controllers.Main.textContactUs": "聯絡業務人員", + "DE.Controllers.Main.textConvertEquation": "該方程式是使用不再受支持的方程式編輯器的舊版本創建的。要對其進行編輯,請將等式轉換為Office Math ML格式。
立即轉換?", + "DE.Controllers.Main.textCustomLoader": "請注意,根據許可條款,您無權更換裝載機。
請聯繫我們的銷售部門以獲取報價。", + "DE.Controllers.Main.textDisconnect": "失去網路連結", + "DE.Controllers.Main.textGuest": "來賓帳戶", + "DE.Controllers.Main.textHasMacros": "此檔案包含自動的", + "DE.Controllers.Main.textLearnMore": "了解更多", + "DE.Controllers.Main.textLoadingDocument": "載入文件", + "DE.Controllers.Main.textLongName": "輸入少於128個字符的名稱。", + "DE.Controllers.Main.textNoLicenseTitle": "達到許可限制", + "DE.Controllers.Main.textPaidFeature": "付費功能", + "DE.Controllers.Main.textReconnect": "連線恢復", + "DE.Controllers.Main.textRemember": "記住我的選擇", + "DE.Controllers.Main.textRenameError": "使用者名稱無法是空白。", + "DE.Controllers.Main.textRenameLabel": "輸入合作名稱", + "DE.Controllers.Main.textShape": "形狀", + "DE.Controllers.Main.textStrict": "嚴格模式", + "DE.Controllers.Main.textTryUndoRedo": "快速共同編輯模式禁用了“復原/重複”功能。
點擊“嚴格模式”按鈕切換到“嚴格共同編輯”模式以編輯文件而不會受到其他帳戶的干擾,並且僅在保存後發送更改他們。您可以使用編輯器的“進階”設置在共同編輯模式之間切換。", + "DE.Controllers.Main.textTryUndoRedoWarn": "在快速共同編輯模式下,復原/重複功能被禁用。", + "DE.Controllers.Main.titleLicenseExp": "證件過期", + "DE.Controllers.Main.titleServerVersion": "編輯器已更新", + "DE.Controllers.Main.titleUpdateVersion": "版本已更改", + "DE.Controllers.Main.txtAbove": "以上", + "DE.Controllers.Main.txtArt": "在這輸入文字", + "DE.Controllers.Main.txtBasicShapes": "基本形狀", + "DE.Controllers.Main.txtBelow": "之下", + "DE.Controllers.Main.txtBookmarkError": "錯誤!書籤未定義。", + "DE.Controllers.Main.txtButtons": "按鈕", + "DE.Controllers.Main.txtCallouts": "標註", + "DE.Controllers.Main.txtCharts": "圖表", + "DE.Controllers.Main.txtChoose": "選擇一個項目", + "DE.Controllers.Main.txtClickToLoad": "點此讀取圖片", + "DE.Controllers.Main.txtCurrentDocument": "當前文件", + "DE.Controllers.Main.txtDiagramTitle": "圖表標題", + "DE.Controllers.Main.txtEditingMode": "設定編輯模式...", + "DE.Controllers.Main.txtEndOfFormula": "函數意外結束", + "DE.Controllers.Main.txtEnterDate": "輸入日期", + "DE.Controllers.Main.txtErrorLoadHistory": "歷史記錄加載失敗", + "DE.Controllers.Main.txtEvenPage": "雙數頁", + "DE.Controllers.Main.txtFiguredArrows": "圖箭", + "DE.Controllers.Main.txtFirstPage": "第一頁", + "DE.Controllers.Main.txtFooter": "頁尾", + "DE.Controllers.Main.txtFormulaNotInTable": "函數不在表格中", + "DE.Controllers.Main.txtHeader": "標頭", + "DE.Controllers.Main.txtHyperlink": "超連結", + "DE.Controllers.Main.txtIndTooLarge": "索引太大", + "DE.Controllers.Main.txtLines": "線數", + "DE.Controllers.Main.txtMainDocOnly": "錯誤!僅主文檔。", + "DE.Controllers.Main.txtMath": "數學", + "DE.Controllers.Main.txtMissArg": "遺失論點", + "DE.Controllers.Main.txtMissOperator": "缺少運算符", + "DE.Controllers.Main.txtNeedSynchronize": "您有更新", + "DE.Controllers.Main.txtNone": "無", + "DE.Controllers.Main.txtNoTableOfContents": "該文件中沒有標題。將標題風格應用於內文,以便出現在目錄中。", + "DE.Controllers.Main.txtNoTableOfFigures": "沒有圖表目錄項目可用。", + "DE.Controllers.Main.txtNoText": "錯誤!指定的風格文件中沒有文字。", + "DE.Controllers.Main.txtNotInTable": "不在表中", + "DE.Controllers.Main.txtNotValidBookmark": "錯誤!不是有效的書籤自參考。", + "DE.Controllers.Main.txtOddPage": "奇數頁", + "DE.Controllers.Main.txtOnPage": "在頁面上", + "DE.Controllers.Main.txtRectangles": "長方形", + "DE.Controllers.Main.txtSameAsPrev": "與上一個相同", + "DE.Controllers.Main.txtSection": "-部分", + "DE.Controllers.Main.txtSeries": "系列", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "線路標註1(邊框和強調欄)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "線路標註2(邊框和強調欄)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "線路標註3(邊框和強調欄)", + "DE.Controllers.Main.txtShape_accentCallout1": "線路標註1(強調欄)", + "DE.Controllers.Main.txtShape_accentCallout2": "線路標註2(強調欄)", + "DE.Controllers.Main.txtShape_accentCallout3": "線路標註3(強調欄)", + "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "後退或上一步按鈕", + "DE.Controllers.Main.txtShape_actionButtonBeginning": "開始按鈕", + "DE.Controllers.Main.txtShape_actionButtonBlank": "空白按鈕", + "DE.Controllers.Main.txtShape_actionButtonDocument": "文件按鈕", + "DE.Controllers.Main.txtShape_actionButtonEnd": "結束按鈕", + "DE.Controllers.Main.txtShape_actionButtonForwardNext": "前進或後退按鈕", + "DE.Controllers.Main.txtShape_actionButtonHelp": "幫助按鈕", + "DE.Controllers.Main.txtShape_actionButtonHome": "首頁按鈕", + "DE.Controllers.Main.txtShape_actionButtonInformation": "信息按鈕", + "DE.Controllers.Main.txtShape_actionButtonMovie": "電影按鈕", + "DE.Controllers.Main.txtShape_actionButtonReturn": "返回按鈕", + "DE.Controllers.Main.txtShape_actionButtonSound": "聲音按鈕", + "DE.Controllers.Main.txtShape_arc": "弧", + "DE.Controllers.Main.txtShape_bentArrow": "彎曲箭頭", + "DE.Controllers.Main.txtShape_bentConnector5": "彎頭接頭", + "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "彎頭箭頭連接器", + "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "彎頭雙箭頭連接器", + "DE.Controllers.Main.txtShape_bentUpArrow": "向上彎曲箭頭", + "DE.Controllers.Main.txtShape_bevel": "斜角", + "DE.Controllers.Main.txtShape_blockArc": "圓弧", + "DE.Controllers.Main.txtShape_borderCallout1": "線路標註1", + "DE.Controllers.Main.txtShape_borderCallout2": "線路標註2", + "DE.Controllers.Main.txtShape_borderCallout3": "線路標註3", + "DE.Controllers.Main.txtShape_bracePair": "雙括號", + "DE.Controllers.Main.txtShape_callout1": "線路標註1(無邊框)", + "DE.Controllers.Main.txtShape_callout2": "線路標註2(無邊框)", + "DE.Controllers.Main.txtShape_callout3": "線路標註3(無邊框)", + "DE.Controllers.Main.txtShape_can": "罐狀", + "DE.Controllers.Main.txtShape_chevron": "雪佛龍V形", + "DE.Controllers.Main.txtShape_chord": "弦", + "DE.Controllers.Main.txtShape_circularArrow": "圓形箭頭", + "DE.Controllers.Main.txtShape_cloud": "雲", + "DE.Controllers.Main.txtShape_cloudCallout": "雲標註", + "DE.Controllers.Main.txtShape_corner": "角", + "DE.Controllers.Main.txtShape_cube": "立方體", + "DE.Controllers.Main.txtShape_curvedConnector3": "彎曲連接器", + "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "彎曲箭頭連接器", + "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "彎曲雙箭頭連接器", + "DE.Controllers.Main.txtShape_curvedDownArrow": "彎曲的向下箭頭", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "彎曲的左箭頭", + "DE.Controllers.Main.txtShape_curvedRightArrow": "彎曲的右箭頭", + "DE.Controllers.Main.txtShape_curvedUpArrow": "彎曲的向上箭頭", + "DE.Controllers.Main.txtShape_decagon": "十邊形", + "DE.Controllers.Main.txtShape_diagStripe": "斜條紋", + "DE.Controllers.Main.txtShape_diamond": "鑽石", + "DE.Controllers.Main.txtShape_dodecagon": "十二邊形", + "DE.Controllers.Main.txtShape_donut": "甜甜圈", + "DE.Controllers.Main.txtShape_doubleWave": "雙波", + "DE.Controllers.Main.txtShape_downArrow": "下箭頭", + "DE.Controllers.Main.txtShape_downArrowCallout": "向下箭頭標註", + "DE.Controllers.Main.txtShape_ellipse": "橢圓", + "DE.Controllers.Main.txtShape_ellipseRibbon": "彎下絲帶", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "向上彎曲絲帶", + "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "流程圖:替代過程", + "DE.Controllers.Main.txtShape_flowChartCollate": "流程圖:整理", + "DE.Controllers.Main.txtShape_flowChartConnector": "流程圖:連接器", + "DE.Controllers.Main.txtShape_flowChartDecision": "流程圖:決策", + "DE.Controllers.Main.txtShape_flowChartDelay": "流程圖:延遲", + "DE.Controllers.Main.txtShape_flowChartDisplay": "流程圖:顯示", + "DE.Controllers.Main.txtShape_flowChartDocument": "流程圖:文件", + "DE.Controllers.Main.txtShape_flowChartExtract": "流程圖:提取", + "DE.Controllers.Main.txtShape_flowChartInputOutput": "流程圖:數據", + "DE.Controllers.Main.txtShape_flowChartInternalStorage": "流程圖:內部存儲", + "DE.Controllers.Main.txtShape_flowChartMagneticDisk": "流程圖:磁碟", + "DE.Controllers.Main.txtShape_flowChartMagneticDrum": "流程圖:直接存取存儲", + "DE.Controllers.Main.txtShape_flowChartMagneticTape": "流程圖:順序存取存儲", + "DE.Controllers.Main.txtShape_flowChartManualInput": "流程圖:手動輸入", + "DE.Controllers.Main.txtShape_flowChartManualOperation": "流程圖:手動操作", + "DE.Controllers.Main.txtShape_flowChartMerge": "流程圖:合併", + "DE.Controllers.Main.txtShape_flowChartMultidocument": "流程圖:多文檔", + "DE.Controllers.Main.txtShape_flowChartOffpageConnector": "流程圖:頁外連接器", + "DE.Controllers.Main.txtShape_flowChartOnlineStorage": "流程圖:存儲的數據", + "DE.Controllers.Main.txtShape_flowChartOr": "流程圖:或", + "DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "流程圖:預定義流程", + "DE.Controllers.Main.txtShape_flowChartPreparation": "流程圖:準備", + "DE.Controllers.Main.txtShape_flowChartProcess": "流程圖:流程", + "DE.Controllers.Main.txtShape_flowChartPunchedCard": "流程圖:卡", + "DE.Controllers.Main.txtShape_flowChartPunchedTape": "流程圖:穿孔紙帶", + "DE.Controllers.Main.txtShape_flowChartSort": "流程圖:排序", + "DE.Controllers.Main.txtShape_flowChartSummingJunction": "流程圖:求和結點", + "DE.Controllers.Main.txtShape_flowChartTerminator": "流程圖:終結者", + "DE.Controllers.Main.txtShape_foldedCorner": "折角", + "DE.Controllers.Main.txtShape_frame": "框", + "DE.Controllers.Main.txtShape_halfFrame": "半框", + "DE.Controllers.Main.txtShape_heart": "心", + "DE.Controllers.Main.txtShape_heptagon": "七邊形", + "DE.Controllers.Main.txtShape_hexagon": "六邊形", + "DE.Controllers.Main.txtShape_homePlate": "五角形", + "DE.Controllers.Main.txtShape_horizontalScroll": "水平滾動", + "DE.Controllers.Main.txtShape_irregularSeal1": "爆炸1", + "DE.Controllers.Main.txtShape_irregularSeal2": "爆炸2", + "DE.Controllers.Main.txtShape_leftArrow": "左箭頭", + "DE.Controllers.Main.txtShape_leftArrowCallout": "向左箭頭標註", + "DE.Controllers.Main.txtShape_leftBrace": "左括號", + "DE.Controllers.Main.txtShape_leftBracket": "左括號", + "DE.Controllers.Main.txtShape_leftRightArrow": "左右箭頭", + "DE.Controllers.Main.txtShape_leftRightArrowCallout": "左右箭頭標註", + "DE.Controllers.Main.txtShape_leftRightUpArrow": "左右上箭頭", + "DE.Controllers.Main.txtShape_leftUpArrow": "左上箭頭", + "DE.Controllers.Main.txtShape_lightningBolt": "閃電", + "DE.Controllers.Main.txtShape_line": "線", + "DE.Controllers.Main.txtShape_lineWithArrow": "箭頭", + "DE.Controllers.Main.txtShape_lineWithTwoArrows": "雙箭頭", + "DE.Controllers.Main.txtShape_mathDivide": "分裂", + "DE.Controllers.Main.txtShape_mathEqual": "等於", + "DE.Controllers.Main.txtShape_mathMinus": "減去", + "DE.Controllers.Main.txtShape_mathMultiply": "乘", + "DE.Controllers.Main.txtShape_mathNotEqual": "不平等", + "DE.Controllers.Main.txtShape_mathPlus": "加", + "DE.Controllers.Main.txtShape_moon": "月亮", + "DE.Controllers.Main.txtShape_noSmoking": "\"否\"符號", + "DE.Controllers.Main.txtShape_notchedRightArrow": "缺口右箭頭", + "DE.Controllers.Main.txtShape_octagon": "八邊形", + "DE.Controllers.Main.txtShape_parallelogram": "平行四邊形", + "DE.Controllers.Main.txtShape_pentagon": "五角形", + "DE.Controllers.Main.txtShape_pie": "餅", + "DE.Controllers.Main.txtShape_plaque": "簽名", + "DE.Controllers.Main.txtShape_plus": "加", + "DE.Controllers.Main.txtShape_polyline1": "塗", + "DE.Controllers.Main.txtShape_polyline2": "自由形式", + "DE.Controllers.Main.txtShape_quadArrow": "四箭頭", + "DE.Controllers.Main.txtShape_quadArrowCallout": "四箭頭標註", + "DE.Controllers.Main.txtShape_rect": "長方形", + "DE.Controllers.Main.txtShape_ribbon": "下絨帶", + "DE.Controllers.Main.txtShape_ribbon2": "上色帶", + "DE.Controllers.Main.txtShape_rightArrow": "右箭頭", + "DE.Controllers.Main.txtShape_rightArrowCallout": "右箭頭標註", + "DE.Controllers.Main.txtShape_rightBrace": "右括號", + "DE.Controllers.Main.txtShape_rightBracket": "右括號", + "DE.Controllers.Main.txtShape_round1Rect": "圓形單角矩形", + "DE.Controllers.Main.txtShape_round2DiagRect": "圓斜角矩形", + "DE.Controllers.Main.txtShape_round2SameRect": "圓同一邊角矩形", + "DE.Controllers.Main.txtShape_roundRect": "圓角矩形", + "DE.Controllers.Main.txtShape_rtTriangle": "直角三角形", + "DE.Controllers.Main.txtShape_smileyFace": "笑臉", + "DE.Controllers.Main.txtShape_snip1Rect": "剪斷單角矩形", + "DE.Controllers.Main.txtShape_snip2DiagRect": "剪裁對角線矩形", + "DE.Controllers.Main.txtShape_snip2SameRect": "剪斷同一邊角矩形", + "DE.Controllers.Main.txtShape_snipRoundRect": "剪斷和圓形單角矩形", + "DE.Controllers.Main.txtShape_spline": "曲線", + "DE.Controllers.Main.txtShape_star10": "十點星", + "DE.Controllers.Main.txtShape_star12": "十二點星", + "DE.Controllers.Main.txtShape_star16": "十六點星", + "DE.Controllers.Main.txtShape_star24": "24點星", + "DE.Controllers.Main.txtShape_star32": "32點星", + "DE.Controllers.Main.txtShape_star4": "4點星", + "DE.Controllers.Main.txtShape_star5": "5點星", + "DE.Controllers.Main.txtShape_star6": "6點星", + "DE.Controllers.Main.txtShape_star7": "7點星", + "DE.Controllers.Main.txtShape_star8": "8點星", + "DE.Controllers.Main.txtShape_stripedRightArrow": "條紋右箭頭", + "DE.Controllers.Main.txtShape_sun": "太陽", + "DE.Controllers.Main.txtShape_teardrop": "淚珠", + "DE.Controllers.Main.txtShape_textRect": "文字框", + "DE.Controllers.Main.txtShape_trapezoid": "梯形", + "DE.Controllers.Main.txtShape_triangle": "三角形", + "DE.Controllers.Main.txtShape_upArrow": "向上箭頭", + "DE.Controllers.Main.txtShape_upArrowCallout": "向上箭頭標註", + "DE.Controllers.Main.txtShape_upDownArrow": "上下箭頭", + "DE.Controllers.Main.txtShape_uturnArrow": "掉頭箭頭", + "DE.Controllers.Main.txtShape_verticalScroll": "垂直滾動", + "DE.Controllers.Main.txtShape_wave": "波", + "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "橢圓形標註", + "DE.Controllers.Main.txtShape_wedgeRectCallout": "矩形標註", + "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "圓角矩形標註", + "DE.Controllers.Main.txtStarsRibbons": "星星和絲帶", + "DE.Controllers.Main.txtStyle_Caption": "標題", + "DE.Controllers.Main.txtStyle_endnote_text": "尾註文", + "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.txtSyntaxError": "語法錯誤", + "DE.Controllers.Main.txtTableInd": "表索引不能為零", + "DE.Controllers.Main.txtTableOfContents": "目錄", + "DE.Controllers.Main.txtTableOfFigures": "圖表目錄", + "DE.Controllers.Main.txtTOCHeading": "目錄標題", + "DE.Controllers.Main.txtTooLarge": "數字太大而無法格式化", + "DE.Controllers.Main.txtTypeEquation": "在此處輸入方程式。", + "DE.Controllers.Main.txtUndefBookmark": "未定義的書籤", + "DE.Controllers.Main.txtXAxis": "X軸", + "DE.Controllers.Main.txtYAxis": "Y軸", + "DE.Controllers.Main.txtZeroDivide": "零分度", + "DE.Controllers.Main.unknownErrorText": "未知錯誤。", + "DE.Controllers.Main.unsupportedBrowserErrorText": "不支援您的瀏覽器", + "DE.Controllers.Main.uploadDocExtMessage": "未知的文件格式。", + "DE.Controllers.Main.uploadDocFileCountMessage": "沒有文件上傳。", + "DE.Controllers.Main.uploadDocSizeMessage": "超出最大文檔大小限制。", + "DE.Controllers.Main.uploadImageExtMessage": "圖片格式未知。", + "DE.Controllers.Main.uploadImageFileCountMessage": "沒有上傳圖片。", + "DE.Controllers.Main.uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。", + "DE.Controllers.Main.uploadImageTextText": "正在上傳圖片...", + "DE.Controllers.Main.uploadImageTitleText": "上載圖片", + "DE.Controllers.Main.waitText": "請耐心等待...", + "DE.Controllers.Main.warnBrowserIE9": "該應用程序在IE9上具有較低的功能。使用IE10或更高版本", + "DE.Controllers.Main.warnBrowserZoom": "瀏覽器當前的縮放設置不受完全支持。請按Ctrl + 0重置為預設縮放。", + "DE.Controllers.Main.warnLicenseExceeded": "您的系統已經達到同時編輯連線的 %1 編輯器。只能以檢視模式開啟此文件。
欲得知進一步訊息, 請聯絡您的帳號管理者。", + "DE.Controllers.Main.warnLicenseExp": "您的授權證已過期.
請更新您的授權證並重新整理頁面。", + "DE.Controllers.Main.warnLicenseLimitedNoAccess": "授權過期
您已沒有編輯文件功能的授權
請與您的管理者聯繫。", + "DE.Controllers.Main.warnLicenseLimitedRenewed": "授權證書需要更新
您只有部分的文件編輯功能的存取權限
請與您的管理者聯繫來取得完整的存取權限。", + "DE.Controllers.Main.warnLicenseUsersExceeded": "您已達到%1個編輯器限制。請聯絡你的帳號管理員以了解更多資訊。", + "DE.Controllers.Main.warnNoLicense": "您的系統已經達到同時編輯連線的 %1 編輯器。只能以檢視模式開啟此文件。
請聯繫 %1 銷售團隊來取得個人升級的需求。", + "DE.Controllers.Main.warnNoLicenseUsers": "您已達到%1個編輯器限制。請聯絡%1業務部以了解更多的升級條款及方案。", + "DE.Controllers.Main.warnProcessRightsChange": "您被拒絕編輯文件的權利。", + "DE.Controllers.Navigation.txtBeginning": "文件的開頭", + "DE.Controllers.Navigation.txtGotoBeginning": "轉到文檔的開頭", + "DE.Controllers.Statusbar.textDisconnect": "連線失敗
正在嘗試連線。請檢查網路連線設定。", + "DE.Controllers.Statusbar.textHasChanges": "跟蹤了新的變化", + "DE.Controllers.Statusbar.textSetTrackChanges": "您現在是在Track Changes模式", + "DE.Controllers.Statusbar.textTrackChanges": "在啟用“修訂”模式的情況下打開文檔", + "DE.Controllers.Statusbar.tipReview": "跟蹤變化", + "DE.Controllers.Statusbar.zoomText": "放大{0}%", + "DE.Controllers.Toolbar.confirmAddFontName": "您要儲存的字型在目前的設備上無法使用。
字型風格將使用其中一種系統字體顯示,儲存的字體將在可用時啟用。
您要繼續嗎?", + "DE.Controllers.Toolbar.dataUrl": "粘貼數據 URL", + "DE.Controllers.Toolbar.notcriticalErrorTitle": "警告", + "DE.Controllers.Toolbar.textAccent": "口音", + "DE.Controllers.Toolbar.textBracket": "括號", + "DE.Controllers.Toolbar.textEmptyImgUrl": "您必須輸入圖檔的URL.", + "DE.Controllers.Toolbar.textEmptyMMergeUrl": "你必須指定URL", + "DE.Controllers.Toolbar.textFontSizeErr": "輸入的值不正確。
請輸入1到300之間的數字值", + "DE.Controllers.Toolbar.textFraction": "分數", + "DE.Controllers.Toolbar.textFunction": "功能", + "DE.Controllers.Toolbar.textGroup": "群組", + "DE.Controllers.Toolbar.textInsert": "插入", + "DE.Controllers.Toolbar.textIntegral": "積分", + "DE.Controllers.Toolbar.textLargeOperator": "大型運營商", + "DE.Controllers.Toolbar.textLimitAndLog": "極限和對數", + "DE.Controllers.Toolbar.textMatrix": "矩陣", + "DE.Controllers.Toolbar.textOperator": "經營者", + "DE.Controllers.Toolbar.textRadical": "激進單數", + "DE.Controllers.Toolbar.textRecentlyUsed": "最近使用", + "DE.Controllers.Toolbar.textScript": "腳本", + "DE.Controllers.Toolbar.textSymbols": "符號", + "DE.Controllers.Toolbar.textTabForms": "表格", + "DE.Controllers.Toolbar.textWarning": "警告", + "DE.Controllers.Toolbar.txtAccent_Accent": "尖銳", + "DE.Controllers.Toolbar.txtAccent_ArrowD": "上方的左右箭頭", + "DE.Controllers.Toolbar.txtAccent_ArrowL": "上方的向左箭頭", + "DE.Controllers.Toolbar.txtAccent_ArrowR": "上方向右箭頭", + "DE.Controllers.Toolbar.txtAccent_Bar": "槓", + "DE.Controllers.Toolbar.txtAccent_BarBot": "底橫槓", + "DE.Controllers.Toolbar.txtAccent_BarTop": "橫槓", + "DE.Controllers.Toolbar.txtAccent_BorderBox": "盒裝公式(帶佔位符)", + "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "盒裝函數(範例)", + "DE.Controllers.Toolbar.txtAccent_Check": "檢查", + "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "底括號", + "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "大括號", + "DE.Controllers.Toolbar.txtAccent_Custom_1": "向量A", + "DE.Controllers.Toolbar.txtAccent_Custom_2": "帶橫線的ABC", + "DE.Controllers.Toolbar.txtAccent_Custom_3": "x X或y的橫槓", + "DE.Controllers.Toolbar.txtAccent_DDDot": "三點", + "DE.Controllers.Toolbar.txtAccent_DDot": "雙點", + "DE.Controllers.Toolbar.txtAccent_Dot": "點", + "DE.Controllers.Toolbar.txtAccent_DoubleBar": "雙橫槓", + "DE.Controllers.Toolbar.txtAccent_Grave": "墓", + "DE.Controllers.Toolbar.txtAccent_GroupBot": "下面的分組字符", + "DE.Controllers.Toolbar.txtAccent_GroupTop": "上面的分組字符", + "DE.Controllers.Toolbar.txtAccent_HarpoonL": "上方的向左魚叉", + "DE.Controllers.Toolbar.txtAccent_HarpoonR": "右上方的魚叉", + "DE.Controllers.Toolbar.txtAccent_Hat": "帽子", + "DE.Controllers.Toolbar.txtAccent_Smile": "短音符", + "DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", + "DE.Controllers.Toolbar.txtBracket_Angle": "括號", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "帶分隔符的括號", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "帶分隔符的括號", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "單括號", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "單括號", + "DE.Controllers.Toolbar.txtBracket_Curve": "括號", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "帶分隔符的括號", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "單括號", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "單括號", + "DE.Controllers.Toolbar.txtBracket_Custom_1": "案件(兩件條件)", + "DE.Controllers.Toolbar.txtBracket_Custom_2": "案件(三件條件)", + "DE.Controllers.Toolbar.txtBracket_Custom_3": "堆疊物件", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "堆疊物件", + "DE.Controllers.Toolbar.txtBracket_Custom_5": "案件例子", + "DE.Controllers.Toolbar.txtBracket_Custom_6": "二項式係數", + "DE.Controllers.Toolbar.txtBracket_Custom_7": "二項式係數", + "DE.Controllers.Toolbar.txtBracket_Line": "括號", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "單括號", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "單括號", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "括號", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "單括號", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "單括號", + "DE.Controllers.Toolbar.txtBracket_LowLim": "括號", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "單括號", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "單括號", + "DE.Controllers.Toolbar.txtBracket_Round": "括號", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "帶分隔符的括號", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "單括號", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "單括號", + "DE.Controllers.Toolbar.txtBracket_Square": "括號", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "括號", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "括號", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "單括號", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "單括號", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "括號", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "括號", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "單括號", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "單括號", + "DE.Controllers.Toolbar.txtBracket_UppLim": "括號", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "單括號", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "單括號", + "DE.Controllers.Toolbar.txtFractionDiagonal": "偏斜分數", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "微分", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "微分", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "微分", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "微分", + "DE.Controllers.Toolbar.txtFractionHorizontal": "線性分數", + "DE.Controllers.Toolbar.txtFractionPi_2": "Pi超過2", + "DE.Controllers.Toolbar.txtFractionSmall": "小分數", + "DE.Controllers.Toolbar.txtFractionVertical": "堆積分數", + "DE.Controllers.Toolbar.txtFunction_1_Cos": "反餘弦函數", + "DE.Controllers.Toolbar.txtFunction_1_Cosh": "雙曲餘弦函數", + "DE.Controllers.Toolbar.txtFunction_1_Cot": "反正切函數", + "DE.Controllers.Toolbar.txtFunction_1_Coth": "雙曲反正切函數", + "DE.Controllers.Toolbar.txtFunction_1_Csc": "餘割函數反", + "DE.Controllers.Toolbar.txtFunction_1_Csch": "雙曲反餘割函數", + "DE.Controllers.Toolbar.txtFunction_1_Sec": "反割線功能", + "DE.Controllers.Toolbar.txtFunction_1_Sech": "雙曲反正割函數", + "DE.Controllers.Toolbar.txtFunction_1_Sin": "反正弦函數", + "DE.Controllers.Toolbar.txtFunction_1_Sinh": "雙曲反正弦函數", + "DE.Controllers.Toolbar.txtFunction_1_Tan": "反正切函數", + "DE.Controllers.Toolbar.txtFunction_1_Tanh": "雙曲反正切函數", + "DE.Controllers.Toolbar.txtFunction_Cos": "Cosine 函數", + "DE.Controllers.Toolbar.txtFunction_Cosh": "雙曲餘弦函數", + "DE.Controllers.Toolbar.txtFunction_Cot": "Cotangent 函數", + "DE.Controllers.Toolbar.txtFunction_Coth": "雙曲餘切函數", + "DE.Controllers.Toolbar.txtFunction_Csc": "餘割函數", + "DE.Controllers.Toolbar.txtFunction_Csch": "雙曲餘割函數", + "DE.Controllers.Toolbar.txtFunction_Custom_1": "正弦波", + "DE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "DE.Controllers.Toolbar.txtFunction_Custom_3": "切線函數", + "DE.Controllers.Toolbar.txtFunction_Sec": "正割功能", + "DE.Controllers.Toolbar.txtFunction_Sech": "雙曲正割函數", + "DE.Controllers.Toolbar.txtFunction_Sin": "正弦函數", + "DE.Controllers.Toolbar.txtFunction_Sinh": "雙曲正弦函數", + "DE.Controllers.Toolbar.txtFunction_Tan": "切線公式", + "DE.Controllers.Toolbar.txtFunction_Tanh": "雙曲正切函數", + "DE.Controllers.Toolbar.txtIntegral": "積分", + "DE.Controllers.Toolbar.txtIntegral_dtheta": "微分θ", + "DE.Controllers.Toolbar.txtIntegral_dx": "差分 x", + "DE.Controllers.Toolbar.txtIntegral_dy": "差分 y", + "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "積分", + "DE.Controllers.Toolbar.txtIntegralDouble": "雙積分", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "雙積分", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "雙積分", + "DE.Controllers.Toolbar.txtIntegralOriented": "輪廓積分", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "輪廓積分", + "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "表面積分", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "表面積分", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "表面積分", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "輪廓積分", + "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "體積積分", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "體積積分", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "體積積分", + "DE.Controllers.Toolbar.txtIntegralSubSup": "積分", + "DE.Controllers.Toolbar.txtIntegralTriple": "三重積分", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "三重積分", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "三重積分", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "楔", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "楔", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "楔", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "楔", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "楔", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "聯產品", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "聯產品", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "聯產品", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "聯產品", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "聯產品", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "求和", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "求和", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "求和", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "產品", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "聯合", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "交叉點", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "交叉點", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "交叉點", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "交叉點", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "交叉點", + "DE.Controllers.Toolbar.txtLargeOperator_Prod": "產品", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "產品", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "產品", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "產品", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "產品", + "DE.Controllers.Toolbar.txtLargeOperator_Sum": "求和", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "求和", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "求和", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "求和", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "求和", + "DE.Controllers.Toolbar.txtLargeOperator_Union": "聯合", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "聯合", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "聯合", + "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "聯合", + "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "聯合", + "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "限制例子", + "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "最大例子", + "DE.Controllers.Toolbar.txtLimitLog_Lim": "限制", + "DE.Controllers.Toolbar.txtLimitLog_Ln": "自然對數", + "DE.Controllers.Toolbar.txtLimitLog_Log": "對數", + "DE.Controllers.Toolbar.txtLimitLog_LogBase": "對數", + "DE.Controllers.Toolbar.txtLimitLog_Max": "最大", + "DE.Controllers.Toolbar.txtLimitLog_Min": "最低", + "DE.Controllers.Toolbar.txtMarginsH": "對於給定的頁面高度,上下邊距太高", + "DE.Controllers.Toolbar.txtMarginsW": "給定頁面寬度,左右頁邊距太寬", + "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2的空矩陣", + "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3空矩陣", + "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 空矩陣", + "DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 空矩陣", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "帶括號的空矩陣", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "帶括號的空矩陣", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "帶括號的空矩陣", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "帶括號的空矩陣", + "DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 空矩陣", + "DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 空矩陣", + "DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 空矩陣", + "DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 空矩陣", + "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "基準點", + "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "中線點", + "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "對角點", + "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "垂直點", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "稀疏矩陣", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "稀疏矩陣", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 單位矩陣", + "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 單位矩陣", + "DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 單位矩陣", + "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 單位矩陣", + "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "下方的左右箭頭", + "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "上方的左右箭頭", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "下方的向左箭頭", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "上方的向左箭頭", + "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "下方向右箭頭", + "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "上方向右箭頭", + "DE.Controllers.Toolbar.txtOperator_ColonEquals": "冒號相等", + "DE.Controllers.Toolbar.txtOperator_Custom_1": "產量", + "DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta 收益", + "DE.Controllers.Toolbar.txtOperator_Definition": "等同於定義", + "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta 等於", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "下方的左右箭頭", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "上方的左右箭頭", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "下方的向左箭頭", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "上方的向左箭頭", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "下方向右箭頭", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "上方向右箭頭", + "DE.Controllers.Toolbar.txtOperator_EqualsEquals": "等於 等於", + "DE.Controllers.Toolbar.txtOperator_MinusEquals": "負等於", + "DE.Controllers.Toolbar.txtOperator_PlusEquals": "加等於", + "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "測量者", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "激進", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "激進", + "DE.Controllers.Toolbar.txtRadicalRoot_2": "平方根", + "DE.Controllers.Toolbar.txtRadicalRoot_3": "立方根", + "DE.Controllers.Toolbar.txtRadicalRoot_n": "自由基度", + "DE.Controllers.Toolbar.txtRadicalSqrt": "平方根", + "DE.Controllers.Toolbar.txtScriptCustom_1": "腳本", + "DE.Controllers.Toolbar.txtScriptCustom_2": "腳本", + "DE.Controllers.Toolbar.txtScriptCustom_3": "腳本", + "DE.Controllers.Toolbar.txtScriptCustom_4": "腳本", + "DE.Controllers.Toolbar.txtScriptSub": "下標", + "DE.Controllers.Toolbar.txtScriptSubSup": "下標-上標", + "DE.Controllers.Toolbar.txtScriptSubSupLeft": "左下標-上標", + "DE.Controllers.Toolbar.txtScriptSup": "上標", + "DE.Controllers.Toolbar.txtSymbol_about": "大約", + "DE.Controllers.Toolbar.txtSymbol_additional": "補充", + "DE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "DE.Controllers.Toolbar.txtSymbol_alpha": "Αlpha", + "DE.Controllers.Toolbar.txtSymbol_approx": "幾乎等於", + "DE.Controllers.Toolbar.txtSymbol_ast": "星號運算符", + "DE.Controllers.Toolbar.txtSymbol_beta": "測試版", + "DE.Controllers.Toolbar.txtSymbol_beth": "賭注", + "DE.Controllers.Toolbar.txtSymbol_bullet": "項目點操作者", + "DE.Controllers.Toolbar.txtSymbol_cap": "交叉點", + "DE.Controllers.Toolbar.txtSymbol_cbrt": "立方根", + "DE.Controllers.Toolbar.txtSymbol_cdots": "中線水平省略號", + "DE.Controllers.Toolbar.txtSymbol_celsius": "攝氏度", + "DE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "DE.Controllers.Toolbar.txtSymbol_cong": "大約等於", + "DE.Controllers.Toolbar.txtSymbol_cup": "聯合", + "DE.Controllers.Toolbar.txtSymbol_ddots": "右下斜省略號", + "DE.Controllers.Toolbar.txtSymbol_degree": "度", + "DE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "DE.Controllers.Toolbar.txtSymbol_div": "分裂標誌", + "DE.Controllers.Toolbar.txtSymbol_downarrow": "下箭頭", + "DE.Controllers.Toolbar.txtSymbol_emptyset": "空組集", + "DE.Controllers.Toolbar.txtSymbol_epsilon": "厄普西隆", + "DE.Controllers.Toolbar.txtSymbol_equals": "等於", + "DE.Controllers.Toolbar.txtSymbol_equiv": "相同", + "DE.Controllers.Toolbar.txtSymbol_eta": "和", + "DE.Controllers.Toolbar.txtSymbol_exists": "存在", + "DE.Controllers.Toolbar.txtSymbol_factorial": "階乘", + "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "華氏度", + "DE.Controllers.Toolbar.txtSymbol_forall": "對所有人", + "DE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "DE.Controllers.Toolbar.txtSymbol_geq": "大於或等於", + "DE.Controllers.Toolbar.txtSymbol_gg": "比大得多", + "DE.Controllers.Toolbar.txtSymbol_greater": "更佳", + "DE.Controllers.Toolbar.txtSymbol_in": "元素", + "DE.Controllers.Toolbar.txtSymbol_inc": "增量", + "DE.Controllers.Toolbar.txtSymbol_infinity": "無限", + "DE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "DE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "DE.Controllers.Toolbar.txtSymbol_lambda": "拉姆達", + "DE.Controllers.Toolbar.txtSymbol_leftarrow": "左箭頭", + "DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "左右箭頭", + "DE.Controllers.Toolbar.txtSymbol_leq": "小於或等於", + "DE.Controllers.Toolbar.txtSymbol_less": "少於", + "DE.Controllers.Toolbar.txtSymbol_ll": "遠遠少於", + "DE.Controllers.Toolbar.txtSymbol_minus": "減去", + "DE.Controllers.Toolbar.txtSymbol_mp": "減加", + "DE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "DE.Controllers.Toolbar.txtSymbol_neq": "不等於", + "DE.Controllers.Toolbar.txtSymbol_ni": "包含為成員", + "DE.Controllers.Toolbar.txtSymbol_not": "不簽名", + "DE.Controllers.Toolbar.txtSymbol_notexists": "不存在", + "DE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "DE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "DE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "DE.Controllers.Toolbar.txtSymbol_partial": "偏微分", + "DE.Controllers.Toolbar.txtSymbol_percent": "百分比", + "DE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "DE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "DE.Controllers.Toolbar.txtSymbol_plus": "加", + "DE.Controllers.Toolbar.txtSymbol_pm": "加減", + "DE.Controllers.Toolbar.txtSymbol_propto": "成比例", + "DE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "DE.Controllers.Toolbar.txtSymbol_qdrt": "第四根", + "DE.Controllers.Toolbar.txtSymbol_qed": "證明結束", + "DE.Controllers.Toolbar.txtSymbol_rddots": "右上斜省略號", + "DE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "DE.Controllers.Toolbar.txtSymbol_rightarrow": "右箭頭", + "DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "DE.Controllers.Toolbar.txtSymbol_sqrt": "激進標誌", + "DE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "DE.Controllers.Toolbar.txtSymbol_therefore": "因此", + "DE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "DE.Controllers.Toolbar.txtSymbol_times": "乘法符號", + "DE.Controllers.Toolbar.txtSymbol_uparrow": "向上箭頭", + "DE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", + "DE.Controllers.Toolbar.txtSymbol_varepsilon": "厄普西隆變體", + "DE.Controllers.Toolbar.txtSymbol_varphi": "Phi 變體", + "DE.Controllers.Toolbar.txtSymbol_varpi": "Pi變體", + "DE.Controllers.Toolbar.txtSymbol_varrho": "Rho變體", + "DE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma 變體", + "DE.Controllers.Toolbar.txtSymbol_vartheta": "Theta變體", + "DE.Controllers.Toolbar.txtSymbol_vdots": "垂直省略號", + "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "DE.Controllers.Viewport.textFitPage": "切合至頁面", + "DE.Controllers.Viewport.textFitWidth": "切合至寬度", + "DE.Controllers.Viewport.txtDarkMode": "夜間模式", + "DE.Views.AddNewCaptionLabelDialog.textLabel": "標籤:", + "DE.Views.AddNewCaptionLabelDialog.textLabelError": "標籤不能為空。", + "DE.Views.BookmarksDialog.textAdd": "新增", + "DE.Views.BookmarksDialog.textBookmarkName": "書籤名", + "DE.Views.BookmarksDialog.textClose": "關閉", + "DE.Views.BookmarksDialog.textCopy": "複製", + "DE.Views.BookmarksDialog.textDelete": "刪除", + "DE.Views.BookmarksDialog.textGetLink": "獲取連結", + "DE.Views.BookmarksDialog.textGoto": "去", + "DE.Views.BookmarksDialog.textHidden": "隱藏的書籤", + "DE.Views.BookmarksDialog.textLocation": "位置", + "DE.Views.BookmarksDialog.textName": "名稱", + "DE.Views.BookmarksDialog.textSort": "排序方式", + "DE.Views.BookmarksDialog.textTitle": "書籤", + "DE.Views.BookmarksDialog.txtInvalidName": "書籤名稱只能包含字母,數字和下劃線,並且應以字母開頭", + "DE.Views.CaptionDialog.textAdd": "新增標籤", + "DE.Views.CaptionDialog.textAfter": "之後", + "DE.Views.CaptionDialog.textBefore": "之前", + "DE.Views.CaptionDialog.textCaption": "標題", + "DE.Views.CaptionDialog.textChapter": "本章始於風格", + "DE.Views.CaptionDialog.textChapterInc": "包括章節編號", + "DE.Views.CaptionDialog.textColon": "冒號", + "DE.Views.CaptionDialog.textDash": "長划", + "DE.Views.CaptionDialog.textDelete": "刪除標籤", + "DE.Views.CaptionDialog.textEquation": "方程式", + "DE.Views.CaptionDialog.textExamples": "示例:表2-A,圖像1.IV", + "DE.Views.CaptionDialog.textExclude": "從標題中排除標籤", + "DE.Views.CaptionDialog.textFigure": "數字", + "DE.Views.CaptionDialog.textHyphen": "連字號", + "DE.Views.CaptionDialog.textInsert": "插入", + "DE.Views.CaptionDialog.textLabel": "標籤", + "DE.Views.CaptionDialog.textLongDash": "長破折號", + "DE.Views.CaptionDialog.textNumbering": "編號", + "DE.Views.CaptionDialog.textPeriod": "區間", + "DE.Views.CaptionDialog.textSeparator": "使用分隔符", + "DE.Views.CaptionDialog.textTable": "表格", + "DE.Views.CaptionDialog.textTitle": "插入標題", + "DE.Views.CellsAddDialog.textCol": "欄", + "DE.Views.CellsAddDialog.textDown": "游標下方", + "DE.Views.CellsAddDialog.textLeft": "靠左", + "DE.Views.CellsAddDialog.textRight": "靠右", + "DE.Views.CellsAddDialog.textRow": "行列", + "DE.Views.CellsAddDialog.textTitle": "插入多個", + "DE.Views.CellsAddDialog.textUp": "游標上方", + "DE.Views.CellsRemoveDialog.textCol": "刪除整列", + "DE.Views.CellsRemoveDialog.textLeft": "儲存格並向左移", + "DE.Views.CellsRemoveDialog.textRow": "刪除整行", + "DE.Views.CellsRemoveDialog.textTitle": "刪除儲存格", + "DE.Views.ChartSettings.textAdvanced": "顯示進階設定", + "DE.Views.ChartSettings.textChartType": "變更圖表類型", + "DE.Views.ChartSettings.textEditData": "編輯資料", + "DE.Views.ChartSettings.textHeight": "\n高度", + "DE.Views.ChartSettings.textOriginalSize": "實際大小", + "DE.Views.ChartSettings.textSize": "大小", + "DE.Views.ChartSettings.textStyle": "風格", + "DE.Views.ChartSettings.textUndock": "從面板上卸下", + "DE.Views.ChartSettings.textWidth": "寬度", + "DE.Views.ChartSettings.textWrap": "包覆風格", + "DE.Views.ChartSettings.txtBehind": "文字在後", + "DE.Views.ChartSettings.txtInFront": "文字在前", + "DE.Views.ChartSettings.txtInline": "與文字排列", + "DE.Views.ChartSettings.txtSquare": "正方形", + "DE.Views.ChartSettings.txtThrough": "通過", + "DE.Views.ChartSettings.txtTight": "緊", + "DE.Views.ChartSettings.txtTitle": "圖表", + "DE.Views.ChartSettings.txtTopAndBottom": "頂部和底部", + "DE.Views.CompareSettingsDialog.textChar": "文字水平", + "DE.Views.CompareSettingsDialog.textShow": "顯示更改", + "DE.Views.CompareSettingsDialog.textTitle": "比較設定", + "DE.Views.CompareSettingsDialog.textWord": "字級", + "DE.Views.ControlSettingsDialog.strGeneral": "一般", + "DE.Views.ControlSettingsDialog.textAdd": "新增", + "DE.Views.ControlSettingsDialog.textAppearance": "外貌", + "DE.Views.ControlSettingsDialog.textApplyAll": "全部應用", + "DE.Views.ControlSettingsDialog.textBox": "邊界框", + "DE.Views.ControlSettingsDialog.textChange": "編輯", + "DE.Views.ControlSettingsDialog.textCheckbox": "複選框", + "DE.Views.ControlSettingsDialog.textChecked": "選中的符號", + "DE.Views.ControlSettingsDialog.textColor": "顏色", + "DE.Views.ControlSettingsDialog.textCombobox": "組合框", + "DE.Views.ControlSettingsDialog.textDate": "日期格式", + "DE.Views.ControlSettingsDialog.textDelete": "刪除", + "DE.Views.ControlSettingsDialog.textDisplayName": "顯示名稱", + "DE.Views.ControlSettingsDialog.textDown": "下", + "DE.Views.ControlSettingsDialog.textDropDown": "下拉選單", + "DE.Views.ControlSettingsDialog.textFormat": "以此顯示日期", + "DE.Views.ControlSettingsDialog.textLang": "語言", + "DE.Views.ControlSettingsDialog.textLock": "鎖定", + "DE.Views.ControlSettingsDialog.textName": "標題", + "DE.Views.ControlSettingsDialog.textNone": "無", + "DE.Views.ControlSettingsDialog.textPlaceholder": "佔位符", + "DE.Views.ControlSettingsDialog.textShowAs": "顯示為", + "DE.Views.ControlSettingsDialog.textSystemColor": "系統", + "DE.Views.ControlSettingsDialog.textTag": "標籤", + "DE.Views.ControlSettingsDialog.textTitle": "內容控制設定", + "DE.Views.ControlSettingsDialog.textUnchecked": "未經檢查的符號", + "DE.Views.ControlSettingsDialog.textUp": "上", + "DE.Views.ControlSettingsDialog.textValue": "值", + "DE.Views.ControlSettingsDialog.tipChange": "變更符號", + "DE.Views.ControlSettingsDialog.txtLockDelete": "內容控制無法刪除", + "DE.Views.ControlSettingsDialog.txtLockEdit": "內容無法編輯", + "DE.Views.CrossReferenceDialog.textAboveBelow": "上/下", + "DE.Views.CrossReferenceDialog.textBookmark": "書籤", + "DE.Views.CrossReferenceDialog.textBookmarkText": "書籤文字", + "DE.Views.CrossReferenceDialog.textCaption": "整個標題", + "DE.Views.CrossReferenceDialog.textEmpty": "請求引用為空。", + "DE.Views.CrossReferenceDialog.textEndnote": "尾註", + "DE.Views.CrossReferenceDialog.textEndNoteNum": "尾註編號", + "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "尾註編號(格式化)", + "DE.Views.CrossReferenceDialog.textEquation": "方程式", + "DE.Views.CrossReferenceDialog.textFigure": "數字", + "DE.Views.CrossReferenceDialog.textFootnote": "註腳", + "DE.Views.CrossReferenceDialog.textHeading": "標題", + "DE.Views.CrossReferenceDialog.textHeadingNum": "標題編號", + "DE.Views.CrossReferenceDialog.textHeadingNumFull": "標題編號(全文)", + "DE.Views.CrossReferenceDialog.textHeadingNumNo": "標題編號(無內容)", + "DE.Views.CrossReferenceDialog.textHeadingText": "標題文字", + "DE.Views.CrossReferenceDialog.textIncludeAbove": "包括上方/下方", + "DE.Views.CrossReferenceDialog.textInsert": "插入", + "DE.Views.CrossReferenceDialog.textInsertAs": "用超連結插入", + "DE.Views.CrossReferenceDialog.textLabelNum": "僅標籤和編號", + "DE.Views.CrossReferenceDialog.textNoteNum": "腳註編號", + "DE.Views.CrossReferenceDialog.textNoteNumForm": "腳註編號(格式化)", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "僅字幕文字", + "DE.Views.CrossReferenceDialog.textPageNum": "頁碼", + "DE.Views.CrossReferenceDialog.textParagraph": "編號項目", + "DE.Views.CrossReferenceDialog.textParaNum": "段落編號", + "DE.Views.CrossReferenceDialog.textParaNumFull": "段落編號(全文)", + "DE.Views.CrossReferenceDialog.textParaNumNo": "段落編號(無上下文)", + "DE.Views.CrossReferenceDialog.textSeparate": "用分隔數字", + "DE.Views.CrossReferenceDialog.textTable": "表格", + "DE.Views.CrossReferenceDialog.textText": "段落文字", + "DE.Views.CrossReferenceDialog.textWhich": "對於哪個標題", + "DE.Views.CrossReferenceDialog.textWhichBookmark": "給哪個書籤", + "DE.Views.CrossReferenceDialog.textWhichEndnote": "對於哪個尾註", + "DE.Views.CrossReferenceDialog.textWhichHeading": "對於哪個標題", + "DE.Views.CrossReferenceDialog.textWhichNote": "對於哪個腳註", + "DE.Views.CrossReferenceDialog.textWhichPara": "對於哪個編號項目", + "DE.Views.CrossReferenceDialog.txtReference": "插入對", + "DE.Views.CrossReferenceDialog.txtTitle": "相互參照", + "DE.Views.CrossReferenceDialog.txtType": "參考類型", + "DE.Views.CustomColumnsDialog.textColumns": "列數", + "DE.Views.CustomColumnsDialog.textSeparator": "欄位分隔線", + "DE.Views.CustomColumnsDialog.textSpacing": "欄之前的距離", + "DE.Views.CustomColumnsDialog.textTitle": "欄", + "DE.Views.DateTimeDialog.confirmDefault": "設置{0}的預設格式:“ {1}”", + "DE.Views.DateTimeDialog.textDefault": "設為預設", + "DE.Views.DateTimeDialog.textFormat": "格式", + "DE.Views.DateTimeDialog.textLang": "語言", + "DE.Views.DateTimeDialog.textUpdate": "自動更新", + "DE.Views.DateTimeDialog.txtTitle": "日期和時間", + "DE.Views.DocumentHolder.aboveText": "以上", + "DE.Views.DocumentHolder.addCommentText": "新增註解", + "DE.Views.DocumentHolder.advancedDropCapText": "首字大寫設定", + "DE.Views.DocumentHolder.advancedFrameText": "框的進階設置", + "DE.Views.DocumentHolder.advancedParagraphText": "段落進階設置", + "DE.Views.DocumentHolder.advancedTableText": "表格進階設定", + "DE.Views.DocumentHolder.advancedText": "進階設定", + "DE.Views.DocumentHolder.alignmentText": "對齊", + "DE.Views.DocumentHolder.belowText": "之下", + "DE.Views.DocumentHolder.breakBeforeText": "分頁之前", + "DE.Views.DocumentHolder.bulletsText": "項目符和編號", + "DE.Views.DocumentHolder.cellAlignText": "儲存格垂直對齊", + "DE.Views.DocumentHolder.cellText": "儲存格", + "DE.Views.DocumentHolder.centerText": "中心", + "DE.Views.DocumentHolder.chartText": "圖表進階設置", + "DE.Views.DocumentHolder.columnText": "欄", + "DE.Views.DocumentHolder.deleteColumnText": "刪除欄位", + "DE.Views.DocumentHolder.deleteRowText": "刪除行列", + "DE.Views.DocumentHolder.deleteTableText": "刪除表格", + "DE.Views.DocumentHolder.deleteText": "刪除", + "DE.Views.DocumentHolder.direct270Text": "向上旋轉文字", + "DE.Views.DocumentHolder.direct90Text": "向下旋轉文字", + "DE.Views.DocumentHolder.directHText": "水平", + "DE.Views.DocumentHolder.directionText": "文字方向", + "DE.Views.DocumentHolder.editChartText": "編輯資料", + "DE.Views.DocumentHolder.editFooterText": "編輯頁腳", + "DE.Views.DocumentHolder.editHeaderText": "編輯標題", + "DE.Views.DocumentHolder.editHyperlinkText": "編輯超連結", + "DE.Views.DocumentHolder.guestText": "來賓帳戶", + "DE.Views.DocumentHolder.hyperlinkText": "超連結", + "DE.Views.DocumentHolder.ignoreAllSpellText": "忽略所有", + "DE.Views.DocumentHolder.ignoreSpellText": "忽視", + "DE.Views.DocumentHolder.imageText": "圖像進階設置", + "DE.Views.DocumentHolder.insertColumnLeftText": "欄位以左", + "DE.Views.DocumentHolder.insertColumnRightText": "欄位以右", + "DE.Views.DocumentHolder.insertColumnText": "插入欄位", + "DE.Views.DocumentHolder.insertRowAboveText": "上行", + "DE.Views.DocumentHolder.insertRowBelowText": "下行", + "DE.Views.DocumentHolder.insertRowText": "插入行", + "DE.Views.DocumentHolder.insertText": "插入", + "DE.Views.DocumentHolder.keepLinesText": "保持線條一致", + "DE.Views.DocumentHolder.langText": "選擇語言", + "DE.Views.DocumentHolder.leftText": "左", + "DE.Views.DocumentHolder.loadSpellText": "正在加載變體...", + "DE.Views.DocumentHolder.mergeCellsText": "合併儲存格", + "DE.Views.DocumentHolder.moreText": "更多變體...", + "DE.Views.DocumentHolder.noSpellVariantsText": "沒有變體", + "DE.Views.DocumentHolder.notcriticalErrorTitle": "警告", + "DE.Views.DocumentHolder.originalSizeText": "實際大小", + "DE.Views.DocumentHolder.paragraphText": "段落", + "DE.Views.DocumentHolder.removeHyperlinkText": "刪除超連結", + "DE.Views.DocumentHolder.rightText": "右", + "DE.Views.DocumentHolder.rowText": "行", + "DE.Views.DocumentHolder.saveStyleText": "新增風格", + "DE.Views.DocumentHolder.selectCellText": "選擇儲存格", + "DE.Views.DocumentHolder.selectColumnText": "選擇欄", + "DE.Views.DocumentHolder.selectRowText": "選擇列", + "DE.Views.DocumentHolder.selectTableText": "選擇表格", + "DE.Views.DocumentHolder.selectText": "選擇", + "DE.Views.DocumentHolder.shapeText": "形狀進階設定", + "DE.Views.DocumentHolder.spellcheckText": "拼字檢查", + "DE.Views.DocumentHolder.splitCellsText": "分割儲存格...", + "DE.Views.DocumentHolder.splitCellTitleText": "分割儲存格", + "DE.Views.DocumentHolder.strDelete": "刪除簽名", + "DE.Views.DocumentHolder.strDetails": "簽名細節", + "DE.Views.DocumentHolder.strSetup": "簽名設置", + "DE.Views.DocumentHolder.strSign": "簽名", + "DE.Views.DocumentHolder.styleText": "轉換為風格", + "DE.Views.DocumentHolder.tableText": "表格", + "DE.Views.DocumentHolder.textAccept": "同意更新", + "DE.Views.DocumentHolder.textAlign": "對齊", + "DE.Views.DocumentHolder.textArrange": "安排", + "DE.Views.DocumentHolder.textArrangeBack": "傳送到背景", + "DE.Views.DocumentHolder.textArrangeBackward": "向後發送", + "DE.Views.DocumentHolder.textArrangeForward": "向前進", + "DE.Views.DocumentHolder.textArrangeFront": "移到前景", + "DE.Views.DocumentHolder.textCells": "儲存格", + "DE.Views.DocumentHolder.textCol": "刪除整列", + "DE.Views.DocumentHolder.textContentControls": "內容控制", + "DE.Views.DocumentHolder.textContinueNumbering": "繼續編號", + "DE.Views.DocumentHolder.textCopy": "複製", + "DE.Views.DocumentHolder.textCrop": "剪裁", + "DE.Views.DocumentHolder.textCropFill": "填入", + "DE.Views.DocumentHolder.textCropFit": "切合", + "DE.Views.DocumentHolder.textCut": "剪下", + "DE.Views.DocumentHolder.textDistributeCols": "分配列", + "DE.Views.DocumentHolder.textDistributeRows": "分配行", + "DE.Views.DocumentHolder.textEditControls": "內容控制設置", + "DE.Views.DocumentHolder.textEditPoints": "編輯點", + "DE.Views.DocumentHolder.textEditWrapBoundary": "編輯包裝邊界", + "DE.Views.DocumentHolder.textFlipH": "水平翻轉", + "DE.Views.DocumentHolder.textFlipV": "垂直翻轉", + "DE.Views.DocumentHolder.textFollow": "跟隨移動", + "DE.Views.DocumentHolder.textFromFile": "從檔案", + "DE.Views.DocumentHolder.textFromStorage": "從存儲", + "DE.Views.DocumentHolder.textFromUrl": "從 URL", + "DE.Views.DocumentHolder.textJoinList": "加入上一個列表", + "DE.Views.DocumentHolder.textLeft": "儲存格並向左移", + "DE.Views.DocumentHolder.textNest": "套疊表格", + "DE.Views.DocumentHolder.textNextPage": "下一頁", + "DE.Views.DocumentHolder.textNumberingValue": "編號值", + "DE.Views.DocumentHolder.textPaste": "貼上", + "DE.Views.DocumentHolder.textPrevPage": "前一頁", + "DE.Views.DocumentHolder.textRefreshField": "更新段落", + "DE.Views.DocumentHolder.textReject": "駁回更新", + "DE.Views.DocumentHolder.textRemCheckBox": "刪除複選框", + "DE.Views.DocumentHolder.textRemComboBox": "刪除組合框", + "DE.Views.DocumentHolder.textRemDropdown": "刪除下拉菜單", + "DE.Views.DocumentHolder.textRemField": "刪除文字欄位", + "DE.Views.DocumentHolder.textRemove": "移除", + "DE.Views.DocumentHolder.textRemoveControl": "刪除內容控制", + "DE.Views.DocumentHolder.textRemPicture": "移除圖片", + "DE.Views.DocumentHolder.textRemRadioBox": "刪除單選按鈕", + "DE.Views.DocumentHolder.textReplace": "取代圖片", + "DE.Views.DocumentHolder.textRotate": "旋轉", + "DE.Views.DocumentHolder.textRotate270": "逆時針旋轉90°", + "DE.Views.DocumentHolder.textRotate90": "順時針旋轉90°", + "DE.Views.DocumentHolder.textRow": "刪除整行", + "DE.Views.DocumentHolder.textSeparateList": "單獨的清單", + "DE.Views.DocumentHolder.textSettings": "設定", + "DE.Views.DocumentHolder.textSeveral": "多行/多列", + "DE.Views.DocumentHolder.textShapeAlignBottom": "底部對齊", + "DE.Views.DocumentHolder.textShapeAlignCenter": "居中對齊", + "DE.Views.DocumentHolder.textShapeAlignLeft": "對齊左側", + "DE.Views.DocumentHolder.textShapeAlignMiddle": "中央對齊", + "DE.Views.DocumentHolder.textShapeAlignRight": "對齊右側", + "DE.Views.DocumentHolder.textShapeAlignTop": "上方對齊", + "DE.Views.DocumentHolder.textStartNewList": "開始新清單", + "DE.Views.DocumentHolder.textStartNumberingFrom": "設定編號值", + "DE.Views.DocumentHolder.textTitleCellsRemove": "刪除儲存格", + "DE.Views.DocumentHolder.textTOC": "目錄", + "DE.Views.DocumentHolder.textTOCSettings": "目錄設置", + "DE.Views.DocumentHolder.textUndo": "復原", + "DE.Views.DocumentHolder.textUpdateAll": "更新整個表格", + "DE.Views.DocumentHolder.textUpdatePages": "只更新頁碼", + "DE.Views.DocumentHolder.textUpdateTOC": "更新目錄", + "DE.Views.DocumentHolder.textWrap": "包覆風格", + "DE.Views.DocumentHolder.tipIsLocked": "該元素當前正在由另一個帳戶編輯。", + "DE.Views.DocumentHolder.toDictionaryText": "新增到字典", + "DE.Views.DocumentHolder.txtAddBottom": "新增底部邊框", + "DE.Views.DocumentHolder.txtAddFractionBar": "新增分數欄", + "DE.Views.DocumentHolder.txtAddHor": "新增水平線", + "DE.Views.DocumentHolder.txtAddLB": "新增左邊框", + "DE.Views.DocumentHolder.txtAddLeft": "新增左邊框", + "DE.Views.DocumentHolder.txtAddLT": "新增左頂行", + "DE.Views.DocumentHolder.txtAddRight": "加入右邊框", + "DE.Views.DocumentHolder.txtAddTop": "加入上邊框", + "DE.Views.DocumentHolder.txtAddVer": "加入垂直線", + "DE.Views.DocumentHolder.txtAlignToChar": "與角色對齊", + "DE.Views.DocumentHolder.txtBehind": "文字在後", + "DE.Views.DocumentHolder.txtBorderProps": "邊框屬性", + "DE.Views.DocumentHolder.txtBottom": "底部", + "DE.Views.DocumentHolder.txtColumnAlign": "欄位對準", + "DE.Views.DocumentHolder.txtDecreaseArg": "減小參數大小", + "DE.Views.DocumentHolder.txtDeleteArg": "刪除參數", + "DE.Views.DocumentHolder.txtDeleteBreak": "刪除手動的斷行", + "DE.Views.DocumentHolder.txtDeleteChars": "刪除封閉字符", + "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "刪除括起來的字符和分隔符", + "DE.Views.DocumentHolder.txtDeleteEq": "刪除方程式", + "DE.Views.DocumentHolder.txtDeleteGroupChar": "刪除字元", + "DE.Views.DocumentHolder.txtDeleteRadical": "刪除部首", + "DE.Views.DocumentHolder.txtDistribHor": "水平分佈", + "DE.Views.DocumentHolder.txtDistribVert": "垂直分佈", + "DE.Views.DocumentHolder.txtEmpty": "(空)", + "DE.Views.DocumentHolder.txtFractionLinear": "變更為線性分數", + "DE.Views.DocumentHolder.txtFractionSkewed": "變更為傾斜分數", + "DE.Views.DocumentHolder.txtFractionStacked": "變更為堆積分數", + "DE.Views.DocumentHolder.txtGroup": "群組", + "DE.Views.DocumentHolder.txtGroupCharOver": "文字上的Char", + "DE.Views.DocumentHolder.txtGroupCharUnder": "文字下的Char", + "DE.Views.DocumentHolder.txtHideBottom": "隱藏底部邊框", + "DE.Views.DocumentHolder.txtHideBottomLimit": "隱藏下限", + "DE.Views.DocumentHolder.txtHideCloseBracket": "隱藏右括號", + "DE.Views.DocumentHolder.txtHideDegree": "隱藏度", + "DE.Views.DocumentHolder.txtHideHor": "隱藏水平線", + "DE.Views.DocumentHolder.txtHideLB": "隱藏左底線", + "DE.Views.DocumentHolder.txtHideLeft": "隱藏左邊框", + "DE.Views.DocumentHolder.txtHideLT": "隱藏左頂行", + "DE.Views.DocumentHolder.txtHideOpenBracket": "隱藏開口支架", + "DE.Views.DocumentHolder.txtHidePlaceholder": "隱藏佔位符", + "DE.Views.DocumentHolder.txtHideRight": "隱藏右邊框", + "DE.Views.DocumentHolder.txtHideTop": "隱藏頂部邊框", + "DE.Views.DocumentHolder.txtHideTopLimit": "隱藏最高限額", + "DE.Views.DocumentHolder.txtHideVer": "隱藏垂直線", + "DE.Views.DocumentHolder.txtIncreaseArg": "增加參數大小", + "DE.Views.DocumentHolder.txtInFront": "文字在前", + "DE.Views.DocumentHolder.txtInline": "與文字排列", + "DE.Views.DocumentHolder.txtInsertArgAfter": "在後面插入參數", + "DE.Views.DocumentHolder.txtInsertArgBefore": "在前面插入參數", + "DE.Views.DocumentHolder.txtInsertBreak": "插入手動中斷", + "DE.Views.DocumentHolder.txtInsertCaption": "插入標題", + "DE.Views.DocumentHolder.txtInsertEqAfter": "在後面插入方程式", + "DE.Views.DocumentHolder.txtInsertEqBefore": "在前面插入方程式", + "DE.Views.DocumentHolder.txtKeepTextOnly": "僅保留文字", + "DE.Views.DocumentHolder.txtLimitChange": "變更限制位置", + "DE.Views.DocumentHolder.txtLimitOver": "文字限制", + "DE.Views.DocumentHolder.txtLimitUnder": "文字下的限制", + "DE.Views.DocumentHolder.txtMatchBrackets": "將括號匹配到參數高度", + "DE.Views.DocumentHolder.txtMatrixAlign": "矩陣對齊", + "DE.Views.DocumentHolder.txtOverbar": "槓覆蓋文字", + "DE.Views.DocumentHolder.txtOverwriteCells": "覆蓋儲存格", + "DE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式", + "DE.Views.DocumentHolder.txtPressLink": "按Ctrl並單擊連結", + "DE.Views.DocumentHolder.txtPrintSelection": "列印選擇", + "DE.Views.DocumentHolder.txtRemFractionBar": "刪除分數欄", + "DE.Views.DocumentHolder.txtRemLimit": "取消限制", + "DE.Views.DocumentHolder.txtRemoveAccentChar": "刪除強調字符", + "DE.Views.DocumentHolder.txtRemoveBar": "移除欄", + "DE.Views.DocumentHolder.txtRemoveWarning": "確定移除此簽名?
這動作無法復原.", + "DE.Views.DocumentHolder.txtRemScripts": "刪除腳本", + "DE.Views.DocumentHolder.txtRemSubscript": "刪除下標", + "DE.Views.DocumentHolder.txtRemSuperscript": "刪除上標", + "DE.Views.DocumentHolder.txtScriptsAfter": "文字後的文字", + "DE.Views.DocumentHolder.txtScriptsBefore": "文字前的腳本", + "DE.Views.DocumentHolder.txtShowBottomLimit": "顯示底限", + "DE.Views.DocumentHolder.txtShowCloseBracket": "顯示結束括號", + "DE.Views.DocumentHolder.txtShowDegree": "顯示程度", + "DE.Views.DocumentHolder.txtShowOpenBracket": "顯示開口支架", + "DE.Views.DocumentHolder.txtShowPlaceholder": "顯示佔位符", + "DE.Views.DocumentHolder.txtShowTopLimit": "顯示最高限額", + "DE.Views.DocumentHolder.txtSquare": "正方形", + "DE.Views.DocumentHolder.txtStretchBrackets": "延伸括號", + "DE.Views.DocumentHolder.txtThrough": "通過", + "DE.Views.DocumentHolder.txtTight": "緊", + "DE.Views.DocumentHolder.txtTop": "上方", + "DE.Views.DocumentHolder.txtTopAndBottom": "頂部和底部", + "DE.Views.DocumentHolder.txtUnderbar": "槓至文字底下", + "DE.Views.DocumentHolder.txtUngroup": "解開組合", + "DE.Views.DocumentHolder.txtWarnUrl": "這連結可能對您的設備和資料造成損害。
您確定要繼續嗎?", + "DE.Views.DocumentHolder.updateStyleText": "更新%1風格", + "DE.Views.DocumentHolder.vertAlignText": "垂直對齊", + "DE.Views.DropcapSettingsAdvanced.strBorders": "邊框和添入", + "DE.Views.DropcapSettingsAdvanced.strDropcap": "首字大寫", + "DE.Views.DropcapSettingsAdvanced.strMargins": "邊框", + "DE.Views.DropcapSettingsAdvanced.textAlign": "對齊", + "DE.Views.DropcapSettingsAdvanced.textAtLeast": "至少", + "DE.Views.DropcapSettingsAdvanced.textAuto": "自動", + "DE.Views.DropcapSettingsAdvanced.textBackColor": "背景顏色", + "DE.Views.DropcapSettingsAdvanced.textBorderColor": "邊框顏色", + "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "點擊圖表或使用按鈕選擇邊框", + "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "邊框大小", + "DE.Views.DropcapSettingsAdvanced.textBottom": "底部", + "DE.Views.DropcapSettingsAdvanced.textCenter": "中心", + "DE.Views.DropcapSettingsAdvanced.textColumn": "欄", + "DE.Views.DropcapSettingsAdvanced.textDistance": "與文字的距離", + "DE.Views.DropcapSettingsAdvanced.textExact": "準確", + "DE.Views.DropcapSettingsAdvanced.textFlow": "流框", + "DE.Views.DropcapSettingsAdvanced.textFont": "字體", + "DE.Views.DropcapSettingsAdvanced.textFrame": "框", + "DE.Views.DropcapSettingsAdvanced.textHeight": "高度", + "DE.Views.DropcapSettingsAdvanced.textHorizontal": "水平", + "DE.Views.DropcapSettingsAdvanced.textInline": "內聯框架", + "DE.Views.DropcapSettingsAdvanced.textInMargin": "在邊框內", + "DE.Views.DropcapSettingsAdvanced.textInText": "字段內", + "DE.Views.DropcapSettingsAdvanced.textLeft": "左", + "DE.Views.DropcapSettingsAdvanced.textMargin": "邊框", + "DE.Views.DropcapSettingsAdvanced.textMove": "與文字移動", + "DE.Views.DropcapSettingsAdvanced.textNone": "無", + "DE.Views.DropcapSettingsAdvanced.textPage": "頁面", + "DE.Views.DropcapSettingsAdvanced.textParagraph": "段落", + "DE.Views.DropcapSettingsAdvanced.textParameters": "參量", + "DE.Views.DropcapSettingsAdvanced.textPosition": "位置", + "DE.Views.DropcapSettingsAdvanced.textRelative": "關係到", + "DE.Views.DropcapSettingsAdvanced.textRight": "右", + "DE.Views.DropcapSettingsAdvanced.textRowHeight": "行高", + "DE.Views.DropcapSettingsAdvanced.textTitle": "首字大寫-進階設定", + "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "框-進階設置", + "DE.Views.DropcapSettingsAdvanced.textTop": "上方", + "DE.Views.DropcapSettingsAdvanced.textVertical": "垂直", + "DE.Views.DropcapSettingsAdvanced.textWidth": "寬度", + "DE.Views.DropcapSettingsAdvanced.tipFontName": "字體", + "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "無邊框", + "DE.Views.EditListItemDialog.textDisplayName": "顯示名稱", + "DE.Views.EditListItemDialog.textNameError": "顯示名稱不能為空。", + "DE.Views.EditListItemDialog.textValue": "值", + "DE.Views.EditListItemDialog.textValueError": "具有相同值的項目已存在。", + "DE.Views.FileMenu.btnBackCaption": "打開文件所在位置", + "DE.Views.FileMenu.btnCloseMenuCaption": "關閉選單", + "DE.Views.FileMenu.btnCreateNewCaption": "新增", + "DE.Views.FileMenu.btnDownloadCaption": "下載為...", + "DE.Views.FileMenu.btnExitCaption": "關閉", + "DE.Views.FileMenu.btnFileOpenCaption": "開啟...", + "DE.Views.FileMenu.btnHelpCaption": "幫助...", + "DE.Views.FileMenu.btnHistoryCaption": "版本歷史", + "DE.Views.FileMenu.btnInfoCaption": "文件資訊...", + "DE.Views.FileMenu.btnPrintCaption": "列印", + "DE.Views.FileMenu.btnProtectCaption": "保護", + "DE.Views.FileMenu.btnRecentFilesCaption": "打開最近...", + "DE.Views.FileMenu.btnRenameCaption": "改名...", + "DE.Views.FileMenu.btnReturnCaption": "返回到文件", + "DE.Views.FileMenu.btnRightsCaption": "存取權限...", + "DE.Views.FileMenu.btnSaveAsCaption": "另存為", + "DE.Views.FileMenu.btnSaveCaption": "存檔", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "另存新檔為...", + "DE.Views.FileMenu.btnSettingsCaption": "進階設定...", + "DE.Views.FileMenu.btnToEditCaption": "編輯文件", + "DE.Views.FileMenu.textDownload": "下載", + "DE.Views.FileMenuPanels.CreateNew.txtBlank": "空白文檔", + "DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "新增", + "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "套用", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "新增作者", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "新增文字", + "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "應用程式", + "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者", + "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "變更存取權限", + "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "註解", + "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "已建立", + "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "載入中...", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "最後修改者", + "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "上一次更改", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "沒有", + "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "擁有者", + "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "頁", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "頁面大小", + "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "段落", + "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置", + "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "有權利的人", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "帶空格的符號", + "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "統計", + "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主旨", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "符號", + "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "標題", + "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "\n已上傳", + "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "文字", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "是", + "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "變更存取權限", + "DE.Views.FileMenuPanels.DocumentRights.txtRights": "有權利的人", + "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", + "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "帶密碼", + "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "受保護的文件", + "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "帶簽名", + "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "編輯文件", + "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "編輯將刪除文檔中的簽名。
確定要繼續嗎?", + "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "本文件已受密碼保護", + "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "該文件需要簽名。", + "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有效簽名已增加到文件檔中。該文件檔受到保護,無法編輯。", + "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "文檔中的某些數字簽名無效或無法驗證。該文檔受到保護,無法編輯。", + "DE.Views.FileMenuPanels.ProtectDoc.txtView": "查看簽名", + "DE.Views.FileMenuPanels.Settings.okButtonText": "套用", + "DE.Views.FileMenuPanels.Settings.strAlignGuides": "打開對齊嚮導", + "DE.Views.FileMenuPanels.Settings.strAutoRecover": "開啟自動恢復", + "DE.Views.FileMenuPanels.Settings.strAutosave": "打開自動存檔", + "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編輯模式", + "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "其他帳戶將立即看到您的更改", + "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "您需要先接受更改,然後才能看到它們", + "DE.Views.FileMenuPanels.Settings.strFast": "快", + "DE.Views.FileMenuPanels.Settings.strFontRender": "字體提示", + "DE.Views.FileMenuPanels.Settings.strForcesave": "儲存時同時上傳到伺服器(否則在文檔關閉時才上傳)", + "DE.Views.FileMenuPanels.Settings.strInputMode": "打開象形文字", + "DE.Views.FileMenuPanels.Settings.strLiveComment": "開啟註解顯示", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "巨集設定", + "DE.Views.FileMenuPanels.Settings.strPaste": "剪貼,複製和貼上", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕", + "DE.Views.FileMenuPanels.Settings.strResolvedComment": "打開顯示已解決的註解", + "DE.Views.FileMenuPanels.Settings.strReviewHover": "顯示跟踪變化", + "DE.Views.FileMenuPanels.Settings.strShowChanges": "即時共同編輯設定更新", + "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "啟用拼寫檢查選項", + "DE.Views.FileMenuPanels.Settings.strStrict": "嚴格", + "DE.Views.FileMenuPanels.Settings.strTheme": "介面主題", + "DE.Views.FileMenuPanels.Settings.strUnit": "測量單位", + "DE.Views.FileMenuPanels.Settings.strZoom": "預設縮放", + "DE.Views.FileMenuPanels.Settings.text10Minutes": "每10分鐘", + "DE.Views.FileMenuPanels.Settings.text30Minutes": "每30分鐘", + "DE.Views.FileMenuPanels.Settings.text5Minutes": "每5分鐘", + "DE.Views.FileMenuPanels.Settings.text60Minutes": "每一小時", + "DE.Views.FileMenuPanels.Settings.textAlignGuides": "對齊指南", + "DE.Views.FileMenuPanels.Settings.textAutoRecover": "自動恢復", + "DE.Views.FileMenuPanels.Settings.textAutoSave": "自動存檔", + "DE.Views.FileMenuPanels.Settings.textCompatible": "相容性", + "DE.Views.FileMenuPanels.Settings.textDisabled": "已停用", + "DE.Views.FileMenuPanels.Settings.textForceSave": "儲存所有歷史版本到伺服器", + "DE.Views.FileMenuPanels.Settings.textMinute": "每一分鐘", + "DE.Views.FileMenuPanels.Settings.textOldVersions": "儲存為DOCX時,使文件與舊版MS Word兼容", + "DE.Views.FileMenuPanels.Settings.txtAll": "查看全部", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自動更正選項...", + "DE.Views.FileMenuPanels.Settings.txtCacheMode": "預設緩存模式", + "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "點擊氣球而展示", + "DE.Views.FileMenuPanels.Settings.txtChangesTip": "懸停在工具提示而展示", + "DE.Views.FileMenuPanels.Settings.txtCm": "公分", + "DE.Views.FileMenuPanels.Settings.txtDarkMode": "開啟文件夜間模式", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "切合至頁面", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "切合至寬度", + "DE.Views.FileMenuPanels.Settings.txtInch": "吋", + "DE.Views.FileMenuPanels.Settings.txtInput": "備用輸入", + "DE.Views.FileMenuPanels.Settings.txtLast": "查看最後", + "DE.Views.FileMenuPanels.Settings.txtLiveComment": "註解顯示", + "DE.Views.FileMenuPanels.Settings.txtMac": "作為OS X", + "DE.Views.FileMenuPanels.Settings.txtNative": "本機", + "DE.Views.FileMenuPanels.Settings.txtNone": "查看無", + "DE.Views.FileMenuPanels.Settings.txtProofing": "打樣", + "DE.Views.FileMenuPanels.Settings.txtPt": "點", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "全部啟用", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "不用提示啟用全部巨集", + "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼字檢查", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "全部停用", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "不用提示停用全部巨集", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "顯示通知", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "以提示停用全部巨集", + "DE.Views.FileMenuPanels.Settings.txtWin": "作為Windows", + "DE.Views.FormSettings.textAlways": "永遠", + "DE.Views.FormSettings.textAspect": "鎖定寬高比", + "DE.Views.FormSettings.textAutofit": "自動調整", + "DE.Views.FormSettings.textBackgroundColor": "背景顏色", + "DE.Views.FormSettings.textCheckbox": "複選框", + "DE.Views.FormSettings.textColor": "邊框顏色", + "DE.Views.FormSettings.textComb": "文字組合", + "DE.Views.FormSettings.textCombobox": "組合框", + "DE.Views.FormSettings.textConnected": "段落已連結", + "DE.Views.FormSettings.textDelete": "刪除", + "DE.Views.FormSettings.textDisconnect": "斷線", + "DE.Views.FormSettings.textDropDown": "下拉式", + "DE.Views.FormSettings.textField": "文字段落", + "DE.Views.FormSettings.textFixed": "固定欄位大小", + "DE.Views.FormSettings.textFromFile": "從檔案", + "DE.Views.FormSettings.textFromStorage": "從存儲", + "DE.Views.FormSettings.textFromUrl": "從 URL", + "DE.Views.FormSettings.textGroupKey": "組密鑰", + "DE.Views.FormSettings.textImage": "圖像", + "DE.Views.FormSettings.textKey": "鍵", + "DE.Views.FormSettings.textLock": "鎖", + "DE.Views.FormSettings.textMaxChars": "文字數限制", + "DE.Views.FormSettings.textMulti": "多行文字欄位", + "DE.Views.FormSettings.textNever": "永不", + "DE.Views.FormSettings.textNoBorder": "無邊界", + "DE.Views.FormSettings.textPlaceholder": "佔位符", + "DE.Views.FormSettings.textRadiobox": "收音機按鈕", + "DE.Views.FormSettings.textRequired": "必要", + "DE.Views.FormSettings.textScale": "何時縮放", + "DE.Views.FormSettings.textSelectImage": "選擇圖片", + "DE.Views.FormSettings.textTip": "頂點", + "DE.Views.FormSettings.textTipAdd": "增加新值", + "DE.Views.FormSettings.textTipDelete": "刪除值", + "DE.Views.FormSettings.textTipDown": "下移", + "DE.Views.FormSettings.textTipUp": "上移", + "DE.Views.FormSettings.textTooBig": "圖像過大", + "DE.Views.FormSettings.textTooSmall": "圖像過小", + "DE.Views.FormSettings.textUnlock": "開鎖", + "DE.Views.FormSettings.textValue": "值選項", + "DE.Views.FormSettings.textWidth": "儲存格寬度", + "DE.Views.FormsTab.capBtnCheckBox": "複選框", + "DE.Views.FormsTab.capBtnComboBox": "組合框", + "DE.Views.FormsTab.capBtnDropDown": "下拉式", + "DE.Views.FormsTab.capBtnImage": "圖像", + "DE.Views.FormsTab.capBtnNext": "下一欄位", + "DE.Views.FormsTab.capBtnPrev": "上一欄位", + "DE.Views.FormsTab.capBtnRadioBox": "收音機按鈕", + "DE.Views.FormsTab.capBtnSaveForm": "另存oform檔", + "DE.Views.FormsTab.capBtnSubmit": "傳送", + "DE.Views.FormsTab.capBtnText": "文字段落", + "DE.Views.FormsTab.capBtnView": "查看表格", + "DE.Views.FormsTab.textClear": "清除欄位", + "DE.Views.FormsTab.textClearFields": "清除所有段落", + "DE.Views.FormsTab.textCreateForm": "新增文字段落並建立一個可填寫的 OFORM 文件", + "DE.Views.FormsTab.textGotIt": "我瞭解了", + "DE.Views.FormsTab.textHighlight": "強調顯示設置", + "DE.Views.FormsTab.textNoHighlight": "沒有突出顯示", + "DE.Views.FormsTab.textRequired": "填寫所有必填欄位以發送表單。", + "DE.Views.FormsTab.textSubmited": "表格傳送成功", + "DE.Views.FormsTab.tipCheckBox": "插入複選框", + "DE.Views.FormsTab.tipComboBox": "插入組合框", + "DE.Views.FormsTab.tipDropDown": "插入下拉列表", + "DE.Views.FormsTab.tipImageField": "插入圖片", + "DE.Views.FormsTab.tipNextForm": "移至下一欄位", + "DE.Views.FormsTab.tipPrevForm": "移至上一欄位", + "DE.Views.FormsTab.tipRadioBox": "插入收音機按鈕", + "DE.Views.FormsTab.tipSaveForm": "儲存一份可以填寫的 OFORM 檔案", + "DE.Views.FormsTab.tipSubmit": "傳送表格", + "DE.Views.FormsTab.tipTextField": "插入文字欄位", + "DE.Views.FormsTab.tipViewForm": "查看表格", + "DE.Views.FormsTab.txtUntitled": "無標題", + "DE.Views.HeaderFooterSettings.textBottomCenter": "底部中間", + "DE.Views.HeaderFooterSettings.textBottomLeft": "左下方", + "DE.Views.HeaderFooterSettings.textBottomPage": "頁底", + "DE.Views.HeaderFooterSettings.textBottomRight": "右下方", + "DE.Views.HeaderFooterSettings.textDiffFirst": "首頁不同", + "DE.Views.HeaderFooterSettings.textDiffOdd": "單/雙數頁不同", + "DE.Views.HeaderFooterSettings.textFrom": "開始", + "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "底部的頁腳", + "DE.Views.HeaderFooterSettings.textHeaderFromTop": "標頭從上方", + "DE.Views.HeaderFooterSettings.textInsertCurrent": "插入到當前位置", + "DE.Views.HeaderFooterSettings.textOptions": "選項", + "DE.Views.HeaderFooterSettings.textPageNum": "插入頁碼", + "DE.Views.HeaderFooterSettings.textPageNumbering": "頁編碼", + "DE.Views.HeaderFooterSettings.textPosition": "位置", + "DE.Views.HeaderFooterSettings.textPrev": "從上個部份繼續", + "DE.Views.HeaderFooterSettings.textSameAs": "連接到上一個", + "DE.Views.HeaderFooterSettings.textTopCenter": "頂部中心", + "DE.Views.HeaderFooterSettings.textTopLeft": "左上方", + "DE.Views.HeaderFooterSettings.textTopPage": "頁面頂部", + "DE.Views.HeaderFooterSettings.textTopRight": "右上", + "DE.Views.HyperlinkSettingsDialog.textDefault": "所選文字片段", + "DE.Views.HyperlinkSettingsDialog.textDisplay": "顯示", + "DE.Views.HyperlinkSettingsDialog.textExternal": "外部連結", + "DE.Views.HyperlinkSettingsDialog.textInternal": "放置在文件中", + "DE.Views.HyperlinkSettingsDialog.textTitle": "超連結設置", + "DE.Views.HyperlinkSettingsDialog.textTooltip": "屏幕提示文字", + "DE.Views.HyperlinkSettingsDialog.textUrl": "連結至", + "DE.Views.HyperlinkSettingsDialog.txtBeginning": "文件的開頭", + "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "書籤", + "DE.Views.HyperlinkSettingsDialog.txtEmpty": "這是必填欄", + "DE.Views.HyperlinkSettingsDialog.txtHeadings": "標題", + "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "此段落應為“ http://www.example.com”格式的網址", + "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "此欄位限2083字符", + "DE.Views.ImageSettings.textAdvanced": "顯示進階設定", + "DE.Views.ImageSettings.textCrop": "剪裁", + "DE.Views.ImageSettings.textCropFill": "填入", + "DE.Views.ImageSettings.textCropFit": "切合", + "DE.Views.ImageSettings.textCropToShape": "剪裁成圖形", + "DE.Views.ImageSettings.textEdit": "編輯", + "DE.Views.ImageSettings.textEditObject": "編輯物件", + "DE.Views.ImageSettings.textFitMargins": "切合至邊框", + "DE.Views.ImageSettings.textFlip": "翻轉", + "DE.Views.ImageSettings.textFromFile": "從檔案", + "DE.Views.ImageSettings.textFromStorage": "從存儲", + "DE.Views.ImageSettings.textFromUrl": "從 URL", + "DE.Views.ImageSettings.textHeight": "高度", + "DE.Views.ImageSettings.textHint270": "逆時針旋轉90°", + "DE.Views.ImageSettings.textHint90": "順時針旋轉90°", + "DE.Views.ImageSettings.textHintFlipH": "水平翻轉", + "DE.Views.ImageSettings.textHintFlipV": "垂直翻轉", + "DE.Views.ImageSettings.textInsert": "取代圖片", + "DE.Views.ImageSettings.textOriginalSize": "實際大小", + "DE.Views.ImageSettings.textRecentlyUsed": "最近使用", + "DE.Views.ImageSettings.textRotate90": "旋轉90°", + "DE.Views.ImageSettings.textRotation": "旋轉", + "DE.Views.ImageSettings.textSize": "大小", + "DE.Views.ImageSettings.textWidth": "寬度", + "DE.Views.ImageSettings.textWrap": "包覆風格", + "DE.Views.ImageSettings.txtBehind": "文字在後", + "DE.Views.ImageSettings.txtInFront": "文字在前", + "DE.Views.ImageSettings.txtInline": "與文字排列", + "DE.Views.ImageSettings.txtSquare": "正方形", + "DE.Views.ImageSettings.txtThrough": "通過", + "DE.Views.ImageSettings.txtTight": "緊", + "DE.Views.ImageSettings.txtTopAndBottom": "頂部和底部", + "DE.Views.ImageSettingsAdvanced.strMargins": "文字填充", + "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "絕對", + "DE.Views.ImageSettingsAdvanced.textAlignment": "對齊", + "DE.Views.ImageSettingsAdvanced.textAlt": "替代文字", + "DE.Views.ImageSettingsAdvanced.textAltDescription": "描述", + "DE.Views.ImageSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "DE.Views.ImageSettingsAdvanced.textAltTitle": "標題", + "DE.Views.ImageSettingsAdvanced.textAngle": "角度", + "DE.Views.ImageSettingsAdvanced.textArrows": "箭頭", + "DE.Views.ImageSettingsAdvanced.textAspectRatio": "鎖定寬高比", + "DE.Views.ImageSettingsAdvanced.textAutofit": "自動調整", + "DE.Views.ImageSettingsAdvanced.textBeginSize": "開始大小", + "DE.Views.ImageSettingsAdvanced.textBeginStyle": "開始風格", + "DE.Views.ImageSettingsAdvanced.textBelow": "之下", + "DE.Views.ImageSettingsAdvanced.textBevel": "斜角", + "DE.Views.ImageSettingsAdvanced.textBottom": "底部", + "DE.Views.ImageSettingsAdvanced.textBottomMargin": "底邊距", + "DE.Views.ImageSettingsAdvanced.textBtnWrap": "文字包裝", + "DE.Views.ImageSettingsAdvanced.textCapType": "Cap 類型", + "DE.Views.ImageSettingsAdvanced.textCenter": "中心", + "DE.Views.ImageSettingsAdvanced.textCharacter": "文字", + "DE.Views.ImageSettingsAdvanced.textColumn": "欄", + "DE.Views.ImageSettingsAdvanced.textDistance": "與文字的距離", + "DE.Views.ImageSettingsAdvanced.textEndSize": "端部尺寸", + "DE.Views.ImageSettingsAdvanced.textEndStyle": "結束風格", + "DE.Views.ImageSettingsAdvanced.textFlat": "平面", + "DE.Views.ImageSettingsAdvanced.textFlipped": "已翻轉", + "DE.Views.ImageSettingsAdvanced.textHeight": "高度", + "DE.Views.ImageSettingsAdvanced.textHorizontal": "水平", + "DE.Views.ImageSettingsAdvanced.textHorizontally": "水平地", + "DE.Views.ImageSettingsAdvanced.textJoinType": "加入類型", + "DE.Views.ImageSettingsAdvanced.textKeepRatio": "比例不變", + "DE.Views.ImageSettingsAdvanced.textLeft": "左", + "DE.Views.ImageSettingsAdvanced.textLeftMargin": "左邊距", + "DE.Views.ImageSettingsAdvanced.textLine": "線", + "DE.Views.ImageSettingsAdvanced.textLineStyle": "線型", + "DE.Views.ImageSettingsAdvanced.textMargin": "邊框", + "DE.Views.ImageSettingsAdvanced.textMiter": "Miter", + "DE.Views.ImageSettingsAdvanced.textMove": "用文字移動對象", + "DE.Views.ImageSettingsAdvanced.textOptions": "選項", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "實際大小", + "DE.Views.ImageSettingsAdvanced.textOverlap": "允許重疊", + "DE.Views.ImageSettingsAdvanced.textPage": "頁面", + "DE.Views.ImageSettingsAdvanced.textParagraph": "段落", + "DE.Views.ImageSettingsAdvanced.textPosition": "位置", + "DE.Views.ImageSettingsAdvanced.textPositionPc": "相對位置", + "DE.Views.ImageSettingsAdvanced.textRelative": "關係到", + "DE.Views.ImageSettingsAdvanced.textRelativeWH": "相對的", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "調整形狀以適合文本", + "DE.Views.ImageSettingsAdvanced.textRight": "右", + "DE.Views.ImageSettingsAdvanced.textRightMargin": "右邊距", + "DE.Views.ImageSettingsAdvanced.textRightOf": "在 - 的右邊", + "DE.Views.ImageSettingsAdvanced.textRotation": "旋轉", + "DE.Views.ImageSettingsAdvanced.textRound": "圓", + "DE.Views.ImageSettingsAdvanced.textShape": "形狀設定", + "DE.Views.ImageSettingsAdvanced.textSize": "大小", + "DE.Views.ImageSettingsAdvanced.textSquare": "正方形", + "DE.Views.ImageSettingsAdvanced.textTextBox": "文字框", + "DE.Views.ImageSettingsAdvanced.textTitle": "圖像-進階設置", + "DE.Views.ImageSettingsAdvanced.textTitleChart": "圖表-進階設置", + "DE.Views.ImageSettingsAdvanced.textTitleShape": "形狀 - 進階設定", + "DE.Views.ImageSettingsAdvanced.textTop": "上方", + "DE.Views.ImageSettingsAdvanced.textTopMargin": "頂部邊框", + "DE.Views.ImageSettingsAdvanced.textVertical": "垂直", + "DE.Views.ImageSettingsAdvanced.textVertically": "垂直", + "DE.Views.ImageSettingsAdvanced.textWeightArrows": "重量和箭頭", + "DE.Views.ImageSettingsAdvanced.textWidth": "寬度", + "DE.Views.ImageSettingsAdvanced.textWrap": "包覆風格", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "文字在後", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "文字在前", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "與文字排列", + "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "正方形", + "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "通過", + "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "緊", + "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "頂部和底部", + "DE.Views.LeftMenu.tipAbout": "關於", + "DE.Views.LeftMenu.tipChat": "聊天", + "DE.Views.LeftMenu.tipComments": "註解", + "DE.Views.LeftMenu.tipNavigation": "導航", + "DE.Views.LeftMenu.tipPlugins": "外掛程式", + "DE.Views.LeftMenu.tipSearch": "搜尋", + "DE.Views.LeftMenu.tipSupport": "反饋與支持", + "DE.Views.LeftMenu.tipTitles": "標題", + "DE.Views.LeftMenu.txtDeveloper": "開發者模式", + "DE.Views.LeftMenu.txtLimit": "限制存取", + "DE.Views.LeftMenu.txtTrial": "試用模式", + "DE.Views.LeftMenu.txtTrialDev": "試用開發人員模式", + "DE.Views.LineNumbersDialog.textAddLineNumbering": "添加行號", + "DE.Views.LineNumbersDialog.textApplyTo": "套用更改", + "DE.Views.LineNumbersDialog.textContinuous": "連續", + "DE.Views.LineNumbersDialog.textCountBy": "計數", + "DE.Views.LineNumbersDialog.textDocument": "整個文檔", + "DE.Views.LineNumbersDialog.textForward": "這一點向前", + "DE.Views.LineNumbersDialog.textFromText": "來自文字", + "DE.Views.LineNumbersDialog.textNumbering": "編號項目", + "DE.Views.LineNumbersDialog.textRestartEachPage": "重新開始每一頁", + "DE.Views.LineNumbersDialog.textRestartEachSection": "重新開始每個部分", + "DE.Views.LineNumbersDialog.textSection": "當前部分", + "DE.Views.LineNumbersDialog.textStartAt": "開始", + "DE.Views.LineNumbersDialog.textTitle": "行號", + "DE.Views.LineNumbersDialog.txtAutoText": "自動", + "DE.Views.Links.capBtnBookmarks": "書籤", + "DE.Views.Links.capBtnCaption": "標題", + "DE.Views.Links.capBtnContentsUpdate": "更新表格", + "DE.Views.Links.capBtnCrossRef": "相互參照", + "DE.Views.Links.capBtnInsContents": "目錄", + "DE.Views.Links.capBtnInsFootnote": "註腳", + "DE.Views.Links.capBtnInsLink": "超連結", + "DE.Views.Links.capBtnTOF": "圖表", + "DE.Views.Links.confirmDeleteFootnotes": "您要刪除所有腳註嗎?", + "DE.Views.Links.confirmReplaceTOF": "您要替換選定的數字表嗎?", + "DE.Views.Links.mniConvertNote": "轉換所有筆記", + "DE.Views.Links.mniDelFootnote": "刪除所有筆記", + "DE.Views.Links.mniInsEndnote": "插入尾註", + "DE.Views.Links.mniInsFootnote": "插入註腳", + "DE.Views.Links.mniNoteSettings": "筆記設置", + "DE.Views.Links.textContentsRemove": "刪除目錄", + "DE.Views.Links.textContentsSettings": "設定", + "DE.Views.Links.textConvertToEndnotes": "將所有腳註轉換為尾註", + "DE.Views.Links.textConvertToFootnotes": "將所有尾註轉換為腳註", + "DE.Views.Links.textGotoEndnote": "轉到尾註", + "DE.Views.Links.textGotoFootnote": "轉到腳註", + "DE.Views.Links.textSwapNotes": "交換腳註和尾註", + "DE.Views.Links.textUpdateAll": "更新整個表格", + "DE.Views.Links.textUpdatePages": "只更新頁碼", + "DE.Views.Links.tipBookmarks": "創建一個書籤", + "DE.Views.Links.tipCaption": "插入標題", + "DE.Views.Links.tipContents": "插入目錄", + "DE.Views.Links.tipContentsUpdate": "更新目錄", + "DE.Views.Links.tipCrossRef": "插入交叉參考", + "DE.Views.Links.tipInsertHyperlink": "新增超連結", + "DE.Views.Links.tipNotes": "插入或編輯腳註", + "DE.Views.Links.tipTableFigures": "插入圖表", + "DE.Views.Links.tipTableFiguresUpdate": "更新目錄圖", + "DE.Views.Links.titleUpdateTOF": "更新目錄圖", + "DE.Views.ListSettingsDialog.textAuto": "自動", + "DE.Views.ListSettingsDialog.textCenter": "中心", + "DE.Views.ListSettingsDialog.textLeft": "左", + "DE.Views.ListSettingsDialog.textLevel": "水平", + "DE.Views.ListSettingsDialog.textPreview": "預覽", + "DE.Views.ListSettingsDialog.textRight": "右", + "DE.Views.ListSettingsDialog.txtAlign": "對齊", + "DE.Views.ListSettingsDialog.txtBullet": "項目點", + "DE.Views.ListSettingsDialog.txtColor": "顏色", + "DE.Views.ListSettingsDialog.txtFont": "字體和符號", + "DE.Views.ListSettingsDialog.txtLikeText": "像文字", + "DE.Views.ListSettingsDialog.txtNewBullet": "新子彈點", + "DE.Views.ListSettingsDialog.txtNone": "無", + "DE.Views.ListSettingsDialog.txtSize": "大小", + "DE.Views.ListSettingsDialog.txtSymbol": "符號", + "DE.Views.ListSettingsDialog.txtTitle": "清單設定", + "DE.Views.ListSettingsDialog.txtType": "類型", + "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF格式", + "DE.Views.MailMergeEmailDlg.okButtonText": "傳送", + "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "主題", + "DE.Views.MailMergeEmailDlg.textAttachDocx": "附加為DOCX", + "DE.Views.MailMergeEmailDlg.textAttachPdf": "附件為PDF", + "DE.Views.MailMergeEmailDlg.textFileName": "檔案名稱", + "DE.Views.MailMergeEmailDlg.textFormat": "郵件格式", + "DE.Views.MailMergeEmailDlg.textFrom": "自", + "DE.Views.MailMergeEmailDlg.textHTML": "HTML", + "DE.Views.MailMergeEmailDlg.textMessage": "訊息", + "DE.Views.MailMergeEmailDlg.textSubject": "主題行", + "DE.Views.MailMergeEmailDlg.textTitle": "傳送到電子郵件", + "DE.Views.MailMergeEmailDlg.textTo": "到", + "DE.Views.MailMergeEmailDlg.textWarning": "警告!", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "請注意,單擊“發送”按鈕後就無法停止郵寄。", + "DE.Views.MailMergeSettings.downloadMergeTitle": "合併", + "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "合併失敗.", + "DE.Views.MailMergeSettings.notcriticalErrorTitle": "警告", + "DE.Views.MailMergeSettings.textAddRecipients": "首先將一些收件人添加到列表中", + "DE.Views.MailMergeSettings.textAll": "所有記錄", + "DE.Views.MailMergeSettings.textCurrent": "當前記錄", + "DE.Views.MailMergeSettings.textDataSource": "數據源", + "DE.Views.MailMergeSettings.textDocx": "Docx", + "DE.Views.MailMergeSettings.textDownload": "下載", + "DE.Views.MailMergeSettings.textEditData": "編輯收件人列表", + "DE.Views.MailMergeSettings.textEmail": "電子郵件", + "DE.Views.MailMergeSettings.textFrom": "自", + "DE.Views.MailMergeSettings.textGoToMail": "轉到郵件", + "DE.Views.MailMergeSettings.textHighlight": "突出顯示合併字段", + "DE.Views.MailMergeSettings.textInsertField": "插入合併字段", + "DE.Views.MailMergeSettings.textMaxRecepients": "最多100個收件人。", + "DE.Views.MailMergeSettings.textMerge": "合併", + "DE.Views.MailMergeSettings.textMergeFields": "合併欄位", + "DE.Views.MailMergeSettings.textMergeTo": "合併到", + "DE.Views.MailMergeSettings.textPdf": "PDF格式", + "DE.Views.MailMergeSettings.textPortal": "存檔", + "DE.Views.MailMergeSettings.textPreview": "預覽結果", + "DE.Views.MailMergeSettings.textReadMore": "瞭解更多", + "DE.Views.MailMergeSettings.textSendMsg": "所有郵件均已準備就緒,將在一段時間內發送出去。
郵件的發送速度取決於您的郵件服務。
您可以繼續使用文檔或將其關閉。操作結束後,通知將發送到您的註冊電子郵件地址。", + "DE.Views.MailMergeSettings.textTo": "到", + "DE.Views.MailMergeSettings.txtFirst": "到第一個記錄", + "DE.Views.MailMergeSettings.txtFromToError": "\"從\"值必須小於\"到\"值", + "DE.Views.MailMergeSettings.txtLast": "到最後記錄", + "DE.Views.MailMergeSettings.txtNext": "到下一條記錄", + "DE.Views.MailMergeSettings.txtPrev": "到之前的紀錄", + "DE.Views.MailMergeSettings.txtUntitled": "無標題", + "DE.Views.MailMergeSettings.warnProcessMailMerge": "開始合併失敗", + "DE.Views.Navigation.txtCollapse": "全部收縮", + "DE.Views.Navigation.txtDemote": "降級", + "DE.Views.Navigation.txtEmpty": "文件中沒有標題。
應用一個標題風格,以便出現在目錄中。", + "DE.Views.Navigation.txtEmptyItem": "空標題", + "DE.Views.Navigation.txtEmptyViewer": "文件中沒有標題。", + "DE.Views.Navigation.txtExpand": "展開全部", + "DE.Views.Navigation.txtExpandToLevel": "擴展到水平", + "DE.Views.Navigation.txtHeadingAfter": "之後的新標題", + "DE.Views.Navigation.txtHeadingBefore": "之前的新標題", + "DE.Views.Navigation.txtNewHeading": "新副標題", + "DE.Views.Navigation.txtPromote": "促進", + "DE.Views.Navigation.txtSelect": "選擇內容", + "DE.Views.NoteSettingsDialog.textApply": "套用", + "DE.Views.NoteSettingsDialog.textApplyTo": "套用更改", + "DE.Views.NoteSettingsDialog.textContinue": "連續", + "DE.Views.NoteSettingsDialog.textCustom": "自定標記", + "DE.Views.NoteSettingsDialog.textDocEnd": "文件結尾", + "DE.Views.NoteSettingsDialog.textDocument": "整個文檔", + "DE.Views.NoteSettingsDialog.textEachPage": "重新開始每一頁", + "DE.Views.NoteSettingsDialog.textEachSection": "重新開始每個部分", + "DE.Views.NoteSettingsDialog.textEndnote": "尾註", + "DE.Views.NoteSettingsDialog.textFootnote": "註腳", + "DE.Views.NoteSettingsDialog.textFormat": "格式", + "DE.Views.NoteSettingsDialog.textInsert": "插入", + "DE.Views.NoteSettingsDialog.textLocation": "位置", + "DE.Views.NoteSettingsDialog.textNumbering": "編號", + "DE.Views.NoteSettingsDialog.textNumFormat": "數字格式", + "DE.Views.NoteSettingsDialog.textPageBottom": "頁底", + "DE.Views.NoteSettingsDialog.textSectEnd": "本節結束", + "DE.Views.NoteSettingsDialog.textSection": "當前部分", + "DE.Views.NoteSettingsDialog.textStart": "開始", + "DE.Views.NoteSettingsDialog.textTextBottom": "文字之下", + "DE.Views.NoteSettingsDialog.textTitle": "筆記設置", + "DE.Views.NotesRemoveDialog.textEnd": "刪除所有尾註", + "DE.Views.NotesRemoveDialog.textFoot": "刪除所有腳註", + "DE.Views.NotesRemoveDialog.textTitle": "刪除筆記", + "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "警告", + "DE.Views.PageMarginsDialog.textBottom": "底部", + "DE.Views.PageMarginsDialog.textGutter": "溝", + "DE.Views.PageMarginsDialog.textGutterPosition": "溝位置", + "DE.Views.PageMarginsDialog.textInside": "內", + "DE.Views.PageMarginsDialog.textLandscape": "橫向方向", + "DE.Views.PageMarginsDialog.textLeft": "左", + "DE.Views.PageMarginsDialog.textMirrorMargins": "對應邊距", + "DE.Views.PageMarginsDialog.textMultiplePages": "多頁", + "DE.Views.PageMarginsDialog.textNormal": "標準", + "DE.Views.PageMarginsDialog.textOrientation": "方向", + "DE.Views.PageMarginsDialog.textOutside": "外", + "DE.Views.PageMarginsDialog.textPortrait": "直向方向", + "DE.Views.PageMarginsDialog.textPreview": "預覽", + "DE.Views.PageMarginsDialog.textRight": "右", + "DE.Views.PageMarginsDialog.textTitle": "邊框", + "DE.Views.PageMarginsDialog.textTop": "上方", + "DE.Views.PageMarginsDialog.txtMarginsH": "對於給定的頁面高度,上下邊距太高", + "DE.Views.PageMarginsDialog.txtMarginsW": "給定頁面寬度,左右頁邊距太寬", + "DE.Views.PageSizeDialog.textHeight": "高度", + "DE.Views.PageSizeDialog.textPreset": "預設值", + "DE.Views.PageSizeDialog.textTitle": "頁面大小", + "DE.Views.PageSizeDialog.textWidth": "寬度", + "DE.Views.PageSizeDialog.txtCustom": "自訂", + "DE.Views.PageThumbnails.textClosePanel": "關閉預覽圖", + "DE.Views.PageThumbnails.textHighlightVisiblePart": "色彩醒目提示頁面可見部份", + "DE.Views.PageThumbnails.textPageThumbnails": "頁面預覽圖", + "DE.Views.PageThumbnails.textThumbnailsSettings": "預覽圖設定", + "DE.Views.PageThumbnails.textThumbnailsSize": "預覽圖大小", + "DE.Views.ParagraphSettings.strIndent": "縮進", + "DE.Views.ParagraphSettings.strIndentsLeftText": "左", + "DE.Views.ParagraphSettings.strIndentsRightText": "右", + "DE.Views.ParagraphSettings.strIndentsSpecial": "特殊", + "DE.Views.ParagraphSettings.strLineHeight": "行間距", + "DE.Views.ParagraphSettings.strParagraphSpacing": "段落間距", + "DE.Views.ParagraphSettings.strSomeParagraphSpace": "不要在相同風格的文字段落之間添加間隔", + "DE.Views.ParagraphSettings.strSpacingAfter": "之後", + "DE.Views.ParagraphSettings.strSpacingBefore": "之前", + "DE.Views.ParagraphSettings.textAdvanced": "顯示進階設定", + "DE.Views.ParagraphSettings.textAt": "在", + "DE.Views.ParagraphSettings.textAtLeast": "至少", + "DE.Views.ParagraphSettings.textAuto": "多項", + "DE.Views.ParagraphSettings.textBackColor": "背景顏色", + "DE.Views.ParagraphSettings.textExact": "準確", + "DE.Views.ParagraphSettings.textFirstLine": "第一行", + "DE.Views.ParagraphSettings.textHanging": "懸掛式", + "DE.Views.ParagraphSettings.textNoneSpecial": "(空)", + "DE.Views.ParagraphSettings.txtAutoText": "自動", + "DE.Views.ParagraphSettingsAdvanced.noTabs": "指定的標籤將出現在此段落中", + "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "全部大寫", + "DE.Views.ParagraphSettingsAdvanced.strBorders": "邊框和添入", + "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "分頁之前", + "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "雙刪除線", + "DE.Views.ParagraphSettingsAdvanced.strIndent": "縮進", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "行間距", + "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "大綱級別", + "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "之後", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "之前", + "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "特殊", + "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "保持線條一致", + "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "跟著下一個", + "DE.Views.ParagraphSettingsAdvanced.strMargins": "填充物", + "DE.Views.ParagraphSettingsAdvanced.strOrphan": "孤兒控制", + "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "字體", + "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "縮進和間距", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "換行和分頁符", + "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "放置", + "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "小大寫", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "不要在相同風格的文字段落之間添加間隔", + "DE.Views.ParagraphSettingsAdvanced.strSpacing": "間距", + "DE.Views.ParagraphSettingsAdvanced.strStrike": "刪除線", + "DE.Views.ParagraphSettingsAdvanced.strSubscript": "下標", + "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "上標", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "禁止行號", + "DE.Views.ParagraphSettingsAdvanced.strTabs": "標籤", + "DE.Views.ParagraphSettingsAdvanced.textAlign": "對齊", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "至少", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "多項", + "DE.Views.ParagraphSettingsAdvanced.textBackColor": "背景顏色", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "基本文字", + "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "邊框顏色", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "點擊圖或使用按鈕選擇邊框並將選定的樣式應用於邊框", + "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "邊框大小", + "DE.Views.ParagraphSettingsAdvanced.textBottom": "底部", + "DE.Views.ParagraphSettingsAdvanced.textCentered": "置中", + "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "文字間距", + "DE.Views.ParagraphSettingsAdvanced.textDefault": "預設分頁", + "DE.Views.ParagraphSettingsAdvanced.textEffects": "效果", + "DE.Views.ParagraphSettingsAdvanced.textExact": "準確", + "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "第一行", + "DE.Views.ParagraphSettingsAdvanced.textHanging": "懸掛式", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "合理的", + "DE.Views.ParagraphSettingsAdvanced.textLeader": "領導", + "DE.Views.ParagraphSettingsAdvanced.textLeft": "左", + "DE.Views.ParagraphSettingsAdvanced.textLevel": "水平", + "DE.Views.ParagraphSettingsAdvanced.textNone": "無", + "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(空)", + "DE.Views.ParagraphSettingsAdvanced.textPosition": "位置", + "DE.Views.ParagraphSettingsAdvanced.textRemove": "移除", + "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "移除所有", + "DE.Views.ParagraphSettingsAdvanced.textRight": "右", + "DE.Views.ParagraphSettingsAdvanced.textSet": "指定", + "DE.Views.ParagraphSettingsAdvanced.textSpacing": "間距", + "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "中心", + "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "左", + "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "標籤位置", + "DE.Views.ParagraphSettingsAdvanced.textTabRight": "右", + "DE.Views.ParagraphSettingsAdvanced.textTitle": "段落-進階設置", + "DE.Views.ParagraphSettingsAdvanced.textTop": "上方", + "DE.Views.ParagraphSettingsAdvanced.tipAll": "設置外邊界和所有內線", + "DE.Views.ParagraphSettingsAdvanced.tipBottom": "僅設置底部邊框", + "DE.Views.ParagraphSettingsAdvanced.tipInner": "僅設置水平內線", + "DE.Views.ParagraphSettingsAdvanced.tipLeft": "僅設置左邊框", + "DE.Views.ParagraphSettingsAdvanced.tipNone": "設置無邊界", + "DE.Views.ParagraphSettingsAdvanced.tipOuter": "僅設置外部框線", + "DE.Views.ParagraphSettingsAdvanced.tipRight": "僅設置右邊框", + "DE.Views.ParagraphSettingsAdvanced.tipTop": "僅設置頂部邊框", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動", + "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "無邊框", + "DE.Views.RightMenu.txtChartSettings": "圖表設定", + "DE.Views.RightMenu.txtFormSettings": "表格設定", + "DE.Views.RightMenu.txtHeaderFooterSettings": "標頭和頁腳設置", + "DE.Views.RightMenu.txtImageSettings": "影像設定", + "DE.Views.RightMenu.txtMailMergeSettings": "郵件合併設置", + "DE.Views.RightMenu.txtParagraphSettings": "段落設定", + "DE.Views.RightMenu.txtShapeSettings": "形狀設定", + "DE.Views.RightMenu.txtSignatureSettings": "簽名設置", + "DE.Views.RightMenu.txtTableSettings": "表格設定", + "DE.Views.RightMenu.txtTextArtSettings": "文字藝術設定", + "DE.Views.ShapeSettings.strBackground": "背景顏色", + "DE.Views.ShapeSettings.strChange": "變更自動形狀", + "DE.Views.ShapeSettings.strColor": "顏色", + "DE.Views.ShapeSettings.strFill": "填入", + "DE.Views.ShapeSettings.strForeground": "前景色", + "DE.Views.ShapeSettings.strPattern": "模式", + "DE.Views.ShapeSettings.strShadow": "顯示陰影", + "DE.Views.ShapeSettings.strSize": "大小", + "DE.Views.ShapeSettings.strStroke": "筆鋒", + "DE.Views.ShapeSettings.strTransparency": "透明度", + "DE.Views.ShapeSettings.strType": "輸入", + "DE.Views.ShapeSettings.textAdvanced": "顯示進階設定", + "DE.Views.ShapeSettings.textAngle": "角度", + "DE.Views.ShapeSettings.textBorderSizeErr": "輸入的值不正確。
請輸入0 pt至1584 pt之間的值。", + "DE.Views.ShapeSettings.textColor": "填充顏色", + "DE.Views.ShapeSettings.textDirection": "方向", + "DE.Views.ShapeSettings.textEmptyPattern": "無模式", + "DE.Views.ShapeSettings.textFlip": "翻轉", + "DE.Views.ShapeSettings.textFromFile": "從檔案", + "DE.Views.ShapeSettings.textFromStorage": "從存儲", + "DE.Views.ShapeSettings.textFromUrl": "從 URL", + "DE.Views.ShapeSettings.textGradient": "漸變點", + "DE.Views.ShapeSettings.textGradientFill": "漸層填充", + "DE.Views.ShapeSettings.textHint270": "逆時針旋轉90°", + "DE.Views.ShapeSettings.textHint90": "順時針旋轉90°", + "DE.Views.ShapeSettings.textHintFlipH": "水平翻轉", + "DE.Views.ShapeSettings.textHintFlipV": "垂直翻轉", + "DE.Views.ShapeSettings.textImageTexture": "圖片或紋理", + "DE.Views.ShapeSettings.textLinear": "線性的", + "DE.Views.ShapeSettings.textNoFill": "沒有填充", + "DE.Views.ShapeSettings.textPatternFill": "模式", + "DE.Views.ShapeSettings.textPosition": "位置", + "DE.Views.ShapeSettings.textRadial": "徑向的", + "DE.Views.ShapeSettings.textRecentlyUsed": "最近使用", + "DE.Views.ShapeSettings.textRotate90": "旋轉90°", + "DE.Views.ShapeSettings.textRotation": "旋轉", + "DE.Views.ShapeSettings.textSelectImage": "選擇圖片", + "DE.Views.ShapeSettings.textSelectTexture": "選擇", + "DE.Views.ShapeSettings.textStretch": "延伸", + "DE.Views.ShapeSettings.textStyle": "風格", + "DE.Views.ShapeSettings.textTexture": "從紋理", + "DE.Views.ShapeSettings.textTile": "磚瓦", + "DE.Views.ShapeSettings.textWrap": "包覆風格", + "DE.Views.ShapeSettings.tipAddGradientPoint": "新增漸變點", + "DE.Views.ShapeSettings.tipRemoveGradientPoint": "刪除漸變點", + "DE.Views.ShapeSettings.txtBehind": "文字在後", + "DE.Views.ShapeSettings.txtBrownPaper": "牛皮紙", + "DE.Views.ShapeSettings.txtCanvas": "畫布", + "DE.Views.ShapeSettings.txtCarton": "紙箱", + "DE.Views.ShapeSettings.txtDarkFabric": "深色面料", + "DE.Views.ShapeSettings.txtGrain": "紋", + "DE.Views.ShapeSettings.txtGranite": "花崗岩", + "DE.Views.ShapeSettings.txtGreyPaper": "灰紙", + "DE.Views.ShapeSettings.txtInFront": "文字在前", + "DE.Views.ShapeSettings.txtInline": "與文字排列", + "DE.Views.ShapeSettings.txtKnit": "編織", + "DE.Views.ShapeSettings.txtLeather": "皮革", + "DE.Views.ShapeSettings.txtNoBorders": "無線條", + "DE.Views.ShapeSettings.txtPapyrus": "紙莎草紙", + "DE.Views.ShapeSettings.txtSquare": "正方形", + "DE.Views.ShapeSettings.txtThrough": "通過", + "DE.Views.ShapeSettings.txtTight": "緊", + "DE.Views.ShapeSettings.txtTopAndBottom": "頂部和底部", + "DE.Views.ShapeSettings.txtWood": "木頭", + "DE.Views.SignatureSettings.notcriticalErrorTitle": "警告", + "DE.Views.SignatureSettings.strDelete": "刪除簽名", + "DE.Views.SignatureSettings.strDetails": "簽名細節", + "DE.Views.SignatureSettings.strInvalid": "無效的簽名", + "DE.Views.SignatureSettings.strRequested": "要求的簽名", + "DE.Views.SignatureSettings.strSetup": "簽名設置", + "DE.Views.SignatureSettings.strSign": "簽名", + "DE.Views.SignatureSettings.strSignature": "簽名", + "DE.Views.SignatureSettings.strSigner": "簽名者", + "DE.Views.SignatureSettings.strValid": "有效簽名", + "DE.Views.SignatureSettings.txtContinueEditing": "仍要編輯", + "DE.Views.SignatureSettings.txtEditWarning": "編輯將刪除文檔中的簽名。
是否確定繼續?", + "DE.Views.SignatureSettings.txtRemoveWarning": "確定移除此簽名?
這動作無法復原.", + "DE.Views.SignatureSettings.txtRequestedSignatures": "該文件需要簽名。", + "DE.Views.SignatureSettings.txtSigned": "有效簽名已添加到文檔中。該文檔受到保護,無法編輯。", + "DE.Views.SignatureSettings.txtSignedInvalid": "文檔中的某些數字簽名無效或無法驗證。該文檔受到保護,無法編輯。", + "DE.Views.Statusbar.goToPageText": "轉到頁面", + "DE.Views.Statusbar.pageIndexText": "第{0}頁,共{1}頁", + "DE.Views.Statusbar.tipFitPage": "切合至頁面", + "DE.Views.Statusbar.tipFitWidth": "切合至寬度", + "DE.Views.Statusbar.tipHandTool": "移動工具", + "DE.Views.Statusbar.tipSelectTool": "選取工具", + "DE.Views.Statusbar.tipSetLang": "設定文字語言", + "DE.Views.Statusbar.tipZoomFactor": "放大", + "DE.Views.Statusbar.tipZoomIn": "放大", + "DE.Views.Statusbar.tipZoomOut": "縮小", + "DE.Views.Statusbar.txtPageNumInvalid": "頁碼無效", + "DE.Views.StyleTitleDialog.textHeader": "新增風格", + "DE.Views.StyleTitleDialog.textNextStyle": "下一段風格", + "DE.Views.StyleTitleDialog.textTitle": "標題", + "DE.Views.StyleTitleDialog.txtEmpty": "這是必填欄", + "DE.Views.StyleTitleDialog.txtNotEmpty": "段落不能為空", + "DE.Views.StyleTitleDialog.txtSameAs": "與新增風格相同", + "DE.Views.TableFormulaDialog.textBookmark": "粘貼書籤", + "DE.Views.TableFormulaDialog.textFormat": "數字格式", + "DE.Views.TableFormulaDialog.textFormula": "函數", + "DE.Views.TableFormulaDialog.textInsertFunction": "粘貼功能", + "DE.Views.TableFormulaDialog.textTitle": "函數設定", + "DE.Views.TableOfContentsSettings.strAlign": "右對齊頁碼", + "DE.Views.TableOfContentsSettings.strFullCaption": "包括標籤和編號", + "DE.Views.TableOfContentsSettings.strLinks": "將目錄格式設置為連結", + "DE.Views.TableOfContentsSettings.strLinksOF": "調數字目錄格式為鏈接", + "DE.Views.TableOfContentsSettings.strShowPages": "顯示頁碼", + "DE.Views.TableOfContentsSettings.textBuildTable": "從中建立目錄", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "從建立數據表", + "DE.Views.TableOfContentsSettings.textEquation": "方程式", + "DE.Views.TableOfContentsSettings.textFigure": "數字", + "DE.Views.TableOfContentsSettings.textLeader": "領導", + "DE.Views.TableOfContentsSettings.textLevel": "水平", + "DE.Views.TableOfContentsSettings.textLevels": "層次", + "DE.Views.TableOfContentsSettings.textNone": "無", + "DE.Views.TableOfContentsSettings.textRadioCaption": "標題", + "DE.Views.TableOfContentsSettings.textRadioLevels": "大綱級別", + "DE.Views.TableOfContentsSettings.textRadioStyle": "風格", + "DE.Views.TableOfContentsSettings.textRadioStyles": "選擇風格", + "DE.Views.TableOfContentsSettings.textStyle": "風格", + "DE.Views.TableOfContentsSettings.textStyles": "風格", + "DE.Views.TableOfContentsSettings.textTable": "表格", + "DE.Views.TableOfContentsSettings.textTitle": "目錄", + "DE.Views.TableOfContentsSettings.textTitleTOF": "圖表", + "DE.Views.TableOfContentsSettings.txtCentered": "置中", + "DE.Views.TableOfContentsSettings.txtClassic": "經典", + "DE.Views.TableOfContentsSettings.txtCurrent": "當前", + "DE.Views.TableOfContentsSettings.txtDistinctive": "獨特的", + "DE.Views.TableOfContentsSettings.txtFormal": "正式", + "DE.Views.TableOfContentsSettings.txtModern": "現代", + "DE.Views.TableOfContentsSettings.txtOnline": "上線", + "DE.Views.TableOfContentsSettings.txtSimple": "簡單", + "DE.Views.TableOfContentsSettings.txtStandard": "標準", + "DE.Views.TableSettings.deleteColumnText": "刪除欄位", + "DE.Views.TableSettings.deleteRowText": "刪除行列", + "DE.Views.TableSettings.deleteTableText": "刪除表格", + "DE.Views.TableSettings.insertColumnLeftText": "向左插入列", + "DE.Views.TableSettings.insertColumnRightText": "向右插入列", + "DE.Views.TableSettings.insertRowAboveText": "在上方插入行", + "DE.Views.TableSettings.insertRowBelowText": "在下方插入行", + "DE.Views.TableSettings.mergeCellsText": "合併儲存格", + "DE.Views.TableSettings.selectCellText": "選擇儲存格", + "DE.Views.TableSettings.selectColumnText": "選擇欄", + "DE.Views.TableSettings.selectRowText": "選擇列", + "DE.Views.TableSettings.selectTableText": "選擇表格", + "DE.Views.TableSettings.splitCellsText": "分割儲存格...", + "DE.Views.TableSettings.splitCellTitleText": "分割儲存格", + "DE.Views.TableSettings.strRepeatRow": "在每一頁頂部重複作為標題行", + "DE.Views.TableSettings.textAddFormula": "插入函數", + "DE.Views.TableSettings.textAdvanced": "顯示進階設定", + "DE.Views.TableSettings.textBackColor": "背景顏色", + "DE.Views.TableSettings.textBanded": "帶狀", + "DE.Views.TableSettings.textBorderColor": "顏色", + "DE.Views.TableSettings.textBorders": "邊框風格", + "DE.Views.TableSettings.textCellSize": "行和列大小", + "DE.Views.TableSettings.textColumns": "欄", + "DE.Views.TableSettings.textConvert": "轉換表格至文字", + "DE.Views.TableSettings.textDistributeCols": "分配列", + "DE.Views.TableSettings.textDistributeRows": "分配行", + "DE.Views.TableSettings.textEdit": "行和列", + "DE.Views.TableSettings.textEmptyTemplate": "\n沒有模板", + "DE.Views.TableSettings.textFirst": "第一", + "DE.Views.TableSettings.textHeader": "標頭", + "DE.Views.TableSettings.textHeight": "高度", + "DE.Views.TableSettings.textLast": "最後", + "DE.Views.TableSettings.textRows": "行列", + "DE.Views.TableSettings.textSelectBorders": "選擇您要更改上面選擇的應用風格的邊框", + "DE.Views.TableSettings.textTemplate": "從範本中選擇", + "DE.Views.TableSettings.textTotal": "總計", + "DE.Views.TableSettings.textWidth": "寬度", + "DE.Views.TableSettings.tipAll": "設置外邊界和所有內線", + "DE.Views.TableSettings.tipBottom": "僅設置外底邊框", + "DE.Views.TableSettings.tipInner": "僅設置內線", + "DE.Views.TableSettings.tipInnerHor": "僅設置水平內線", + "DE.Views.TableSettings.tipInnerVert": "僅設置垂直內線", + "DE.Views.TableSettings.tipLeft": "僅設置左外邊框", + "DE.Views.TableSettings.tipNone": "設置無邊界", + "DE.Views.TableSettings.tipOuter": "僅設置外部框線", + "DE.Views.TableSettings.tipRight": "僅設置右外框", + "DE.Views.TableSettings.tipTop": "僅設置外部頂部邊框", + "DE.Views.TableSettings.txtNoBorders": "無邊框", + "DE.Views.TableSettings.txtTable_Accent": "口音", + "DE.Views.TableSettings.txtTable_Colorful": "七彩", + "DE.Views.TableSettings.txtTable_Dark": "暗", + "DE.Views.TableSettings.txtTable_GridTable": "網格表", + "DE.Views.TableSettings.txtTable_Light": "光", + "DE.Views.TableSettings.txtTable_ListTable": "列表表", + "DE.Views.TableSettings.txtTable_PlainTable": "普通表", + "DE.Views.TableSettings.txtTable_TableGrid": "表格網格", + "DE.Views.TableSettingsAdvanced.textAlign": "對齊", + "DE.Views.TableSettingsAdvanced.textAlignment": "對齊", + "DE.Views.TableSettingsAdvanced.textAllowSpacing": "儲存格間距", + "DE.Views.TableSettingsAdvanced.textAlt": "替代文字", + "DE.Views.TableSettingsAdvanced.textAltDescription": "描述", + "DE.Views.TableSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "DE.Views.TableSettingsAdvanced.textAltTitle": "標題", + "DE.Views.TableSettingsAdvanced.textAnchorText": "文字", + "DE.Views.TableSettingsAdvanced.textAutofit": "自動調整大小以適合內容", + "DE.Views.TableSettingsAdvanced.textBackColor": "儲存格背景", + "DE.Views.TableSettingsAdvanced.textBelow": "之下", + "DE.Views.TableSettingsAdvanced.textBorderColor": "邊框顏色", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "點擊圖或使用按鈕選擇邊框並將選定的樣式應用於邊框", + "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "邊框和背景", + "DE.Views.TableSettingsAdvanced.textBorderWidth": "邊框大小", + "DE.Views.TableSettingsAdvanced.textBottom": "底部", + "DE.Views.TableSettingsAdvanced.textCellOptions": "儲存格選項", + "DE.Views.TableSettingsAdvanced.textCellProps": "儲存格", + "DE.Views.TableSettingsAdvanced.textCellSize": "儲存格大小", + "DE.Views.TableSettingsAdvanced.textCenter": "中心", + "DE.Views.TableSettingsAdvanced.textCenterTooltip": "中心", + "DE.Views.TableSettingsAdvanced.textCheckMargins": "使用預設邊距", + "DE.Views.TableSettingsAdvanced.textDefaultMargins": "預設儲存格邊距", + "DE.Views.TableSettingsAdvanced.textDistance": "與文字的距離", + "DE.Views.TableSettingsAdvanced.textHorizontal": "水平", + "DE.Views.TableSettingsAdvanced.textIndLeft": "從左縮進", + "DE.Views.TableSettingsAdvanced.textLeft": "左", + "DE.Views.TableSettingsAdvanced.textLeftTooltip": "左", + "DE.Views.TableSettingsAdvanced.textMargin": "邊框", + "DE.Views.TableSettingsAdvanced.textMargins": "儲存格邊距", + "DE.Views.TableSettingsAdvanced.textMeasure": "測量", + "DE.Views.TableSettingsAdvanced.textMove": "用文字移動對象", + "DE.Views.TableSettingsAdvanced.textOnlyCells": "僅適用於選取的儲存格", + "DE.Views.TableSettingsAdvanced.textOptions": "選項", + "DE.Views.TableSettingsAdvanced.textOverlap": "允許重疊", + "DE.Views.TableSettingsAdvanced.textPage": "頁面", + "DE.Views.TableSettingsAdvanced.textPosition": "位置", + "DE.Views.TableSettingsAdvanced.textPrefWidth": "首選寬度", + "DE.Views.TableSettingsAdvanced.textPreview": "預覽", + "DE.Views.TableSettingsAdvanced.textRelative": "關係到", + "DE.Views.TableSettingsAdvanced.textRight": "右", + "DE.Views.TableSettingsAdvanced.textRightOf": "在 - 的右邊", + "DE.Views.TableSettingsAdvanced.textRightTooltip": "右", + "DE.Views.TableSettingsAdvanced.textTable": "表格", + "DE.Views.TableSettingsAdvanced.textTableBackColor": "表格背景", + "DE.Views.TableSettingsAdvanced.textTablePosition": "表格位置", + "DE.Views.TableSettingsAdvanced.textTableSize": "表格大小", + "DE.Views.TableSettingsAdvanced.textTitle": "表格 - 進階設定", + "DE.Views.TableSettingsAdvanced.textTop": "上方", + "DE.Views.TableSettingsAdvanced.textVertical": "垂直", + "DE.Views.TableSettingsAdvanced.textWidth": "寬度", + "DE.Views.TableSettingsAdvanced.textWidthSpaces": "寬度與間距", + "DE.Views.TableSettingsAdvanced.textWrap": "文字包裝", + "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "內聯表", + "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "流量表", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "包覆風格", + "DE.Views.TableSettingsAdvanced.textWrapText": "包覆文字", + "DE.Views.TableSettingsAdvanced.tipAll": "設置外邊界和所有內線", + "DE.Views.TableSettingsAdvanced.tipCellAll": "設置邊框僅用於內部儲存格", + "DE.Views.TableSettingsAdvanced.tipCellInner": "只為內部儲存格設置垂直和水平線", + "DE.Views.TableSettingsAdvanced.tipCellOuter": "為內部儲存格設置外部邊界", + "DE.Views.TableSettingsAdvanced.tipInner": "僅設置內線", + "DE.Views.TableSettingsAdvanced.tipNone": "設置無邊界", + "DE.Views.TableSettingsAdvanced.tipOuter": "僅設置外部框線", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": " 設置外部邊框和所有內部儲存格的邊框", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "設置內部儲存格的外部邊界以及垂直和水平線", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "設置表格的外部邊框和內部儲存格的外部邊框", + "DE.Views.TableSettingsAdvanced.txtCm": "公分", + "DE.Views.TableSettingsAdvanced.txtInch": "吋", + "DE.Views.TableSettingsAdvanced.txtNoBorders": "無邊框", + "DE.Views.TableSettingsAdvanced.txtPercent": "百分", + "DE.Views.TableSettingsAdvanced.txtPt": "點", + "DE.Views.TableToTextDialog.textEmpty": "你必須輸入至少一個自訂的分隔字元", + "DE.Views.TableToTextDialog.textNested": "轉換套疊表格", + "DE.Views.TableToTextDialog.textOther": "其它", + "DE.Views.TableToTextDialog.textPara": "段落標記", + "DE.Views.TableToTextDialog.textSemicolon": "分號", + "DE.Views.TableToTextDialog.textSeparator": "文字分隔用", + "DE.Views.TableToTextDialog.textTab": "標籤", + "DE.Views.TableToTextDialog.textTitle": "轉換表格至文字", + "DE.Views.TextArtSettings.strColor": "顏色", + "DE.Views.TextArtSettings.strFill": "填入", + "DE.Views.TextArtSettings.strSize": "大小", + "DE.Views.TextArtSettings.strStroke": "筆鋒", + "DE.Views.TextArtSettings.strTransparency": "透明度", + "DE.Views.TextArtSettings.strType": "輸入", + "DE.Views.TextArtSettings.textAngle": "角度", + "DE.Views.TextArtSettings.textBorderSizeErr": "輸入的值不正確。
請輸入0 pt至1584 pt之間的值。", + "DE.Views.TextArtSettings.textColor": "填充顏色", + "DE.Views.TextArtSettings.textDirection": "方向", + "DE.Views.TextArtSettings.textGradient": "漸變點", + "DE.Views.TextArtSettings.textGradientFill": "漸層填充", + "DE.Views.TextArtSettings.textLinear": "線性的", + "DE.Views.TextArtSettings.textNoFill": "沒有填充", + "DE.Views.TextArtSettings.textPosition": "位置", + "DE.Views.TextArtSettings.textRadial": "徑向的", + "DE.Views.TextArtSettings.textSelectTexture": "選擇", + "DE.Views.TextArtSettings.textStyle": "風格", + "DE.Views.TextArtSettings.textTemplate": "樣板", + "DE.Views.TextArtSettings.textTransform": "轉變", + "DE.Views.TextArtSettings.tipAddGradientPoint": "新增漸變點", + "DE.Views.TextArtSettings.tipRemoveGradientPoint": "刪除漸變點", + "DE.Views.TextArtSettings.txtNoBorders": "無線條", + "DE.Views.TextToTableDialog.textAutofit": "自動調整欄寬", + "DE.Views.TextToTableDialog.textColumns": "欄", + "DE.Views.TextToTableDialog.textContents": "自動調整欄寬至內容", + "DE.Views.TextToTableDialog.textEmpty": "你必須輸入至少一個自訂的分隔字元", + "DE.Views.TextToTableDialog.textFixed": "固定欄寬", + "DE.Views.TextToTableDialog.textOther": "其它", + "DE.Views.TextToTableDialog.textPara": "段落", + "DE.Views.TextToTableDialog.textRows": "行列", + "DE.Views.TextToTableDialog.textSemicolon": "分號", + "DE.Views.TextToTableDialog.textSeparator": "文字分隔從", + "DE.Views.TextToTableDialog.textTab": "標籤", + "DE.Views.TextToTableDialog.textTableSize": "表格大小", + "DE.Views.TextToTableDialog.textTitle": "轉換文字至表格", + "DE.Views.TextToTableDialog.textWindow": "自動調整欄寬至視窗", + "DE.Views.TextToTableDialog.txtAutoText": "自動", + "DE.Views.Toolbar.capBtnAddComment": "新增註解", + "DE.Views.Toolbar.capBtnBlankPage": "空白頁面", + "DE.Views.Toolbar.capBtnColumns": "欄", + "DE.Views.Toolbar.capBtnComment": "註解", + "DE.Views.Toolbar.capBtnDateTime": "日期和時間", + "DE.Views.Toolbar.capBtnInsChart": "圖表", + "DE.Views.Toolbar.capBtnInsControls": "內容控制", + "DE.Views.Toolbar.capBtnInsDropcap": "首字大寫", + "DE.Views.Toolbar.capBtnInsEquation": "方程式", + "DE.Views.Toolbar.capBtnInsHeader": "頁首/頁尾", + "DE.Views.Toolbar.capBtnInsImage": "圖像", + "DE.Views.Toolbar.capBtnInsPagebreak": "段落隔斷", + "DE.Views.Toolbar.capBtnInsShape": "形狀", + "DE.Views.Toolbar.capBtnInsSymbol": "符號", + "DE.Views.Toolbar.capBtnInsTable": "表格", + "DE.Views.Toolbar.capBtnInsTextart": "文字藝術", + "DE.Views.Toolbar.capBtnInsTextbox": "文字框", + "DE.Views.Toolbar.capBtnLineNumbers": "行號", + "DE.Views.Toolbar.capBtnMargins": "邊框", + "DE.Views.Toolbar.capBtnPageOrient": "方向", + "DE.Views.Toolbar.capBtnPageSize": "大小", + "DE.Views.Toolbar.capBtnWatermark": "浮水印", + "DE.Views.Toolbar.capImgAlign": "對齊", + "DE.Views.Toolbar.capImgBackward": "向後發送", + "DE.Views.Toolbar.capImgForward": "向前進", + "DE.Views.Toolbar.capImgGroup": "群組", + "DE.Views.Toolbar.capImgWrapping": "包覆", + "DE.Views.Toolbar.mniCapitalizeWords": "每個單字字首大寫", + "DE.Views.Toolbar.mniCustomTable": "插入自訂表格", + "DE.Views.Toolbar.mniDrawTable": "畫表", + "DE.Views.Toolbar.mniEditControls": "控制設定", + "DE.Views.Toolbar.mniEditDropCap": "首字大寫設定", + "DE.Views.Toolbar.mniEditFooter": "編輯頁腳", + "DE.Views.Toolbar.mniEditHeader": "編輯標題", + "DE.Views.Toolbar.mniEraseTable": "擦除表", + "DE.Views.Toolbar.mniFromFile": "從檔案", + "DE.Views.Toolbar.mniFromStorage": "從存儲", + "DE.Views.Toolbar.mniFromUrl": "從 URL", + "DE.Views.Toolbar.mniHiddenBorders": "隱藏表格邊框", + "DE.Views.Toolbar.mniHiddenChars": "非印刷字符", + "DE.Views.Toolbar.mniHighlightControls": "強調顯示設置", + "DE.Views.Toolbar.mniImageFromFile": "圖片來自文件", + "DE.Views.Toolbar.mniImageFromStorage": "來自存儲的圖像", + "DE.Views.Toolbar.mniImageFromUrl": "來自網址的圖片", + "DE.Views.Toolbar.mniLowerCase": "小寫", + "DE.Views.Toolbar.mniSentenceCase": "大寫句子頭", + "DE.Views.Toolbar.mniTextToTable": "轉換文字至表格", + "DE.Views.Toolbar.mniToggleCase": "轉換大小寫", + "DE.Views.Toolbar.mniUpperCase": "大寫", + "DE.Views.Toolbar.strMenuNoFill": "沒有填充", + "DE.Views.Toolbar.textAutoColor": "自動", + "DE.Views.Toolbar.textBold": "粗體", + "DE.Views.Toolbar.textBottom": "底部:", + "DE.Views.Toolbar.textChangeLevel": "變更清單層級", + "DE.Views.Toolbar.textCheckboxControl": "複選框", + "DE.Views.Toolbar.textColumnsCustom": "自定欄", + "DE.Views.Toolbar.textColumnsLeft": "左", + "DE.Views.Toolbar.textColumnsOne": "一", + "DE.Views.Toolbar.textColumnsRight": "右", + "DE.Views.Toolbar.textColumnsThree": "三", + "DE.Views.Toolbar.textColumnsTwo": "二", + "DE.Views.Toolbar.textComboboxControl": "組合框", + "DE.Views.Toolbar.textContinuous": "連續", + "DE.Views.Toolbar.textContPage": "連續頁面", + "DE.Views.Toolbar.textCustomLineNumbers": "行號選項", + "DE.Views.Toolbar.textDateControl": "日期", + "DE.Views.Toolbar.textDropdownControl": "下拉選單", + "DE.Views.Toolbar.textEditWatermark": "自定浮水印", + "DE.Views.Toolbar.textEvenPage": "雙數頁", + "DE.Views.Toolbar.textInMargin": "在邊框內", + "DE.Views.Toolbar.textInsColumnBreak": "插入分欄符", + "DE.Views.Toolbar.textInsertPageCount": "插入頁數", + "DE.Views.Toolbar.textInsertPageNumber": "插入頁碼", + "DE.Views.Toolbar.textInsPageBreak": "插入分頁符", + "DE.Views.Toolbar.textInsSectionBreak": "插入分節符", + "DE.Views.Toolbar.textInText": "字段內", + "DE.Views.Toolbar.textItalic": "斜體", + "DE.Views.Toolbar.textLandscape": "橫向方向", + "DE.Views.Toolbar.textLeft": "左:", + "DE.Views.Toolbar.textListSettings": "清單設定", + "DE.Views.Toolbar.textMarginsLast": "最後自訂", + "DE.Views.Toolbar.textMarginsModerate": "中等", + "DE.Views.Toolbar.textMarginsNarrow": "狹窄", + "DE.Views.Toolbar.textMarginsNormal": "標準", + "DE.Views.Toolbar.textMarginsUsNormal": "美國普通", + "DE.Views.Toolbar.textMarginsWide": "寬", + "DE.Views.Toolbar.textNewColor": "新增自訂顏色", + "DE.Views.Toolbar.textNextPage": "下一頁", + "DE.Views.Toolbar.textNoHighlight": "沒有突出顯示", + "DE.Views.Toolbar.textNone": "無", + "DE.Views.Toolbar.textOddPage": "奇數頁", + "DE.Views.Toolbar.textPageMarginsCustom": "自定邊距", + "DE.Views.Toolbar.textPageSizeCustom": "自定頁面大小", + "DE.Views.Toolbar.textPictureControl": "圖片", + "DE.Views.Toolbar.textPlainControl": "純文本", + "DE.Views.Toolbar.textPortrait": "直向方向", + "DE.Views.Toolbar.textRemoveControl": "刪除內容控制", + "DE.Views.Toolbar.textRemWatermark": "刪除水印", + "DE.Views.Toolbar.textRestartEachPage": "重新開始每一頁", + "DE.Views.Toolbar.textRestartEachSection": "重新開始每個部分", + "DE.Views.Toolbar.textRichControl": "富文本", + "DE.Views.Toolbar.textRight": "右: ", + "DE.Views.Toolbar.textStrikeout": "刪除線", + "DE.Views.Toolbar.textStyleMenuDelete": "刪除風格", + "DE.Views.Toolbar.textStyleMenuDeleteAll": "刪除所有自定風格", + "DE.Views.Toolbar.textStyleMenuNew": "精選新風格", + "DE.Views.Toolbar.textStyleMenuRestore": "恢復為預設值", + "DE.Views.Toolbar.textStyleMenuRestoreAll": "恢復全部為預設風格", + "DE.Views.Toolbar.textStyleMenuUpdate": "選擇更新", + "DE.Views.Toolbar.textSubscript": "下標", + "DE.Views.Toolbar.textSuperscript": "上標", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "禁止當前段落", + "DE.Views.Toolbar.textTabCollaboration": "共同編輯", + "DE.Views.Toolbar.textTabFile": "檔案", + "DE.Views.Toolbar.textTabHome": "首頁", + "DE.Views.Toolbar.textTabInsert": "插入", + "DE.Views.Toolbar.textTabLayout": "佈局", + "DE.Views.Toolbar.textTabLinks": "參考文獻", + "DE.Views.Toolbar.textTabProtect": "保護", + "DE.Views.Toolbar.textTabReview": "評論;回顧", + "DE.Views.Toolbar.textTabView": "檢視", + "DE.Views.Toolbar.textTitleError": "錯誤", + "DE.Views.Toolbar.textToCurrent": "到當前位置", + "DE.Views.Toolbar.textTop": "頂部: ", + "DE.Views.Toolbar.textUnderline": "底線", + "DE.Views.Toolbar.tipAlignCenter": "居中對齊", + "DE.Views.Toolbar.tipAlignJust": "合理的", + "DE.Views.Toolbar.tipAlignLeft": "對齊左側", + "DE.Views.Toolbar.tipAlignRight": "對齊右側", + "DE.Views.Toolbar.tipBack": "返回", + "DE.Views.Toolbar.tipBlankPage": "插入空白頁", + "DE.Views.Toolbar.tipChangeCase": "改大小寫", + "DE.Views.Toolbar.tipChangeChart": "變更圖表類型", + "DE.Views.Toolbar.tipClearStyle": "清晰的風格", + "DE.Views.Toolbar.tipColorSchemas": "變更配色方案", + "DE.Views.Toolbar.tipColumns": "插入欄", + "DE.Views.Toolbar.tipControls": "插入內容控件", + "DE.Views.Toolbar.tipCopy": "複製", + "DE.Views.Toolbar.tipCopyStyle": "複製風格", + "DE.Views.Toolbar.tipDateTime": "插入當前日期和時間", + "DE.Views.Toolbar.tipDecFont": "減少字體大小", + "DE.Views.Toolbar.tipDecPrLeft": "減少縮進", + "DE.Views.Toolbar.tipDropCap": "插入下蓋", + "DE.Views.Toolbar.tipEditHeader": "編輯頁眉或頁腳", + "DE.Views.Toolbar.tipFontColor": "字體顏色", + "DE.Views.Toolbar.tipFontName": "字體", + "DE.Views.Toolbar.tipFontSize": "字體大小", + "DE.Views.Toolbar.tipHighlightColor": "熒光色選", + "DE.Views.Toolbar.tipImgAlign": "對齊物件", + "DE.Views.Toolbar.tipImgGroup": "組對象", + "DE.Views.Toolbar.tipImgWrapping": "包覆文字", + "DE.Views.Toolbar.tipIncFont": "增量字體大小", + "DE.Views.Toolbar.tipIncPrLeft": "增加縮進", + "DE.Views.Toolbar.tipInsertChart": "插入圖表", + "DE.Views.Toolbar.tipInsertEquation": "插入方程式", + "DE.Views.Toolbar.tipInsertImage": "插入圖片", + "DE.Views.Toolbar.tipInsertNum": "插入頁碼", + "DE.Views.Toolbar.tipInsertShape": "插入自動形狀", + "DE.Views.Toolbar.tipInsertSymbol": "插入符號", + "DE.Views.Toolbar.tipInsertTable": "插入表格", + "DE.Views.Toolbar.tipInsertText": "插入文字框", + "DE.Views.Toolbar.tipInsertTextArt": "插入文字藝術", + "DE.Views.Toolbar.tipLineNumbers": "顯示行號", + "DE.Views.Toolbar.tipLineSpace": "段落行距", + "DE.Views.Toolbar.tipMailRecepients": "郵件合併", + "DE.Views.Toolbar.tipMarkers": "項目符號", + "DE.Views.Toolbar.tipMarkersArrow": "箭頭項目符號", + "DE.Views.Toolbar.tipMarkersCheckmark": "核取記號項目符號", + "DE.Views.Toolbar.tipMarkersDash": "連字號項目符號", + "DE.Views.Toolbar.tipMarkersFRhombus": "實心菱形項目符號", + "DE.Views.Toolbar.tipMarkersFRound": "實心圓項目符號", + "DE.Views.Toolbar.tipMarkersFSquare": "實心方形項目符號", + "DE.Views.Toolbar.tipMarkersHRound": "空心圓項目符號", + "DE.Views.Toolbar.tipMarkersStar": "星星項目符號", + "DE.Views.Toolbar.tipMultiLevelNumbered": "多層次數字清單", + "DE.Views.Toolbar.tipMultilevels": "多級清單", + "DE.Views.Toolbar.tipMultiLevelSymbols": "多層次符號清單", + "DE.Views.Toolbar.tipMultiLevelVarious": "多層次數字清單", + "DE.Views.Toolbar.tipNumbers": "編號", + "DE.Views.Toolbar.tipPageBreak": "插入分頁符或分節符", + "DE.Views.Toolbar.tipPageMargins": "頁邊距", + "DE.Views.Toolbar.tipPageOrient": "頁面方向", + "DE.Views.Toolbar.tipPageSize": "頁面大小", + "DE.Views.Toolbar.tipParagraphStyle": "段落風格", + "DE.Views.Toolbar.tipPaste": "貼上", + "DE.Views.Toolbar.tipPrColor": "段落背景顏色", + "DE.Views.Toolbar.tipPrint": "列印", + "DE.Views.Toolbar.tipRedo": "重複", + "DE.Views.Toolbar.tipSave": "存檔", + "DE.Views.Toolbar.tipSaveCoauth": "儲存您的更改,以供其他帳戶查看。", + "DE.Views.Toolbar.tipSendBackward": "向後發送", + "DE.Views.Toolbar.tipSendForward": "向前進", + "DE.Views.Toolbar.tipShowHiddenChars": "非印刷字符", + "DE.Views.Toolbar.tipSynchronize": "該文檔已被其他帳戶更改。請單擊以儲存您的更改並重新加載更新。", + "DE.Views.Toolbar.tipUndo": "復原", + "DE.Views.Toolbar.tipWatermark": "編輯水印", + "DE.Views.Toolbar.txtDistribHor": "水平分佈", + "DE.Views.Toolbar.txtDistribVert": "垂直分佈", + "DE.Views.Toolbar.txtMarginAlign": "對齊頁邊距", + "DE.Views.Toolbar.txtObjectsAlign": "對齊所選物件", + "DE.Views.Toolbar.txtPageAlign": "對齊頁面", + "DE.Views.Toolbar.txtScheme1": "辦公室", + "DE.Views.Toolbar.txtScheme10": "中位數", + "DE.Views.Toolbar.txtScheme11": " 地鐵", + "DE.Views.Toolbar.txtScheme12": "模組", + "DE.Views.Toolbar.txtScheme13": "豐富的", + "DE.Views.Toolbar.txtScheme14": "Oriel", + "DE.Views.Toolbar.txtScheme15": "起源", + "DE.Views.Toolbar.txtScheme16": "紙", + "DE.Views.Toolbar.txtScheme17": "冬至", + "DE.Views.Toolbar.txtScheme18": "技術", + "DE.Views.Toolbar.txtScheme19": "跋涉", + "DE.Views.Toolbar.txtScheme2": "灰階", + "DE.Views.Toolbar.txtScheme20": "市區", + "DE.Views.Toolbar.txtScheme21": "感染力", + "DE.Views.Toolbar.txtScheme22": "新的Office", + "DE.Views.Toolbar.txtScheme3": "頂尖", + "DE.Views.Toolbar.txtScheme4": "方面", + "DE.Views.Toolbar.txtScheme5": "Civic", + "DE.Views.Toolbar.txtScheme6": "大堂", + "DE.Views.Toolbar.txtScheme7": "產權", + "DE.Views.Toolbar.txtScheme8": "流程", + "DE.Views.Toolbar.txtScheme9": "鑄造廠", + "DE.Views.ViewTab.textAlwaysShowToolbar": "永遠顯示工具欄", + "DE.Views.ViewTab.textDarkDocument": "夜間模式文件", + "DE.Views.ViewTab.textFitToPage": "配合紙張大小", + "DE.Views.ViewTab.textFitToWidth": "配合寬度", + "DE.Views.ViewTab.textInterfaceTheme": "介面主題", + "DE.Views.ViewTab.textNavigation": "導航", + "DE.Views.ViewTab.textRulers": "尺規", + "DE.Views.ViewTab.textStatusBar": "狀態欄", + "DE.Views.ViewTab.textZoom": "放大", + "DE.Views.WatermarkSettingsDialog.textAuto": "自動", + "DE.Views.WatermarkSettingsDialog.textBold": "粗體", + "DE.Views.WatermarkSettingsDialog.textColor": "文字顏色", + "DE.Views.WatermarkSettingsDialog.textDiagonal": "對角線", + "DE.Views.WatermarkSettingsDialog.textFont": "字體", + "DE.Views.WatermarkSettingsDialog.textFromFile": "從檔案", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "從存儲", + "DE.Views.WatermarkSettingsDialog.textFromUrl": "從 URL", + "DE.Views.WatermarkSettingsDialog.textHor": "水平", + "DE.Views.WatermarkSettingsDialog.textImageW": "圖像水印", + "DE.Views.WatermarkSettingsDialog.textItalic": "斜體", + "DE.Views.WatermarkSettingsDialog.textLanguage": "語言", + "DE.Views.WatermarkSettingsDialog.textLayout": "佈局", + "DE.Views.WatermarkSettingsDialog.textNone": "無", + "DE.Views.WatermarkSettingsDialog.textScale": "尺度", + "DE.Views.WatermarkSettingsDialog.textSelect": "選擇圖片", + "DE.Views.WatermarkSettingsDialog.textStrikeout": "淘汰", + "DE.Views.WatermarkSettingsDialog.textText": "文字", + "DE.Views.WatermarkSettingsDialog.textTextW": "文字水印", + "DE.Views.WatermarkSettingsDialog.textTitle": "浮水印設定", + "DE.Views.WatermarkSettingsDialog.textTransparency": "半透明", + "DE.Views.WatermarkSettingsDialog.textUnderline": "底線", + "DE.Views.WatermarkSettingsDialog.tipFontName": "字體名稱", + "DE.Views.WatermarkSettingsDialog.tipFontSize": "字體大小" +} \ No newline at end of file diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index 541aa28d4..4d3c8dae7 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -918,17 +918,6 @@ "DE.Controllers.Toolbar.textSymbols": "符号", "DE.Controllers.Toolbar.textTabForms": "表单", "DE.Controllers.Toolbar.textWarning": "警告", - "DE.Controllers.Toolbar.tipMarkersArrow": "箭头项目符号", - "DE.Controllers.Toolbar.tipMarkersCheckmark": "选中标记项目符号", - "DE.Controllers.Toolbar.tipMarkersDash": "划线项目符号", - "DE.Controllers.Toolbar.tipMarkersFRhombus": "实心菱形项目符号", - "DE.Controllers.Toolbar.tipMarkersFRound": "实心圆形项目符号", - "DE.Controllers.Toolbar.tipMarkersFSquare": "实心方形项目符号", - "DE.Controllers.Toolbar.tipMarkersHRound": "空心圆形项目符号", - "DE.Controllers.Toolbar.tipMarkersStar": "星形项目符号", - "DE.Controllers.Toolbar.tipMultiLevelNumbered": "多级编号", - "DE.Controllers.Toolbar.tipMultiLevelSymbols": "多级项目符号", - "DE.Controllers.Toolbar.tipMultiLevelVarious": "多级各种编号", "DE.Controllers.Toolbar.txtAccent_Accent": "急性", "DE.Controllers.Toolbar.txtAccent_ArrowD": "右上方的箭头在上方", "DE.Controllers.Toolbar.txtAccent_ArrowL": "向左箭头", @@ -1413,8 +1402,8 @@ "DE.Views.DocumentHolder.deleteRowText": "删除行", "DE.Views.DocumentHolder.deleteTableText": "删除表", "DE.Views.DocumentHolder.deleteText": "删除", - "DE.Views.DocumentHolder.direct270Text": "旋转270°", - "DE.Views.DocumentHolder.direct90Text": "旋转90°", + "DE.Views.DocumentHolder.direct270Text": "向上旋转文字", + "DE.Views.DocumentHolder.direct90Text": "向下旋转文字", "DE.Views.DocumentHolder.directHText": "水平的", "DE.Views.DocumentHolder.directionText": "文字方向", "DE.Views.DocumentHolder.editChartText": "编辑数据", @@ -1517,7 +1506,7 @@ "DE.Views.DocumentHolder.textShapeAlignBottom": "底部对齐", "DE.Views.DocumentHolder.textShapeAlignCenter": "居中对齐", "DE.Views.DocumentHolder.textShapeAlignLeft": "左对齐", - "DE.Views.DocumentHolder.textShapeAlignMiddle": "对齐中间", + "DE.Views.DocumentHolder.textShapeAlignMiddle": "垂直居中", "DE.Views.DocumentHolder.textShapeAlignRight": "右对齐", "DE.Views.DocumentHolder.textShapeAlignTop": "顶端对齐", "DE.Views.DocumentHolder.textStartNewList": "开始新列表", @@ -1531,14 +1520,6 @@ "DE.Views.DocumentHolder.textUpdateTOC": "刷新目录", "DE.Views.DocumentHolder.textWrap": "包裹风格", "DE.Views.DocumentHolder.tipIsLocked": "此元素正在由其他用户编辑。", - "DE.Views.DocumentHolder.tipMarkersArrow": "箭头项目符号", - "DE.Views.DocumentHolder.tipMarkersCheckmark": "选中标记项目符号", - "DE.Views.DocumentHolder.tipMarkersDash": "划线项目符号", - "DE.Views.DocumentHolder.tipMarkersFRhombus": "实心菱形项目符号", - "DE.Views.DocumentHolder.tipMarkersFRound": "实心圆形项目符号", - "DE.Views.DocumentHolder.tipMarkersFSquare": "实心方形项目符号", - "DE.Views.DocumentHolder.tipMarkersHRound": "空心圆形项目符号", - "DE.Views.DocumentHolder.tipMarkersStar": "星形项目符号", "DE.Views.DocumentHolder.toDictionaryText": "添加到词典", "DE.Views.DocumentHolder.txtAddBottom": "添加底部边框", "DE.Views.DocumentHolder.txtAddFractionBar": "添加分数栏", @@ -1681,7 +1662,7 @@ "DE.Views.FileMenu.btnCloseMenuCaption": "关闭菜单", "DE.Views.FileMenu.btnCreateNewCaption": "新建", "DE.Views.FileMenu.btnDownloadCaption": "下载为...", - "DE.Views.FileMenu.btnExitCaption": "退出", + "DE.Views.FileMenu.btnExitCaption": "关闭", "DE.Views.FileMenu.btnFileOpenCaption": "打开...", "DE.Views.FileMenu.btnHelpCaption": "帮助", "DE.Views.FileMenu.btnHistoryCaption": "版本历史", @@ -2136,6 +2117,7 @@ "DE.Views.Navigation.txtDemote": "降级", "DE.Views.Navigation.txtEmpty": "文档中无标题。
文本中应用标题样式以便使其出现在目录中。", "DE.Views.Navigation.txtEmptyItem": "空标题", + "DE.Views.Navigation.txtEmptyViewer": "文档中无标题。", "DE.Views.Navigation.txtExpand": "展开全部", "DE.Views.Navigation.txtExpandToLevel": "展开到级别", "DE.Views.Navigation.txtHeadingAfter": "之后的新标题", @@ -2771,7 +2753,18 @@ "DE.Views.Toolbar.tipLineSpace": "段线间距", "DE.Views.Toolbar.tipMailRecepients": "邮件合并", "DE.Views.Toolbar.tipMarkers": "项目符号", + "DE.Views.Toolbar.tipMarkersArrow": "箭头项目符号", + "DE.Views.Toolbar.tipMarkersCheckmark": "选中标记项目符号", + "DE.Views.Toolbar.tipMarkersDash": "划线项目符号", + "DE.Views.Toolbar.tipMarkersFRhombus": "实心菱形项目符号", + "DE.Views.Toolbar.tipMarkersFRound": "实心圆形项目符号", + "DE.Views.Toolbar.tipMarkersFSquare": "实心方形项目符号", + "DE.Views.Toolbar.tipMarkersHRound": "空心圆形项目符号", + "DE.Views.Toolbar.tipMarkersStar": "星形项目符号", + "DE.Views.Toolbar.tipMultiLevelNumbered": "多级编号", "DE.Views.Toolbar.tipMultilevels": "多级列表", + "DE.Views.Toolbar.tipMultiLevelSymbols": "多级项目符号", + "DE.Views.Toolbar.tipMultiLevelVarious": "多级各种编号", "DE.Views.Toolbar.tipNumbers": "编号", "DE.Views.Toolbar.tipPageBreak": "插入页面或分节符", "DE.Views.Toolbar.tipPageMargins": "页边距", diff --git a/apps/documenteditor/main/resources/img/blank.svg b/apps/documenteditor/main/resources/img/blank.svg index af4a89b89..46e6049d0 100644 --- a/apps/documenteditor/main/resources/img/blank.svg +++ b/apps/documenteditor/main/resources/img/blank.svg @@ -1,5 +1,5 @@ - + - + diff --git a/apps/documenteditor/main/resources/img/file-template.svg b/apps/documenteditor/main/resources/img/file-template.svg index e54f5de97..a0ea6ca5f 100644 --- a/apps/documenteditor/main/resources/img/file-template.svg +++ b/apps/documenteditor/main/resources/img/file-template.svg @@ -1,5 +1,5 @@ - + @@ -11,5 +11,5 @@ - + \ No newline at end of file diff --git a/apps/documenteditor/main/resources/img/recent-file.svg b/apps/documenteditor/main/resources/img/recent-file.svg index d4743ea76..c5f03d573 100644 --- a/apps/documenteditor/main/resources/img/recent-file.svg +++ b/apps/documenteditor/main/resources/img/recent-file.svg @@ -1,9 +1,9 @@ - + - + diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/add-text.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/add-text.png new file mode 100644 index 000000000..0585a12d0 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.25x/add-text.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.5x/add-text.png b/apps/documenteditor/main/resources/img/toolbar/1.5x/add-text.png new file mode 100644 index 000000000..220136a9b Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.5x/add-text.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/add-text.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/add-text.png new file mode 100644 index 000000000..03ee0fc03 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.75x/add-text.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/add-text.png b/apps/documenteditor/main/resources/img/toolbar/1x/add-text.png new file mode 100644 index 000000000..4e9d0a355 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1x/add-text.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/2x/add-text.png b/apps/documenteditor/main/resources/img/toolbar/2x/add-text.png new file mode 100644 index 000000000..cc1f30fd4 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/2x/add-text.png differ diff --git a/apps/documenteditor/main/resources/less/filemenu.less b/apps/documenteditor/main/resources/less/filemenu.less index 25d9a7e25..260a36e47 100644 --- a/apps/documenteditor/main/resources/less/filemenu.less +++ b/apps/documenteditor/main/resources/less/filemenu.less @@ -100,8 +100,58 @@ height: 125px; cursor: pointer; - svg&:hover { - opacity:0.85; + .svg-format- { + &docx { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/docx.svg) no-repeat center"; + } + &pdf { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/pdf.svg) no-repeat center"; + } + &odt { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/odt.svg) no-repeat center"; + } + &txt { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/txt.svg) no-repeat center"; + } + &dotx { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/dotx.svg) no-repeat center"; + } + &pdfa { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/pdfa.svg) no-repeat center"; + } + &ott { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/ott.svg) no-repeat center"; + } + &rtf { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/rtf.svg) no-repeat center"; + } + &docm { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/docm.svg) no-repeat center"; + } + &docxf { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/docxf.svg) no-repeat center"; + } + &oform { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/oform.svg) no-repeat center"; + } + &html { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/html.svg) no-repeat center"; + } + &fb2 { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/fb2.svg) no-repeat center"; + } + &epub { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/epub.svg) no-repeat center"; + } + } + + div { + display: block; + height: 100%; + width: 100%; + &:hover { + opacity: 0.85; + } } } @@ -110,6 +160,21 @@ width: 96px; height: 96px; cursor: pointer; + + .svg-format-blank { + background: ~"url(resources/img/blank.svg) no-repeat center" ; + } + .svg-file-template{ + background: ~"url(resources/img/file-template.svg) no-repeat center" ; + } + + div { + display: block; + height: 100%; + width: 100%; + } + + } #panel-settings, @@ -269,12 +334,16 @@ .recent-icon { float: left; + display: inline-block; width: 25px; height: 25px; margin-top: 1px; - svg { + div { width: 100%; height: 100%; + .svg-file-recent { + background: ~"url(resources/img/recent-file.svg) no-repeat top"; + } } } diff --git a/apps/documenteditor/main/resources/less/statusbar.less b/apps/documenteditor/main/resources/less/statusbar.less index a20d7e158..b59016d5d 100644 --- a/apps/documenteditor/main/resources/less/statusbar.less +++ b/apps/documenteditor/main/resources/less/statusbar.less @@ -4,15 +4,11 @@ .status-label { position: relative; - top: 1px; } #label-pages, #label-zoom { cursor: pointer; } - #label-pages, #label-action { - margin-top: 2px; - } #users-icon,#status-users-count { display: inline-block; @@ -41,11 +37,20 @@ .status-group { display: table-cell; white-space: nowrap; - padding-top: 3px; vertical-align: top; &.dropup { position: static; } + + .status-label.margin-top-large { + margin-top: 6px; + } + + button.margin-top-small, + .margin-top-small > button, + .margin-top-small > .btn-group { + margin-top: 3px; + } } .separator { @@ -53,7 +58,6 @@ &.short { height: 25px; - margin-top: -2px; } &.space { @@ -70,7 +74,8 @@ .cnt-zoom { display: inline-block; - + vertical-align: middle; + margin-top: 4px; .dropdown-menu { min-width: 80px; margin-left: -4px; diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index e60226d78..af692d382 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -397,7 +397,9 @@ "unknownErrorText": "Naməlum xəta.", "uploadImageExtMessage": "Naməlum təsvir formatı.", "uploadImageFileCountMessage": "Heç bir təsvir yüklənməyib.", - "uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır." + "uploadImageSizeMessage": "Təsvir çox böyükdür. Maksimum ölçü 25 MB-dır.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Məlumat yüklənir...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "Saxlanmamış dəyişiklikləriniz var. Avtomatik saxlanmanı gözləmək üçün \"Bu Səhifədə Qalın\" üzərinə klikləyin. Bütün saxlanmamış dəyişiklikləri ləğv etmək üçün \"Bu səhifədən Çıxın\" hissəsinin üzərinə klikləyin.", diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index bf8883a9f..0f7c745f2 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -397,7 +397,9 @@ "openErrorText": "An error has occurred while opening the file", "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Загрузка даных…", @@ -638,16 +640,22 @@ "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFastWV": "Fast Web View", "textFindAndReplaceAll": "Find and Replace All", - "txtDownloadTxt": "Download TXT", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password will be reset", - "txtScheme22": "New Office", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes", + "txtDownloadTxt": "Download TXT", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme22": "New Office" }, "Toolbar": { "dlgLeaveTitleText": "Вы выходзіце з праграмы", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index 97fde94a6..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -397,7 +397,9 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 0dec8c3c7..89ca7da32 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -397,7 +397,9 @@ "unknownErrorText": "Error desconegut.", "uploadImageExtMessage": "Format d'imatge desconegut.", "uploadImageFileCountMessage": "No s'ha carregat cap imatge.", - "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB." + "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "S'estan carregant les dades...", @@ -570,6 +572,7 @@ "textEnableAll": "Habilita-ho tot", "textEnableAllMacrosWithoutNotification": "Habilita totes les macros sense notificació", "textEncoding": "Codificació", + "textFastWV": "Vista Web Ràpida", "textFind": "Cerca", "textFindAndReplace": "Cerca i substitueix", "textFindAndReplaceAll": "Cerca i substitueix-ho tot", @@ -588,6 +591,7 @@ "textMargins": "Marges", "textMarginsH": "Els marges superior i inferior són massa alts per a una alçada de pàgina determinada", "textMarginsW": "Els marges esquerre i dret són massa amples per a una amplada de pàgina determinada", + "textNo": "No", "textNoCharacters": "Caràcters que no es poden imprimir", "textNoTextFound": "No s'ha trobat el text", "textOk": "D'acord", @@ -595,7 +599,10 @@ "textOrientation": "Orientació", "textOwner": "Propietari", "textPages": "Pàgines", + "textPageSize": "Mida Pàgina", "textParagraphs": "Paràgrafs", + "textPdfTagged": "PDF Etiquetat", + "textPdfVer": "Versió PDF", "textPoint": "Punt", "textPortrait": "Orientació vertical", "textPrint": "Imprimeix", @@ -617,6 +624,7 @@ "textUnitOfMeasurement": "Unitat de mesura", "textUploaded": "S'ha carregat", "textWords": "Paraules", + "textYes": "Sí", "txtDownloadTxt": "Baixa TXT", "txtIncorrectPwd": "La contrasenya no és correcta", "txtOk": "D'acord", @@ -642,12 +650,12 @@ "txtScheme6": "Esplanada", "txtScheme7": "Equitat", "txtScheme8": "Flux", - "txtScheme9": "Foneria", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "txtScheme9": "Foneria" }, "Toolbar": { "dlgLeaveMsgText": "Tens canvis sense desar. Fes clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Fes clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 55a84acb0..3162561ff 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -397,7 +397,9 @@ "unknownErrorText": "Neznámá chyba.", "uploadImageExtMessage": "Neznámý formát obrázku.", "uploadImageFileCountMessage": "Nenahrány žádné obrázky.", - "uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB." + "uploadImageSizeMessage": "Obrázek je příliš velký. Maximální velikost je 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Načítání dat...", @@ -570,6 +572,7 @@ "textEnableAll": "Zapnout vše", "textEnableAllMacrosWithoutNotification": "Povolit všechna makra bez notifikací", "textEncoding": "Kódování", + "textFastWV": "Rychlé zobrazení stránky", "textFind": "Najít", "textFindAndReplace": "Najít a nahradit", "textFindAndReplaceAll": "Najít a nahradit vše", @@ -588,6 +591,7 @@ "textMargins": "Okraje", "textMarginsH": "Horní a spodní okraj je příliš velký vzhledem k dané výšce stránky", "textMarginsW": "Okraje vlevo a vpravo jsou příliš velké vzhledem k šířce stránky", + "textNo": "Ne", "textNoCharacters": "Netisknutelné znaky", "textNoTextFound": "Text nebyl nalezen", "textOk": "OK", @@ -595,7 +599,10 @@ "textOrientation": "Orientace", "textOwner": "Vlastník", "textPages": "Stránky", + "textPageSize": "Velikost stránky", "textParagraphs": "Odstavce", + "textPdfTagged": "Označené PDF", + "textPdfVer": "Verze PDF", "textPoint": "Bod", "textPortrait": "Na výšku", "textPrint": "Tisk", @@ -617,6 +624,7 @@ "textUnitOfMeasurement": "Měřit v jednotkách", "textUploaded": "Nahráno", "textWords": "Slova", + "textYes": "Ano", "txtDownloadTxt": "Stáhnout TXT", "txtIncorrectPwd": "Heslo je chybné", "txtOk": "OK", @@ -642,12 +650,12 @@ "txtScheme6": "Hala", "txtScheme7": "Rovnost", "txtScheme8": "Tok", - "txtScheme9": "Slévárna", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "txtScheme9": "Slévárna" }, "Toolbar": { "dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Klikněte na 'Zůstat na této stránce'. Klikněte na 'Opustit tuto stránku' pro zahození neuložených změn.", diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index 97fde94a6..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -397,7 +397,9 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 4c0ad5f90..14036dd2d 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -397,7 +397,9 @@ "unknownErrorText": "Unbekannter Fehler.", "uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", - "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Daten werden geladen...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index a64efce61..afcb3ab49 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -397,7 +397,9 @@ "unknownErrorText": "Άγνωστο σφάλμα.", "uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", "uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", - "uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB." + "uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Φόρτωση δεδομένων...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές. Πατήστε 'Παραμονή στη Σελίδα' για να περιμένετε την αυτόματη αποθήκευση. Πατήστε 'Έξοδος από τη Σελίδα' για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index e80ba9648..a572771a2 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -224,7 +224,7 @@ "textBefore": "Before", "textBehind": "Behind Text", "textBorder": "Border", - "textBringToForeground": "Bring to foreground", + "textBringToForeground": "Bring to Foreground", "textBullets": "Bullets", "textBulletsAndNumbers": "Bullets & Numbers", "textCellMargins": "Cell Margins", @@ -387,6 +387,8 @@ "errorUserDrop": "The file can't be accessed right now.", "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "notcriticalErrorTitle": "Warning", "openErrorText": "An error has occurred while opening the file", "saveErrorText": "An error has occurred while saving the file", @@ -570,6 +572,7 @@ "textEnableAll": "Enable All", "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", "textEncoding": "Encoding", + "textFastWV": "Fast Web View", "textFind": "Find", "textFindAndReplace": "Find and Replace", "textFindAndReplaceAll": "Find and Replace All", @@ -589,6 +592,7 @@ "textMargins": "Margins", "textMarginsH": "Top and bottom margins are too high for a given page height", "textMarginsW": "Left and right margins are too wide for a given page width", + "textNo": "No", "textNoCharacters": "Nonprinting Characters", "textNoTextFound": "Text not found", "textOk": "Ok", @@ -596,7 +600,10 @@ "textOrientation": "Orientation", "textOwner": "Owner", "textPages": "Pages", + "textPageSize": "Page Size", "textParagraphs": "Paragraphs", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", "textPoint": "Point", "textPortrait": "Portrait", "textPrint": "Print", @@ -618,6 +625,7 @@ "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", "textWords": "Words", + "textYes": "Yes", "txtDownloadTxt": "Download TXT", "txtIncorrectPwd": "Password is incorrect", "txtOk": "Ok", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index c9078153c..3293e1885 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -397,7 +397,9 @@ "unknownErrorText": "Error desconocido.", "uploadImageExtMessage": "Formato de imagen desconocido.", "uploadImageFileCountMessage": "No hay imágenes subidas.", - "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB." + "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Cargando datos...", @@ -570,6 +572,7 @@ "textEnableAll": "Habilitar todo", "textEnableAllMacrosWithoutNotification": "Habilitar todas las macros sin notificación", "textEncoding": "Codificación", + "textFastWV": "Vista rápida de la web", "textFind": "Buscar", "textFindAndReplace": "Buscar y reemplazar", "textFindAndReplaceAll": "Buscar y reemplazar todo", @@ -588,6 +591,7 @@ "textMargins": "Márgenes", "textMarginsH": "Márgenes superior e inferior son demasiado altos para una altura de página determinada ", "textMarginsW": "Los márgenes izquierdo y derecho son demasiado amplios para un ancho de página determinado", + "textNo": "No", "textNoCharacters": "Caracteres no imprimibles", "textNoTextFound": "Texto no encontrado", "textOk": "OK", @@ -595,7 +599,10 @@ "textOrientation": "Orientación ", "textOwner": "Propietario", "textPages": "Páginas", + "textPageSize": "Tamaño de la página", "textParagraphs": "Párrafos", + "textPdfTagged": "PDF etiquetado", + "textPdfVer": "Versión PDF", "textPoint": "Punto", "textPortrait": "Vertical", "textPrint": "Imprimir", @@ -617,6 +624,7 @@ "textUnitOfMeasurement": "Unidad de medida", "textUploaded": "Cargado", "textWords": "Palabras", + "textYes": "Sí", "txtDownloadTxt": "Descargar TXT", "txtIncorrectPwd": "La contraseña es incorrecta", "txtOk": "OK", @@ -642,12 +650,12 @@ "txtScheme6": "Concurrencia", "txtScheme7": "Equidad ", "txtScheme8": "Flujo", - "txtScheme9": "Fundición", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "txtScheme9": "Fundición" }, "Toolbar": { "dlgLeaveMsgText": "Tiene cambios sin guardar. Haga clic en \"Permanecer en esta página\" para esperar a que se guarde automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index 97fde94a6..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -397,7 +397,9 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index cc2b96cff..127f375e4 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -397,7 +397,9 @@ "unknownErrorText": "Erreur inconnue.", "uploadImageExtMessage": "Format d'image inconnu.", "uploadImageFileCountMessage": "Aucune image chargée.", - "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Chargement des données en cours...", @@ -617,6 +619,7 @@ "textUnitOfMeasurement": "Unité de mesure", "textUploaded": "Chargé", "textWords": "Mots", + "textYes": "Oui", "txtDownloadTxt": "Télécharger le TXT", "txtIncorrectPwd": "Mot de passe incorrect", "txtOk": "Ok", @@ -647,7 +650,12 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version" }, "Toolbar": { "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json index 13d98227b..7a9d2167d 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -397,7 +397,9 @@ "unknownErrorText": "Erro descoñecido.", "uploadImageExtMessage": "Formato de imaxe descoñecido.", "uploadImageFileCountMessage": "Non hai imaxes subidas.", - "uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB." + "uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Cargando datos...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "Ten cambios sen gardar. Prema en \"Permanecer nesta páxina\" para esperar a que se garde automaticamente. Prema en \"Saír desta páxina\" para descartar todos os cambios non gardados.", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index c3aed9719..fd1878858 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -397,7 +397,9 @@ "unknownErrorText": "Ismeretlen hiba.", "uploadImageExtMessage": "Ismeretlen képformátum.", "uploadImageFileCountMessage": "Nincs kép feltöltve.", - "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB." + "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Adatok betöltése...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "Nem mentett módosításai vannak. Kattintson a „Maradj ezen az oldalon” gombra az automatikus mentés megvárásához. Kattintson a \"Hagyja el ezt az oldalt\" gombra az összes nem mentett módosítás elvetéséhez.", diff --git a/apps/documenteditor/mobile/locale/id.json b/apps/documenteditor/mobile/locale/id.json new file mode 100644 index 000000000..0195441eb --- /dev/null +++ b/apps/documenteditor/mobile/locale/id.json @@ -0,0 +1,666 @@ +{ + "About": { + "textAbout": "Tentang", + "textAddress": "Alamat", + "textBack": "Kembali", + "textEmail": "Email", + "textPoweredBy": "Didukung oleh", + "textTel": "Tel", + "textVersion": "Versi" + }, + "Add": { + "notcriticalErrorTitle": "Peringatan", + "textAddLink": "Tambah tautan", + "textAddress": "Alamat", + "textBack": "Kembali", + "textBelowText": "Di bawah teks", + "textBottomOfPage": "Bawah halaman", + "textBreak": "Break", + "textCancel": "Batalkan", + "textCenterBottom": "Tengah Bawah", + "textCenterTop": "Tengah Atas", + "textColumnBreak": "Break Kolom", + "textColumns": "Kolom", + "textComment": "Komentar", + "textContinuousPage": "Halaman Bersambung", + "textCurrentPosition": "Posisi Saat Ini", + "textDisplay": "Tampilan", + "textEmptyImgUrl": "Anda harus menentukan URL gambar.", + "textEvenPage": "Halaman Genap", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Gambar", + "textImageURL": "URL Gambar", + "textInsert": "Sisipkan", + "textInsertFootnote": "Sisipkan Footnote", + "textInsertImage": "Sisipkan Gambar", + "textLeftBottom": "Bawah Kiri", + "textLeftTop": "Kiri Atas", + "textLink": "Tautan", + "textLinkSettings": "Pengaturan Link", + "textLocation": "Lokasi", + "textNextPage": "Halaman Selanjutnya", + "textOddPage": "Halaman Ganjil", + "textOk": "OK", + "textOther": "Lainnya", + "textPageBreak": "Break Halaman", + "textPageNumber": "Nomor halaman", + "textPictureFromLibrary": "Gambar dari Perpustakaan", + "textPictureFromURL": "Gambar dari URL", + "textPosition": "Posisi", + "textRightBottom": "Kanan Bawah", + "textRightTop": "Kanan Atas", + "textRows": "Baris", + "textScreenTip": "Tip Layar", + "textSectionBreak": "Break Sesi", + "textShape": "Warna Latar", + "textStartAt": "Dimulai pada", + "textTable": "Tabel", + "textTableSize": "Ukuran Tabel", + "txtNotUrl": "Area ini harus dalam format URL “http://www.contoh.com”", + "textTableContents": "Table of Contents", + "textWithPageNumbers": "With Page Numbers", + "textWithBlueLinks": "With Blue Links" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Peringatan", + "textAccept": "Terima", + "textAcceptAllChanges": "Terima semua perubahan", + "textAddComment": "Tambahkan komentar", + "textAddReply": "Tambahkan Balasan", + "textAllChangesAcceptedPreview": "Semua perubahan diterima (Preview)", + "textAllChangesEditing": "Semua perubahan (Editing)", + "textAllChangesRejectedPreview": "Semua perubahan ditolak (Preview)", + "textAtLeast": "sekurang-kurangnya", + "textAuto": "Otomatis", + "textBack": "Kembali", + "textBaseline": "Baseline", + "textBold": "Tebal", + "textBreakBefore": "Jeda halaman sebelum", + "textCancel": "Batalkan", + "textCaps": "Huruf kapital semua", + "textCenter": "Sejajar tengah", + "textChart": "Bagan", + "textCollaboration": "Kolaborasi", + "textColor": "Warna Huruf", + "textComments": "Komentar", + "textContextual": "Jangan menambahkan interval diantara paragraf dengan style yang sama", + "textDelete": "Hapus", + "textDeleteComment": "Hapus Komentar", + "textDeleted": "Dihapus:", + "textDeleteReply": "Hapus Reply", + "textDisplayMode": "Mode Tampilan", + "textDone": "Selesai", + "textDStrikeout": "Strikeout ganda", + "textEdit": "Sunting", + "textEditComment": "Edit Komentar", + "textEditReply": "Edit Reply", + "textEditUser": "User yang sedang edit file:", + "textEquation": "Persamaan", + "textExact": "persis", + "textFinal": "Final", + "textFirstLine": "Baris Pertama", + "textFormatted": "Diformat", + "textHighlight": "Warna Sorot", + "textImage": "Gambar", + "textIndentLeft": "Indent kiri", + "textIndentRight": "Indent kanan", + "textInserted": "Disisipkan:", + "textItalic": "Miring", + "textJustify": "Rata ", + "textKeepLines": "Pertahankan garis bersama", + "textKeepNext": "Satukan dengan berikutnya", + "textLeft": "Sejajar kiri", + "textLineSpacing": "Spasi Antar Baris: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Apakah Anda ingin menghapus komentar ini?", + "textMessageDeleteReply": "Apakah Anda ingin menghapus reply ini?", + "textMultiple": "banyak", + "textNoBreakBefore": "Tanpa break halaman sebelum", + "textNoChanges": "Tidak ada perubahan.", + "textNoComments": "Dokumen ini tidak memiliki komentar", + "textNoContextual": "Tambah jarak diantara", + "textNoKeepLines": "Jangan satukan garis", + "textNoKeepNext": "Jangan satukan dengan berikutnya", + "textNot": "Tidak ", + "textNoWidow": "Tanpa kontrol widow", + "textNum": "Ganti penomoran", + "textOk": "OK", + "textOriginal": "Original", + "textParaDeleted": "Paragraf Dihapus", + "textParaFormatted": "Paragraf Diformat", + "textParaInserted": "Paragraf Disisipkan", + "textParaMoveFromDown": "Dipindahkan Kebawah:", + "textParaMoveFromUp": "Dipindahkan Keatas:", + "textParaMoveTo": "Dipindahkan", + "textPosition": "Posisi", + "textReject": "Tolak", + "textRejectAllChanges": "Tolak Semua Perubahan", + "textReopen": "Buka lagi", + "textResolve": "Selesaikan", + "textReview": "Ulasan", + "textReviewChange": "Review Perubahan", + "textRight": "Rata kanan", + "textShape": "Warna Latar", + "textShd": "Warna latar", + "textSmallCaps": "Huruf Ukuran Kecil", + "textSpacing": "Spasi", + "textSpacingAfter": "Spacing setelah", + "textSpacingBefore": "Spacing sebelum", + "textStrikeout": "Strikeout", + "textSubScript": "Subskrip", + "textSuperScript": "Superskrip", + "textTableChanged": "Pengaturan Tabel Diganti", + "textTableRowsAdd": "Baris Tabel Ditambahkan", + "textTableRowsDel": "Baris Tabel Dihapus", + "textTabs": "Ganti tab", + "textTrackChanges": "Lacak Perubahan", + "textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.", + "textUnderline": "Garis bawah", + "textUsers": "Pengguna", + "textWidow": "Kontrol widow" + }, + "HighlightColorPalette": { + "textNoFill": "Tanpa Isi" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Warna", + "textStandartColors": "Warna Standar", + "textThemeColors": "Warna Tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Tindakan copy, cut dan paste menggunakan menu konteks hanya akan dilakukan dalam file saat ini.", + "menuAddComment": "Tambahkan komentar", + "menuAddLink": "Tambah tautan", + "menuCancel": "Batalkan", + "menuContinueNumbering": "Lanjut penomoran", + "menuDelete": "Hapus", + "menuDeleteTable": "Hapus Tabel", + "menuEdit": "Sunting", + "menuJoinList": "Gabung ke list sebelumnya", + "menuMerge": "Merge", + "menuMore": "Lainnya", + "menuOpenLink": "Buka Link", + "menuReview": "Ulasan", + "menuReviewChange": "Review Perubahan", + "menuSeparateList": "Pisahkan list", + "menuSplit": "Split", + "menuStartNewList": "Mulai list baru", + "menuStartNumberingFrom": "Atur nilai penomoran", + "menuViewComment": "Tampilkan Komentar", + "textCancel": "Batalkan", + "textColumns": "Kolom", + "textCopyCutPasteActions": "Salin, Potong dan Tempel", + "textDoNotShowAgain": "Jangan tampilkan lagi", + "textNumberingValue": "Penomoran Nilai", + "textOk": "OK", + "textRows": "Baris", + "textRefreshEntireTable": "Refresh entire table", + "textRefreshPageNumbersOnly": "Refresh page numbers only" + }, + "Edit": { + "notcriticalErrorTitle": "Peringatan", + "textActualSize": "Ukuran Sebenarnya", + "textAddCustomColor": "Tambah warna kustom", + "textAdditional": "Tambahan", + "textAdditionalFormatting": "Pemformatan tambahan", + "textAddress": "Alamat", + "textAdvanced": "Tingkat tinggi", + "textAdvancedSettings": "Pengaturan Lanjut", + "textAfter": "Setelah", + "textAlign": "Ratakan", + "textAllCaps": "Huruf kapital semua", + "textAllowOverlap": "Ijinkan menumpuk", + "textApril": "April", + "textAugust": "Agustus", + "textAuto": "Otomatis", + "textAutomatic": "Otomatis", + "textBack": "Kembali", + "textBackground": "Background", + "textBandedColumn": "Kolom Berpita", + "textBandedRow": "Baris Berpita", + "textBefore": "Sebelum", + "textBehind": "Di belakang", + "textBorder": "Pembatas", + "textBringToForeground": "Tampilkan di Halaman Muka", + "textBullets": "Butir", + "textBulletsAndNumbers": "Butir & Angka", + "textCellMargins": "Margin Sel", + "textChart": "Bagan", + "textClose": "Tutup", + "textColor": "Warna", + "textContinueFromPreviousSection": "Lanjut dari sesi sebelumnya", + "textCustomColor": "Custom Warna", + "textDecember": "Desember", + "textDesign": "Desain", + "textDifferentFirstPage": "Halaman pertama yang berbeda", + "textDifferentOddAndEvenPages": "Halaman ganjil dan genap yang berbeda", + "textDisplay": "Tampilan", + "textDistanceFromText": "Jarak dari teks", + "textDoubleStrikethrough": "Garis coret ganda", + "textEditLink": "Edit Link", + "textEffects": "Efek", + "textEmpty": "Kosong", + "textEmptyImgUrl": "Anda harus menentukan URL gambar.", + "textFebruary": "Februari", + "textFill": "Isian", + "textFirstColumn": "Kolom Pertama", + "textFirstLine": "Garis Pertama", + "textFlow": "Alur", + "textFontColor": "Warna Huruf", + "textFontColors": "Warna Font", + "textFonts": "Font", + "textFooter": "Footer", + "textFr": "Jum", + "textHeader": "Header", + "textHeaderRow": "Baris Header", + "textHighlightColor": "Warna Sorot", + "textHyperlink": "Hyperlink", + "textImage": "Gambar", + "textImageURL": "URL Gambar", + "textInFront": "Di depan", + "textInline": "Berderet", + "textJanuary": "Januari", + "textJuly": "Juli", + "textJune": "Juni", + "textKeepLinesTogether": "Tetap satukan garis", + "textKeepWithNext": "Satukan dengan berikutnya", + "textLastColumn": "Kolom Terakhir", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Spasi Antar Baris", + "textLink": "Tautan", + "textLinkSettings": "Pengaturan Link", + "textLinkToPrevious": "Tautkan dengan Sebelumnya", + "textMarch": "Maret", + "textMay": "Mei", + "textMo": "Sen", + "textMoveBackward": "Pindah Kebelakang", + "textMoveForward": "Majukan", + "textMoveWithText": "Pindah bersama teks", + "textNone": "tidak ada", + "textNoStyles": "Tanpa style untuk tipe grafik ini.", + "textNotUrl": "Area ini harus dalam format URL “http://www.contoh.com”", + "textNovember": "November", + "textNumbers": "Nomor", + "textOctober": "Oktober", + "textOk": "OK", + "textOpacity": "Opasitas", + "textOptions": "Pilihan", + "textOrphanControl": "Kontrol Orphan", + "textPageBreakBefore": "Jeda halaman sebelum", + "textPageNumbering": "Penomoran Halaman", + "textParagraph": "Paragraf", + "textParagraphStyles": "Style Paragraf", + "textPictureFromLibrary": "Gambar dari Perpustakaan", + "textPictureFromURL": "Gambar dari URL", + "textPt": "pt", + "textRemoveChart": "Hilangkan Grafik", + "textRemoveImage": "Hilangkan Gambar", + "textRemoveLink": "Hilangkan Link", + "textRemoveShape": "Hilangkan Bentuk", + "textRemoveTable": "Hilangkan Tabel", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Ulangi sebagai Baris Header", + "textReplace": "Ganti", + "textReplaceImage": "Ganti Gambar", + "textResizeToFitContent": "Ubah Ukuran untuk Cocok ke Konten", + "textSa": "Sab", + "textScreenTip": "Tip Layar", + "textSelectObjectToEdit": "Pilih objek untuk diedit", + "textSendToBackground": "Jalankan di Background", + "textSeptember": "September", + "textSettings": "Pengaturan", + "textShape": "Warna Latar", + "textSize": "Ukuran", + "textSmallCaps": "Huruf Ukuran Kecil", + "textSpaceBetweenParagraphs": "Spasi Antara Paragraf", + "textSquare": "Persegi", + "textStartAt": "Dimulai pada", + "textStrikethrough": "Coret ganda", + "textStyle": "Model", + "textStyleOptions": "Opsi Style", + "textSu": "Min", + "textSubscript": "Subskrip", + "textSuperscript": "Superskrip", + "textTable": "Tabel", + "textTableOptions": "Opsi Tabel", + "textText": "Teks", + "textTh": "Ka", + "textThrough": "Tembus", + "textTight": "Ketat", + "textTopAndBottom": "Atas dan bawah", + "textTotalRow": "Total Baris", + "textTu": "Sel", + "textType": "Ketik", + "textWe": "Rab", + "textWrap": "Wrap", + "textTableOfCont": "TOC", + "textPageNumbers": "Page Numbers", + "textSimple": "Simple", + "textRightAlign": "Right Align", + "textLeader": "Leader", + "textStructure": "Structure", + "textRefresh": "Refresh", + "textLevels": "Levels", + "textRemoveTableContent": "Remove table of content", + "textCurrent": "Current", + "textOnline": "Online", + "textClassic": "Classic", + "textDistinctive": "Distinctive", + "textCentered": "Centered", + "textFormal": "Formal", + "textStandard": "Standard", + "textModern": "Modern", + "textCancel": "Cancel", + "textRefreshEntireTable": "Refresh entire table", + "textRefreshPageNumbersOnly": "Refresh page numbers only", + "textStyles": "Styles", + "textAmountOfLevels": "Amount of Levels" + }, + "Error": { + "convertationTimeoutText": "Waktu konversi habis.", + "criticalErrorExtText": "Tekan 'OK' untuk kembali ke list dokumen.", + "criticalErrorTitle": "Kesalahan", + "downloadErrorText": "Unduhan gagal.", + "errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
Silakan hubungi admin Anda.", + "errorBadImageUrl": "URL Gambar salah", + "errorConnectToServer": "Tidak bisa menyimpan doc ini. Silakan periksa pengaturan koneksi atau hubungi admin Anda.
Ketika klik tombol 'OK', Anda akan diminta untuk download dokumen.", + "errorDatabaseConnection": "Eror eksternal.
Koneksi database bermasalah. Silakan hubungi support.", + "errorDataEncrypted": "Perubahan enkripsi sudah diterima dan tidak bisa diuraikan.", + "errorDataRange": "Rentang data salah.", + "errorDefaultMessage": "Kode kesalahan: %1", + "errorEditingDownloadas": "Ada kesalahan saat bekerja dengan dokumen.
Download dokumen untuk menyimpan file copy backup di lokal.", + "errorFilePassProtect": "Password file diproteksi dan tidak bisa dibuka.", + "errorFileSizeExceed": "Ukuran file melampaui limit server Anda.
Silakan, hubungi admin.", + "errorKeyEncrypt": "Deskriptor kunci tidak dikenal", + "errorKeyExpire": "Deskriptor kunci tidak berfungsi", + "errorLoadingFont": "Font tidak bisa dimuat.
Silakan kontak admin Server Dokumen Anda.", + "errorMailMergeLoadFile": "Loading gagal", + "errorMailMergeSaveFile": "Merge gagal.", + "errorSessionAbsolute": "Waktu edit dokumen sudah selesai. Silakan muat ulang halaman.", + "errorSessionIdle": "Dokumen sudah lama tidak diedit. Silakan muat ulang halaman.", + "errorSessionToken": "Koneksi ke server terganggu. Silakan muat ulang halaman.", + "errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu download file atau copy konten untuk memastikan tidak ada yang hilang, dan muat ulang halaman ini.", + "errorUserDrop": "File tidak bisa diakses sekarang.", + "errorUsersExceed": "Jumlah pengguna telah melebihi jumlah yang diijinkan dalam paket harga.", + "errorViewerDisconnect": "Koneksi terputus. Anda tetap bisa melihat dokumen,
tapi tidak bisa download atau print sampai koneksi terhubung dan halaman dimuat ulang.", + "notcriticalErrorTitle": "Peringatan", + "openErrorText": "Eror ketika membuka file", + "saveErrorText": "Eror ketika menyimpan file.", + "scriptLoadError": "Koneksi terlalu lambat dan beberapa komponen tidak bisa dibuka Silakan muat ulang halaman.", + "splitDividerErrorText": "Jumlah baris harus merupakan pembagi dari %1", + "splitMaxColsErrorText": "Jumlah kolom harus kurang dari %1", + "splitMaxRowsErrorText": "Jumlah baris harus kurang dari %1", + "unknownErrorText": "Kesalahan tidak diketahui.", + "uploadImageExtMessage": "Format gambar tidak dikenal.", + "uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.", + "uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." + }, + "LongActions": { + "applyChangesTextText": "Memuat data...", + "applyChangesTitleText": "Memuat Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Mengunduh", + "downloadTextText": "Mengunduh dokumen...", + "downloadTitleText": "Mengunduh Dokumen", + "loadFontsTextText": "Memuat data...", + "loadFontsTitleText": "Memuat Data", + "loadFontTextText": "Memuat data...", + "loadFontTitleText": "Memuat Data", + "loadImagesTextText": "Memuat gambar...", + "loadImagesTitleText": "Memuat Gambar", + "loadImageTextText": "Memuat gambar...", + "loadImageTitleText": "Memuat Gambar", + "loadingDocumentTextText": "Memuat dokumen...", + "loadingDocumentTitleText": "Memuat dokumen", + "mailMergeLoadFileText": "Loading Sumber Data...", + "mailMergeLoadFileTitle": "Loading Sumber Data...", + "openTextText": "Membuka Dokumen...", + "openTitleText": "Membuka Dokumen", + "printTextText": "Mencetak dokumen...", + "printTitleText": "Mencetak Dokumen", + "savePreparingText": "Bersiap untuk menyimpan", + "savePreparingTitle": "Bersiap untuk menyimpan. Silahkan menunggu...", + "saveTextText": "Menyimpan dokumen...", + "saveTitleText": "Menyimpan Dokumen", + "sendMergeText": "Mengirim Merge...", + "sendMergeTitle": "Mengirim Merge", + "textLoadingDocument": "Memuat dokumen", + "txtEditingMode": "Atur mode editing...", + "uploadImageTextText": "Mengunggah gambar...", + "uploadImageTitleText": "Mengunggah Gambar", + "waitText": "Silahkan menunggu" + }, + "Main": { + "criticalErrorTitle": "Kesalahan", + "errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
Silakan hubungi admin Anda.", + "errorOpensource": "Menggunakan versi Komunitas gratis, Anda bisa membuka dokumen hanya untuk dilihat. Untuk mengakses editor web mobile, diperlukan lisensi komersial.", + "errorProcessSaveResult": "Gagal menyimpan.", + "errorServerVersion": "Versi editor sudah di update. Halaman akan dimuat ulang untuk menerapkan perubahan.", + "errorUpdateVersion": "Versi file telah diubah. Halaman tidak akan dimuat ulang.", + "leavePageText": "Anda memiliki perubahan yang belum tersimpan. Klik 'Tetap di Halaman Ini' untuk menunggu simpan otomatis. Klik ‘Tinggalkan Halaman Ini’ untuk membatalkan semua perubahan yang belum disimpan.", + "notcriticalErrorTitle": "Peringatan", + "SDK": { + " -Section ": " -Sesi ", + "above": "Di atas", + "below": "di bawah", + "Caption": "Caption", + "Choose an item": "Pilih satu barang", + "Click to load image": "Klik untuk memuat gambar", + "Current Document": "Dokumen Saat Ini", + "Diagram Title": "Judul Grafik", + "endnote text": "Teks Endnote", + "Enter a date": "Masukkan tanggal", + "Error! Bookmark not defined": "Kesalahan! Bookmark tidak terdefinisikan.", + "Error! Main Document Only": "Kesalahan! Hanya Dokumen Utama.", + "Error! No text of specified style in document": "Kesalahan! Tidak ada teks dengan style sesuai spesifikasi di dokumen.", + "Error! Not a valid bookmark self-reference": "Kesalahan! Bukan bookmark self-reference yang valid.", + "Even Page ": "Halaman Genap ", + "First Page ": "Halaman Pertama ", + "Footer": "Footer", + "footnote text": "Teks Footnote", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Terlalu Besar", + "Intense Quote": "Quote Intens", + "Is Not In Table": "Tidak Ada di Tabel", + "List Paragraph": "List Paragraf", + "Missing Argument": "Argumen Tidak Ditemukan", + "Missing Operator": "Operator Tidak Ditemukan", + "No Spacing": "Tanpa Spacing", + "No table of contents entries found": "Tidak ada heading di dokumen. Terapkan style heading ke teks agar bisa terlihat di daftar isi.", + "No table of figures entries found": "Tidak ada daftar gambar yang ditemukan.", + "None": "Tidak ada", + "Normal": "Normal", + "Number Too Large To Format": "Nomor Terlalu Besar untuk Diformat", + "Odd Page ": "Halaman Ganjil ", + "Quote": "Kutip", + "Same as Previous": "Sama seperti Sebelumnya", + "Series": "Seri", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Index Tabel Tidak Boleh Nol", + "Table of Contents": "Daftar Isi", + "table of figures": "Daftar gambar", + "The Formula Not In Table": "Formula Tidak Ada di Tabel", + "Title": "Judul", + "TOC Heading": "Heading TOC", + "Type equation here": "Tulis persamaan disini", + "Undefined Bookmark": "Bookmark Tidak Terdefinisi", + "Unexpected End of Formula": "Akhir Formula Tidak Terduga", + "X Axis": "XAS Sumbu X", + "Y Axis": "Sumbu Y", + "Your text here": "Teks Anda di sini", + "Zero Divide": "Pembagi Nol" + }, + "textAnonymous": "Anonim", + "textBuyNow": "Kunjungi website", + "textClose": "Tutup", + "textContactUs": "Hubungi sales", + "textCustomLoader": "Maaf, Anda tidak diizinkan untuk mengganti loader. Hubungi departemen sales kami untuk mendapatkan harga.", + "textGuest": "Tamu", + "textHasMacros": "File berisi macros otomatis.
Apakah Anda ingin menjalankan macros?", + "textNo": "Tidak", + "textNoLicenseTitle": "Batas lisensi sudah tercapai", + "textNoTextFound": "Teks tidak ditemukan", + "textPaidFeature": "Fitur berbayar", + "textRemember": "Ingat pilihan saya", + "textReplaceSkipped": "Penggantian telah dilakukan. Ada {0} yang dilewatkan.", + "textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti :", + "textYes": "Ya", + "titleLicenseExp": "Lisensi kadaluwarsa", + "titleServerVersion": "Editor mengupdate", + "titleUpdateVersion": "Versi telah diubah", + "warnLicenseExceeded": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi admin Anda untuk mempelajari lebih lanjut.", + "warnLicenseExp": "Lisensi Anda sudah kadaluwarsa. Silakan update dan muat ulang halaman.", + "warnLicenseLimitedNoAccess": "Lisensi kadaluwarsa. Anda tidak memiliki akses untuk editing dokumen secara keseluruhan. Silakan hubungi admin Anda.", + "warnLicenseLimitedRenewed": "Lisensi perlu diperbaharui. Anda memiliki akses terbatas untuk edit dokumen.
Silakan hubungi admin Anda untuk mendapatkan akses penuh", + "warnLicenseUsersExceeded": "Anda sudah mencapai batas user untuk %1 editor. Hubungi admin Anda untuk mempelajari lebih lanjut.", + "warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi %1 tim sales untuk syarat personal upgrade.", + "warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", + "warnProcessRightsChange": "Anda tidak memiliki izin edit file ini." + }, + "Settings": { + "advDRMOptions": "File yang Diproteksi", + "advDRMPassword": "Kata Sandi", + "advTxtOptions": "Pilih Opsi TXT", + "closeButtonText": "Tutup File", + "notcriticalErrorTitle": "Peringatan", + "textAbout": "Tentang", + "textApplication": "Aplikasi", + "textApplicationSettings": "Pengaturan Aplikasi", + "textAuthor": "Penyusun", + "textBack": "Kembali", + "textBottom": "Bawah", + "textCancel": "Batalkan", + "textCaseSensitive": "Harus sama persis", + "textCentimeter": "Sentimeter", + "textChooseEncoding": "Pilih Encoding", + "textChooseTxtOptions": "Pilih Opsi TXT", + "textCollaboration": "Kolaborasi", + "textColorSchemes": "Skema Warna", + "textComment": "Komentar", + "textComments": "Komentar", + "textCommentsDisplay": "Display Komentar", + "textCreated": "Dibuat", + "textCustomSize": "Custom Ukuran", + "textDisableAll": "Nonaktifkan Semua", + "textDisableAllMacrosWithNotification": "Nonaktifkan semua macros dengan notifikasi", + "textDisableAllMacrosWithoutNotification": "Nonaktifkan semua macros tanpa notifikasi", + "textDocumentInfo": "Info Dokumen", + "textDocumentSettings": "Pengaturan Dokumen", + "textDocumentTitle": "Judul Dokumen", + "textDone": "Selesai", + "textDownload": "Unduh", + "textDownloadAs": "Unduh sebagai", + "textDownloadRtf": "Jika Anda lanjut simpan dengan format ini, beberapa format lain mungkin akan terhapus. Apakah Anda ingin melanjutkan?", + "textDownloadTxt": "Jika Anda lanjut simpan dengan format ini, semua fitur kecuali teks akan hilang. Apakah Anda ingin melanjutkan?", + "textEnableAll": "Aktifkan Semua", + "textEnableAllMacrosWithoutNotification": "Aktifkan semua macros tanpa notifikasi", + "textEncoding": "Enkoding", + "textFind": "Cari", + "textFindAndReplace": "Cari dan Ganti", + "textFindAndReplaceAll": "Temukan dan Ganti Semua", + "textFormat": "Format", + "textHelp": "Bantuan", + "textHiddenTableBorders": "Pembatas Tabel Disembunyikan", + "textHighlightResults": "Sorot hasil", + "textInch": "Inci", + "textLandscape": "Landscape", + "textLastModified": "Terakhir Dimodifikasi", + "textLastModifiedBy": "Terakhir Dimodifikasi Oleh", + "textLeft": "Kiri", + "textLoading": "Memuat...", + "textLocation": "Lokasi", + "textMacrosSettings": "Pengaturan Macros", + "textMargins": "Margin", + "textMarginsH": "Margin atas dan bawah terlalu jauh untuk halaman setinggi ini", + "textMarginsW": "Margin kiri dan kanan terlalu besar dengan lebar halaman yang ada", + "textNo": "Tidak", + "textNoCharacters": "Karakter Tidak Dicetak", + "textNoTextFound": "Teks tidak ditemukan", + "textOk": "OK", + "textOpenFile": "Masukkan kata sandi untuk buka file", + "textOrientation": "Orientasi", + "textOwner": "Pemilik", + "textPages": "Halaman", + "textPageSize": "Ukuran Halaman", + "textParagraphs": "Paragraf", + "textPoint": "Titik", + "textPortrait": "Portrait", + "textPrint": "Cetak", + "textReaderMode": "Mode Pembaca", + "textReplace": "Ganti", + "textReplaceAll": "Ganti Semua", + "textResolvedComments": "Selesaikan Komentar", + "textRight": "Kanan", + "textSearch": "Cari", + "textSettings": "Pengaturan", + "textShowNotification": "Tampilkan Notifikasi", + "textSpaces": "Spasi", + "textSpellcheck": "Periksa Ejaan", + "textStatistic": "Statistik", + "textSubject": "Judul", + "textSymbols": "Simbol", + "textTitle": "Judul", + "textTop": "Atas", + "textUnitOfMeasurement": "Satuan Ukuran", + "textUploaded": "Diunggah", + "textWords": "Kata", + "textYes": "Ya", + "txtDownloadTxt": "Download TXT", + "txtIncorrectPwd": "Password salah", + "txtOk": "OK", + "txtProtected": "Jika Anda memasukkan password dan membuka file, password file saat ini akan di reset.", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Modul", + "txtScheme13": "Mewah", + "txtScheme14": "Jendela Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Kertas", + "txtScheme17": "Titik balik matahari", + "txtScheme18": "Teknik", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Semangat", + "txtScheme22": "Office Baru", + "txtScheme3": "Puncak", + "txtScheme4": "Aspek", + "txtScheme5": "Kewargaan", + "txtScheme6": "Himpunan", + "txtScheme7": "Margin Sisa", + "txtScheme8": "Alur", + "txtScheme9": "Cetakan", + "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" + }, + "Toolbar": { + "dlgLeaveMsgText": "Anda memiliki perubahan yang belum tersimpan. Klik 'Tetap di Halaman Ini' untuk menunggu simpan otomatis. Klik ‘Tinggalkan Halaman Ini’ untuk membatalkan semua perubahan yang belum disimpan.", + "dlgLeaveTitleText": "Anda meninggalkan aplikasi", + "leaveButtonText": "Tinggalkan Halaman Ini", + "stayButtonText": "Tetap di halaman ini" + } +} \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index b7a90ec30..03f891c3a 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -397,7 +397,9 @@ "unknownErrorText": "Errore sconosciuto.", "uploadImageExtMessage": "Formato d'immagine sconosciuto.", "uploadImageFileCountMessage": "Nessuna immagine caricata.", - "uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB." + "uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Caricamento di dati...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "Hai dei cambiamenti non salvati. Premi 'Rimanere sulla pagina' per attendere il salvataggio automatico. Premi 'Lasciare la pagina' per eliminare tutte le modifiche non salvate.", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 5b88b1cec..bfdf02d3c 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -397,7 +397,9 @@ "unknownErrorText": "不明なエラー", "uploadImageExtMessage": "不明なイメージの形式", "uploadImageFileCountMessage": "アップロードしたイメージがない", - "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。" + "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "データの読み込み中...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "保存されていない変更があります。自動保存を待つように「このページから移動しない」をクリックしてください。保存されていない変更を破棄ように「このページから移動する」をクリックしてください。", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index 46fd4da58..f3d558695 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -397,7 +397,9 @@ "unknownErrorText": "알 수 없는 오류.", "uploadImageExtMessage": "알 수없는 이미지 형식입니다.", "uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", - "uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다." + "uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "데이터로드 중 ...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "저장하지 않은 변경 사항이 있습니다. 자동 저장이 완료될 때까지 기다리려면 \"이 페이지에 머물기\"를 클릭하십시오. \"이 페이지에서 나가기\"를 클릭하면 저장되지 않은 모든 변경 사항이 삭제됩니다.", diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index 97fde94a6..4da85a032 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -1,341 +1,340 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "ກ່ຽວກັບ", + "textAddress": "ທີ່ຢູ່", + "textBack": "ກັບຄືນ", + "textEmail": "ອີເມລ", + "textPoweredBy": "ສ້າງໂດຍ", + "textTel": "ໂທ", + "textVersion": "ລຸ້ນ" }, "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add link", - "textAddress": "Address", - "textBack": "Back", - "textBelowText": "Below text", - "textBottomOfPage": "Bottom of page", - "textBreak": "Break", - "textCancel": "Cancel", - "textCenterBottom": "Center Bottom", - "textCenterTop": "Center Top", - "textColumnBreak": "Column Break", - "textColumns": "Columns", - "textComment": "Comment", - "textContinuousPage": "Continuous Page", - "textCurrentPosition": "Current Position", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify image URL.", - "textEvenPage": "Even Page", - "textFootnote": "Footnote", - "textFormat": "Format", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertFootnote": "Insert Footnote", - "textInsertImage": "Insert Image", - "textLeftBottom": "Left Bottom", - "textLeftTop": "Left Top", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLocation": "Location", - "textNextPage": "Next Page", - "textOddPage": "Odd Page", - "textOther": "Other", - "textPageBreak": "Page Break", - "textPageNumber": "Page Number", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPosition": "Position", - "textRightBottom": "Right Bottom", - "textRightTop": "Right Top", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textSectionBreak": "Section Break", - "textShape": "Shape", - "textStartAt": "Start At", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok", + "notcriticalErrorTitle": "ເຕືອນ", + "textAddLink": "ເພີ່ມລິ້ງ", + "textAddress": "ທີ່ຢູ່", + "textBack": "ກັບຄືນ", + "textBelowText": "ລຸ່ມໂຕໜັງສື", + "textBottomOfPage": "ທາງລຸ່ມສຸດຂອງໜ້າເຈ້ຍ", + "textBreak": "ແຍກ", + "textCancel": "ຍົກເລີກ", + "textCenterBottom": "ດ້ານລຸ່ມທາງກາງ", + "textCenterTop": "ທາງກາງດ້ານເທິງ", + "textColumnBreak": "ແຕກຖັນ", + "textColumns": "ຖັນ", + "textComment": "ຄໍາເຫັນ", + "textContinuousPage": "ການຕໍ່ໜ້າເອກະສານ", + "textCurrentPosition": "ສະຖານະພາບ ປັດຈຸບັນ", + "textDisplay": "ສະແດງຜົນ", + "textEmptyImgUrl": "ທ່ານຕ້ອງບອກທີຢູ່ຮູບ URL", + "textEvenPage": "ໜ້າງານ", + "textFootnote": "ໂນດສ່ວນທ້າຍເອກະສານ", + "textFormat": "ປະເພດ", + "textImage": "ຮູບພາບ", + "textImageURL": "URL ຮູບພາບ", + "textInsert": "ເພີ່ມ", + "textInsertFootnote": "ເພີ່ມຕີນເອກະສານ", + "textInsertImage": "ເພີ່ມຮູບພາບ", + "textLeftBottom": "ລຸ່ມຊ້າຍ", + "textLeftTop": "ຊ້າຍເທິງ", + "textLink": "ລີ້ງ", + "textLinkSettings": "ການຕັ້ງຄ່າລີ້ງ", + "textLocation": "ສະຖານທີ", + "textNextPage": "ໜ້າຕໍ່ໄປ", + "textOddPage": "ໜ້າເຈ້ຍເລກຄີກ", + "textOk": "ຕົກລົງ", + "textOther": "ອື່ນໆ", + "textPageBreak": "ແຍກໜ້າເອກະສານ", + "textPageNumber": "ເລກໜ້າ", + "textPictureFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", + "textPictureFromURL": "ຮູບພາບຈາກ URL", + "textPosition": "ຕໍາແໜ່ງ", + "textRightBottom": "ຂວາລຸ່ມ", + "textRightTop": "ຂວາເທິງ", + "textRows": "ແຖວ", + "textScreenTip": "ຄຳແນະນຳໃນໜ້າຈໍ", + "textSectionBreak": "ແຍກມາດຕາ", + "textShape": "ຮູບຮ່າງ", + "textStartAt": "ເລີ່ມຈາກ", + "textTable": "ຕາຕະລາງ", + "textTableSize": "ຂະໜາດຕາຕະລາງ", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links" + "textWithBlueLinks": "With Blue Links", + "txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAccept": "Accept", - "textAcceptAllChanges": "Accept all changes", - "textAddComment": "Add comment", - "textAddReply": "Add reply", - "textAllChangesAcceptedPreview": "All changes accepted (Preview)", - "textAllChangesEditing": "All changes (Editing)", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", - "textAtLeast": "at least", - "textAuto": "auto", - "textBack": "Back", - "textBaseline": "Baseline", - "textBold": "Bold", - "textBreakBefore": "Page break before", - "textCancel": "Cancel", - "textCaps": "All caps", - "textCenter": "Align center", - "textChart": "Chart", - "textCollaboration": "Collaboration", - "textColor": "Font color", - "textComments": "Comments", - "textContextual": "Don't add intervals between paragraphs of the same style", - "textDelete": "Delete", - "textDeleteComment": "Delete Comment", - "textDeleted": "Deleted:", - "textDeleteReply": "Delete Reply", - "textDisplayMode": "Display Mode", - "textDone": "Done", - "textDStrikeout": "Double strikeout", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textEquation": "Equation", - "textExact": "exactly", - "textFinal": "Final", - "textFirstLine": "First line", - "textFormatted": "Formatted", - "textHighlight": "Highlight color", - "textImage": "Image", - "textIndentLeft": "Indent left", - "textIndentRight": "Indent right", - "textInserted": "Inserted:", - "textItalic": "Italic", - "textJustify": "Align justified ", - "textKeepLines": "Keep lines together", - "textKeepNext": "Keep with next", - "textLeft": "Align left", - "textLineSpacing": "Line Spacing: ", - "textMarkup": "Markup", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textMultiple": "multiple", - "textNoBreakBefore": "No page break before", - "textNoChanges": "There are no changes.", - "textNoComments": "This document doesn't contain comments", - "textNoContextual": "Add interval between paragraphs of the same style", - "textNoKeepLines": "Don't keep lines together", - "textNoKeepNext": "Don't keep with next", - "textNot": "Not ", - "textNoWidow": "No widow control", - "textNum": "Change numbering", - "textOriginal": "Original", - "textParaDeleted": "Paragraph Deleted", - "textParaFormatted": "Paragraph Formatted", - "textParaInserted": "Paragraph Inserted", - "textParaMoveFromDown": "Moved Down:", - "textParaMoveFromUp": "Moved Up:", - "textParaMoveTo": "Moved:", - "textPosition": "Position", - "textReject": "Reject", - "textRejectAllChanges": "Reject All Changes", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textReview": "Review", - "textReviewChange": "Review Change", - "textRight": "Align right", - "textShape": "Shape", - "textShd": "Background color", - "textSmallCaps": "Small caps", - "textSpacing": "Spacing", - "textSpacingAfter": "Spacing after", - "textSpacingBefore": "Spacing before", - "textStrikeout": "Strikeout", - "textSubScript": "Subscript", - "textSuperScript": "Superscript", - "textTableChanged": "Table Settings Changed", - "textTableRowsAdd": "Table Rows Added", - "textTableRowsDel": "Table Rows Deleted", - "textTabs": "Change tabs", - "textTrackChanges": "Track Changes", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUnderline": "Underline", - "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" - }, - "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "notcriticalErrorTitle": "ເຕືອນ", + "textAccept": "ຍອມຮັບ", + "textAcceptAllChanges": "ຍອມຮັບການປ່ຽນແປງທັງໝົດ", + "textAddComment": "ເພີ່ມຄຳເຫັນ", + "textAddReply": "ເພີ່ມຄຳຕອບກັບ", + "textAllChangesAcceptedPreview": "ຍອມຮັບການປ່ຽນແປງທັງໝົດ(ເບິ່ງຕົວຢ່າງ)", + "textAllChangesEditing": "ການປ່ຽນແປງທັງໝົດ(ດັດແກ້)", + "textAllChangesRejectedPreview": "ປະຕິເສດການປ່ຽນແປງທັງໝົດ(ເບິ່ງຕົວຢ່າງ)", + "textAtLeast": "ຢ່າງນ້ອຍ", + "textAuto": "ອັດຕະໂນມັດ", + "textBack": "ກັບຄືນ", + "textBaseline": "ເສັ້ນພື້ນ", + "textBold": "ແບບໂຕໜາ", + "textBreakBefore": "ແຍກໜ້າເອກະສານກ່ອນໜ້າ", + "textCancel": "ຍົກເລີກ", + "textCaps": "ໂຕໃຫຍ່ທັງໝົດ", + "textCenter": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", + "textChart": "ແຜນຮູບວາດ", + "textCollaboration": "ຮ່ວມກັນ", + "textColor": "ສີຂອງຕົວອັກສອນ", + "textComments": "ຄໍາເຫັນ", + "textContextual": "ຫ້າມຍະຫວ່າງຍໍ່ໜ້າທີ່ມີຮູບແບບດ່ຽວກັນ", + "textDelete": "ລົບ", + "textDeleteComment": "ລົບຄໍາເຫັນ", + "textDeleted": "ລຶບ:", + "textDeleteReply": "ລົບການຕອບກັບ", + "textDisplayMode": "ໂຫມດການສະແດງຜົນ", + "textDone": "ສໍາເລັດ", + "textDStrikeout": "ຂິດຂ້າ ສອງຄັ້ງ", + "textEdit": "ແກ້ໄຂ", + "textEditComment": "ແກ້ໄຂຄໍາເຫັນ", + "textEditReply": "ແກ້ໄຂການຕອບກັບ", + "textEditUser": "ຜູ້ໃຊ້ທີ່ກໍາລັງແກ້ໄຂເອກະສານ:", + "textEquation": "ສົມຜົນ", + "textExact": "ແນ່ນອນ", + "textFinal": "ສຸດທ້າຍ", + "textFirstLine": "ເສັ້ນທໍາອິດ", + "textFormatted": "ຈັດຮູບແບບ", + "textHighlight": "ທາສີໄຮໄລ້", + "textImage": "ຮູບພາບ", + "textIndentLeft": "ຢັບມາຊ້າຍ", + "textIndentRight": "ຢັບມາຂວາ", + "textInserted": "ເພີ່ມ:", + "textItalic": "ໂຕໜັງສືອ່ຽງ", + "textJustify": "ຈັດຕຳແໜ່ງຕິດຂອບ", + "textKeepLines": "ໃຫ້ເສັ້ນເຂົ້ານໍາກັນ", + "textKeepNext": "ເກັບໄວ້ຕໍ່ໄປ", + "textLeft": "ຈັດຕຳແໜ່ງຕິດຊ້າຍ", + "textLineSpacing": "ໄລຍະຫ່າງລະຫວ່າງເສັ້ນ:", + "textMarkup": "ໝາຍ", + "textMessageDeleteComment": "ທ່ານຕ້ອງການລົບຄຳເຫັນນີ້ແທ້ບໍ", + "textMessageDeleteReply": "ທ່ານຕ້ອງການລົບແທ້ບໍ?", + "textMultiple": "ຕົວຄູນ", + "textNoBreakBefore": "ບໍ່ໄດ້ຂັ້ນໜ້າກ່ອນໜ້ານີ້", + "textNoChanges": "ບໍ່ມີການປ່ຽນແປງ", + "textNoComments": "ເອກະສານບໍ່ມີຄໍາເຫັນ", + "textNoContextual": "ຕື່ມໄລຍະຫ່າງລະຫວ່າງຫຍໍ້ໜ້າທີ່ມີລັກສະນະດຽວກັນ", + "textNoKeepLines": "ບໍ່ຕ້ອງສ້າງເສັ້ນຮ່ວມກັນ", + "textNoKeepNext": "ບໍ່ຕ້ອງເກັບໄວ້ຕໍ່ ", + "textNot": "ບໍ່", + "textNoWidow": "ບໍ່ມີການຄອບຄຸມໜ້າຕ່າງ", + "textNum": "ປ່ຽນຕົວເລກ ", + "textOk": "ຕົກລົງ", + "textOriginal": "ສະບັບດັ້ງເດີມ", + "textParaDeleted": "ລຶບຫຍໍ້ໜ້າແລ້ວ", + "textParaFormatted": "ວັກທີ່ຈັດຮູບແບບ", + "textParaInserted": "ຫຍໍ້ໜ້າໃສ່ແລ້ວ", + "textParaMoveFromDown": "ຍ້າຍລົງ:", + "textParaMoveFromUp": "ຍ້າຍຂຶ້ນ:", + "textParaMoveTo": "ຍ້າຍ:", + "textPosition": "ຕໍາແໜ່ງ", + "textReject": "ປະຕິເສດ", + "textRejectAllChanges": "ປະຕິເສດການປ່ຽນແປງທັງໝົດ", + "textReopen": "ເປີດຄືນ", + "textResolve": "ແກ້ໄຂ", + "textReview": "ກວດຄືນ", + "textReviewChange": "ເບີ່ງການປ່ຽນແປງ", + "textRight": "ຈັດຕຳແໜ່ງຕິດຂວາ", + "textShape": "ຮູບຮ່າງ", + "textShd": "ສີພື້ນຫຼັງ", + "textSmallCaps": "ໂຕອັກສອນນ້ອຍ", + "textSpacing": "ການຈັດໄລຍະຫ່າງ", + "textSpacingAfter": "ໄລະຫ່າງກ່ອນ", + "textSpacingBefore": "ໄລຍະຫ່າງກ່ອນ", + "textStrikeout": "ຂີດຂ້າອອກ", + "textSubScript": "ຕົວຫ້ອຍ", + "textSuperScript": "ຕົວຍົກ", + "textTableRowsAdd": "ເພີ່ມແຖວຕາຕະລາງແລ້ວ", + "textTableRowsDel": "ລຶບແຖວຕາຕະລາງແລ້ວ", + "textTabs": "ປ່ຽນຂັ້ນ", + "textTrackChanges": "ຕິດຕາມການປ່ຽນແປງ", + "textTryUndoRedo": "ໜ້າທີ່ ກັບຄືນ ຫຼື ທວນຄືນ ຖືກປິດໃຊ້ງານ ສຳລັບໂໝດການແກ້ໄຂຮ່ວມກັນດ່ວນ.", + "textUnderline": "ີຂີດກ້ອງ", + "textUsers": "ຜຸ້ໃຊ້", + "textWidow": "ໜ້າຄວບຄຸມ", + "textTableChanged": "Table Settings Changed" }, "HighlightColorPalette": { - "textNoFill": "No Fill" + "textNoFill": "ບໍ່ມີການຕື່ມຂໍ້ມູນໃສ່" + }, + "ThemeColorPalette": { + "textCustomColors": "ກຳນົດສີເອງ", + "textStandartColors": "ສີມາດຕະຖານ", + "textThemeColors": " ຮູບແບບສີ" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", - "menuAddLink": "Add link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuReview": "Review", - "menuReviewChange": "Review Change", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuContinueNumbering": "Continue numbering", - "menuSeparateList": "Separate list", - "menuJoinList": "Join to previous list", - "textOk": "OK", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value", "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only" + "textRefreshPageNumbersOnly": "Refresh page numbers only", + "errorCopyCutPaste": "ການກ໋ອບປີ້,ຕັດ ແລະ ວາງ ການດຳເນີນການໂດຍໃຊ້ເມນູ ຈະດຳເນີນການພາຍໃນຟາຍປັດຈຸບັນເທົ່ານັ້ນ", + "menuAddComment": "ເພີ່ມຄຳເຫັນ", + "menuAddLink": "ເພີ່ມລິ້ງ", + "menuCancel": "ຍົກເລີກ", + "menuContinueNumbering": "ການຕໍ່ເລກໝາຍ", + "menuDelete": "ລົບ", + "menuDeleteTable": "ລົບຕາຕະລາງ", + "menuEdit": "ແກ້ໄຂ", + "menuJoinList": "ຮ່ວມລາຍການກ່ອນໜ້າ", + "menuMerge": "ປະສົມປະສານ", + "menuMore": "ຫຼາຍກວ່າ", + "menuOpenLink": "ເປີດລີ້ງ", + "menuReview": "ກວດຄືນ", + "menuReviewChange": "ເບີ່ງການປ່ຽນແປງ", + "menuSeparateList": "ແຍກລາຍການ", + "menuSplit": "ແຍກ, ແບ່ງເປັນ", + "menuStartNewList": "ເລີ່ມຕົ້ນລາຍການໃໝ່", + "menuStartNumberingFrom": "ຕັ້ງຄ່າລຳດັບເລກ", + "menuViewComment": "ເບີ່ງຄໍາເຫັນ", + "textCancel": "ຍົກເລີກ", + "textColumns": "ຖັນ", + "textCopyCutPasteActions": "ປະຕິບັດການ ສໍາເນົາ, ຕັດ ແລະ ວາງ", + "textDoNotShowAgain": "ບໍ່ສະແດງອີກ", + "textNumberingValue": "ມູນຄ່າ ໝາຍ ເລກ", + "textOk": "ຕົກລົງ", + "textRows": "ແຖວ" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual size", - "textAddCustomColor": "Add custom color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional formatting", - "textAddress": "Address", - "textAdvanced": "Advanced", - "textAdvancedSettings": "Advanced settings", - "textAfter": "After", - "textAlign": "Align", - "textAllCaps": "All caps", - "textAllowOverlap": "Allow overlap", - "textAuto": "Auto", - "textAutomatic": "Automatic", - "textBack": "Back", - "textBackground": "Background", - "textBandedColumn": "Banded column", - "textBandedRow": "Banded row", - "textBefore": "Before", - "textBehind": "Behind", - "textBorder": "Border", - "textBringToForeground": "Bring to foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClose": "Close", - "textColor": "Color", - "textContinueFromPreviousSection": "Continue from previous section", - "textCustomColor": "Custom Color", - "textDifferentFirstPage": "Different first page", - "textDifferentOddAndEvenPages": "Different odd and even pages", - "textDisplay": "Display", - "textDistanceFromText": "Distance from text", - "textDoubleStrikethrough": "Double Strikethrough", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify image URL.", - "textFill": "Fill", - "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", - "textFlow": "Flow", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFooter": "Footer", - "textHeader": "Header", - "textHeaderRow": "Header Row", - "textHighlightColor": "Highlight Color", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textInFront": "In Front", - "textInline": "Inline", - "textKeepLinesTogether": "Keep Lines Together", - "textKeepWithNext": "Keep with Next", - "textLastColumn": "Last Column", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkToPrevious": "Link to Previous", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textMoveWithText": "Move with Text", - "textNone": "None", - "textNoStyles": "No styles for this type of charts.", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOpacity": "Opacity", - "textOptions": "Options", - "textOrphanControl": "Orphan Control", - "textPageBreakBefore": "Page Break Before", - "textPageNumbering": "Page Numbering", - "textParagraph": "Paragraph", - "textParagraphStyles": "Paragraph Styles", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", + "notcriticalErrorTitle": "ເຕືອນ", + "textActualSize": "ຂະໜາດແທ້ຈິງ", + "textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", + "textAdditional": "ເພີ່ມເຕີມ", + "textAdditionalFormatting": "ຈັດຮູບແບບເພີ່ມເຕີມ", + "textAddress": "ທີ່ຢູ່", + "textAdvanced": "ຂັ້ນສູງ", + "textAdvancedSettings": "ຕັ້ງຄ່າຂັ້ນສູງ", + "textAfter": "ຫຼັງຈາກ", + "textAlign": "ຈັດແນວ", + "textAllCaps": "ໂຕໃຫຍ່ທັງໝົດ", + "textAllowOverlap": "ອະນຸຍາດໃຫ້ຊ້ອນກັນ", + "textApril": "ເມສາ", + "textAugust": "ສິງຫາ", + "textAuto": "ອັດຕະໂນມັດ", + "textAutomatic": "ອັດຕະໂນມັດ", + "textBack": "ກັບຄືນ", + "textBackground": "ພື້ນຫຼັງ", + "textBandedColumn": "ຖັນແຖວ", + "textBandedRow": "ຮ່ວມກຸ່ມແຖວ", + "textBefore": "ກ່ອນ", + "textBehind": "ທາງຫຼັງ", + "textBorder": "ຊາຍແດນ", + "textBringToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", + "textBullets": "ຂີດໜ້າ", + "textBulletsAndNumbers": "ຫົວຂໍ້ຍ່ອຍ & ຕົວເລກ", + "textCellMargins": "ຂອບເຂດຂອງແຊວ", + "textChart": "ແຜນຮູບວາດ", + "textClose": "ປິດ", + "textColor": "ສີ", + "textContinueFromPreviousSection": "ສືບຕໍ່ຈາກ ພາກກ່ອນໜ້າ", + "textCustomColor": "ປະເພດ ຂອງສີ", + "textDecember": "ເດືອນທັນວາ", + "textDesign": "ອອກແບບ", + "textDifferentFirstPage": "ໜ້າທໍາອິດທີແຕກຕ່າງກັນ", + "textDifferentOddAndEvenPages": "ໜ້າເອກະສານ ເລກ ຄູ່ ແລະ ເລກຄີກ", + "textDisplay": "ສະແດງຜົນ", + "textDistanceFromText": "ໄລຍະຫ່າງຈາກຂໍ້ຄວາມ", + "textDoubleStrikethrough": "ຂີດທັບສອງຄັ້ງ", + "textEditLink": "ແກ້ໄຂ ລີ້ງ", + "textEffects": "ຜົນ", + "textEmpty": "ຫວ່າງເປົ່າ", + "textEmptyImgUrl": "ທ່ານຕ້ອງບອກທີຢູ່ຮູບ URL", + "textFebruary": "ເດືອນກຸມພາ", + "textFill": "ຕື່ມ", + "textFirstColumn": "ຖັນທໍາອິດ", + "textFirstLine": "ເສັ້ນທໍາອິດ", + "textFlow": "ຂະບວນການ", + "textFontColor": "ສີຂອງຕົວອັກສອນ", + "textFontColors": "ສີຕົວອັກສອນ", + "textFonts": "ຕົວອັກສອນ", + "textFooter": "ສ່ວນທ້າຍ", + "textFr": "ວັນສຸກ", + "textHeader": "ຫົວຂໍ້ເອກະສານ", + "textHeaderRow": "ຫົວແຖວ", + "textHighlightColor": "ທາສີໄຮໄລ້", + "textHyperlink": "ົໄຮເປີລີ້ງ", + "textImage": "ຮູບພາບ", + "textImageURL": "URL ຮູບພາບ", + "textJanuary": "ເດືອນກຸມພາ", + "textJuly": "ເດືອນກໍລະກົດ", + "textJune": "ເດືອນມິຖຸນາ", + "textKeepLinesTogether": "ໃຫ້ເສັ້ນເຂົ້ານໍາກັນ", + "textKeepWithNext": "ເກັບໄວ້ຕໍ່ໄປ", + "textLastColumn": "ຖັນສຸດທ້າຍ", + "textLetterSpacing": "ໄລຍະຫ່າງລະຫວ່າງຕົວອັກສອນ", + "textLineSpacing": "ໄລຍະຫ່າງລະຫວ່າງເສັ້ນ", + "textLink": "ລີ້ງ", + "textLinkSettings": "ການຕັ້ງຄ່າລີ້ງ", + "textLinkToPrevious": "ເຊື່ອມຕໍ່ກັບກ່ອນໜ້າ", + "textMarch": "ມີນາ", + "textMay": "ພຶດສະພາ", + "textMo": "ວັນຈັນ", + "textMoveBackward": "ຍ້າຍໄປທາງຫຼັງ", + "textMoveForward": "ຍ້າຍໄປດ້ານໜ້າ", + "textMoveWithText": "ຍ້າຍຄໍາສັບ", + "textNone": "ບໍ່ມີ", + "textNoStyles": "ບໍ່ມີຮູບແບບສຳລັບແຜນວາດປະເພດນີ້.", + "textNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"", + "textNovember": "ພະຈິກ", + "textNumbers": "ຕົວເລກ", + "textOctober": "ຕຸລາ", + "textOk": "ຕົກລົງ", + "textOpacity": "ຄວາມເຂັ້ມ", + "textOptions": "ທາງເລືອກ", + "textOrphanControl": "ການຄອບຄຸມ", + "textPageBreakBefore": "ແຍກໜ້າເອກະສານກ່ອນໜ້າ", + "textPageNumbering": "ເລກໜ້າ", + "textParagraph": "ວັກ", + "textParagraphStyles": "ຮຸບແບບວັກ", + "textPictureFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", + "textPictureFromURL": "ຮູບພາບຈາກ URL", "textPt": "pt", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textRepeatAsHeaderRow": "Repeat as Header Row", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textResizeToFitContent": "Resize to Fit Content", - "textScreenTip": "Screen Tip", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSize": "Size", - "textSmallCaps": "Small Caps", - "textSpaceBetweenParagraphs": "Space Between Paragraphs", - "textSquare": "Square", - "textStartAt": "Start at", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textTableOptions": "Table Options", - "textText": "Text", - "textThrough": "Through", - "textTight": "Tight", - "textTopAndBottom": "Top and Bottom", - "textTotalRow": "Total Row", - "textType": "Type", - "textWrap": "Wrap", - "textNumbers": "Numbers", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", - "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", - "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", - "textDecember": "December", - "textEmpty": "Empty", - "textOk": "Ok", + "textRemoveChart": "ລົບແຜນວາດ", + "textRemoveImage": "ລົບຮູບ", + "textRemoveLink": "ລົບລີ້ງ", + "textRemoveShape": "ລົບຮ່າງ", + "textRemoveTable": "ລົບຕາຕະລາງ", + "textReorder": "ຈັດຮຽງໃໝ່", + "textRepeatAsHeaderRow": "ເຮັດລື້ມຄືນ ຕາມ ແຖວຫົວເລື່ອງ", + "textReplace": "ປ່ຽນແທນ", + "textReplaceImage": "ປ່ຽນແທນຮູບ", + "textResizeToFitContent": "ປັບຂະໜາດເພື່ອໃຫ້ເໝາະກັບເນື້ອຫາ", + "textSa": "ວັນເສົາ", + "textScreenTip": "ຄຳແນະນຳໃນໜ້າຈໍ", + "textSelectObjectToEdit": "ເລືອກຈຸດທີ່ຕ້ອງການເພື່ອແກ້ໄຂ", + "textSendToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", + "textSeptember": "ກັນຍາ", + "textSettings": "ການຕັ້ງຄ່າ", + "textShape": "ຮູບຮ່າງ", + "textSize": "ຂະໜາດ", + "textSmallCaps": "ໂຕອັກສອນນ້ອຍ", + "textSpaceBetweenParagraphs": "ໄລຍະຫ່າງລະຫວ່າງວັກ", + "textSquare": "ສີ່ຫຼ່ຽມ", + "textStartAt": "ເລີ່ມຈາກ", + "textStrikethrough": "ຂີດຂ້າອອກ", + "textStyle": "ປະເພດ ", + "textStyleOptions": "ທາງເລືອກ ປະເພດ", + "textSu": "ວັນອາທິດ", + "textSubscript": "ຕົວຫ້ອຍ", + "textSuperscript": "ຕົວຍົກ", + "textTable": "ຕາຕະລາງ", + "textTableOptions": "ທາງເລືອກຕາຕະລາງ", + "textText": "ຂໍ້ຄວາມ", + "textTh": "ວັນພະຫັດ", + "textThrough": "ຜ່ານ", + "textTight": "ຮັດແໜ້ນ ", + "textTopAndBottom": "ເທີງແລະລຸ່ມ", + "textTotalRow": "ຈໍານວນແຖວທັງໝົດ", + "textTu": "ວັນອັງຄານ", + "textType": "ພິມ", + "textWe": "ພວກເຮົາ", + "textWrap": "ຫໍ່", + "textInFront": "In Front of Text", "textTableOfCont": "TOC", "textPageNumbers": "Page Numbers", "textSimple": "Simple", @@ -357,302 +356,311 @@ "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textStyles": "Styles", - "textAmountOfLevels": "Amount of Levels" + "textAmountOfLevels": "Amount of Levels", + "textInline": "In Line with Text" }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorMailMergeLoadFile": "Loading failed", - "errorMailMergeSaveFile": "Merge failed.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file can't be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", + "criticalErrorExtText": "ກົດ 'OK' ເພື່ອກັບຄືນໄປຫາລາຍການເອກະສານ.", + "criticalErrorTitle": "ຂໍ້ຜິດພາດ", + "downloadErrorText": "ດາວໂຫຼດບໍ່ສຳເລັດ.", + "errorAccessDeny": "ທ່ານກໍາລັງພະຍາຍາມດໍາເນີນການໃນໜ້າທີ່ທ່ານບໍ່ມີສິດສໍາລັບດໍາເນີນການ.
ກະລຸນາ, ຕິດຕໍ່ແອດມີນລະບົບຂອງທ່ານ.", + "errorBadImageUrl": "URL ຮູບພາບບໍ່ຖືກຕ້ອງ", + "errorConnectToServer": "ບໍ່ສາມາດບັນທຶກເອກະສານນີ້ໄດ້. ກວດເບິ່ງການຕັ້ງຄ່າການເຊື່ອມຕໍ່ຂອງທ່ານ ຫຼື ຕິດຕໍ່ຜູ້ແອດມີນຂອງທ່ານ.
ເມື່ອທ່ານຄລິກປຸ່ມ 'ຕົກລົງ', ທ່ານຈະຖືກເຕືອນໃຫ້ດາວໂຫລດເອກະສານ.", + "errorDatabaseConnection": "ຂໍ້ຜິດພາດຈາກທາງນອກ
ຖານຂໍ້ມູນ ຂໍ້ຜິດພາດພາຍນອກ. ກະລຸນາ, ຕິດຕໍ່ການສະ ໜັບ ສະ ໜູນ.", + "errorDataEncrypted": "ໄດ້ຮັບການປ່ຽນແປງລະຫັດແລ້ວ, ບໍ່ສາມາດຖອດລະຫັດໄດ້.", + "errorDataRange": "ໄລຍະຂອງຂໍ້ມູນບໍ່ຖືກ", + "errorDefaultMessage": "ລະຫັດຂໍ້ຜິດພາດ: %1", + "errorEditingDownloadas": "ເກີດຄວາມຜິດພາດໃນລະຫວ່າງການເຮັດວຽກກັບເອກະສານ.
ໃຊ້ຕົວເລືອກ 'ດາວໂຫລດ' ເພື່ອບັນທຶກໄຟລ໌ສໍາຮອງໄວ້ໃນເຄື່ອງ.", + "errorFilePassProtect": "ໄຟລ໌ດັ່ງກ່າວຖືກປ້ອງກັນດ້ວຍລະຫັດຜ່ານ ແລະ ບໍ່ສາມາດເປີດໄດ້.", + "errorFileSizeExceed": "ຂະໜາດໄຟລ໌ເກີນຂີດຈຳກັດເຊີບເວີຂອງທ່ານ.
ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.", + "errorKeyEncrypt": "ບໍ່ຮູ້ຄຳອະທິບາຍຫຼັກ", + "errorKeyExpire": "ລະຫັດໝົດອາຍຸ", + "errorLoadingFont": "ຟອນບໍ່ໄດ້ຖືກໂຫລດ.
ກະລຸນາແອດມີນຂອງທ່ານ.", + "errorMailMergeLoadFile": "ການໂຫຼດລົ້ມເຫລວ", + "errorMailMergeSaveFile": "ບໍ່ສາມາດລວມໄດ້", + "errorSessionAbsolute": "ຊ່ວງເວລາການແກ້ໄຂເອກະສານໝົດອາຍຸແລ້ວ. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "errorSessionIdle": "ເອກະສານບໍ່ໄດ້ຮັບການແກ້ໄຂສໍາລັບການຂ້ອນຂ້າງຍາວ. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "errorSessionToken": "ການເຊື່ອມຕໍ່ກັບເຊີບເວີບໍ່ສະຖຽນ. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "errorStockChart": "ລຳດັບແຖວບໍ່ຖືກຕ້ອງ. ເພື່ອສ້າງຕາຕະລາງເກັບຂໍ້ຮູບກ້າບ, ວາງຂໍ້ມູນໃສ່ແຜ່ນງານຕາມລໍາດັບຕໍ່ໄປນີ້:
ລາຄາເປີດ, ລາຄາສູງສຸດ, ລາຄາຕໍ່າສຸດ, ລາຄາປິດ.", + "errorUpdateVersionOnDisconnect": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຫາກໍຖືກກູ້ຄືນມາ, ແລະ ຟາຍເອກະສານໄດ້ມີການປ່ຽນແປງແລ້ວ.
ກ່ອນທີ່ທ່ານຈະດຳເນີນການຕໍ່ໄປ, ທ່ານຕ້ອງໄດ້ດາວໂຫຼດຟາຍ ຫຼື ສຳເນົາເນື້ອຫາ ເພື່ອປ້ອງການການສູນເສຍ, ແລະ ທຳການໂຫຼດໜ້າຄືນອີກຄັ້ງ.", + "errorUserDrop": "ບໍ່ສາມາດເຂົ້າໄຟລ໌ດັ່ງກ່າວໄດ້ໃນຕອນນີ້.", + "errorUsersExceed": "ຈຳນວນຜູ້ຊົມໃຊ້ເກີນ ແມ່ນອະນຸຍາດກຳນົດລາຄາເກີນ", + "errorViewerDisconnect": "ການເຊື່ອມຕໍ່ຫາຍໄປ. ທ່ານຍັງສາມາດເບິ່ງເອກະສານໄດ້,
ແຕ່ທ່ານຈະບໍ່ສາມາດດາວນ໌ໂຫລດຫຼືພິມມັນຈົນກ່ວາການເຊື່ອມຕໍ່ໄດ້ຮັບການຟື້ນຟູແລະຫນ້າຈະຖືກໂຫຼດໃຫມ່.", + "notcriticalErrorTitle": "ເຕືອນ", + "openErrorText": "ມີຂໍ້ຜິດພາດເກີດຂຶ້ນໃນຂະນະທີ່ເປີດໄຟລ໌", + "saveErrorText": "ເກີດຄວາມຜິດພາດຂຶ້ນໃນຂະນະທີ່ບັນທຶກໄຟລ໌", + "scriptLoadError": "ການເຊື່ອມຕໍ່ຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "splitDividerErrorText": "ຈໍານວນແຖວຕ້ອງເປັນຕົວເລກຂອງ %1", + "splitMaxColsErrorText": "ຈຳນວນຖັນຕ້ອງຕໍ່າ ກວ່າ %1", + "splitMaxRowsErrorText": "ຈຳນວນແຖວຕ້ອງໜ້ອຍກວ່າ %1", + "unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", + "uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ", + "uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", + "uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadMergeText": "Downloading...", - "downloadMergeTitle": "Downloading", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", + "applyChangesTitleText": "ດາວໂຫຼດຂໍ້ມູນ", + "downloadMergeText": "ກໍາລັງດາວໂຫລດ...", + "downloadMergeTitle": "ກໍາລັງດາວໂຫຼດ ", + "downloadTextText": "ກຳລັງດາວໂຫຼດເອກະສານ", + "downloadTitleText": "ດາວໂຫລດເອກະສານ", + "loadFontsTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", + "loadFontsTitleText": "ດາວໂຫຼດຂໍ້ມູນ", + "loadFontTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", + "loadFontTitleText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ", + "loadImagesTextText": "ກໍາລັງດາວໂຫຼດຮູບພາບ...", + "loadImagesTitleText": "ກໍາລັງດາວໂຫຼດຮູບພາບ", + "loadImageTextText": "ກໍາລັງດາວໂຫຼດຮູບພາບ...", + "loadImageTitleText": "ກໍາລັງໂລດຮູບພາບ", + "loadingDocumentTextText": "ກໍາລັງດາວໂຫຼດເອກະສານ...", + "loadingDocumentTitleText": "ກຳລັງດາວໂຫຼດເອກະສານ", + "mailMergeLoadFileText": "ໂລດຂໍ້ມູນຈາກຕົ້ນທາງ...", + "mailMergeLoadFileTitle": "ດາວໂຫຼດຂໍ້ມູນຈາກຕົ້ນທາງ", + "openTextText": "ກໍາລັງເປີດເອກະສານ...", + "openTitleText": "ກໍາລັງເປີດເອກະສານ", + "printTextText": "ກໍາລັງພິມເອກະສານ", + "printTitleText": "ກໍາລັງພິມເອກະສານ", + "savePreparingText": "ກະກຽມບັນທືກ", + "savePreparingTitle": "ກຳລັງກະກຽມບັນທືກ, ກະລຸນາລໍຖ້າ...", + "saveTextText": "ກໍາລັງບັນທຶກເອກະສານ...", + "saveTitleText": "ບັນທືກເອກະສານ", + "sendMergeText": "ກໍາລັງສົ່ງລວມ...", + "sendMergeTitle": "ກໍາລັງສົ່ງລວມ", + "textLoadingDocument": "ກຳລັງດາວໂຫຼດເອກະສານ", + "txtEditingMode": "ຕັ້ງຄ່າຮູບແບບການແກ້ໄຂ...", + "uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ...", + "uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", + "waitText": "ກະລຸນາລໍຖ້າ..." }, "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "ຂໍ້ຜິດພາດ", + "errorAccessDeny": "ທ່ານກໍາລັງພະຍາຍາມດໍາເນີນການໃນໜ້າທີ່ທ່ານບໍ່ມີສິດສໍາລັບດໍາເນີນການ.
ກະລຸນາ, ຕິດຕໍ່ແອດມີນລະບົບຂອງທ່ານ.", + "errorOpensource": "ການນໍາໃຊ້ສະບັບຟຣີ, ທ່ານສາມາດເປີດເອກະສານສໍາລັບການອ່ານເທົ່ານັ້ນ. ໃນການເຂົ້າເຖິງໂປຣແກຣມ, ຕ້ອງມີໃບອະນຸຍາດທາງການຄ້າ.", + "errorProcessSaveResult": "ບັນທຶກບຊ່ສຳເລັດ", + "errorServerVersion": "ສະບັບດັດແກ້ໄດ້ຖືກປັບປຸງແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດຄືນເພື່ອນຳໃຊ້ການປ່ຽນແປງ.", + "errorUpdateVersion": "ເອກະສານໄດ້ຖືກປ່ຽນແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດໃໝ່.", + "leavePageText": "ທ່ານມີການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກໄວ້. ຄລິກທີ່ 'ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທຶກອັດຕະໂນມັດ. ຄລິກ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໄວ້ທັງໝົດ.", + "notcriticalErrorTitle": "ເຕືອນ", "SDK": { - " -Section ": " -Section ", - "above": "above", - "below": "below", - "Caption": "Caption", - "Choose an item": "Choose an item", - "Click to load image": "Click to load image", - "Current Document": "Current Document", - "Diagram Title": "Chart Title", - "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", + " -Section ": "- ເລືອກ", + "above": "ຂ້າງເທິງ", + "below": "ດ້ານລຸ່ມ", + "Caption": "ຄຳບັນຍາຍ", + "Choose an item": "ເລືອກໄອເທມ", + "Click to load image": "ກົດເພື່ອໂຫຼດຮູບ", + "Current Document": "ເອກະສານປະຈຸບັນ", + "Diagram Title": "ໃສ່ຊື່ແຜນຮູບວາດ", + "endnote text": "ຂໍ້ຄວາມອ້າງອີງ", + "Enter a date": "ປ້ອນວັນທີ", + "Error! Bookmark not defined": "ຜິດພາດ! ບໍ່ໄດ້ກຳນົດບຸກມາກ.", + "Error! Main Document Only": "ຜິດພາດ! ເອກະສານຫຼັກຢ່າງດຽວ", + "Error! No text of specified style in document": "ຜິດພາດ! ບໍ່ມີຂໍ້ຄວາມບົ່ງບອກ", + "Even Page ": "ໜ້າງານ", + "First Page ": "ໜ້າທຳອິດ", + "Footer": "ສ່ວນທ້າຍ", + "footnote text": "ໂນດສ່ວນທ້າຍເອກະສານ", + "Header": "ຫົວຂໍ້ເອກະສານ", + "Heading 1": " ຫົວເລື່ອງ 1", + "Heading 2": "ຫົວເລື່ອງ 2", + "Heading 3": "ຫົວເລື່ອງ 3", + "Heading 4": "ຫົວເລື່ອງ4", + "Heading 5": "ຫົວເລື່ອງ5", + "Heading 6": "ຫົວເລື່ອງ6", + "Heading 7": "ຫົວເລື່ອງ7", + "Heading 8": "ຫົວເລື່ອງ8", + "Heading 9": "ຫົວເລື່ອງ9", + "Hyperlink": "ົໄຮເປີລີ້ງ", + "Index Too Large": "ດັດສະນີໃຫຍ່ເກີນໄປ", + "Is Not In Table": "ບໍ່ຢູ່ໃນຕາຕະລາງ", + "List Paragraph": "ລາຍການຫຍໍ້ໜ້າ", + "Missing Argument": "ບໍ່ມີອາກິວເມັ້ນ", + "Missing Operator": "ບໍ່ມີຕົວດຳເນີນການ", + "No Spacing": "ບໍ່ມີໄລຍະຫ່າງ", + "No table of contents entries found": "ບໍ່ມີຫົວຂໍ້ໃນເອກະສານ. ນຳໃຊ້ຮູບແບບຫົວຂໍ້ໃສ່ຂໍ້ຄວາມເພື່ອໃຫ້ມັນປາກົດຢູ່ໃນຕາຕະລາງເນື້ອໃນ.", + "No table of figures entries found": "ບໍ່ມີຕາຕະລາງລາຍການຕົວເລກ", + "None": "ບໍ່ມີ", + "Normal": "ປົກກະຕິ", + "Number Too Large To Format": "ຈຳ ນວນໃຫຍ່ເກີນໄປທີ່ຈະຈັດຮູບແບບ", + "Odd Page ": "ໜ້າເຈ້ຍເລກຄີກ", + "Quote": "ໃບສະເໜີລາຄາ", + "Same as Previous": "ແບບດຽວກັນກັບທີ່ຜ່ານມາ", + "Series": "ຊຸດ", + "Subtitle": "ຄໍາບັນຍາຍ", + "Syntax Error": "ຂໍ້້ຜິດພາດທາງໄວຍະກອນ", + "Table Index Cannot be Zero": "ດັດຊະນີຕາຕະລາງບໍ່ສາມາດເປັນສູນ", + "Table of Contents": "ຕາຕະລາງເນື້ອຫາ", + "table of figures": "ຕາຕະລາງຕົວເລກ", + "The Formula Not In Table": "ສູດບໍ່ຢູ່ໃນຕາຕະລາງ", + "Title": "ຫົວຂໍ້", + "TOC Heading": "ຫົວຂໍ້ TOC ", + "Type equation here": "ພິມສົມຜົນຢູ່ທີ່ນີ້", + "Undefined Bookmark": "ບໍ່ກຳນົດປື້ມບັນທືກ", + "Unexpected End of Formula": "ການສິ້ນສຸດສູດທ້າຍທີ່ບໍ່ຄາດຄິດ", + "X Axis": "ແກນ X (XAS)", + "Y Axis": "ແກນ Y", + "Your text here": "ເນື້ອຫາຂອງທ່ານຢູ່ນີ້", + "Zero Divide": "ສູນແບ່ງ", "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Footer": "Footer", - "footnote text": "Footnote Text", - "Header": "Header", - "Heading 1": "Heading 1", - "Heading 2": "Heading 2", - "Heading 3": "Heading 3", - "Heading 4": "Heading 4", - "Heading 5": "Heading 5", - "Heading 6": "Heading 6", - "Heading 7": "Heading 7", - "Heading 8": "Heading 8", - "Heading 9": "Heading 9", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", - "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No Spacing": "No Spacing", - "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Normal": "Normal", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Quote": "Quote", - "Same as Previous": "Same as Previous", - "Series": "Series", - "Subtitle": "Subtitle", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", - "table of figures": "Table of figures", - "The Formula Not In Table": "The Formula Not In Table", - "Title": "Title", - "TOC Heading": "TOC Heading", - "Type equation here": "Type equation here", - "Undefined Bookmark": "Undefined Bookmark", - "Unexpected End of Formula": "Unexpected End of Formula", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + "Intense Quote": "Intense Quote" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit this file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textAnonymous": "ບໍ່ລະບຸຊື່", + "textBuyNow": "ເຂົ້າໄປຍັງເວັບໄຊ", + "textClose": "ປິດ", + "textContactUs": "ຕິດຕໍ່ຜູ້ຂາຍ", + "textCustomLoader": "ຂໍອະໄພ, ທ່ານບໍ່ມີສິດປ່ຽນຕົວໂຫຼດໄດ້. ກະລຸນາຕິດຕໍ່ຫາພະແນກການຂາຍຂອງພວກເຮົາເພື່ອໃຫ້ໄດ້ຮັບໃບສະເໜີລາຄາ.", + "textGuest": " ແຂກ", + "textHasMacros": "ເອກະສານບັນຈຸ ມາກໂຄ
ແບບອັດຕະໂນມັດ, ທ່ານຍັງຕ້ອງການດໍາເນີນງານ ມາກໂຄ ບໍ ", + "textNo": "ບໍ່", + "textNoLicenseTitle": "ຈໍານວນໃບອະນຸຍາດໄດ້ໃຊ້ຄົບແລ້ວ", + "textNoTextFound": "ບໍ່ພົບເນື້ອຫາ", + "textPaidFeature": "ຄຸນສົມບັດທີ່ຈ່າຍ", + "textRemember": "ຈື່ຈໍາທາງເລືອກ", + "textReplaceSkipped": "ການທົດແທນໄດ້ຖືກປະຕິບັດແລ້ວ. {0} ຖືກຂ້າມເຫດການທີ່ເກີດຂື້ນໄດ້", + "textReplaceSuccess": "ການຄົ້ນຫາໄດ້ສຳເລັດແລ້ວ. ສິ່ງທີ່ເກີດຂື້ນໄດ້ປ່ຽນແທນແລ້ວ: {0}", + "textYes": "ແມ່ນແລ້ວ", + "titleLicenseExp": "ໃບອະນຸຍາດໝົດອາຍຸ", + "titleServerVersion": "ອັບເດດການແກ້ໄຂ", + "titleUpdateVersion": "ປ່ຽນແປງລຸ້ນ", + "warnLicenseExceeded": "ທ່ານໄດ້ຖືກຈຳກັດສິດພຽງເທົ່ານີ້ສຳຫລັບການເຊື່່ອມພ້ອມກັນກັບເຄື່ອງມືແກ້ໄຂ %1 ແລ້ວເອກະສານນີ້ຈະເປີດໃຫ້ເບີ່ງເທົ່ານັ້ນ ຕິດຕໍ່ຫາທາງແອດມີນຂອງທ່ານເພື່ອຮັບຂໍ້ມູນເພີ່ມ", + "warnLicenseExp": "License ຂອງທ່ານໄດ້ໝົດອາຍຸກະລຸນາຕໍ່ License ຂອງທ່ານ ແລະ ໂຫລດໜ້າເວັບຄືນໃໝ່ອີກຄັ້ງ", + "warnLicenseLimitedNoAccess": "ໃບອະນຸຍາດໝົດອາຍຸແລ້ວ. ທ່ານບໍ່ສາມາດເຂົ້າເຖິງການດຳເນີນງານແກ້ໄຂເອກະສານ. ກະລຸນາ, ຕິດຕໍ່ແອດມີນຂອງທ່ານ.", + "warnLicenseLimitedRenewed": "ໃບອະນຸຍາດຕ້ອງໄດ້ຮັບການຕໍ່ອາຍຸ. ທ່ານຈະຖືກຈຳກັດສິດໃນການເຂົ້າເຖິ່ງການແກ້ໄຂເອກະສານ.
ກະລຸນາຕິດຕໍ່ແອດມີນຂອງທ່ານເພື່ອຕໍ່ອາຍຸ", + "warnLicenseUsersExceeded": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ແກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ທີມບໍລິຫານເພື່ອຂໍ້ມູນເພີ່ມເຕີ່ມ", + "warnNoLicense": "ທ່ານໄດ້ຖືກຈຳກັດສິດພຽງເທົ່ານີ້ສຳຫລັບການເຊື່່ອມພ້ອມກັນກັບເຄື່ອງມືແກ້ໄຂ %1 ແລ້ວເອກະສານນີ້ຈະເປີດໃຫ້ເບີ່ງເທົ່ານັ້ນ ຕິດຕໍ່ທີມຂາຍ %1 ສຳຫລັບເງື່ອນໄຂການອັບເກດສ່ວນບຸກຄົນ", + "warnNoLicenseUsers": "ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມຂາຍ %1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບສິດ", + "warnProcessRightsChange": "ທ່ານບໍ່ມີສິດໃນການແກ້ໄຂໄຟລ໌ນີ້." }, "Settings": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "advTxtOptions": "Choose TXT Options", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textCancel": "Cancel", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textComments": "Comments", - "textCommentsDisplay": "Comments Display", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDocumentInfo": "Document Info", - "textDocumentSettings": "Document Settings", - "textDocumentTitle": "Document Title", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", - "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textEncoding": "Encoding", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textHelp": "Help", - "textHiddenTableBorders": "Hidden Table Borders", - "textHighlightResults": "Highlight Results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", - "textNoCharacters": "Nonprinting Characters", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPrint": "Print", - "textReaderMode": "Reader Mode", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSpellcheck": "Spell Checking", - "textStatistic": "Statistic", - "textSubject": "Subject", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", + "advDRMOptions": "ເອກະສານທີ່ໄດ້ຮັບການປົກປ້ອງ", + "advDRMPassword": "ລະຫັດຜ່ານ", + "advTxtOptions": "ເລືອກ TXT ", + "closeButtonText": "ປິດຟຮາຍເອກະສານ", + "notcriticalErrorTitle": "ເຕືອນ", + "textAbout": "ກ່ຽວກັບ", + "textApplication": "ແອັບ", + "textApplicationSettings": "ການຕັ້ງຄ່າແອັບ", + "textAuthor": "ຜູ້ຂຽນ", + "textBack": "ກັບຄືນ", + "textBottom": "ລຸ່ມສຸດ", + "textCancel": "ຍົກເລີກ", + "textCaseSensitive": "ກໍລະນີທີ່ສຳຄັນ", + "textCentimeter": "ເຊັນຕິເມັດ", + "textChooseEncoding": "ເລືອກການເຂົ້າລະຫັດ", + "textChooseTxtOptions": "ເລືອກ TXT ", + "textCollaboration": "ຮ່ວມກັນ", + "textColorSchemes": "ໂທນສີ", + "textComment": "ຄໍາເຫັນ", + "textComments": "ຄໍາເຫັນ", + "textCommentsDisplay": "ສະແດງຄໍາເຫັນ", + "textCreated": "ສ້າງ", + "textCustomSize": "ກຳນົດຂະໜາດ", + "textDisableAll": "ປິດທັງໝົດ", + "textDisableAllMacrosWithNotification": "ປິດການໃຊ້ງານແຈ້ງເຕືອນທົ່ວໄປທັງໝົດ", + "textDisableAllMacrosWithoutNotification": "ປິດການໃຊ້ງານແຈ້ງເຕືອນທົວໄປທັງຫມົດໂດຍບໍ່ມີການແຈ້ງການ", + "textDocumentInfo": "ຂໍ້ມູນເອກະສານ", + "textDocumentSettings": "ການຕັ້ງຄ່າ ເອກະສານ", + "textDocumentTitle": "ການຕັ້ງຊື່ ເອກະສານ", + "textDone": "ສໍາເລັດ", + "textDownload": "ດາວໂຫຼດ", + "textDownloadAs": "ດາວໂຫລດເປັນ", + "textDownloadRtf": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ບາງຮູບແບບອາດຈະສູນເສຍໄປ. ທ່ານແນ່ໃຈບໍ່ວ່າຕ້ອງການສືບຕໍ່?", + "textDownloadTxt": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ ຄຸນສົມບັດທັງໝົດຍົກເວັ້ນຂໍ້ຄວາມຈະສູນເສຍໄປ. ທ່ານແນ່ໃຈບໍ່ວ່າຕ້ອງການສືບຕໍ່?", + "textEnableAll": "ເປີດທັງໝົດ", + "textEnableAllMacrosWithoutNotification": "ເປີດໃຊ້ແຈ້ງເຕືອນທົ່ວໄປໂດຍບໍ່ມີການແຈ້ງການ", + "textEncoding": "ການເຂົ້າລະຫັດ", + "textFind": "ຄົ້ນຫາ", + "textFindAndReplace": "ຄົ້ນຫາແລະປ່ຽນແທນ", + "textFindAndReplaceAll": "ຄົ້ນຫາ ແລະ ປ່ຽນແທນທັງໝົດ", + "textFormat": "ປະເພດ", + "textHelp": "ຊວ່ຍ", + "textHiddenTableBorders": "ເຊື່ອງຂອບຕາຕະລາງ", + "textHighlightResults": "ໄຮໄລ້ ຜົນລັບ", + "textInch": "ນີ້ວ", + "textLandscape": "ພູມສັນຖານ", + "textLastModified": "ການແກ້ໄຂຄັ້ງລ້າສຸດ", + "textLastModifiedBy": "ແກ້ໄຂຄັ້ງລ້າສຸດໂດຍ", + "textLeft": "ຊ້າຍ", + "textLoading": "ກໍາລັງດາວໂຫຼດ...", + "textLocation": "ສະຖານທີ", + "textMacrosSettings": "ການຕັ້ງຄ່າ Macros", + "textMargins": "ຂອບ", + "textMarginsH": "ຂອບເທິງແລະລຸ່ມແມ່ນສູງເກີນໄປ ສຳ ລັບຄວາມສູງຂອງ ໜ້າທີ່ກຳນົດ", + "textMarginsW": "ຂອບຊ້າຍ ແລະ ຂວາແມ່ນກວ້າງເກີນໄປສຳລັບຄວາມກວ້າງຂອງໜ້າເວັບ", + "textNo": "ບໍ່", + "textNoCharacters": "ບໍ່ມີຕົວອັກສອນພິມ", + "textNoTextFound": "ບໍ່ພົບເນື້ອຫາ", + "textOk": "ຕົກລົງ", + "textOpenFile": "ໃສ່ລະຫັດຜ່ານເພື່ອເປີດໄຟລ໌", + "textOrientation": "ການຈັດວາງ", + "textOwner": "ເຈົ້າຂອງ", + "textPages": "ໜ້າ", + "textPageSize": "ຂະໜາດໜ້າ", + "textParagraphs": "ວັກ", + "textPoint": "ຈຸດ", + "textPortrait": "ລວງຕັ້ງ", + "textPrint": "ພິມ", + "textReaderMode": "ຮູບແບບເພື່ອອ່ານ", + "textReplace": "ປ່ຽນແທນ", + "textReplaceAll": "ປ່ຽນແທນທັງໝົດ", + "textResolvedComments": "ແກ້ໄຂຄໍາເຫັນ", + "textRight": "ຂວາ", + "textSearch": "ຄົ້ນຫາ", + "textSettings": "ການຕັ້ງຄ່າ", + "textShowNotification": "ສະແດງການແຈ້ງເຕືອນ", + "textSpaces": "ໄລຍະຫ່າງ", + "textSpellcheck": "ກວດກາການສະກົດຄໍາ", + "textStatistic": "ສະຖິຕິ", + "textSubject": "ເລື່ອງ", + "textSymbols": "ສັນຍາລັກ", + "textTitle": "ຫົວຂໍ້", + "textTop": "ເບື້ອງເທີງ", + "textUnitOfMeasurement": "ຫົວຫນ່ວຍວັດແທກ", + "textUploaded": "ອັບໂຫລດສຳເລັດ", + "textWords": "ຕົວໜັງສື", + "textYes": "ແມ່ນແລ້ວ", + "txtDownloadTxt": "ດາວໂຫລດ TXT", + "txtIncorrectPwd": "ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ", + "txtOk": "ຕົກລົງ", + "txtProtected": "ເມື່ອທ່ານໃສ່ລະຫັດຜ່ານ ແລະ ເປີດໄຟລ໌, ລະຫັດຜ່ານປະຈຸບັນຈະຖືກຕັ້ງໃຫມ່", + "txtScheme1": "ຫ້ອງການ", + "txtScheme10": "ເສັ້ນແບ່ງກາງ", + "txtScheme11": "ລົດໄຟຟ້າ", + "txtScheme12": "ໂມດູນ", + "txtScheme13": "ອຸດົມສົມບູນ", + "txtScheme14": "ໂອຣິເອລ", + "txtScheme15": "ແຕ່ເດີມ", + "txtScheme16": "ເຈ້ຍ", + "txtScheme17": "ເສັ້ນໝູນອ້ອມດວງຕາເວັນ", + "txtScheme18": "ເຕັກນິກ", + "txtScheme19": "ຍ່າງ", + "txtScheme2": "ໂທນສີເທົາ", + "txtScheme20": "ໃນເມືອງ", "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok", - "textPages": "Pages", - "textParagraphs": "Paragraphs", - "textSpaces": "Spaces", - "textSymbols": "Symbols", - "textWords": "Words", + "txtScheme22": "ຫ້ອງການໃໝ່", + "txtScheme3": "ເອເພັກສ", + "txtScheme4": "ມຸມມອງ", + "txtScheme5": "ພົນລະເມືອງ", + "txtScheme6": "ເປັນກຸ່ມ", + "txtScheme7": "ຄວາມເທົ່າທຽມກັນ", + "txtScheme8": "ຂະບວນການ", + "txtScheme9": "ໂຮງຫລໍ່", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page" + "dlgLeaveMsgText": "ທ່ານມີການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກໄວ້. ຄລິກທີ່ 'ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທຶກອັດຕະໂນມັດ. ຄລິກ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໄວ້ທັງໝົດ.", + "dlgLeaveTitleText": "ທ່ານໄດ້ອອກຈາກໜ້າຄໍາຮ້ອງສະຫມັກ", + "leaveButtonText": "ອອກຈາກໜ້ານີ້", + "stayButtonText": "ຢູ່ໃນໜ້ານີ້" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index 97fde94a6..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -397,7 +397,9 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index 97fde94a6..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -397,7 +397,9 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index bc0ce1c29..81dc7e133 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -397,7 +397,9 @@ "unknownErrorText": "Onbekende fout.", "uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grootte is 25MB." + "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grootte is 25MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Gegevens worden geladen...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "U heeft nog niet opgeslagen wijzigingen. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index 97fde94a6..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -397,7 +397,9 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/pt-PT.json b/apps/documenteditor/mobile/locale/pt-PT.json new file mode 100644 index 000000000..c95b65705 --- /dev/null +++ b/apps/documenteditor/mobile/locale/pt-PT.json @@ -0,0 +1,666 @@ +{ + "About": { + "textAbout": "Acerca", + "textAddress": "Endereço", + "textBack": "Recuar", + "textEmail": "E-mail", + "textPoweredBy": "Desenvolvido por", + "textTel": "Tel", + "textVersion": "Versão" + }, + "Add": { + "notcriticalErrorTitle": "Aviso", + "textAddLink": "Adicionar ligação", + "textAddress": "Endereço", + "textBack": "Recuar", + "textBelowText": "Abaixo do texto", + "textBottomOfPage": "Fundo da página", + "textBreak": "Quebra", + "textCancel": "Cancelar", + "textCenterBottom": "Centrar abaixo", + "textCenterTop": "Centrar acima", + "textColumnBreak": "Quebra de colunas", + "textColumns": "Colunas", + "textComment": "Comentário", + "textContinuousPage": "Página contínua", + "textCurrentPosition": "Posição atual", + "textDisplay": "Exibição", + "textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", + "textEvenPage": "Página par", + "textFootnote": "Nota de rodapé", + "textFormat": "Formato", + "textImage": "Imagem", + "textImageURL": "URL da imagem", + "textInsert": "Inserir", + "textInsertFootnote": "Inserir nota de rodapé", + "textInsertImage": "Inserir imagem", + "textLeftBottom": "Esquerda inferior", + "textLeftTop": "Esquerda superior", + "textLink": "Ligação", + "textLinkSettings": "Definições da ligação", + "textLocation": "Localização", + "textNextPage": "Página seguinte", + "textOddPage": "Página ímpar", + "textOk": "Ok", + "textOther": "Outros", + "textPageBreak": "Quebra de página", + "textPageNumber": "Número de página", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem de um URL", + "textPosition": "Posição", + "textRightBottom": "Direita inferior", + "textRightTop": "Direita superior", + "textRows": "Linhas", + "textScreenTip": "Dica no ecrã", + "textSectionBreak": "Quebra de secção", + "textShape": "Forma", + "textStartAt": "Iniciar em", + "textTable": "Tabela", + "textTableSize": "Tamanho da tabela", + "txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", + "textTableContents": "Table of Contents", + "textWithPageNumbers": "With Page Numbers", + "textWithBlueLinks": "With Blue Links" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Aviso", + "textAccept": "Aceitar", + "textAcceptAllChanges": "Aceitar todas as alterações", + "textAddComment": "Adicionar comentário", + "textAddReply": "Adicionar resposta", + "textAllChangesAcceptedPreview": "Todas as alterações aceites (Pré-visualizar)", + "textAllChangesEditing": "Todas as alterações (Editar)", + "textAllChangesRejectedPreview": "Todas as alterações recusadas (Pré-visualizar)", + "textAtLeast": "no mínimo", + "textAuto": "auto", + "textBack": "Recuar", + "textBaseline": "Linha base", + "textBold": "Negrito", + "textBreakBefore": "Quebra de página antes", + "textCancel": "Cancelar", + "textCaps": "Tudo em maiúsculas", + "textCenter": "Alinhar ao centro", + "textChart": "Gráfico", + "textCollaboration": "Colaboração", + "textColor": "Cor do tipo de letra", + "textComments": "Comentários", + "textContextual": "Não adicionar intervalo entre parágrafos com o esmo estilo", + "textDelete": "Eliminar", + "textDeleteComment": "Eliminar comentário", + "textDeleted": "Eliminada:", + "textDeleteReply": "Eliminar resposta", + "textDisplayMode": "Modo de exibição", + "textDone": "Feito", + "textDStrikeout": "Rasurado duplo", + "textEdit": "Editar", + "textEditComment": "Editar comentário", + "textEditReply": "Editar resposta", + "textEditUser": "Utilizadores que estão a editar o ficheiro:", + "textEquation": "Equação", + "textExact": "exatamente", + "textFinal": "Final", + "textFirstLine": "Primeira linha", + "textFormatted": "Formatado", + "textHighlight": "Cor de destaque", + "textImage": "Imagem", + "textIndentLeft": "Avanço à esquerda", + "textIndentRight": "Avanço à direita", + "textInserted": "Inserida:", + "textItalic": "Itálico", + "textJustify": "Alinhar justificado", + "textKeepLines": "Manter as linhas juntas", + "textKeepNext": "Manter com seguinte", + "textLeft": "Alinhar à esquerda", + "textLineSpacing": "Espaçamento entre linhas:", + "textMarkup": "Marcação", + "textMessageDeleteComment": "Tem a certeza de que deseja eliminar este comentário?", + "textMessageDeleteReply": "Tem a certeza de que deseja eliminar esta resposta?", + "textMultiple": "múltiplo", + "textNoBreakBefore": "Sem quebra de página antes", + "textNoChanges": "Não existem alterações.", + "textNoComments": "Este documento não contém comentários", + "textNoContextual": "Adicionar intervalo entre parágrafos com o mesmo estilo", + "textNoKeepLines": "Não manter linhas juntas", + "textNoKeepNext": "Não manter com seguinte", + "textNot": "Não", + "textNoWidow": "Não controlar órfãos", + "textNum": "Alterar numeração", + "textOk": "Ok", + "textOriginal": "Original", + "textParaDeleted": "Parágrafo Eliminado", + "textParaFormatted": "Parágrafo formatado", + "textParaInserted": "Parágrafo Inserido", + "textParaMoveFromDown": "Movido para Baixo:", + "textParaMoveFromUp": "Movido para Cima:", + "textParaMoveTo": "Movido:", + "textPosition": "Posição", + "textReject": "Rejeitar", + "textRejectAllChanges": "Rejeitar todas as alterações", + "textReopen": "Reabrir", + "textResolve": "Resolver", + "textReview": "Rever", + "textReviewChange": "Rever alteração", + "textRight": "Alinhar à direita", + "textShape": "Forma", + "textShd": "Cor de fundo", + "textSmallCaps": "Versaletes", + "textSpacing": "Espaçamento", + "textSpacingAfter": "Espaçamento depois", + "textSpacingBefore": "Espaçamento antes", + "textStrikeout": "Rasurado", + "textSubScript": "Subscrito", + "textSuperScript": "Sobrescrito", + "textTableChanged": "As Definições da Tabela foram Alteradas", + "textTableRowsAdd": "Linhas de Tabela Adicionadas", + "textTableRowsDel": "Linhas de Tabela Eliminadas", + "textTabs": "Alterar separadores", + "textTrackChanges": "Rastreio de alterações", + "textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.", + "textUnderline": "Sublinhado", + "textUsers": "Utilizadores", + "textWidow": "Controlo de órfãos" + }, + "HighlightColorPalette": { + "textNoFill": "Sem preenchimento" + }, + "ThemeColorPalette": { + "textCustomColors": "Cores personalizadas", + "textStandartColors": "Cores padrão", + "textThemeColors": "Cores do tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "As ações copiar, cortar e colar através do menu de contexto apenas serão executadas no documento atual.", + "menuAddComment": "Adicionar comentário", + "menuAddLink": "Adicionar ligação", + "menuCancel": "Cancelar", + "menuContinueNumbering": "Continuar numeração", + "menuDelete": "Eliminar", + "menuDeleteTable": "Eliminar tabela", + "menuEdit": "Editar", + "menuJoinList": "Juntar à lista anterior", + "menuMerge": "Mesclar", + "menuMore": "Mais", + "menuOpenLink": "Abrir ligação", + "menuReview": "Rever", + "menuReviewChange": "Rever alteração", + "menuSeparateList": "Lista distinta", + "menuSplit": "Dividir", + "menuStartNewList": "Iniciar nova lista", + "menuStartNumberingFrom": "Definir valor de numeração", + "menuViewComment": "Ver comentário", + "textCancel": "Cancelar", + "textColumns": "Colunas", + "textCopyCutPasteActions": "Ações copiar, cortar e colar", + "textDoNotShowAgain": "Não mostrar novamente", + "textNumberingValue": "Valor de numeração", + "textOk": "Ok", + "textRows": "Linhas", + "textRefreshEntireTable": "Refresh entire table", + "textRefreshPageNumbersOnly": "Refresh page numbers only" + }, + "Edit": { + "notcriticalErrorTitle": "Aviso", + "textActualSize": "Tamanho real", + "textAddCustomColor": "Adicionar cor personalizada", + "textAdditional": "Adicional", + "textAdditionalFormatting": "Formatação adicional", + "textAddress": "Endereço", + "textAdvanced": "Avançado", + "textAdvancedSettings": "Definições avançadas", + "textAfter": "Após", + "textAlign": "Alinhar", + "textAllCaps": "Tudo em maiúsculas", + "textAllowOverlap": "Permitir sobreposição", + "textApril": "Abril", + "textAugust": "Agosto", + "textAuto": "Automático", + "textAutomatic": "Automático", + "textBack": "Recuar", + "textBackground": "Fundo", + "textBandedColumn": "Diferenciação de colunas", + "textBandedRow": "Diferenciação de linhas", + "textBefore": "Antes", + "textBehind": "Atrás", + "textBorder": "Contorno", + "textBringToForeground": "Trazer para primeiro plano", + "textBullets": "Marcas", + "textBulletsAndNumbers": "Marcas e numeração", + "textCellMargins": "Margens da célula", + "textChart": "Gráfico", + "textClose": "Fechar", + "textColor": "Cor", + "textContinueFromPreviousSection": "Continuar da secção anterior", + "textCustomColor": "Cor personalizada", + "textDecember": "Dezembro", + "textDesign": "Design", + "textDifferentFirstPage": "Primeira página diferente", + "textDifferentOddAndEvenPages": "Páginas pares e ímpares diferentes", + "textDisplay": "Exibição", + "textDistanceFromText": "Distância a partir do texto", + "textDoubleStrikethrough": "Rasurado duplo", + "textEditLink": "Editar ligação", + "textEffects": "Efeitos", + "textEmpty": "Vazio", + "textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", + "textFebruary": "Fevereiro", + "textFill": "Preencher", + "textFirstColumn": "Primeira coluna", + "textFirstLine": "Primeira linha", + "textFlow": "Fluxo", + "textFontColor": "Cor do tipo de letra", + "textFontColors": "Cores do tipo de letra", + "textFonts": "Tipos de letra", + "textFooter": "Rodapé", + "textFr": "Sex", + "textHeader": "Cabeçalho", + "textHeaderRow": "Linha de cabeçalho", + "textHighlightColor": "Cor de destaque", + "textHyperlink": "Hiperligação", + "textImage": "Imagem", + "textImageURL": "URL da imagem", + "textInFront": "À frente", + "textInline": "Em Linha com o Texto", + "textJanuary": "Janeiro", + "textJuly": "Julho", + "textJune": "Junho", + "textKeepLinesTogether": "Manter as linhas juntas", + "textKeepWithNext": "Manter com seguinte", + "textLastColumn": "Última coluna", + "textLetterSpacing": "Espaçamento entre letras", + "textLineSpacing": "Espaçamento entre linhas", + "textLink": "Ligação", + "textLinkSettings": "Definições da ligação", + "textLinkToPrevious": "Vincular ao anterior", + "textMarch": "Março", + "textMay": "Maio", + "textMo": "Seg", + "textMoveBackward": "Mover para trás", + "textMoveForward": "Mover para frente", + "textMoveWithText": "Mover com texto", + "textNone": "Nenhum", + "textNoStyles": "Sem estilos para este tipo de gráficos", + "textNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", + "textNovember": "Novembro", + "textNumbers": "Números", + "textOctober": "Outubro", + "textOk": "Ok", + "textOpacity": "Opacidade", + "textOptions": "Opções", + "textOrphanControl": "Controlo de órfãos", + "textPageBreakBefore": "Quebra de página antes", + "textPageNumbering": "Numeração de páginas", + "textParagraph": "Parágrafo", + "textParagraphStyles": "Estilos de parágrafo", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem de um URL", + "textPt": "pt", + "textRemoveChart": "Remover gráfico", + "textRemoveImage": "Remover imagem", + "textRemoveLink": "Remover ligação", + "textRemoveShape": "Remover forma", + "textRemoveTable": "Remover tabela", + "textReorder": "Reordenar", + "textRepeatAsHeaderRow": "Repetir como linha de cabeçalho", + "textReplace": "Substituir", + "textReplaceImage": "Substituir imagem", + "textResizeToFitContent": "Ajustar ao conteúdo", + "textSa": "Sáb", + "textScreenTip": "Dica no ecrã", + "textSelectObjectToEdit": "Selecionar objeto para editar", + "textSendToBackground": "Enviar para plano de fundo", + "textSeptember": "Setembro", + "textSettings": "Configurações", + "textShape": "Forma", + "textSize": "Tamanho", + "textSmallCaps": "Versaletes", + "textSpaceBetweenParagraphs": "Espaçamento entre parágrafos", + "textSquare": "Quadrado", + "textStartAt": "Iniciar em", + "textStrikethrough": "Rasurado", + "textStyle": "Estilo", + "textStyleOptions": "Opções de estilo", + "textSu": "Dom", + "textSubscript": "Subscrito", + "textSuperscript": "Sobrescrito", + "textTable": "Tabela", + "textTableOptions": "Opções da tabela", + "textText": "Texto", + "textTh": "Qui", + "textThrough": "Através", + "textTight": "Justo", + "textTopAndBottom": "Parte superior e inferior", + "textTotalRow": "Total de linhas", + "textTu": "Ter", + "textType": "Tipo", + "textWe": "Qua", + "textWrap": "Moldar", + "textTableOfCont": "TOC", + "textPageNumbers": "Page Numbers", + "textSimple": "Simple", + "textRightAlign": "Right Align", + "textLeader": "Leader", + "textStructure": "Structure", + "textRefresh": "Refresh", + "textLevels": "Levels", + "textRemoveTableContent": "Remove table of content", + "textCurrent": "Current", + "textOnline": "Online", + "textClassic": "Classic", + "textDistinctive": "Distinctive", + "textCentered": "Centered", + "textFormal": "Formal", + "textStandard": "Standard", + "textModern": "Modern", + "textCancel": "Cancel", + "textRefreshEntireTable": "Refresh entire table", + "textRefreshPageNumbersOnly": "Refresh page numbers only", + "textStyles": "Styles", + "textAmountOfLevels": "Amount of Levels" + }, + "Error": { + "convertationTimeoutText": "Excedeu o tempo limite de conversão.", + "criticalErrorExtText": "Clique em \"OK\" para voltar para a lista de documentos.", + "criticalErrorTitle": "Erro", + "downloadErrorText": "Falha ao descarregar.", + "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
Por favor, contacte o seu administrador.", + "errorBadImageUrl": "URL inválido", + "errorConnectToServer": "Não foi possível guardar o documento. Verifique as suas definições de rede ou contacte o administrador.
Ao clicar em Aceitar, poderá descarregar o documento.", + "errorDatabaseConnection": "Erro externo.
Erro de ligação à base de dados. Contacte o suporte.", + "errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", + "errorDataRange": "Intervalo de dados inválido.", + "errorDefaultMessage": "Código do erro: %1", + "errorEditingDownloadas": "Ocorreu um erro ao trabalhar o documento.
Descarregue o documento para guardar uma cópia local.", + "errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abri-lo. ", + "errorFileSizeExceed": "O tamanho do ficheiro excede a limitação máxima do seu servidor.
Por favor, contacte o seu administrador.", + "errorKeyEncrypt": "Descritor de chave desconhecido", + "errorKeyExpire": "Descritor de chave expirado", + "errorLoadingFont": "Tipos de letra não carregados.
Por favor contacte o administrador do servidor de documentos.", + "errorMailMergeLoadFile": "O carregamento falhou", + "errorMailMergeSaveFile": "Falha ao unir.", + "errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, volte a carregar a página.", + "errorSessionIdle": "Há muito tempo que o documento não é editado. Por favor, volte a carregar a página.", + "errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, volte a carregar a página.", + "errorStockChart": "Ordem das linhas incorreta. Para construir um gráfico de cotações, introduza os dados na folha com a seguinte ordem:
preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", + "errorUserDrop": "O ficheiro não pode ser acedido de momento.", + "errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", + "errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será
possível descarregar ou imprimir o documento se a ligação não for restaurada e a página recarregada.", + "notcriticalErrorTitle": "Aviso", + "openErrorText": "Ocorreu um erro ao abrir o ficheiro", + "saveErrorText": "Ocorreu um erro ao guardar o ficheiro", + "scriptLoadError": "A ligação está demasiado lenta, não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ", + "splitDividerErrorText": "O número de linhas tem que ser um divisor de %1", + "splitMaxColsErrorText": "O número de colunas tem que ser inferior a %1", + "splitMaxRowsErrorText": "O número de linhas tem que ser inferior a %1", + "unknownErrorText": "Erro desconhecido.", + "uploadImageExtMessage": "Formato de imagem desconhecido.", + "uploadImageFileCountMessage": "Nenhuma imagem carregada.", + "uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." + }, + "LongActions": { + "applyChangesTextText": "Carregando dados...", + "applyChangesTitleText": "Carregando dados", + "downloadMergeText": "A descarregar...", + "downloadMergeTitle": "A descarregar", + "downloadTextText": "A descarregar documento...", + "downloadTitleText": "A descarregar documento", + "loadFontsTextText": "Carregando dados...", + "loadFontsTitleText": "Carregando dados", + "loadFontTextText": "Carregando dados...", + "loadFontTitleText": "Carregando dados", + "loadImagesTextText": "Carregando imagens...", + "loadImagesTitleText": "Carregando imagens", + "loadImageTextText": "Carregando imagem...", + "loadImageTitleText": "Carregando imagem", + "loadingDocumentTextText": "Carregando documento...", + "loadingDocumentTitleText": "Carregando documento", + "mailMergeLoadFileText": "A carregar origem de dados...", + "mailMergeLoadFileTitle": "A carregar origem de dados", + "openTextText": "Abrindo documento...", + "openTitleText": "Abrindo documento", + "printTextText": "Imprimindo documento...", + "printTitleText": "Imprimindo documento", + "savePreparingText": "A preparar para guardar", + "savePreparingTitle": "A preparar para guardar. Por favor aguarde...", + "saveTextText": "Salvando documento...", + "saveTitleText": "Salvando documento", + "sendMergeText": "A enviar combinação...", + "sendMergeTitle": "A enviar combinação", + "textLoadingDocument": "Carregando documento", + "txtEditingMode": "Definir modo de edição...", + "uploadImageTextText": "Carregando imagem...", + "uploadImageTitleText": "Carregando imagem", + "waitText": "Por favor, aguarde..." + }, + "Main": { + "criticalErrorTitle": "Erro", + "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
Por favor, contacte o seu administrador.", + "errorOpensource": "Utilizando a versão comunitária gratuita, pode abrir documentos apenas para visualização. Para aceder aos editores da web móvel, é necessária uma licença comercial.", + "errorProcessSaveResult": "Salvamento falhou.", + "errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", + "errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", + "leavePageText": "Existem alterações não guardadas. Clique 'Ficar na página' para guardar automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", + "notcriticalErrorTitle": "Aviso", + "SDK": { + " -Section ": "-Secção", + "above": "acima", + "below": "abaixo", + "Caption": "Legenda", + "Choose an item": "Escolha um item", + "Click to load image": "Clique para carregar a imagem", + "Current Document": "Documento atual", + "Diagram Title": "Título do gráfico", + "endnote text": "Texto da nota final", + "Enter a date": "Indique uma data", + "Error! Bookmark not defined": "Erro! Marcador não definido.", + "Error! Main Document Only": "Erro! Apenas documento principal.", + "Error! No text of specified style in document": "Erro! Não existe texto com este estilo no documento.", + "Error! Not a valid bookmark self-reference": "Erro! Não é uma auto-referência de marcador válida.", + "Even Page ": "Página par", + "First Page ": "Primeira página", + "Footer": "Rodapé", + "footnote text": "Texto da nota de rodapé", + "Header": "Cabeçalho", + "Heading 1": "Título 1", + "Heading 2": "Título 2", + "Heading 3": "Título 3", + "Heading 4": "Título 4", + "Heading 5": "Título 5", + "Heading 6": "Título 6", + "Heading 7": "Título 7", + "Heading 8": "Título 8", + "Heading 9": "Título 9", + "Hyperlink": "Hiperligação", + "Index Too Large": "Índice demasiado grande", + "Intense Quote": "Citação forte", + "Is Not In Table": "Não é uma tabela", + "List Paragraph": "Parágrafo em lista", + "Missing Argument": "Argumento em falta", + "Missing Operator": "Operador em falta", + "No Spacing": "Sem espaçamento", + "No table of contents entries found": "Não existem títulos no documento. Aplique um estilo de título ao texto para que este apareça no índice remissivo.", + "No table of figures entries found": "Não foi encontrada nenhuma entrada no índice de ilustrações.", + "None": "Nenhum", + "Normal": "Normal", + "Number Too Large To Format": "Número Demasiado Grande para Formatar", + "Odd Page ": "Página ímpar", + "Quote": "Citação", + "Same as Previous": "Igual à anterior", + "Series": "Série", + "Subtitle": "Subtítulo", + "Syntax Error": "Erro de Sintaxe ", + "Table Index Cannot be Zero": "O Índice da Tabela Não Pode Ser Zero", + "Table of Contents": "Tabela de conteúdos", + "table of figures": "Tabela de figuras", + "The Formula Not In Table": "A Fórmula Não Está na Tabela", + "Title": "Título", + "TOC Heading": "Cabeçalho do Índice", + "Type equation here": "Introduza a equação aqui", + "Undefined Bookmark": "Marcador Não-Definido", + "Unexpected End of Formula": "Fim Inesperado da Fórmula", + "X Axis": "X Eixo XAS", + "Y Axis": "Eixo Y", + "Your text here": "O seu texto aqui", + "Zero Divide": "Divisão por zero" + }, + "textAnonymous": "Anónimo", + "textBuyNow": "Visitar website", + "textClose": "Fechar", + "textContactUs": "Contacte a equipa comercial", + "textCustomLoader": "Desculpe, não tem o direito de mudar o carregador. Contacte o nosso departamento de vendas para obter um orçamento.", + "textGuest": "Convidado", + "textHasMacros": "O ficheiro contém macros automáticas.
Deseja executar as macros?", + "textNo": "Não", + "textNoLicenseTitle": "Limite de licença atingido", + "textNoTextFound": "Texto não encontrado", + "textPaidFeature": "Funcionalidade paga", + "textRemember": "Memorizar a minha escolha", + "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", + "textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", + "textYes": "Sim", + "titleLicenseExp": "Licença expirada", + "titleServerVersion": "Editor atualizado", + "titleUpdateVersion": "Versão alterada", + "warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte o seu administrador para obter mais informações.", + "warnLicenseExp": "A sua licença expirou. Por favor, atualize a sua licença e atualize a página.", + "warnLicenseLimitedNoAccess": "La llicència ha caducat. No tens accés a la funció d'edició de documents. Contacta amb el teu administrador.", + "warnLicenseLimitedRenewed": "A licença precisa ed ser renovada. Tem acesso limitado à funcionalidade de edição de documentos, .
Por favor contacte o seu administrador para ter acesso total", + "warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", + "warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.", + "warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", + "warnProcessRightsChange": "Não tem autorização para editar este ficheiro." + }, + "Settings": { + "advDRMOptions": "Ficheiro protegido", + "advDRMPassword": "Senha", + "advTxtOptions": "Escolher opções TXT", + "closeButtonText": "Fechar ficheiro", + "notcriticalErrorTitle": "Aviso", + "textAbout": "Acerca", + "textApplication": "Aplicação", + "textApplicationSettings": "Definições da aplicação", + "textAuthor": "Autor", + "textBack": "Recuar", + "textBottom": "Inferior", + "textCancel": "Cancelar", + "textCaseSensitive": "Diferenciar maiúsculas/minúsculas", + "textCentimeter": "Centímetro", + "textChooseEncoding": "Escolha a codificação", + "textChooseTxtOptions": "Escolher opções TXT", + "textCollaboration": "Colaboração", + "textColorSchemes": "Esquemas de cor", + "textComment": "Comentário", + "textComments": "Comentários", + "textCommentsDisplay": "Exibição de comentários", + "textCreated": "Criado", + "textCustomSize": "Tamanho personalizado", + "textDisableAll": "Desativar tudo", + "textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação", + "textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação", + "textDocumentInfo": "Informação do documento", + "textDocumentSettings": "Definições do documento", + "textDocumentTitle": "Título do documento", + "textDone": "Feito", + "textDownload": "Descarregar", + "textDownloadAs": "Descarregar como", + "textDownloadRtf": "Se continuar e guardar neste formato é possível perder alguma formatação.
Tem a certeza de que quer continuar?", + "textDownloadTxt": "Se continuar e guardar neste formato é possível perder alguma formatação.
Tem a certeza de que quer continuar?", + "textEnableAll": "Ativar tudo", + "textEnableAllMacrosWithoutNotification": "Ativar todas as macros sem notificação", + "textEncoding": "Codificação", + "textFind": "Localizar", + "textFindAndReplace": "Localizar e substituir", + "textFindAndReplaceAll": "Localizar e substituir tudo", + "textFormat": "Formato", + "textHelp": "Ajuda", + "textHiddenTableBorders": "Ocultar bordas da tabela", + "textHighlightResults": "Destacar resultados", + "textInch": "Polegada", + "textLandscape": "Paisagem", + "textLastModified": "Última modificação", + "textLastModifiedBy": "Última modificação por", + "textLeft": "Esquerda", + "textLoading": "Carregando...", + "textLocation": "Localização", + "textMacrosSettings": "Definições de macros", + "textMargins": "Margens", + "textMarginsH": "As margens superior e inferior são muito grandes para a altura indicada", + "textMarginsW": "As margens direita e esquerda são muito grandes para a largura indicada", + "textNo": "Não", + "textNoCharacters": "Caracteres não imprimíveis", + "textNoTextFound": "Texto não encontrado", + "textOk": "Ok", + "textOpenFile": "Indique a palavra-passe para abrir o ficheiro", + "textOrientation": "Orientação", + "textOwner": "Proprietário", + "textPages": "Páginas", + "textPageSize": "Tamanho da página", + "textParagraphs": "Parágrafos", + "textPoint": "Ponto", + "textPortrait": "Retrato", + "textPrint": "Imprimir", + "textReaderMode": "Modo de leitura", + "textReplace": "Substituir", + "textReplaceAll": "Substituir tudo", + "textResolvedComments": "Comentários resolvidos", + "textRight": "Direita", + "textSearch": "Pesquisar", + "textSettings": "Configurações", + "textShowNotification": "Mostrar notificação", + "textSpaces": "Espaços", + "textSpellcheck": "Verificação ortográfica", + "textStatistic": "Estatística", + "textSubject": "Assunto", + "textSymbols": "Símbolos", + "textTitle": "Título", + "textTop": "Parte superior", + "textUnitOfMeasurement": "Unidade de medida", + "textUploaded": "Carregado", + "textWords": "Palavras", + "textYes": "Sim", + "txtDownloadTxt": "Descarregar TXT", + "txtIncorrectPwd": "A Palavra-passe está incorreta", + "txtOk": "Ok", + "txtProtected": "Assim que introduzir uma palavra-passe e abrir o ficheiro, a palavra-passe atual será redefinida.", + "txtScheme1": "Office", + "txtScheme10": "Mediana", + "txtScheme11": "Metro", + "txtScheme12": "Módulo", + "txtScheme13": "Opulento", + "txtScheme14": "Balcão envidraçado", + "txtScheme15": "Origem", + "txtScheme16": "Papel", + "txtScheme17": "Solstício", + "txtScheme18": "Técnica", + "txtScheme19": "Viagem", + "txtScheme2": "Escala de cinza", + "txtScheme20": "Urbano", + "txtScheme21": "Verve", + "txtScheme22": "Novo Escritório", + "txtScheme3": "Ápice", + "txtScheme4": "Aspeto", + "txtScheme5": "Cívico", + "txtScheme6": "Concurso", + "txtScheme7": "Equidade", + "txtScheme8": "Fluxo", + "txtScheme9": "Fundição", + "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" + }, + "Toolbar": { + "dlgLeaveMsgText": "Existem alterações não guardadas. Clique 'Ficar na página' para guardar automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", + "dlgLeaveTitleText": "Saiu da aplicação", + "leaveButtonText": "Sair da página", + "stayButtonText": "Ficar na página" + } +} \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index f670331a6..511f18d93 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -397,7 +397,9 @@ "unknownErrorText": "Erro desconhecido.", "uploadImageExtMessage": "Formato de imagem desconhecido.", "uploadImageFileCountMessage": "Sem imagens carregadas.", - "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB." + "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Carregando dados...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "Você tem mudanças não salvas. Clique em 'Ficar nesta página' para esperar pela auto-salvar. Clique em 'Sair desta página' para descartar todas as mudanças não salvas.", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 421ef49b9..60ed41041 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -397,7 +397,9 @@ "unknownErrorText": "Eroare necunoscută.", "uploadImageExtMessage": "Format de imagine nerecunoscut.", "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Încărcarea datelor...", @@ -570,6 +572,7 @@ "textEnableAll": "Se activează toate", "textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile cu notificare ", "textEncoding": "Codificare", + "textFastWV": "Vizualizare rapidă web", "textFind": "Găsire", "textFindAndReplace": "Găsire și înlocuire", "textFindAndReplaceAll": "Găsire și înlocuire totală", @@ -588,6 +591,7 @@ "textMargins": "Margini", "textMarginsH": "Marginile sus și jos sunt prea ridicate pentru această pagină", "textMarginsW": "Marginile stânga și dreapta sunt prea late pentru această pagină", + "textNo": "Nu", "textNoCharacters": "Caractere neimprimate", "textNoTextFound": "Textul nu a fost găsit", "textOk": "OK", @@ -595,7 +599,10 @@ "textOrientation": "Orientare", "textOwner": "Proprietar", "textPages": "Pagini", + "textPageSize": "Dimensiune pagină", "textParagraphs": "Paragrafe", + "textPdfTagged": "PDF etichetat", + "textPdfVer": "Versiune a PDF", "textPoint": "Punct", "textPortrait": "Portret", "textPrint": "Imprimare", @@ -617,6 +624,7 @@ "textUnitOfMeasurement": "Unitate de măsură ", "textUploaded": "S-a încărcat", "textWords": "Cuvinte", + "textYes": "Da", "txtDownloadTxt": "Încărcare TXT", "txtIncorrectPwd": "Parolă incorectă", "txtOk": "OK", @@ -642,12 +650,12 @@ "txtScheme6": "Concurență", "txtScheme7": "Echilibru", "txtScheme8": "Flux", - "txtScheme9": "Forjă", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "txtScheme9": "Forjă" }, "Toolbar": { "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 98e921142..d9a9bc42f 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -397,7 +397,9 @@ "unknownErrorText": "Неизвестная ошибка.", "uploadImageExtMessage": "Неизвестный формат рисунка.", "uploadImageFileCountMessage": "Ни одного рисунка не загружено.", - "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB." + "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Загрузка данных...", @@ -566,10 +568,11 @@ "textDownload": "Скачать", "textDownloadAs": "Скачать как", "textDownloadRtf": "Если вы продолжите сохранение в этот формат, часть форматирования может быть потеряна. Вы действительно хотите продолжить?", - "textDownloadTxt": "Если вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян. Вы действительно хотите продолжить?", + "textDownloadTxt": "Если вы продолжите сохранение в этот формат, вся функциональность, кроме текста, будет потеряна. Вы действительно хотите продолжить?", "textEnableAll": "Включить все", "textEnableAllMacrosWithoutNotification": "Включить все макросы без уведомления", "textEncoding": "Кодировка", + "textFastWV": "Быстрый веб-просмотр", "textFind": "Поиск", "textFindAndReplace": "Поиск и замена", "textFindAndReplaceAll": "Найти и заменить все", @@ -588,6 +591,7 @@ "textMargins": "Поля", "textMarginsH": "Верхнее и нижнее поля слишком высокие для заданной высоты страницы", "textMarginsW": "Левое и правое поля слишком широкие для заданной ширины страницы", + "textNo": "Нет", "textNoCharacters": "Непечатаемые символы", "textNoTextFound": "Текст не найден", "textOk": "Ok", @@ -595,7 +599,10 @@ "textOrientation": "Ориентация", "textOwner": "Владелец", "textPages": "Страницы", + "textPageSize": "Размер страницы", "textParagraphs": "Абзацы", + "textPdfTagged": "PDF с тегами", + "textPdfVer": "Версия PDF", "textPoint": "Пункт", "textPortrait": "Книжная", "textPrint": "Печать", @@ -617,6 +624,7 @@ "textUnitOfMeasurement": "Единица измерения", "textUploaded": "Загружен", "textWords": "Слова", + "textYes": "Да", "txtDownloadTxt": "Скачать TXT", "txtIncorrectPwd": "Неверный пароль", "txtOk": "Ok", @@ -642,12 +650,12 @@ "txtScheme6": "Открытая", "txtScheme7": "Справедливость", "txtScheme8": "Поток", - "txtScheme9": "Литейная", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "txtScheme9": "Литейная" }, "Toolbar": { "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index 97fde94a6..bddffdb4e 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -1,341 +1,332 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", + "textAbout": "O aplikácii", + "textAddress": "Adresa", + "textBack": "Späť", "textEmail": "Email", - "textPoweredBy": "Powered By", + "textPoweredBy": "Poháňaný ", "textTel": "Tel", - "textVersion": "Version" + "textVersion": "Verzia" }, "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add link", - "textAddress": "Address", - "textBack": "Back", - "textBelowText": "Below text", - "textBottomOfPage": "Bottom of page", - "textBreak": "Break", - "textCancel": "Cancel", - "textCenterBottom": "Center Bottom", - "textCenterTop": "Center Top", - "textColumnBreak": "Column Break", - "textColumns": "Columns", - "textComment": "Comment", - "textContinuousPage": "Continuous Page", - "textCurrentPosition": "Current Position", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify image URL.", - "textEvenPage": "Even Page", - "textFootnote": "Footnote", - "textFormat": "Format", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertFootnote": "Insert Footnote", - "textInsertImage": "Insert Image", - "textLeftBottom": "Left Bottom", - "textLeftTop": "Left Top", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLocation": "Location", - "textNextPage": "Next Page", - "textOddPage": "Odd Page", - "textOther": "Other", - "textPageBreak": "Page Break", - "textPageNumber": "Page Number", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPosition": "Position", - "textRightBottom": "Right Bottom", - "textRightTop": "Right Top", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textSectionBreak": "Section Break", - "textShape": "Shape", - "textStartAt": "Start At", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links" + "textWithBlueLinks": "With Blue Links", + "notcriticalErrorTitle": "Upozornenie", + "textAddLink": "Pridať odkaz", + "textAddress": "Adresa", + "textBack": "Späť", + "textBelowText": "Pod textom", + "textBottomOfPage": "Spodná časť stránky", + "textBreak": "Zalomenie ", + "textCancel": "Zrušiť", + "textCenterBottom": "Dole uprostred", + "textCenterTop": "Centrovať nahor", + "textColumnBreak": "Príznak nového stĺpca", + "textColumns": "Stĺpce", + "textComment": "Komentár", + "textContinuousPage": "Neprerušovaná strana", + "textCurrentPosition": "Aktuálna pozícia", + "textDisplay": "Zobraziť", + "textEmptyImgUrl": "Musíte upresniť URL obrázka.", + "textEvenPage": "Párna stránka", + "textFootnote": "Poznámka pod čiarou", + "textFormat": "Formát", + "textImage": "Obrázok", + "textImageURL": "URL obrázka", + "textInsert": "Vložiť", + "textInsertFootnote": "Vložiť poznámku pod čiarou", + "textInsertImage": "Vložiť obrázok", + "textLeftBottom": "Vľavo dole", + "textLeftTop": "Vľavo hore", + "textLink": "Odkaz", + "textLinkSettings": "Nastavenia odkazu", + "textLocation": "Umiestnenie", + "textNextPage": "Ďalšia stránka", + "textOddPage": "Nepárna strana", + "textOk": "OK", + "textOther": "Ostatné", + "textPageBreak": "Oddeľovač stránky/zlom strany", + "textPageNumber": "Číslo strany", + "textPictureFromLibrary": "Obrázok z Knižnice", + "textPictureFromURL": "Obrázok z URL adresy", + "textPosition": "Pozícia", + "textRightBottom": "Vpravo dole", + "textRightTop": "Vpravo hore", + "textRows": "Riadky", + "textScreenTip": "Nápoveda", + "textSectionBreak": "Koniec odseku", + "textShape": "Tvar", + "textStartAt": "Začať na", + "textTable": "Tabuľka", + "textTableSize": "Veľkosť tabuľky", + "txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAccept": "Accept", - "textAcceptAllChanges": "Accept all changes", - "textAddComment": "Add comment", - "textAddReply": "Add reply", - "textAllChangesAcceptedPreview": "All changes accepted (Preview)", - "textAllChangesEditing": "All changes (Editing)", - "textAllChangesRejectedPreview": "All changes rejected (Preview)", - "textAtLeast": "at least", - "textAuto": "auto", - "textBack": "Back", - "textBaseline": "Baseline", - "textBold": "Bold", - "textBreakBefore": "Page break before", - "textCancel": "Cancel", - "textCaps": "All caps", - "textCenter": "Align center", - "textChart": "Chart", - "textCollaboration": "Collaboration", - "textColor": "Font color", - "textComments": "Comments", - "textContextual": "Don't add intervals between paragraphs of the same style", - "textDelete": "Delete", - "textDeleteComment": "Delete Comment", - "textDeleted": "Deleted:", - "textDeleteReply": "Delete Reply", - "textDisplayMode": "Display Mode", - "textDone": "Done", - "textDStrikeout": "Double strikeout", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textEquation": "Equation", - "textExact": "exactly", - "textFinal": "Final", - "textFirstLine": "First line", - "textFormatted": "Formatted", - "textHighlight": "Highlight color", - "textImage": "Image", - "textIndentLeft": "Indent left", - "textIndentRight": "Indent right", - "textInserted": "Inserted:", - "textItalic": "Italic", - "textJustify": "Align justified ", - "textKeepLines": "Keep lines together", - "textKeepNext": "Keep with next", - "textLeft": "Align left", - "textLineSpacing": "Line Spacing: ", - "textMarkup": "Markup", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textMultiple": "multiple", - "textNoBreakBefore": "No page break before", - "textNoChanges": "There are no changes.", - "textNoComments": "This document doesn't contain comments", - "textNoContextual": "Add interval between paragraphs of the same style", - "textNoKeepLines": "Don't keep lines together", - "textNoKeepNext": "Don't keep with next", - "textNot": "Not ", - "textNoWidow": "No widow control", - "textNum": "Change numbering", - "textOriginal": "Original", - "textParaDeleted": "Paragraph Deleted", - "textParaFormatted": "Paragraph Formatted", - "textParaInserted": "Paragraph Inserted", - "textParaMoveFromDown": "Moved Down:", - "textParaMoveFromUp": "Moved Up:", - "textParaMoveTo": "Moved:", - "textPosition": "Position", - "textReject": "Reject", - "textRejectAllChanges": "Reject All Changes", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textReview": "Review", - "textReviewChange": "Review Change", - "textRight": "Align right", - "textShape": "Shape", - "textShd": "Background color", - "textSmallCaps": "Small caps", - "textSpacing": "Spacing", - "textSpacingAfter": "Spacing after", - "textSpacingBefore": "Spacing before", - "textStrikeout": "Strikeout", - "textSubScript": "Subscript", - "textSuperScript": "Superscript", - "textTableChanged": "Table Settings Changed", - "textTableRowsAdd": "Table Rows Added", - "textTableRowsDel": "Table Rows Deleted", - "textTabs": "Change tabs", - "textTrackChanges": "Track Changes", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUnderline": "Underline", - "textUsers": "Users", - "textWidow": "Widow control", - "textOk": "Ok" - }, - "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "notcriticalErrorTitle": "Upozornenie", + "textAccept": "Prijať", + "textAcceptAllChanges": "Akceptovať všetky zmeny", + "textAddComment": "Pridať komentár", + "textAddReply": "Pridať odpoveď", + "textAllChangesAcceptedPreview": "Všetky zmeny prijaté (ukážka)", + "textAllChangesEditing": "Všetky zmeny (upravované)", + "textAllChangesRejectedPreview": "Všetky zmeny boli zamietnuté (ukážka)", + "textAtLeast": "aspoň", + "textAuto": "Automaticky", + "textBack": "Späť", + "textBaseline": "Základná linka/základný", + "textBold": "Tučné", + "textBreakBefore": "Zlom strany pred", + "textCancel": "Zrušiť", + "textCaps": "Všetko veľkým", + "textCenter": "Zarovnať na stred", + "textChart": "Graf", + "textCollaboration": "Spolupráca", + "textColor": "Farba písma", + "textComments": "Komentáre", + "textContextual": "Nepridávajte intervaly medzi odsekmi rovnakého štýlu", + "textDelete": "Odstrániť", + "textDeleteComment": "Vymazať komentár", + "textDeleted": "Zmazané:", + "textDeleteReply": "Vymazať odpoveď", + "textDisplayMode": "Režim zobrazenia", + "textDone": "Hotovo", + "textDStrikeout": "Dvojité prečiarknutie", + "textEdit": "Upraviť", + "textEditComment": "Upraviť komentár", + "textEditReply": "Upraviť odpoveď", + "textEditUser": "Používatelia, ktorí súbor upravujú:", + "textEquation": "Rovnica", + "textExact": "presne", + "textFinal": "Posledný", + "textFirstLine": "Prvý riadok", + "textFormatted": "Formátované", + "textHighlight": "Farba zvýraznenia", + "textImage": "Obrázok", + "textIndentLeft": "Osadenie vľavo", + "textIndentRight": "Osadenie vpravo", + "textInserted": "Vložené:", + "textItalic": "Kurzíva", + "textJustify": "Zarovnať podľa okrajov", + "textKeepLines": "Zviazať riadky dohromady", + "textKeepNext": "Zviazať s nasledujúcim", + "textLeft": "Zarovnať doľava", + "textLineSpacing": "Riadkovanie:", + "textMarkup": "Vyznačenie", + "textMessageDeleteComment": "Naozaj chcete zmazať tento komentár?", + "textMessageDeleteReply": "Naozaj chcete zmazať túto odpoveď?", + "textMultiple": "Viacnásobný", + "textNoBreakBefore": "Nevložiť zlom strany pred", + "textNoChanges": "Nie sú žiadne zmeny.", + "textNoComments": "Tento dokument neobsahuje komentáre", + "textNoContextual": "Pridať medzeru medzi odsekmi rovnakého štýlu", + "textNoKeepLines": "Neudržuj riadky spolu", + "textNoKeepNext": "Nepokračovať s ďalším", + "textNot": "Nie", + "textNoWidow": "Žiadny ovládací prvok okna", + "textNum": "Zmeniť číslovanie", + "textOk": "OK", + "textOriginal": "Originál", + "textParaDeleted": "Odstavec smazaný", + "textParaFormatted": "Formátovaný odsek", + "textParaInserted": "Odstavec vložený", + "textParaMoveFromDown": "Presunuté nadol:", + "textParaMoveFromUp": "Presunuté nahor", + "textParaMoveTo": "Presunuté:", + "textPosition": "Pozícia", + "textReject": "Odmietnuť", + "textRejectAllChanges": "Odmietnuť všetky zmeny", + "textReopen": "Znovu otvoriť", + "textResolve": "Vyriešiť", + "textReview": "Prehľad", + "textReviewChange": "Posúdiť zmenu", + "textRight": "Zarovnať doprava", + "textShape": "Tvar", + "textShd": "Farba pozadia", + "textSmallCaps": "Malé písmená", + "textSpacing": "Medzery", + "textSpacingAfter": "Medzera za", + "textSpacingBefore": "Medzera pred", + "textStrikeout": "Preškrtnutie", + "textSubScript": "Dolný index", + "textSuperScript": "Horný index", + "textTableChanged": "Nastavenia tabuľky zmenené", + "textTableRowsAdd": "Pridané riadky tabuľky", + "textTableRowsDel": "Riadky tabuľky boli odstránené", + "textTabs": "Zmeniť záložky", + "textTrackChanges": "Sledovať zmeny", + "textTryUndoRedo": "Funkcia Späť/Znova sú vypnuté pre rýchli režim spolupráce. ", + "textUnderline": "Podčiarknutie", + "textUsers": "Používatelia", + "textWidow": "Ovládanie okien" }, "HighlightColorPalette": { - "textNoFill": "No Fill" + "textNoFill": "Bez výplne" + }, + "ThemeColorPalette": { + "textCustomColors": "Vlastné farby", + "textStandartColors": "Štandardné farby", + "textThemeColors": "Farebné témy" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add comment", - "menuAddLink": "Add link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuReview": "Review", - "menuReviewChange": "Review Change", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows", - "menuStartNewList": "Start new list", - "menuStartNumberingFrom": "Set numbering value", - "menuContinueNumbering": "Continue numbering", - "menuSeparateList": "Separate list", - "menuJoinList": "Join to previous list", + "errorCopyCutPaste": "Akcie kopírovania, vystrihovania a vkladania pomocou kontextovej ponuky sa budú vykonávať iba v práve otvorenom súbore.", + "menuAddComment": "Pridať komentár", + "menuAddLink": "Pridať odkaz", + "menuCancel": "Zrušiť", + "menuContinueNumbering": "Pokračovať v číslovaní", + "menuDelete": "Odstrániť", + "menuDeleteTable": "Odstrániť tabuľku", + "menuEdit": "Upraviť", + "menuJoinList": "Pripojiť k predošlému zoznamu", + "menuMerge": "Zlúčiť", + "menuMore": "Viac", + "menuOpenLink": "Otvoriť odkaz", + "menuReview": "Prehľad", + "menuReviewChange": "Posúdiť zmenu", + "menuSeparateList": "Oddelený zoznam", + "menuSplit": "Rozdeliť", + "menuStartNewList": "Začať nový zoznam", + "menuStartNumberingFrom": "Nastaviť hodnotu číslovania", + "menuViewComment": "Pozrieť komentár", + "textCancel": "Zrušiť", + "textColumns": "Stĺpce", + "textCopyCutPasteActions": "Kopírovať, vystrihnúť a prilepiť", + "textDoNotShowAgain": "Nezobrazovať znova", + "textNumberingValue": "Hodnota číslovania", "textOk": "OK", - "textCancel": "Cancel", - "textNumberingValue": "Numbering Value", "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only" + "textRefreshPageNumbersOnly": "Refresh page numbers only", + "textRows": "Riadky" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual size", - "textAddCustomColor": "Add custom color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional formatting", - "textAddress": "Address", - "textAdvanced": "Advanced", - "textAdvancedSettings": "Advanced settings", - "textAfter": "After", - "textAlign": "Align", - "textAllCaps": "All caps", - "textAllowOverlap": "Allow overlap", - "textAuto": "Auto", - "textAutomatic": "Automatic", - "textBack": "Back", - "textBackground": "Background", - "textBandedColumn": "Banded column", - "textBandedRow": "Banded row", - "textBefore": "Before", - "textBehind": "Behind", - "textBorder": "Border", - "textBringToForeground": "Bring to foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClose": "Close", - "textColor": "Color", - "textContinueFromPreviousSection": "Continue from previous section", - "textCustomColor": "Custom Color", - "textDifferentFirstPage": "Different first page", - "textDifferentOddAndEvenPages": "Different odd and even pages", - "textDisplay": "Display", - "textDistanceFromText": "Distance from text", - "textDoubleStrikethrough": "Double Strikethrough", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify image URL.", - "textFill": "Fill", - "textFirstColumn": "First Column", - "textFirstLine": "FirstLine", - "textFlow": "Flow", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFooter": "Footer", - "textHeader": "Header", - "textHeaderRow": "Header Row", - "textHighlightColor": "Highlight Color", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textInFront": "In Front", - "textInline": "Inline", - "textKeepLinesTogether": "Keep Lines Together", - "textKeepWithNext": "Keep with Next", - "textLastColumn": "Last Column", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkToPrevious": "Link to Previous", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textMoveWithText": "Move with Text", - "textNone": "None", - "textNoStyles": "No styles for this type of charts.", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOpacity": "Opacity", - "textOptions": "Options", - "textOrphanControl": "Orphan Control", - "textPageBreakBefore": "Page Break Before", - "textPageNumbering": "Page Numbering", - "textParagraph": "Paragraph", - "textParagraphStyles": "Paragraph Styles", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", + "notcriticalErrorTitle": "Upozornenie", + "textActualSize": "Aktuálna veľkosť", + "textAddCustomColor": "Pridať vlastnú farbu", + "textAdditional": "Ďalšie", + "textAdditionalFormatting": "Ďalšie formátovanie", + "textAddress": "Adresa", + "textAdvanced": "Pokročilé", + "textAdvancedSettings": "Pokročilé nastavenia", + "textAfter": "Po", + "textAlign": "Zarovnať", + "textAllCaps": "Všetko veľkým", + "textAllowOverlap": "Povoliť prekrývanie", + "textApril": "apríl", + "textAugust": "august", + "textAuto": "Automaticky", + "textAutomatic": "Automaticky", + "textBack": "Späť", + "textBackground": "Pozadie", + "textBandedColumn": "Pruhovaný stĺpec", + "textBandedRow": "Pruhovaný riadok", + "textBefore": "Pred", + "textBehind": "Za", + "textBorder": "Orámovanie", + "textBringToForeground": "Premiestniť do popredia", + "textBullets": "Odrážky", + "textBulletsAndNumbers": "Odrážky & Číslovanie", + "textCellMargins": "Okraje bunky", + "textChart": "Graf", + "textClose": "Zatvoriť", + "textColor": "Farba", + "textContinueFromPreviousSection": "Pokračovať z predošlej sekcie", + "textCustomColor": "Vlastná farba", + "textDecember": "december", + "textDesign": "Dizajn/náčrt", + "textDifferentFirstPage": "Odlišná prvá stránka", + "textDifferentOddAndEvenPages": "Rozdielne nepárne a párne stránky", + "textDisplay": "Zobraziť", + "textDistanceFromText": "Vzdialenosť od textu", + "textDoubleStrikethrough": "Dvojité prečiarknutie", + "textEditLink": "Upraviť odkaz", + "textEffects": "Efekty", + "textEmpty": "Prázdne", + "textEmptyImgUrl": "Musíte upresniť URL obrázka.", + "textFebruary": "február", + "textFill": "Vyplniť", + "textFirstColumn": "Prvý stĺpec", + "textFirstLine": "Prvý riadok", + "textFlow": "Tok", + "textFontColor": "Farba písma", + "textFontColors": "Farby písma", + "textFonts": "Písma", + "textFooter": "Päta stránky", + "textFr": "pi", + "textHeader": "Hlavička", + "textHeaderRow": "Riadok hlavičky", + "textHighlightColor": "Farba zvýraznenia", + "textHyperlink": "Hypertextový odkaz", + "textImage": "Obrázok", + "textImageURL": "URL obrázka", + "textInFront": "Vpredu", + "textInline": "Zarovno s textom", + "textJanuary": "január", + "textJuly": "júl", + "textJune": "jún", + "textKeepLinesTogether": "Zviazať riadky dohromady", + "textKeepWithNext": "Zviazať s nasledujúcim", + "textLastColumn": "Posledný stĺpec", + "textLetterSpacing": "Rozstup medzi písmenami", + "textLineSpacing": "Riadkovanie", + "textLink": "Odkaz", + "textLinkSettings": "Nastavenia odkazu", + "textLinkToPrevious": "Odkaz na predchádzajúci", + "textMarch": "marec", + "textMay": "máj", + "textMo": "po", + "textMoveBackward": "Posunúť späť", + "textMoveForward": "Posunúť vpred", + "textMoveWithText": "Presunúť s textom", + "textNone": "žiadne", + "textNoStyles": "Žiadne štýly pre tento typ grafov.", + "textNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"", + "textNovember": "november", + "textNumbers": "Čísla", + "textOctober": "október", + "textOk": "OK", + "textOpacity": "Priehľadnosť", + "textOptions": "Možnosti", + "textOrphanControl": "Kontrola osamotených riadkov", + "textPageBreakBefore": "Zlom strany pred", + "textPageNumbering": "Číslovanie strany", + "textParagraph": "Odsek", + "textParagraphStyles": "Štýly odsekov", + "textPictureFromLibrary": "Obrázok z Knižnice", + "textPictureFromURL": "Obrázok z URL adresy", "textPt": "pt", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textRepeatAsHeaderRow": "Repeat as Header Row", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textResizeToFitContent": "Resize to Fit Content", - "textScreenTip": "Screen Tip", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSize": "Size", - "textSmallCaps": "Small Caps", - "textSpaceBetweenParagraphs": "Space Between Paragraphs", - "textSquare": "Square", - "textStartAt": "Start at", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textTableOptions": "Table Options", + "textRemoveChart": "Odstrániť graf", + "textRemoveImage": "Odstrániť obrázok", + "textRemoveLink": "Odstrániť odkaz", + "textRemoveShape": "Odstrániť tvar", + "textRemoveTable": "Odstrániť tabuľku", + "textReorder": "Znovu usporiadať/zmena poradia", + "textRepeatAsHeaderRow": "Opakovať ako riadok hlavičky", + "textReplace": "Nahradiť", + "textReplaceImage": "Nahradiť obrázok", + "textResizeToFitContent": "Zmeniť veľkosť na prispôsobenie obsahu", + "textSa": "so", + "textScreenTip": "Nápoveda", + "textSelectObjectToEdit": "Vyberte objekt, ktorý chcete upraviť", + "textSendToBackground": "Presunúť do pozadia", + "textSeptember": "september", + "textSettings": "Nastavenia", + "textShape": "Tvar", + "textSize": "Veľkosť", + "textSmallCaps": "Malé písmená", + "textSpaceBetweenParagraphs": "Medzera medzi odsekmi", + "textSquare": "Štvorec", + "textStartAt": "Začať na", + "textStrikethrough": "Preškrtnutie", + "textStyle": "Štýl", + "textStyleOptions": "Možnosti štýlu", + "textSu": "ne", + "textSubscript": "Dolný index", + "textSuperscript": "Horný index", + "textTable": "Tabuľka", + "textTableOptions": "Možnosti tabuľky", "textText": "Text", - "textThrough": "Through", - "textTight": "Tight", - "textTopAndBottom": "Top and Bottom", - "textTotalRow": "Total Row", - "textType": "Type", - "textWrap": "Wrap", - "textNumbers": "Numbers", - "textDesign": "Design", - "textSu": "Su", - "textMo": "Mo", - "textTu": "Tu", - "textWe": "We", - "textTh": "Th", - "textFr": "Fr", - "textSa": "Sa", - "textJanuary": "January", - "textFebruary": "February", - "textMarch": "March", - "textApril": "April", - "textMay": "May", - "textJune": "June", - "textJuly": "July", - "textAugust": "August", - "textSeptember": "September", - "textOctober": "October", - "textNovember": "November", - "textDecember": "December", - "textEmpty": "Empty", - "textOk": "Ok", "textTableOfCont": "TOC", "textPageNumbers": "Page Numbers", "textSimple": "Simple", @@ -357,302 +348,319 @@ "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textStyles": "Styles", - "textAmountOfLevels": "Amount of Levels" + "textAmountOfLevels": "Amount of Levels", + "textTh": "št", + "textThrough": "Cez", + "textTight": "Tesný", + "textTopAndBottom": "Hore a dole", + "textTotalRow": "Celkový riadok", + "textTu": "ut", + "textType": "Typ", + "textWe": "st", + "textWrap": "Zabaliť" }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
When you click OK, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorMailMergeLoadFile": "Loading failed", - "errorMailMergeSaveFile": "Merge failed.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "convertationTimeoutText": "Prekročený čas konverzie.", + "criticalErrorExtText": "Stlačením tlačidla „OK“ sa vrátite do zoznamu dokumentov.", + "criticalErrorTitle": "Chyba", + "downloadErrorText": "Sťahovanie zlyhalo.", + "errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Kontaktujte svojho správcu.", + "errorBadImageUrl": "Adresa URL obrázku je nesprávna", + "errorConnectToServer": "Tento dokument nie je možné uložiť. Skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo OK sa zobrazí výzva na stiahnutie dokumentu.", + "errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Obráťte sa prosím na podporu.", + "errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.", + "errorDataRange": "Nesprávny rozsah údajov.", + "errorDefaultMessage": "Kód chyby: %1", + "errorEditingDownloadas": "Počas práce s dokumentom sa vyskytla chyba.
Prevezmite dokument a uložte záložnú kópiu súboru lokálne.", + "errorFilePassProtect": "Súbor je chránený heslom a nebolo možné ho otvoriť.", + "errorFileSizeExceed": "Veľkosť súboru presahuje limit vášho servera.
Kontaktujte svojho správcu.", + "errorKeyEncrypt": "Neznámy kľúč deskriptoru", + "errorKeyExpire": "Kľúč deskriptora vypršal", + "errorLoadingFont": "Fonty sa nenahrali.
Kontaktujte prosím svojho administrátora Servera dokumentov.", + "errorMailMergeLoadFile": "Načítavanie zlyhalo", + "errorMailMergeSaveFile": "Zlúčenie zlyhalo.", + "errorSessionAbsolute": "Platnosť relácie úpravy dokumentu vypršala. Prosím, načítajte stránku znova.", + "errorSessionIdle": "Dokument nebol dlhší čas upravovaný. Prosím, načítajte stránku znova.", + "errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file can't be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", + "errorUpdateVersionOnDisconnect": "Internetové pripojenie bolo obnovené a verzia súboru bola zmenená.
Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", + "errorUserDrop": "K súboru momentálne nie je možné získať prístup.", + "errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", + "errorViewerDisconnect": "Spojenie je stratené. Dokument si stále môžete prezerať,
ale nebudete si ho môcť stiahnuť ani vytlačiť, kým sa neobnoví pripojenie a stránka sa znova nenačíta.", + "notcriticalErrorTitle": "Upozornenie", + "openErrorText": "Pri otváraní súboru sa vyskytla chyba", + "saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", + "scriptLoadError": "Pripojenie je príliš pomalé, niektoré komponenty sa nepodarilo načítať. Prosím, načítajte stránku znova.", + "splitDividerErrorText": "Počet riadkov musí byť deliteľom %1", + "splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1", + "splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1", + "unknownErrorText": "Neznáma chyba.", + "uploadImageExtMessage": "Neznámy formát obrázka.", + "uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", + "uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadMergeText": "Downloading...", - "downloadMergeTitle": "Downloading", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "mailMergeLoadFileText": "Loading Data Source...", - "mailMergeLoadFileTitle": "Loading Data Source", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "sendMergeText": "Sending Merge...", - "sendMergeTitle": "Sending Merge", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "Načítavanie dát...", + "applyChangesTitleText": "Načítavanie dát", + "downloadMergeText": "Sťahovanie...", + "downloadMergeTitle": "Sťahovanie", + "downloadTextText": "Sťahovanie dokumentu...", + "downloadTitleText": "Sťahovanie dokumentu", + "loadFontsTextText": "Načítavanie dát...", + "loadFontsTitleText": "Načítavanie dát", + "loadFontTextText": "Načítavanie dát...", + "loadFontTitleText": "Načítavanie dát", + "loadImagesTextText": "Načítavanie obrázkov...", + "loadImagesTitleText": "Načítanie obrázkov", + "loadImageTextText": "Načítanie obrázku ..", + "loadImageTitleText": "Načítavanie obrázku", + "loadingDocumentTextText": "Načítavanie dokumentu ...", + "loadingDocumentTitleText": "Načítavanie dokumentu", + "mailMergeLoadFileText": "Načítavanie zdroja údajov...", + "mailMergeLoadFileTitle": "Načítavanie zdroja údajov", + "openTextText": "Otváranie dokumentu...", + "openTitleText": "Otváranie dokumentu", + "printTextText": "Tlač dokumentu...", + "printTitleText": "Tlač dokumentu", + "savePreparingText": "Príprava na uloženie", + "savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", + "saveTextText": "Ukladanie dokumentu...", + "saveTitleText": "Ukladanie dokumentu", + "sendMergeText": "Odoslanie zlúčenia...", + "sendMergeTitle": "Odoslanie zlúčenia", + "textLoadingDocument": "Načítavanie dokumentu", + "txtEditingMode": "Nastaviť režim úprav ...", + "uploadImageTextText": "Nahrávanie obrázku...", + "uploadImageTitleText": "Nahrávanie obrázku", + "waitText": "Čakajte, prosím..." }, "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your administrator.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "Chyba", + "errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Kontaktujte svojho správcu.", + "errorOpensource": "Pomocou bezplatnej komunitnej verzie môžete otvárať dokumenty len na prezeranie. Na prístup k editorom mobilného webu je potrebná komerčná licencia.", + "errorProcessSaveResult": "Ukladanie zlyhalo.", + "errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "leavePageText": "Máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.", + "notcriticalErrorTitle": "Upozornenie", "SDK": { - " -Section ": " -Section ", - "above": "above", - "below": "below", - "Caption": "Caption", - "Choose an item": "Choose an item", - "Click to load image": "Click to load image", - "Current Document": "Current Document", - "Diagram Title": "Chart Title", - "endnote text": "Endnote Text", - "Enter a date": "Enter a date", - "Error! Bookmark not defined": "Error! Bookmark not defined.", - "Error! Main Document Only": "Error! Main Document Only.", - "Error! No text of specified style in document": "Error! No text of specified style in document.", - "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", - "Even Page ": "Even Page ", - "First Page ": "First Page ", - "Footer": "Footer", - "footnote text": "Footnote Text", - "Header": "Header", - "Heading 1": "Heading 1", - "Heading 2": "Heading 2", - "Heading 3": "Heading 3", - "Heading 4": "Heading 4", - "Heading 5": "Heading 5", - "Heading 6": "Heading 6", - "Heading 7": "Heading 7", - "Heading 8": "Heading 8", - "Heading 9": "Heading 9", - "Hyperlink": "Hyperlink", - "Index Too Large": "Index Too Large", - "Intense Quote": "Intense Quote", - "Is Not In Table": "Is Not In Table", - "List Paragraph": "List Paragraph", - "Missing Argument": "Missing Argument", - "Missing Operator": "Missing Operator", - "No Spacing": "No Spacing", - "No table of contents entries found": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.", - "No table of figures entries found": "No table of figures entries found.", - "None": "None", - "Normal": "Normal", - "Number Too Large To Format": "Number Too Large To Format", - "Odd Page ": "Odd Page ", - "Quote": "Quote", - "Same as Previous": "Same as Previous", - "Series": "Series", - "Subtitle": "Subtitle", - "Syntax Error": "Syntax Error", - "Table Index Cannot be Zero": "Table Index Cannot be Zero", - "Table of Contents": "Table of Contents", - "table of figures": "Table of figures", - "The Formula Not In Table": "The Formula Not In Table", - "Title": "Title", - "TOC Heading": "TOC Heading", - "Type equation here": "Type equation here", - "Undefined Bookmark": "Undefined Bookmark", - "Unexpected End of Formula": "Unexpected End of Formula", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here", - "Zero Divide": "Zero Divide" + " -Section ": "-Sekcia", + "above": "Nad", + "below": "pod", + "Caption": "Popis", + "Choose an item": "Zvolte položku", + "Click to load image": "Klikni pre nahratie obrázku", + "Current Document": "Aktuálny dokument", + "Diagram Title": "Názov grafu", + "endnote text": "Text vysvetlívky", + "Enter a date": "Zadajte dátum", + "Error! Bookmark not defined": "Chyba! Záložka nie je definovaná.", + "Error! Main Document Only": "Chyba! Iba hlavný dokument.", + "Error! No text of specified style in document": "Chyba! V dokumente nie je žiaden text špecifikovaného štýlu.", + "Error! Not a valid bookmark self-reference": "Chyba! Nie je platnou záložkou odkazujúcou na seba.", + "Even Page ": "Párna stránka", + "First Page ": "Prvá strana", + "Footer": "Päta stránky", + "footnote text": "Text poznámky pod čiarou", + "Header": "Hlavička", + "Heading 1": "Nadpis 1", + "Heading 2": "Nadpis 2", + "Heading 3": "Nadpis 3", + "Heading 4": "Nadpis 4", + "Heading 5": "Nadpis 5", + "Heading 6": "Nadpis 6", + "Heading 7": "Nadpis 7", + "Heading 8": "Nadpis 8", + "Heading 9": "Nadpis 9", + "Hyperlink": "Hypertextový odkaz", + "Index Too Large": "Index je priveľký", + "Intense Quote": "Zvýraznená citácia", + "Is Not In Table": "Nie je v tabuľke", + "List Paragraph": "Odsek zoznamu", + "Missing Argument": "Chýba argument", + "Missing Operator": "Chýbajúci operátor", + "No Spacing": "Bez riadkovania", + "No table of contents entries found": "V dokumente neboli nájdené žiadne nadpisy. Použite na ne v texte štýl pre nadpisy, aby sa objavili v tabuľke obsahu.", + "No table of figures entries found": "Žiadne vstupné hodnoty pre obsah neboli nájdené.", + "None": "žiadne", + "Normal": "Normálny", + "Number Too Large To Format": "Číslo priveľké na formátovanie", + "Odd Page ": "Nepárna strana", + "Quote": "Citácia", + "Same as Previous": "Rovnaký ako predchádzajúci", + "Series": "Rady", + "Subtitle": "Podtitul", + "Syntax Error": "Syntaktická chyba", + "Table Index Cannot be Zero": "Index tabuľky nemôže byť nula", + "Table of Contents": "Obsah", + "table of figures": "Obsah", + "The Formula Not In Table": "Vzorec nie je v tabuľke", + "Title": "Názov", + "TOC Heading": "Nadpis Obsahu", + "Type equation here": "Sem zadajte rovnicu", + "Undefined Bookmark": "Nedefinovaná záložka", + "Unexpected End of Formula": "Neočakávaný koniec vzorca", + "X Axis": "Os X (XAS)", + "Y Axis": "Os Y", + "Your text here": "Tu napíšte svoj text", + "Zero Divide": "Delenie nulou" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit this file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textAnonymous": "Anonymný", + "textBuyNow": "Navštíviť webovú stránku", + "textClose": "Zatvoriť", + "textContactUs": "Kontaktujte predajcu", + "textCustomLoader": "Ľutujeme, nemáte nárok na výmenu nakladača. Ak chcete získať cenovú ponuku, kontaktujte naše obchodné oddelenie.", + "textGuest": "Hosť", + "textHasMacros": "Súbor obsahuje automatické makrá.
Naozaj chcete makra spustiť?", + "textNo": "Nie", + "textNoLicenseTitle": "Bol dosiahnutý limit licencie", + "textNoTextFound": "Text nebol nájdený", + "textPaidFeature": "Platená funkcia", + "textRemember": "Zapamätaj si moju voľbu", + "textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.", + "textReplaceSuccess": "Vyhľadávanie bolo uskutočnené. Nahradené udalosti: {0}", + "textYes": "Áno", + "titleLicenseExp": "Platnosť licencie uplynula", + "titleServerVersion": "Editor bol aktualizovaný", + "titleUpdateVersion": "Verzia bola zmenená", + "warnLicenseExceeded": "Dosiahli ste limit pre simultánne pripojenia k %1 editorom. Tento dokument sa otvorí iba na prezeranie. Ak sa chcete dozvedieť viac, kontaktujte svojho správcu.", + "warnLicenseExp": "Platnosť vašej licencie vypršala. Aktualizujte svoju licenciu a obnovte stránku.", + "warnLicenseLimitedNoAccess": "Platnosť licencie vypršala. Nemáte prístup k funkciám úpravy dokumentov. Prosím, kontaktujte svojho administrátora.", + "warnLicenseLimitedRenewed": "Licenciu je potrebné obnoviť. Máte obmedzený prístup k funkciám úpravy dokumentov.
Ak chcete získať úplný prístup, kontaktujte svojho správcu", + "warnLicenseUsersExceeded": "Dosiahli ste limit %1 editora v režime spolupráce na úpravách. Ohľadne podrobnosti sa obráťte na svojho správcu. ", + "warnNoLicense": "Dosiahli ste limit pre simultánne pripojenia k %1 editorom. Tento dokument sa otvorí iba na prezeranie. Kontaktujte predajný tím %1 pre osobné podmienky inovácie.", + "warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", + "warnProcessRightsChange": "Nemáte povolenie na úpravu tohto súboru." }, "Settings": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "advTxtOptions": "Choose TXT Options", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textCancel": "Cancel", - "textCaseSensitive": "Case Sensitive", + "advDRMOptions": "Chránený súbor", + "advDRMPassword": "Heslo", + "advTxtOptions": "Vybrať možnosti TXT", + "closeButtonText": "Zatvoriť súbor", + "notcriticalErrorTitle": "Upozornenie", + "textAbout": "O aplikácii", + "textApplication": "Aplikácia", + "textApplicationSettings": "Nastavenia aplikácie", + "textAuthor": "Autor", + "textBack": "Späť", + "textBottom": "Dole", + "textCancel": "Zrušiť", + "textCaseSensitive": "Rozlišovať veľkosť písmen", "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textComments": "Comments", - "textCommentsDisplay": "Comments Display", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDocumentInfo": "Document Info", - "textDocumentSettings": "Document Settings", - "textDocumentTitle": "Document Title", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", - "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textEncoding": "Encoding", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textHelp": "Help", - "textHiddenTableBorders": "Hidden Table Borders", - "textHighlightResults": "Highlight Results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too wide for a given page width", - "textNoCharacters": "Nonprinting Characters", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPrint": "Print", - "textReaderMode": "Reader Mode", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSpellcheck": "Spell Checking", - "textStatistic": "Statistic", - "textSubject": "Subject", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", + "textChooseEncoding": "Vyberte kódovanie", + "textChooseTxtOptions": "Vybrať možnosti TXT", + "textCollaboration": "Spolupráca", + "textColorSchemes": "Farebné schémy", + "textComment": "Komentár", + "textComments": "Komentáre", + "textCommentsDisplay": "Zobrazenie komentárov", + "textCreated": "Vytvorené", + "textCustomSize": "Vlastná veľkosť", + "textDisableAll": "Vypnúť všetko", + "textDisableAllMacrosWithNotification": "Zakázať všetky makrá s upozornením", + "textDisableAllMacrosWithoutNotification": "Zakázať všetky makrá bez upozornení", + "textDocumentInfo": "Informácie o dokumente", + "textDocumentSettings": "Nastavenia dokumentu", + "textDocumentTitle": "Názov dokumentu", + "textDone": "Hotovo", + "textDownload": "Stiahnuť", + "textDownloadAs": "Stiahnuť ako", + "textDownloadRtf": "Ak budete pokračovať v ukladaní v tomto formáte, niektoré formátovanie sa môže stratiť. Ste si istý, že chcete pokračovať?", + "textDownloadTxt": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia. Ste si istý, že chcete pokračovať?", + "textEnableAll": "Povoliť všetko", + "textEnableAllMacrosWithoutNotification": "Povoliť všetky makrá bez upozornenia", + "textEncoding": "Kódovanie", + "textFind": "Hľadať", + "textFindAndReplace": "Hľadať a nahradiť", + "textFindAndReplaceAll": "Hľadať a nahradiť všetko", + "textFormat": "Formát", + "textHelp": "Pomoc", + "textHiddenTableBorders": "Skryté orámovania tabuľky", + "textHighlightResults": "Zvýrazniť výsledky", + "textInch": "Palec (miera 2,54 cm)", + "textLandscape": "Na šírku", + "textLastModified": "Naposledy upravené", + "textLastModifiedBy": "Naposledy upravil(a) ", + "textLeft": "Vľavo", + "textLoading": "Načítava sa.....", + "textLocation": "Umiestnenie", + "textMacrosSettings": "Nastavenia makier", + "textMargins": "Okraje", + "textMarginsH": "Horné a spodné okraje sú pre danú výšku stránky príliš vysoké", + "textMarginsW": "Ľavé a pravé okraje sú príliš široké pre danú šírku stránky", + "textNoCharacters": "Formátovacie značky", + "textNoTextFound": "Text nebol nájdený", + "textOk": "OK", + "textOpenFile": "Zadajte heslo na otvorenie súboru", + "textOrientation": "Orientácia", + "textOwner": "Majiteľ", + "textPages": "Strany", + "textParagraphs": "Odseky", + "textPoint": "Bod", + "textPortrait": "Na výšku", + "textPrint": "Tlačiť", + "textReaderMode": "Režim Čitateľ", + "textReplace": "Nahradiť", + "textReplaceAll": "Nahradiť všetko", + "textResolvedComments": "Vyriešené komentáre", + "textRight": "Vpravo", + "textSearch": "Hľadať", + "textSettings": "Nastavenia", + "textShowNotification": "Ukázať oznámenie", + "textSpaces": "Medzery", + "textSpellcheck": "Kontrola pravopisu", + "textStatistic": "Štatistický", + "textSubject": "Predmet", + "textSymbols": "Symboly", + "textTitle": "Názov", + "textTop": "Hore", + "textUnitOfMeasurement": "Jednotka merania", + "textUploaded": "Nahrané", + "textWords": "Slová", + "txtDownloadTxt": "Stiahnuť TXT", + "txtIncorrectPwd": "Heslo je chybné ", + "txtOk": "OK", + "txtProtected": "Po zadaní hesla a otvorení súboru sa aktuálne heslo obnoví", + "txtScheme1": "Kancelária", + "txtScheme10": "Medián", "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textOk": "Ok", - "textChooseEncoding": "Choose Encoding", - "textChooseTxtOptions": "Choose TXT Options", - "txtDownloadTxt": "Download TXT", - "txtOk": "Ok", - "textPages": "Pages", - "textParagraphs": "Paragraphs", - "textSpaces": "Spaces", - "textSymbols": "Symbols", - "textWords": "Words", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "txtScheme12": "Modul", + "txtScheme13": "Opulentný", + "txtScheme14": "Výklenok", + "txtScheme15": "Pôvod", + "txtScheme16": "Papier", + "txtScheme17": "Slnovrat", + "txtScheme18": "Technika", + "txtScheme19": "Cestovanie", + "txtScheme2": "Odtiene sivej", + "txtScheme20": "Mestský", + "txtScheme21": "Elán", + "txtScheme22": "Nová kancelária", + "txtScheme3": "Vrchol", + "txtScheme4": "Aspekt", + "txtScheme5": "Občiansky", + "txtScheme6": "Hala", + "txtScheme7": "Spravodlivosť", + "txtScheme8": "Tok", + "txtScheme9": "Zlieváreň", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page" + "dlgLeaveMsgText": "Máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.", + "dlgLeaveTitleText": "Opúšťate aplikáciu", + "leaveButtonText": "Opustiť túto stránku", + "stayButtonText": "Zostať na tejto stránke" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index 97fde94a6..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -397,7 +397,9 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index 97fde94a6..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -397,7 +397,9 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 3405fb063..08f7d8a49 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -397,7 +397,9 @@ "unknownErrorText": "Bilinmeyen hata.", "uploadImageExtMessage": "Bilinmeyen resim formatı.", "uploadImageFileCountMessage": "Resim yüklenmedi.", - "uploadImageSizeMessage": "Görüntü çok büyük. Maksimum boyut 25 MB'dir." + "uploadImageSizeMessage": "Görüntü çok büyük. Maksimum boyut 25 MB'dir.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Veri yükleniyor...", @@ -641,13 +643,19 @@ "txtScheme7": "Net Değer", "txtScheme8": "Yayılma", "txtScheme9": "Döküm", - "txtScheme14": "Oriel", - "txtScheme19": "Trek", "textFeedback": "Feedback & Support", "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes", + "txtScheme14": "Oriel", + "txtScheme19": "Trek" }, "Toolbar": { "dlgLeaveMsgText": "Kaydedilmemiş değişiklikleriniz mevcut. Otomatik kaydetmeyi beklemek için 'Bu Sayfada Kal' seçeneğini tıklayın. Kaydedilmemiş tüm değişiklikleri atmak için 'Bu Sayfadan Ayrıl'ı tıklayın.", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index 801ae73f6..16fe3a446 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -397,7 +397,9 @@ "unknownErrorText": "Невідома помилка.", "uploadImageExtMessage": "Невідомий формат зображення.", "uploadImageFileCountMessage": "Жодного зображення не завантажено.", - "uploadImageSizeMessage": "Занадто велике зображення. Максимальний розмір – 25 MB." + "uploadImageSizeMessage": "Занадто велике зображення. Максимальний розмір – 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Завантаження даних...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "У документі є незбережені зміни. Натисніть 'Залишитись на сторінці', щоб дочекатися автозбереження. Натисніть 'Піти зі сторінки', щоб скинути всі незбережені зміни.", diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index 97fde94a6..cc3ee0c00 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -397,7 +397,9 @@ "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textPageSize": "Page Size", + "textPdfVer": "PDF Version", + "textPdfTagged": "Tagged PDF", + "textFastWV": "Fast Web View", + "textYes": "Yes", + "textNo": "No" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/zh-TW.json b/apps/documenteditor/mobile/locale/zh-TW.json new file mode 100644 index 000000000..e99160557 --- /dev/null +++ b/apps/documenteditor/mobile/locale/zh-TW.json @@ -0,0 +1,666 @@ +{ + "About": { + "textAbout": "關於", + "textAddress": "地址", + "textBack": "返回", + "textEmail": "電子郵件", + "textPoweredBy": "於支援", + "textTel": "電話", + "textVersion": "版本" + }, + "Add": { + "notcriticalErrorTitle": "警告", + "textAddLink": "新增連結", + "textAddress": "地址", + "textBack": "返回", + "textBelowText": "下方文字", + "textBottomOfPage": "頁底", + "textBreak": "換頁", + "textCancel": "取消", + "textCenterBottom": "置中底部", + "textCenterTop": "置中頂部", + "textColumnBreak": "分欄符號", + "textColumns": "欄", + "textComment": "註解", + "textContinuousPage": "連續頁面", + "textCurrentPosition": "目前位置", + "textDisplay": "顯示", + "textEmptyImgUrl": "您必須輸入圖檔的URL.", + "textEvenPage": "雙數頁", + "textFootnote": "註腳", + "textFormat": "格式", + "textImage": "圖像", + "textImageURL": "圖像 URL", + "textInsert": "插入", + "textInsertFootnote": "插入註腳", + "textInsertImage": "插入圖片", + "textLeftBottom": "左下", + "textLeftTop": "左上", + "textLink": "連結", + "textLinkSettings": "連結設定", + "textLocation": "位置", + "textNextPage": "下一頁", + "textOddPage": "奇數頁", + "textOk": "確定", + "textOther": "其它", + "textPageBreak": "分頁符", + "textPageNumber": "頁碼", + "textPictureFromLibrary": "來自圖庫的圖片", + "textPictureFromURL": "網址圖片", + "textPosition": "位置", + "textRightBottom": "右下", + "textRightTop": "右上", + "textRows": "行列", + "textScreenTip": "提示功能", + "textSectionBreak": "分節符", + "textShape": "形狀", + "textStartAt": "開始", + "textTable": "表格", + "textTableSize": "表格大小", + "txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。", + "textTableContents": "Table of Contents", + "textWithPageNumbers": "With Page Numbers", + "textWithBlueLinks": "With Blue Links" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "警告", + "textAccept": "同意", + "textAcceptAllChanges": "同意所有更改", + "textAddComment": "新增註解", + "textAddReply": "加入回應", + "textAllChangesAcceptedPreview": "更改已全部接受(預覽)", + "textAllChangesEditing": "全部的更改(編輯中)", + "textAllChangesRejectedPreview": "全部更改被拒絕(預覽)", + "textAtLeast": "至少", + "textAuto": "自動", + "textBack": "返回", + "textBaseline": "基準線", + "textBold": "粗體", + "textBreakBefore": "分頁之前", + "textCancel": "取消", + "textCaps": "全部大寫", + "textCenter": "居中對齊", + "textChart": "圖表", + "textCollaboration": "共同編輯", + "textColor": "字體顏色", + "textComments": "註解", + "textContextual": "不要在同樣風格的文字段落間增加間隔數值", + "textDelete": "刪除", + "textDeleteComment": "刪除註解", + "textDeleted": "已刪除:", + "textDeleteReply": "刪除回覆", + "textDisplayMode": "顯示模式", + "textDone": "完成", + "textDStrikeout": "雙刪除線", + "textEdit": "編輯", + "textEditComment": "編輯註解", + "textEditReply": "編輯回覆", + "textEditUser": "正在編輯文件的帳戶:", + "textEquation": "公式", + "textExact": "準確", + "textFinal": "最後", + "textFirstLine": "第一行", + "textFormatted": "已格式化", + "textHighlight": "熒光色選", + "textImage": "圖像", + "textIndentLeft": "向左內縮", + "textIndentRight": "向右內縮", + "textInserted": "已插入:", + "textItalic": "斜體", + "textJustify": "對齊", + "textKeepLines": "保持線條一致", + "textKeepNext": "跟著下一個", + "textLeft": "對齊左側", + "textLineSpacing": "行間距: ", + "textMarkup": "標記", + "textMessageDeleteComment": "確定要刪除此註解嗎?", + "textMessageDeleteReply": "確定要刪除回覆嗎?", + "textMultiple": "多項", + "textNoBreakBefore": "之前沒有分頁符", + "textNoChanges": "沒有變化。", + "textNoComments": "此文件未包含註解", + "textNoContextual": "加入間隔數值", + "textNoKeepLines": "不要保持多個線條在一起", + "textNoKeepNext": "不要與文字保持在一起", + "textNot": "不", + "textNoWidow": "無窗口控制", + "textNum": "變更編號", + "textOk": "確定", + "textOriginal": "原始", + "textParaDeleted": "段落已刪除", + "textParaFormatted": "段落格式", + "textParaInserted": "段落已插入", + "textParaMoveFromDown": "已向下移動:", + "textParaMoveFromUp": "已向上移動:", + "textParaMoveTo": "已移動:", + "textPosition": "位置", + "textReject": "拒絕", + "textRejectAllChanges": "拒絕所有更改", + "textReopen": "重開", + "textResolve": "解決", + "textReview": "評論", + "textReviewChange": "變更評論", + "textRight": "對齊右側", + "textShape": "形狀", + "textShd": "背景顏色", + "textSmallCaps": "小大寫", + "textSpacing": "間距", + "textSpacingAfter": "間距後", + "textSpacingBefore": "間距前", + "textStrikeout": "淘汰", + "textSubScript": "下標", + "textSuperScript": "上標", + "textTableChanged": "表格設定已變更", + "textTableRowsAdd": "已增加表格行數", + "textTableRowsDel": "已刪除表格行數", + "textTabs": "變更定位", + "textTrackChanges": "跟蹤變化", + "textTryUndoRedo": "在快速共同編輯模式下,撤消/重做功能被禁用。", + "textUnderline": "底線", + "textUsers": "使用者", + "textWidow": "遺留文字控制" + }, + "HighlightColorPalette": { + "textNoFill": "沒有填充" + }, + "ThemeColorPalette": { + "textCustomColors": "自訂顏色", + "textStandartColors": "標準顏色", + "textThemeColors": "主題顏色" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "使用上下文選單進行的複制,剪切和粘貼操作將僅在當前文件內執行。", + "menuAddComment": "新增註解", + "menuAddLink": "新增連結", + "menuCancel": "取消", + "menuContinueNumbering": "繼續編號", + "menuDelete": "刪除", + "menuDeleteTable": "刪除表格", + "menuEdit": "編輯", + "menuJoinList": "加入上一個列表", + "menuMerge": "合併", + "menuMore": "更多", + "menuOpenLink": "打開連結", + "menuReview": "評論", + "menuReviewChange": "變更評論", + "menuSeparateList": "單獨的清單", + "menuSplit": "分割", + "menuStartNewList": "開始新清單", + "menuStartNumberingFrom": "設定編號值", + "menuViewComment": "查看註解", + "textCancel": "取消", + "textColumns": "欄", + "textCopyCutPasteActions": "複製, 剪下, 與貼上之動作", + "textDoNotShowAgain": "不再顯示", + "textNumberingValue": "編號值", + "textOk": "確定", + "textRows": "行列", + "textRefreshEntireTable": "Refresh entire table", + "textRefreshPageNumbersOnly": "Refresh page numbers only" + }, + "Edit": { + "notcriticalErrorTitle": "警告", + "textActualSize": "實際大小", + "textAddCustomColor": "增加客制化顏色", + "textAdditional": "額外功能", + "textAdditionalFormatting": "額外格式化方式", + "textAddress": "地址", + "textAdvanced": "進階", + "textAdvancedSettings": "進階設定", + "textAfter": "之後", + "textAlign": "對齊", + "textAllCaps": "全部大寫", + "textAllowOverlap": "允許重疊", + "textApril": "四月", + "textAugust": "八月", + "textAuto": "自動", + "textAutomatic": "自動", + "textBack": "返回", + "textBackground": "背景", + "textBandedColumn": "分帶欄", + "textBandedRow": "分帶列", + "textBefore": "之前", + "textBehind": "文字在後", + "textBorder": "邊框", + "textBringToForeground": "移到前景", + "textBullets": "項目符號", + "textBulletsAndNumbers": "符號項目與編號", + "textCellMargins": "儲存格邊距", + "textChart": "圖表", + "textClose": "關閉", + "textColor": "顏色", + "textContinueFromPreviousSection": "從上個部份繼續", + "textCustomColor": "自訂顏色", + "textDecember": "十二月", + "textDesign": "設計", + "textDifferentFirstPage": "首頁不同", + "textDifferentOddAndEvenPages": "單/雙數頁不同", + "textDisplay": "顯示", + "textDistanceFromText": "與文字的距離", + "textDoubleStrikethrough": "雙刪除線", + "textEditLink": "編輯連結", + "textEffects": "效果", + "textEmpty": "空", + "textEmptyImgUrl": "您必須輸入圖檔的URL.", + "textFebruary": "二月", + "textFill": "填入", + "textFirstColumn": "第一欄", + "textFirstLine": "第一行", + "textFlow": "流程", + "textFontColor": "字體顏色", + "textFontColors": "字體顏色", + "textFonts": "字型", + "textFooter": "頁尾", + "textFr": "Fr", + "textHeader": "標頭", + "textHeaderRow": "頁首列", + "textHighlightColor": "熒光色選", + "textHyperlink": "超連結", + "textImage": "圖像", + "textImageURL": "圖像 URL", + "textInFront": "文字在前", + "textInline": "與文字排列", + "textJanuary": "一月", + "textJuly": "七月", + "textJune": "六月", + "textKeepLinesTogether": "保持線條一致", + "textKeepWithNext": "跟著下一個", + "textLastColumn": "最後一欄", + "textLetterSpacing": "字母間距", + "textLineSpacing": "行間距", + "textLink": "連結", + "textLinkSettings": "連結設定", + "textLinkToPrevious": "連接到上一個", + "textMarch": "三月", + "textMay": "五月", + "textMo": "Mo", + "textMoveBackward": "向後移動", + "textMoveForward": "向前移動", + "textMoveWithText": "與文字移動", + "textNone": "無", + "textNoStyles": "這類圖表沒有對應的風格", + "textNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。", + "textNovember": "十一月", + "textNumbers": "號碼", + "textOctober": "十月", + "textOk": "確定", + "textOpacity": "透明度", + "textOptions": "選項", + "textOrphanControl": "遺留功能控制", + "textPageBreakBefore": "分頁之前", + "textPageNumbering": "頁編碼", + "textParagraph": "段落", + "textParagraphStyles": "段落樣式", + "textPictureFromLibrary": "來自圖庫的圖片", + "textPictureFromURL": "網址圖片", + "textPt": "pt", + "textRemoveChart": "刪除圖表", + "textRemoveImage": "移除圖片", + "textRemoveLink": "刪除連結", + "textRemoveShape": "刪除形狀", + "textRemoveTable": "刪除表格", + "textReorder": "重新排序", + "textRepeatAsHeaderRow": "重複作為標題行", + "textReplace": "取代", + "textReplaceImage": "取代圖片", + "textResizeToFitContent": "調整大小以適合內容", + "textSa": "Sa", + "textScreenTip": "提示功能", + "textSelectObjectToEdit": "選擇要編輯的物件", + "textSendToBackground": "傳送到背景", + "textSeptember": "九月", + "textSettings": "設定", + "textShape": "形狀", + "textSize": "大小", + "textSmallCaps": "小大寫", + "textSpaceBetweenParagraphs": "段落間空格", + "textSquare": "正方形", + "textStartAt": "開始", + "textStrikethrough": "刪除線", + "textStyle": "風格", + "textStyleOptions": "樣式選項", + "textSu": "Su", + "textSubscript": "下標", + "textSuperscript": "上標", + "textTable": "表格", + "textTableOptions": "表格選項", + "textText": "文字", + "textTh": "Th", + "textThrough": "通過", + "textTight": "緊", + "textTopAndBottom": "頂部和底部", + "textTotalRow": "總行數", + "textTu": "Tu", + "textType": "類型", + "textWe": "We", + "textWrap": "包覆", + "textTableOfCont": "TOC", + "textPageNumbers": "Page Numbers", + "textSimple": "Simple", + "textRightAlign": "Right Align", + "textLeader": "Leader", + "textStructure": "Structure", + "textRefresh": "Refresh", + "textLevels": "Levels", + "textRemoveTableContent": "Remove table of content", + "textCurrent": "Current", + "textOnline": "Online", + "textClassic": "Classic", + "textDistinctive": "Distinctive", + "textCentered": "Centered", + "textFormal": "Formal", + "textStandard": "Standard", + "textModern": "Modern", + "textCancel": "Cancel", + "textRefreshEntireTable": "Refresh entire table", + "textRefreshPageNumbersOnly": "Refresh page numbers only", + "textStyles": "Styles", + "textAmountOfLevels": "Amount of Levels" + }, + "Error": { + "convertationTimeoutText": "轉換逾時。", + "criticalErrorExtText": "點擊\"好\"回到文件列表。", + "criticalErrorTitle": "錯誤", + "downloadErrorText": "下載失敗", + "errorAccessDeny": "您正在嘗試執行您無權執行的動作。
請聯繫您的管理員。", + "errorBadImageUrl": "不正確的圖像 URL", + "errorConnectToServer": "儲存文件失敗。請檢查您的網路設定或聯絡您的帳號管理員。
點擊\"確定\"之後,可以下載該文件。", + "errorDatabaseConnection": "外部錯誤
資料庫連結錯誤, 請聯絡技術支援。", + "errorDataEncrypted": "已收到加密的更改,無法解密。", + "errorDataRange": "不正確的資料範圍", + "errorDefaultMessage": "錯誤編號:%1", + "errorEditingDownloadas": "操作文件時發生錯誤
請將文件備份到本機端。", + "errorFilePassProtect": "此文件使用密碼保護功能,無法開啟。", + "errorFileSizeExceed": "此文件大小已超出主機之限制。
請聯絡您的帳戶管理員。", + "errorKeyEncrypt": "未知密鑰描述符", + "errorKeyExpire": "密鑰已過期", + "errorLoadingFont": "字型未載入。
請聯絡文件服務(Document Server)管理員。", + "errorMailMergeLoadFile": "載入失敗", + "errorMailMergeSaveFile": "合併失敗。", + "errorSessionAbsolute": "該文件編輯時效已欲期。請重新載入此頁面。", + "errorSessionIdle": "無 該文件已經有一段時間沒有進行編輯了。 請重新載入頁面。", + "errorSessionToken": "主機連線被中斷,請重新載入此頁面。", + "errorStockChart": "行序錯誤。要建立股票圖表,請將數據按照以下順序工作表:
開盤價、最高價、最低價、收盤價。 ", + "errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。
在繼續工作之前,您需要下載文件或複制其內容以確保沒有資料遺失,然後重新整裡此頁面。", + "errorUserDrop": "目前無法開始此文件。", + "errorUsersExceed": "超出原服務計畫可允許的帳戶數量", + "errorViewerDisconnect": "網路連線失敗。您可以繼續瀏覽這份文件,
在連線恢復前以及頁面重新加載之前,您無法下載或列印此文件。", + "notcriticalErrorTitle": "警告", + "openErrorText": "開啟文件時發生錯誤", + "saveErrorText": "存檔時發生錯誤", + "scriptLoadError": "連線速度過慢,某些組件無法加載。 請重新載入頁面。", + "splitDividerErrorText": "行數必須是%1的除數", + "splitMaxColsErrorText": "列數必須少於%1", + "splitMaxRowsErrorText": "行數必須少於%1", + "unknownErrorText": "未知錯誤。", + "uploadImageExtMessage": "圖片格式未知。", + "uploadImageFileCountMessage": "無上傳圖片。", + "uploadImageSizeMessage": "圖像超出最大大小限制。最大為25MB。", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." + }, + "LongActions": { + "applyChangesTextText": "載入資料中...", + "applyChangesTitleText": "載入資料中", + "downloadMergeText": "載入中...", + "downloadMergeTitle": "載入中", + "downloadTextText": "文件載入中...", + "downloadTitleText": "文件載入中", + "loadFontsTextText": "載入資料中...", + "loadFontsTitleText": "載入資料中", + "loadFontTextText": "載入資料中...", + "loadFontTitleText": "載入資料中", + "loadImagesTextText": "正在載入圖片...", + "loadImagesTitleText": "正在載入圖片", + "loadImageTextText": "正在載入圖片...", + "loadImageTitleText": "正在載入圖片", + "loadingDocumentTextText": "正在載入文件...", + "loadingDocumentTitleText": "載入文件中", + "mailMergeLoadFileText": "載入原始資料中...", + "mailMergeLoadFileTitle": "載入原始資料中", + "openTextText": "開啟文件中...", + "openTitleText": "開啟文件中", + "printTextText": "列印文件中...", + "printTitleText": "列印文件", + "savePreparingText": "準備儲存中", + "savePreparingTitle": "正在準備儲存。請耐心等候...", + "saveTextText": "儲存文件中...", + "saveTitleText": "儲存文件", + "sendMergeText": "發送合併中...", + "sendMergeTitle": "發送合併", + "textLoadingDocument": "載入文件中", + "txtEditingMode": "設定編輯模式...", + "uploadImageTextText": "正在上傳圖片...", + "uploadImageTitleText": "上傳圖片中", + "waitText": "請耐心等待..." + }, + "Main": { + "criticalErrorTitle": "錯誤", + "errorAccessDeny": "您正在嘗試執行您無權執行的動作。
請聯繫您的管理員。", + "errorOpensource": "在使用免費社群版本時,您只能瀏覽開啟的文件。欲使用移動版本的編輯功能,您需要付費的憑證。", + "errorProcessSaveResult": "儲存失敗", + "errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以套用更改。", + "errorUpdateVersion": "文件版本已更改。該頁面將重新加載。", + "leavePageText": "您在此文件中有未儲存的變更。點擊“留在此頁面”以等待自動儲存。點擊“離開此頁面”以放棄所有未儲存的變更。", + "notcriticalErrorTitle": "警告", + "SDK": { + " -Section ": "-欄", + "above": "以上", + "below": "之下", + "Caption": "標題", + "Choose an item": "選擇一個項目", + "Click to load image": "點此讀取圖片", + "Current Document": "當前文件", + "Diagram Title": "圖表標題", + "endnote text": "尾註文", + "Enter a date": "輸入日期", + "Error! Bookmark not defined": "錯誤!書籤未定義。", + "Error! Main Document Only": "錯誤!僅限主文檔。", + "Error! No text of specified style in document": "錯誤!指定的風格文件中沒有文字。", + "Error! Not a valid bookmark self-reference": "錯誤!不是有效的書籤引用。", + "Even Page ": "雙數頁", + "First Page ": "第一頁", + "Footer": "頁尾", + "footnote text": "註腳文字", + "Header": "標頭", + "Heading 1": "標題 1", + "Heading 2": "標題 2", + "Heading 3": "標題 3", + "Heading 4": "標題 4", + "Heading 5": "標題 5", + "Heading 6": "標題 6", + "Heading 7": "標題 7", + "Heading 8": "標題 8", + "Heading 9": "標題 9", + "Hyperlink": "超連結", + "Index Too Large": "索引太大", + "Intense Quote": "強烈引用", + "Is Not In Table": "不在表格中", + "List Paragraph": "段落列表", + "Missing Argument": "無參數", + "Missing Operator": "缺少運算符", + "No Spacing": "沒有間距", + "No table of contents entries found": "該文件中沒有標題。將標題風格套用於內文,以便出現在目錄中。", + "No table of figures entries found": "沒有圖表目錄項目可用。", + "None": "無", + "Normal": "標準", + "Number Too Large To Format": "數字太大而無法格式化", + "Odd Page ": "奇數頁", + "Quote": "引用", + "Same as Previous": "與上一個相同", + "Series": "系列", + "Subtitle": "副標題", + "Syntax Error": "語法錯誤", + "Table Index Cannot be Zero": "表格之索引不能為零", + "Table of Contents": "目錄", + "table of figures": "圖表目錄", + "The Formula Not In Table": "函數不在表格中", + "Title": "標題", + "TOC Heading": "目錄標題", + "Type equation here": "在此輸入公式", + "Undefined Bookmark": "未定義的書籤", + "Unexpected End of Formula": "函數意外結束", + "X Axis": "X 軸 XAS", + "Y Axis": "Y軸", + "Your text here": "在這輸入文字", + "Zero Divide": "零分度" + }, + "textAnonymous": "匿名", + "textBuyNow": "瀏覽網站", + "textClose": "關閉", + "textContactUs": "聯絡銷售人員", + "textCustomLoader": "很抱歉,您無權變更載入程序。 聯繫我們的業務部門取得報價。", + "textGuest": "訪客", + "textHasMacros": "此檔案包含自動巨集程式。
是否要運行這些巨集?", + "textNo": "沒有", + "textNoLicenseTitle": "已達到憑證的最高限制", + "textNoTextFound": "找不到文字", + "textPaidFeature": "付費功能", + "textRemember": "記住我的選擇", + "textReplaceSkipped": "替換已完成。 {0}已跳過。", + "textReplaceSuccess": "搜尋已完成。已替換次數:{0}", + "textYes": "是", + "titleLicenseExp": "憑證過期", + "titleServerVersion": "編輯器已更新", + "titleUpdateVersion": "版本已更改", + "warnLicenseExceeded": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。", + "warnLicenseExp": "您的憑證已過期。請更新您的憑證,然後重新更新頁面。", + "warnLicenseLimitedNoAccess": "憑證已過期。您無法使用文件編輯功能。請聯絡您的帳號管理員", + "warnLicenseLimitedRenewed": "憑證需要續約。您目前只有文件編輯的部份功能。
欲使用完整功能,請聯絡您的帳號管理員。", + "warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。", + "warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。", + "warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。", + "warnProcessRightsChange": "您沒有編輯這個文件的權限。" + }, + "Settings": { + "advDRMOptions": "受保護的檔案", + "advDRMPassword": "密碼", + "advTxtOptions": "選擇文字選項", + "closeButtonText": "關閉檔案", + "notcriticalErrorTitle": "警告", + "textAbout": "關於", + "textApplication": "應用程式", + "textApplicationSettings": "應用程式設定", + "textAuthor": "作者", + "textBack": "返回", + "textBottom": "底部", + "textCancel": "取消", + "textCaseSensitive": "區分大小寫", + "textCentimeter": "公分", + "textChooseEncoding": "選擇編碼方式", + "textChooseTxtOptions": "選擇文字選項", + "textCollaboration": "共同編輯", + "textColorSchemes": "色盤", + "textComment": "註解", + "textComments": "註解", + "textCommentsDisplay": "顯示回應", + "textCreated": "已建立", + "textCustomSize": "自訂大小", + "textDisableAll": "全部停用", + "textDisableAllMacrosWithNotification": "停用所有帶通知的巨集", + "textDisableAllMacrosWithoutNotification": "停用所有不帶通知的巨集", + "textDocumentInfo": "文件資訊", + "textDocumentSettings": "文件設定", + "textDocumentTitle": "文件標題", + "textDone": "完成", + "textDownload": "下載", + "textDownloadAs": "轉檔並下載", + "textDownloadRtf": "以這個格式來儲存此文件的話,部份的文字排版效果將會遺失。您確定要繼續嗎?", + "textDownloadTxt": "若使用此格式來儲存這份文件的話,除了純文字以外,其他的文件功能將會失效。您確定要繼續嗎?", + "textEnableAll": "全部啟用", + "textEnableAllMacrosWithoutNotification": "啟用所有不帶通知的巨集", + "textEncoding": "編碼方式", + "textFind": "尋找", + "textFindAndReplace": "尋找與取代", + "textFindAndReplaceAll": "尋找與全部取代", + "textFormat": "格式", + "textHelp": "輔助說明", + "textHiddenTableBorders": "隱藏表格邊框", + "textHighlightResults": "強調結果", + "textInch": "吋", + "textLandscape": "橫向方向", + "textLastModified": "上一次更改", + "textLastModifiedBy": "最後修改者", + "textLeft": "左", + "textLoading": "載入中...", + "textLocation": "位置", + "textMacrosSettings": "巨集設定", + "textMargins": "邊界", + "textMarginsH": "對於給定的頁面高度,上下邊距太高", + "textMarginsW": "給定頁面寬度,左右頁邊距太寬", + "textNo": "沒有", + "textNoCharacters": "非印刷字符", + "textNoTextFound": "找不到文字", + "textOk": "確定", + "textOpenFile": "輸入檔案密碼", + "textOrientation": "方向", + "textOwner": "擁有者", + "textPages": "頁", + "textPageSize": "頁面大小", + "textParagraphs": "段落", + "textPoint": "點", + "textPortrait": "直向方向", + "textPrint": "列印", + "textReaderMode": "閱讀模式", + "textReplace": "取代", + "textReplaceAll": "取代全部", + "textResolvedComments": "已解決的註解", + "textRight": "右", + "textSearch": "搜尋", + "textSettings": "設定", + "textShowNotification": "顯示通知", + "textSpaces": "空格", + "textSpellcheck": "拼字檢查", + "textStatistic": "統計", + "textSubject": "主旨", + "textSymbols": "符號", + "textTitle": "標題", + "textTop": "上方", + "textUnitOfMeasurement": "測量單位", + "textUploaded": "\n已上傳", + "textWords": "文字", + "textYes": "是", + "txtDownloadTxt": "下載 TXT", + "txtIncorrectPwd": "密碼錯誤", + "txtOk": "確定", + "txtProtected": "在您輸入密碼並且開啟文件後,目前使用的密碼會被重設。", + "txtScheme1": "辦公室", + "txtScheme10": "中位數", + "txtScheme11": " 地鐵", + "txtScheme12": "模組", + "txtScheme13": "豐富的", + "txtScheme14": "Oriel", + "txtScheme15": "來源", + "txtScheme16": "紙", + "txtScheme17": "冬至", + "txtScheme18": "技術", + "txtScheme19": "跋涉", + "txtScheme2": "灰階", + "txtScheme20": "市區", + "txtScheme21": "感染力", + "txtScheme22": "新的Office", + "txtScheme3": "頂尖", + "txtScheme4": "方面", + "txtScheme5": "Civic", + "txtScheme6": "大堂", + "txtScheme7": "產權", + "txtScheme8": "流程", + "txtScheme9": "鑄造廠", + "textFastWV": "Fast Web View", + "textFeedback": "Feedback & Support", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textNavigation": "Navigation", + "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", + "textBeginningDocument": "Beginning of document", + "textEmptyHeading": "Empty Heading" + }, + "Toolbar": { + "dlgLeaveMsgText": "您有未儲存的變更。點擊“留在此頁面”以等待自動儲存。點擊“離開此頁面”以放棄所有未儲存的變更。", + "dlgLeaveTitleText": "您離開應用程式", + "leaveButtonText": "離開這個頁面", + "stayButtonText": "保持此頁上" + } +} \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index d104072cd..8249bfabd 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -397,7 +397,9 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB." + "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.", + "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." }, "LongActions": { "applyChangesTextText": "数据加载中…", @@ -647,7 +649,13 @@ "textNavigation": "Navigation", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appeas in the table of cotents.", "textBeginningDocument": "Beginning of document", - "textEmptyHeading": "Empty Heading" + "textEmptyHeading": "Empty Heading", + "textFastWV": "Fast Web View", + "textNo": "No", + "textPageSize": "Page Size", + "textPdfTagged": "Tagged PDF", + "textPdfVer": "PDF Version", + "textYes": "Yes" }, "Toolbar": { "dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index 3da5ad07d..bf5727ed7 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -134,11 +134,9 @@ class ContextMenu extends ContextMenuController { const api = Common.EditorApi.get(); let props = api.asc_GetTableOfContentsPr(currentTOC); - if (props) { - if (currentTOC && props) - currentTOC = props.get_InternalClass(); - api.asc_UpdateTableOfContents(type == 'pages', currentTOC); - } + if (currentTOC && props) + currentTOC = props.get_InternalClass(); + api.asc_UpdateTableOfContents(type == 'pages', currentTOC); }; showCopyCutPasteModal() { @@ -244,7 +242,7 @@ class ContextMenu extends ContextMenuController { } else { const { t } = this.props; const _t = t("ContextMenu", {returnObjects: true}); - const { canViewComments, canCoAuthoring, canComments } = this.props; + const { canViewComments, canCoAuthoring, canComments, dataDoc } = this.props; const api = Common.EditorApi.get(); const inToc = api.asc_GetTableOfContentsPr(true); diff --git a/apps/documenteditor/mobile/src/controller/Error.jsx b/apps/documenteditor/mobile/src/controller/Error.jsx index 4373e04d0..7596024da 100644 --- a/apps/documenteditor/mobile/src/controller/Error.jsx +++ b/apps/documenteditor/mobile/src/controller/Error.jsx @@ -181,6 +181,14 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu config.msg = _t.errorLoadingFont; break; + case Asc.c_oAscError.ID.ComplexFieldEmptyTOC: + config.msg = _t.errorEmptyTOC; + break; + + case Asc.c_oAscError.ID.ComplexFieldNoTOC: + config.msg = _t.errorNoTOC; + break; + default: config.msg = _t.errorDefaultMessage.replace('%1', id); break; diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index c9ba77dfe..8675fc898 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -132,7 +132,10 @@ class MainController extends Component { docInfo.put_EncryptedInfo(this.editorConfig.encryptionKeys); docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); - + + if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) + docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + let enable = !this.editorConfig.customization || (this.editorConfig.customization.macros !== false); docInfo.asc_putIsEnabledMacroses(!!enable); enable = !this.editorConfig.customization || (this.editorConfig.customization.plugins !== false); @@ -283,10 +286,18 @@ class MainController extends Component { .then ( result => { window["flat_desine"] = true; const {t} = this.props; + let _translate = t('Main.SDK', {returnObjects:true}); + for (let item in _translate) { + if (_translate.hasOwnProperty(item)) { + const str = _translate[item]; + if (item[item.length-1]===' ' && str[str.length-1]!==' ') + _translate[item] += ' '; + } + } this.api = new Asc.asc_docs_api({ 'id-view' : 'editor_sdk', 'mobile' : true, - 'translate': t('Main.SDK', {returnObjects:true}) + 'translate': _translate }); Common.Notifications.trigger('engineCreated', this.api); @@ -650,7 +661,9 @@ class MainController extends Component { const storeDocumentInfo = this.props.storeDocumentInfo; this.api.asc_registerCallback("asc_onGetDocInfoStart", () => { - storeDocumentInfo.switchIsLoaded(false); + this.timerLoading = setTimeout(() => { + storeDocumentInfo.switchIsLoaded(false); + }, 2000); }); this.api.asc_registerCallback("asc_onGetDocInfoStop", () => { @@ -658,10 +671,20 @@ class MainController extends Component { }); this.api.asc_registerCallback("asc_onDocInfo", (obj) => { - storeDocumentInfo.changeCount(obj); + clearTimeout(this.timerLoading); + + this.objectInfo = obj; + if(!this.timerDocInfo) { + this.timerDocInfo = setInterval(() => { + storeDocumentInfo.changeCount(this.objectInfo); + }, 300); + storeDocumentInfo.changeCount(this.objectInfo); + } }); this.api.asc_registerCallback('asc_onGetDocInfoEnd', () => { + clearTimeout(this.timerLoading); + clearInterval(this.timerDocInfo); storeDocumentInfo.switchIsLoaded(true); }); diff --git a/apps/documenteditor/mobile/src/controller/Search.jsx b/apps/documenteditor/mobile/src/controller/Search.jsx index b51fadee1..4e95b4684 100644 --- a/apps/documenteditor/mobile/src/controller/Search.jsx +++ b/apps/documenteditor/mobile/src/controller/Search.jsx @@ -80,9 +80,9 @@ class DESearchView extends SearchView { } onSearchbarShow(isshowed, bar) { - super.onSearchbarShow(isshowed, bar); - + // super.onSearchbarShow(isshowed, bar); const api = Common.EditorApi.get(); + if ( isshowed && this.state.searchQuery.length ) { const checkboxMarkResults = f7.toggle.get('.toggle-mark-results'); api.asc_selectSearchingResults(checkboxMarkResults.checked); diff --git a/apps/documenteditor/mobile/src/controller/add/AddTable.jsx b/apps/documenteditor/mobile/src/controller/add/AddTable.jsx index b0ff95107..0322e015e 100644 --- a/apps/documenteditor/mobile/src/controller/add/AddTable.jsx +++ b/apps/documenteditor/mobile/src/controller/add/AddTable.jsx @@ -9,9 +9,6 @@ class AddTableController extends Component { constructor (props) { super(props); this.onStyleClick = this.onStyleClick.bind(this); - - const api = Common.EditorApi.get(); - api.asc_GetDefaultTableStyles(); } closeModal () { diff --git a/apps/documenteditor/mobile/src/controller/edit/EditParagraph.jsx b/apps/documenteditor/mobile/src/controller/edit/EditParagraph.jsx index 1bb1e8019..20aabc0a4 100644 --- a/apps/documenteditor/mobile/src/controller/edit/EditParagraph.jsx +++ b/apps/documenteditor/mobile/src/controller/edit/EditParagraph.jsx @@ -6,12 +6,14 @@ class EditParagraphController extends Component { constructor (props) { super(props); props.storeParagraphSettings.setBackColor(undefined); + this.onStyleClick = this.onStyleClick.bind(this); } onStyleClick (name) { const api = Common.EditorApi.get(); if (api) { api.put_Style(name); + this.props.storeParagraphSettings.changeParaStyleName(name); } } diff --git a/apps/documenteditor/mobile/src/controller/edit/EditTableContents.jsx b/apps/documenteditor/mobile/src/controller/edit/EditTableContents.jsx index 584a5c196..3045c2871 100644 --- a/apps/documenteditor/mobile/src/controller/edit/EditTableContents.jsx +++ b/apps/documenteditor/mobile/src/controller/edit/EditTableContents.jsx @@ -238,11 +238,9 @@ class EditTableContentsController extends Component { const api = Common.EditorApi.get(); let props = api.asc_GetTableOfContentsPr(currentTOC); - if (props) { - if (currentTOC && props) - currentTOC = props.get_InternalClass(); - api.asc_UpdateTableOfContents(type == 'pages', currentTOC); - } + if (currentTOC && props) + currentTOC = props.get_InternalClass(); + api.asc_UpdateTableOfContents(type == 'pages', currentTOC); }; onRemoveTableContents(currentTOC) { diff --git a/apps/documenteditor/mobile/src/controller/settings/DocumentInfo.jsx b/apps/documenteditor/mobile/src/controller/settings/DocumentInfo.jsx index e97a7016a..72ef0f16a 100644 --- a/apps/documenteditor/mobile/src/controller/settings/DocumentInfo.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/DocumentInfo.jsx @@ -1,20 +1,100 @@ import React, { Component } from "react"; import { observer, inject } from "mobx-react"; import DocumentInfo from "../../view/settings/DocumentInfo"; +import { withTranslation } from 'react-i18next'; class DocumentInfoController extends Component { constructor(props) { super(props); this.docProps = this.getDocProps(); + this.pdfProps = this.getPdfProps(); + this.docInfoObject = {}; + + this.getAppProps = this.getAppProps.bind(this); if(this.docProps) { - this.modified = this.getModified(); - this.modifiedBy = this.getModifiedBy(); - this.creators = this.getCreators(); - this.title = this.getTitle(); - this.subject = this.getSubject(); - this.description = this.getDescription(); - this.created = this.getCreated(); + this.updateFileInfo(this.docProps); + } else if (this.pdfProps) { + this.updatePdfInfo(this.pdfProps); + } + } + + updateFileInfo(props) { + let value; + + if(props) { + value = props.asc_getCreated(); + if(value) this.docInfoObject.dateCreated = this.getModified(value); + + value = props.asc_getModified(); + if(value) this.docInfoObject.modifyDate = this.getModified(value); + + value = props.asc_getLastModifiedBy(); + if(value) this.docInfoObject.modifyBy = AscCommon.UserInfoParser.getParsedName(value); + + this.docInfoObject.title = props.asc_getTitle() || ''; + this.docInfoObject.subject = props.asc_getSubject() || ''; + this.docInfoObject.description = props.asc_getDescription() || ''; + + value = props.asc_getCreator(); + if(value) this.docInfoObject.creators = value; + } + } + + updatePdfInfo(props) { + const { t } = this.props; + const _t = t("Settings", { returnObjects: true }); + let value; + + if(props) { + value = props.CreationDate; + if (value) + this.docInfoObject.dateCreated = this.getModified(new Date(value)); + + value = props.ModDate; + if (value) + this.docInfoObject.modifyDate = this.getModified(new Date(value)); + + if(props.PageWidth && props.PageHeight && (typeof props.PageWidth === 'number') && (typeof props.PageHeight === 'number')) { + let width = props.PageWidth, + heigth = props.PageHeight; + switch(Common.Utils.Metric.getCurrentMetric()) { + case Common.Utils.Metric.c_MetricUnits.cm: + width = parseFloat((width* 25.4 / 72000.).toFixed(2)); + heigth = parseFloat((heigth* 25.4 / 72000.).toFixed(2)); + break; + case Common.Utils.Metric.c_MetricUnits.pt: + width = parseFloat((width/100.).toFixed(2)); + heigth = parseFloat((heigth/100.).toFixed(2)); + break; + case Common.Utils.Metric.c_MetricUnits.inch: + width = parseFloat((width/7200.).toFixed(2)); + heigth = parseFloat((heigth/7200.).toFixed(2)); + break; + } + + this.docInfoObject.pageSize = (width + ' ' + Common.Utils.Metric.getCurrentMetricName() + ' x ' + heigth + ' ' + Common.Utils.Metric.getCurrentMetricName()); + } else this.docInfoObject.pageSize = null; + + value = props.Title; + if(value) this.docInfoObject.title = value; + + value = props.Subject; + if(value) this.docInfoObject.subject = value; + + value = props.Author; + if(value) this.docInfoObject.author = value; + + value = props.Version; + if(value) this.docInfoObject.version = value; + + value = props.Tagged; + if (value !== undefined) + this.docInfoObject.tagged = (value===true ? _t.textYes : _t.textNo); + + value = props.FastWebView; + if (value !== undefined) + this.docInfoObject.fastWebView = (value===true ? _t.textYes : _t.textNo); } } @@ -23,21 +103,29 @@ class DocumentInfoController extends Component { return api.asc_getCoreProps(); } + getPdfProps() { + const api = Common.EditorApi.get(); + return api.asc_getPdfProps(); + } + getAppProps() { const api = Common.EditorApi.get(); const appProps = api.asc_getAppProps(); + let appName; if (appProps) { - let appName = - (appProps.asc_getApplication() || "") + - (appProps.asc_getAppVersion() ? " " : "") + - (appProps.asc_getAppVersion() || ""); + appName = appProps.asc_getApplication(); + if ( appName && appProps.asc_getAppVersion() ) + appName += ` ${appProps.asc_getAppVersion()}`; + + return appName || ''; + } else if (this.pdfProps) { + appName = this.pdfProps ? this.pdfProps.Producer || '' : ''; return appName; } } - getModified() { - let valueModified = this.docProps.asc_getModified(); + getModified(valueModified) { const _lang = this.props.storeAppOptions.lang; if (valueModified) { @@ -53,39 +141,6 @@ class DocumentInfoController extends Component { } } - getModifiedBy() { - let valueModifiedBy = this.docProps.asc_getLastModifiedBy(); - - if (valueModifiedBy) { - return AscCommon.UserInfoParser.getParsedName(valueModifiedBy); - } - } - - getCreators() { - return this.docProps.asc_getCreator(); - } - - getTitle() { - return this.docProps.asc_getTitle(); - } - - getSubject() { - return this.docProps.asc_getSubject(); - } - - getDescription() { - return this.docProps.asc_getDescription(); - } - - getCreated() { - let value = this.docProps.asc_getCreated(); - const _lang = this.props.storeAppOptions.lang; - - if(value) { - return value.toLocaleString(_lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleTimeString(_lang, {timeStyle: 'short'}); - } - } - componentDidMount() { const api = Common.EditorApi.get(); api.startGetDocInfo(); @@ -95,17 +150,11 @@ class DocumentInfoController extends Component { return ( ); } } -export default inject("storeAppOptions")(observer(DocumentInfoController)); \ No newline at end of file +export default inject("storeAppOptions")(observer(withTranslation()(DocumentInfoController))); diff --git a/apps/documenteditor/mobile/src/controller/settings/DocumentSettings.jsx b/apps/documenteditor/mobile/src/controller/settings/DocumentSettings.jsx index 2769368ce..a33612117 100644 --- a/apps/documenteditor/mobile/src/controller/settings/DocumentSettings.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/DocumentSettings.jsx @@ -11,6 +11,7 @@ class DocumentSettingsController extends Component { this.getMargins = this.getMargins.bind(this); this.applyMargins = this.applyMargins.bind(this); this.onFormatChange = this.onFormatChange.bind(this); + this.onColorSchemeChange = this.onColorSchemeChange.bind(this); } onPageOrientation (value){ @@ -107,6 +108,7 @@ class DocumentSettingsController extends Component { onColorSchemeChange(newScheme) { const api = Common.EditorApi.get(); api.asc_ChangeColorSchemeByIdx(+newScheme); + this.props.storeTableSettings.setStyles([], 'default'); } render () { @@ -122,4 +124,4 @@ class DocumentSettingsController extends Component { } } -export default inject("storeDocumentSettings")(observer(withTranslation()(DocumentSettingsController))); \ No newline at end of file +export default inject("storeDocumentSettings", 'storeTableSettings')(observer(withTranslation()(DocumentSettingsController))); \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx index 20d3c4002..c4ac25db7 100644 --- a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx @@ -41,9 +41,11 @@ const Settings = props => { }; const onPrint = () => { + const api = Common.EditorApi.get(); + closeModal(); setTimeout(() => { - Common.EditorApi.get().asc_Print(); + api.asc_Print(); }, 400); }; diff --git a/apps/documenteditor/mobile/src/index_dev.html b/apps/documenteditor/mobile/src/index_dev.html index d8d978670..315fa328e 100644 --- a/apps/documenteditor/mobile/src/index_dev.html +++ b/apps/documenteditor/mobile/src/index_dev.html @@ -2,15 +2,7 @@ - - + diff --git a/apps/documenteditor/mobile/src/less/app-ios.less b/apps/documenteditor/mobile/src/less/app-ios.less index 0682ba596..edff70bc3 100644 --- a/apps/documenteditor/mobile/src/less/app-ios.less +++ b/apps/documenteditor/mobile/src/less/app-ios.less @@ -1,9 +1,4 @@ .ios { - .view { - .bullets-numbers{ - background: @brand-text-on-brand; - } - } // Stepper .content-block.stepper-block { @@ -60,27 +55,3 @@ } } -// Color Schemes - -.color-schemes-menu { - cursor: pointer; - display: block; - // background-color: #fff; - .item-inner { - justify-content: flex-start; - } - .color-schema-block { - display: flex; - } - .color { - min-width: 26px; - min-height: 26px; - margin: 0 2px 0 0; - box-shadow: 0 0 0 1px rgba(0,0,0,.15) inset; - } - .item-title { - margin-left: 20px; - // color: #212121; - } -} - diff --git a/apps/documenteditor/mobile/src/less/app-material.less b/apps/documenteditor/mobile/src/less/app-material.less index f40579d15..635b8d8e4 100644 --- a/apps/documenteditor/mobile/src/less/app-material.less +++ b/apps/documenteditor/mobile/src/less/app-material.less @@ -105,28 +105,4 @@ } } } -} - -// Color Schemes - -.color-schemes-menu { - cursor: pointer; - display: block; - // background-color: #fff; - .item-inner { - justify-content: flex-start; - } - .color-schema-block { - display: flex; - } - .color { - min-width: 26px; - min-height: 26px; - margin: 0 2px 0 0; - box-shadow: 0 0 0 1px rgba(0,0,0,.15) inset; - } - .item-title { - margin-left: 20px; - // color: #212121; - } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less index 458d0f844..c0607a196 100644 --- a/apps/documenteditor/mobile/src/less/app.less +++ b/apps/documenteditor/mobile/src/less/app.less @@ -1,6 +1,4 @@ - @import '../../../../../vendor/framework7-react/node_modules/framework7/less/mixins.less'; - @import '../../../../common/mobile/resources/less/_mixins.less'; @import '../../../../common/mobile/resources/less/colors-table.less'; @import '../../../../common/mobile/resources/less/colors-table-dark.less'; @@ -11,6 +9,9 @@ --toolbar-background: var(--background-primary, #FFF); --toolbar-segment: var(--brand-word, #446995); --toolbar-icons: var(--brand-word, #446995); + --f7-toolbar-border-color: var(--background-menu-divider); + --f7-bars-border-color: var(--background-menu-divider); + --f7-calendar-row-border-color: var(--background-menu-divider); } .device-android { @@ -150,7 +151,7 @@ .table-styles .row div:not(:first-child) { margin: 2px auto 0px; } -.table-styles li, .table-styles .row div { +.table-styles .skeleton-list li, .table-styles .row div { padding: 0; } .table-styles .row .skeleton-list{ @@ -236,8 +237,80 @@ } } -.calendar-sheet{ - .calendar-day-weekend { - color: #D25252; +// Calendar + +.calendar { + background-color: @background-secondary; + .toolbar { + background-color: @background-secondary; + i.icon.icon-next, i.icon.icon-prev { + background-color: @text-normal; + } + &:after { + background-color: @background-menu-divider; + } + } + .calendar-row { + padding: 0 16px; + &:before { + display: none; + } + } + .current-year-value, .current-month-value { + color: @text-normal; + font-size: 16px; + } + .calendar-day-selected .calendar-day-number { + border: 1px solid transparent; + background-color: @brandColor; + color: @fill-white; + } + .calendar-day-today .calendar-day-number { + border: 1px solid @brandColor; + background-color: transparent; + } + .calendar-day-weekend .calendar-day-number { + color: #D25252; + } + .calendar-day-number { + color: @text-normal; + font-size: 14px; + font-weight: 500; + width: 47px; + height: 32px; + border-radius: 16px; + } + .calendar-week-header { + margin: 25px 16px 10px 16px; + background-color: @background-secondary; + color: @text-normal; + border-bottom: 1px solid @background-menu-divider; + padding-bottom: 5px; + height: auto; + .calendar-week-day { + color: @text-normal; + font-size: 12px; + } + } + .calendar-months { + margin-bottom: 12px; + } + .calendar-month-picker-item, .calendar-year-picker-item { + color: @text-normal; + &:before, &:after { + background-color: @background-menu-divider; + } + } + .calendar-month-picker, .calendar-year-picker { + background: @background-secondary; + } + .calendar-month-picker-item-current, .calendar-year-picker-item-current { + color: @brandColor; + } +} + +.calendar-sheet { + .calendar-month-picker, .calendar-year-picker { + border-top: 1px solid var(--background-menu-divider); } } diff --git a/apps/documenteditor/mobile/src/less/icons-ios.less b/apps/documenteditor/mobile/src/less/icons-ios.less index 05acd18bb..aac468c50 100644 --- a/apps/documenteditor/mobile/src/less/icons-ios.less +++ b/apps/documenteditor/mobile/src/less/icons-ios.less @@ -253,6 +253,11 @@ height: 28px; .encoded-svg-mask(''); } + &.icon-move-background { + width: 28px; + height: 28px; + .encoded-svg-mask(''); + } &.icon-move-foreground { width: 28px; height: 28px; diff --git a/apps/documenteditor/mobile/src/less/icons-material.less b/apps/documenteditor/mobile/src/less/icons-material.less index 7a487a239..d1dbc3656 100644 --- a/apps/documenteditor/mobile/src/less/icons-material.less +++ b/apps/documenteditor/mobile/src/less/icons-material.less @@ -282,6 +282,11 @@ height: 28px; .encoded-svg-mask(''); } + &.icon-move-background { + width: 28px; + height: 28px; + .encoded-svg-mask(''); + } &.icon-move-foreground { width: 28px; height: 28px; diff --git a/apps/documenteditor/mobile/src/store/documentInfo.js b/apps/documenteditor/mobile/src/store/documentInfo.js index 3bfa67356..d57b4b90c 100644 --- a/apps/documenteditor/mobile/src/store/documentInfo.js +++ b/apps/documenteditor/mobile/src/store/documentInfo.js @@ -20,7 +20,7 @@ export class storeDocumentInfo { symbolsWSCount: 0, }; - isLoaded = false; + isLoaded = true; dataDoc; switchIsLoaded(value) { diff --git a/apps/documenteditor/mobile/src/store/tableSettings.js b/apps/documenteditor/mobile/src/store/tableSettings.js index 1bd19c457..41fd7ef36 100644 --- a/apps/documenteditor/mobile/src/store/tableSettings.js +++ b/apps/documenteditor/mobile/src/store/tableSettings.js @@ -14,10 +14,12 @@ export class storeTableSettings { updateCellBorderColor: action, setAutoColor: action, colorAuto: observable, + arrayStylesDefault: observable, }); } arrayStyles = []; + arrayStylesDefault = []; colorAuto = 'auto'; setAutoColor(value) { @@ -28,7 +30,7 @@ export class storeTableSettings { this.arrayStyles = []; } - setStyles (arrStyles) { + setStyles (arrStyles, typeStyles) { let styles = []; for (let template of arrStyles) { styles.push({ @@ -36,6 +38,10 @@ export class storeTableSettings { templateId : template.asc_getId() }); } + + if(typeStyles === 'default') { + return this.arrayStylesDefault = styles; + } return this.arrayStyles = styles; } diff --git a/apps/documenteditor/mobile/src/view/add/Add.jsx b/apps/documenteditor/mobile/src/view/add/Add.jsx index 83da3a2ee..7eaf1e329 100644 --- a/apps/documenteditor/mobile/src/view/add/Add.jsx +++ b/apps/documenteditor/mobile/src/view/add/Add.jsx @@ -184,9 +184,12 @@ const AddTabs = inject("storeFocusObjects", "storeTableSettings")(observer(({sto component: }); } + const onGetTableStylesPreviews = () => { - const api = Common.EditorApi.get(); - setTimeout(() => storeTableSettings.setStyles(api.asc_getTableStylesPreviews(true)), 1); + if(storeTableSettings.arrayStylesDefault.length == 0) { + const api = Common.EditorApi.get(); + setTimeout(() => storeTableSettings.setStyles(api.asc_getTableStylesPreviews(true), 'default'), 1); + } } return ( diff --git a/apps/documenteditor/mobile/src/view/add/AddTable.jsx b/apps/documenteditor/mobile/src/view/add/AddTable.jsx index f11b79457..9a75d2470 100644 --- a/apps/documenteditor/mobile/src/view/add/AddTable.jsx +++ b/apps/documenteditor/mobile/src/view/add/AddTable.jsx @@ -6,7 +6,7 @@ import {Device} from '../../../../../common/mobile/utils/device'; const AddTable = props => { const storeTableSettings = props.storeTableSettings; - const styles = storeTableSettings.arrayStyles; + const styles = storeTableSettings.arrayStylesDefault; return (
diff --git a/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx b/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx index 8292b4e13..e3662f2bd 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx @@ -229,7 +229,11 @@ const EditParagraph = props => { key={index} radio checked={curStyleName === style.name} - onClick={() => {props.onStyleClick(style.name)}} + onClick={() => { + if(curStyleName !== style.name) { + props.onStyleClick(style.name); + } + }} >
{ const wrapType = props.storeShapeSettings.getWrapType(shapeObject); const shapeType = shapeObject.get_ShapeProperties().asc_getType(); - const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' + const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeObject.get_ShapeProperties().get_FromSmartArt() + || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' || shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2' || shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5' || shapeType=='straightConnector1'; + const isSmartArtInternal = shapeObject.get_ShapeProperties().get_FromSmartArtInternal(); + const isFromGroup = shapeObject.get_ShapeProperties().get_FromGroup(); const inControl = api.asc_IsContentControl(); const controlProps = (api && inControl) ? api.asc_GetContentControlProperties() : null; const lockType = controlProps ? controlProps.get_Lock() : Asc.c_oAscSdtLockType.Unlocked; @@ -545,19 +548,21 @@ const EditShape = props => { onBorderColor: props.onBorderColor }}> : null} - + { !isFromGroup && + + } {(!hideChangeType && !fixedSize) && } - {wrapType !== 'inline' && } diff --git a/apps/documenteditor/mobile/src/view/edit/EditTable.jsx b/apps/documenteditor/mobile/src/view/edit/EditTable.jsx index 7e993375e..c479c158c 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditTable.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditTable.jsx @@ -226,11 +226,9 @@ const PageStyleOptions = props => { isBandVer = tableLook.get_BandVer(); } - const openIndicator = () => props.onGetTableStylesPreviews(); - return ( - + {Device.phone && diff --git a/apps/documenteditor/mobile/src/view/edit/EditText.jsx b/apps/documenteditor/mobile/src/view/edit/EditText.jsx index a51e2883d..a1bc114e2 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditText.jsx @@ -25,26 +25,10 @@ const PageFonts = props => { const spriteThumbs = storeTextSettings.spriteThumbs; const arrayRecentFonts = storeTextSettings.arrayRecentFonts; - useEffect(() => { - setRecent(getImageUri(arrayRecentFonts)); - - return () => { - } - }, []); - const addRecentStorage = () => { - let arr = []; - arrayRecentFonts.forEach(item => arr.push(item)); setRecent(getImageUri(arrayRecentFonts)); - LocalStorage.setItem('dde-settings-recent-fonts', JSON.stringify(arr)); - } - - const [stateRecent, setRecent] = useState([]); - const [vlFonts, setVlFonts] = useState({ - vlData: { - items: [], - } - }); + LocalStorage.setItem('dde-settings-recent-fonts', JSON.stringify(arrayRecentFonts)); + }; const getImageUri = fonts => { return fonts.map(font => { @@ -55,6 +39,13 @@ const PageFonts = props => { }); }; + const [stateRecent, setRecent] = useState(() => getImageUri(arrayRecentFonts)); + const [vlFonts, setVlFonts] = useState({ + vlData: { + items: [], + } + }); + const renderExternal = (vl, vlData) => { setVlFonts((prevState) => { let fonts = [...prevState.vlData.items]; @@ -216,11 +207,7 @@ const PageBullets = observer( props => { { - if (bullet.type === -1) { - storeTextSettings.resetBullets(-1); - } else { - storeTextSettings.resetBullets(bullet.type); - } + storeTextSettings.resetBullets(bullet.type); props.onBullet(bullet.type); }}> {bullet.thumb.length < 1 ? @@ -265,11 +252,7 @@ const PageNumbers = observer( props => { { - if (number.type === -1) { - storeTextSettings.resetNumbers(-1); - } else { - storeTextSettings.resetNumbers(number.type); - } + storeTextSettings.resetNumbers(number.type); props.onNumber(number.type); }}> {number.thumb.length < 1 ? diff --git a/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx b/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx index 21f4fb3f0..d45a1bf04 100644 --- a/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx +++ b/apps/documenteditor/mobile/src/view/settings/DocumentInfo.jsx @@ -7,6 +7,8 @@ const PageDocumentInfo = (props) => { const { t } = useTranslation(); const _t = t("Settings", { returnObjects: true }); const storeInfo = props.storeDocumentInfo; + const fileType = storeInfo.dataDoc.fileType; + const dataApp = props.getAppProps(); const { @@ -17,6 +19,21 @@ const PageDocumentInfo = (props) => { wordsCount, } = storeInfo.infoObj; + const { + pageSize, + title, + subject, + description, + dateCreated, + modifyBy, + modifyDate, + author, + version, + tagged, + fastWebView, + creators + } = props.docInfoObject; + const dataDoc = JSON.parse(JSON.stringify(storeInfo.dataDoc)); const isLoaded = storeInfo.isLoaded; @@ -62,70 +79,87 @@ const PageDocumentInfo = (props) => { + {pageSize && } - {props.title ? ( + {title ? ( - {_t.textTitle} + {t('Settings.textTitle')} - + ) : null} - {props.subject ? ( + {subject ? ( - {_t.textSubject} + {t('Settings.textSubject')} - + ) : null} - {props.description ? ( + {description ? ( - {_t.textComment} + {t('Settings.textComment')} - + ) : null} - {props.modified ? ( + {modifyDate ? ( - {_t.textLastModified} + {t('Settings.textLastModified')} - + ) : null} - {props.modifiedBy ? ( + {modifyBy ? ( - {_t.textLastModifiedBy} + {t('Settings.textLastModifiedBy')} - + ) : null} - {props.created ? ( + {dateCreated ? ( - {_t.textCreated} + {t('Settings.textCreated')} - + ) : null} {dataApp ? ( - {_t.textApplication} + {t('Settings.textApplication')} ) : null} - {props.creators ? ( + {fileType === 'xps' && author ? ( - {_t.textAuthor} + {t('Settings.textAuthor')} + + + + + ) : null} + { fileType === 'pdf' ? ( + + + + + + + ) : null} + {creators ? ( + + {t('Settings.textAuthor')} { - props.creators.split(/\s*[,;]\s*/).map(item => { - return + creators.split(/\s*[,;]\s*/).map(item => { + return }) } diff --git a/apps/presentationeditor/embed/locale/id.json b/apps/presentationeditor/embed/locale/id.json index 826ba68e6..a1c4e51f7 100644 --- a/apps/presentationeditor/embed/locale/id.json +++ b/apps/presentationeditor/embed/locale/id.json @@ -13,11 +13,16 @@ "PE.ApplicationController.errorDefaultMessage": "Kode kesalahan %1", "PE.ApplicationController.errorFilePassProtect": "File diproteksi kata sandi", "PE.ApplicationController.errorFileSizeExceed": "Ukuran file melebihi", + "PE.ApplicationController.errorForceSave": "Ada kesalahan saat menyimpan file. Silakan gunakan opsi 'Download sebagai' untuk menyimpan file ke komputer Anda dan coba lagi.", + "PE.ApplicationController.errorLoadingFont": "Font tidak bisa dimuat.
Silakan kontak admin Server Dokumen Anda.", + "PE.ApplicationController.errorTokenExpire": "Token keamanan dokumen sudah kadaluwarsa.
Silakan hubungi admin Server Dokumen Anda.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Hubungan internet telah", "PE.ApplicationController.errorUserDrop": "File tidak dapat di akses", "PE.ApplicationController.notcriticalErrorTitle": "Peringatan", + "PE.ApplicationController.openErrorText": "Eror ketika membuka file.", "PE.ApplicationController.scriptLoadError": "Koneksi terlalu lambat,", "PE.ApplicationController.textAnonymous": "Anonim", + "PE.ApplicationController.textGuest": "Tamu", "PE.ApplicationController.textLoadingDocument": "Memuat penyajian", "PE.ApplicationController.textOf": "Dari", "PE.ApplicationController.txtClose": "Tutup", @@ -28,5 +33,6 @@ "PE.ApplicationView.txtEmbed": "Melekatkan", "PE.ApplicationView.txtFileLocation": "Buka Dokumen", "PE.ApplicationView.txtFullScreen": "Layar penuh", + "PE.ApplicationView.txtPrint": "Cetak", "PE.ApplicationView.txtShare": "Bagikan" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/lo.json b/apps/presentationeditor/embed/locale/lo.json index abeabac48..71e9f6889 100644 --- a/apps/presentationeditor/embed/locale/lo.json +++ b/apps/presentationeditor/embed/locale/lo.json @@ -13,10 +13,16 @@ "PE.ApplicationController.errorDefaultMessage": "ລະຫັດຂໍ້ຜິດພາດ: %1", "PE.ApplicationController.errorFilePassProtect": "ມີລະຫັດປົກປ້ອງຟາຍນີ້ຈຶ່ງບໍ່ສາມາດເປີດໄດ້", "PE.ApplicationController.errorFileSizeExceed": "ຂະໜາດຂອງຟາຍໃຫຍ່ກວ່າທີ່ກຳນົດໄວ້ໃນລະບົບ.
ກະລຸນະຕິດຕໍ່ຜູ້ຄຸ້ມຄອງລົບຂອງທ່ານ", + "PE.ApplicationController.errorForceSave": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເບັນທຶກຝາຍ. ກະລຸນາໃຊ້ຕົວເລືອກ 'ດາວໂຫລດເປັນ' ເພື່ອບັນທຶກເອກະສານໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານຫຼືລອງໃໝ່ພາຍຫຼັງ.", + "PE.ApplicationController.errorLoadingFont": "ຟອນບໍ່ໄດ້ຖືກໂຫລດ.
ກະລຸນາແອດມີນຂອງທ່ານ.", + "PE.ApplicationController.errorTokenExpire": "ເຄື່ອງໝາຍຄວາມປອດໄພຂອງເອກະສານໄດ້ໝົດອາຍຸແລ້ວ.
ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບເອກະສານຂອງທ່ານ.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "ການເຊື່ອຕໍ່ອິນເຕີເນັດຫາກໍ່ກັບມາ, ແລະຟາຍເອກະສານໄດ້ມີການປ່ຽນແປງແລ້ວ. ກ່ອນທີ່ທ່ານຈະດຳເນີການຕໍ່ໄປ, ທ່ານຕ້ອງໄດ້ດາວໂຫຼດຟາຍ ຫຼືສຳເນົາເນື້ອຫາ ເພື່ອປ້ອງການການສູນເສຍ, ແລະກໍ່ທຳການໂຫຼດໜ້າຄືນອີກຄັ້ງ.", "PE.ApplicationController.errorUserDrop": "ບໍ່ສາມາດເຂົ້າເຖິງຟາຍໄດ້", "PE.ApplicationController.notcriticalErrorTitle": "ເຕືອນ", + "PE.ApplicationController.openErrorText": "ມີຂໍ້ຜິດພາດເກີດຂື້ນໃນຂະນະເປີດເອກະສານ.", "PE.ApplicationController.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່", + "PE.ApplicationController.textAnonymous": "ບໍ່ລະບຸຊື່", + "PE.ApplicationController.textGuest": " ແຂກ", "PE.ApplicationController.textLoadingDocument": "ກຳລັງໂຫຼດບົດພີເຊັ້ນ", "PE.ApplicationController.textOf": "ຂອງ", "PE.ApplicationController.txtClose": " ປິດ", diff --git a/apps/presentationeditor/embed/locale/pt-PT.json b/apps/presentationeditor/embed/locale/pt-PT.json new file mode 100644 index 000000000..c006c7109 --- /dev/null +++ b/apps/presentationeditor/embed/locale/pt-PT.json @@ -0,0 +1,38 @@ +{ + "common.view.modals.txtCopy": "Copiar para a área de transferência", + "common.view.modals.txtEmbed": "Incorporar", + "common.view.modals.txtHeight": "Altura", + "common.view.modals.txtShare": "Partilhar ligação", + "common.view.modals.txtWidth": "Largura", + "PE.ApplicationController.convertationErrorText": "Falha na conversão.", + "PE.ApplicationController.convertationTimeoutText": "Excedeu o tempo limite de conversão.", + "PE.ApplicationController.criticalErrorTitle": "Erro", + "PE.ApplicationController.downloadErrorText": "Falha ao descarregar.", + "PE.ApplicationController.downloadTextText": "A descarregar apresentação…", + "PE.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissão.
Contacte o administrador do servidor de documentos.", + "PE.ApplicationController.errorDefaultMessage": "Código de erro: %1", + "PE.ApplicationController.errorFilePassProtect": "O documento está protegido por palavra-passe e não pode ser aberto.", + "PE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", + "PE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.", + "PE.ApplicationController.errorLoadingFont": "Tipos de letra não carregados.
Por favor contacte o administrador do servidor de documentos.", + "PE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contacto com o administrador do Servidor de Documentos.", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro foi alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para assegurar que nada seja perdido e depois recarregue esta página.", + "PE.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", + "PE.ApplicationController.notcriticalErrorTitle": "Aviso", + "PE.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.", + "PE.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Recarregue a página.", + "PE.ApplicationController.textAnonymous": "Anónimo", + "PE.ApplicationController.textGuest": "Convidado", + "PE.ApplicationController.textLoadingDocument": "A carregar apresentação", + "PE.ApplicationController.textOf": "de", + "PE.ApplicationController.txtClose": "Fechar", + "PE.ApplicationController.unknownErrorText": "Erro desconhecido.", + "PE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.", + "PE.ApplicationController.waitText": "Aguarde…", + "PE.ApplicationView.txtDownload": "Descarregar", + "PE.ApplicationView.txtEmbed": "Incorporar", + "PE.ApplicationView.txtFileLocation": "Abrir localização do ficheiro", + "PE.ApplicationView.txtFullScreen": "Ecrã inteiro", + "PE.ApplicationView.txtPrint": "Imprimir", + "PE.ApplicationView.txtShare": "Partilhar" +} \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/sk.json b/apps/presentationeditor/embed/locale/sk.json index 88c20e198..be2a44596 100644 --- a/apps/presentationeditor/embed/locale/sk.json +++ b/apps/presentationeditor/embed/locale/sk.json @@ -15,9 +15,11 @@ "PE.ApplicationController.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
Kontaktujte prosím vášho správcu dokumentového servera o ďalšie podrobnosti.", "PE.ApplicationController.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", "PE.ApplicationController.errorLoadingFont": "Fonty sa nenahrali.
Kontaktujte prosím svojho administrátora Servera dokumentov.", + "PE.ApplicationController.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetové spojenie bolo obnovené a verzia súboru bola zmenená.
Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", "PE.ApplicationController.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", "PE.ApplicationController.notcriticalErrorTitle": "Upozornenie", + "PE.ApplicationController.openErrorText": "Pri otváraní súboru sa vyskytla chyba.", "PE.ApplicationController.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", "PE.ApplicationController.textAnonymous": "Anonymný", "PE.ApplicationController.textGuest": "Hosť", diff --git a/apps/presentationeditor/embed/locale/zh-TW.json b/apps/presentationeditor/embed/locale/zh-TW.json new file mode 100644 index 000000000..19a2c4d67 --- /dev/null +++ b/apps/presentationeditor/embed/locale/zh-TW.json @@ -0,0 +1,38 @@ +{ + "common.view.modals.txtCopy": "複製到剪貼板", + "common.view.modals.txtEmbed": "嵌入", + "common.view.modals.txtHeight": "\n高度", + "common.view.modals.txtShare": "分享連結", + "common.view.modals.txtWidth": "寬度", + "PE.ApplicationController.convertationErrorText": "轉換失敗。", + "PE.ApplicationController.convertationTimeoutText": "轉換逾時。", + "PE.ApplicationController.criticalErrorTitle": "錯誤", + "PE.ApplicationController.downloadErrorText": "下載失敗", + "PE.ApplicationController.downloadTextText": "下載簡報中...", + "PE.ApplicationController.errorAccessDeny": "您嘗試進行未被授權的動作
請聯繫您的文件伺服器主機的管理者。", + "PE.ApplicationController.errorDefaultMessage": "錯誤編號:%1", + "PE.ApplicationController.errorFilePassProtect": "該文件受密碼保護,無法打開。", + "PE.ApplicationController.errorFileSizeExceed": "此檔案超過這一主機限制的大小
進一步資訊,請聯絡您的文件服務主機的管理者。", + "PE.ApplicationController.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦機硬碟中,或稍後再試。", + "PE.ApplicationController.errorLoadingFont": "字體未加載。
請聯繫文件服務器管理員。", + "PE.ApplicationController.errorTokenExpire": "此文件安全憑證(Security Token)已過期。
請與您的Document Server管理員聯繫。", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet連接已恢復,文件版本已更改。
在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。", + "PE.ApplicationController.errorUserDrop": "目前無法存取該文件。", + "PE.ApplicationController.notcriticalErrorTitle": "警告", + "PE.ApplicationController.openErrorText": "開啟檔案時發生錯誤", + "PE.ApplicationController.scriptLoadError": "連接速度太慢,某些組件無法加載。請重新加載頁面。", + "PE.ApplicationController.textAnonymous": "匿名", + "PE.ApplicationController.textGuest": "來賓帳戶", + "PE.ApplicationController.textLoadingDocument": "正在載入簡報", + "PE.ApplicationController.textOf": "於", + "PE.ApplicationController.txtClose": "關閉", + "PE.ApplicationController.unknownErrorText": "未知錯誤。", + "PE.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器", + "PE.ApplicationController.waitText": "請耐心等待...", + "PE.ApplicationView.txtDownload": "下載", + "PE.ApplicationView.txtEmbed": "嵌入", + "PE.ApplicationView.txtFileLocation": "打開文件所在位置", + "PE.ApplicationView.txtFullScreen": "全螢幕", + "PE.ApplicationView.txtPrint": "列印", + "PE.ApplicationView.txtShare": "分享" +} \ No newline at end of file diff --git a/apps/presentationeditor/main/app.js b/apps/presentationeditor/main/app.js index 0b2f1c272..1e11ca2c5 100644 --- a/apps/presentationeditor/main/app.js +++ b/apps/presentationeditor/main/app.js @@ -161,6 +161,7 @@ require([ /** coauthoring end **/ ,'Common.Controllers.Plugins' ,'Common.Controllers.ExternalDiagramEditor' + ,'Common.Controllers.ExternalOleEditor' ,'Common.Controllers.ReviewChanges' ,'Common.Controllers.Protection' ,'Transitions' @@ -197,6 +198,7 @@ require([ 'common/main/lib/controller/Plugins', 'presentationeditor/main/app/view/ChartSettings', 'common/main/lib/controller/ExternalDiagramEditor' + ,'common/main/lib/controller/ExternalOleEditor' ,'common/main/lib/controller/ReviewChanges' ,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Themes' diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index 356142d34..9e94feb01 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -174,7 +174,7 @@ define([ handler : function(result, value) { if (result == 'ok') { if (me.api) { - me.addNewEffect(value.activeEffect, value.activeGroupValue, value.activeGroup, replace); + me.addNewEffect(value.activeEffect, value.activeGroupValue, value.activeGroup, replace, undefined, !Common.Utils.InternalSettings.get("pe-animation-no-preview")); } } } @@ -187,10 +187,9 @@ define([ this.addNewEffect(type, group, record.get('group'), false); }, - addNewEffect: function (type, group, groupName, replace, parametr) { - if (this._state.Effect == type && this._state.EffectGroup == group && replace) return; + addNewEffect: function (type, group, groupName, replace, parametr, preview) { var parameter = this.view.setMenuParameters(type, groupName, parametr); - this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace, !Common.Utils.InternalSettings.get("pe-animation-no-preview")); + this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace, preview); }, onDurationChange: function(before,combo, record, e) { @@ -205,7 +204,7 @@ define([ if (!item) { var expr = new RegExp('^\\s*(\\d*(\\.|,)?\\d+)\\s*(' + me.view.txtSec + ')?\\s*$'); if (!expr.exec(record.value)) { - combo.setValue(this._state.Duration, this._state.Duration>=0 ? this._state.Duration + ' ' + this.view.txtSec : 1); + combo.setValue(this._state.Duration, this._state.Duration>=0 ? this._state.Duration + ' ' + this.view.txtSec : ''); e.preventDefault(); return false; } @@ -348,8 +347,11 @@ define([ onFocusObject: function(selectedObjects) { this.AnimationProperties = null; for (var i = 0; i0) ? store.indexOf(items.at(items.length-1)) : store.length-1; + var index = (items && items.length>0) ? store.indexOf(items[items.length-1]) : store.length-1; var rec = _.findWhere(Common.define.effectData.getEffectFullData(), {group: group.get('id'), value: this._state.Effect}); item = store.add(new Common.UI.DataViewModel({ group: group.get('id'), value: this._state.Effect, iconCls: group.get('iconClsCustom'), displayValue: rec ? rec.displayValue : '', + tip: rec ? rec.displayValue : '', isCustom: true }), {at:index+1}); view.listEffects.selectRecord(item); view.listEffects.fillComboView(item, true, true); - view.btnParameters.setIconCls('toolbar__icon icon ' + item.get('iconCls')); } else { view.listEffects.fieldPicker.deselectAll(); view.listEffects.menuPicker.deselectAll(); - view.btnParameters.setIconCls('toolbar__icon icon animation-none'); } } } @@ -446,7 +445,7 @@ define([ if (this._state.noAnimationDuration) view.cmbDuration.setValue(''); else - view.cmbDuration.setValue(this._state.Duration, this._state.Duration>=0 ? this._state.Duration + ' ' + this.view.txtSec : 1); + view.cmbDuration.setValue(this._state.Duration, this._state.Duration>=0 ? this._state.Duration + ' ' + this.view.txtSec : ''); value = this.AnimationProperties.asc_getDelay(); if (Math.abs(this._state.Delay - value) > 0.001 || @@ -476,9 +475,12 @@ define([ this._state.TriggerValue = this.AnimationProperties.asc_getTriggerObjectClick(); } this.setTriggerList(); + } else { + this._state.Effect = this._state.EffectGroup = this._state.EffectOption = undefined; + if (this.view && this.view.listEffects) + this.view.listEffects.fieldPicker.deselectAll(); } this.setLocked(); - }, setTriggerList: function (){ @@ -552,6 +554,8 @@ define([ this.lockToolbar(Common.enumLock.noAnimationRepeat, this._state.noAnimationRepeat); if (this._state.noAnimationDuration != undefined) this.lockToolbar(Common.enumLock.noAnimationDuration, this._state.noAnimationDuration); + if (this._state.timingLock != undefined) + this.lockToolbar(Common.enumLock.timingLock, this._state.timingLock); } }, PE.Controllers.Animation || {})); diff --git a/apps/presentationeditor/main/app/controller/DocumentHolder.js b/apps/presentationeditor/main/app/controller/DocumentHolder.js index 3183accd0..f6be16df6 100644 --- a/apps/presentationeditor/main/app/controller/DocumentHolder.js +++ b/apps/presentationeditor/main/app/controller/DocumentHolder.js @@ -126,6 +126,27 @@ define([ }, 10); }, this)); } + + var oleEditor = this.getApplication().getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor) { + oleEditor.on('internalmessage', _.bind(function(cmp, message) { + var command = message.data.command; + var data = message.data.data; + if (this.api) { + if (oleEditor.isEditMode()) + this.api.asc_editTableOleObject(data); + } + }, this)); + oleEditor.on('hide', _.bind(function(cmp, message) { + if (this.api) { + this.api.asc_enableKeyEvents(true); + } + var me = this; + setTimeout(function(){ + me.documentHolder.fireEvent('editcomplete', me.documentHolder); + }, 10); + }, this)); + } } }); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/controller/LeftMenu.js b/apps/presentationeditor/main/app/controller/LeftMenu.js index 14ce12c89..cf536f9a6 100644 --- a/apps/presentationeditor/main/app/controller/LeftMenu.js +++ b/apps/presentationeditor/main/app/controller/LeftMenu.js @@ -349,6 +349,10 @@ define([ Common.Utils.InternalSettings.set("pe-settings-coauthmode", fast_coauth); this.api.asc_SetFastCollaborative(fast_coauth); } + } else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + fast_coauth = Common.localStorage.getBool("pe-settings-view-coauthmode", false); + Common.Utils.InternalSettings.set("pe-settings-coauthmode", fast_coauth); + this.api.asc_SetFastCollaborative(fast_coauth); } /** coauthoring end **/ @@ -371,6 +375,14 @@ define([ value = Common.localStorage.getBool("pe-settings-spellcheck", true); Common.Utils.InternalSettings.set("pe-settings-spellcheck", value); this.api.asc_setSpellCheck(value); + var spprops = new AscCommon.CSpellCheckSettings(); + value = Common.localStorage.getBool("pe-spellcheck-ignore-uppercase-words", true); + Common.Utils.InternalSettings.set("pe-spellcheck-ignore-uppercase-words", value); + spprops.put_IgnoreWordsInUppercase(value); + value = Common.localStorage.getBool("pe-spellcheck-ignore-numbers-words", true); + Common.Utils.InternalSettings.set("pe-spellcheck-ignore-numbers-words", value); + spprops.put_IgnoreWordsWithNumbers(value); + this.api.asc_setSpellCheckSettings(spprops); } value = parseInt(Common.localStorage.getItem("pe-settings-paste-button")); diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index c5e6085a0..69237409d 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -429,7 +429,10 @@ define([ docInfo.put_EncryptedInfo(this.editorConfig.encryptionKeys); docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); - + + if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) + docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + var enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false); docInfo.asc_putIsEnabledMacroses(!!enable); enable = !this.editorConfig.customization || (this.editorConfig.customization.plugins!==false); @@ -629,6 +632,7 @@ define([ this.synchronizeChanges(); if ( id == Asc.c_oAscAsyncAction['Disconnect']) { + this._state.timerDisconnect && clearTimeout(this._state.timerDisconnect); this.disableEditing(false, true); this.getApplication().getController('Statusbar').hideDisconnectTip(); this.getApplication().getController('Statusbar').setStatusCaption(this.textReconnect); @@ -726,7 +730,9 @@ define([ this.disableEditing(true, true); var me = this; statusCallback = function() { - me.getApplication().getController('Statusbar').showDisconnectTip(); + me._state.timerDisconnect = setTimeout(function(){ + me.getApplication().getController('Statusbar').showDisconnectTip(); + }, me._state.unloadTimer || 0); }; break; @@ -799,6 +805,17 @@ define([ me.api.asc_setSpellCheck(value); Common.NotificationCenter.trigger('spelling:turn', value ? 'on' : 'off', true); // only toggle buttons + if (Common.UI.FeaturesManager.canChange('spellcheck')) { // get settings for spellcheck from local storage + value = Common.localStorage.getBool("pe-spellcheck-ignore-uppercase-words", true); + Common.Utils.InternalSettings.set("pe-spellcheck-ignore-uppercase-words", value); + value = Common.localStorage.getBool("pe-spellcheck-ignore-numbers-words", true); + Common.Utils.InternalSettings.set("pe-spellcheck-ignore-numbers-words", value); + value = new AscCommon.CSpellCheckSettings(); + value.put_IgnoreWordsInUppercase(Common.Utils.InternalSettings.get("pe-spellcheck-ignore-uppercase-words")); + value.put_IgnoreWordsWithNumbers(Common.Utils.InternalSettings.get("pe-spellcheck-ignore-numbers-words")); + this.api.asc_setSpellCheckSettings(value); + } + value = Common.localStorage.getBool('pe-hidden-notes', this.appOptions.customization && this.appOptions.customization.hideNotes===true); me.api.asc_ShowNotes(!value); @@ -851,6 +868,7 @@ define([ chatController.setApi(this.api).setMode(this.appOptions); application.getController('Common.Controllers.ExternalDiagramEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); + application.getController('Common.Controllers.ExternalOleEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); pluginsController.setApi(me.api); @@ -1176,7 +1194,9 @@ define([ this.appOptions.canBrandingExt && this.editorConfig.customization && Common.UI.LayoutManager.init(this.editorConfig.customization.layout); this.editorConfig.customization && Common.UI.FeaturesManager.init(this.editorConfig.customization.features, this.appOptions.canBrandingExt); - this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && this.appOptions.canCoAuthoring && !(typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false); + // change = true by default in editor, change = false by default in viewer + this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && this.appOptions.canCoAuthoring && !(typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false) || + !this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===true) ; this.loadCoAuthSettings(); this.applyModeCommonElements(); @@ -1218,6 +1238,16 @@ define([ fastCoauth = (value===null || parseInt(value) == 1); } else if (!this.appOptions.isEdit && this.appOptions.isRestrictedEdit) { fastCoauth = true; + } else if (!this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && !this.appOptions.isOffline) { // viewer + if (!this.appOptions.canChangeCoAuthoring) { //can't change co-auth. mode. Use coEditing.mode or 'strict' by default + value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; + } else { + value = Common.localStorage.getItem("pe-settings-view-coauthmode"); + if (value===null) { + value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; + } + } + fastCoauth = (parseInt(value) == 1); } else { fastCoauth = false; autosave = 0; @@ -1698,12 +1728,15 @@ define([ if (this.api.isDocumentModified()) { var me = this; this.api.asc_stopSaving(); + this._state.unloadTimer = 1000; this.continueSavingTimer = window.setTimeout(function() { me.api.asc_continueSaving(); + me._state.unloadTimer = 0; }, 500); return this.leavePageText; - } + } else + this._state.unloadTimer = 10000; }, onUnload: function() { diff --git a/apps/presentationeditor/main/app/controller/Statusbar.js b/apps/presentationeditor/main/app/controller/Statusbar.js index 9ccc8ae48..89ebab680 100644 --- a/apps/presentationeditor/main/app/controller/Statusbar.js +++ b/apps/presentationeditor/main/app/controller/Statusbar.js @@ -84,7 +84,9 @@ define([ this.bindViewEvents(this.statusbar, this.events); - $('#status-label-zoom').css('min-width', 80); + var lblzoom = $('#status-label-zoom'); + lblzoom.css('min-width', 80); + lblzoom.text(Common.Utils.String.format(this.zoomText, 100)); this.statusbar.btnZoomToPage.on('click', _.bind(this.onBtnZoomTo, this, 'topage')); this.statusbar.btnZoomToWidth.on('click', _.bind(this.onBtnZoomTo, this, 'towidth')); diff --git a/apps/presentationeditor/main/app/template/StatusBar.template b/apps/presentationeditor/main/app/template/StatusBar.template index 9231453f0..8df4781e6 100644 --- a/apps/presentationeditor/main/app/template/StatusBar.template +++ b/apps/presentationeditor/main/app/template/StatusBar.template @@ -1,10 +1,10 @@
-
+
- +
- +
- - + +
- +
- - - + + +
- +
diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index 56f392f8b..f221d4c87 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -179,7 +179,7 @@
-
+
@@ -189,7 +189,7 @@
- + @@ -197,6 +197,9 @@
+ +
+
@@ -217,7 +220,7 @@
- +
diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 04c1bb925..49092ef33 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -63,7 +63,8 @@ define([ me.fireEvent('animation:selecteffect', [combo, record]); }, me)); me.listEffectsMore.on('click', _.bind(function () { - me.fireEvent('animation:additional', [me.listEffects.menuPicker.getSelectedRec().get('value') != AscFormat.ANIM_PRESET_NONE]); // replace effect + var rec = me.listEffects.menuPicker.getSelectedRec(); + me.fireEvent('animation:additional', [!(rec && rec.get('value') === AscFormat.ANIM_PRESET_NONE)]); // replace effect }, me)); } @@ -196,7 +197,7 @@ define([ cls: 'combo-transitions combo-animation', itemWidth: itemWidth, itemHeight: itemHeight, - style: 'min-width:200px;', + style: 'min-width:210px;', itemTemplate: _.template([ '
', '
', @@ -207,7 +208,7 @@ define([ store: new Common.UI.DataViewStore(this._arrEffectName), additionalMenuItems: [{caption: '--'}, this.listEffectsMore], enableKeyEvents: true, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.timingLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: '-16, 0', @@ -241,7 +242,7 @@ define([ caption: this.txtPreview, split: false, iconCls: 'toolbar__icon animation-preview-start', - lock: [_set.slideDeleted, _set.noSlides, _set.noAnimationPreview], + lock: [_set.slideDeleted, _set.noSlides, _set.noAnimationPreview, _set.timingLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -251,9 +252,9 @@ define([ this.btnParameters = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', caption: this.txtParameters, - iconCls: 'toolbar__icon icon animation-none', + iconCls: 'toolbar__icon icon animation-parameters', menu: new Common.UI.Menu({items: []}), - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationParam], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationParam, _set.timingLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -265,7 +266,7 @@ define([ caption: this.txtAnimationPane, split: true, iconCls: 'toolbar__icon transition-apply-all', - lock: [_set.slideDeleted, _set.noSlides], + lock: [_set.slideDeleted, _set.noSlides, _set.timingLock], dataHint: '1', dataHintDirection: 'left', dataHintOffset: 'medium' @@ -277,7 +278,7 @@ define([ caption: this.txtAddEffect, iconCls: 'toolbar__icon icon add-animation', menu: true, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.timingLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -298,7 +299,7 @@ define([ {value: 1, displayValue: this.str1}, {value: 0.5, displayValue: this.str0_5} ], - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationDuration], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationDuration, _set.timingLock], dataHint: '1', dataHintDirection: 'top', dataHintOffset: 'small' @@ -309,7 +310,7 @@ define([ el: this.$el.find('#animation-duration'), iconCls: 'toolbar__icon animation-duration', caption: this.strDuration, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationDuration] + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationDuration, _set.timingLock] }); this.lockedControls.push(this.lblDuration); @@ -318,7 +319,7 @@ define([ cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-trigger', caption: this.strTrigger, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noTriggerObjects], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noTriggerObjects, _set.timingLock], menu : new Common.UI.Menu({ items: [ { @@ -351,7 +352,7 @@ define([ defaultUnit: this.txtSec, maxValue: 300, minValue: 0, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.timingLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'big' @@ -362,7 +363,7 @@ define([ el: this.$el.find('#animation-delay'), iconCls: 'toolbar__icon animation-delay', caption: this.strDelay, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation] + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.timingLock] }); this.lockedControls.push(this.lblDelay); @@ -370,7 +371,7 @@ define([ cls: 'input-group-nr', menuStyle: 'min-width: 100%;', editable: false, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.timingLock], data: [ {value: AscFormat.NODE_TYPE_CLICKEFFECT, displayValue: this.textStartOnClick}, {value: AscFormat.NODE_TYPE_WITHEFFECT, displayValue: this.textStartWithPrevious}, @@ -386,14 +387,14 @@ define([ el: this.$el.find('#animation-label-start'), iconCls: 'toolbar__icon btn-preview-start', caption: this.strStart, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation] + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.timingLock] }); this.lockedControls.push(this.lblStart); this.chRewind = new Common.UI.CheckBox({ el: this.$el.find('#animation-checkbox-rewind'), labelText: this.strRewind, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.timingLock], dataHint: '1', dataHintDirection: 'left', dataHintOffset: 'small' @@ -405,7 +406,7 @@ define([ cls: 'input-group-nr', menuStyle: 'min-width: 100%;', editable: true, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationRepeat], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationRepeat, _set.timingLock], data: [ {value: 1, displayValue: this.textNoRepeat}, {value: 2, displayValue: "2"}, @@ -426,7 +427,7 @@ define([ el: this.$el.find('#animation-repeat'), iconCls: 'toolbar__icon animation-repeat', caption: this.strRepeat, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationRepeat] + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationRepeat, _set.timingLock] }); this.lockedControls.push(this.lblRepeat); @@ -436,7 +437,7 @@ define([ iconCls: 'toolbar__icon btn-arrow-up', style: 'min-width: 82px', caption: this.textMoveEarlier, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noTriggerObjects, _set.noMoveAnimationEarlier], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noTriggerObjects, _set.noMoveAnimationEarlier, _set.timingLock], dataHint: '1', dataHintDirection: 'left', dataHintOffset: 'medium' @@ -449,7 +450,7 @@ define([ iconCls: 'toolbar__icon btn-arrow-down', style: 'min-width: 82px', caption: this.textMoveLater, - lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noTriggerObjects, _set.noMoveAnimationLater], + lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noTriggerObjects, _set.noMoveAnimationLater, _set.timingLock], dataHint: '1', dataHintDirection: 'left', dataHintOffset: 'medium' diff --git a/apps/presentationeditor/main/app/view/AnimationDialog.js b/apps/presentationeditor/main/app/view/AnimationDialog.js index a2da6fc64..d8f051f78 100644 --- a/apps/presentationeditor/main/app/view/AnimationDialog.js +++ b/apps/presentationeditor/main/app/view/AnimationDialog.js @@ -170,6 +170,9 @@ define([ fillEffect: function () { var arr = _.where(this.allEffects, {group: this._state.activeGroup, level: this.activeLevel }); + arr = _.reject(arr, function (item) { + return !!item.notsupported; + }); this.lstEffectList.store.reset(arr); var item = this.lstEffectList.store.findWhere({value: this._state.activeEffect}); if(!item) diff --git a/apps/presentationeditor/main/app/view/ChartSettings.js b/apps/presentationeditor/main/app/view/ChartSettings.js index f5df0b4ec..b6475f081 100644 --- a/apps/presentationeditor/main/app/view/ChartSettings.js +++ b/apps/presentationeditor/main/app/view/ChartSettings.js @@ -385,6 +385,8 @@ define([ }, onAddChartStylesPreview: function(styles){ + if (!this.cmbChartStyle) return; + var me = this; if (styles && styles.length>0){ var stylesStore = this.cmbChartStyle.menuPicker.store; diff --git a/apps/presentationeditor/main/app/view/DocumentHolder.js b/apps/presentationeditor/main/app/view/DocumentHolder.js index 28be6cf54..dd7c39c9a 100644 --- a/apps/presentationeditor/main/app/view/DocumentHolder.js +++ b/apps/presentationeditor/main/app/view/DocumentHolder.js @@ -354,7 +354,8 @@ define([ addEvent(me.el, eventname, handleDocumentWheel); } - $(document).on('mousewheel', handleDocumentWheel); + !Common.Utils.isChrome ? $(document).on('mousewheel', handleDocumentWheel) : + document.addEventListener('mousewheel', handleDocumentWheel, {passive: false}); $(document).on('keydown', handleDocumentKeyDown); $(window).on('resize', onDocumentHolderResize); var viewport = PE.getController('Viewport').getView('Viewport'); @@ -1622,6 +1623,7 @@ define([ if (me.mode.isEdit===true) { me.api.asc_registerCallback('asc_onDialogAddHyperlink', _.bind(onDialogAddHyperlink, me)); me.api.asc_registerCallback('asc_doubleClickOnChart', _.bind(me.editChartClick, me)); + me.api.asc_registerCallback('asc_doubleClickOnTableOleObject', _.bind(me.onDoubleClickOnTableOleObject, me)); me.api.asc_registerCallback('asc_onSpellCheckVariantsFound', _.bind(onSpellCheckVariantsFound, me)); me.api.asc_registerCallback('asc_onShowSpecialPasteOptions', _.bind(onShowSpecialPasteOptions, me)); me.api.asc_registerCallback('asc_onHideSpecialPasteOptions', _.bind(onHideSpecialPasteOptions, me)); @@ -1762,6 +1764,17 @@ define([ } }, + onDoubleClickOnTableOleObject: function(chart) { + if (this.mode.isEdit && !this._isDisabled) { + var oleEditor = PE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor && chart) { + oleEditor.setEditMode(true); + oleEditor.show(); + oleEditor.setOleData(Asc.asc_putBinaryDataToFrameFromTableOleObject(chart)); + } + } + }, + onCutCopyPaste: function(item, e) { var me = this; if (me.api) { @@ -3581,8 +3594,11 @@ define([ mnuArrangeBackward.setDisabled(inSmartartInternal); menuImgShapeRotate.setVisible(_.isUndefined(value.chartProps) && (pluginGuid===null || pluginGuid===undefined)); - if (menuImgShapeRotate.isVisible()) + if (menuImgShapeRotate.isVisible()) { menuImgShapeRotate.setDisabled(disabled || (value.shapeProps && value.shapeProps.value.get_FromSmartArt())); + menuImgShapeRotate.menu.items[3].setDisabled(inSmartartInternal); + menuImgShapeRotate.menu.items[4].setDisabled(inSmartartInternal); + } // image properties menuImgOriginalSize.setVisible(isimage); diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index a566631be..a61f0e954 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -76,9 +76,9 @@ define([ '
', '<% _.each(row, function(item) { %>', '<% if (item.type!==Asc.c_oAscFileType.PPTM || fileType=="pptm") { %>', - '', + '', '<% } %>', '<% }) %>', '', @@ -147,9 +147,9 @@ define([ '', '<% _.each(row, function(item) { %>', '<% if (item.type!==Asc.c_oAscFileType.PPTM || fileType=="pptm") { %>', - '', + '', '<% } %>', '<% }) %>', '', @@ -234,12 +234,25 @@ define([ '', '', '', + '', + '', + '', + '', + '', + '', + '', '', '', '', '', '', '', + '', + '', + '', + '', + '', + '', '', '', '', @@ -307,6 +320,25 @@ define([ dataHint: '2', dataHintDirection: 'left', dataHintOffset: 'small' + }).on('change', function(field, newValue, oldValue, eOpts){ + me.chIgnoreUppercase.setDisabled(field.getValue()!=='checked'); + me.chIgnoreNumbers.setDisabled(field.getValue()!=='checked'); + }); + + this.chIgnoreUppercase = new Common.UI.CheckBox({ + el: $markup.findById('#fms-chb-ignore-uppercase-words'), + labelText: this.strIgnoreWordsInUPPERCASE, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + + this.chIgnoreNumbers = new Common.UI.CheckBox({ + el: $markup.findById('#fms-chb-ignore-numbers-words'), + labelText: this.strIgnoreWordsWithNumbers, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' }); this.chInputMode = new Common.UI.CheckBox({ @@ -367,6 +399,14 @@ define([ }); this.rbCoAuthModeStrict.$el.parent().on('click', function (){me.rbCoAuthModeStrict.setValue(true);}); + this.chLiveViewer = new Common.UI.CheckBox({ + el: $markup.findById('#fms-chb-live-viewer'), + labelText: this.strShowOthersChanges, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.chAutosave = new Common.UI.CheckBox({ el: $markup.findById('#fms-chb-autosave'), labelText: this.textAutoSave, @@ -553,6 +593,7 @@ define([ /** coauthoring begin **/ $('tr.coauth.changes', this.el)[mode.isEdit && !mode.isOffline && mode.canCoAuthoring && mode.canChangeCoAuthoring ? 'show' : 'hide'](); /** coauthoring end **/ + $('tr.live-viewer', this.el)[!mode.isEdit && !mode.isRestrictedEdit && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide'](); $('tr.macros', this.el)[(mode.customization && mode.customization.macros===false) ? 'hide' : 'show'](); $('tr.spellcheck', this.el)[mode.isEdit && Common.UI.FeaturesManager.canChange('spellcheck') ? 'show' : 'hide'](); @@ -567,8 +608,11 @@ define([ }, updateSettings: function() { - if (Common.UI.FeaturesManager.canChange('spellcheck')) + if (Common.UI.FeaturesManager.canChange('spellcheck')) { this.chSpell.setValue(Common.Utils.InternalSettings.get("pe-settings-spellcheck")); + this.chIgnoreUppercase.setValue(Common.Utils.InternalSettings.get("pe-spellcheck-ignore-uppercase-words")); + this.chIgnoreNumbers.setValue(Common.Utils.InternalSettings.get("pe-spellcheck-ignore-numbers-words")); + } this.chInputMode.setValue(Common.Utils.InternalSettings.get("pe-settings-inputmode")); @@ -582,6 +626,7 @@ define([ this.rbCoAuthModeFast.setValue(fast_coauth); this.rbCoAuthModeStrict.setValue(!fast_coauth); /** coauthoring end **/ + this.chLiveViewer.setValue(Common.Utils.InternalSettings.get("pe-settings-coauthmode")); value = Common.Utils.InternalSettings.get("pe-settings-fontrender"); item = this.cmbFontRender.store.findWhere({value: parseInt(value)}); @@ -627,21 +672,26 @@ define([ applySettings: function() { Common.UI.Themes.setTheme(this.cmbTheme.getValue()); - if (Common.UI.FeaturesManager.canChange('spellcheck')) + if (Common.UI.FeaturesManager.canChange('spellcheck') && this.mode.isEdit) { Common.localStorage.setItem("pe-settings-spellcheck", this.chSpell.isChecked() ? 1 : 0); + Common.localStorage.setBool("pe-spellcheck-ignore-uppercase-words", this.chIgnoreUppercase.isChecked()); + Common.localStorage.setBool("pe-spellcheck-ignore-numbers-words", this.chIgnoreNumbers.isChecked()); + } Common.localStorage.setItem("pe-settings-inputmode", this.chInputMode.isChecked() ? 1 : 0); Common.localStorage.setItem("pe-settings-zoom", this.cmbZoom.getValue()); Common.Utils.InternalSettings.set("pe-settings-zoom", Common.localStorage.getItem("pe-settings-zoom")); /** coauthoring begin **/ if (this.mode.isEdit && !this.mode.isOffline && this.mode.canCoAuthoring && this.mode.canChangeCoAuthoring) { Common.localStorage.setItem("pe-settings-coauthmode", this.rbCoAuthModeFast.getValue()); + } else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + Common.localStorage.setItem("pe-settings-view-coauthmode", this.chLiveViewer.isChecked() ? 1 : 0); } /** coauthoring end **/ Common.localStorage.setItem("pe-settings-fontrender", this.cmbFontRender.getValue()); var item = this.cmbFontRender.store.findWhere({value: 'custom'}); Common.localStorage.setItem("pe-settings-cachemode", item && !item.get('checked') ? 0 : 1); Common.localStorage.setItem("pe-settings-unit", this.cmbUnit.getValue()); - if (this.mode.canChangeCoAuthoring || !Common.Utils.InternalSettings.get("pe-settings-coauthmode")) + if (this.mode.isEdit && (this.mode.canChangeCoAuthoring || !Common.Utils.InternalSettings.get("pe-settings-coauthmode"))) Common.localStorage.setItem("pe-settings-autosave", this.chAutosave.isChecked() ? 1 : 0); if (this.mode.canForcesave) Common.localStorage.setItem("pe-settings-forcesave", this.chForcesave.isChecked() ? 1 : 0); @@ -724,7 +774,10 @@ define([ txtWorkspace: 'Workspace', txtHieroglyphs: 'Hieroglyphs', txtFastTip: 'Real-time co-editing. All changes are saved automatically', - txtStrictTip: 'Use the \'Save\' button to sync the changes you and others make' + txtStrictTip: 'Use the \'Save\' button to sync the changes you and others make', + strIgnoreWordsInUPPERCASE: 'Ignore words in UPPERCASE', + strIgnoreWordsWithNumbers: 'Ignore words with numbers', + strShowOthersChanges: 'Show changes from other users' }, PE.Views.FileMenuPanels.Settings || {})); PE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ @@ -751,9 +804,9 @@ define([ itemTemplate: _.template([ '
', '
', - '', - '', - '', + '
', + '
', + '
', '
', '
<% if (typeof title !== "undefined") {%><%= Common.Utils.String.htmlEncode(title || "") %><% } %>
', '
<% if (typeof folder !== "undefined") {%><%= Common.Utils.String.htmlEncode(folder || "") %><% } %>
', @@ -802,7 +855,7 @@ define([ '<% if (blank) { %> ', '
', '
', - '', + '
', '
', '
<%= scope.txtBlank %>
', '
', @@ -813,7 +866,7 @@ define([ '<% if (!_.isEmpty(item.image)) {%> ', ' style="background-image: url(<%= item.image %>);">', ' <%} else {' + - 'print(\">\")' + + 'print(\">
\")' + ' } %>', '
', '
<%= Common.Utils.String.htmlEncode(item.title || item.name || "") %>
', diff --git a/apps/presentationeditor/main/app/view/ImageSettings.js b/apps/presentationeditor/main/app/view/ImageSettings.js index 25bc35c55..9eb8ef3e9 100644 --- a/apps/presentationeditor/main/app/view/ImageSettings.js +++ b/apps/presentationeditor/main/app/view/ImageSettings.js @@ -148,7 +148,18 @@ define([ this.btnOriginalSize.on('click', _.bind(this.setOriginalSize, this)); this.btnEditObject.on('click', _.bind(function(btn){ - if (this.api) this.api.asc_startEditCurrentOleObject(); + if (this.api) { + var oleobj = this.api.asc_canEditTableOleObject(true); + if (oleobj) { + var oleEditor = PE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor) { + oleEditor.setEditMode(true); + oleEditor.show(); + oleEditor.setOleData(Asc.asc_putBinaryDataToFrameFromTableOleObject(oleobj)); + } + } else + this.api.asc_startEditCurrentOleObject(); + } this.fireEvent('editcomplete', this); }, this)); @@ -348,7 +359,7 @@ define([ if (this._state.isOleObject) { var plugin = PE.getCollection('Common.Collections.Plugins').findWhere({guid: pluginGuid}); - this.btnEditObject.setDisabled(plugin===null || plugin ===undefined || this._locked); + this.btnEditObject.setDisabled(!this.api.asc_canEditTableOleObject() && (plugin===null || plugin ===undefined) || this._locked); } else { this.btnSelectImage.setDisabled(pluginGuid===null || this._locked); } diff --git a/apps/presentationeditor/main/app/view/ShapeSettings.js b/apps/presentationeditor/main/app/view/ShapeSettings.js index 1b598f2ac..fde3bdb0a 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettings.js +++ b/apps/presentationeditor/main/app/view/ShapeSettings.js @@ -767,6 +767,8 @@ define([ { this._originalProps = props; this._noApply = true; + this._state.isFromImage = !!props.get_FromImage(); + this._state.isFromSmartArtInternal = !!props.get_FromSmartArtInternal(); var shapetype = props.asc_getType(); @@ -779,10 +781,8 @@ define([ || shapetype=='curvedConnector3' || shapetype=='curvedConnector4' || shapetype=='curvedConnector5' || shapetype=='straightConnector1'; this.hideChangeTypeSettings(hidechangetype); - this._state.isFromImage = !!props.get_FromImage(); - this._state.isFromSmartArtInternal = !!props.get_FromSmartArtInternal(); if (!hidechangetype && this.btnChangeShape.menu.items.length) { - this.btnChangeShape.shapePicker.hideTextRect(props.get_FromImage() || props.get_FromSmartArtInternal()); + this.btnChangeShape.shapePicker.hideTextRect(props.get_FromImage() || this._state.isFromSmartArtInternal); } // background colors @@ -1850,6 +1850,8 @@ define([ }); this.linkAdvanced.toggleClass('disabled', disable); } + this.btnFlipV.setDisabled(disable || this._state.isFromSmartArtInternal); + this.btnFlipH.setDisabled(disable || this._state.isFromSmartArtInternal); }, hideShapeOnlySettings: function(value) { diff --git a/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js index e26025801..345c0fa80 100644 --- a/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ShapeSettingsAdvanced.js @@ -627,6 +627,8 @@ define([ 'text!presentationeditor/main/app/template/ShapeSettingsAdvanced.tem this.radioNofit.setDisabled(true); this.radioShrink.setDisabled(true); this.radioFit.setDisabled(true); + this.chFlipHor.setDisabled(true); + this.chFlipVert.setDisabled(true); } this.spnWidth.setValue(Common.Utils.Metric.fnRecalcFromMM(props.asc_getWidth()).toFixed(2), true); diff --git a/apps/presentationeditor/main/app/view/TableSettings.js b/apps/presentationeditor/main/app/view/TableSettings.js index 2c37f45ba..ca9a5424b 100644 --- a/apps/presentationeditor/main/app/view/TableSettings.js +++ b/apps/presentationeditor/main/app/view/TableSettings.js @@ -726,9 +726,9 @@ define([ }); if (this._state.beginPreviewStyles) { this._state.beginPreviewStyles = false; - self.mnuTableTemplatePicker.store.reset(arr); + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.reset(arr); } else - self.mnuTableTemplatePicker.store.add(arr); + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.add(arr); !this._state.currentStyleFound && this.selectCurrentTableStyle(); }, diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index 4e05a53e2..330f02d09 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -98,7 +98,8 @@ define([ noMoveAnimationLater: 'no-move-animation-later', noAnimationPreview: 'no-animation-preview', noAnimationRepeat: 'no-animation-repeat', - noAnimationDuration: 'no-animation-duration' + noAnimationDuration: 'no-animation-duration', + timingLock: 'timing-lock' }; for (var key in enumLock) { if (enumLock.hasOwnProperty(key)) { @@ -409,7 +410,7 @@ define([ enableToggle: true, allowDepress: true, split: true, - lock: [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock, _set.inSmartart, _set.inSmartartInternal], + lock: [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.noTextSelected, _set.shapeLock], menu: new Common.UI.Menu({ style: 'min-width: 100px;', items: [ diff --git a/apps/presentationeditor/main/app_dev.js b/apps/presentationeditor/main/app_dev.js index 37ddc109a..d14b880a3 100644 --- a/apps/presentationeditor/main/app_dev.js +++ b/apps/presentationeditor/main/app_dev.js @@ -152,6 +152,7 @@ require([ /** coauthoring end **/ ,'Common.Controllers.Plugins' ,'Common.Controllers.ExternalDiagramEditor' + ,'Common.Controllers.ExternalOleEditor' ,'Common.Controllers.ReviewChanges' ,'Common.Controllers.Protection' ,'Transitions' @@ -188,6 +189,7 @@ require([ 'common/main/lib/controller/Plugins', 'presentationeditor/main/app/view/ChartSettings', 'common/main/lib/controller/ExternalDiagramEditor' + ,'common/main/lib/controller/ExternalOleEditor' ,'common/main/lib/controller/ReviewChanges' ,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Themes' diff --git a/apps/presentationeditor/main/index.html b/apps/presentationeditor/main/index.html index d97ecfad9..0ec95cdfe 100644 --- a/apps/presentationeditor/main/index.html +++ b/apps/presentationeditor/main/index.html @@ -331,21 +331,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/apps/presentationeditor/main/index_loader.html b/apps/presentationeditor/main/index_loader.html index 10f46bc1e..2b93f6274 100644 --- a/apps/presentationeditor/main/index_loader.html +++ b/apps/presentationeditor/main/index_loader.html @@ -259,21 +259,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/apps/presentationeditor/main/locale/az.json b/apps/presentationeditor/main/locale/az.json index 609676c0d..5e1e7d00f 100644 --- a/apps/presentationeditor/main/locale/az.json +++ b/apps/presentationeditor/main/locale/az.json @@ -1086,6 +1086,8 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Slayda uyğun tənzimlə", "PE.Controllers.Viewport.textFitWidth": "Enə uyğun tənzimlə", + "PE.Views.Animation.textNoRepeat": "(yoxdur)", + "PE.Views.Animation.txtParameters": "Parametreler", "PE.Views.ChartSettings.textAdvanced": "Qabaqcıl Parametrləri Göstər", "PE.Views.ChartSettings.textChartType": "Diaqramın növünü dəyiş", "PE.Views.ChartSettings.textEditData": "Məlumatları Redaktə edin", diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index 317cc7223..f984a8f50 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -53,7 +53,7 @@ "Common.define.effectData.textZoom": "Маштаб", "Common.Translation.warnFileLocked": "Дакумент выкарыстоўваецца іншай праграмай. Вы можаце працягнуць рэдагаванне і захаваць яго як копію.", "Common.UI.ButtonColored.textAutoColor": "Аўтаматычна", - "Common.UI.ButtonColored.textNewColor": "Дадаць новы адвольны колер", + "Common.UI.ButtonColored.textNewColor": "Адвольны колер", "Common.UI.ComboBorderSize.txtNoBorders": "Без межаў", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без межаў", "Common.UI.ComboDataView.emptyComboText": "Без стыляў", diff --git a/apps/presentationeditor/main/locale/bg.json b/apps/presentationeditor/main/locale/bg.json index f4ec170be..2f76b9578 100644 --- a/apps/presentationeditor/main/locale/bg.json +++ b/apps/presentationeditor/main/locale/bg.json @@ -14,6 +14,7 @@ "Common.define.chartData.textPoint": "XY (точкова)", "Common.define.chartData.textStock": "Борсова", "Common.define.chartData.textSurface": "Повърхност", + "Common.UI.ButtonColored.textNewColor": "Нов Потребителски Цвят", "Common.UI.ComboBorderSize.txtNoBorders": "Няма граници", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници", "Common.UI.ComboDataView.emptyComboText": "Няма стилове", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index d3569eaad..e03792935 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -52,6 +52,7 @@ "Common.define.effectData.textArcDown": "Arc cap avall", "Common.define.effectData.textArcLeft": "Arc cap a l'esquerra", "Common.define.effectData.textArcRight": "Arc cap a la dreta", + "Common.define.effectData.textArcs": "Arcs", "Common.define.effectData.textArcUp": "Arc cap amunt", "Common.define.effectData.textBasic": "Bàsic", "Common.define.effectData.textBasicSwivel": "Gir bàsic", @@ -98,11 +99,11 @@ "Common.define.effectData.textDissolveOut": "Dissoldre per desaparèixer", "Common.define.effectData.textDown": "Avall", "Common.define.effectData.textDrop": "Gota", - "Common.define.effectData.textEmphasis": " Efecte d'èmfasi", - "Common.define.effectData.textEntrance": "Efecte d'entrada", + "Common.define.effectData.textEmphasis": "Efectes d'èmfasi", + "Common.define.effectData.textEntrance": "Efectes d'entrada", "Common.define.effectData.textEqualTriangle": "Triangle equilàter", "Common.define.effectData.textExciting": "Atrevits", - "Common.define.effectData.textExit": " Efecte de sortida", + "Common.define.effectData.textExit": "Efectes de sortida", "Common.define.effectData.textExpand": "Expandeix", "Common.define.effectData.textFade": "Esvaïment", "Common.define.effectData.textFigureFour": "Figura 8 quatre", @@ -139,6 +140,7 @@ "Common.define.effectData.textIn": "Entrant", "Common.define.effectData.textInFromScreenCenter": "Amplia des del centre de la pantalla", "Common.define.effectData.textInSlightly": "Amplia lleugerament", + "Common.define.effectData.textInToScreenBottom": "A la Part Inferior de la Pantalla", "Common.define.effectData.textInvertedSquare": "Quadrat invertit", "Common.define.effectData.textInvertedTriangle": "Triangle invertit", "Common.define.effectData.textLeft": "Esquerra", @@ -146,8 +148,10 @@ "Common.define.effectData.textLeftUp": "Esquerra i amunt", "Common.define.effectData.textLighten": "Il·luminar", "Common.define.effectData.textLineColor": "Color de la línia", + "Common.define.effectData.textLines": "Línies", "Common.define.effectData.textLinesCurves": "Línies i corbes", "Common.define.effectData.textLoopDeLoop": "Bucle", + "Common.define.effectData.textLoops": "Bucles", "Common.define.effectData.textModerate": "Moderats", "Common.define.effectData.textNeutron": "Neutró", "Common.define.effectData.textObjectCenter": "Centre d'objectes", @@ -156,8 +160,9 @@ "Common.define.effectData.textOut": "Fora", "Common.define.effectData.textOutFromScreenBottom": "Redueix des de la part inferior de la pantalla", "Common.define.effectData.textOutSlightly": "Redueix lleugerament", + "Common.define.effectData.textOutToScreenCenter": "Fora del centre de la pantalla", "Common.define.effectData.textParallelogram": "Paral·lelogram", - "Common.define.effectData.textPath": "Recorregut", + "Common.define.effectData.textPath": "Trajectòries de desplaçament", "Common.define.effectData.textPeanut": "Cacauet", "Common.define.effectData.textPeekIn": "Ullada endins", "Common.define.effectData.textPeekOut": "Ullada enfora", @@ -179,6 +184,7 @@ "Common.define.effectData.textSCurve1": "Corba S 1", "Common.define.effectData.textSCurve2": "Corba S 2", "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShapes": "Formes", "Common.define.effectData.textShimmer": "Resplendir", "Common.define.effectData.textShrinkTurn": "Encongir i girar", "Common.define.effectData.textSineWave": "Corba sinusoide", @@ -219,6 +225,7 @@ "Common.define.effectData.textTrapezoid": "Trapezi", "Common.define.effectData.textTurnDown": "Girar cap avall", "Common.define.effectData.textTurnDownRight": "Girar cap a la dreta i avall", + "Common.define.effectData.textTurns": "Girar", "Common.define.effectData.textTurnUp": "Girar cap amunt", "Common.define.effectData.textTurnUpRight": "Girar cap a la dreta i amunt", "Common.define.effectData.textUnderline": "Subratlla", @@ -238,7 +245,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obre per a la seva visualització", "Common.UI.ButtonColored.textAutoColor": "Automàtic", - "Common.UI.ButtonColored.textNewColor": "Afegeix un color personalitzat nou ", + "Common.UI.ButtonColored.textNewColor": "Color personalitzat nou ", "Common.UI.ComboBorderSize.txtNoBorders": "Sense vores", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sense vores", "Common.UI.ComboDataView.emptyComboText": "Sense estils", @@ -293,6 +300,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics", "Common.Views.AutoCorrectDialog.textBy": "Per", "Common.Views.AutoCorrectDialog.textDelete": "Suprimeix", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Afegir punt amb espai doble", "Common.Views.AutoCorrectDialog.textFLCells": "Posa en majúscula la primera lletra de les cel·les de la taula", "Common.Views.AutoCorrectDialog.textFLSentence": "Escriu en majúscules la primera lletra de les frases", "Common.Views.AutoCorrectDialog.textHyperlink": "Camins de xarxa i d'Internet per enllaços", @@ -341,6 +349,7 @@ "Common.Views.Comments.textResolved": "Resolt", "Common.Views.Comments.textSort": "Ordena els comentaris", "Common.Views.Comments.textViewResolved": "No teniu permís per tornar a obrir el comentari", + "Common.Views.Comments.txtEmpty": "No hi ha cap comentari al document", "Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge", "Common.Views.CopyWarningDialog.textMsg": "Les accions de copiar, tallar i enganxar mitjançant els botons de la barra d’eines de l’editor i les accions del menú contextual només es realitzaran dins d’aquesta pestanya editor.

Per copiar o enganxar a o des d’aplicacions fora de la pestanya de l'editor, utilitzeu les combinacions de teclat següents:", "Common.Views.CopyWarningDialog.textTitle": "Accions de copiar, tallar i enganxar ", @@ -1282,6 +1291,12 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Ajusta a la diapositiva", "PE.Controllers.Viewport.textFitWidth": "Ajusta-ho a l'amplària", + "PE.Views.Animation.str0_5": "0.5 s (Molt ràpid)", + "PE.Views.Animation.str1": "1 s (Ràpid)", + "PE.Views.Animation.str2": "2 s (Mitjana)", + "PE.Views.Animation.str20": "20 s (Extremament lent)", + "PE.Views.Animation.str3": "3 s (Lent)", + "PE.Views.Animation.str5": "5 s (Molt Lent)", "PE.Views.Animation.strDelay": "Retard", "PE.Views.Animation.strDuration": "Durada", "PE.Views.Animation.strRepeat": "Repeteix", @@ -1293,11 +1308,14 @@ "PE.Views.Animation.textMoveLater": "Després", "PE.Views.Animation.textMultiple": "múltiple", "PE.Views.Animation.textNone": "cap", + "PE.Views.Animation.textNoRepeat": "(cap)", "PE.Views.Animation.textOnClickOf": "Al desclicar", "PE.Views.Animation.textOnClickSequence": "Al fer una Seqüència de clics", "PE.Views.Animation.textStartAfterPrevious": "Després de l'anterior", "PE.Views.Animation.textStartOnClick": "En clicar", "PE.Views.Animation.textStartWithPrevious": "Amb l'anterior", + "PE.Views.Animation.textUntilEndOfSlide": "Fins al final de la diapositiva", + "PE.Views.Animation.textUntilNextClick": "Fins al següent clic", "PE.Views.Animation.txtAddEffect": "Afegeix una animació", "PE.Views.Animation.txtAnimationPane": "Subfinestra d'animacions", "PE.Views.Animation.txtParameters": "Paràmetres", @@ -1522,7 +1540,7 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "Tanca el menú", "PE.Views.FileMenu.btnCreateNewCaption": "Crea'n un de nou", "PE.Views.FileMenu.btnDownloadCaption": "Baixa-ho com a...", - "PE.Views.FileMenu.btnExitCaption": "Surt", + "PE.Views.FileMenu.btnExitCaption": "Tancar", "PE.Views.FileMenu.btnFileOpenCaption": "Obre...", "PE.Views.FileMenu.btnHelpCaption": "Ajuda...", "PE.Views.FileMenu.btnHistoryCaption": "Historial de versions", @@ -2168,6 +2186,15 @@ "PE.Views.Toolbar.tipInsertVideo": "Insereix un vídeo", "PE.Views.Toolbar.tipLineSpace": "Interlineat", "PE.Views.Toolbar.tipMarkers": "Pics", + "PE.Views.Toolbar.tipMarkersArrow": "Vinyetes de fletxa", + "PE.Views.Toolbar.tipMarkersCheckmark": "Vinyetes de marca de selecció", + "PE.Views.Toolbar.tipMarkersDash": "Vinyetes de guió", + "PE.Views.Toolbar.tipMarkersFRhombus": "Vinyetes de rombes plenes", + "PE.Views.Toolbar.tipMarkersFRound": "Vinyetes rodones plenes", + "PE.Views.Toolbar.tipMarkersFSquare": "Vinyetes quadrades plenes", + "PE.Views.Toolbar.tipMarkersHRound": "Vinyetes rodones buides", + "PE.Views.Toolbar.tipMarkersStar": "Vinyetes d'estrella", + "PE.Views.Toolbar.tipNone": "cap", "PE.Views.Toolbar.tipNumbers": "Numeració", "PE.Views.Toolbar.tipPaste": "Enganxar", "PE.Views.Toolbar.tipPreview": "Inicia la presentació de diapositives", diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index 67d9dbeb7..bc783a263 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -52,6 +52,7 @@ "Common.define.effectData.textArcDown": "Oblouk dole", "Common.define.effectData.textArcLeft": "Oblouk vlevo", "Common.define.effectData.textArcRight": "Oblouk vpravo", + "Common.define.effectData.textArcs": "Oblouky", "Common.define.effectData.textArcUp": "Oblouk nahoře", "Common.define.effectData.textBasic": "Základní", "Common.define.effectData.textBasicSwivel": "Základní otočný", @@ -139,6 +140,7 @@ "Common.define.effectData.textIn": "Dovnitř", "Common.define.effectData.textInFromScreenCenter": "Dovnitř ze středu obrazovky", "Common.define.effectData.textInSlightly": "Dovnitř mírně", + "Common.define.effectData.textInToScreenBottom": "Dovnitř na dolní část obrazovky", "Common.define.effectData.textInvertedSquare": "Převrácený čtverec", "Common.define.effectData.textInvertedTriangle": "Převrácený trojúhelník", "Common.define.effectData.textLeft": "Vlevo", @@ -146,8 +148,10 @@ "Common.define.effectData.textLeftUp": "Vlevo nahoru", "Common.define.effectData.textLighten": "Zesvětlit", "Common.define.effectData.textLineColor": "Barva ohraničení", + "Common.define.effectData.textLines": "Čáry", "Common.define.effectData.textLinesCurves": "Křivky čar", "Common.define.effectData.textLoopDeLoop": "Smyčkovitě", + "Common.define.effectData.textLoops": "Smyčky", "Common.define.effectData.textModerate": "Mírné", "Common.define.effectData.textNeutron": "Neutron", "Common.define.effectData.textObjectCenter": "Střed objektu", @@ -156,8 +160,9 @@ "Common.define.effectData.textOut": "Vně", "Common.define.effectData.textOutFromScreenBottom": "Pryč skrze dolní část obrazovky", "Common.define.effectData.textOutSlightly": "Vně mírně", + "Common.define.effectData.textOutToScreenCenter": "Vně na střed obrazovky", "Common.define.effectData.textParallelogram": "Rovnoběžník", - "Common.define.effectData.textPath": "Trasa pohybu", + "Common.define.effectData.textPath": "Trasy pohybu", "Common.define.effectData.textPeanut": "Burský oříšek", "Common.define.effectData.textPeekIn": "Přilétnutí", "Common.define.effectData.textPeekOut": "Odlétnutí", @@ -179,6 +184,7 @@ "Common.define.effectData.textSCurve1": "Křivka 1", "Common.define.effectData.textSCurve2": "Křivka 2", "Common.define.effectData.textShape": "Tvar", + "Common.define.effectData.textShapes": "Obrazce", "Common.define.effectData.textShimmer": "Třpit", "Common.define.effectData.textShrinkTurn": "Zmenšit a otočit", "Common.define.effectData.textSineWave": "Sinusová vlna", @@ -219,6 +225,7 @@ "Common.define.effectData.textTrapezoid": "Lichoběžník", "Common.define.effectData.textTurnDown": "Otočit dolů", "Common.define.effectData.textTurnDownRight": "Otočit vpravo dolů", + "Common.define.effectData.textTurns": "Zatáčky", "Common.define.effectData.textTurnUp": "Převrátit nahoru", "Common.define.effectData.textTurnUpRight": "Převrátit vpravo", "Common.define.effectData.textUnderline": "Podtrhnout", @@ -293,6 +300,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatické odrážkové seznamy", "Common.Views.AutoCorrectDialog.textBy": "Od", "Common.Views.AutoCorrectDialog.textDelete": "Odstranit", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Přidat interval s dvojitou mezerou", "Common.Views.AutoCorrectDialog.textFLCells": "První písmeno v obsahu buněk tabulky měnit na velké", "Common.Views.AutoCorrectDialog.textFLSentence": "Velká na začátku věty", "Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a síťové přístupy s hypertextovými odkazy", @@ -1282,6 +1290,12 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Přizpůsobit snímku", "PE.Controllers.Viewport.textFitWidth": "Přizpůsobit šířce", + "PE.Views.Animation.str0_5": "0,5 s (Velmi rychle)", + "PE.Views.Animation.str1": "1 s (Rychle)", + "PE.Views.Animation.str2": "2 s (Střední)", + "PE.Views.Animation.str20": "20 s (Extrémně pomalu)", + "PE.Views.Animation.str3": "3s (Pomalu)", + "PE.Views.Animation.str5": "5 s (Velmi pomalu)", "PE.Views.Animation.strDelay": "Prodleva", "PE.Views.Animation.strDuration": "Doba trvání", "PE.Views.Animation.strRepeat": "Zopakovat", @@ -1293,11 +1307,14 @@ "PE.Views.Animation.textMoveLater": "Přesunout pozdější", "PE.Views.Animation.textMultiple": "vícenásobný", "PE.Views.Animation.textNone": "Žádné", + "PE.Views.Animation.textNoRepeat": "(žádné)", "PE.Views.Animation.textOnClickOf": "Při kliknutí na", "PE.Views.Animation.textOnClickSequence": "Při posloupnosti kliknutí", "PE.Views.Animation.textStartAfterPrevious": "Po předchozí", "PE.Views.Animation.textStartOnClick": "Při kliknutí", "PE.Views.Animation.textStartWithPrevious": "S předchozí", + "PE.Views.Animation.textUntilEndOfSlide": "Do konce snímku", + "PE.Views.Animation.textUntilNextClick": "Do příštího kliknutí", "PE.Views.Animation.txtAddEffect": "Přidat animaci", "PE.Views.Animation.txtAnimationPane": "Podokno animací", "PE.Views.Animation.txtParameters": "Parametry", @@ -1522,7 +1539,7 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "Zavřít nabídku", "PE.Views.FileMenu.btnCreateNewCaption": "Vytvořit nový", "PE.Views.FileMenu.btnDownloadCaption": "Stáhnout jako…", - "PE.Views.FileMenu.btnExitCaption": "Konec", + "PE.Views.FileMenu.btnExitCaption": "Zavřít", "PE.Views.FileMenu.btnFileOpenCaption": "Otevřít...", "PE.Views.FileMenu.btnHelpCaption": "Nápověda…", "PE.Views.FileMenu.btnHistoryCaption": "Historie verzí", @@ -2168,6 +2185,15 @@ "PE.Views.Toolbar.tipInsertVideo": "Vložit video", "PE.Views.Toolbar.tipLineSpace": "Řádkování", "PE.Views.Toolbar.tipMarkers": "Odrážky", + "PE.Views.Toolbar.tipMarkersArrow": "Šipkové odrážky", + "PE.Views.Toolbar.tipMarkersCheckmark": "Zatržítkové odrážky", + "PE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky", + "PE.Views.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", + "PE.Views.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky", + "PE.Views.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky", + "PE.Views.Toolbar.tipMarkersHRound": "Duté kulaté odrážky", + "PE.Views.Toolbar.tipMarkersStar": "Hvězdičkové odrážky", + "PE.Views.Toolbar.tipNone": "žádný", "PE.Views.Toolbar.tipNumbers": "Číslování", "PE.Views.Toolbar.tipPaste": "Vložit", "PE.Views.Toolbar.tipPreview": "Spustit prezentaci", diff --git a/apps/presentationeditor/main/locale/da.json b/apps/presentationeditor/main/locale/da.json index a8b6f4a1c..83cb632c9 100644 --- a/apps/presentationeditor/main/locale/da.json +++ b/apps/presentationeditor/main/locale/da.json @@ -51,7 +51,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Opret en kopi", "Common.Translation.warnFileLockedBtnView": "Åben for visning", "Common.UI.ButtonColored.textAutoColor": "Automatisk", - "Common.UI.ButtonColored.textNewColor": "Tilføj ny brugerdefineret farve", + "Common.UI.ButtonColored.textNewColor": "Brugerdefineret farve", "Common.UI.ComboBorderSize.txtNoBorders": "Ingen rammer", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ingen rammer", "Common.UI.ComboDataView.emptyComboText": "Ingen stilarter", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index 0e69ffd4a..7439f0324 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -2168,6 +2168,14 @@ "PE.Views.Toolbar.tipInsertVideo": "Video einfügen", "PE.Views.Toolbar.tipLineSpace": "Zeilenabstand", "PE.Views.Toolbar.tipMarkers": "Aufzählung", + "PE.Views.Toolbar.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen", + "PE.Views.Toolbar.tipMarkersCheckmark": "Häkchenaufzählungszeichen", + "PE.Views.Toolbar.tipMarkersDash": "Aufzählungszeichen", + "PE.Views.Toolbar.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen", + "PE.Views.Toolbar.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen", + "PE.Views.Toolbar.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen", + "PE.Views.Toolbar.tipMarkersHRound": "Leere runde Aufzählungszeichen", + "PE.Views.Toolbar.tipMarkersStar": "Sternförmige Aufzählungszeichen", "PE.Views.Toolbar.tipNumbers": "Nummerierung", "PE.Views.Toolbar.tipPaste": "Einfügen", "PE.Views.Toolbar.tipPreview": "Vorschau starten", diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index 498655dfa..559cf3289 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -238,7 +238,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου", "Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή", "Common.UI.ButtonColored.textAutoColor": "Αυτόματα", - "Common.UI.ButtonColored.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", + "Common.UI.ButtonColored.textNewColor": "Νέου Προσαρμοσμένου Χρώματος", "Common.UI.ComboBorderSize.txtNoBorders": "Χωρίς περιγράμματα", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Χωρίς περιγράμματα", "Common.UI.ComboDataView.emptyComboText": "Χωρίς τεχνοτροπίες", @@ -2168,6 +2168,14 @@ "PE.Views.Toolbar.tipInsertVideo": "Εισαγωγή βίντεο", "PE.Views.Toolbar.tipLineSpace": "Διάστιχο", "PE.Views.Toolbar.tipMarkers": "Κουκκίδες", + "PE.Views.Toolbar.tipMarkersArrow": "Κουκίδες βέλη", + "PE.Views.Toolbar.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος", + "PE.Views.Toolbar.tipMarkersDash": "Κουκίδες παύλας", + "PE.Views.Toolbar.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου", + "PE.Views.Toolbar.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές", + "PE.Views.Toolbar.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες", + "PE.Views.Toolbar.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές", + "PE.Views.Toolbar.tipMarkersStar": "Κουκίδες αστέρια", "PE.Views.Toolbar.tipNumbers": "Αρίθμηση", "PE.Views.Toolbar.tipPaste": "Επικόλληση", "PE.Views.Toolbar.tipPreview": "Εκκίνηση παρουσίασης", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 27af300b4..44305f7e9 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -99,11 +99,11 @@ "Common.define.effectData.textDissolveOut": "Dissolve Out", "Common.define.effectData.textDown": "Down", "Common.define.effectData.textDrop": "Drop", - "Common.define.effectData.textEmphasis": "Emphasis Effect", - "Common.define.effectData.textEntrance": "Entrance Effect", + "Common.define.effectData.textEmphasis": "Emphasis Effects", + "Common.define.effectData.textEntrance": "Entrance Effects", "Common.define.effectData.textEqualTriangle": "Equal Triangle", "Common.define.effectData.textExciting": "Exciting", - "Common.define.effectData.textExit": "Exit Effect", + "Common.define.effectData.textExit": "Exit Effects", "Common.define.effectData.textExpand": "Expand", "Common.define.effectData.textFade": "Fade", "Common.define.effectData.textFigureFour": "Figure 8 Four", @@ -162,7 +162,7 @@ "Common.define.effectData.textOutSlightly": "Out Slightly", "Common.define.effectData.textOutToScreenCenter": "Out To Screen Center", "Common.define.effectData.textParallelogram": "Parallelogram", - "Common.define.effectData.textPath": "Motion Path", + "Common.define.effectData.textPath": "Motion Paths", "Common.define.effectData.textPeanut": "Peanut", "Common.define.effectData.textPeekIn": "Peek In", "Common.define.effectData.textPeekOut": "Peek Out", @@ -350,6 +350,7 @@ "Common.Views.Comments.textResolved": "Resolved", "Common.Views.Comments.textSort": "Sort comments", "Common.Views.Comments.textViewResolved": "You have no permission to reopen the comment", + "Common.Views.Comments.txtEmpty": "There are no comments in the document.", "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", @@ -1553,7 +1554,7 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", "PE.Views.FileMenu.btnCreateNewCaption": "Create New", "PE.Views.FileMenu.btnDownloadCaption": "Download as...", - "PE.Views.FileMenu.btnExitCaption": "Exit", + "PE.Views.FileMenu.btnExitCaption": "Close", "PE.Views.FileMenu.btnFileOpenCaption": "Open...", "PE.Views.FileMenu.btnHelpCaption": "Help...", "PE.Views.FileMenu.btnHistoryCaption": "Version History", @@ -1656,6 +1657,8 @@ "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with a notification", "PE.Views.FileMenuPanels.Settings.txtWin": "as Windows", "PE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", + "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers", "PE.Views.HeaderFooterDialog.applyAllText": "Apply to all", "PE.Views.HeaderFooterDialog.applyText": "Apply", "PE.Views.HeaderFooterDialog.diffLanguage": "You can’t use a date format in a different language than the slide master.
To change the master, click 'Apply to all' instead of 'Apply'", @@ -2228,6 +2231,15 @@ "PE.Views.Toolbar.tipInsertVideo": "Insert video", "PE.Views.Toolbar.tipLineSpace": "Line spacing", "PE.Views.Toolbar.tipMarkers": "Bullets", + "PE.Views.Toolbar.tipMarkersArrow": "Arrow bullets", + "PE.Views.Toolbar.tipMarkersCheckmark": "Checkmark bullets", + "PE.Views.Toolbar.tipMarkersDash": "Dash bullets", + "PE.Views.Toolbar.tipMarkersFRhombus": "Filled rhombus bullets", + "PE.Views.Toolbar.tipMarkersFRound": "Filled round bullets", + "PE.Views.Toolbar.tipMarkersFSquare": "Filled square bullets", + "PE.Views.Toolbar.tipMarkersHRound": "Hollow round bullets", + "PE.Views.Toolbar.tipMarkersStar": "Star bullets", + "PE.Views.Toolbar.tipNone": "None", "PE.Views.Toolbar.tipNumbers": "Numbering", "PE.Views.Toolbar.tipPaste": "Paste", "PE.Views.Toolbar.tipPreview": "Start slideshow", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index a54532638..1c3ea864b 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -52,6 +52,7 @@ "Common.define.effectData.textArcDown": "Arco hacia abajo", "Common.define.effectData.textArcLeft": "Arco hacia a la izquierda", "Common.define.effectData.textArcRight": "Arco hacia la derecha", + "Common.define.effectData.textArcs": "Arcos", "Common.define.effectData.textArcUp": "Arco hacia arriba", "Common.define.effectData.textBasic": "Básico", "Common.define.effectData.textBasicSwivel": "Giro básico", @@ -98,11 +99,11 @@ "Common.define.effectData.textDissolveOut": "Disolver hacia fuera", "Common.define.effectData.textDown": "Abajo", "Common.define.effectData.textDrop": "Colocar", - "Common.define.effectData.textEmphasis": "Efecto de énfasis", - "Common.define.effectData.textEntrance": "Efecto de entrada", + "Common.define.effectData.textEmphasis": "Efectos de énfasis", + "Common.define.effectData.textEntrance": "Efectos de entrada", "Common.define.effectData.textEqualTriangle": "Triángulo equilátero", "Common.define.effectData.textExciting": "Llamativo", - "Common.define.effectData.textExit": "Efecto de salida", + "Common.define.effectData.textExit": "Efectos de salida", "Common.define.effectData.textExpand": "Expandir", "Common.define.effectData.textFade": "Desvanecer", "Common.define.effectData.textFigureFour": "Figura 8 cuatro veces", @@ -139,6 +140,7 @@ "Common.define.effectData.textIn": "Hacia dentro", "Common.define.effectData.textInFromScreenCenter": "Aumentar desde el centro de pantalla", "Common.define.effectData.textInSlightly": "Acercar ligeramente", + "Common.define.effectData.textInToScreenBottom": "Acercar hacia parte inferior de la pantalla", "Common.define.effectData.textInvertedSquare": "Cuadrado invertido", "Common.define.effectData.textInvertedTriangle": "Triángulo invertido", "Common.define.effectData.textLeft": "Izquierda", @@ -146,8 +148,10 @@ "Common.define.effectData.textLeftUp": "Izquierda y arriba", "Common.define.effectData.textLighten": "Iluninar", "Common.define.effectData.textLineColor": "Color de línea", + "Common.define.effectData.textLines": "Líneas", "Common.define.effectData.textLinesCurves": "Líneas curvas", "Common.define.effectData.textLoopDeLoop": "Bucle", + "Common.define.effectData.textLoops": "Bucles", "Common.define.effectData.textModerate": "Moderado", "Common.define.effectData.textNeutron": "Neutrón", "Common.define.effectData.textObjectCenter": "Centro del objeto", @@ -156,8 +160,9 @@ "Common.define.effectData.textOut": "Hacia fuera", "Common.define.effectData.textOutFromScreenBottom": "Alejar desde la zona inferior de la pantalla", "Common.define.effectData.textOutSlightly": "Alejar ligeramente", + "Common.define.effectData.textOutToScreenCenter": "Alejar hacia el centro de la pantalla", "Common.define.effectData.textParallelogram": "Paralelogramo", - "Common.define.effectData.textPath": "Ruta de movimiento", + "Common.define.effectData.textPath": "Rutas de movimiento", "Common.define.effectData.textPeanut": "Cacahuete", "Common.define.effectData.textPeekIn": "Desplegar hacia arriba", "Common.define.effectData.textPeekOut": "Desplegar hacia abajo", @@ -179,6 +184,7 @@ "Common.define.effectData.textSCurve1": "Curva S 1", "Common.define.effectData.textSCurve2": "Curva S 2", "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShapes": "Formas", "Common.define.effectData.textShimmer": "Reflejos", "Common.define.effectData.textShrinkTurn": "Reducir y girar", "Common.define.effectData.textSineWave": "Sine Wave", @@ -219,6 +225,7 @@ "Common.define.effectData.textTrapezoid": "Trapecio", "Common.define.effectData.textTurnDown": "Giro hacia abajo", "Common.define.effectData.textTurnDownRight": "Girar hacia abajo y a la derecha", + "Common.define.effectData.textTurns": "Giros", "Common.define.effectData.textTurnUp": "Girar hacia arriba", "Common.define.effectData.textTurnUpRight": "Girar hacia arriba a la derecha", "Common.define.effectData.textUnderline": "Subrayar", @@ -238,7 +245,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crear copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Agregar nuevo color personalizado", + "Common.UI.ButtonColored.textNewColor": "Color personalizado", "Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes", "Common.UI.ComboDataView.emptyComboText": "Sin estilo", @@ -293,6 +300,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas con viñetas automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Eliminar", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Añadir punto con doble espacio", "Common.Views.AutoCorrectDialog.textFLCells": "Poner en mayúsculas la primera letra de las celdas de la tabla", "Common.Views.AutoCorrectDialog.textFLSentence": "Poner en mayúscula la primera letra de una oración", "Common.Views.AutoCorrectDialog.textHyperlink": "Rutas de red e Internet por hipervínculos", @@ -341,6 +349,7 @@ "Common.Views.Comments.textResolved": "Resuelto", "Common.Views.Comments.textSort": "Ordenar comentarios", "Common.Views.Comments.textViewResolved": "No tiene permiso para volver a abrir el documento", + "Common.Views.Comments.txtEmpty": "Sin comentarios en el documento", "Common.Views.CopyWarningDialog.textDontShow": "No volver a mostrar este mensaje", "Common.Views.CopyWarningDialog.textMsg": "Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y el menú contextual sólo en esta pestaña del editor.

Si quiere copiar o pegar algo fuera de esta pestaña, usa las combinaciones de teclas siguientes:", "Common.Views.CopyWarningDialog.textTitle": "Funciones de Copiar, Cortar y Pegar", @@ -1282,6 +1291,12 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Dseda", "PE.Controllers.Viewport.textFitPage": "Ajustar a la diapositiva", "PE.Controllers.Viewport.textFitWidth": "Ajustar al ancho", + "PE.Views.Animation.str0_5": "0,5 s (muy rápido)", + "PE.Views.Animation.str1": "1 s (rápido)", + "PE.Views.Animation.str2": "2 s (medio)", + "PE.Views.Animation.str20": "20 s (muy lento)", + "PE.Views.Animation.str3": "3 s (lento)", + "PE.Views.Animation.str5": "5 s (muy lento)", "PE.Views.Animation.strDelay": "Retraso", "PE.Views.Animation.strDuration": "Duración ", "PE.Views.Animation.strRepeat": "Repetir", @@ -1293,11 +1308,14 @@ "PE.Views.Animation.textMoveLater": "Mover después", "PE.Views.Animation.textMultiple": "Múltiple", "PE.Views.Animation.textNone": "Ninguno", + "PE.Views.Animation.textNoRepeat": "(ninguno)", "PE.Views.Animation.textOnClickOf": "Al hacer clic con", "PE.Views.Animation.textOnClickSequence": "Secuencia de clics", "PE.Views.Animation.textStartAfterPrevious": "Después de la anterior", "PE.Views.Animation.textStartOnClick": "Al hacer clic", "PE.Views.Animation.textStartWithPrevious": "Con la anterior", + "PE.Views.Animation.textUntilEndOfSlide": "Hasta el final de la diapositiva", + "PE.Views.Animation.textUntilNextClick": "Hasta el siguiente clic", "PE.Views.Animation.txtAddEffect": "Agregar animación", "PE.Views.Animation.txtAnimationPane": "Panel de animación", "PE.Views.Animation.txtParameters": "Parámetros", @@ -1522,7 +1540,7 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "Cerrar menú", "PE.Views.FileMenu.btnCreateNewCaption": "Crear nuevo", "PE.Views.FileMenu.btnDownloadCaption": "Descargar como...", - "PE.Views.FileMenu.btnExitCaption": "Salir", + "PE.Views.FileMenu.btnExitCaption": "Cerrar", "PE.Views.FileMenu.btnFileOpenCaption": "Abrir...", "PE.Views.FileMenu.btnHelpCaption": "Ayuda...", "PE.Views.FileMenu.btnHistoryCaption": "Historial de versiones", @@ -2168,6 +2186,15 @@ "PE.Views.Toolbar.tipInsertVideo": "Insertar vídeo", "PE.Views.Toolbar.tipLineSpace": "Espaciado de línea", "PE.Views.Toolbar.tipMarkers": "Viñetas", + "PE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha", + "PE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", + "PE.Views.Toolbar.tipMarkersDash": "Viñetas guión", + "PE.Views.Toolbar.tipMarkersFRhombus": "Rombos rellenos", + "PE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas rellenas", + "PE.Views.Toolbar.tipMarkersFSquare": "Viñetas cuadradas rellenas", + "PE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas huecas", + "PE.Views.Toolbar.tipMarkersStar": "Viñetas de estrella", + "PE.Views.Toolbar.tipNone": "Ninguno", "PE.Views.Toolbar.tipNumbers": "Numeración", "PE.Views.Toolbar.tipPaste": "Pegar", "PE.Views.Toolbar.tipPreview": "Iniciar presentación", diff --git a/apps/presentationeditor/main/locale/fi.json b/apps/presentationeditor/main/locale/fi.json index 314033f1e..12ecd8723 100644 --- a/apps/presentationeditor/main/locale/fi.json +++ b/apps/presentationeditor/main/locale/fi.json @@ -6,6 +6,7 @@ "Common.Controllers.ExternalDiagramEditor.warningText": "Ohjekti ei ole käytössä koska toinen käyttäjä muokkaa sitä.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Varoitus", "Common.UI.ButtonColored.textAutoColor": "Automaattinen", + "Common.UI.ButtonColored.textNewColor": "Lisää uusi mukautettu väri", "Common.UI.ComboBorderSize.txtNoBorders": "Ei reunuksia", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ei reunuksia", "Common.UI.ComboDataView.emptyComboText": "Ei tyylejä", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index b46c2bfb5..898b5ae40 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -52,6 +52,7 @@ "Common.define.effectData.textArcDown": "Arc vers le bas", "Common.define.effectData.textArcLeft": "Arc à gauche", "Common.define.effectData.textArcRight": "Arc à droite", + "Common.define.effectData.textArcs": "Arcs", "Common.define.effectData.textArcUp": "Arc vers le haut", "Common.define.effectData.textBasic": "Simple", "Common.define.effectData.textBasicSwivel": "Rotation de base", @@ -98,11 +99,11 @@ "Common.define.effectData.textDissolveOut": "Dissolution externe", "Common.define.effectData.textDown": "Bas", "Common.define.effectData.textDrop": "Déplacer", - "Common.define.effectData.textEmphasis": "Effet d’accentuation", - "Common.define.effectData.textEntrance": "Effet d’entrée", + "Common.define.effectData.textEmphasis": "Effets d’accentuation", + "Common.define.effectData.textEntrance": "Effets d’entrée", "Common.define.effectData.textEqualTriangle": "Triangle équilatéral", "Common.define.effectData.textExciting": "Captivant", - "Common.define.effectData.textExit": "Effet de sortie", + "Common.define.effectData.textExit": "Effets de sortie", "Common.define.effectData.textExpand": "Développer", "Common.define.effectData.textFade": "Fondu", "Common.define.effectData.textFigureFour": "Figure quatre 8", @@ -139,6 +140,7 @@ "Common.define.effectData.textIn": "Vers l’intérieur", "Common.define.effectData.textInFromScreenCenter": "Avant depuis le centre de l’écran", "Common.define.effectData.textInSlightly": "Avant léger", + "Common.define.effectData.textInToScreenBottom": "Zoomer vers le bas de l'écran", "Common.define.effectData.textInvertedSquare": "Carré inversé", "Common.define.effectData.textInvertedTriangle": "Triangle inversé", "Common.define.effectData.textLeft": "Gauche", @@ -146,8 +148,10 @@ "Common.define.effectData.textLeftUp": "Gauche haut", "Common.define.effectData.textLighten": "Éclaircir", "Common.define.effectData.textLineColor": "Couleur du trait", + "Common.define.effectData.textLines": "Lignes", "Common.define.effectData.textLinesCurves": "Lignes сourbes", "Common.define.effectData.textLoopDeLoop": "Boucle", + "Common.define.effectData.textLoops": "Boucles", "Common.define.effectData.textModerate": "Modérer", "Common.define.effectData.textNeutron": "Neutron", "Common.define.effectData.textObjectCenter": "Centre de l’objet", @@ -156,8 +160,9 @@ "Common.define.effectData.textOut": "Arrière", "Common.define.effectData.textOutFromScreenBottom": "Arrière depuis le bas de l’écran", "Common.define.effectData.textOutSlightly": "Arrière léger", + "Common.define.effectData.textOutToScreenCenter": "Diminuer au centre de l'écran", "Common.define.effectData.textParallelogram": "Parallélogramme", - "Common.define.effectData.textPath": "Trajectoire du mouvement", + "Common.define.effectData.textPath": "Trajectoires du mouvement", "Common.define.effectData.textPeanut": "Cacahuète", "Common.define.effectData.textPeekIn": "Insertion furtive", "Common.define.effectData.textPeekOut": "Sortie furtive", @@ -179,6 +184,7 @@ "Common.define.effectData.textSCurve1": "Courbe S 1", "Common.define.effectData.textSCurve2": "Courbe S 2", "Common.define.effectData.textShape": "Forme", + "Common.define.effectData.textShapes": "Formes", "Common.define.effectData.textShimmer": "Miroiter", "Common.define.effectData.textShrinkTurn": "Rétrécir et faire pivoter", "Common.define.effectData.textSineWave": "Vague sinusoïdale", @@ -219,6 +225,7 @@ "Common.define.effectData.textTrapezoid": "Trapèze", "Common.define.effectData.textTurnDown": "Tourner vers le bas", "Common.define.effectData.textTurnDownRight": "Tourner vers le bas à droite", + "Common.define.effectData.textTurns": "Tours", "Common.define.effectData.textTurnUp": "Tourner vers le haut", "Common.define.effectData.textTurnUpRight": "Tourner vers le haut à droite", "Common.define.effectData.textUnderline": "Souligner", @@ -293,6 +300,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listes à puces automatiques", "Common.Views.AutoCorrectDialog.textBy": "Par", "Common.Views.AutoCorrectDialog.textDelete": "Supprimer", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Ajouter un point avec un double espace", "Common.Views.AutoCorrectDialog.textFLCells": "Mettre la première lettre des cellules du tableau en majuscule", "Common.Views.AutoCorrectDialog.textFLSentence": "Majuscule en début de phrase", "Common.Views.AutoCorrectDialog.textHyperlink": "Adresses Internet et réseau avec des liens hypertextes", @@ -1282,6 +1290,12 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zêta", "PE.Controllers.Viewport.textFitPage": "Ajuster à la diapositive", "PE.Controllers.Viewport.textFitWidth": "Ajuster à la largeur", + "PE.Views.Animation.str0_5": "0,5 s (très rapide)", + "PE.Views.Animation.str1": "1 s (Rapide)", + "PE.Views.Animation.str2": "2 s (Moyen)", + "PE.Views.Animation.str20": "20 s (Extrêmement lent)", + "PE.Views.Animation.str3": "3 s (Lent)", + "PE.Views.Animation.str5": "5 s (Très lent)", "PE.Views.Animation.strDelay": "Retard", "PE.Views.Animation.strDuration": "Durée", "PE.Views.Animation.strRepeat": "Répéter", @@ -1293,11 +1307,14 @@ "PE.Views.Animation.textMoveLater": "Déplacer après", "PE.Views.Animation.textMultiple": "Multiple ", "PE.Views.Animation.textNone": "Aucun", + "PE.Views.Animation.textNoRepeat": "(aucun)", "PE.Views.Animation.textOnClickOf": "Au clic sur", "PE.Views.Animation.textOnClickSequence": "Séquence de clics", - "PE.Views.Animation.textStartAfterPrevious": "Après le précédent", + "PE.Views.Animation.textStartAfterPrevious": "Après la précédente", "PE.Views.Animation.textStartOnClick": "Au clic", "PE.Views.Animation.textStartWithPrevious": "Avec la précédente", + "PE.Views.Animation.textUntilEndOfSlide": "Jusqu’à la fin de la diapositive", + "PE.Views.Animation.textUntilNextClick": "Jusqu’au clic suivant", "PE.Views.Animation.txtAddEffect": "Ajouter une animation", "PE.Views.Animation.txtAnimationPane": "Volet Animation", "PE.Views.Animation.txtParameters": "Paramètres", @@ -1379,7 +1396,7 @@ "PE.Views.DocumentHolder.textArrangeFront": "Mettre au premier plan", "PE.Views.DocumentHolder.textCopy": "Copier", "PE.Views.DocumentHolder.textCrop": "Rogner", - "PE.Views.DocumentHolder.textCropFill": "Remplissage", + "PE.Views.DocumentHolder.textCropFill": "Remplir", "PE.Views.DocumentHolder.textCropFit": "Ajuster", "PE.Views.DocumentHolder.textCut": "Couper", "PE.Views.DocumentHolder.textDistributeCols": "Distribuer les colonnes", @@ -1522,7 +1539,7 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "Fermer le menu", "PE.Views.FileMenu.btnCreateNewCaption": "Nouvelle présentation", "PE.Views.FileMenu.btnDownloadCaption": "Télécharger comme...", - "PE.Views.FileMenu.btnExitCaption": "Quitter", + "PE.Views.FileMenu.btnExitCaption": "Fermer", "PE.Views.FileMenu.btnFileOpenCaption": "Ouvrir...", "PE.Views.FileMenu.btnHelpCaption": "Aide...", "PE.Views.FileMenu.btnHistoryCaption": "Historique des versions", @@ -2131,7 +2148,7 @@ "PE.Views.Toolbar.textTabInsert": "Insertion", "PE.Views.Toolbar.textTabProtect": "Protection", "PE.Views.Toolbar.textTabTransitions": "Transitions", - "PE.Views.Toolbar.textTabView": "Afficher", + "PE.Views.Toolbar.textTabView": "Affichage", "PE.Views.Toolbar.textTitleError": "Erreur", "PE.Views.Toolbar.textUnderline": "Souligné", "PE.Views.Toolbar.tipAddSlide": "Ajouter diapositive", @@ -2168,6 +2185,15 @@ "PE.Views.Toolbar.tipInsertVideo": "Insérer vidéo", "PE.Views.Toolbar.tipLineSpace": "Interligne", "PE.Views.Toolbar.tipMarkers": "Puces", + "PE.Views.Toolbar.tipMarkersArrow": "Puces fléchées", + "PE.Views.Toolbar.tipMarkersCheckmark": "Puces coches", + "PE.Views.Toolbar.tipMarkersDash": "Tirets", + "PE.Views.Toolbar.tipMarkersFRhombus": "Losanges remplis", + "PE.Views.Toolbar.tipMarkersFRound": "Puces arrondies remplies", + "PE.Views.Toolbar.tipMarkersFSquare": "Puces carrées remplies", + "PE.Views.Toolbar.tipMarkersHRound": "Puces rondes vides", + "PE.Views.Toolbar.tipMarkersStar": "Puces en étoile", + "PE.Views.Toolbar.tipNone": "Aucun", "PE.Views.Toolbar.tipNumbers": "Numérotation", "PE.Views.Toolbar.tipPaste": "Coller", "PE.Views.Toolbar.tipPreview": "Démarrer le diaporama", diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json index fbf7977bc..65926f00a 100644 --- a/apps/presentationeditor/main/locale/gl.json +++ b/apps/presentationeditor/main/locale/gl.json @@ -238,7 +238,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crear unha copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Engadir nova cor personalizada", + "Common.UI.ButtonColored.textNewColor": "Nova cor personalizada", "Common.UI.ComboBorderSize.txtNoBorders": "Sen bordos", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sen bordos", "Common.UI.ComboDataView.emptyComboText": "Sen estilo", @@ -2168,6 +2168,14 @@ "PE.Views.Toolbar.tipInsertVideo": "Inserir vídeo", "PE.Views.Toolbar.tipLineSpace": "Espazo entre liñas", "PE.Views.Toolbar.tipMarkers": "Viñetas", + "PE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha", + "PE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", + "PE.Views.Toolbar.tipMarkersDash": "Viñetas guión", + "PE.Views.Toolbar.tipMarkersFRhombus": "Rombos recheos", + "PE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas recheas", + "PE.Views.Toolbar.tipMarkersFSquare": "Viñetas cadradas recheas", + "PE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas ocas", + "PE.Views.Toolbar.tipMarkersStar": "Viñetas de estrela", "PE.Views.Toolbar.tipNumbers": "Numeración", "PE.Views.Toolbar.tipPaste": "Pegar", "PE.Views.Toolbar.tipPreview": "Iniciar presentación", diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json index 9ac5a3b5d..fb405eb6f 100644 --- a/apps/presentationeditor/main/locale/hu.json +++ b/apps/presentationeditor/main/locale/hu.json @@ -1945,6 +1945,14 @@ "PE.Views.Toolbar.tipInsertVideo": "Videó beszúrása", "PE.Views.Toolbar.tipLineSpace": "Sortávolság", "PE.Views.Toolbar.tipMarkers": "Felsorolás", + "PE.Views.Toolbar.tipMarkersArrow": "Nyíl felsorolásjelek", + "PE.Views.Toolbar.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek", + "PE.Views.Toolbar.tipMarkersDash": "Kötőjel felsorolásjelek", + "PE.Views.Toolbar.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek", + "PE.Views.Toolbar.tipMarkersFRound": "Tömör kör felsorolásjelek", + "PE.Views.Toolbar.tipMarkersFSquare": "Tömör szögletes felsorolásjelek", + "PE.Views.Toolbar.tipMarkersHRound": "Üreges kör felsorolásjelek", + "PE.Views.Toolbar.tipMarkersStar": "Csillag felsorolásjelek", "PE.Views.Toolbar.tipNumbers": "Számozás", "PE.Views.Toolbar.tipPaste": "Beilleszt", "PE.Views.Toolbar.tipPreview": "Diavetítés elindítása", diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json index e3e328972..5916b4f0e 100644 --- a/apps/presentationeditor/main/locale/id.json +++ b/apps/presentationeditor/main/locale/id.json @@ -1,327 +1,959 @@ { - "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", - "Common.Controllers.Chat.textEnterMessage": "Enter your message here", - "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymous", - "Common.Controllers.ExternalDiagramEditor.textClose": "Close", - "Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.", - "Common.Controllers.ExternalDiagramEditor.warningTitle": "Warning", - "Common.define.chartData.textArea": "Grafik Area", + "Common.Controllers.Chat.notcriticalErrorTitle": "Peringatan", + "Common.Controllers.Chat.textEnterMessage": "Tuliskan pesan Anda di sini", + "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonim", + "Common.Controllers.ExternalDiagramEditor.textClose": "Tutup", + "Common.Controllers.ExternalDiagramEditor.warningText": "Obyek dinonaktifkan karena sedang diedit oleh pengguna lain.", + "Common.Controllers.ExternalDiagramEditor.warningTitle": "Peringatan", + "Common.define.chartData.textArea": "Area", + "Common.define.chartData.textAreaStacked": "Area yang ditumpuk", + "Common.define.chartData.textAreaStackedPer": "Area bertumpuk 100%", "Common.define.chartData.textBar": "Palang", + "Common.define.chartData.textBarNormal": "Grafik kolom klaster", + "Common.define.chartData.textBarNormal3d": "Kolom cluster 3-D", + "Common.define.chartData.textBarNormal3dPerspective": "Kolom 3-D", + "Common.define.chartData.textBarStacked": "Diagram kolom bertumpuk", + "Common.define.chartData.textBarStacked3d": "Kolom bertumpuk 3-D", + "Common.define.chartData.textBarStackedPer": "Kolom bertumpuk 100%", + "Common.define.chartData.textBarStackedPer3d": "Kolom bertumpuk 100% 3-D", "Common.define.chartData.textCharts": "Bagan", "Common.define.chartData.textColumn": "Kolom", + "Common.define.chartData.textCombo": "Combo", + "Common.define.chartData.textComboAreaBar": "Area yang ditumpuk - kolom klaster", + "Common.define.chartData.textComboBarLine": "Grafik kolom klaster - garis", + "Common.define.chartData.textComboBarLineSecondary": "Grafik kolom klaster - garis pada sumbu sekunder", + "Common.define.chartData.textComboCustom": "Custom kombinasi", + "Common.define.chartData.textDoughnut": "Doughnut", + "Common.define.chartData.textHBarNormal": "Grafik batang klaster", + "Common.define.chartData.textHBarNormal3d": "Diagram Batang Cluster 3-D", + "Common.define.chartData.textHBarStacked": "Diagram batang bertumpuk", + "Common.define.chartData.textHBarStacked3d": "Diagram batang bertumpuk 3-D", + "Common.define.chartData.textHBarStackedPer": "Diagram batang bertumpuk 100%", + "Common.define.chartData.textHBarStackedPer3d": "Diagram batang bertumpuk 100% 3-D", "Common.define.chartData.textLine": "Garis", + "Common.define.chartData.textLine3d": "Garis 3-D", + "Common.define.chartData.textLineMarker": "Garis dengan tanda", + "Common.define.chartData.textLineStacked": "Diagram garis bertumpuk", + "Common.define.chartData.textLineStackedMarker": "Diagram garis bertumpuk dengan marker", + "Common.define.chartData.textLineStackedPer": "Garis bertumpuk 100%", + "Common.define.chartData.textLineStackedPerMarker": "Garis bertumpuk 100% dengan marker", + "Common.define.chartData.textPie": "Diagram Lingkaran", + "Common.define.chartData.textPie3d": "Pie 3-D", + "Common.define.chartData.textPoint": "XY (Scatter)", + "Common.define.chartData.textScatter": "Sebar", + "Common.define.chartData.textScatterLine": "Diagram sebar dengan garis lurus", + "Common.define.chartData.textScatterLineMarker": "Diagram sebar dengan garis lurus dan marker", + "Common.define.chartData.textScatterSmooth": "Diagram sebar dengan garis mulus", + "Common.define.chartData.textScatterSmoothMarker": "Diagram sebar dengan garis mulus dan marker", "Common.define.chartData.textStock": "Diagram Garis", - "Common.define.effectData.textFillColor": "Fill Color", + "Common.define.chartData.textSurface": "Permukaan", + "Common.define.effectData.textAcross": "Melintasi", + "Common.define.effectData.textAppear": "Muncul", + "Common.define.effectData.textArcDown": "Arc Bawah", + "Common.define.effectData.textArcLeft": "Arc Kiri", + "Common.define.effectData.textArcRight": "Arc Kanan", + "Common.define.effectData.textArcUp": "Arc Atas", + "Common.define.effectData.textBasic": "Dasar", + "Common.define.effectData.textBasicSwivel": "Swivel Dasar", + "Common.define.effectData.textBasicZoom": "Zoom Dasar", + "Common.define.effectData.textBean": "Bean", + "Common.define.effectData.textBlinds": "Blinds", + "Common.define.effectData.textBlink": "Blink", + "Common.define.effectData.textBoldFlash": "Flash Tebal", + "Common.define.effectData.textBoldReveal": "Reveal Tebal", + "Common.define.effectData.textBoomerang": "Bumerang", + "Common.define.effectData.textBounce": "Bounce", + "Common.define.effectData.textBounceLeft": "Bounce Kiri", + "Common.define.effectData.textBounceRight": "Bounce Kanan", + "Common.define.effectData.textBox": "Kotak", + "Common.define.effectData.textBrushColor": "Warna Kuas", + "Common.define.effectData.textCenterRevolve": "Putar Tengah", + "Common.define.effectData.textCheckerboard": "Checkerboard", + "Common.define.effectData.textCircle": "Lingkaran", + "Common.define.effectData.textCollapse": "Collapse", + "Common.define.effectData.textColorPulse": "Skema Warna", + "Common.define.effectData.textComplementaryColor": "Warna Pelengkap", + "Common.define.effectData.textComplementaryColor2": "Warna Pelengkap 2", + "Common.define.effectData.textCompress": "Tekan", + "Common.define.effectData.textContrast": "Kontras", + "Common.define.effectData.textContrastingColor": "Warna Kontras", + "Common.define.effectData.textCredits": "Kredit", + "Common.define.effectData.textCrescentMoon": "Bulan Sabit", + "Common.define.effectData.textCurveDown": "Lengkung Kebawah", + "Common.define.effectData.textCurvedSquare": "Persegi Melengkung", + "Common.define.effectData.textCurvedX": "Lengkung X", + "Common.define.effectData.textCurvyLeft": "Kiri Melengkung", + "Common.define.effectData.textCurvyRight": "Kanan Melengkung", + "Common.define.effectData.textCurvyStar": "Bintang Melengkung", + "Common.define.effectData.textCustomPath": "Atur Jalur", + "Common.define.effectData.textCuverUp": "Lengkung Keatas", + "Common.define.effectData.textDarken": "Gelapkan", + "Common.define.effectData.textDecayingWave": "Gelombang Luruh", + "Common.define.effectData.textDesaturate": "Desaturasi", + "Common.define.effectData.textDiagonalDownRight": "Diagonal Bawah Kanan", + "Common.define.effectData.textDiagonalUpRight": "Diagonal Atas Kanan", + "Common.define.effectData.textDiamond": "Diamond", + "Common.define.effectData.textDisappear": "Menghilang", + "Common.define.effectData.textDissolveIn": "Melebur Kedalam", + "Common.define.effectData.textDissolveOut": "Melebur Keluar", + "Common.define.effectData.textDown": "Bawah", + "Common.define.effectData.textDrop": "Drop", + "Common.define.effectData.textEmphasis": "Efek Penekanan", + "Common.define.effectData.textEntrance": "Efek Masuk", + "Common.define.effectData.textEqualTriangle": "Segitiga Sama Sisi", + "Common.define.effectData.textExciting": "Exciting", + "Common.define.effectData.textExit": "Keluar Efek", + "Common.define.effectData.textExpand": "Perluas", + "Common.define.effectData.textFade": "Pudar", + "Common.define.effectData.textFigureFour": "Figure 8 Four", + "Common.define.effectData.textFillColor": "Isi Warna", + "Common.define.effectData.textFlip": "Flip", + "Common.define.effectData.textFloat": "Mengambang", + "Common.define.effectData.textFloatDown": "Mengambang Kebawah", + "Common.define.effectData.textFloatIn": "Mengambang Kedalam", + "Common.define.effectData.textFloatOut": "Mengambang Keluar", + "Common.define.effectData.textFloatUp": "Mengambang Keatas", + "Common.define.effectData.textFlyIn": "Terbang Kedalam", + "Common.define.effectData.textFlyOut": "Terbang Keluar", "Common.define.effectData.textFontColor": "Warna Huruf", + "Common.define.effectData.textFootball": "Football", + "Common.define.effectData.textFromBottom": "Dari Bawah", + "Common.define.effectData.textFromBottomLeft": "Dari Bawah-Kiri", + "Common.define.effectData.textFromBottomRight": "Dari Bawah-Kanan", + "Common.define.effectData.textFromLeft": "Dari Kiri", + "Common.define.effectData.textFromRight": "Dari Kanan", + "Common.define.effectData.textFromTop": "Dari Atas", + "Common.define.effectData.textFromTopLeft": "Dari Atas-Kiri", + "Common.define.effectData.textFromTopRight": "Dari Atas-Kanan", + "Common.define.effectData.textFunnel": "Funnel", + "Common.define.effectData.textGrowShrink": "Grow/Shrink", + "Common.define.effectData.textGrowTurn": "Grow & Turn", + "Common.define.effectData.textGrowWithColor": "Grow Dengan Warna", + "Common.define.effectData.textHeart": "Hati", + "Common.define.effectData.textHeartbeat": "Heartbeat", + "Common.define.effectData.textHexagon": "Heksagon", "Common.define.effectData.textHorizontal": "Horisontal", + "Common.define.effectData.textHorizontalFigure": "Figure 8 Horizontal", + "Common.define.effectData.textHorizontalIn": "Horizontal Masuk", + "Common.define.effectData.textHorizontalOut": "Horizontal Keluar", "Common.define.effectData.textIn": "Dalam", + "Common.define.effectData.textInFromScreenCenter": "Di Dari Pusat Layar", + "Common.define.effectData.textInSlightly": "Di Sedikit", + "Common.define.effectData.textInvertedSquare": "Persegi Terbalik", + "Common.define.effectData.textInvertedTriangle": "Segitiga Terbalik", "Common.define.effectData.textLeft": "Kiri", + "Common.define.effectData.textLeftDown": "Kiri Bawah", + "Common.define.effectData.textLeftUp": "Kiri Atas", + "Common.define.effectData.textLighten": "Lighten", + "Common.define.effectData.textLineColor": "Warna Garis", + "Common.define.effectData.textLines": "Garis", + "Common.define.effectData.textLinesCurves": "Garis Melengkung", + "Common.define.effectData.textLoopDeLoop": "Loop de Loop", + "Common.define.effectData.textModerate": "Moderat", + "Common.define.effectData.textNeutron": "Neutron", + "Common.define.effectData.textObjectCenter": "Pusat Objek", + "Common.define.effectData.textObjectColor": "Warna Objek", + "Common.define.effectData.textOctagon": "Oktagon", + "Common.define.effectData.textOut": "Luar", + "Common.define.effectData.textOutFromScreenBottom": "Keluar Dari Bawah Screen", + "Common.define.effectData.textOutSlightly": "Keluar Sedikit", + "Common.define.effectData.textParallelogram": "Parallelogram", + "Common.define.effectData.textPeanut": "Peanut", + "Common.define.effectData.textPeekIn": "Intip Masuk", + "Common.define.effectData.textPeekOut": "Intip Keluar", + "Common.define.effectData.textPentagon": "Pentagon", + "Common.define.effectData.textPinwheel": "Pinwheel", "Common.define.effectData.textPlus": "Plus", + "Common.define.effectData.textPointStar": "Bintang Titik", + "Common.define.effectData.textPointStar4": "Bintang Titik-4", + "Common.define.effectData.textPointStar5": "Bintang Titik-5", + "Common.define.effectData.textPointStar6": "Bintang Titik-6", + "Common.define.effectData.textPointStar8": "Bintang Titik-8", + "Common.define.effectData.textPulse": "Pulse", + "Common.define.effectData.textRandomBars": "Bar Acak ", "Common.define.effectData.textRight": "Kanan", + "Common.define.effectData.textRightDown": "Kanan Bawah", + "Common.define.effectData.textRightTriangle": "Segitiga Siku-Siku", + "Common.define.effectData.textRightUp": "Kanan Atas", + "Common.define.effectData.textRiseUp": "Bangkit", + "Common.define.effectData.textSCurve1": "S Curve 1", + "Common.define.effectData.textSCurve2": "S Curve 2", + "Common.define.effectData.textShape": "Bentuk", + "Common.define.effectData.textShapes": "Bentuk", + "Common.define.effectData.textShimmer": "Berkilau", + "Common.define.effectData.textShrinkTurn": "Shrink & Turn", + "Common.define.effectData.textSineWave": "Sine Wave", + "Common.define.effectData.textSinkDown": "Sink Down", + "Common.define.effectData.textSlideCenter": "Pusat Slide", + "Common.define.effectData.textSpecial": "Spesial", + "Common.define.effectData.textSpin": "Spin", + "Common.define.effectData.textSpinner": "Spinner", + "Common.define.effectData.textSpiralIn": "Spiral Masuk", + "Common.define.effectData.textSpiralLeft": "Spiral Kiri", + "Common.define.effectData.textSpiralOut": "Spiral Keluar", + "Common.define.effectData.textSpiralRight": "Spiral Kanan", + "Common.define.effectData.textSplit": "Split", + "Common.define.effectData.textSpoke1": "1 Spoke", + "Common.define.effectData.textSpoke2": "2 Spoke", + "Common.define.effectData.textSpoke3": "3 Spoke", + "Common.define.effectData.textSpoke4": "4 Spoke", + "Common.define.effectData.textSpoke8": "8 Spoke", + "Common.define.effectData.textSpring": "Spring", "Common.define.effectData.textSquare": "Persegi", + "Common.define.effectData.textStairsDown": "Stairs Down", "Common.define.effectData.textStretch": "Rentangkan", + "Common.define.effectData.textStrips": "Strips", + "Common.define.effectData.textSubtle": "Subtle", + "Common.define.effectData.textSwivel": "Swivel", + "Common.define.effectData.textSwoosh": "Swoosh", + "Common.define.effectData.textTeardrop": "Teardrop", + "Common.define.effectData.textTeeter": "Teeter", + "Common.define.effectData.textToBottom": "Ke Bawah", + "Common.define.effectData.textToBottomLeft": "Ke Bawah-Kiri", + "Common.define.effectData.textToBottomRight": "Ke Bawah-Kanan", + "Common.define.effectData.textToLeft": "Ke Kiri", + "Common.define.effectData.textToRight": "Ke Kanan", + "Common.define.effectData.textToTop": "Ke Atas", + "Common.define.effectData.textToTopLeft": "Ke Atas-Kiri", + "Common.define.effectData.textToTopRight": "Ke Atas-Kanan", + "Common.define.effectData.textTransparency": "Transparansi", + "Common.define.effectData.textTrapezoid": "Trapezoid", + "Common.define.effectData.textTurnDown": "Turun Ke Bawah", + "Common.define.effectData.textTurnDownRight": "Turun Kanan Bawah", + "Common.define.effectData.textTurnUp": "Putar ke Atas", + "Common.define.effectData.textTurnUpRight": "Putar ke Atas Kanan", "Common.define.effectData.textUnderline": "Garis bawah", "Common.define.effectData.textUp": "Naik", "Common.define.effectData.textVertical": "Vertikal", - "Common.define.effectData.textZoom": "Perbesar", + "Common.define.effectData.textVerticalFigure": "Figure 8 Vertikal", + "Common.define.effectData.textVerticalIn": "Masuk Vertikal", + "Common.define.effectData.textVerticalOut": "Keluar Horizontal", + "Common.define.effectData.textWave": "Gelombang", + "Common.define.effectData.textWedge": "Wedge", + "Common.define.effectData.textWheel": "Roda", + "Common.define.effectData.textWhip": "Whip", + "Common.define.effectData.textWipe": "Wipe", + "Common.define.effectData.textZigzag": "Zigzag", + "Common.define.effectData.textZoom": "Pembesaran", + "Common.Translation.warnFileLocked": "File sedang diedit di aplikasi lain. Anda bisa melanjutkan edit dan menyimpannya sebagai salinan.", "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", + "Common.Translation.warnFileLockedBtnView": "Buka untuk dilihat", "Common.UI.ButtonColored.textAutoColor": "Otomatis", - "Common.UI.ButtonColored.textNewColor": "Tambahkan Warna Khusus Baru", - "Common.UI.ComboBorderSize.txtNoBorders": "No borders", - "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", - "Common.UI.ComboDataView.emptyComboText": "No styles", - "Common.UI.ExtendedColorDialog.addButtonText": "Add", - "Common.UI.ExtendedColorDialog.textCurrent": "Current", - "Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.
Please enter a value between 000000 and FFFFFF.", - "Common.UI.ExtendedColorDialog.textNew": "New", - "Common.UI.ExtendedColorDialog.textRGBErr": "The entered value is incorrect.
Please enter a numeric value between 0 and 255.", - "Common.UI.HSBColorPicker.textNoColor": "No Color", - "Common.UI.SearchDialog.textHighlight": "Highlight results", - "Common.UI.SearchDialog.textMatchCase": "Case sensitive", - "Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text", - "Common.UI.SearchDialog.textSearchStart": "Enter your text here", - "Common.UI.SearchDialog.textTitle": "Search", - "Common.UI.SearchDialog.textTitle2": "Search", - "Common.UI.SearchDialog.textWholeWords": "Whole words only", - "Common.UI.SearchDialog.txtBtnReplace": "Replace", - "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All", - "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", - "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
Please click to save your changes and reload the updates.", + "Common.UI.ButtonColored.textNewColor": "Tambahkan warna khusus baru", + "Common.UI.ComboBorderSize.txtNoBorders": "Tidak ada pembatas", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Tidak ada pembatas", + "Common.UI.ComboDataView.emptyComboText": "Tidak ada model", + "Common.UI.ExtendedColorDialog.addButtonText": "Tambahkan", + "Common.UI.ExtendedColorDialog.textCurrent": "Saat ini", + "Common.UI.ExtendedColorDialog.textHexErr": "Input yang dimasukkan salah.
Silakan masukkan input antara 000000 dan FFFFFF.", + "Common.UI.ExtendedColorDialog.textNew": "Baru", + "Common.UI.ExtendedColorDialog.textRGBErr": "Input yang Anda masukkan salah.
Silakan masukkan input numerik antara 0 dan 255.", + "Common.UI.HSBColorPicker.textNoColor": "Tidak ada Warna", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan password", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tampilkan password", + "Common.UI.SearchDialog.textHighlight": "Sorot hasil", + "Common.UI.SearchDialog.textMatchCase": "Harus sama persis", + "Common.UI.SearchDialog.textReplaceDef": "Tuliskan teks pengganti", + "Common.UI.SearchDialog.textSearchStart": "Tuliskan teks Anda di sini", + "Common.UI.SearchDialog.textTitle": "Cari dan Ganti", + "Common.UI.SearchDialog.textTitle2": "Cari", + "Common.UI.SearchDialog.textWholeWords": "Seluruh kata saja", + "Common.UI.SearchDialog.txtBtnHideReplace": "Sembunyikan Replace", + "Common.UI.SearchDialog.txtBtnReplace": "Ganti", + "Common.UI.SearchDialog.txtBtnReplaceAll": "Ganti Semua", + "Common.UI.SynchronizeTip.textDontShow": "Jangan tampilkan pesan ini lagi", + "Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah diubah oleh pengguna lain.
Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.", "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standar", "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", - "Common.UI.Window.cancelButtonText": "Cancel", - "Common.UI.Window.closeButtonText": "Close", - "Common.UI.Window.noButtonText": "No", + "Common.UI.Themes.txtThemeClassicLight": "Terang Klasik", + "Common.UI.Themes.txtThemeDark": "Gelap", + "Common.UI.Themes.txtThemeLight": "Cerah", + "Common.UI.Window.cancelButtonText": "Batalkan", + "Common.UI.Window.closeButtonText": "Tutup", + "Common.UI.Window.noButtonText": "Tidak", "Common.UI.Window.okButtonText": "OK", - "Common.UI.Window.textConfirmation": "Confirmation", - "Common.UI.Window.textDontShow": "Don't show this message again", - "Common.UI.Window.textError": "Error", - "Common.UI.Window.textInformation": "Information", - "Common.UI.Window.textWarning": "Warning", - "Common.UI.Window.yesButtonText": "Yes", - "Common.Views.About.txtAddress": "address: ", - "Common.Views.About.txtLicensee": "LICENSEE", - "Common.Views.About.txtLicensor": "LICENSOR", - "Common.Views.About.txtMail": "email: ", + "Common.UI.Window.textConfirmation": "Konfirmasi", + "Common.UI.Window.textDontShow": "Jangan tampilkan pesan ini lagi", + "Common.UI.Window.textError": "Kesalahan", + "Common.UI.Window.textInformation": "Informasi", + "Common.UI.Window.textWarning": "Peringatan", + "Common.UI.Window.yesButtonText": "Ya", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "alamat:", + "Common.Views.About.txtLicensee": "PEMEGANG LISENSI", + "Common.Views.About.txtLicensor": "PEMBERI LISENSI", + "Common.Views.About.txtMail": "email:", "Common.Views.About.txtPoweredBy": "Powered by", - "Common.Views.About.txtTel": "tel.: ", - "Common.Views.About.txtVersion": "Version ", + "Common.Views.About.txtTel": "tel:", + "Common.Views.About.txtVersion": "Versi", "Common.Views.AutoCorrectDialog.textAdd": "Tambahkan", + "Common.Views.AutoCorrectDialog.textApplyText": "Terapkan Sesuai yang Anda Tulis", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoKoreksi Teks", + "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat Sesuai yang Anda Mau", + "Common.Views.AutoCorrectDialog.textBulleted": "Butir list otomatis", "Common.Views.AutoCorrectDialog.textBy": "oleh", "Common.Views.AutoCorrectDialog.textDelete": "Hapus", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Tambahkan titik dengan spasi ganda", + "Common.Views.AutoCorrectDialog.textFLCells": "Besarkan huruf pertama di sel tabel", + "Common.Views.AutoCorrectDialog.textFLSentence": "Besarkan huruf pertama di kalimat", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet dan jalur jaringan dengan hyperlink.", + "Common.Views.AutoCorrectDialog.textHyphens": "Hyphens (--) dengan garis putus-putus (—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "AutoCorrect Matematika", + "Common.Views.AutoCorrectDialog.textNumbered": "Penomoran list otomatis", + "Common.Views.AutoCorrectDialog.textQuotes": "\"Straight quotes\" dengan \"smart quotes\"", + "Common.Views.AutoCorrectDialog.textRecognized": "Fungsi yang Diterima", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Ekspresi ini merupakan ekspresi matematika. Ekspresi ini tidak akan dimiringkan secara otomatis.", "Common.Views.AutoCorrectDialog.textReplace": "Ganti", + "Common.Views.AutoCorrectDialog.textReplaceText": "Ganti Saat Anda Mengetik", + "Common.Views.AutoCorrectDialog.textReplaceType": "Ganti teks saat Anda mengetik", "Common.Views.AutoCorrectDialog.textReset": "Atur ulang", "Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal", "Common.Views.AutoCorrectDialog.textRestore": "Pemulihan", - "Common.Views.Chat.textSend": "Send", - "Common.Views.Comments.textAdd": "Add", - "Common.Views.Comments.textAddComment": "Tambahkan", - "Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document", - "Common.Views.Comments.textAddReply": "Add Reply", + "Common.Views.AutoCorrectDialog.textTitle": "AutoCorrect", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Fungsi yang diterima harus memiliki huruf A sampai Z, huruf besar atau huruf kecil.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Semua ekspresi yang Anda tambahkan akan dihilangkan dan yang sudah terhapus akan dikembalikan. Apakah Anda ingin melanjutkan?", + "Common.Views.AutoCorrectDialog.warnReplace": "Entri autocorrect untuk %1 sudah ada. Apakah Anda ingin menggantinya?", + "Common.Views.AutoCorrectDialog.warnReset": "Semua autocorrect yang Anda tambahkan akan dihilangkan dan yang sudah diganti akan dikembalikan ke nilai awalnya. Apakah Anda ingin melanjutkan?", + "Common.Views.AutoCorrectDialog.warnRestore": "Entri autocorrect untuk %1 akan di reset ke nilai awal. Apakah Anda ingin melanjutkan?", + "Common.Views.Chat.textSend": "Kirim", + "Common.Views.Comments.mniAuthorAsc": "Penulis A sampai Z", + "Common.Views.Comments.mniAuthorDesc": "Penulis Z sampai A", + "Common.Views.Comments.mniDateAsc": "Tertua", + "Common.Views.Comments.mniDateDesc": "Terbaru", + "Common.Views.Comments.mniFilterGroups": "Filter Berdasarkan Grup", + "Common.Views.Comments.mniPositionAsc": "Dari atas", + "Common.Views.Comments.mniPositionDesc": "Dari bawah", + "Common.Views.Comments.textAdd": "Tambahkan", + "Common.Views.Comments.textAddComment": "Tambahkan Komentar", + "Common.Views.Comments.textAddCommentToDoc": "Tambahkan Komentar untuk Dokumen", + "Common.Views.Comments.textAddReply": "Tambahkan Balasan", "Common.Views.Comments.textAll": "Semua", - "Common.Views.Comments.textAnonym": "Guest", - "Common.Views.Comments.textCancel": "Cancel", - "Common.Views.Comments.textClose": "Close", - "Common.Views.Comments.textComments": "Comments", - "Common.Views.Comments.textEdit": "Edit", - "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", + "Common.Views.Comments.textAnonym": "Tamu", + "Common.Views.Comments.textCancel": "Batalkan", + "Common.Views.Comments.textClose": "Tutup", + "Common.Views.Comments.textClosePanel": "Tutup komentar", + "Common.Views.Comments.textComments": "Komentar", + "Common.Views.Comments.textEdit": "OK", + "Common.Views.Comments.textEnterCommentHint": "Tuliskan komentar Anda di sini", "Common.Views.Comments.textHintAddComment": "Tambahkan komentar", - "Common.Views.Comments.textOpenAgain": "Open Again", - "Common.Views.Comments.textReply": "Reply", - "Common.Views.Comments.textResolve": "Resolve", - "Common.Views.Comments.textResolved": "Resolved", - "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", - "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", - "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", - "Common.Views.CopyWarningDialog.textToCopy": "for Copy", - "Common.Views.CopyWarningDialog.textToCut": "for Cut", - "Common.Views.CopyWarningDialog.textToPaste": "for Paste", - "Common.Views.DocumentAccessDialog.textLoading": "Loading...", - "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings", - "Common.Views.ExternalDiagramEditor.textClose": "Close", - "Common.Views.ExternalDiagramEditor.textSave": "Save & Exit", - "Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor", + "Common.Views.Comments.textOpenAgain": "Buka Lagi", + "Common.Views.Comments.textReply": "Balas", + "Common.Views.Comments.textResolve": "Selesaikan", + "Common.Views.Comments.textResolved": "Diselesaikan", + "Common.Views.Comments.textSort": "Sortir komentar", + "Common.Views.Comments.textViewResolved": "Anda tidak memiliki izin membuka kembali komentar", + "Common.Views.CopyWarningDialog.textDontShow": "Jangan tampilkan pesan ini lagi", + "Common.Views.CopyWarningDialog.textMsg": "Langkah salin, potong dan tempel menggunakan tombol editor toolbar dan menu konteks dapat dilakukan hanya dengan tab editor ni saja.

Untuk menyalin atau menempel ke atau dari aplikasi di luar tab editor, gunakan kombinasi tombol keyboard berikut ini:", + "Common.Views.CopyWarningDialog.textTitle": "Salin, Potong dan Tempel", + "Common.Views.CopyWarningDialog.textToCopy": "untuk Salin", + "Common.Views.CopyWarningDialog.textToCut": "untuk Potong", + "Common.Views.CopyWarningDialog.textToPaste": "untuk Tempel", + "Common.Views.DocumentAccessDialog.textLoading": "Memuat...", + "Common.Views.DocumentAccessDialog.textTitle": "Pengaturan Berbagi", + "Common.Views.ExternalDiagramEditor.textClose": "Tutup", + "Common.Views.ExternalDiagramEditor.textSave": "Simpan & Keluar", + "Common.Views.ExternalDiagramEditor.textTitle": "Editor Bagan", + "Common.Views.Header.labelCoUsersDescr": "User yang sedang edit file:", + "Common.Views.Header.textAddFavorite": "Tandai sebagai favorit", "Common.Views.Header.textAdvSettings": "Pengaturan Lanjut", - "Common.Views.Header.textBack": "Go to Documents", + "Common.Views.Header.textBack": "Buka Dokumen", + "Common.Views.Header.textCompactView": "Sembunyikan Toolbar", "Common.Views.Header.textHideLines": "Sembunyikan Mistar", + "Common.Views.Header.textHideNotes": "Sembunyikan Catatan", "Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status", - "Common.Views.Header.textZoom": "Perbesar", + "Common.Views.Header.textRemoveFavorite": "Hilangkan dari Favorit", + "Common.Views.Header.textSaveBegin": "Menyimpan...", + "Common.Views.Header.textSaveChanged": "Dimodifikasi", + "Common.Views.Header.textSaveEnd": "Semua perubahan tersimpan", + "Common.Views.Header.textSaveExpander": "Semua perubahan tersimpan", + "Common.Views.Header.textZoom": "Pembesaran", + "Common.Views.Header.tipAccessRights": "Atur perizinan akses dokumen", "Common.Views.Header.tipDownload": "Unduh File", + "Common.Views.Header.tipGoEdit": "Edit file saat ini", + "Common.Views.Header.tipPrint": "Print file", "Common.Views.Header.tipRedo": "Ulangi", "Common.Views.Header.tipSave": "Simpan", "Common.Views.Header.tipUndo": "Batalkan", + "Common.Views.Header.tipUndock": "Buka dock ke jendela terpisah", "Common.Views.Header.tipViewSettings": "Lihat Pengaturan", + "Common.Views.Header.tipViewUsers": "Tampilkan user dan atur hak akses dokumen", "Common.Views.Header.txtAccessRights": "Ubah hak akses", "Common.Views.Header.txtRename": "Ganti nama", "Common.Views.History.textCloseHistory": "Tutup riwayat", + "Common.Views.History.textHide": "Collapse", + "Common.Views.History.textHideAll": "Sembunyikan detail perubahan", "Common.Views.History.textRestore": "Pemulihan", + "Common.Views.History.textShow": "Perluas", + "Common.Views.History.textShowAll": "Tampilkan detail perubahan", "Common.Views.History.textVer": "ver.", - "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", - "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", - "Common.Views.InsertTableDialog.textInvalidRowsCols": "You need to specify valid rows and columns number.", - "Common.Views.InsertTableDialog.txtColumns": "Number of Columns", - "Common.Views.InsertTableDialog.txtMaxText": "The maximum value for this field is {0}.", - "Common.Views.InsertTableDialog.txtMinText": "The minimum value for this field is {0}.", - "Common.Views.InsertTableDialog.txtRows": "Number of Rows", - "Common.Views.InsertTableDialog.txtTitle": "Table Size", + "Common.Views.ImageFromUrlDialog.textUrl": "Tempel URL gambar:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "Anda harus menentukan baris dan jumlah kolom yang benar.", + "Common.Views.InsertTableDialog.txtColumns": "Jumlah Kolom", + "Common.Views.InsertTableDialog.txtMaxText": "Input maksimal untuk kolom ini adalah {0}.", + "Common.Views.InsertTableDialog.txtMinText": "Input minimal untuk kolom ini adalah {0}.", + "Common.Views.InsertTableDialog.txtRows": "Jumlah Baris", + "Common.Views.InsertTableDialog.txtTitle": "Ukuran Tabel", "Common.Views.InsertTableDialog.txtTitleSplit": "Pisahkan Sel", "Common.Views.LanguageDialog.labelSelect": "Pilih bahasa dokumen", + "Common.Views.ListSettingsDialog.textBulleted": "Poin", + "Common.Views.ListSettingsDialog.textNumbering": "Bernomor", + "Common.Views.ListSettingsDialog.tipChange": "Ubah butir", + "Common.Views.ListSettingsDialog.txtBullet": "Butir", "Common.Views.ListSettingsDialog.txtColor": "Warna", + "Common.Views.ListSettingsDialog.txtNewBullet": "Butir baru", "Common.Views.ListSettingsDialog.txtNone": "Tidak ada", + "Common.Views.ListSettingsDialog.txtOfText": "% dari teks", "Common.Views.ListSettingsDialog.txtSize": "Ukuran", + "Common.Views.ListSettingsDialog.txtStart": "Dimulai pada", + "Common.Views.ListSettingsDialog.txtSymbol": "Simbol", + "Common.Views.ListSettingsDialog.txtTitle": "List Pengaturan", "Common.Views.ListSettingsDialog.txtType": "Tipe", + "Common.Views.OpenDialog.closeButtonText": "Tutup File", "Common.Views.OpenDialog.txtEncoding": "Enkoding", + "Common.Views.OpenDialog.txtIncorrectPwd": "Password salah.", "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", "Common.Views.OpenDialog.txtPassword": "Kata Sandi", + "Common.Views.OpenDialog.txtProtected": "Jika Anda memasukkan password dan membuka file, password file saat ini akan di reset.", + "Common.Views.OpenDialog.txtTitle": "Pilih %1 opsi", + "Common.Views.OpenDialog.txtTitleProtected": "File yang Diproteksi", + "Common.Views.PasswordDialog.txtDescription": "Buat password untuk melindungi dokumen ini", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Password konfirmasi tidak sama", "Common.Views.PasswordDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtRepeat": "Ulangi password", "Common.Views.PasswordDialog.txtTitle": "Setel kata sandi", - "Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.PasswordDialog.txtWarning": "Peringatan: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.PluginDlg.textLoading": "Memuat", + "Common.Views.Plugins.groupCaption": "Plugins", + "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textLoading": "Memuat", "Common.Views.Plugins.textStart": "Mulai", + "Common.Views.Plugins.textStop": "Stop", + "Common.Views.Protection.hintAddPwd": "Enkripsi dengan password", + "Common.Views.Protection.hintPwd": "Ganti atau hapus password", + "Common.Views.Protection.hintSignature": "Tambah tanda tangan digital atau garis tanda tangan", + "Common.Views.Protection.txtAddPwd": "Tambah password", "Common.Views.Protection.txtChangePwd": "Ubah kata sandi", + "Common.Views.Protection.txtDeletePwd": "Nama file", + "Common.Views.Protection.txtEncrypt": "Enkripsi", + "Common.Views.Protection.txtInvisibleSignature": "Tambah tanda tangan digital", + "Common.Views.Protection.txtSignature": "Tanda Tangan", + "Common.Views.Protection.txtSignatureLine": "Tambah garis tanda tangan", "Common.Views.RenameDialog.textName": "Nama file", + "Common.Views.RenameDialog.txtInvalidName": "Nama file tidak boleh berisi karakter seperti:", + "Common.Views.ReviewChanges.hintNext": "Ke perubahan berikutnya", + "Common.Views.ReviewChanges.hintPrev": "Ke perubahan sebelumnya", + "Common.Views.ReviewChanges.strFast": "Cepat", + "Common.Views.ReviewChanges.strFastDesc": "Co-editing real-time. Semua perubahan disimpan otomatis.", + "Common.Views.ReviewChanges.strStrict": "Strict", + "Common.Views.ReviewChanges.strStrictDesc": "Gunakan tombol 'Simpan' untuk sinkronisasi perubahan yang dibuat Anda dan orang lain.", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Terima perubahan saat ini", + "Common.Views.ReviewChanges.tipCoAuthMode": "Atur mode co-editing", + "Common.Views.ReviewChanges.tipCommentRem": "Hilangkan komentar", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Hilangkan komentar saat ini", + "Common.Views.ReviewChanges.tipCommentResolve": "Selesaikan komentar", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Selesaikan komentar saat ini", "Common.Views.ReviewChanges.tipHistory": "Tampilkan riwayat versi", + "Common.Views.ReviewChanges.tipRejectCurrent": "Tolak perubahan saat ini", + "Common.Views.ReviewChanges.tipReview": "Lacak perubahan", + "Common.Views.ReviewChanges.tipReviewView": "Pilih mode yang perubahannya ingin Anda tampilkan", "Common.Views.ReviewChanges.tipSetDocLang": "Atur Bahasa Dokumen", "Common.Views.ReviewChanges.tipSetSpelling": "Periksa Ejaan", + "Common.Views.ReviewChanges.tipSharing": "Atur perizinan akses dokumen", "Common.Views.ReviewChanges.txtAccept": "Terima", "Common.Views.ReviewChanges.txtAcceptAll": "Terima semua perubahan", + "Common.Views.ReviewChanges.txtAcceptChanges": "Terima perubahan", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Terima Perubahan Saat Ini", "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Tutup", + "Common.Views.ReviewChanges.txtCoAuthMode": "Mode Edit Bersama", + "Common.Views.ReviewChanges.txtCommentRemAll": "Hilangkan Semua Komentar", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Hilangkan Komentar Saat Ini", + "Common.Views.ReviewChanges.txtCommentRemMy": "Hilangkan Komentar Saya", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Hilangkan Komentar Saya Saat Ini", "Common.Views.ReviewChanges.txtCommentRemove": "Hapus", "Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Selesaikan Semua Komentar", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Selesaikan Komentar Saat Ini", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Selesaikan Komentar Saya", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Selesaikan Komentar Saya Saat Ini", "Common.Views.ReviewChanges.txtDocLang": "Bahasa", - "Common.Views.ReviewChanges.txtHistory": "Riwayat versi", - "Common.Views.ReviewChanges.txtNext": "Berikutnya", + "Common.Views.ReviewChanges.txtFinal": "Semua perubahan diterima (Preview)", + "Common.Views.ReviewChanges.txtFinalCap": "Final", + "Common.Views.ReviewChanges.txtHistory": "Riwayat Versi", + "Common.Views.ReviewChanges.txtMarkup": "Semua perubahan (Editing)", + "Common.Views.ReviewChanges.txtMarkupCap": "Markup", + "Common.Views.ReviewChanges.txtNext": "Selanjutnya", + "Common.Views.ReviewChanges.txtOriginal": "Semua perubahan ditolak (Preview)", + "Common.Views.ReviewChanges.txtOriginalCap": "Original", "Common.Views.ReviewChanges.txtPrev": "Sebelumnya", "Common.Views.ReviewChanges.txtReject": "Tolak", + "Common.Views.ReviewChanges.txtRejectAll": "Tolak Semua Perubahan", + "Common.Views.ReviewChanges.txtRejectChanges": "Tolak Perubahan", + "Common.Views.ReviewChanges.txtRejectCurrent": "Tolak Perubahan Saat Ini", + "Common.Views.ReviewChanges.txtSharing": "Bagikan", "Common.Views.ReviewChanges.txtSpelling": "Periksa Ejaan", + "Common.Views.ReviewChanges.txtTurnon": "Lacak Perubahan", + "Common.Views.ReviewChanges.txtView": "Mode Tampilan", "Common.Views.ReviewPopover.textAdd": "Tambahkan", "Common.Views.ReviewPopover.textAddReply": "Tambahkan Balasan", "Common.Views.ReviewPopover.textCancel": "Batalkan", "Common.Views.ReviewPopover.textClose": "Tutup", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textMention": "+mention akan memberikan akses ke dokumen dan mengirimkan email", + "Common.Views.ReviewPopover.textMentionNotify": "+mention akan mengingatkan user lewat email", "Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi", "Common.Views.ReviewPopover.textReply": "Balas", "Common.Views.ReviewPopover.textResolve": "Selesaikan", + "Common.Views.ReviewPopover.textViewResolved": "Anda tidak memiliki izin membuka kembali komentar", "Common.Views.ReviewPopover.txtDeleteTip": "Hapus", "Common.Views.ReviewPopover.txtEditTip": "Sunting", + "Common.Views.SaveAsDlg.textLoading": "Memuat", + "Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan", + "Common.Views.SelectFileDlg.textLoading": "Memuat", "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", "Common.Views.SignDialog.textBold": "Tebal", + "Common.Views.SignDialog.textCertificate": "Sertifikat", "Common.Views.SignDialog.textChange": "Ganti", + "Common.Views.SignDialog.textInputName": "Masukkan nama penandatangan", "Common.Views.SignDialog.textItalic": "Miring", + "Common.Views.SignDialog.textNameError": "Nama penandatangan tidak boleh kosong.", + "Common.Views.SignDialog.textPurpose": "Tujuan menandatangani dokumen ini", "Common.Views.SignDialog.textSelect": "Pilih", + "Common.Views.SignDialog.textSelectImage": "Pilih Gambar", + "Common.Views.SignDialog.textSignature": "Tandatangan terlihat seperti", + "Common.Views.SignDialog.textTitle": "Tanda Tangan Dokumen", + "Common.Views.SignDialog.textUseImage": "atau klik 'Pilih Gambar' untuk menjadikan gambar sebagai tandatangan", + "Common.Views.SignDialog.textValid": "Valid dari %1 sampai %2", + "Common.Views.SignDialog.tipFontName": "Nama Font", "Common.Views.SignDialog.tipFontSize": "Ukuran Huruf", + "Common.Views.SignSettingsDialog.textAllowComment": "Izinkan penandatangan untuk menambahkan komentar di dialog tanda tangan", + "Common.Views.SignSettingsDialog.textInfo": "Info Penandatangan", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Nama", - "Common.Views.SignSettingsDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.SignSettingsDialog.textInfoTitle": "Gelar Penandatangan", + "Common.Views.SignSettingsDialog.textInstructions": "Instruksi untuk Penandatangan", + "Common.Views.SignSettingsDialog.textShowDate": "Tampilkan tanggal di garis tandatangan", + "Common.Views.SignSettingsDialog.textTitle": "Setup Tanda Tangan", + "Common.Views.SignSettingsDialog.txtEmpty": "Area ini dibutuhkan", "Common.Views.SymbolTableDialog.textCharacter": "Karakter", + "Common.Views.SymbolTableDialog.textCode": "Nilai Unicode HEX", + "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign", + "Common.Views.SymbolTableDialog.textDCQuote": "Kutip Dua Penutup", + "Common.Views.SymbolTableDialog.textDOQuote": "Kutip Dua Pembuka", + "Common.Views.SymbolTableDialog.textEllipsis": "Ellipsis Horizontal", + "Common.Views.SymbolTableDialog.textEmDash": "Em Dash", + "Common.Views.SymbolTableDialog.textEmSpace": "Em Space", + "Common.Views.SymbolTableDialog.textEnDash": "En Dash", + "Common.Views.SymbolTableDialog.textEnSpace": "En Space", "Common.Views.SymbolTableDialog.textFont": "Huruf", + "Common.Views.SymbolTableDialog.textNBHyphen": "Hyphen Non-breaking", + "Common.Views.SymbolTableDialog.textNBSpace": "Spasi Tanpa-break", + "Common.Views.SymbolTableDialog.textPilcrow": "Simbol Pilcrow", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", + "Common.Views.SymbolTableDialog.textRange": "Rentang", + "Common.Views.SymbolTableDialog.textRecent": "Simbol yang baru digunakan", + "Common.Views.SymbolTableDialog.textRegistered": "Tandatangan Teregistrasi", + "Common.Views.SymbolTableDialog.textSCQuote": "Kutip Satu Penutup", + "Common.Views.SymbolTableDialog.textSection": "Sesi Tandatangan", + "Common.Views.SymbolTableDialog.textShortcut": "Kunci Shortcut", + "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen", + "Common.Views.SymbolTableDialog.textSOQuote": "Kutip Satu Pembuka", "Common.Views.SymbolTableDialog.textSpecial": "Karakter khusus", "Common.Views.SymbolTableDialog.textSymbols": "Simbol", - "PE.Controllers.LeftMenu.newDocumentTitle": "Unnamed presentation", + "Common.Views.SymbolTableDialog.textTitle": "Simbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Simbol Trademark", + "Common.Views.UserNameDialog.textDontShow": "Jangan tanya saya lagi", + "Common.Views.UserNameDialog.textLabel": "Label:", + "Common.Views.UserNameDialog.textLabelError": "Label tidak boleh kosong.", + "PE.Controllers.LeftMenu.leavePageText": "Semua perubahan yang tidak tersimpan di dokumen ini akan hilang.
Klik \"Batal\" lalu \"Simpan\" untuk menyimpan. Klik \"OK\" untuk membuang semua perubahan yang tidak tersimpan.", + "PE.Controllers.LeftMenu.newDocumentTitle": "Presentasi tanpa nama", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Peringatan", - "PE.Controllers.LeftMenu.requestEditRightsText": "Requesting editing rights...", - "PE.Controllers.LeftMenu.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.", + "PE.Controllers.LeftMenu.requestEditRightsText": "Meminta hak editing...", + "PE.Controllers.LeftMenu.textLoadHistory": "Loading versi riwayat...", + "PE.Controllers.LeftMenu.textNoTextFound": "Data yang Anda cari tidak ditemukan. Silakan atur opsi pencarian Anda.", "PE.Controllers.LeftMenu.textReplaceSkipped": "Penggantian telah dilakukan. Ada {0} yang dilewatkan.", - "PE.Controllers.LeftMenu.textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti.", - "PE.Controllers.Main.applyChangesTextText": "Loading data...", - "PE.Controllers.Main.applyChangesTitleText": "Loading Data", - "PE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", - "PE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.", - "PE.Controllers.Main.criticalErrorTitle": "Error", - "PE.Controllers.Main.downloadErrorText": "Download failed.", - "PE.Controllers.Main.downloadTextText": "Downloading presentation...", - "PE.Controllers.Main.downloadTitleText": "Downloading Presentation", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.", - "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.", - "PE.Controllers.Main.errorDatabaseConnection": "External error.
Database connection error. Please contact support in case the error persists.", - "PE.Controllers.Main.errorDataRange": "Incorrect data range.", - "PE.Controllers.Main.errorDefaultMessage": "Error code: %1", - "PE.Controllers.Main.errorFilePassProtect": "The document is password protected and could not be opened.", - "PE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", - "PE.Controllers.Main.errorKeyExpire": "Key descriptor expired", - "PE.Controllers.Main.errorProcessSaveResult": "Saving failed.", - "PE.Controllers.Main.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
opening price, max price, min price, closing price.", - "PE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", - "PE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "PE.Controllers.Main.leavePageText": "You have unsaved changes in this presentation. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.", - "PE.Controllers.Main.loadFontsTextText": "Loading data...", - "PE.Controllers.Main.loadFontsTitleText": "Loading Data", - "PE.Controllers.Main.loadFontTextText": "Loading data...", - "PE.Controllers.Main.loadFontTitleText": "Loading Data", - "PE.Controllers.Main.loadImagesTextText": "Loading images...", - "PE.Controllers.Main.loadImagesTitleText": "Loading Images", - "PE.Controllers.Main.loadImageTextText": "Loading image...", - "PE.Controllers.Main.loadImageTitleText": "Loading Image", - "PE.Controllers.Main.loadingDocumentTextText": "Loading presentation...", - "PE.Controllers.Main.loadingDocumentTitleText": "Loading presentation", - "PE.Controllers.Main.loadThemeTextText": "Loading theme...", - "PE.Controllers.Main.loadThemeTitleText": "Loading Theme", - "PE.Controllers.Main.notcriticalErrorTitle": "Warning", - "PE.Controllers.Main.openTextText": "Opening presentation...", - "PE.Controllers.Main.openTitleText": "Opening Presentation", - "PE.Controllers.Main.printTextText": "Printing presentation...", - "PE.Controllers.Main.printTitleText": "Printing Presentation", - "PE.Controllers.Main.reloadButtonText": "Reload Page", - "PE.Controllers.Main.requestEditFailedMessageText": "Someone is editing this presentation right now. Please try again later.", - "PE.Controllers.Main.requestEditFailedTitleText": "Access denied", - "PE.Controllers.Main.splitDividerErrorText": "The number of rows must be a divisor of %1.", - "PE.Controllers.Main.splitMaxColsErrorText": "The number of columns must be less than %1.", - "PE.Controllers.Main.splitMaxRowsErrorText": "The number of rows must be less than %1.", - "PE.Controllers.Main.textAnonymous": "Anonymous", + "PE.Controllers.LeftMenu.textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti {0}", + "PE.Controllers.LeftMenu.txtUntitled": "Tanpa Judul", + "PE.Controllers.Main.applyChangesTextText": "Memuat data...", + "PE.Controllers.Main.applyChangesTitleText": "Memuat Data", + "PE.Controllers.Main.convertationTimeoutText": "Waktu konversi habis.", + "PE.Controllers.Main.criticalErrorExtText": "Tekan \"OK\" untuk kembali ke daftar dokumen.", + "PE.Controllers.Main.criticalErrorTitle": "Kesalahan", + "PE.Controllers.Main.downloadErrorText": "Unduhan gagal.", + "PE.Controllers.Main.downloadTextText": "Mengunduh penyajian...", + "PE.Controllers.Main.downloadTitleText": "Mengunduh penyajian", + "PE.Controllers.Main.errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
Silakan hubungi admin Server Dokumen Anda.", + "PE.Controllers.Main.errorBadImageUrl": "URL Gambar salah", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "Koneksi server terputus. Saat ini dokumen tidak dapat diedit.", + "PE.Controllers.Main.errorComboSeries": "Untuk membuat grafik kombinasi, pilih setidaknya dua seri data.", + "PE.Controllers.Main.errorConnectToServer": "Dokumen tidak bisa disimpan. Silakan periksa pengaturan koneksi atau hubungi admin Anda.
Ketika klik tombol 'OK', Anda akan diminta untuk download dokumen.", + "PE.Controllers.Main.errorDatabaseConnection": "Eror eksternal.
Koneksi database bermasalah. Silakan hubungi layanan bantuan jika tetap terjadi error.", + "PE.Controllers.Main.errorDataEncrypted": "Perubahan enkripsi sudah diterima dan tidak bisa diuraikan.", + "PE.Controllers.Main.errorDataRange": "Rentang data salah.", + "PE.Controllers.Main.errorDefaultMessage": "Kode kesalahan: %1", + "PE.Controllers.Main.errorEditingDownloadas": "Ada kesalahan saat bekerja dengan dokumen.
Gunakan opsi 'Download sebagai...' untuk menyimpan file salinan backup ke komputer Anda.", + "PE.Controllers.Main.errorEditingSaveas": "Ada kesalahan saat bekerja dengan dokumen.
Gunakan opsi 'Simpan sebagai...' untuk menyimpan file salinan backup ke komputer Anda.", + "PE.Controllers.Main.errorEmailClient": "Email klein tidak bisa ditemukan.", + "PE.Controllers.Main.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.", + "PE.Controllers.Main.errorFileSizeExceed": "Ukuran file melewati batas server Anda.
Silakan hubungi admin Server Dokumen Anda untuk detail.", + "PE.Controllers.Main.errorForceSave": "Ada kesalahan saat menyimpan file. Silakan gunakan opsi 'Download sebagai' untuk menyimpan file ke komputer Anda dan coba lagi.", + "PE.Controllers.Main.errorKeyEncrypt": "Deskriptor kunci tidak dikenal", + "PE.Controllers.Main.errorKeyExpire": "Deskriptor kunci tidak berfungsi", + "PE.Controllers.Main.errorLoadingFont": "Font tidak bisa dimuat.
Silakan kontak admin Server Dokumen Anda.", + "PE.Controllers.Main.errorProcessSaveResult": "Gagal menyimpan.", + "PE.Controllers.Main.errorServerVersion": "Versi editor sudah di update. Halaman akan dimuat ulang untuk menerapkan perubahan.", + "PE.Controllers.Main.errorSessionAbsolute": "Waktu edit dokumen sudah selesai. Silakan muat ulang halaman.", + "PE.Controllers.Main.errorSessionIdle": "Dokumen sudah lama tidak diedit. Silakan muat ulang halaman.", + "PE.Controllers.Main.errorSessionToken": "Koneksi ke server terganggu. Silakan muat ulang halaman.", + "PE.Controllers.Main.errorSetPassword": "Password tidak bisa diatur.", + "PE.Controllers.Main.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "PE.Controllers.Main.errorToken": "Token keamanan dokumen tidak dibentuk dengan tepat.
Silakan hubungi admin Server Dokumen Anda.", + "PE.Controllers.Main.errorTokenExpire": "Token keamanan dokumen sudah kadaluwarsa.
Silakan hubungi admin Server Dokumen Anda.", + "PE.Controllers.Main.errorUpdateVersion": "Versi file telah diubah. Halaman tidak akan dimuat ulang.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu download file atau copy konten untuk memastikan tidak ada yang hilang, dan muat ulang halaman ini.", + "PE.Controllers.Main.errorUserDrop": "File tidak bisa diakses sekarang.", + "PE.Controllers.Main.errorUsersExceed": "Jumlah pengguna telah melebihi jumlah yang diijinkan dalam paket harga.", + "PE.Controllers.Main.errorViewerDisconnect": "Koneksi terputus. Anda tetap bisa melihat dokumen,
tapi tidak bisa download atau print sampai koneksi terhubung dan halaman dimuat ulang.", + "PE.Controllers.Main.leavePageText": "Anda memiliki perubahan yang belum tersimpan di presentasi ini. Klik \"Tetap di Halaman Ini” kemudian \"Simpan\" untuk menyimpan perubahan tersebut. Klik \"Tinggalkan Halaman Ini\" untuk membatalkan semua perubahan yang belum disimpan.", + "PE.Controllers.Main.leavePageTextOnClose": "Semua perubahan yang belum disimpan dalam presentasi ini akan hilang.
Klik \"Batal\" lalu \"Simpan\" untuk menyimpan. Klik \"OK\" untuk membuang semua perubahan yang tidak tersimpan.", + "PE.Controllers.Main.loadFontsTextText": "Memuat data...", + "PE.Controllers.Main.loadFontsTitleText": "Memuat Data", + "PE.Controllers.Main.loadFontTextText": "Memuat data...", + "PE.Controllers.Main.loadFontTitleText": "Memuat Data", + "PE.Controllers.Main.loadImagesTextText": "Memuat gambar...", + "PE.Controllers.Main.loadImagesTitleText": "Memuat Gambar", + "PE.Controllers.Main.loadImageTextText": "Memuat gambar...", + "PE.Controllers.Main.loadImageTitleText": "Memuat Gambar", + "PE.Controllers.Main.loadingDocumentTextText": "Memuat penyajian...", + "PE.Controllers.Main.loadingDocumentTitleText": "Memuat penyajian", + "PE.Controllers.Main.loadThemeTextText": "Loading Tema...", + "PE.Controllers.Main.loadThemeTitleText": "Loading Tema", + "PE.Controllers.Main.notcriticalErrorTitle": "Peringatan", + "PE.Controllers.Main.openErrorText": "Eror ketika membuka file.", + "PE.Controllers.Main.openTextText": "Membuka presentasi...", + "PE.Controllers.Main.openTitleText": "Membuka presentasi", + "PE.Controllers.Main.printTextText": "Mencetak presentasi...", + "PE.Controllers.Main.printTitleText": "Mencetak presentasi", + "PE.Controllers.Main.reloadButtonText": "Muat Ulang Halaman", + "PE.Controllers.Main.requestEditFailedMessageText": "Seseorang sedang mengedit presentasi sekarang Silakan coba beberapa saat lagi.", + "PE.Controllers.Main.requestEditFailedTitleText": "Akses ditolak", + "PE.Controllers.Main.saveErrorText": "Eror ketika menyimpan file.", + "PE.Controllers.Main.saveErrorTextDesktop": "File tidak bisa disimpan atau dibuat.
Alasan yang mungkin adalah:
1. File hanya bisa dibaca.
2. File sedang diedit user lain.
3. Memori penuh atau terkorupsi.", + "PE.Controllers.Main.saveTextText": "Menyimpan presentasi...", + "PE.Controllers.Main.saveTitleText": "Menyimpan presentasi", + "PE.Controllers.Main.scriptLoadError": "Koneksi terlalu lambat dan beberapa komponen tidak bisa dibuka Silakan muat ulang halaman.", + "PE.Controllers.Main.splitDividerErrorText": "Jumlah baris harus merupakan pembagi %1.", + "PE.Controllers.Main.splitMaxColsErrorText": "Jumlah kolom harus kurang dari %1.", + "PE.Controllers.Main.splitMaxRowsErrorText": "Jumlah haris harus kurang dari %1.", + "PE.Controllers.Main.textAnonymous": "Anonim", + "PE.Controllers.Main.textApplyAll": "Terapkan untuk semua persamaan", + "PE.Controllers.Main.textBuyNow": "Kunjungi website", + "PE.Controllers.Main.textChangesSaved": "Semua perubahan tersimpan", "PE.Controllers.Main.textClose": "Tutup", - "PE.Controllers.Main.textCloseTip": "Click to close the tip", + "PE.Controllers.Main.textCloseTip": "Klik untuk menutup tips", + "PE.Controllers.Main.textContactUs": "Hubungi sales", + "PE.Controllers.Main.textConvertEquation": "Persamaan ini dibuat dengan editor persamaan versi lama yang sudah tidak didukung. Untuk edit, konversikan persamaan ke format Office Math ML.
Konversi sekarang?", + "PE.Controllers.Main.textCustomLoader": "Perlu diketahui bahwa berdasarkan syarat dari lisensi, Anda tidak bisa untuk mengganti loader.
Silakan hubungi Departemen Penjualan kami untuk mendapatkan harga.", + "PE.Controllers.Main.textDisconnect": "Koneksi terputus", "PE.Controllers.Main.textGuest": "Tamu", + "PE.Controllers.Main.textHasMacros": "File berisi macros otomatis.
Apakah Anda ingin menjalankan macros?", "PE.Controllers.Main.textLearnMore": "Pelajari selengkapnya", - "PE.Controllers.Main.textLoadingDocument": "Loading presentation", - "PE.Controllers.Main.textShape": "Shape", - "PE.Controllers.Main.textStrict": "Strict mode", - "PE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", - "PE.Controllers.Main.txtArt": "Your text here", - "PE.Controllers.Main.txtBasicShapes": "Basic Shapes", - "PE.Controllers.Main.txtButtons": "Buttons", - "PE.Controllers.Main.txtCallouts": "Callouts", - "PE.Controllers.Main.txtCharts": "Charts", - "PE.Controllers.Main.txtDiagramTitle": "Chart Title", - "PE.Controllers.Main.txtEditingMode": "Set editing mode...", - "PE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "PE.Controllers.Main.textLoadingDocument": "Memuat penyajian", + "PE.Controllers.Main.textLongName": "Masukkan nama maksimum 128 karakter.", + "PE.Controllers.Main.textNoLicenseTitle": "Batas lisensi sudah tercapai", + "PE.Controllers.Main.textPaidFeature": "Fitur berbayar", + "PE.Controllers.Main.textReconnect": "Koneksi terhubung kembali", + "PE.Controllers.Main.textRemember": "Ingat pilihan saya untuk semua file", + "PE.Controllers.Main.textRenameError": "Nama user tidak boleh kosong.", + "PE.Controllers.Main.textRenameLabel": "Masukkan nama untuk digunakan di kolaborasi", + "PE.Controllers.Main.textShape": "Bentuk", + "PE.Controllers.Main.textStrict": "Mode strict", + "PE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.
Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.", + "PE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.", + "PE.Controllers.Main.titleLicenseExp": "Lisensi kadaluwarsa", + "PE.Controllers.Main.titleServerVersion": "Editor mengupdate", + "PE.Controllers.Main.txtAddFirstSlide": "Klik untuk tambah slide pertama", + "PE.Controllers.Main.txtAddNotes": "Klik untuk tambah catatan", + "PE.Controllers.Main.txtArt": "Teks Anda di sini", + "PE.Controllers.Main.txtBasicShapes": "Bentuk Dasar", + "PE.Controllers.Main.txtButtons": "Tombol", + "PE.Controllers.Main.txtCallouts": "Balon Kata", + "PE.Controllers.Main.txtCharts": "Bagan", + "PE.Controllers.Main.txtClipArt": "Clip Art", + "PE.Controllers.Main.txtDateTime": "Tanggal dan Jam", + "PE.Controllers.Main.txtDiagram": "SmartArt", + "PE.Controllers.Main.txtDiagramTitle": "Judul Grafik", + "PE.Controllers.Main.txtEditingMode": "Mengatur mode editing...", + "PE.Controllers.Main.txtErrorLoadHistory": "Memuat riwayat gagal", + "PE.Controllers.Main.txtFiguredArrows": "Tanda Panah Berpola", + "PE.Controllers.Main.txtFooter": "Footer", + "PE.Controllers.Main.txtHeader": "Header", "PE.Controllers.Main.txtImage": "Gambar", - "PE.Controllers.Main.txtLines": "Lines", + "PE.Controllers.Main.txtLines": "Garis", "PE.Controllers.Main.txtLoading": "Memuat...", - "PE.Controllers.Main.txtMath": "Math", + "PE.Controllers.Main.txtMath": "Matematika", "PE.Controllers.Main.txtMedia": "Media", - "PE.Controllers.Main.txtNeedSynchronize": "You have updates", + "PE.Controllers.Main.txtNeedSynchronize": "Ada pembaruan", "PE.Controllers.Main.txtNone": "Tidak ada", - "PE.Controllers.Main.txtRectangles": "Rectangles", - "PE.Controllers.Main.txtSeries": "Series", + "PE.Controllers.Main.txtPicture": "Gambar", + "PE.Controllers.Main.txtRectangles": "Persegi Panjang", + "PE.Controllers.Main.txtSeries": "Seri", + "PE.Controllers.Main.txtShape_accentBorderCallout1": "Garis Callout 1 (Border dan Accent Bar)", + "PE.Controllers.Main.txtShape_accentBorderCallout2": "Garis Callout 2 (Border dan Accent Bar)", + "PE.Controllers.Main.txtShape_accentBorderCallout3": "Garis Callout 3 (Border dan Accent Bar)", + "PE.Controllers.Main.txtShape_accentCallout1": "Garis Callout 1 (Accent Bar)", + "PE.Controllers.Main.txtShape_accentCallout2": "Garis Callout 2 (Accent Bar)", + "PE.Controllers.Main.txtShape_accentCallout3": "Garis Callout 3 (Accent Bar)", + "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tombol Kembali atau Sebelumnya", + "PE.Controllers.Main.txtShape_actionButtonBeginning": "Tombol Awal", + "PE.Controllers.Main.txtShape_actionButtonBlank": "Tombol Kosong", + "PE.Controllers.Main.txtShape_actionButtonDocument": "Tombol Dokumen", + "PE.Controllers.Main.txtShape_actionButtonEnd": "Tombol Akhir", + "PE.Controllers.Main.txtShape_actionButtonForwardNext": "Maju atau Tombol Selanjutnya", + "PE.Controllers.Main.txtShape_actionButtonHelp": "Tombol Batuan", + "PE.Controllers.Main.txtShape_actionButtonHome": "Tombol Beranda", + "PE.Controllers.Main.txtShape_actionButtonInformation": "Tombol Informasi", + "PE.Controllers.Main.txtShape_actionButtonMovie": "Tombol Movie", + "PE.Controllers.Main.txtShape_actionButtonReturn": "Tombol Kembali", + "PE.Controllers.Main.txtShape_actionButtonSound": "Tombol Suara", + "PE.Controllers.Main.txtShape_arc": "Arc", + "PE.Controllers.Main.txtShape_bentArrow": "Panah Bengkok", + "PE.Controllers.Main.txtShape_bentConnector5": "Konektor Siku", + "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Panah Konektor Siku", + "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Panah Ganda Konektor Siku", + "PE.Controllers.Main.txtShape_bentUpArrow": "Panah Kelok Atas", "PE.Controllers.Main.txtShape_bevel": "Miring", - "PE.Controllers.Main.txtShape_downArrow": "Panah Bawah", + "PE.Controllers.Main.txtShape_blockArc": "Block Arc", + "PE.Controllers.Main.txtShape_borderCallout1": "Garis Callout 1", + "PE.Controllers.Main.txtShape_borderCallout2": "Garis Callout 2", + "PE.Controllers.Main.txtShape_borderCallout3": "Garis Callout 3", + "PE.Controllers.Main.txtShape_bracePair": "Kurung Ganda", + "PE.Controllers.Main.txtShape_callout1": "Garis Callout 1 (No Border)", + "PE.Controllers.Main.txtShape_callout2": "Garis Callout 2 (No Border)", + "PE.Controllers.Main.txtShape_callout3": "Garis Callout 3 (No Border)", + "PE.Controllers.Main.txtShape_can": "Bisa", + "PE.Controllers.Main.txtShape_chevron": "Chevron", + "PE.Controllers.Main.txtShape_chord": "Chord", + "PE.Controllers.Main.txtShape_circularArrow": "Panah Sirkular", + "PE.Controllers.Main.txtShape_cloud": "Cloud", + "PE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout", + "PE.Controllers.Main.txtShape_corner": "Sudut", + "PE.Controllers.Main.txtShape_cube": "Kubus", + "PE.Controllers.Main.txtShape_curvedConnector3": "Konektor Lengkung", + "PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Panah Konektor Lengkung", + "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Panah Ganda Konektor Lengkung", + "PE.Controllers.Main.txtShape_curvedDownArrow": "Panah Kelok Bawah", + "PE.Controllers.Main.txtShape_curvedLeftArrow": "Panah Kelok Kiri", + "PE.Controllers.Main.txtShape_curvedRightArrow": "Panah Kelok Kanan", + "PE.Controllers.Main.txtShape_curvedUpArrow": "Panah Kelok Atas", + "PE.Controllers.Main.txtShape_decagon": "Decagon", + "PE.Controllers.Main.txtShape_diagStripe": "Strip Diagonal", + "PE.Controllers.Main.txtShape_diamond": "Diamond", + "PE.Controllers.Main.txtShape_dodecagon": "Dodecagon", + "PE.Controllers.Main.txtShape_donut": "Donut", + "PE.Controllers.Main.txtShape_doubleWave": "Gelombang Ganda", + "PE.Controllers.Main.txtShape_downArrow": "Panah Kebawah", + "PE.Controllers.Main.txtShape_downArrowCallout": "Seranta Panah Bawah", + "PE.Controllers.Main.txtShape_ellipse": "Elips", + "PE.Controllers.Main.txtShape_ellipseRibbon": "Pita Kelok Bawah", + "PE.Controllers.Main.txtShape_ellipseRibbon2": "Pita Kelok Atas", + "PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagram Alir: Proses Alternatif", + "PE.Controllers.Main.txtShape_flowChartCollate": "Diagram Alir: Collate", + "PE.Controllers.Main.txtShape_flowChartConnector": "Diagram Alir: Konektor", + "PE.Controllers.Main.txtShape_flowChartDecision": "Diagram Alir: Keputusan", + "PE.Controllers.Main.txtShape_flowChartDelay": "Diagram Alir: Delay", + "PE.Controllers.Main.txtShape_flowChartDisplay": "Diagram Alir: Tampilan", + "PE.Controllers.Main.txtShape_flowChartDocument": "Diagram Alir: Dokumen", + "PE.Controllers.Main.txtShape_flowChartExtract": "Diagram Alir: Ekstrak", + "PE.Controllers.Main.txtShape_flowChartInputOutput": "Diagram Alir: Data", + "PE.Controllers.Main.txtShape_flowChartInternalStorage": "Diagram Alir: Memori Internal", + "PE.Controllers.Main.txtShape_flowChartMagneticDisk": "Diagram Alir: Magnetic Disk", + "PE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagram Alir: Direct Access Storage", + "PE.Controllers.Main.txtShape_flowChartMagneticTape": "Diagram Alir: Sequential Access Storage", + "PE.Controllers.Main.txtShape_flowChartManualInput": "Diagram Alir: Input Manual", + "PE.Controllers.Main.txtShape_flowChartManualOperation": "Diagram Alir: Operasi Manual", + "PE.Controllers.Main.txtShape_flowChartMerge": "Diagram Alir: Merge", + "PE.Controllers.Main.txtShape_flowChartMultidocument": "Diagram Alir: Multidokumen ", + "PE.Controllers.Main.txtShape_flowChartOffpageConnector": "Diagram Alir: Off-page Penghubung", + "PE.Controllers.Main.txtShape_flowChartOnlineStorage": "Diagram Alir: Stored Data", + "PE.Controllers.Main.txtShape_flowChartOr": "Diagram Alir: Atau", + "PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Diagram Alir: Predefined Process", + "PE.Controllers.Main.txtShape_flowChartPreparation": "Diagram Alir: Preparasi", + "PE.Controllers.Main.txtShape_flowChartProcess": "Diagram Alir: Proses", + "PE.Controllers.Main.txtShape_flowChartPunchedCard": "Diagram Alir: Kartu", + "PE.Controllers.Main.txtShape_flowChartPunchedTape": "Diagram Alir: Punched Tape", + "PE.Controllers.Main.txtShape_flowChartSort": "Diagram Alir: Sortasi", + "PE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagram Alir: Summing Junction", + "PE.Controllers.Main.txtShape_flowChartTerminator": "Diagram Alir: Terminator", + "PE.Controllers.Main.txtShape_foldedCorner": "Sudut Folder", "PE.Controllers.Main.txtShape_frame": "Kerangka", + "PE.Controllers.Main.txtShape_halfFrame": "Setengah Bingkai", + "PE.Controllers.Main.txtShape_heart": "Hati", + "PE.Controllers.Main.txtShape_heptagon": "Heptagon", + "PE.Controllers.Main.txtShape_hexagon": "Heksagon", + "PE.Controllers.Main.txtShape_homePlate": "Pentagon", + "PE.Controllers.Main.txtShape_horizontalScroll": "Scroll Horizontal", + "PE.Controllers.Main.txtShape_irregularSeal1": "Ledakan 1", + "PE.Controllers.Main.txtShape_irregularSeal2": "Ledakan 2", "PE.Controllers.Main.txtShape_leftArrow": "Panah Kiri", + "PE.Controllers.Main.txtShape_leftArrowCallout": "Seranta Panah Kiri", + "PE.Controllers.Main.txtShape_leftBrace": "Brace Kiri", + "PE.Controllers.Main.txtShape_leftBracket": "Kurung Kurawal Kiri", + "PE.Controllers.Main.txtShape_leftRightArrow": "Panah Kiri Kanan", + "PE.Controllers.Main.txtShape_leftRightArrowCallout": "Seranta Panah Kiri Kanan", + "PE.Controllers.Main.txtShape_leftRightUpArrow": "Panah Kiri Kanan Atas", + "PE.Controllers.Main.txtShape_leftUpArrow": "Panah Kiri Atas", + "PE.Controllers.Main.txtShape_lightningBolt": "Petir", "PE.Controllers.Main.txtShape_line": "Garis", + "PE.Controllers.Main.txtShape_lineWithArrow": "Panah", + "PE.Controllers.Main.txtShape_lineWithTwoArrows": "Panah Ganda", + "PE.Controllers.Main.txtShape_mathDivide": "Divisi", "PE.Controllers.Main.txtShape_mathEqual": "Setara", "PE.Controllers.Main.txtShape_mathMinus": "Minus", + "PE.Controllers.Main.txtShape_mathMultiply": "Perkalian", + "PE.Controllers.Main.txtShape_mathNotEqual": "Tidak Sama", "PE.Controllers.Main.txtShape_mathPlus": "Plus", + "PE.Controllers.Main.txtShape_moon": "Bulan", + "PE.Controllers.Main.txtShape_noSmoking": "\"No\" simbol", + "PE.Controllers.Main.txtShape_notchedRightArrow": "Panah Takik Kanan", + "PE.Controllers.Main.txtShape_octagon": "Oktagon", + "PE.Controllers.Main.txtShape_parallelogram": "Parallelogram", + "PE.Controllers.Main.txtShape_pentagon": "Pentagon", + "PE.Controllers.Main.txtShape_pie": "Diagram Lingkaran", + "PE.Controllers.Main.txtShape_plaque": "Plus", "PE.Controllers.Main.txtShape_plus": "Plus", + "PE.Controllers.Main.txtShape_polyline1": "Scribble", + "PE.Controllers.Main.txtShape_polyline2": "Bentuk bebas", + "PE.Controllers.Main.txtShape_quadArrow": "Panah Empat Mata", + "PE.Controllers.Main.txtShape_quadArrowCallout": "Seranta Panah Empat Mata", + "PE.Controllers.Main.txtShape_rect": "Kotak", + "PE.Controllers.Main.txtShape_ribbon": "Pita Bawah", + "PE.Controllers.Main.txtShape_ribbon2": "Pita Keatas", "PE.Controllers.Main.txtShape_rightArrow": "Tanda Panah ke Kanan", - "PE.Controllers.Main.txtSldLtTBlank": "Blank", - "PE.Controllers.Main.txtSldLtTChart": "Chart", - "PE.Controllers.Main.txtSldLtTChartAndTx": "Chart and Text", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Clip Art and Text", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Clip Art and Vertical Text", - "PE.Controllers.Main.txtSldLtTCust": "Custom", + "PE.Controllers.Main.txtShape_rightArrowCallout": "Seranta Panah Kanan", + "PE.Controllers.Main.txtShape_rightBrace": "Brace Kanan", + "PE.Controllers.Main.txtShape_rightBracket": "Kurung Kurawal Kanan", + "PE.Controllers.Main.txtShape_round1Rect": "Persegi Panjang Sudut Lengkung Single", + "PE.Controllers.Main.txtShape_round2DiagRect": "Persegi Panjang Sudut Lengkung Diagonal", + "PE.Controllers.Main.txtShape_round2SameRect": "Persegi Panjang Sudut Lengkung Sama Sisi", + "PE.Controllers.Main.txtShape_roundRect": "Persegi Panjang Sudut Lengkung", + "PE.Controllers.Main.txtShape_rtTriangle": "Segitiga Siku-Siku", + "PE.Controllers.Main.txtShape_smileyFace": "Wajah Senyum", + "PE.Controllers.Main.txtShape_snip1Rect": "Snip Persegi Panjang Sudut Single", + "PE.Controllers.Main.txtShape_snip2DiagRect": "Snip Persegi Panjang Sudut Lengkung Diagonal", + "PE.Controllers.Main.txtShape_snip2SameRect": "Snip Persegi Panjang Sudut Lengkung Sama Sisi", + "PE.Controllers.Main.txtShape_snipRoundRect": "Snip dan Persegi Panjang Sudut Lengkung Single", + "PE.Controllers.Main.txtShape_spline": "Lengkung", + "PE.Controllers.Main.txtShape_star10": "Bintang Titik-10", + "PE.Controllers.Main.txtShape_star12": "Bintang Titik-12", + "PE.Controllers.Main.txtShape_star16": "Bintang Titik-16", + "PE.Controllers.Main.txtShape_star24": "Bintang Titik-24", + "PE.Controllers.Main.txtShape_star32": "Bintang Titik-32", + "PE.Controllers.Main.txtShape_star4": "Bintang Titik-4", + "PE.Controllers.Main.txtShape_star5": "Bintang Titik-5", + "PE.Controllers.Main.txtShape_star6": "Bintang Titik-6", + "PE.Controllers.Main.txtShape_star7": "Bintang Titik-7", + "PE.Controllers.Main.txtShape_star8": "Bintang Titik-8", + "PE.Controllers.Main.txtShape_stripedRightArrow": "Panah Putus-Putus Kanan", + "PE.Controllers.Main.txtShape_sun": "Matahari", + "PE.Controllers.Main.txtShape_teardrop": "Teardrop", + "PE.Controllers.Main.txtShape_textRect": "Kotak Teks", + "PE.Controllers.Main.txtShape_trapezoid": "Trapezoid", + "PE.Controllers.Main.txtShape_triangle": "Segitiga", + "PE.Controllers.Main.txtShape_upArrow": "Panah keatas", + "PE.Controllers.Main.txtShape_upArrowCallout": "Seranta Panah Atas", + "PE.Controllers.Main.txtShape_upDownArrow": "Panah Atas Bawah", + "PE.Controllers.Main.txtShape_uturnArrow": "Panah Balik", + "PE.Controllers.Main.txtShape_verticalScroll": "Scroll Vertikal", + "PE.Controllers.Main.txtShape_wave": "Gelombang", + "PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Callout Oval", + "PE.Controllers.Main.txtShape_wedgeRectCallout": "Callout Kotak", + "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Callout Persegi Panjang Sudut Lengkung", + "PE.Controllers.Main.txtSldLtTBlank": "Kosong", + "PE.Controllers.Main.txtSldLtTChart": "Grafik", + "PE.Controllers.Main.txtSldLtTChartAndTx": "Grafik dan Teks", + "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Clip Art dan Teks", + "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Clip Art dan Teks Vertikal", + "PE.Controllers.Main.txtSldLtTCust": "Khusus", "PE.Controllers.Main.txtSldLtTDgm": "Diagram", - "PE.Controllers.Main.txtSldLtTFourObj": "Four Objects", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "Media and Text", - "PE.Controllers.Main.txtSldLtTObj": "Title and Object", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Object and Two Objects", - "PE.Controllers.Main.txtSldLtTObjAndTx": "Object and Text", - "PE.Controllers.Main.txtSldLtTObjOnly": "Object", - "PE.Controllers.Main.txtSldLtTObjOverTx": "Object over Text", - "PE.Controllers.Main.txtSldLtTObjTx": "Title, Object, and Caption", - "PE.Controllers.Main.txtSldLtTPicTx": "Picture and Caption", - "PE.Controllers.Main.txtSldLtTSecHead": "Section Header", - "PE.Controllers.Main.txtSldLtTTbl": "Table", - "PE.Controllers.Main.txtSldLtTTitle": "Title", - "PE.Controllers.Main.txtSldLtTTitleOnly": "Title Only", - "PE.Controllers.Main.txtSldLtTTwoColTx": "Two Column Text", - "PE.Controllers.Main.txtSldLtTTwoObj": "Two Objects", - "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Two Objects and Object", - "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Two Objects and Text", - "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Two Objects over Text", - "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Two Text and Two Objects", - "PE.Controllers.Main.txtSldLtTTx": "Text", - "PE.Controllers.Main.txtSldLtTTxAndChart": "Text and Chart", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Text and Clip Art", - "PE.Controllers.Main.txtSldLtTTxAndMedia": "Text and Media", - "PE.Controllers.Main.txtSldLtTTxAndObj": "Text and Object", - "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Text and Two Objects", - "PE.Controllers.Main.txtSldLtTTxOverObj": "Text over Object", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertical Title and Text", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertical Title and Text Over Chart", - "PE.Controllers.Main.txtSldLtTVertTx": "Vertical Text", - "PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "PE.Controllers.Main.txtSldLtTFourObj": "Empat Objek", + "PE.Controllers.Main.txtSldLtTMediaAndTx": "Media dan Teks", + "PE.Controllers.Main.txtSldLtTObj": "Judul dan Objek", + "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objek dan Dua Objek", + "PE.Controllers.Main.txtSldLtTObjAndTx": "Objek dan Teks", + "PE.Controllers.Main.txtSldLtTObjOnly": "Objek", + "PE.Controllers.Main.txtSldLtTObjOverTx": "Objek Diatas Teks", + "PE.Controllers.Main.txtSldLtTObjTx": "Judul, Objek, dan Caption", + "PE.Controllers.Main.txtSldLtTPicTx": "Gambar dan Caption", + "PE.Controllers.Main.txtSldLtTSecHead": "Header Sesi", + "PE.Controllers.Main.txtSldLtTTbl": "Tabel", + "PE.Controllers.Main.txtSldLtTTitle": "Judul", + "PE.Controllers.Main.txtSldLtTTitleOnly": "Hanya Judul", + "PE.Controllers.Main.txtSldLtTTwoColTx": "Dua Teks Kolom", + "PE.Controllers.Main.txtSldLtTTwoObj": "Dua Objek", + "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dua Objects dan Objek", + "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dua Objek dan Teks", + "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Dua Objek diatas Teks", + "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Dua Teks dan Dua Objek", + "PE.Controllers.Main.txtSldLtTTx": "Teks", + "PE.Controllers.Main.txtSldLtTTxAndChart": "Teks dan Grafik", + "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Teks dan Clip Art", + "PE.Controllers.Main.txtSldLtTTxAndMedia": "Teks dan Media", + "PE.Controllers.Main.txtSldLtTTxAndObj": "Teks dan Objek", + "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Teks dan Dua Objek", + "PE.Controllers.Main.txtSldLtTTxOverObj": "Teks Di Atas Objek", + "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Judul dan Teks Vertikal", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Judul Vertikal dan Teks di Atas Grafik", + "PE.Controllers.Main.txtSldLtTVertTx": "Teks Vertikal", + "PE.Controllers.Main.txtSlideNumber": "Nomor Slide", + "PE.Controllers.Main.txtSlideSubtitle": "Subtitle Slide", + "PE.Controllers.Main.txtSlideText": "Teks Slide", + "PE.Controllers.Main.txtSlideTitle": "Judul Slide", + "PE.Controllers.Main.txtStarsRibbons": "Bintang & Pita", + "PE.Controllers.Main.txtTheme_basic": "Dasar", + "PE.Controllers.Main.txtTheme_blank": "Kosong", + "PE.Controllers.Main.txtTheme_classic": "Klasik", + "PE.Controllers.Main.txtTheme_corner": "Sudut", + "PE.Controllers.Main.txtTheme_dotted": "Titik-Titik", "PE.Controllers.Main.txtTheme_green": "Hijau", + "PE.Controllers.Main.txtTheme_green_leaf": "Hijau Daun", "PE.Controllers.Main.txtTheme_lines": "Garis", - "PE.Controllers.Main.txtXAxis": "X Axis", - "PE.Controllers.Main.txtYAxis": "Y Axis", - "PE.Controllers.Main.unknownErrorText": "Unknown error.", - "PE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.", - "PE.Controllers.Main.uploadImageExtMessage": "Unknown image format.", - "PE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.", - "PE.Controllers.Main.uploadImageSizeMessage": "Maximum image size limit exceeded.", - "PE.Controllers.Main.uploadImageTextText": "Uploading image...", - "PE.Controllers.Main.uploadImageTitleText": "Uploading Image", - "PE.Controllers.Main.waitText": "Silahkan menunggu...", - "PE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", - "PE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", - "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
Do you want to continue?", + "PE.Controllers.Main.txtTheme_office": "Office", + "PE.Controllers.Main.txtTheme_office_theme": "Tema Office", + "PE.Controllers.Main.txtTheme_official": "Official", + "PE.Controllers.Main.txtTheme_pixel": "Pixel", + "PE.Controllers.Main.txtTheme_safari": "Safari", + "PE.Controllers.Main.txtTheme_turtle": "Turtle", + "PE.Controllers.Main.txtXAxis": "Sumbu X", + "PE.Controllers.Main.txtYAxis": "Sumbu Y", + "PE.Controllers.Main.unknownErrorText": "Kesalahan tidak diketahui.", + "PE.Controllers.Main.unsupportedBrowserErrorText": "Peramban kamu tidak didukung.", + "PE.Controllers.Main.uploadImageExtMessage": "Format gambar tidak dikenal.", + "PE.Controllers.Main.uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.", + "PE.Controllers.Main.uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB.", + "PE.Controllers.Main.uploadImageTextText": "Mengunggah gambar...", + "PE.Controllers.Main.uploadImageTitleText": "Mengunggah Gambar", + "PE.Controllers.Main.waitText": "Silahkan menunggu", + "PE.Controllers.Main.warnBrowserIE9": "Aplikasi ini tidak berjalan dengan baik di IE9. Gunakan IE10 atau versi yang terbaru.", + "PE.Controllers.Main.warnBrowserZoom": "Pengaturan pembesaran tampilan pada browser Anda saat ini tidak didukung sepenuhnya. Silakan atur ulang ke tampilan standar dengan menekan Ctrl+0.", + "PE.Controllers.Main.warnLicenseExceeded": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja.
Hubungi admin Anda untuk mempelajari lebih lanjut.", + "PE.Controllers.Main.warnLicenseExp": "Lisensi Anda sudah kadaluwarsa.
Silakan update lisensi Anda dan muat ulang halaman.", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Lisensi kadaluwarsa.
Anda tidak memiliki akses untuk editing dokumen secara keseluruhan.
Silakan hubungi admin Anda.", + "PE.Controllers.Main.warnLicenseLimitedRenewed": "Lisensi perlu diperbaharui.
Anda memiliki akses terbatas untuk edit dokumen.
Silakan hubungi admin Anda untuk mendapatkan akses penuh", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Anda sudah mencapai batas user untuk %1 editor. Hubungi admin Anda untuk mempelajari lebih lanjut.", + "PE.Controllers.Main.warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja.
Hubungi %1 tim sales untuk syarat personal upgrade.", + "PE.Controllers.Main.warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", + "PE.Controllers.Main.warnProcessRightsChange": "Hak Anda untuk mengedit file ditolak.", + "PE.Controllers.Statusbar.textDisconnect": "Koneksi terputus
Mencoba menghubungkan. Silakan periksa pengaturan koneksi.", + "PE.Controllers.Statusbar.zoomText": "Perbesar {0}%", + "PE.Controllers.Toolbar.confirmAddFontName": "Font yang akan Anda simpan tidak tersedia di perangkat sekarang.
Style teks akan ditampilkan menggunakan salah satu font sistem, font yang disimpan akan digunakan jika sudah tersedia.
Apakah Anda ingin melanjutkan?", "PE.Controllers.Toolbar.textAccent": "Aksen", "PE.Controllers.Toolbar.textBracket": "Tanda Kurung", - "PE.Controllers.Toolbar.textEmptyImgUrl": "You need to specify image URL.", - "PE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
Please enter a numeric value between 1 and 300", + "PE.Controllers.Toolbar.textEmptyImgUrl": "Anda harus menentukan URL gambar.", + "PE.Controllers.Toolbar.textFontSizeErr": "Input yang dimasukkan salah.
Silakan masukkan input numerik antara 1 dan 300", "PE.Controllers.Toolbar.textFraction": "Pecahan", "PE.Controllers.Toolbar.textFunction": "Fungsi", "PE.Controllers.Toolbar.textInsert": "Sisipkan", @@ -331,18 +963,25 @@ "PE.Controllers.Toolbar.textMatrix": "Matriks", "PE.Controllers.Toolbar.textOperator": "Operator", "PE.Controllers.Toolbar.textRadical": "Perakaran", - "PE.Controllers.Toolbar.textWarning": "Warning", + "PE.Controllers.Toolbar.textScript": "Scripts", + "PE.Controllers.Toolbar.textSymbols": "Simbol", + "PE.Controllers.Toolbar.textWarning": "Peringatan", "PE.Controllers.Toolbar.txtAccent_Accent": "Akut", "PE.Controllers.Toolbar.txtAccent_ArrowD": "Tanda Panah Kanan-Kiri Atas", "PE.Controllers.Toolbar.txtAccent_ArrowL": "Panah Kiri Atas", "PE.Controllers.Toolbar.txtAccent_ArrowR": "Tanda Panah ke Kanan Atas", "PE.Controllers.Toolbar.txtAccent_Bar": "Palang", + "PE.Controllers.Toolbar.txtAccent_BarBot": "Underbar", "PE.Controllers.Toolbar.txtAccent_BarTop": "Garis Atas", "PE.Controllers.Toolbar.txtAccent_BorderBox": "Kotak Formula (Dengan Placeholder)", - "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Kotak Formula (Contoh)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Kotak Formula(Contoh)", "PE.Controllers.Toolbar.txtAccent_Check": "Periksa", + "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Kurung Kurawal Atas", + "PE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", "PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Dengan Overbar", + "PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y dengan overbar", + "PE.Controllers.Toolbar.txtAccent_DDDot": "Triple Dot", "PE.Controllers.Toolbar.txtAccent_DDot": "Titik Dua", "PE.Controllers.Toolbar.txtAccent_Dot": "Titik", "PE.Controllers.Toolbar.txtAccent_DoubleBar": "Overbar Ganda", @@ -350,35 +989,60 @@ "PE.Controllers.Toolbar.txtAccent_GroupBot": "Pengelompokan Karakter Di Bawah", "PE.Controllers.Toolbar.txtAccent_GroupTop": "Pengelompokan Karakter Di Atas", "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Panah Tiga Kiri Atas", - "PE.Controllers.Toolbar.txtAccent_Hat": "Caping", - "PE.Controllers.Toolbar.txtAccent_Smile": "Prosodi ", + "PE.Controllers.Toolbar.txtAccent_HarpoonR": "Harpoon kanan di bawah", + "PE.Controllers.Toolbar.txtAccent_Hat": "Topi", + "PE.Controllers.Toolbar.txtAccent_Smile": "Prosodi", + "PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", "PE.Controllers.Toolbar.txtBracket_Angle": "Tanda Kurung", "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Tanda Kurung dengan Pemisah", "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Kurung Kurawal Single", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Kurung Kurawal Single", "PE.Controllers.Toolbar.txtBracket_Curve": "Tanda Kurung", "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Kurung Kurawal Single", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Kurung Kurawal Single", "PE.Controllers.Toolbar.txtBracket_Custom_1": "Kasus (Dua Kondisi)", "PE.Controllers.Toolbar.txtBracket_Custom_2": "Kasus (Tiga Kondisi)", + "PE.Controllers.Toolbar.txtBracket_Custom_3": "Tumpuk objek", + "PE.Controllers.Toolbar.txtBracket_Custom_4": "Tumpuk objek", "PE.Controllers.Toolbar.txtBracket_Custom_5": "Contoh Kasus", "PE.Controllers.Toolbar.txtBracket_Custom_6": "Koefisien Binomial", "PE.Controllers.Toolbar.txtBracket_Custom_7": "Koefisien Binomial", "PE.Controllers.Toolbar.txtBracket_Line": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Kurung Kurawal Single", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Kurung Kurawal Single", "PE.Controllers.Toolbar.txtBracket_LineDouble": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Kurung Kurawal Single", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Kurung Kurawal Single", "PE.Controllers.Toolbar.txtBracket_LowLim": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Kurung Kurawal Single", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Kurung Kurawal Single", "PE.Controllers.Toolbar.txtBracket_Round": "Tanda Kurung", "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Tanda Kurung dengan Pemisah", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Kurung Kurawal Single", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Kurung Kurawal Single", "PE.Controllers.Toolbar.txtBracket_Square": "Tanda Kurung", "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Tanda Kurung", "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Kurung Kurawal Single", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Kurung Kurawal Single", "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Tanda Kurung", "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Kurung Kurawal Single", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Kurung Kurawal Single", "PE.Controllers.Toolbar.txtBracket_UppLim": "Tanda Kurung", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Kurung Kurawal Single", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Kurung Kurawal Single", + "PE.Controllers.Toolbar.txtFractionDiagonal": "Pecahan miring", "PE.Controllers.Toolbar.txtFractionDifferential_1": "Diferensial", "PE.Controllers.Toolbar.txtFractionDifferential_2": "Diferensial", "PE.Controllers.Toolbar.txtFractionDifferential_3": "Diferensial", "PE.Controllers.Toolbar.txtFractionDifferential_4": "Diferensial", "PE.Controllers.Toolbar.txtFractionHorizontal": "Pecahan Linear", "PE.Controllers.Toolbar.txtFractionPi_2": "Pi Dibagi 2", + "PE.Controllers.Toolbar.txtFractionSmall": "Pecahan kecil", + "PE.Controllers.Toolbar.txtFractionVertical": "Pecahan bertumpuk", "PE.Controllers.Toolbar.txtFunction_1_Cos": "Fungsi Kosin Terbalik", "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Fungsi Kosin Hiperbolik Terbalik", "PE.Controllers.Toolbar.txtFunction_1_Cot": "Fungsi Kotangen Terbalik", @@ -397,8 +1061,14 @@ "PE.Controllers.Toolbar.txtFunction_Coth": "Fungsi Kotangen Hiperbolik", "PE.Controllers.Toolbar.txtFunction_Csc": "Fungsi Kosekans", "PE.Controllers.Toolbar.txtFunction_Csch": "Fungsi Kosekans Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", + "PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "PE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formula", + "PE.Controllers.Toolbar.txtFunction_Sec": "Fungsi sekan", "PE.Controllers.Toolbar.txtFunction_Sech": "Fungsi Sekans Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Sin": "Fungsi sinus", "PE.Controllers.Toolbar.txtFunction_Sinh": "Fungsi Sin Hiperbolik", + "PE.Controllers.Toolbar.txtFunction_Tan": "Fungsi tangen", "PE.Controllers.Toolbar.txtFunction_Tanh": "Fungsi Tangen Hiperbolik", "PE.Controllers.Toolbar.txtIntegral": "Integral", "PE.Controllers.Toolbar.txtIntegral_dtheta": "Theta Diferensial", @@ -410,20 +1080,57 @@ "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integral Ganda", "PE.Controllers.Toolbar.txtIntegralOriented": "Integral Kontur", "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integral Kontur", + "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Permukaan integral", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Permukaan integral", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Permukaan integral", "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integral Kontur", + "PE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral", "PE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "PE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", + "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral", + "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Ko-Produk", "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Ko-Produk", "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ko-Produk", "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Ko-Produk", "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Ko-Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Penjumlahan", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Penjumlahan", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Penjumlahan", "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Perpotongan", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Perpotongan", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Perpotongan", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Perpotongan", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Perpotongan", "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Produk", "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produk", "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produk", "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produk", "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produk", + "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Penjumlahan", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Penjumlahan", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Penjumlahan", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Penjumlahan", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Penjumlahan", + "PE.Controllers.Toolbar.txtLargeOperator_Union": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", + "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Contoh Limit", "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Contoh Maksimal", "PE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", @@ -447,6 +1154,9 @@ "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Titik Bawah", "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Titik Tengah", "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Titik Diagonal", + "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Titik Vertikal", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse Matrix", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix", "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Matriks Identitas", "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Matriks Identitas", "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Matriks Identitas", @@ -455,8 +1165,10 @@ "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Tanda Panah Kanan-Kiri Atas", "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Panah Kiri Bawah", "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Panah Kiri Atas", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Panah kanan di bawah", "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Tanda Panah ke Kanan Atas", "PE.Controllers.Toolbar.txtOperator_ColonEquals": "Titik Dua", + "PE.Controllers.Toolbar.txtOperator_Custom_1": "Yields", "PE.Controllers.Toolbar.txtOperator_Custom_2": "Hasil Delta", "PE.Controllers.Toolbar.txtOperator_Definition": "Setara Menurut Definisi", "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Setara Dengan", @@ -464,6 +1176,7 @@ "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Tanda Panah Kanan-Kiri Atas", "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Panah Kiri Bawah", "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Panah Kiri Atas", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Panah kanan di bawah", "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Tanda Panah ke Kanan Atas", "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Setara Setara", "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Sama Dengan", @@ -471,9 +1184,16 @@ "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Diukur Berdasar", "PE.Controllers.Toolbar.txtRadicalCustom_1": "Akar", "PE.Controllers.Toolbar.txtRadicalCustom_2": "Akar", + "PE.Controllers.Toolbar.txtRadicalRoot_2": "Akar dengan pangkat", "PE.Controllers.Toolbar.txtRadicalRoot_3": "Akar Pangkat Tiga", "PE.Controllers.Toolbar.txtRadicalRoot_n": "Akar Dengan Derajat", + "PE.Controllers.Toolbar.txtRadicalSqrt": "Akar pangkat dua", + "PE.Controllers.Toolbar.txtScriptCustom_1": "Akar", + "PE.Controllers.Toolbar.txtScriptCustom_2": "Akar", + "PE.Controllers.Toolbar.txtScriptCustom_3": "Akar", + "PE.Controllers.Toolbar.txtScriptCustom_4": "Akar", "PE.Controllers.Toolbar.txtScriptSub": "Subskrip", + "PE.Controllers.Toolbar.txtScriptSubSup": "Subskrip-SuperskripKiri", "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Subskrip-SuperskripKiri", "PE.Controllers.Toolbar.txtScriptSup": "Superskrip", "PE.Controllers.Toolbar.txtSymbol_about": "Kira-Kira", @@ -485,11 +1205,14 @@ "PE.Controllers.Toolbar.txtSymbol_beta": "Beta", "PE.Controllers.Toolbar.txtSymbol_beth": "Taruhan", "PE.Controllers.Toolbar.txtSymbol_bullet": "Operator Butir", + "PE.Controllers.Toolbar.txtSymbol_cap": "Perpotongan", "PE.Controllers.Toolbar.txtSymbol_cbrt": "Akar Pangkat Tiga", "PE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis Tengah Horisontal", "PE.Controllers.Toolbar.txtSymbol_celsius": "Derajat Celcius", "PE.Controllers.Toolbar.txtSymbol_chi": "Chi", "PE.Controllers.Toolbar.txtSymbol_cong": "Kira-Kira Setara Dengan", + "PE.Controllers.Toolbar.txtSymbol_cup": "Union", + "PE.Controllers.Toolbar.txtSymbol_ddots": "Serong Kanan Bawah", "PE.Controllers.Toolbar.txtSymbol_degree": "Derajat", "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", "PE.Controllers.Toolbar.txtSymbol_div": "Tanda Pembagi", @@ -499,6 +1222,7 @@ "PE.Controllers.Toolbar.txtSymbol_equals": "Setara", "PE.Controllers.Toolbar.txtSymbol_equiv": "Identik Dengan", "PE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "PE.Controllers.Toolbar.txtSymbol_exists": "Ada di sana", "PE.Controllers.Toolbar.txtSymbol_factorial": "Faktorial", "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Derajat Fahrenheit", "PE.Controllers.Toolbar.txtSymbol_forall": "Untuk Semua", @@ -519,8 +1243,12 @@ "PE.Controllers.Toolbar.txtSymbol_ll": "Kurang Dari", "PE.Controllers.Toolbar.txtSymbol_minus": "Minus", "PE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", + "PE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "PE.Controllers.Toolbar.txtSymbol_neq": "Tidak Sama Dengan", "PE.Controllers.Toolbar.txtSymbol_ni": "Sertakan sebagai Anggota", "PE.Controllers.Toolbar.txtSymbol_not": "Tanda Negasi", + "PE.Controllers.Toolbar.txtSymbol_notexists": "Tidak ada di sana", "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", "PE.Controllers.Toolbar.txtSymbol_o": "Omikron", "PE.Controllers.Toolbar.txtSymbol_omega": "Omega", @@ -534,648 +1262,1001 @@ "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", "PE.Controllers.Toolbar.txtSymbol_qdrt": "Akar Kuadrat", "PE.Controllers.Toolbar.txtSymbol_qed": "Pembuktian Akhir", + "PE.Controllers.Toolbar.txtSymbol_rddots": "Elipsis diagonal kanan atas", "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Tanda Panah ke Kanan", "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "PE.Controllers.Toolbar.txtSymbol_sqrt": "Tanda Akar", "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "PE.Controllers.Toolbar.txtSymbol_therefore": "Oleh karena itu", "PE.Controllers.Toolbar.txtSymbol_theta": "Theta", "PE.Controllers.Toolbar.txtSymbol_times": "Tanda Perkalian", + "PE.Controllers.Toolbar.txtSymbol_uparrow": "Panah keatas", + "PE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Varian Epsilon", "PE.Controllers.Toolbar.txtSymbol_varphi": "Varian Phi", "PE.Controllers.Toolbar.txtSymbol_varpi": "Varian Pi", "PE.Controllers.Toolbar.txtSymbol_varrho": "Varian Rho", - "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Variant", - "PE.Controllers.Toolbar.txtSymbol_vartheta": "Theta Variant", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Varian Sigma", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Varian Theta", + "PE.Controllers.Toolbar.txtSymbol_vdots": "Elipsis vertikal", "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "PE.Controllers.Viewport.textFitPage": "Fit Slide", "PE.Controllers.Viewport.textFitWidth": "Sesuaikan Lebar", + "PE.Views.Animation.strDelay": "Delay", + "PE.Views.Animation.strDuration": "Durasi", + "PE.Views.Animation.strRepeat": "Ulangi", + "PE.Views.Animation.strRewind": "Rewind", "PE.Views.Animation.strStart": "Mulai", + "PE.Views.Animation.strTrigger": "Trigger", + "PE.Views.Animation.textMoreEffects": "Tampilkan Lebih Banyak Efek", + "PE.Views.Animation.textMoveEarlier": "Pindah Lebih Awal", + "PE.Views.Animation.textMoveLater": "Pindah Lebih Akhir", "PE.Views.Animation.textMultiple": "Banyak", "PE.Views.Animation.textNone": "Tidak ada", + "PE.Views.Animation.textNoRepeat": "(tidak ada)", + "PE.Views.Animation.textOnClickOf": "Saat Klik dari", + "PE.Views.Animation.textOnClickSequence": "Saat Klik Sekuens", + "PE.Views.Animation.textStartAfterPrevious": "Setelah Sebelumnya", + "PE.Views.Animation.textStartOnClick": "Saat Klik", + "PE.Views.Animation.textStartWithPrevious": "Dengan Sebelumnya", + "PE.Views.Animation.txtAddEffect": "Tambah animasi", + "PE.Views.Animation.txtAnimationPane": "Panel Animasi", "PE.Views.Animation.txtParameters": "Parameter", "PE.Views.Animation.txtPreview": "Pratinjau", + "PE.Views.Animation.txtSec": "s", + "PE.Views.AnimationDialog.textPreviewEffect": "Preview Efek", + "PE.Views.AnimationDialog.textTitle": "Lebih Banyak Efek", "PE.Views.ChartSettings.textAdvanced": "Tampilkan pengaturan lanjut", - "PE.Views.ChartSettings.textChartType": "Change Chart Type", + "PE.Views.ChartSettings.textChartType": "Ubah Tipe Bagan", "PE.Views.ChartSettings.textEditData": "Edit Data", - "PE.Views.ChartSettings.textHeight": "Height", - "PE.Views.ChartSettings.textKeepRatio": "Constant Proportions", - "PE.Views.ChartSettings.textSize": "Size", - "PE.Views.ChartSettings.textStyle": "Style", - "PE.Views.ChartSettings.textWidth": "Width", + "PE.Views.ChartSettings.textHeight": "Tinggi", + "PE.Views.ChartSettings.textKeepRatio": "Proporsi Konstan", + "PE.Views.ChartSettings.textSize": "Ukuran", + "PE.Views.ChartSettings.textStyle": "Model", + "PE.Views.ChartSettings.textWidth": "Lebar", + "PE.Views.ChartSettingsAdvanced.textAlt": "Teks Alternatif", "PE.Views.ChartSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.ChartSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Judul", "PE.Views.ChartSettingsAdvanced.textTitle": "Bagan - Pengaturan Lanjut", + "PE.Views.DateTimeDialog.confirmDefault": "Atur format default untuk {0}: \"{1}\"", + "PE.Views.DateTimeDialog.textDefault": "Atur sesuai default", + "PE.Views.DateTimeDialog.textFormat": "Format", "PE.Views.DateTimeDialog.textLang": "Bahasa", - "PE.Views.DocumentHolder.aboveText": "Above", - "PE.Views.DocumentHolder.addCommentText": "Add Comment", - "PE.Views.DocumentHolder.advancedImageText": "Image Advanced Settings", - "PE.Views.DocumentHolder.advancedParagraphText": "Text Advanced Settings", - "PE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings", - "PE.Views.DocumentHolder.advancedTableText": "Table Advanced Settings", + "PE.Views.DateTimeDialog.textUpdate": "Update secara otomatis", + "PE.Views.DateTimeDialog.txtTitle": "Tanggal & Jam", + "PE.Views.DocumentHolder.aboveText": "Di atas", + "PE.Views.DocumentHolder.addCommentText": "Tambahkan Komentar", + "PE.Views.DocumentHolder.addToLayoutText": "Tambah ke Layout", + "PE.Views.DocumentHolder.advancedImageText": "Pengaturan Lanjut untuk Gambar", + "PE.Views.DocumentHolder.advancedParagraphText": "Pengaturan Lanjut untuk Paragraf", + "PE.Views.DocumentHolder.advancedShapeText": "Pengaturan Lanjut untuk Bentuk", + "PE.Views.DocumentHolder.advancedTableText": "Pengaturan Lanjut untuk Tabel", "PE.Views.DocumentHolder.alignmentText": "Perataan", - "PE.Views.DocumentHolder.belowText": "Below", - "PE.Views.DocumentHolder.cellAlignText": "Cell Vertical Alignment", - "PE.Views.DocumentHolder.cellText": "Cell", + "PE.Views.DocumentHolder.belowText": "Di bawah", + "PE.Views.DocumentHolder.cellAlignText": "Sel Rata Atas", + "PE.Views.DocumentHolder.cellText": "Sel", "PE.Views.DocumentHolder.centerText": "Tengah", - "PE.Views.DocumentHolder.columnText": "Column", - "PE.Views.DocumentHolder.deleteColumnText": "Delete Column", - "PE.Views.DocumentHolder.deleteRowText": "Delete Row", - "PE.Views.DocumentHolder.deleteTableText": "Delete Table", - "PE.Views.DocumentHolder.deleteText": "Delete", - "PE.Views.DocumentHolder.direct270Text": "Rotate at 270°", - "PE.Views.DocumentHolder.direct90Text": "Rotate at 90°", - "PE.Views.DocumentHolder.directHText": "Horizontal", - "PE.Views.DocumentHolder.directionText": "Text Direction", + "PE.Views.DocumentHolder.columnText": "Kolom", + "PE.Views.DocumentHolder.deleteColumnText": "Hapus Kolom", + "PE.Views.DocumentHolder.deleteRowText": "Hapus Baris", + "PE.Views.DocumentHolder.deleteTableText": "Hapus Tabel", + "PE.Views.DocumentHolder.deleteText": "Hapus", + "PE.Views.DocumentHolder.direct270Text": "Rotasi Teks Keatas", + "PE.Views.DocumentHolder.direct90Text": "Rotasi Teks Kebawah", + "PE.Views.DocumentHolder.directHText": "Horisontal", + "PE.Views.DocumentHolder.directionText": "Arah Teks", "PE.Views.DocumentHolder.editChartText": "Edit Data", "PE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", "PE.Views.DocumentHolder.hyperlinkText": "Hyperlink", "PE.Views.DocumentHolder.ignoreAllSpellText": "Abaikan Semua", "PE.Views.DocumentHolder.ignoreSpellText": "Abaikan", - "PE.Views.DocumentHolder.insertColumnLeftText": "Column Left", - "PE.Views.DocumentHolder.insertColumnRightText": "Column Right", - "PE.Views.DocumentHolder.insertColumnText": "Insert Column", - "PE.Views.DocumentHolder.insertRowAboveText": "Row Above", - "PE.Views.DocumentHolder.insertRowBelowText": "Row Below", - "PE.Views.DocumentHolder.insertRowText": "Insert Row", - "PE.Views.DocumentHolder.insertText": "Insert", + "PE.Views.DocumentHolder.insertColumnLeftText": "Kolom Kiri", + "PE.Views.DocumentHolder.insertColumnRightText": "Kolom Kanan", + "PE.Views.DocumentHolder.insertColumnText": "Sisipkan Kolom", + "PE.Views.DocumentHolder.insertRowAboveText": "Baris di Atas", + "PE.Views.DocumentHolder.insertRowBelowText": "Baris di Bawah", + "PE.Views.DocumentHolder.insertRowText": "Sisipkan Baris", + "PE.Views.DocumentHolder.insertText": "Sisipkan", "PE.Views.DocumentHolder.langText": "Pilih Bahasa", "PE.Views.DocumentHolder.leftText": "Kiri", "PE.Views.DocumentHolder.loadSpellText": "Memuat varian...", - "PE.Views.DocumentHolder.mergeCellsText": "Merge Cells", + "PE.Views.DocumentHolder.mergeCellsText": "Gabungkan Sel", "PE.Views.DocumentHolder.mniCustomTable": "Sisipkan Tabel Khusus", "PE.Views.DocumentHolder.moreText": "Varian lain...", "PE.Views.DocumentHolder.noSpellVariantsText": "Tidak ada varian", - "PE.Views.DocumentHolder.originalSizeText": "Default Size", - "PE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", + "PE.Views.DocumentHolder.originalSizeText": "Ukuran Sebenarnya", + "PE.Views.DocumentHolder.removeHyperlinkText": "Hapus Hyperlink", "PE.Views.DocumentHolder.rightText": "Kanan", - "PE.Views.DocumentHolder.rowText": "Row", - "PE.Views.DocumentHolder.selectText": "Select", + "PE.Views.DocumentHolder.rowText": "Baris", + "PE.Views.DocumentHolder.selectText": "Pilih", "PE.Views.DocumentHolder.spellcheckText": "Periksa ejaan", - "PE.Views.DocumentHolder.splitCellsText": "Split Cell...", - "PE.Views.DocumentHolder.splitCellTitleText": "Split Cell", - "PE.Views.DocumentHolder.tableText": "Table", - "PE.Views.DocumentHolder.textArrangeBack": "Send to Background", - "PE.Views.DocumentHolder.textArrangeBackward": "Move Backward", - "PE.Views.DocumentHolder.textArrangeForward": "Move Forward", - "PE.Views.DocumentHolder.textArrangeFront": "Bring To Foreground", - "PE.Views.DocumentHolder.textCopy": "Copy", - "PE.Views.DocumentHolder.textCropFill": "Isian", - "PE.Views.DocumentHolder.textCut": "Cut", + "PE.Views.DocumentHolder.splitCellsText": "Pisahkan Sel...", + "PE.Views.DocumentHolder.splitCellTitleText": "Pisahkan Sel", + "PE.Views.DocumentHolder.tableText": "Tabel", + "PE.Views.DocumentHolder.textArrangeBack": "Jalankan di Background", + "PE.Views.DocumentHolder.textArrangeBackward": "Mundurkan", + "PE.Views.DocumentHolder.textArrangeForward": "Majukan", + "PE.Views.DocumentHolder.textArrangeFront": "Tampilkan di Halaman Muka", + "PE.Views.DocumentHolder.textCopy": "Salin", + "PE.Views.DocumentHolder.textCrop": "Isian", + "PE.Views.DocumentHolder.textCropFill": "Isi", + "PE.Views.DocumentHolder.textCropFit": "Fit", + "PE.Views.DocumentHolder.textCut": "Potong", + "PE.Views.DocumentHolder.textDistributeCols": "Distribusikan kolom", + "PE.Views.DocumentHolder.textDistributeRows": "Distribusikan baris", + "PE.Views.DocumentHolder.textEditPoints": "Edit Titik", + "PE.Views.DocumentHolder.textFlipH": "Flip Horizontal", + "PE.Views.DocumentHolder.textFlipV": "Flip Vertikal", "PE.Views.DocumentHolder.textFromFile": "Dari File", + "PE.Views.DocumentHolder.textFromStorage": "Dari Penyimpanan", "PE.Views.DocumentHolder.textFromUrl": "Dari URL", - "PE.Views.DocumentHolder.textNextPage": "Next Slide", - "PE.Views.DocumentHolder.textPaste": "Paste", - "PE.Views.DocumentHolder.textPrevPage": "Previous Slide", + "PE.Views.DocumentHolder.textNextPage": "Slide Berikutnya", + "PE.Views.DocumentHolder.textPaste": "Tempel", + "PE.Views.DocumentHolder.textPrevPage": "Slide sebelumnya", "PE.Views.DocumentHolder.textReplace": "Ganti Gambar", - "PE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom", - "PE.Views.DocumentHolder.textShapeAlignCenter": "Align Center", - "PE.Views.DocumentHolder.textShapeAlignLeft": "Align Left", - "PE.Views.DocumentHolder.textShapeAlignMiddle": "Align Middle", - "PE.Views.DocumentHolder.textShapeAlignRight": "Align Right", - "PE.Views.DocumentHolder.textShapeAlignTop": "Align Top", - "PE.Views.DocumentHolder.textSlideSettings": "Slide Settings", + "PE.Views.DocumentHolder.textRotate": "Rotasi", + "PE.Views.DocumentHolder.textRotate270": "Rotasi 90° Berlawanan Jarum Jam", + "PE.Views.DocumentHolder.textRotate90": "Rotasi 90° Searah Jarum Jam", + "PE.Views.DocumentHolder.textShapeAlignBottom": "Rata Bawah", + "PE.Views.DocumentHolder.textShapeAlignCenter": "Rata Tengah", + "PE.Views.DocumentHolder.textShapeAlignLeft": "Rata Kiri", + "PE.Views.DocumentHolder.textShapeAlignMiddle": "Rata di Tengah", + "PE.Views.DocumentHolder.textShapeAlignRight": "Rata Kanan", + "PE.Views.DocumentHolder.textShapeAlignTop": "Rata Atas", + "PE.Views.DocumentHolder.textSlideSettings": "Pengaturan slide", "PE.Views.DocumentHolder.textUndo": "Batalkan", - "PE.Views.DocumentHolder.tipIsLocked": "This element is currently being edited by another user.", - "PE.Views.DocumentHolder.txtAlign": "Align", - "PE.Views.DocumentHolder.txtArrange": "Arrange", + "PE.Views.DocumentHolder.tipIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", + "PE.Views.DocumentHolder.toDictionaryText": "Tambah ke Kamus", + "PE.Views.DocumentHolder.txtAddBottom": "Tambah pembatas bawah", + "PE.Views.DocumentHolder.txtAddFractionBar": "Tambah bar pecahan", + "PE.Views.DocumentHolder.txtAddHor": "Tambah garis horizontal", + "PE.Views.DocumentHolder.txtAddLB": "Tambah garis kiri bawah", + "PE.Views.DocumentHolder.txtAddLeft": "Tambah pembatas kiri", + "PE.Views.DocumentHolder.txtAddLT": "Tambah garis kiri atas", + "PE.Views.DocumentHolder.txtAddRight": "Tambah pembatas kiri", + "PE.Views.DocumentHolder.txtAddTop": "Tambah pembatas atas", + "PE.Views.DocumentHolder.txtAddVer": "Tambah garis vertikal", + "PE.Views.DocumentHolder.txtAlign": "Ratakan", + "PE.Views.DocumentHolder.txtAlignToChar": "Rata dengan karakter", + "PE.Views.DocumentHolder.txtArrange": "Susun", "PE.Views.DocumentHolder.txtBackground": "Background", + "PE.Views.DocumentHolder.txtBorderProps": "Properti pembatas", "PE.Views.DocumentHolder.txtBottom": "Bawah", - "PE.Views.DocumentHolder.txtChangeLayout": "Change Layout", - "PE.Views.DocumentHolder.txtDeleteSlide": "Delete Slide", - "PE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally", - "PE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically", - "PE.Views.DocumentHolder.txtDuplicateSlide": "Duplicate Slide", - "PE.Views.DocumentHolder.txtGroup": "Group", - "PE.Views.DocumentHolder.txtNewSlide": "New Slide", - "PE.Views.DocumentHolder.txtPressLink": "Press CTRL and click link", - "PE.Views.DocumentHolder.txtPreview": "Preview", - "PE.Views.DocumentHolder.txtSelectAll": "Select All", + "PE.Views.DocumentHolder.txtChangeLayout": "Ubah Layout", + "PE.Views.DocumentHolder.txtChangeTheme": "Ubah Tema", + "PE.Views.DocumentHolder.txtColumnAlign": "Rata kolom", + "PE.Views.DocumentHolder.txtDecreaseArg": "Kurangi ukuran argumen", + "PE.Views.DocumentHolder.txtDeleteArg": "Hapus argumen", + "PE.Views.DocumentHolder.txtDeleteBreak": "Hapus break manual", + "PE.Views.DocumentHolder.txtDeleteChars": "Hapus karakter terlampir", + "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Hapus karakter dan separator terlampir", + "PE.Views.DocumentHolder.txtDeleteEq": "Hapus persamaan", + "PE.Views.DocumentHolder.txtDeleteGroupChar": "Hapus char", + "PE.Views.DocumentHolder.txtDeleteRadical": "Hapus radikal", + "PE.Views.DocumentHolder.txtDeleteSlide": "Hapus Slide", + "PE.Views.DocumentHolder.txtDistribHor": "Distribusikan Horizontal", + "PE.Views.DocumentHolder.txtDistribVert": "Distribusikan Vertikal", + "PE.Views.DocumentHolder.txtDuplicateSlide": "Duplikasi Slide", + "PE.Views.DocumentHolder.txtFractionLinear": "Ubah ke pecahan linear", + "PE.Views.DocumentHolder.txtFractionSkewed": "Ubah ke pecahan", + "PE.Views.DocumentHolder.txtFractionStacked": "Ubah ke pecahan bertumpuk", + "PE.Views.DocumentHolder.txtGroup": "Grup", + "PE.Views.DocumentHolder.txtGroupCharOver": "Karakter di atas teks", + "PE.Views.DocumentHolder.txtGroupCharUnder": "Karakter di bawah teks", + "PE.Views.DocumentHolder.txtHideBottom": "Sembunyikan pembatas bawah", + "PE.Views.DocumentHolder.txtHideBottomLimit": "Sembunyikan nilai batas bawah", + "PE.Views.DocumentHolder.txtHideCloseBracket": "Sembunyikan tanda kurung tutup", + "PE.Views.DocumentHolder.txtHideDegree": "Sembunyikan degree", + "PE.Views.DocumentHolder.txtHideHor": "Sembunyikan garis horizontal", + "PE.Views.DocumentHolder.txtHideLB": "Sembunyikan garis bawah kiri", + "PE.Views.DocumentHolder.txtHideLeft": "Sembunyikan pembatas kiri", + "PE.Views.DocumentHolder.txtHideLT": "Sembunyikan garis atas kiri", + "PE.Views.DocumentHolder.txtHideOpenBracket": "Sembunyikan tanda kurung buka", + "PE.Views.DocumentHolder.txtHidePlaceholder": "Sembunyikan placeholder", + "PE.Views.DocumentHolder.txtHideRight": "Sembunyikan pembatas kanan", + "PE.Views.DocumentHolder.txtHideTop": "Sembunyikan pembatas atas", + "PE.Views.DocumentHolder.txtHideTopLimit": "Sembunyikan nilai batas atas", + "PE.Views.DocumentHolder.txtHideVer": "Sembunyikan garis vertikal", + "PE.Views.DocumentHolder.txtIncreaseArg": "Tingkatkan ukuran argumen", + "PE.Views.DocumentHolder.txtInsertArgAfter": "Sisipkan argumen setelah", + "PE.Views.DocumentHolder.txtInsertArgBefore": "Sisipkan argumen sebelum", + "PE.Views.DocumentHolder.txtInsertBreak": "Sisipkan break manual", + "PE.Views.DocumentHolder.txtInsertEqAfter": "Sisipkan persamaan setelah", + "PE.Views.DocumentHolder.txtInsertEqBefore": "Sisipkan persamaan sebelum", + "PE.Views.DocumentHolder.txtKeepTextOnly": "Pertahankan hanya teks", + "PE.Views.DocumentHolder.txtLimitChange": "Ganti lokasi limit", + "PE.Views.DocumentHolder.txtLimitOver": "Batasi di atas teks", + "PE.Views.DocumentHolder.txtLimitUnder": "Batasi di bawah teks", + "PE.Views.DocumentHolder.txtMatchBrackets": "Sesuaikan tanda kurung dengan tinggi argumen", + "PE.Views.DocumentHolder.txtMatrixAlign": "Rata matriks", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Pindah slide ke Akhir", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Pindah slide ke Awal", + "PE.Views.DocumentHolder.txtNewSlide": "Slide Baru", + "PE.Views.DocumentHolder.txtOverbar": "Bar di atas teks", + "PE.Views.DocumentHolder.txtPasteDestFormat": "Gunakan tema destinasi", + "PE.Views.DocumentHolder.txtPastePicture": "Gambar", + "PE.Views.DocumentHolder.txtPasteSourceFormat": "Pertahankan formatting sumber", + "PE.Views.DocumentHolder.txtPressLink": "Tekan Ctrl dan klik link", + "PE.Views.DocumentHolder.txtPreview": "Mulai slideshow", + "PE.Views.DocumentHolder.txtPrintSelection": "Print Pilihan", + "PE.Views.DocumentHolder.txtRemFractionBar": "Hilangkan bar pecahan", + "PE.Views.DocumentHolder.txtRemLimit": "Hilangkan limit", + "PE.Views.DocumentHolder.txtRemoveAccentChar": "Hilangkan aksen karakter", + "PE.Views.DocumentHolder.txtRemoveBar": "Hilangkan diagram batang", + "PE.Views.DocumentHolder.txtRemScripts": "Hilangkan skrip", + "PE.Views.DocumentHolder.txtRemSubscript": "Hilangkan subscript", + "PE.Views.DocumentHolder.txtRemSuperscript": "Hilangkan superscript", + "PE.Views.DocumentHolder.txtResetLayout": "Reset Slide", + "PE.Views.DocumentHolder.txtScriptsAfter": "Scripts setelah teks", + "PE.Views.DocumentHolder.txtScriptsBefore": "Scripts sebelum teks", + "PE.Views.DocumentHolder.txtSelectAll": "Pilih semua", + "PE.Views.DocumentHolder.txtShowBottomLimit": "Tampilkan batas bawah", + "PE.Views.DocumentHolder.txtShowCloseBracket": "Tampilkan kurung penutup", + "PE.Views.DocumentHolder.txtShowDegree": "Tampilkan degree", + "PE.Views.DocumentHolder.txtShowOpenBracket": "Tampilkan kurung pembuka", + "PE.Views.DocumentHolder.txtShowPlaceholder": "Tampilkan placeholder", + "PE.Views.DocumentHolder.txtShowTopLimit": "Tampilkan batas atas", "PE.Views.DocumentHolder.txtSlide": "Slide", + "PE.Views.DocumentHolder.txtSlideHide": "Sembunyikan Slide", + "PE.Views.DocumentHolder.txtStretchBrackets": "Regangkan dalam kurung", "PE.Views.DocumentHolder.txtTop": "Atas", - "PE.Views.DocumentHolder.txtUngroup": "Ungroup", - "PE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", - "PE.Views.DocumentPreview.goToSlideText": "Go to Slide", - "PE.Views.DocumentPreview.slideIndexText": "Slide {0} of {1}", - "PE.Views.DocumentPreview.txtClose": "Close Preview", - "PE.Views.DocumentPreview.txtExitFullScreen": "Exit Full Screen", - "PE.Views.DocumentPreview.txtFinalMessage": "The end of slide preview. Click to exit.", - "PE.Views.DocumentPreview.txtFullScreen": "Full Screen", - "PE.Views.DocumentPreview.txtNext": "Next Slide", - "PE.Views.DocumentPreview.txtPageNumInvalid": "Invalid slide number", - "PE.Views.DocumentPreview.txtPause": "Pause Presentation", - "PE.Views.DocumentPreview.txtPlay": "Start Presentation", - "PE.Views.DocumentPreview.txtPrev": "Previous Slide", + "PE.Views.DocumentHolder.txtUnderbar": "Bar di bawah teks", + "PE.Views.DocumentHolder.txtUngroup": "Pisahkan dari grup", + "PE.Views.DocumentHolder.txtWarnUrl": "Klik link ini bisa berbahaya untuk perangkat dan data Anda.
Apakah Anda ingin tetap lanjut?", + "PE.Views.DocumentHolder.vertAlignText": "Perataan Vertikal", + "PE.Views.DocumentPreview.goToSlideText": "Pergi ke Slide", + "PE.Views.DocumentPreview.slideIndexText": "Slide {0} dari {1}", + "PE.Views.DocumentPreview.txtClose": "Tutup slideshow", + "PE.Views.DocumentPreview.txtEndSlideshow": "Akhir slideshow", + "PE.Views.DocumentPreview.txtExitFullScreen": "Keluar layar penuh", + "PE.Views.DocumentPreview.txtFinalMessage": "Akhir dari preview slide. Klik untuk keluar.", + "PE.Views.DocumentPreview.txtFullScreen": "Layar penuh", + "PE.Views.DocumentPreview.txtNext": "Slide berikutnya", + "PE.Views.DocumentPreview.txtPageNumInvalid": "Nomor slide tidak tepat", + "PE.Views.DocumentPreview.txtPause": "Pause presentasi", + "PE.Views.DocumentPreview.txtPlay": "Mulai presentasi", + "PE.Views.DocumentPreview.txtPrev": "Slide sebelumnya", "PE.Views.DocumentPreview.txtReset": "Atur ulang", - "PE.Views.FileMenu.btnAboutCaption": "About", - "PE.Views.FileMenu.btnBackCaption": "Go to Documents", - "PE.Views.FileMenu.btnCreateNewCaption": "Create New", - "PE.Views.FileMenu.btnDownloadCaption": "Download as...", - "PE.Views.FileMenu.btnHelpCaption": "Help...", - "PE.Views.FileMenu.btnHistoryCaption": "Riwayat versi", - "PE.Views.FileMenu.btnInfoCaption": "Presentation Info...", - "PE.Views.FileMenu.btnPrintCaption": "Print", - "PE.Views.FileMenu.btnRecentFilesCaption": "Open Recent...", - "PE.Views.FileMenu.btnReturnCaption": "Back to Presentation", - "PE.Views.FileMenu.btnRightsCaption": "Access Rights...", - "PE.Views.FileMenu.btnSaveAsCaption": "Save as", - "PE.Views.FileMenu.btnSaveCaption": "Save", - "PE.Views.FileMenu.btnSettingsCaption": "Advanced Settings...", - "PE.Views.FileMenu.btnToEditCaption": "Edit Presentation", + "PE.Views.FileMenu.btnAboutCaption": "Tentang", + "PE.Views.FileMenu.btnBackCaption": "Buka Dokumen", + "PE.Views.FileMenu.btnCloseMenuCaption": "Tutup Menu", + "PE.Views.FileMenu.btnCreateNewCaption": "Buat Baru", + "PE.Views.FileMenu.btnDownloadCaption": "Unduh sebagai...", + "PE.Views.FileMenu.btnExitCaption": "Tutup", + "PE.Views.FileMenu.btnFileOpenCaption": "Buka...", + "PE.Views.FileMenu.btnHelpCaption": "Bantuan...", + "PE.Views.FileMenu.btnHistoryCaption": "Riwayat Versi", + "PE.Views.FileMenu.btnInfoCaption": "Info Presentasi...", + "PE.Views.FileMenu.btnPrintCaption": "Cetak", + "PE.Views.FileMenu.btnProtectCaption": "Proteksi", + "PE.Views.FileMenu.btnRecentFilesCaption": "Membuka yang Terbaru...", + "PE.Views.FileMenu.btnRenameCaption": "Ganti nama...", + "PE.Views.FileMenu.btnReturnCaption": "Kembali ke Presentasi", + "PE.Views.FileMenu.btnRightsCaption": "Hak Akses...", + "PE.Views.FileMenu.btnSaveAsCaption": "Simpan sebagai", + "PE.Views.FileMenu.btnSaveCaption": "Simpan", + "PE.Views.FileMenu.btnSaveCopyAsCaption": "Simpan Salinan sebagai...", + "PE.Views.FileMenu.btnSettingsCaption": "Pengaturan Lanjut...", + "PE.Views.FileMenu.btnToEditCaption": "Edit presentasi", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "Presentasi Kosong", "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Buat Baru", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Terapkan", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tambahkan penulis", - "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author", - "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Tambah teks", + "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplikasi", + "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Penyusun", + "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Ubah hak akses", "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Terakhir Dimodifikasi Oleh", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Terakhir Dimodifikasi", "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", - "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", - "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", + "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", + "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak", "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", - "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Presentation Title", + "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul", "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", - "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", - "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", + "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ubah hak akses", + "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Orang yang memiliki hak", "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan", - "PE.Views.FileMenuPanels.Settings.okButtonText": "Apply", - "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Turn on autosave", - "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", - "PE.Views.FileMenuPanels.Settings.strFast": "Fast", + "PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Dengan password", + "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteksi Presentasi", + "PE.Views.FileMenuPanels.ProtectDoc.strSignature": "Dengan tanda tangan", + "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit presentasi", + "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Perubahan akan menghilangkan tanda tangan dari presentasi.
Lanjutkan?", + "PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Presentasi ini diproteksi oleh password", + "PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Tandatangan valid sudah ditambahkan ke presentasi. Presentasi ini diproteksi untuk diedit.", + "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Beberapa tanda tangan digital di presentasi tidak valid atau tidak bisa diverifikasi. Presentasi ini diproteksi untuk diedit.", + "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Tampilkan tanda tangan", + "PE.Views.FileMenuPanels.Settings.okButtonText": "Terapkan", + "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode Edit Bersama", + "PE.Views.FileMenuPanels.Settings.strFast": "Cepat", "PE.Views.FileMenuPanels.Settings.strFontRender": "Contoh Huruf", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Turn on hieroglyphs", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Realtime Collaboration Changes", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Tambah versi ke penyimpanan setelah klik menu Siman atau Ctrl+S", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Pengaturan Macros", + "PE.Views.FileMenuPanels.Settings.strPaste": "Cut, copy, dan paste", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "Tampilkan tombol Opsi Paste ketika konten sedang dipaste", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", - "PE.Views.FileMenuPanels.Settings.strUnit": "Unit of Measurement", - "PE.Views.FileMenuPanels.Settings.strZoom": "Default Zoom Value", - "PE.Views.FileMenuPanels.Settings.text10Minutes": "Every 10 Minutes", - "PE.Views.FileMenuPanels.Settings.text30Minutes": "Every 30 Minutes", - "PE.Views.FileMenuPanels.Settings.text5Minutes": "Every 5 Minutes", - "PE.Views.FileMenuPanels.Settings.text60Minutes": "Every Hour", - "PE.Views.FileMenuPanels.Settings.textAlignGuides": "Alignment Guides", - "PE.Views.FileMenuPanels.Settings.textAutoSave": "Autosave", - "PE.Views.FileMenuPanels.Settings.textDisabled": "Disabled", - "PE.Views.FileMenuPanels.Settings.textMinute": "Every Minute", - "PE.Views.FileMenuPanels.Settings.txtAll": "View All", - "PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", + "PE.Views.FileMenuPanels.Settings.strTheme": "Tema interface", + "PE.Views.FileMenuPanels.Settings.strUnit": "Satuan Ukuran", + "PE.Views.FileMenuPanels.Settings.strZoom": "Skala Pembesaran Standar", + "PE.Views.FileMenuPanels.Settings.text10Minutes": "Tiap 10 Menit", + "PE.Views.FileMenuPanels.Settings.text30Minutes": "Tiap 30 Menit", + "PE.Views.FileMenuPanels.Settings.text5Minutes": "Tiap 5 Menit", + "PE.Views.FileMenuPanels.Settings.text60Minutes": "Tiap Jam", + "PE.Views.FileMenuPanels.Settings.textAlignGuides": "Panduan Penjajaran", + "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Recover otmoatis", + "PE.Views.FileMenuPanels.Settings.textAutoSave": "Simpan otomatis", + "PE.Views.FileMenuPanels.Settings.textDisabled": "Nonaktif", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Menyimpan versi intermedier", + "PE.Views.FileMenuPanels.Settings.textMinute": "Tiap Menit", + "PE.Views.FileMenuPanels.Settings.txtAll": "Lihat Semua", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opsi AutoCorrect...", + "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Mode cache default", + "PE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Fit Slide", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Sesuaikan Lebar", - "PE.Views.FileMenuPanels.Settings.txtInput": "Alternate Input", - "PE.Views.FileMenuPanels.Settings.txtLast": "View Last", + "PE.Views.FileMenuPanels.Settings.txtInch": "Inci", + "PE.Views.FileMenuPanels.Settings.txtInput": "Ganti Input", + "PE.Views.FileMenuPanels.Settings.txtLast": "Lihat yang Terakhir", "PE.Views.FileMenuPanels.Settings.txtMac": "sebagai OS X", "PE.Views.FileMenuPanels.Settings.txtNative": "Asli", - "PE.Views.FileMenuPanels.Settings.txtPt": "Point", + "PE.Views.FileMenuPanels.Settings.txtProofing": "Proofing", + "PE.Views.FileMenuPanels.Settings.txtPt": "Titik", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Aktifkan Semua", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktifkan semua macros tanpa notifikasi", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Periksa Ejaan", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Nonaktifkan Semua", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Nonaktifkan semua macros tanpa notifikasi", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Tampilkan Notifikasi", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Nonaktifkan semua macros dengan notifikasi", "PE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows", + "PE.Views.HeaderFooterDialog.applyAllText": "Terapkan untuk Semua", "PE.Views.HeaderFooterDialog.applyText": "Terapkan", + "PE.Views.HeaderFooterDialog.diffLanguage": "Anda tidak dapat menggunakan format tanggal dalam bahasa yang berbeda dari master slide.
Untuk mengubah master, klik 'Terapkan ke semua' bukan 'Terapkan'", "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Peringatan", + "PE.Views.HeaderFooterDialog.textDateTime": "Tanggal dan Jam", + "PE.Views.HeaderFooterDialog.textFixed": "Fixed", + "PE.Views.HeaderFooterDialog.textFooter": "Teks di footer", + "PE.Views.HeaderFooterDialog.textFormat": "Format", "PE.Views.HeaderFooterDialog.textLang": "Bahasa", + "PE.Views.HeaderFooterDialog.textNotTitle": "Jangan tampilkan di judul slide", "PE.Views.HeaderFooterDialog.textPreview": "Pratinjau", - "PE.Views.HyperlinkSettingsDialog.strDisplay": "Display", - "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link To", - "PE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment", - "PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter caption here", - "PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here", - "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here", - "PE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link", - "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slide In This Presentation", - "PE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text", - "PE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings", - "PE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required", - "PE.Views.HyperlinkSettingsDialog.txtFirst": "First Slide", - "PE.Views.HyperlinkSettingsDialog.txtLast": "Last Slide", - "PE.Views.HyperlinkSettingsDialog.txtNext": "Next Slide", - "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", - "PE.Views.HyperlinkSettingsDialog.txtPrev": "Previous Slide", + "PE.Views.HeaderFooterDialog.textSlideNum": "Nomor Slide", + "PE.Views.HeaderFooterDialog.textTitle": "Pengaturan Footer", + "PE.Views.HeaderFooterDialog.textUpdate": "Update secara otomatis", + "PE.Views.HyperlinkSettingsDialog.strDisplay": "Tampilan", + "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Tautkan dengan", + "PE.Views.HyperlinkSettingsDialog.textDefault": "Fragmen teks yang dipilih", + "PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Masukkan caption di sini", + "PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Masukkan link di sini", + "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Masukkan tooltip disini", + "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Tautan eksternal", + "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slide di Presentasi ini", + "PE.Views.HyperlinkSettingsDialog.textSlides": "Slide", + "PE.Views.HyperlinkSettingsDialog.textTipText": "Teks ScreenTip", + "PE.Views.HyperlinkSettingsDialog.textTitle": "Pengaturan Hyperlink", + "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Area ini dibutuhkan", + "PE.Views.HyperlinkSettingsDialog.txtFirst": "Slide Pertama", + "PE.Views.HyperlinkSettingsDialog.txtLast": "Slide Terakhir", + "PE.Views.HyperlinkSettingsDialog.txtNext": "Slide Berikutnya", + "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", + "PE.Views.HyperlinkSettingsDialog.txtPrev": "Slide sebelumnya", + "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Area ini dibatasi 2083 karakter", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Slide", - "PE.Views.ImageSettings.textAdvanced": "Show advanced settings", - "PE.Views.ImageSettings.textCropFill": "Isian", + "PE.Views.ImageSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "PE.Views.ImageSettings.textCrop": "Isian", + "PE.Views.ImageSettings.textCropFill": "Isi", + "PE.Views.ImageSettings.textCropFit": "Fit", + "PE.Views.ImageSettings.textCropToShape": "Crop menjadi bentuk", "PE.Views.ImageSettings.textEdit": "Sunting", - "PE.Views.ImageSettings.textFromFile": "From File", - "PE.Views.ImageSettings.textFromUrl": "From URL", - "PE.Views.ImageSettings.textHeight": "Height", - "PE.Views.ImageSettings.textInsert": "Replace Image", - "PE.Views.ImageSettings.textOriginalSize": "Default Size", - "PE.Views.ImageSettings.textSize": "Size", - "PE.Views.ImageSettings.textWidth": "Width", + "PE.Views.ImageSettings.textEditObject": "Edit Objek", + "PE.Views.ImageSettings.textFitSlide": "Fit Slide", + "PE.Views.ImageSettings.textFlip": "Flip", + "PE.Views.ImageSettings.textFromFile": "Dari File", + "PE.Views.ImageSettings.textFromStorage": "Dari Penyimpanan", + "PE.Views.ImageSettings.textFromUrl": "Dari URL", + "PE.Views.ImageSettings.textHeight": "Tinggi", + "PE.Views.ImageSettings.textHint270": "Rotasi 90° Berlawanan Jarum Jam", + "PE.Views.ImageSettings.textHint90": "Rotasi 90° Searah Jarum Jam", + "PE.Views.ImageSettings.textHintFlipH": "Flip Horizontal", + "PE.Views.ImageSettings.textHintFlipV": "Flip Vertikal", + "PE.Views.ImageSettings.textInsert": "Ganti Gambar", + "PE.Views.ImageSettings.textOriginalSize": "Ukuran Sebenarnya", + "PE.Views.ImageSettings.textRecentlyUsed": "Baru Digunakan", + "PE.Views.ImageSettings.textRotate90": "Rotasi 90°", + "PE.Views.ImageSettings.textRotation": "Rotasi", + "PE.Views.ImageSettings.textSize": "Ukuran", + "PE.Views.ImageSettings.textWidth": "Lebar", + "PE.Views.ImageSettingsAdvanced.textAlt": "Teks Alternatif", "PE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.ImageSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Judul", - "PE.Views.ImageSettingsAdvanced.textHeight": "Height", - "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Constant Proportions", - "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Default Size", + "PE.Views.ImageSettingsAdvanced.textAngle": "Sudut", + "PE.Views.ImageSettingsAdvanced.textFlipped": "Flipped", + "PE.Views.ImageSettingsAdvanced.textHeight": "Tinggi", + "PE.Views.ImageSettingsAdvanced.textHorizontally": "Secara Horizontal", + "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporsi Konstan", + "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Ukuran Sebenarnya", "PE.Views.ImageSettingsAdvanced.textPlacement": "Penempatan", - "PE.Views.ImageSettingsAdvanced.textPosition": "Position", - "PE.Views.ImageSettingsAdvanced.textSize": "Size", - "PE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings", - "PE.Views.ImageSettingsAdvanced.textWidth": "Width", - "PE.Views.LeftMenu.tipAbout": "About", + "PE.Views.ImageSettingsAdvanced.textPosition": "Posisi", + "PE.Views.ImageSettingsAdvanced.textRotation": "Rotasi", + "PE.Views.ImageSettingsAdvanced.textSize": "Ukuran", + "PE.Views.ImageSettingsAdvanced.textTitle": "Gambar - Pengaturan Lanjut", + "PE.Views.ImageSettingsAdvanced.textVertically": "Secara Vertikal", + "PE.Views.ImageSettingsAdvanced.textWidth": "Lebar", + "PE.Views.LeftMenu.tipAbout": "Tentang", "PE.Views.LeftMenu.tipChat": "Chat", - "PE.Views.LeftMenu.tipComments": "Comments", - "PE.Views.LeftMenu.tipSearch": "Search", - "PE.Views.LeftMenu.tipSlides": "Slides", - "PE.Views.LeftMenu.tipSupport": "Feedback & Support", - "PE.Views.LeftMenu.tipTitles": "Titles", - "PE.Views.ParagraphSettings.strLineHeight": "Line Spacing", - "PE.Views.ParagraphSettings.strParagraphSpacing": "Spacing", - "PE.Views.ParagraphSettings.strSpacingAfter": "After", - "PE.Views.ParagraphSettings.strSpacingBefore": "Before", - "PE.Views.ParagraphSettings.textAdvanced": "Show advanced settings", - "PE.Views.ParagraphSettings.textAt": "At", - "PE.Views.ParagraphSettings.textAtLeast": "At least", - "PE.Views.ParagraphSettings.textAuto": "Multiple", - "PE.Views.ParagraphSettings.textExact": "Exactly", - "PE.Views.ParagraphSettings.txtAutoText": "Auto", - "PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", - "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", - "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", + "PE.Views.LeftMenu.tipComments": "Komentar", + "PE.Views.LeftMenu.tipPlugins": "Plugins", + "PE.Views.LeftMenu.tipSearch": "Cari", + "PE.Views.LeftMenu.tipSlides": "Slide", + "PE.Views.LeftMenu.tipSupport": "Masukan & Dukungan", + "PE.Views.LeftMenu.tipTitles": "Judul", + "PE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPER", + "PE.Views.LeftMenu.txtLimit": "Batas Akses", + "PE.Views.LeftMenu.txtTrial": "MODE TRIAL", + "PE.Views.LeftMenu.txtTrialDev": "Mode Trial Developer", + "PE.Views.ParagraphSettings.strLineHeight": "Spasi Antar Baris", + "PE.Views.ParagraphSettings.strParagraphSpacing": "Spasi", + "PE.Views.ParagraphSettings.strSpacingAfter": "Sesudah", + "PE.Views.ParagraphSettings.strSpacingBefore": "Sebelum", + "PE.Views.ParagraphSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "PE.Views.ParagraphSettings.textAt": "Pada", + "PE.Views.ParagraphSettings.textAtLeast": "Sekurang-kurangnya", + "PE.Views.ParagraphSettings.textAuto": "Banyak", + "PE.Views.ParagraphSettings.textExact": "Persis", + "PE.Views.ParagraphSettings.txtAutoText": "Otomatis", + "PE.Views.ParagraphSettingsAdvanced.noTabs": "Tab yang ditentukan akan muncul pada bagian ini", + "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Huruf kapital semua", + "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Garis coret ganda", "PE.Views.ParagraphSettingsAdvanced.strIndent": "Indentasi", - "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Kiri", "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Spasi Antar Baris", - "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", + "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Kanan", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Setelah", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Sebelum", - "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", - "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Placement", - "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Spesial", + "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Huruf", + "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indentasi & Peletakan", + "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Huruf Ukuran Kecil", "PE.Views.ParagraphSettingsAdvanced.strSpacing": "Spasi", - "PE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough", - "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", - "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", + "PE.Views.ParagraphSettingsAdvanced.strStrike": "Coret ganda", + "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Subskrip", + "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superskrip", "PE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", - "PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", + "PE.Views.ParagraphSettingsAdvanced.textAlign": "Perataan", "PE.Views.ParagraphSettingsAdvanced.textAuto": "Banyak", - "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", - "PE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", - "PE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", + "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spasi Antar Karakter", + "PE.Views.ParagraphSettingsAdvanced.textDefault": "Tab Standar", + "PE.Views.ParagraphSettingsAdvanced.textEffects": "Efek", "PE.Views.ParagraphSettingsAdvanced.textExact": "Persis", "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", + "PE.Views.ParagraphSettingsAdvanced.textHanging": "Menggantung", "PE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", - "PE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", - "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", - "PE.Views.ParagraphSettingsAdvanced.textSet": "Specify", - "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center", - "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left", - "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", - "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", - "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", + "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(tidak ada)", + "PE.Views.ParagraphSettingsAdvanced.textRemove": "Hapus", + "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Hapus Semua", + "PE.Views.ParagraphSettingsAdvanced.textSet": "Tentukan", + "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Tengah", + "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "Kiri", + "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posisi Tab", + "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Kanan", + "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraf - Pengaturan Lanjut", "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", - "PE.Views.RightMenu.txtChartSettings": "Chart Settings", - "PE.Views.RightMenu.txtImageSettings": "Image Settings", - "PE.Views.RightMenu.txtParagraphSettings": "Text Settings", - "PE.Views.RightMenu.txtShapeSettings": "Shape Settings", - "PE.Views.RightMenu.txtSlideSettings": "Slide Settings", - "PE.Views.RightMenu.txtTableSettings": "Table Settings", - "PE.Views.RightMenu.txtTextArtSettings": "Text Art Settings", - "PE.Views.ShapeSettings.strBackground": "Background color", - "PE.Views.ShapeSettings.strChange": "Change Autoshape", - "PE.Views.ShapeSettings.strColor": "Color", - "PE.Views.ShapeSettings.strFill": "Fill", - "PE.Views.ShapeSettings.strForeground": "Foreground color", - "PE.Views.ShapeSettings.strPattern": "Pattern", - "PE.Views.ShapeSettings.strSize": "Size", - "PE.Views.ShapeSettings.strStroke": "Stroke", - "PE.Views.ShapeSettings.strTransparency": "Opacity", + "PE.Views.RightMenu.txtChartSettings": "Pengaturan Bagan", + "PE.Views.RightMenu.txtImageSettings": "Pengaturan Gambar", + "PE.Views.RightMenu.txtParagraphSettings": "Pengaturan Paragraf", + "PE.Views.RightMenu.txtShapeSettings": "Pengaturan Bentuk", + "PE.Views.RightMenu.txtSignatureSettings": "Pengaturan tanda tangan", + "PE.Views.RightMenu.txtSlideSettings": "Pengaturan slide", + "PE.Views.RightMenu.txtTableSettings": "Pengaturan Tabel", + "PE.Views.RightMenu.txtTextArtSettings": "Pengaturan Text Art", + "PE.Views.ShapeSettings.strBackground": "Warna latar", + "PE.Views.ShapeSettings.strChange": "Ubah Bentuk Otomatis", + "PE.Views.ShapeSettings.strColor": "Warna", + "PE.Views.ShapeSettings.strFill": "Isi", + "PE.Views.ShapeSettings.strForeground": "Warna latar depan", + "PE.Views.ShapeSettings.strPattern": "Pola", + "PE.Views.ShapeSettings.strShadow": "Tampilkan bayangan", + "PE.Views.ShapeSettings.strSize": "Ukuran", + "PE.Views.ShapeSettings.strStroke": "Garis", + "PE.Views.ShapeSettings.strTransparency": "Opasitas", "PE.Views.ShapeSettings.strType": "Tipe", - "PE.Views.ShapeSettings.textAdvanced": "Show advanced settings", - "PE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", - "PE.Views.ShapeSettings.textColor": "Color Fill", - "PE.Views.ShapeSettings.textDirection": "Direction", - "PE.Views.ShapeSettings.textEmptyPattern": "No Pattern", - "PE.Views.ShapeSettings.textFromFile": "From File", - "PE.Views.ShapeSettings.textFromUrl": "From URL", - "PE.Views.ShapeSettings.textGradient": "Gradient", - "PE.Views.ShapeSettings.textGradientFill": "Gradient Fill", - "PE.Views.ShapeSettings.textImageTexture": "Picture or Texture", - "PE.Views.ShapeSettings.textLinear": "Linear", - "PE.Views.ShapeSettings.textNoFill": "No Fill", - "PE.Views.ShapeSettings.textPatternFill": "Pattern", + "PE.Views.ShapeSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "PE.Views.ShapeSettings.textAngle": "Sudut", + "PE.Views.ShapeSettings.textBorderSizeErr": "Nilai yang dimasukkan tidak tepat.
Silakan masukkan nilai antara 0 pt dan 1584 pt.", + "PE.Views.ShapeSettings.textColor": "Warna Isi", + "PE.Views.ShapeSettings.textDirection": "Arah", + "PE.Views.ShapeSettings.textEmptyPattern": "Tidak ada Pola", + "PE.Views.ShapeSettings.textFlip": "Flip", + "PE.Views.ShapeSettings.textFromFile": "Dari File", + "PE.Views.ShapeSettings.textFromStorage": "Dari Penyimpanan", + "PE.Views.ShapeSettings.textFromUrl": "Dari URL", + "PE.Views.ShapeSettings.textGradient": "Gradien", + "PE.Views.ShapeSettings.textGradientFill": "Isian Gradien", + "PE.Views.ShapeSettings.textHint270": "Rotasi 90° Berlawanan Jarum Jam", + "PE.Views.ShapeSettings.textHint90": "Rotasi 90° Searah Jarum Jam", + "PE.Views.ShapeSettings.textHintFlipH": "Flip Horizontal", + "PE.Views.ShapeSettings.textHintFlipV": "Flip Vertikal", + "PE.Views.ShapeSettings.textImageTexture": "Gambar atau Tekstur", + "PE.Views.ShapeSettings.textLinear": "Linier", + "PE.Views.ShapeSettings.textNoFill": "Tidak ada Isian", + "PE.Views.ShapeSettings.textPatternFill": "Pola", "PE.Views.ShapeSettings.textPosition": "Posisi", "PE.Views.ShapeSettings.textRadial": "Radial", - "PE.Views.ShapeSettings.textSelectTexture": "Select", - "PE.Views.ShapeSettings.textStretch": "Stretch", - "PE.Views.ShapeSettings.textStyle": "Style", - "PE.Views.ShapeSettings.textTexture": "From Texture", - "PE.Views.ShapeSettings.textTile": "Tile", - "PE.Views.ShapeSettings.txtBrownPaper": "Brown Paper", - "PE.Views.ShapeSettings.txtCanvas": "Canvas", - "PE.Views.ShapeSettings.txtCarton": "Carton", - "PE.Views.ShapeSettings.txtDarkFabric": "Dark Fabric", - "PE.Views.ShapeSettings.txtGrain": "Grain", - "PE.Views.ShapeSettings.txtGranite": "Granite", - "PE.Views.ShapeSettings.txtGreyPaper": "Gray Paper", - "PE.Views.ShapeSettings.txtKnit": "Knit", - "PE.Views.ShapeSettings.txtLeather": "Leather", - "PE.Views.ShapeSettings.txtNoBorders": "No Line", - "PE.Views.ShapeSettings.txtPapyrus": "Papyrus", - "PE.Views.ShapeSettings.txtWood": "Wood", + "PE.Views.ShapeSettings.textRecentlyUsed": "Baru Digunakan", + "PE.Views.ShapeSettings.textRotate90": "Rotasi 90°", + "PE.Views.ShapeSettings.textRotation": "Rotasi", + "PE.Views.ShapeSettings.textSelectImage": "Pilih Foto", + "PE.Views.ShapeSettings.textSelectTexture": "Pilih", + "PE.Views.ShapeSettings.textStretch": "Rentangkan", + "PE.Views.ShapeSettings.textStyle": "Model", + "PE.Views.ShapeSettings.textTexture": "Dari Tekstur", + "PE.Views.ShapeSettings.textTile": "Petak", + "PE.Views.ShapeSettings.tipAddGradientPoint": "Tambah titik gradien", + "PE.Views.ShapeSettings.tipRemoveGradientPoint": "Hilangkan titik gradien", + "PE.Views.ShapeSettings.txtBrownPaper": "Kertas Coklat", + "PE.Views.ShapeSettings.txtCanvas": "Kanvas", + "PE.Views.ShapeSettings.txtCarton": "Karton", + "PE.Views.ShapeSettings.txtDarkFabric": "Kain Gelap", + "PE.Views.ShapeSettings.txtGrain": "Butiran", + "PE.Views.ShapeSettings.txtGranite": "Granit", + "PE.Views.ShapeSettings.txtGreyPaper": "Kertas Abu-Abu", + "PE.Views.ShapeSettings.txtKnit": "Rajut", + "PE.Views.ShapeSettings.txtLeather": "Kulit", + "PE.Views.ShapeSettings.txtNoBorders": "Tidak ada Garis", + "PE.Views.ShapeSettings.txtPapyrus": "Papirus", + "PE.Views.ShapeSettings.txtWood": "Kayu", "PE.Views.ShapeSettingsAdvanced.strColumns": "Kolom", - "PE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", + "PE.Views.ShapeSettingsAdvanced.strMargins": "Lapisan Teks", + "PE.Views.ShapeSettingsAdvanced.textAlt": "Teks Alternatif", "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.", "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Judul", - "PE.Views.ShapeSettingsAdvanced.textArrows": "Arrows", - "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size", - "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style", - "PE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", - "PE.Views.ShapeSettingsAdvanced.textBottom": "Bottom", - "PE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type", + "PE.Views.ShapeSettingsAdvanced.textAngle": "Sudut", + "PE.Views.ShapeSettingsAdvanced.textArrows": "Tanda panah", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "AutoFit", + "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Ukuran Mulai", + "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Gaya Mulai", + "PE.Views.ShapeSettingsAdvanced.textBevel": "Miring", + "PE.Views.ShapeSettingsAdvanced.textBottom": "Bawah", + "PE.Views.ShapeSettingsAdvanced.textCapType": "Tipe Cap", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Jumlah Kolom", - "PE.Views.ShapeSettingsAdvanced.textEndSize": "End Size", - "PE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style", - "PE.Views.ShapeSettingsAdvanced.textFlat": "Flat", - "PE.Views.ShapeSettingsAdvanced.textHeight": "Height", - "PE.Views.ShapeSettingsAdvanced.textJoinType": "Join Type", - "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Constant Proportions", - "PE.Views.ShapeSettingsAdvanced.textLeft": "Left", - "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Line Style", - "PE.Views.ShapeSettingsAdvanced.textMiter": "Miter", - "PE.Views.ShapeSettingsAdvanced.textRight": "Right", - "PE.Views.ShapeSettingsAdvanced.textRound": "Round", - "PE.Views.ShapeSettingsAdvanced.textSize": "Size", - "PE.Views.ShapeSettingsAdvanced.textSquare": "Square", - "PE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced Settings", - "PE.Views.ShapeSettingsAdvanced.textTop": "Top", - "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows", - "PE.Views.ShapeSettingsAdvanced.textWidth": "Width", - "PE.Views.ShapeSettingsAdvanced.txtNone": "None", + "PE.Views.ShapeSettingsAdvanced.textEndSize": "Ukuran Akhir", + "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Model Akhir", + "PE.Views.ShapeSettingsAdvanced.textFlat": "Datar", + "PE.Views.ShapeSettingsAdvanced.textFlipped": "Flipped", + "PE.Views.ShapeSettingsAdvanced.textHeight": "Tinggi", + "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Secara Horizontal", + "PE.Views.ShapeSettingsAdvanced.textJoinType": "Gabungkan Tipe", + "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporsi Konstan", + "PE.Views.ShapeSettingsAdvanced.textLeft": "Kiri", + "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Model Garis", + "PE.Views.ShapeSettingsAdvanced.textMiter": "Siku-siku", + "PE.Views.ShapeSettingsAdvanced.textNofit": "Jangan Autofit", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Ubah ukuran bentuk agar cocok ke teks", + "PE.Views.ShapeSettingsAdvanced.textRight": "Kanan", + "PE.Views.ShapeSettingsAdvanced.textRotation": "Rotasi", + "PE.Views.ShapeSettingsAdvanced.textRound": "Bulat", + "PE.Views.ShapeSettingsAdvanced.textShrink": "Shrink teks di overflow", + "PE.Views.ShapeSettingsAdvanced.textSize": "Ukuran", + "PE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing di antara kolom", + "PE.Views.ShapeSettingsAdvanced.textSquare": "Persegi", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "Kotak Teks", + "PE.Views.ShapeSettingsAdvanced.textTitle": "Bentuk - Pengaturan Lanjut", + "PE.Views.ShapeSettingsAdvanced.textTop": "Atas", + "PE.Views.ShapeSettingsAdvanced.textVertically": "Secara Vertikal", + "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Bobot & Panah", + "PE.Views.ShapeSettingsAdvanced.textWidth": "Lebar", + "PE.Views.ShapeSettingsAdvanced.txtNone": "Tidak ada", "PE.Views.SignatureSettings.notcriticalErrorTitle": "Peringatan", - "PE.Views.SlideSettings.strBackground": "Background color", - "PE.Views.SlideSettings.strColor": "Color", - "PE.Views.SlideSettings.strFill": "Fill", - "PE.Views.SlideSettings.strForeground": "Foreground color", - "PE.Views.SlideSettings.strPattern": "Pattern", + "PE.Views.SignatureSettings.strDelete": "Hilangkan Tandatangan", + "PE.Views.SignatureSettings.strDetails": "Detail Tanda Tangan", + "PE.Views.SignatureSettings.strInvalid": "Tanda tangan tidak valid", + "PE.Views.SignatureSettings.strSign": "Tandatangan", + "PE.Views.SignatureSettings.strSignature": "Tanda Tangan", + "PE.Views.SignatureSettings.strValid": "Tanda tangan valid", + "PE.Views.SignatureSettings.txtContinueEditing": "Tetap edit", + "PE.Views.SignatureSettings.txtEditWarning": "Perubahan akan menghilangkan tanda tangan dari presentasi.
Lanjutkan?", + "PE.Views.SignatureSettings.txtRemoveWarning": "Apakah Anda ingin menghilangkan tandatangan ini?
Proses tidak bisa dikembalikan.", + "PE.Views.SignatureSettings.txtSigned": "Tandatangan valid sudah ditambahkan ke presentasi. Presentasi ini diproteksi untuk diedit.", + "PE.Views.SignatureSettings.txtSignedInvalid": "Beberapa tanda tangan digital di presentasi tidak valid atau tidak bisa diverifikasi. Presentasi ini diproteksi untuk diedit.", + "PE.Views.SlideSettings.strBackground": "Warna latar", + "PE.Views.SlideSettings.strColor": "Warna", + "PE.Views.SlideSettings.strDateTime": "Tampilkan Tanggal dan Jam", + "PE.Views.SlideSettings.strFill": "Background", + "PE.Views.SlideSettings.strForeground": "Warna latar depan", + "PE.Views.SlideSettings.strPattern": "Pola", + "PE.Views.SlideSettings.strSlideNum": "Tampilkan Nomor Slide", "PE.Views.SlideSettings.strTransparency": "Opasitas", - "PE.Views.SlideSettings.textAdvanced": "Show advanced settings", - "PE.Views.SlideSettings.textColor": "Color Fill", - "PE.Views.SlideSettings.textDirection": "Direction", - "PE.Views.SlideSettings.textEmptyPattern": "No Pattern", - "PE.Views.SlideSettings.textFromFile": "From File", - "PE.Views.SlideSettings.textFromUrl": "From URL", - "PE.Views.SlideSettings.textGradient": "Gradient", - "PE.Views.SlideSettings.textGradientFill": "Gradient Fill", - "PE.Views.SlideSettings.textImageTexture": "Picture or Texture", - "PE.Views.SlideSettings.textLinear": "Linear", - "PE.Views.SlideSettings.textNoFill": "No Fill", - "PE.Views.SlideSettings.textPatternFill": "Pattern", + "PE.Views.SlideSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "PE.Views.SlideSettings.textAngle": "Sudut", + "PE.Views.SlideSettings.textColor": "Warna Isi", + "PE.Views.SlideSettings.textDirection": "Arah", + "PE.Views.SlideSettings.textEmptyPattern": "Tidak ada Pola", + "PE.Views.SlideSettings.textFromFile": "Dari File", + "PE.Views.SlideSettings.textFromStorage": "Dari Penyimpanan", + "PE.Views.SlideSettings.textFromUrl": "Dari URL", + "PE.Views.SlideSettings.textGradient": "Gradien", + "PE.Views.SlideSettings.textGradientFill": "Isian Gradien", + "PE.Views.SlideSettings.textImageTexture": "Gambar atau Tekstur", + "PE.Views.SlideSettings.textLinear": "Linier", + "PE.Views.SlideSettings.textNoFill": "Tidak ada Isian", + "PE.Views.SlideSettings.textPatternFill": "Pola", "PE.Views.SlideSettings.textPosition": "Posisi", "PE.Views.SlideSettings.textRadial": "Radial", - "PE.Views.SlideSettings.textReset": "Reset Changes", - "PE.Views.SlideSettings.textSelectTexture": "Select", - "PE.Views.SlideSettings.textStretch": "Stretch", - "PE.Views.SlideSettings.textStyle": "Style", - "PE.Views.SlideSettings.textTexture": "From Texture", - "PE.Views.SlideSettings.textTile": "Tile", - "PE.Views.SlideSettings.txtBrownPaper": "Brown Paper", - "PE.Views.SlideSettings.txtCanvas": "Canvas", - "PE.Views.SlideSettings.txtCarton": "Carton", - "PE.Views.SlideSettings.txtDarkFabric": "Dark Fabric", - "PE.Views.SlideSettings.txtGrain": "Grain", - "PE.Views.SlideSettings.txtGranite": "Granite", - "PE.Views.SlideSettings.txtGreyPaper": "Gray Paper", - "PE.Views.SlideSettings.txtKnit": "Knit", - "PE.Views.SlideSettings.txtLeather": "Leather", - "PE.Views.SlideSettings.txtPapyrus": "Papyrus", - "PE.Views.SlideSettings.txtWood": "Wood", - "PE.Views.SlideSizeSettings.textHeight": "Height", - "PE.Views.SlideSizeSettings.textSlideSize": "Slide Size", - "PE.Views.SlideSizeSettings.textTitle": "Slide Size Settings", - "PE.Views.SlideSizeSettings.textWidth": "Width", - "PE.Views.SlideSizeSettings.txt35": "35 mm Slides", - "PE.Views.SlideSizeSettings.txtA3": "A3 Paper (297x420 mm)", - "PE.Views.SlideSizeSettings.txtA4": "A4 Paper (210x297 mm)", + "PE.Views.SlideSettings.textReset": "Reset Perubahan", + "PE.Views.SlideSettings.textSelectImage": "Pilih Foto", + "PE.Views.SlideSettings.textSelectTexture": "Pilih", + "PE.Views.SlideSettings.textStretch": "Rentangkan", + "PE.Views.SlideSettings.textStyle": "Model", + "PE.Views.SlideSettings.textTexture": "Dari Tekstur", + "PE.Views.SlideSettings.textTile": "Petak", + "PE.Views.SlideSettings.tipAddGradientPoint": "Tambah titik gradien", + "PE.Views.SlideSettings.tipRemoveGradientPoint": "Hilangkan titik gradien", + "PE.Views.SlideSettings.txtBrownPaper": "Kertas Coklat", + "PE.Views.SlideSettings.txtCanvas": "Kanvas", + "PE.Views.SlideSettings.txtCarton": "Karton", + "PE.Views.SlideSettings.txtDarkFabric": "Kain Gelap", + "PE.Views.SlideSettings.txtGrain": "Butiran", + "PE.Views.SlideSettings.txtGranite": "Granit", + "PE.Views.SlideSettings.txtGreyPaper": "Kertas Abu-Abu", + "PE.Views.SlideSettings.txtKnit": "Rajut", + "PE.Views.SlideSettings.txtLeather": "Kulit", + "PE.Views.SlideSettings.txtPapyrus": "Papirus", + "PE.Views.SlideSettings.txtWood": "Kayu", + "PE.Views.SlideshowSettings.textLoop": "Loop terus-menerus sampai 'Esc' ditekan", + "PE.Views.SlideshowSettings.textTitle": "Pengaturan Tampilan", + "PE.Views.SlideSizeSettings.strLandscape": "Landscape", + "PE.Views.SlideSizeSettings.strPortrait": "Portrait", + "PE.Views.SlideSizeSettings.textHeight": "Tinggi", + "PE.Views.SlideSizeSettings.textSlideOrientation": "Orientasi Slide", + "PE.Views.SlideSizeSettings.textSlideSize": "Ukuran Slide", + "PE.Views.SlideSizeSettings.textTitle": "Pengaturan Ukuran Slide", + "PE.Views.SlideSizeSettings.textWidth": "Lebar", + "PE.Views.SlideSizeSettings.txt35": "Slide 35 mm", + "PE.Views.SlideSizeSettings.txtA3": "Kertas A3 (297x420 mm)", + "PE.Views.SlideSizeSettings.txtA4": "Kertas A4 (210x297 mm)", "PE.Views.SlideSizeSettings.txtB4": "B4 (ICO) Paper (250x353 mm)", "PE.Views.SlideSizeSettings.txtB5": "B5 (ICO) Paper (176x250 mm)", "PE.Views.SlideSizeSettings.txtBanner": "Banner", - "PE.Views.SlideSizeSettings.txtCustom": "Custom", + "PE.Views.SlideSizeSettings.txtCustom": "Khusus", "PE.Views.SlideSizeSettings.txtLedger": "Ledger Paper (11x17 in)", "PE.Views.SlideSizeSettings.txtLetter": "Letter Paper (8.5x11 in)", "PE.Views.SlideSizeSettings.txtOverhead": "Overhead", "PE.Views.SlideSizeSettings.txtStandard": "Standard (4:3)", - "PE.Views.Statusbar.goToPageText": "Go to Slide", - "PE.Views.Statusbar.pageIndexText": "Slide {0} of {1}", - "PE.Views.Statusbar.tipAccessRights": "Manage document access rights", + "PE.Views.SlideSizeSettings.txtWidescreen": "Layar lebar", + "PE.Views.Statusbar.goToPageText": "Pergi ke Slide", + "PE.Views.Statusbar.pageIndexText": "Slide {0} dari {1}", + "PE.Views.Statusbar.textShowBegin": "Tampilkan dari Awal", + "PE.Views.Statusbar.textShowCurrent": "Tampilkan dari Slide Saat Ini", + "PE.Views.Statusbar.textShowPresenterView": "Tampilkan Tampilan Presenter", + "PE.Views.Statusbar.tipAccessRights": "Atur perizinan akses dokumen", "PE.Views.Statusbar.tipFitPage": "Fit Slide", - "PE.Views.Statusbar.tipFitWidth": "Fit Width", - "PE.Views.Statusbar.tipPreview": "Start Preview", + "PE.Views.Statusbar.tipFitWidth": "Sesuaikan Lebar", + "PE.Views.Statusbar.tipPreview": "Mulai slideshow", "PE.Views.Statusbar.tipSetLang": "Atur Bahasa Teks", - "PE.Views.Statusbar.tipZoomFactor": "Magnification", - "PE.Views.Statusbar.tipZoomIn": "Zoom In", - "PE.Views.Statusbar.tipZoomOut": "Zoom Out", - "PE.Views.Statusbar.txtPageNumInvalid": "Invalid slide number", - "PE.Views.TableSettings.deleteColumnText": "Delete Column", - "PE.Views.TableSettings.deleteRowText": "Delete Row", - "PE.Views.TableSettings.deleteTableText": "Delete Table", - "PE.Views.TableSettings.insertColumnLeftText": "Insert Column Left", - "PE.Views.TableSettings.insertColumnRightText": "Insert Column Right", - "PE.Views.TableSettings.insertRowAboveText": "Insert Row Above", - "PE.Views.TableSettings.insertRowBelowText": "Insert Row Below", - "PE.Views.TableSettings.mergeCellsText": "Merge Cells", - "PE.Views.TableSettings.selectCellText": "Select Cell", - "PE.Views.TableSettings.selectColumnText": "Select Column", - "PE.Views.TableSettings.selectRowText": "Select Row", - "PE.Views.TableSettings.selectTableText": "Select Table", - "PE.Views.TableSettings.splitCellsText": "Split Cell...", - "PE.Views.TableSettings.splitCellTitleText": "Split Cell", - "PE.Views.TableSettings.textAdvanced": "Show advanced settings", - "PE.Views.TableSettings.textBackColor": "Background color", - "PE.Views.TableSettings.textBanded": "Banded", - "PE.Views.TableSettings.textBorderColor": "Color", - "PE.Views.TableSettings.textBorders": "Borders Style", - "PE.Views.TableSettings.textColumns": "Columns", - "PE.Views.TableSettings.textEdit": "Rows & Columns", - "PE.Views.TableSettings.textEmptyTemplate": "No templates", - "PE.Views.TableSettings.textFirst": "First", + "PE.Views.Statusbar.tipZoomFactor": "Pembesaran", + "PE.Views.Statusbar.tipZoomIn": "Perbesar", + "PE.Views.Statusbar.tipZoomOut": "Perkecil", + "PE.Views.Statusbar.txtPageNumInvalid": "Nomor slide tidak tepat", + "PE.Views.TableSettings.deleteColumnText": "Hapus Kolom", + "PE.Views.TableSettings.deleteRowText": "Hapus Baris", + "PE.Views.TableSettings.deleteTableText": "Hapus Tabel", + "PE.Views.TableSettings.insertColumnLeftText": "Sisipkan Kolom di Kiri", + "PE.Views.TableSettings.insertColumnRightText": "Sisipkan Kolom di Kanan", + "PE.Views.TableSettings.insertRowAboveText": "Sisipkan Baris di Atas", + "PE.Views.TableSettings.insertRowBelowText": "Sisipkan Baris di Bawah", + "PE.Views.TableSettings.mergeCellsText": "Gabungkan Sel", + "PE.Views.TableSettings.selectCellText": "Pilih Sel", + "PE.Views.TableSettings.selectColumnText": "Pilih Kolom", + "PE.Views.TableSettings.selectRowText": "Pilih Baris", + "PE.Views.TableSettings.selectTableText": "Pilih Tabel", + "PE.Views.TableSettings.splitCellsText": "Pisahkan Sel...", + "PE.Views.TableSettings.splitCellTitleText": "Pisahkan Sel", + "PE.Views.TableSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "PE.Views.TableSettings.textBackColor": "Warna latar", + "PE.Views.TableSettings.textBanded": "Bergaris", + "PE.Views.TableSettings.textBorderColor": "Warna", + "PE.Views.TableSettings.textBorders": "Gaya Pembatas", + "PE.Views.TableSettings.textCellSize": "Ukuran Sel", + "PE.Views.TableSettings.textColumns": "Kolom", + "PE.Views.TableSettings.textDistributeCols": "Distribusikan kolom", + "PE.Views.TableSettings.textDistributeRows": "Distribusikan baris", + "PE.Views.TableSettings.textEdit": "Baris & Kolom", + "PE.Views.TableSettings.textEmptyTemplate": "Tidak ada template", + "PE.Views.TableSettings.textFirst": "Pertama", "PE.Views.TableSettings.textHeader": "Header", - "PE.Views.TableSettings.textHeight": "Ketinggian", - "PE.Views.TableSettings.textLast": "Last", - "PE.Views.TableSettings.textRows": "Rows", - "PE.Views.TableSettings.textSelectBorders": "Select borders you want to change applying style chosen above", - "PE.Views.TableSettings.textTemplate": "Select From Template", + "PE.Views.TableSettings.textHeight": "Tinggi", + "PE.Views.TableSettings.textLast": "Terakhir", + "PE.Views.TableSettings.textRows": "Baris", + "PE.Views.TableSettings.textSelectBorders": "Pilih pembatas yang ingin Anda ubah dengan menerarpkan model yang telah dipilih di atas", + "PE.Views.TableSettings.textTemplate": "Pilih Dari Template", "PE.Views.TableSettings.textTotal": "Total", "PE.Views.TableSettings.textWidth": "Lebar", - "PE.Views.TableSettings.tipAll": "Set Outer Border and All Inner Lines", - "PE.Views.TableSettings.tipBottom": "Set Outer Bottom Border Only", - "PE.Views.TableSettings.tipInner": "Set Inner Lines Only", - "PE.Views.TableSettings.tipInnerHor": "Set Horizontal Inner Lines Only", - "PE.Views.TableSettings.tipInnerVert": "Set Vertical Inner Lines Only", - "PE.Views.TableSettings.tipLeft": "Set Outer Left Border Only", - "PE.Views.TableSettings.tipNone": "Set No Borders", - "PE.Views.TableSettings.tipOuter": "Set Outer Border Only", - "PE.Views.TableSettings.tipRight": "Set Outer Right Border Only", - "PE.Views.TableSettings.tipTop": "Set Outer Top Border Only", - "PE.Views.TableSettings.txtNoBorders": "No borders", + "PE.Views.TableSettings.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam", + "PE.Views.TableSettings.tipBottom": "Buat Pembatas Bawah-Luar Saja", + "PE.Views.TableSettings.tipInner": "Buat Garis Dalam Saja", + "PE.Views.TableSettings.tipInnerHor": "Buat Garis Horisontal Dalam Saja", + "PE.Views.TableSettings.tipInnerVert": "Buat Garis Dalam Vertikal Saja", + "PE.Views.TableSettings.tipLeft": "Buat Pembatas Kiri-Luar Saja", + "PE.Views.TableSettings.tipNone": "Tanpa Pembatas", + "PE.Views.TableSettings.tipOuter": "Buat Pembatas Luar Saja", + "PE.Views.TableSettings.tipRight": "Buat Pembatas Kanan-Luar Saja", + "PE.Views.TableSettings.tipTop": "Buat Pembatas Atas-Luar Saja", + "PE.Views.TableSettings.txtNoBorders": "Tidak ada pembatas", + "PE.Views.TableSettings.txtTable_Accent": "Aksen", + "PE.Views.TableSettings.txtTable_DarkStyle": "Mode gelap", + "PE.Views.TableSettings.txtTable_LightStyle": "Gaya Terang", + "PE.Views.TableSettings.txtTable_MediumStyle": "Gaya Medium", + "PE.Views.TableSettings.txtTable_NoGrid": "Tanpa Grid", + "PE.Views.TableSettings.txtTable_NoStyle": "Tanpa Style", + "PE.Views.TableSettings.txtTable_TableGrid": "Gird Tabel", + "PE.Views.TableSettings.txtTable_ThemedStyle": "Themed Style", + "PE.Views.TableSettingsAdvanced.textAlt": "Teks Alternatif", "PE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi", + "PE.Views.TableSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.", "PE.Views.TableSettingsAdvanced.textAltTitle": "Judul", - "PE.Views.TableSettingsAdvanced.textBottom": "Bottom", - "PE.Views.TableSettingsAdvanced.textCheckMargins": "Use default margins", - "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Default Margins", - "PE.Views.TableSettingsAdvanced.textLeft": "Left", - "PE.Views.TableSettingsAdvanced.textMargins": "Cell Margins", - "PE.Views.TableSettingsAdvanced.textRight": "Right", - "PE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings", - "PE.Views.TableSettingsAdvanced.textTop": "Top", - "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margins", - "PE.Views.TextArtSettings.strBackground": "Background color", - "PE.Views.TextArtSettings.strColor": "Color", - "PE.Views.TextArtSettings.strFill": "Fill", - "PE.Views.TextArtSettings.strForeground": "Foreground color", - "PE.Views.TextArtSettings.strPattern": "Pattern", - "PE.Views.TextArtSettings.strSize": "Size", - "PE.Views.TextArtSettings.strStroke": "Stroke", - "PE.Views.TextArtSettings.strTransparency": "Opacity", + "PE.Views.TableSettingsAdvanced.textBottom": "Bawah", + "PE.Views.TableSettingsAdvanced.textCheckMargins": "Gunakan margin standar", + "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Margin Default", + "PE.Views.TableSettingsAdvanced.textLeft": "Kiri", + "PE.Views.TableSettingsAdvanced.textMargins": "Margin Sel", + "PE.Views.TableSettingsAdvanced.textRight": "Kanan", + "PE.Views.TableSettingsAdvanced.textTitle": "Tabel - Pengaturan Lanjut", + "PE.Views.TableSettingsAdvanced.textTop": "Atas", + "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margin", + "PE.Views.TextArtSettings.strBackground": "Warna latar", + "PE.Views.TextArtSettings.strColor": "Warna", + "PE.Views.TextArtSettings.strFill": "Isi", + "PE.Views.TextArtSettings.strForeground": "Warna latar depan", + "PE.Views.TextArtSettings.strPattern": "Pola", + "PE.Views.TextArtSettings.strSize": "Ukuran", + "PE.Views.TextArtSettings.strStroke": "Garis", + "PE.Views.TextArtSettings.strTransparency": "Opasitas", "PE.Views.TextArtSettings.strType": "Tipe", - "PE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", - "PE.Views.TextArtSettings.textColor": "Color Fill", - "PE.Views.TextArtSettings.textDirection": "Direction", - "PE.Views.TextArtSettings.textEmptyPattern": "No Pattern", - "PE.Views.TextArtSettings.textFromFile": "From File", - "PE.Views.TextArtSettings.textFromUrl": "From URL", - "PE.Views.TextArtSettings.textGradient": "Gradient", - "PE.Views.TextArtSettings.textGradientFill": "Gradient Fill", - "PE.Views.TextArtSettings.textImageTexture": "Picture or Texture", - "PE.Views.TextArtSettings.textLinear": "Linear", - "PE.Views.TextArtSettings.textNoFill": "No Fill", - "PE.Views.TextArtSettings.textPatternFill": "Pattern", + "PE.Views.TextArtSettings.textAngle": "Sudut", + "PE.Views.TextArtSettings.textBorderSizeErr": "Nilai yang dimasukkan tidak tepat.
Silakan masukkan nilai antara 0 pt dan 1584 pt.", + "PE.Views.TextArtSettings.textColor": "Warna Isi", + "PE.Views.TextArtSettings.textDirection": "Arah", + "PE.Views.TextArtSettings.textEmptyPattern": "Tidak ada Pola", + "PE.Views.TextArtSettings.textFromFile": "Dari File", + "PE.Views.TextArtSettings.textFromUrl": "Dari URL", + "PE.Views.TextArtSettings.textGradient": "Gradien", + "PE.Views.TextArtSettings.textGradientFill": "Isian Gradien", + "PE.Views.TextArtSettings.textImageTexture": "Gambar atau Tekstur", + "PE.Views.TextArtSettings.textLinear": "Linier", + "PE.Views.TextArtSettings.textNoFill": "Tidak ada Isian", + "PE.Views.TextArtSettings.textPatternFill": "Pola", "PE.Views.TextArtSettings.textPosition": "Posisi", "PE.Views.TextArtSettings.textRadial": "Radial", - "PE.Views.TextArtSettings.textSelectTexture": "Select", - "PE.Views.TextArtSettings.textStretch": "Stretch", - "PE.Views.TextArtSettings.textStyle": "Style", + "PE.Views.TextArtSettings.textSelectTexture": "Pilih", + "PE.Views.TextArtSettings.textStretch": "Rentangkan", + "PE.Views.TextArtSettings.textStyle": "Model", "PE.Views.TextArtSettings.textTemplate": "Template", - "PE.Views.TextArtSettings.textTexture": "From Texture", - "PE.Views.TextArtSettings.textTile": "Tile", + "PE.Views.TextArtSettings.textTexture": "Dari Tekstur", + "PE.Views.TextArtSettings.textTile": "Petak", "PE.Views.TextArtSettings.textTransform": "Transform", - "PE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", - "PE.Views.TextArtSettings.txtCanvas": "Canvas", - "PE.Views.TextArtSettings.txtCarton": "Carton", - "PE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric", - "PE.Views.TextArtSettings.txtGrain": "Grain", - "PE.Views.TextArtSettings.txtGranite": "Granite", - "PE.Views.TextArtSettings.txtGreyPaper": "Gray Paper", - "PE.Views.TextArtSettings.txtKnit": "Knit", - "PE.Views.TextArtSettings.txtLeather": "Leather", - "PE.Views.TextArtSettings.txtNoBorders": "No Line", - "PE.Views.TextArtSettings.txtPapyrus": "Papyrus", - "PE.Views.TextArtSettings.txtWood": "Wood", - "PE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar", + "PE.Views.TextArtSettings.tipAddGradientPoint": "Tambah titik gradien", + "PE.Views.TextArtSettings.tipRemoveGradientPoint": "Hilangkan titik gradien", + "PE.Views.TextArtSettings.txtBrownPaper": "Kertas Coklat", + "PE.Views.TextArtSettings.txtCanvas": "Kanvas", + "PE.Views.TextArtSettings.txtCarton": "Karton", + "PE.Views.TextArtSettings.txtDarkFabric": "Kain Gelap", + "PE.Views.TextArtSettings.txtGrain": "Butiran", + "PE.Views.TextArtSettings.txtGranite": "Granit", + "PE.Views.TextArtSettings.txtGreyPaper": "Kertas Abu-Abu", + "PE.Views.TextArtSettings.txtKnit": "Rajut", + "PE.Views.TextArtSettings.txtLeather": "Kulit", + "PE.Views.TextArtSettings.txtNoBorders": "Tidak ada Garis", + "PE.Views.TextArtSettings.txtPapyrus": "Papirus", + "PE.Views.TextArtSettings.txtWood": "Kayu", + "PE.Views.Toolbar.capAddSlide": "Tambahkan Slide", + "PE.Views.Toolbar.capBtnAddComment": "Tambahkan Komentar", "PE.Views.Toolbar.capBtnComment": "Komentar", - "PE.Views.Toolbar.capInsertChart": "Bagan", + "PE.Views.Toolbar.capBtnDateTime": "Tanggal & Jam", + "PE.Views.Toolbar.capBtnInsHeader": "Footer", + "PE.Views.Toolbar.capBtnInsSymbol": "Simbol", + "PE.Views.Toolbar.capBtnSlideNum": "Nomor Slide", + "PE.Views.Toolbar.capInsertAudio": "Audio", + "PE.Views.Toolbar.capInsertChart": "Grafik", + "PE.Views.Toolbar.capInsertEquation": "Persamaan", + "PE.Views.Toolbar.capInsertHyperlink": "Hyperlink", "PE.Views.Toolbar.capInsertImage": "Gambar", + "PE.Views.Toolbar.capInsertShape": "Bentuk", "PE.Views.Toolbar.capInsertTable": "Tabel", + "PE.Views.Toolbar.capInsertText": "Kotak Teks", + "PE.Views.Toolbar.capInsertVideo": "Video", "PE.Views.Toolbar.capTabFile": "File", "PE.Views.Toolbar.capTabHome": "Halaman Depan", "PE.Views.Toolbar.capTabInsert": "Sisipkan", - "PE.Views.Toolbar.mniCustomTable": "Insert Custom Table", - "PE.Views.Toolbar.mniImageFromFile": "Picture from File", - "PE.Views.Toolbar.mniImageFromUrl": "Picture from URL", - "PE.Views.Toolbar.mniSlideAdvanced": "Advanced Settings", + "PE.Views.Toolbar.mniCapitalizeWords": "Huruf Kapital Setiap Kata", + "PE.Views.Toolbar.mniCustomTable": "Sisipkan Tabel Khusus", + "PE.Views.Toolbar.mniImageFromFile": "Gambar dari File", + "PE.Views.Toolbar.mniImageFromStorage": "Gambar dari Penyimpanan", + "PE.Views.Toolbar.mniImageFromUrl": "Gambar dari URL", + "PE.Views.Toolbar.mniLowerCase": "huruf kecil", + "PE.Views.Toolbar.mniSentenceCase": "Case kalimat.", + "PE.Views.Toolbar.mniSlideAdvanced": "Pengaturan Lanjut", "PE.Views.Toolbar.mniSlideStandard": "Standard (4:3)", "PE.Views.Toolbar.mniSlideWide": "Widescreen (16:9)", + "PE.Views.Toolbar.mniToggleCase": "tOGGLE cASE", + "PE.Views.Toolbar.mniUpperCase": "HURUFBESAR", "PE.Views.Toolbar.strMenuNoFill": "Tidak ada Isian", - "PE.Views.Toolbar.textAlignBottom": "Align text to the bottom", - "PE.Views.Toolbar.textAlignCenter": "Center text", + "PE.Views.Toolbar.textAlignBottom": "Ratakan teks ke bawah", + "PE.Views.Toolbar.textAlignCenter": "Teks tengah", "PE.Views.Toolbar.textAlignJust": "Justify", - "PE.Views.Toolbar.textAlignLeft": "Align text left", - "PE.Views.Toolbar.textAlignMiddle": "Align text to the middle", - "PE.Views.Toolbar.textAlignRight": "Align text right", - "PE.Views.Toolbar.textAlignTop": "Align text to the top", - "PE.Views.Toolbar.textArrangeBack": "Send to Background", - "PE.Views.Toolbar.textArrangeBackward": "Move Backward", - "PE.Views.Toolbar.textArrangeForward": "Move Forward", - "PE.Views.Toolbar.textArrangeFront": "Bring To Foreground", - "PE.Views.Toolbar.textBold": "Bold", - "PE.Views.Toolbar.textItalic": "Italic", - "PE.Views.Toolbar.textShapeAlignBottom": "Align Bottom", - "PE.Views.Toolbar.textShapeAlignCenter": "Align Center", - "PE.Views.Toolbar.textShapeAlignLeft": "Align Left", - "PE.Views.Toolbar.textShapeAlignMiddle": "Align Middle", - "PE.Views.Toolbar.textShapeAlignRight": "Align Right", - "PE.Views.Toolbar.textShapeAlignTop": "Align Top", - "PE.Views.Toolbar.textStrikeout": "Strikeout", - "PE.Views.Toolbar.textSubscript": "Subscript", - "PE.Views.Toolbar.textSuperscript": "Superscript", + "PE.Views.Toolbar.textAlignLeft": "Ratakan teks ke kiri", + "PE.Views.Toolbar.textAlignMiddle": "Ratakan teks ke tengan", + "PE.Views.Toolbar.textAlignRight": "Ratakan teks ke kanan", + "PE.Views.Toolbar.textAlignTop": "Ratakan teks ke atas", + "PE.Views.Toolbar.textArrangeBack": "Jalankan di Background", + "PE.Views.Toolbar.textArrangeBackward": "Mundurkan", + "PE.Views.Toolbar.textArrangeForward": "Majukan", + "PE.Views.Toolbar.textArrangeFront": "Tampilkan di Halaman Muka", + "PE.Views.Toolbar.textBold": "Tebal", + "PE.Views.Toolbar.textColumnsCustom": "Custom Kolom", + "PE.Views.Toolbar.textColumnsOne": "Satu Kolom", + "PE.Views.Toolbar.textColumnsThree": "Tiga Kolom", + "PE.Views.Toolbar.textColumnsTwo": "Dua Kolom", + "PE.Views.Toolbar.textItalic": "Miring", + "PE.Views.Toolbar.textListSettings": "List Pengaturan", + "PE.Views.Toolbar.textRecentlyUsed": "Baru Digunakan", + "PE.Views.Toolbar.textShapeAlignBottom": "Rata Bawah", + "PE.Views.Toolbar.textShapeAlignCenter": "Rata Tengah", + "PE.Views.Toolbar.textShapeAlignLeft": "Rata Kiri", + "PE.Views.Toolbar.textShapeAlignMiddle": "Rata di Tengah", + "PE.Views.Toolbar.textShapeAlignRight": "Rata Kanan", + "PE.Views.Toolbar.textShapeAlignTop": "Rata Atas", + "PE.Views.Toolbar.textShowBegin": "Tampilkan dari Awal", + "PE.Views.Toolbar.textShowCurrent": "Tampilkan dari Slide Saat Ini", + "PE.Views.Toolbar.textShowPresenterView": "Tampilkan Tampilan Presenter", + "PE.Views.Toolbar.textShowSettings": "Pengaturan Tampilan", + "PE.Views.Toolbar.textStrikeout": "Coret ganda", + "PE.Views.Toolbar.textSubscript": "Subskrip", + "PE.Views.Toolbar.textSuperscript": "Superskrip", + "PE.Views.Toolbar.textTabAnimation": "Animasi", + "PE.Views.Toolbar.textTabCollaboration": "Kolaborasi", "PE.Views.Toolbar.textTabFile": "File", "PE.Views.Toolbar.textTabHome": "Halaman Depan", "PE.Views.Toolbar.textTabInsert": "Sisipkan", + "PE.Views.Toolbar.textTabProtect": "Proteksi", + "PE.Views.Toolbar.textTabTransitions": "Transisi", "PE.Views.Toolbar.textTabView": "Lihat", - "PE.Views.Toolbar.textTitleError": "Error", - "PE.Views.Toolbar.textUnderline": "Underline", + "PE.Views.Toolbar.textTitleError": "Kesalahan", + "PE.Views.Toolbar.textUnderline": "Garis bawah", "PE.Views.Toolbar.tipAddSlide": "Add Slide", - "PE.Views.Toolbar.tipBack": "Back", + "PE.Views.Toolbar.tipBack": "Kembali", + "PE.Views.Toolbar.tipChangeCase": "Ubah case", "PE.Views.Toolbar.tipChangeChart": "Ubah Tipe Bagan", - "PE.Views.Toolbar.tipChangeSlide": "Change Slide Layout", - "PE.Views.Toolbar.tipClearStyle": "Clear Style", - "PE.Views.Toolbar.tipColorSchemas": "Change Color Scheme", - "PE.Views.Toolbar.tipCopy": "Copy", - "PE.Views.Toolbar.tipCopyStyle": "Copy Style", + "PE.Views.Toolbar.tipChangeSlide": "Ubah layout slide", + "PE.Views.Toolbar.tipClearStyle": "Hapus Model", + "PE.Views.Toolbar.tipColorSchemas": "Ubah Skema Warna", + "PE.Views.Toolbar.tipColumns": "Sisipkan kolom", + "PE.Views.Toolbar.tipCopy": "Salin", + "PE.Views.Toolbar.tipCopyStyle": "Salin Model", + "PE.Views.Toolbar.tipDateTime": "Sisipkan tanggal dan jam sekarang", "PE.Views.Toolbar.tipDecFont": "Perkecil Ukuran Huruf", - "PE.Views.Toolbar.tipDecPrLeft": "Decrease Indent", - "PE.Views.Toolbar.tipFontColor": "Font color", - "PE.Views.Toolbar.tipFontName": "Font Name", - "PE.Views.Toolbar.tipFontSize": "Font Size", - "PE.Views.Toolbar.tipHAligh": "Horizontal Align", + "PE.Views.Toolbar.tipDecPrLeft": "Kurangi Indentasi", + "PE.Views.Toolbar.tipEditHeader": "Edit footer", + "PE.Views.Toolbar.tipFontColor": "Warna Huruf", + "PE.Views.Toolbar.tipFontName": "Huruf", + "PE.Views.Toolbar.tipFontSize": "Ukuran Huruf", + "PE.Views.Toolbar.tipHAligh": "Rata horizontal", "PE.Views.Toolbar.tipHighlightColor": "Warna Sorot", "PE.Views.Toolbar.tipIncFont": "Perbesar Ukuran Huruf", - "PE.Views.Toolbar.tipIncPrLeft": "Increase Indent", - "PE.Views.Toolbar.tipInsertChart": "Insert Chart", + "PE.Views.Toolbar.tipIncPrLeft": "Tambahkan Indentasi", + "PE.Views.Toolbar.tipInsertChart": "Sisipkan Bagan", "PE.Views.Toolbar.tipInsertEquation": "Masukkan Persamaan", - "PE.Views.Toolbar.tipInsertHyperlink": "Add Hyperlink", - "PE.Views.Toolbar.tipInsertImage": "Insert Picture", - "PE.Views.Toolbar.tipInsertShape": "Insert Autoshape", - "PE.Views.Toolbar.tipInsertTable": "Insert Table", - "PE.Views.Toolbar.tipInsertText": "Insert Text", - "PE.Views.Toolbar.tipLineSpace": "Line Spacing", - "PE.Views.Toolbar.tipMarkers": "Bullets", - "PE.Views.Toolbar.tipNumbers": "Numbering", - "PE.Views.Toolbar.tipPaste": "Paste", - "PE.Views.Toolbar.tipPreview": "Start Preview", - "PE.Views.Toolbar.tipPrint": "Print", - "PE.Views.Toolbar.tipRedo": "Redo", - "PE.Views.Toolbar.tipSave": "Save", - "PE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", - "PE.Views.Toolbar.tipShapeAlign": "Align Shape", - "PE.Views.Toolbar.tipShapeArrange": "Arrange Shape", - "PE.Views.Toolbar.tipSlideSize": "Select Slide Size", - "PE.Views.Toolbar.tipSlideTheme": "Slide Theme", - "PE.Views.Toolbar.tipUndo": "Undo", - "PE.Views.Toolbar.tipVAligh": "Vertical Align", - "PE.Views.Toolbar.tipViewSettings": "View Settings", - "PE.Views.Toolbar.txtDistribHor": "Distribute Horizontally", - "PE.Views.Toolbar.txtDistribVert": "Distribute Vertically", - "PE.Views.Toolbar.txtGroup": "Group", + "PE.Views.Toolbar.tipInsertHyperlink": "Tambahkan hyperlink", + "PE.Views.Toolbar.tipInsertImage": "Sisipkan Gambar", + "PE.Views.Toolbar.tipInsertShape": "Sisipkan Bentuk Otomatis", + "PE.Views.Toolbar.tipInsertSymbol": "Sisipkan simbol", + "PE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel", + "PE.Views.Toolbar.tipInsertText": "Sisipkan Teks", + "PE.Views.Toolbar.tipInsertTextArt": "Sisipkan Text Art", + "PE.Views.Toolbar.tipInsertVideo": "Sisipkan video", + "PE.Views.Toolbar.tipLineSpace": "Spasi Antar Baris", + "PE.Views.Toolbar.tipMarkers": "Butir", + "PE.Views.Toolbar.tipMarkersArrow": "Butir panah", + "PE.Views.Toolbar.tipMarkersCheckmark": "Butir tanda centang", + "PE.Views.Toolbar.tipMarkersDash": "Titik putus-putus", + "PE.Views.Toolbar.tipMarkersFRhombus": "Butir belah ketupat isi", + "PE.Views.Toolbar.tipMarkersFRound": "Butir lingkaran isi", + "PE.Views.Toolbar.tipMarkersFSquare": "Butir persegi isi", + "PE.Views.Toolbar.tipMarkersHRound": "Butir bundar hollow", + "PE.Views.Toolbar.tipMarkersStar": "Butir bintang", + "PE.Views.Toolbar.tipNone": "Tidak ada", + "PE.Views.Toolbar.tipNumbers": "Penomoran", + "PE.Views.Toolbar.tipPaste": "Tempel", + "PE.Views.Toolbar.tipPreview": "Mulai slideshow", + "PE.Views.Toolbar.tipPrint": "Cetak", + "PE.Views.Toolbar.tipRedo": "Ulangi", + "PE.Views.Toolbar.tipSave": "Simpan", + "PE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan yang Anda buat agar dapat dilihat oleh pengguna lain", + "PE.Views.Toolbar.tipShapeAlign": "Ratakan bentuk", + "PE.Views.Toolbar.tipShapeArrange": "Atur bentuk", + "PE.Views.Toolbar.tipSlideNum": "Sisipkan nomor slide", + "PE.Views.Toolbar.tipSlideSize": "Pilih ukuran slide", + "PE.Views.Toolbar.tipSlideTheme": "Tema slide", + "PE.Views.Toolbar.tipUndo": "Batalkan", + "PE.Views.Toolbar.tipVAligh": "Rata vertikal", + "PE.Views.Toolbar.tipViewSettings": "Lihat Pengaturan", + "PE.Views.Toolbar.txtDistribHor": "Distribusikan Horizontal", + "PE.Views.Toolbar.txtDistribVert": "Distribusikan Vertikal", + "PE.Views.Toolbar.txtDuplicateSlide": "Duplikasi Slide", + "PE.Views.Toolbar.txtGroup": "Grup", + "PE.Views.Toolbar.txtObjectsAlign": "Ratakan Objek yang Dipilih", "PE.Views.Toolbar.txtScheme1": "Office", "PE.Views.Toolbar.txtScheme10": "Median", "PE.Views.Toolbar.txtScheme11": "Metro", - "PE.Views.Toolbar.txtScheme12": "Module", - "PE.Views.Toolbar.txtScheme13": "Opulent", - "PE.Views.Toolbar.txtScheme14": "Oriel", + "PE.Views.Toolbar.txtScheme12": "Modul", + "PE.Views.Toolbar.txtScheme13": "Mewah", + "PE.Views.Toolbar.txtScheme14": "Jendela Oriel", "PE.Views.Toolbar.txtScheme15": "Origin", - "PE.Views.Toolbar.txtScheme16": "Paper", - "PE.Views.Toolbar.txtScheme17": "Solstice", - "PE.Views.Toolbar.txtScheme18": "Technic", + "PE.Views.Toolbar.txtScheme16": "Kertas", + "PE.Views.Toolbar.txtScheme17": "Titik balik matahari", + "PE.Views.Toolbar.txtScheme18": "Teknik", "PE.Views.Toolbar.txtScheme19": "Trek", "PE.Views.Toolbar.txtScheme2": "Grayscale", "PE.Views.Toolbar.txtScheme20": "Urban", - "PE.Views.Toolbar.txtScheme21": "Verve", - "PE.Views.Toolbar.txtScheme3": "Apex", - "PE.Views.Toolbar.txtScheme4": "Aspect", - "PE.Views.Toolbar.txtScheme5": "Civic", - "PE.Views.Toolbar.txtScheme6": "Concourse", - "PE.Views.Toolbar.txtScheme7": "Equity", - "PE.Views.Toolbar.txtScheme8": "Flow", - "PE.Views.Toolbar.txtScheme9": "Foundry", - "PE.Views.Toolbar.txtUngroup": "Ungroup", + "PE.Views.Toolbar.txtScheme21": "Semangat", + "PE.Views.Toolbar.txtScheme22": "Office Baru", + "PE.Views.Toolbar.txtScheme3": "Puncak", + "PE.Views.Toolbar.txtScheme4": "Aspek", + "PE.Views.Toolbar.txtScheme5": "Kewargaan", + "PE.Views.Toolbar.txtScheme6": "Himpunan", + "PE.Views.Toolbar.txtScheme7": "Margin Sisa", + "PE.Views.Toolbar.txtScheme8": "Alur", + "PE.Views.Toolbar.txtScheme9": "Cetakan", + "PE.Views.Toolbar.txtSlideAlign": "Ratakan dengan slide", + "PE.Views.Toolbar.txtUngroup": "Pisahkan dari grup", + "PE.Views.Transitions.strDelay": "Delay", + "PE.Views.Transitions.strDuration": "Durasi", + "PE.Views.Transitions.strStartOnClick": "Mulai Saat Klik", + "PE.Views.Transitions.textBlack": "Through Black", "PE.Views.Transitions.textBottom": "Bawah", + "PE.Views.Transitions.textBottomLeft": "Kiri", + "PE.Views.Transitions.textBottomRight": "Bawah-Kanan", + "PE.Views.Transitions.textClock": "Jam", + "PE.Views.Transitions.textClockwise": "Searah Jarum Jam", + "PE.Views.Transitions.textCounterclockwise": "Berlawanan Jarum Jam", + "PE.Views.Transitions.textCover": "Cover", + "PE.Views.Transitions.textFade": "Pudar", + "PE.Views.Transitions.textHorizontalIn": "Horizontal Masuk", + "PE.Views.Transitions.textHorizontalOut": "Horizontal Keluar", "PE.Views.Transitions.textLeft": "Kiri", "PE.Views.Transitions.textNone": "Tidak ada", + "PE.Views.Transitions.textPush": "Tekan", "PE.Views.Transitions.textRight": "Kanan", + "PE.Views.Transitions.textSmoothly": "Dengan Mulus", + "PE.Views.Transitions.textSplit": "Split", "PE.Views.Transitions.textTop": "Atas", - "PE.Views.Transitions.textZoom": "Perbesar", + "PE.Views.Transitions.textTopLeft": "Atas-Kiri", + "PE.Views.Transitions.textTopRight": "Atas-Kanan", + "PE.Views.Transitions.textUnCover": "UnCover", + "PE.Views.Transitions.textVerticalIn": "Masuk Vertikal", + "PE.Views.Transitions.textVerticalOut": "Keluar Horizontal", + "PE.Views.Transitions.textWedge": "Wedge", + "PE.Views.Transitions.textWipe": "Wipe", + "PE.Views.Transitions.textZoom": "Pembesaran", "PE.Views.Transitions.textZoomIn": "Perbesar", "PE.Views.Transitions.textZoomOut": "Perkecil", + "PE.Views.Transitions.textZoomRotate": "Zoom dan Rotasi", + "PE.Views.Transitions.txtApplyToAll": "Terapkan untuk Semua Slide", "PE.Views.Transitions.txtParameters": "Parameter", "PE.Views.Transitions.txtPreview": "Pratinjau", + "PE.Views.Transitions.txtSec": "s", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Selalu tampilkan toolbar", + "PE.Views.ViewTab.textFitToSlide": "Fit Slide", "PE.Views.ViewTab.textFitToWidth": "Sesuaikan Lebar", - "PE.Views.ViewTab.textZoom": "Perbesar" + "PE.Views.ViewTab.textInterfaceTheme": "Tema interface", + "PE.Views.ViewTab.textNotes": "Catatan", + "PE.Views.ViewTab.textRulers": "Penggaris", + "PE.Views.ViewTab.textStatusBar": "Bar Status", + "PE.Views.ViewTab.textZoom": "Pembesaran" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index 40d6822c6..a47492e46 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -146,6 +146,7 @@ "Common.define.effectData.textLeftUp": "Sinistra in alto", "Common.define.effectData.textLighten": "Illuminare", "Common.define.effectData.textLineColor": "Colore linea", + "Common.define.effectData.textLines": "Linee", "Common.define.effectData.textLinesCurves": "Linee Curve", "Common.define.effectData.textLoopDeLoop": "Ciclo continuo", "Common.define.effectData.textModerate": "Moderato", @@ -179,6 +180,7 @@ "Common.define.effectData.textSCurve1": "Curva S 1", "Common.define.effectData.textSCurve2": "Curva S 2", "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShapes": "Forme", "Common.define.effectData.textShimmer": "Riflesso", "Common.define.effectData.textShrinkTurn": "Restringere e girare", "Common.define.effectData.textSineWave": "Onda sinusoidale", @@ -238,7 +240,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crea una copia", "Common.Translation.warnFileLockedBtnView": "‎Aperto per la visualizzazione‎", "Common.UI.ButtonColored.textAutoColor": "Automatico", - "Common.UI.ButtonColored.textNewColor": "Aggiungere un nuovo colore personalizzato", + "Common.UI.ButtonColored.textNewColor": "Aggiungi Colore personalizzato", "Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo", "Common.UI.ComboDataView.emptyComboText": "Nessuno stile", @@ -1293,6 +1295,7 @@ "PE.Views.Animation.textMoveLater": "Spostare di seguito", "PE.Views.Animation.textMultiple": "Multipli", "PE.Views.Animation.textNone": "Nessuno", + "PE.Views.Animation.textNoRepeat": "(nessuna)", "PE.Views.Animation.textOnClickOf": "Al clic di", "PE.Views.Animation.textOnClickSequence": "Alla sequenza di clic", "PE.Views.Animation.textStartAfterPrevious": "Dopo il precedente", @@ -2168,6 +2171,14 @@ "PE.Views.Toolbar.tipInsertVideo": "Inserisci video", "PE.Views.Toolbar.tipLineSpace": "Interlinea", "PE.Views.Toolbar.tipMarkers": "Elenchi puntati", + "PE.Views.Toolbar.tipMarkersArrow": "Punti elenco a freccia", + "PE.Views.Toolbar.tipMarkersCheckmark": "Punti elenco a segno di spunta", + "PE.Views.Toolbar.tipMarkersDash": "Punti elenco a trattino", + "PE.Views.Toolbar.tipMarkersFRhombus": "Punti elenco a rombo pieno", + "PE.Views.Toolbar.tipMarkersFRound": "Punti elenco rotondi pieni", + "PE.Views.Toolbar.tipMarkersFSquare": "Punti elenco quadrati pieni", + "PE.Views.Toolbar.tipMarkersHRound": "Punti elenco rotondi vuoti", + "PE.Views.Toolbar.tipMarkersStar": "Punti elenco a stella", "PE.Views.Toolbar.tipNumbers": "Elenchi numerati", "PE.Views.Toolbar.tipPaste": "Incolla", "PE.Views.Toolbar.tipPreview": "Avvia presentazione", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index a1ff9fca4..a8d46afd4 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -47,9 +47,11 @@ "Common.define.chartData.textScatterSmoothMarker": "マーカーと平滑線付き散布図", "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", + "Common.define.effectData.textBasic": "基本", "Common.define.effectData.textBox": "ボックス", "Common.define.effectData.textCircle": "円", "Common.define.effectData.textDown": "下", + "Common.define.effectData.textDrop": "ドロップ", "Common.define.effectData.textFade": "フェード", "Common.define.effectData.textHorizontal": "水平", "Common.define.effectData.textLeft": "左", @@ -58,12 +60,16 @@ "Common.define.effectData.textRight": "右", "Common.define.effectData.textRightDown": "右下", "Common.define.effectData.textRightUp": "右上", + "Common.define.effectData.textShapes": "形", "Common.define.effectData.textSpoke1": "1スポーク", "Common.define.effectData.textSpoke2": "2スポーク", "Common.define.effectData.textSpoke3": "3スポーク", "Common.define.effectData.textSpoke4": "4スポーク", "Common.define.effectData.textSpoke8": "8スポーク", + "Common.define.effectData.textUnderline": "下線", "Common.define.effectData.textUp": "上", + "Common.define.effectData.textVerticalIn": "縦(中)", + "Common.define.effectData.textVerticalOut": "縦(外)", "Common.define.effectData.textWave": "波", "Common.define.effectData.textWipe": "ワイプ", "Common.define.effectData.textZigzag": "ジグザグ", @@ -127,6 +133,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書き", "Common.Views.AutoCorrectDialog.textBy": "幅", "Common.Views.AutoCorrectDialog.textDelete": "削除する", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "スペース2回でピリオドを入力する", "Common.Views.AutoCorrectDialog.textFLSentence": "文章の最初の文字を大文字にする", "Common.Views.AutoCorrectDialog.textHyperlink": "インターネットとネットワークのアドレスをハイパーリンクに変更する", "Common.Views.AutoCorrectDialog.textHyphens": "ハイフン(--)の代わりにダッシュ(—)", @@ -1112,6 +1119,10 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "ゼータ", "PE.Controllers.Viewport.textFitPage": "スライドのサイズに合わせる", "PE.Controllers.Viewport.textFitWidth": "幅に合わせる", + "PE.Views.Animation.strDuration": "継続時間", + "PE.Views.Animation.textNone": "なし", + "PE.Views.Animation.textNoRepeat": "(なし)", + "PE.Views.Animation.txtAddEffect": "アニメーションを追加", "PE.Views.Animation.txtPreview": "プレビュー", "PE.Views.ChartSettings.textAdvanced": "詳細設定の表示", "PE.Views.ChartSettings.textChartType": "グラフの種類の変更", @@ -1931,7 +1942,7 @@ "PE.Views.Toolbar.textTabHome": "ホーム", "PE.Views.Toolbar.textTabInsert": "挿入", "PE.Views.Toolbar.textTabProtect": "保護", - "PE.Views.Toolbar.textTabTransitions": "切り替え効果", + "PE.Views.Toolbar.textTabTransitions": "ページ切り替え", "PE.Views.Toolbar.textTabView": "表示", "PE.Views.Toolbar.textTitleError": "エラー", "PE.Views.Toolbar.textUnderline": "下線", @@ -1969,6 +1980,14 @@ "PE.Views.Toolbar.tipInsertVideo": "ビデオの挿入", "PE.Views.Toolbar.tipLineSpace": "行間", "PE.Views.Toolbar.tipMarkers": "箇条書き", + "PE.Views.Toolbar.tipMarkersArrow": "箇条書き(矢印)", + "PE.Views.Toolbar.tipMarkersCheckmark": "箇条書き(チェックマーク)", + "PE.Views.Toolbar.tipMarkersFRhombus": "箇条書き(ひし形)", + "PE.Views.Toolbar.tipMarkersFRound": "箇条書き(丸)", + "PE.Views.Toolbar.tipMarkersFSquare": "箇条書き(四角)", + "PE.Views.Toolbar.tipMarkersHRound": "箇条書き(円)", + "PE.Views.Toolbar.tipMarkersStar": "箇条書き(星)", + "PE.Views.Toolbar.tipNone": "なし", "PE.Views.Toolbar.tipNumbers": "番号設定", "PE.Views.Toolbar.tipPaste": "貼り付け", "PE.Views.Toolbar.tipPreview": "プレビューの開始", @@ -1986,6 +2005,7 @@ "PE.Views.Toolbar.tipViewSettings": "設定の表示", "PE.Views.Toolbar.txtDistribHor": "左右に整列", "PE.Views.Toolbar.txtDistribVert": "上下に整列", + "PE.Views.Toolbar.txtDuplicateSlide": "スライドの複製", "PE.Views.Toolbar.txtGroup": "グループ化する", "PE.Views.Toolbar.txtObjectsAlign": "選択したオブジェクトを整列する", "PE.Views.Toolbar.txtScheme1": "オフィス", @@ -2049,5 +2069,6 @@ "PE.Views.Transitions.txtPreview": "プレビュー", "PE.Views.Transitions.txtSec": "秒", "PE.Views.ViewTab.textAlwaysShowToolbar": "ツールバーを常に表示する", + "PE.Views.ViewTab.textRulers": "ルーラー", "PE.Views.ViewTab.textZoom": "ズーム" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/lo.json b/apps/presentationeditor/main/locale/lo.json index 9e2c7d278..626da56c7 100644 --- a/apps/presentationeditor/main/locale/lo.json +++ b/apps/presentationeditor/main/locale/lo.json @@ -47,10 +47,179 @@ "Common.define.chartData.textScatterSmoothMarker": "ກະຈາຍດ້ວຍເສັ້ນລຽບ", "Common.define.chartData.textStock": "ບ່ອນເກັບສິນຄ້າ", "Common.define.chartData.textSurface": "ດ້ານໜ້າ", + "Common.define.effectData.textAppear": "ຮູບແບບການສະແດງ", + "Common.define.effectData.textArcDown": "ໂຄ້ງລົງ", + "Common.define.effectData.textArcLeft": "ໂຄ້ງຊ້າຍ", + "Common.define.effectData.textArcRight": "ໂຄ້ງຂວາ", + "Common.define.effectData.textArcUp": "ໂຄ້ງຂຶ້ນ", + "Common.define.effectData.textBasic": "ພື້ນຖານ", + "Common.define.effectData.textBasicSwivel": "ການໝູນພື້ນຖານ", + "Common.define.effectData.textBasicZoom": "ຂະຫຍາຍພື້ນຖານ", + "Common.define.effectData.textBean": "ແບບໝາກຖົ່ວ", + "Common.define.effectData.textBlinds": "ສັງເກດຍາກ", + "Common.define.effectData.textBlink": "ສັງເກດຍາກ", + "Common.define.effectData.textBoldFlash": "ແບບໂຕກະພິບ", + "Common.define.effectData.textBoldReveal": "ເປີດແບບໂຕໜາ", + "Common.define.effectData.textBoomerang": "ບູມມະແລງ", + "Common.define.effectData.textBounce": "ຕີກັບ", + "Common.define.effectData.textBounceLeft": "ເດັ້ງໄປຊ້າຍ", + "Common.define.effectData.textBounceRight": "ເດັ້ງໄປຂົວ", + "Common.define.effectData.textBox": "ກ່ອງ", + "Common.define.effectData.textBrushColor": "ສີແປງ", + "Common.define.effectData.textCenterRevolve": "ສູນກ່າງການໝູນ", + "Common.define.effectData.textCheckerboard": "ກະດານກວດກາ", + "Common.define.effectData.textCircle": "ວົງ", + "Common.define.effectData.textCollapse": "ພັງທະລາຍ", + "Common.define.effectData.textColorPulse": "ສີກຳມະຈອນ", + "Common.define.effectData.textCompress": "ບີບອັດ", + "Common.define.effectData.textContrast": "ຄວາມຄົມຊັດ", + "Common.define.effectData.textContrastingColor": "ສີຕັດກັນ", + "Common.define.effectData.textCredits": "ເຊື່ອຖື", + "Common.define.effectData.textCrescentMoon": "ວົງເດືອນ", + "Common.define.effectData.textCurveDown": "ໂຄ້ງລົງ", + "Common.define.effectData.textCurvedSquare": "ສີ່ຫຼ່ຽມໂຄ້ງ", + "Common.define.effectData.textCurvedX": "ໂຄ້ງ X", + "Common.define.effectData.textCurvyLeft": "ໂຄ້ງຊ້າຍ", + "Common.define.effectData.textCurvyRight": "ໂຄ້ງຂວາ", + "Common.define.effectData.textCurvyStar": "ໂຄ້ງ 5 ຫລຽມ", + "Common.define.effectData.textCustomPath": "ກໍາຫນົດເສັ້ນທາງເອງ", + "Common.define.effectData.textCuverUp": "ໂຄ້ງຂຶ້ນ", + "Common.define.effectData.textDarken": "ມືດ", + "Common.define.effectData.textDecayingWave": "ຮູບແບບສະຫຼາຍ", + "Common.define.effectData.textDesaturate": "ປັບແສງ", + "Common.define.effectData.textDiagonalDownRight": "ເສັ້ນຂວາງລົງຂວາ", + "Common.define.effectData.textDiagonalUpRight": "ເສັ້ນຂວາງຂຶ້ນຂວາ", + "Common.define.effectData.textDiamond": "ເພັດ", + "Common.define.effectData.textDisappear": "ຫາຍໄປ", + "Common.define.effectData.textDissolveIn": "ແບບລະລາຍຈາກພາຍໃນ", + "Common.define.effectData.textDissolveOut": "ແບບລະລາຍຈາກພາຍນອກ", + "Common.define.effectData.textDown": "ລົງລຸ່ມ", + "Common.define.effectData.textDrop": "ລຸດລົງ", + "Common.define.effectData.textEmphasis": "ຜົນກະທົບທີ່ສຳຄັນ", + "Common.define.effectData.textEntrance": "ທາງເຂົ້າມີຜົນກະທົບ", + "Common.define.effectData.textEqualTriangle": "ສາມຫຼ່ຽມ", + "Common.define.effectData.textExciting": "ຕື່ນເຕັ້ນ", + "Common.define.effectData.textExit": "ອອກຈາກຜົນກະທົບ", + "Common.define.effectData.textExpand": "ຂະຫຍາຍສ່ວນ", + "Common.define.effectData.textFade": "ຈ່າງລົງ", + "Common.define.effectData.textFigureFour": "ຮູບ 8 ສີ່", + "Common.define.effectData.textFillColor": "ຕື່ມສີ", + "Common.define.effectData.textFlip": "ປີ້ນ", + "Common.define.effectData.textFloat": "ລອຍ", + "Common.define.effectData.textFloatDown": "ເລື່ອນລົງ", + "Common.define.effectData.textFloatIn": "ເລື່ອນເຂົ້າ", + "Common.define.effectData.textFloatOut": "ເລື່ອນອອກ", + "Common.define.effectData.textFloatUp": "ເລື່ອນຂຶ້ນ", + "Common.define.effectData.textFlyIn": "ບິນເຂົ້າ", + "Common.define.effectData.textFlyOut": "ບິນອອກ", + "Common.define.effectData.textFontColor": "ສີຂອງຕົວອັກສອນ", + "Common.define.effectData.textFootball": "ເຕະບານ", + "Common.define.effectData.textFromBottom": "ຈາກລຸ່ມ", + "Common.define.effectData.textFromBottomLeft": "ຈາກ ລຸ່ມ-ຊ້າຍ", + "Common.define.effectData.textFromBottomRight": "ຈາກ ລຸ່ມ-ຂວາ", + "Common.define.effectData.textFromTop": "ຈາກດ້ານເທິງ", + "Common.define.effectData.textFunnel": "ຊ່ອງທາງ", + "Common.define.effectData.textGrowShrink": "ຂະຫຍາຍຕົວ/ຫຍໍ້ລົງ", + "Common.define.effectData.textGrowTurn": "ຂະຫຍາຍຕົວ ແລະ ປິ່ນ", + "Common.define.effectData.textGrowWithColor": "ຂະຫຍາຍຕົວດ້ວຍສີ", + "Common.define.effectData.textHeart": "ຫົວໃຈ", + "Common.define.effectData.textHeartbeat": "ຫົວໃຈເຕັ້ນ", + "Common.define.effectData.textHexagon": "ຮູບຫົກຫຼ່ຽມ", + "Common.define.effectData.textHorizontal": "ແນວນອນ", + "Common.define.effectData.textHorizontalFigure": "ແນວນອນ ຮູບທີ8", + "Common.define.effectData.textHorizontalIn": "ລວງນອນທາງໃນ", + "Common.define.effectData.textHorizontalOut": "ລວງນອນທາງນອກ", + "Common.define.effectData.textIn": "ຂ້າງໃນ", + "Common.define.effectData.textInFromScreenCenter": "ຈາກສູນໜ້າຈໍ", + "Common.define.effectData.textInSlightly": "ເຂົ້າໃນເລັກນ້ອຍ", + "Common.define.effectData.textInvertedSquare": "ປີ້ນຮູບສີ່ຫຼ່ຽມ", + "Common.define.effectData.textInvertedTriangle": "ປີ້ນຮູບສາມຫຼ່ຽມ", + "Common.define.effectData.textLeft": "ຊ້າຍ", + "Common.define.effectData.textLeftDown": "ລົງຊ້າຍ", + "Common.define.effectData.textLeftUp": "ຂຶ້ນຊ້າຍ", + "Common.define.effectData.textLighten": "ສີອ່ອນ", + "Common.define.effectData.textLineColor": "ສີເສັ້ນ", + "Common.define.effectData.textLines": " ເສັ້ນ", + "Common.define.effectData.textLinesCurves": "ເສັ້ນໂຄ້ງ", + "Common.define.effectData.textLoopDeLoop": "ເຮັດຊ້ຳໆ", + "Common.define.effectData.textModerate": "ປານກາງ", + "Common.define.effectData.textNeutron": "ນິວຕຣອນ", + "Common.define.effectData.textObjectCenter": "ຮູບແບບວັດຖຸ", + "Common.define.effectData.textObjectColor": "ສີວັດຖຸ", + "Common.define.effectData.textOctagon": "ແປດຫລ່ຽມ", + "Common.define.effectData.textOut": "ອອກ", + "Common.define.effectData.textOutFromScreenBottom": "ອອກຈາກລຸ່ມຈໍ", + "Common.define.effectData.textOutSlightly": "ອອກເລັກນ້ອຍ", + "Common.define.effectData.textParallelogram": "ສີ່ຫລ່ຽມຂະໜານ,", + "Common.define.effectData.textPath": "ເສັ້ນທາງການເຄື່ອນໄຫວ", + "Common.define.effectData.textPeanut": "ຖົ່ວ", + "Common.define.effectData.textPeekIn": "ແນມເບິ່ງ", + "Common.define.effectData.textPeekOut": "ແນມອອກໄປ", + "Common.define.effectData.textPentagon": "ຮູບຫ້າຫລ່ຽມ", + "Common.define.effectData.textPlus": "ບວກ", + "Common.define.effectData.textPulse": "ຖົ່ວ", + "Common.define.effectData.textRandomBars": "ບາແບບສຸ່ມ", + "Common.define.effectData.textRight": "ຂວາ", + "Common.define.effectData.textRightDown": "ລົງຂວາ", + "Common.define.effectData.textRightTriangle": "ສາມຫລ່ຽມຂວາ", + "Common.define.effectData.textRightUp": "ຂື້ນຂວາ", + "Common.define.effectData.textRiseUp": "ລຸກຂື້ນ", + "Common.define.effectData.textSCurve1": "S Curve 1", + "Common.define.effectData.textSCurve2": "S Curve 2", + "Common.define.effectData.textShape": "ຮູບຮ່າງ", + "Common.define.effectData.textShapes": "ຮູບຮ່າງ", + "Common.define.effectData.textShimmer": "ເງົາ", + "Common.define.effectData.textShrinkTurn": "ຫົດເຂົ້າ ແລະ ປີ້ນ", + "Common.define.effectData.textSineWave": "ຮູບແບບຄືນແສງ", + "Common.define.effectData.textSinkDown": "ຮູບແບບຈາງລົງ", + "Common.define.effectData.textSlideCenter": "ຮູບແບບສູນສະໄລ້", + "Common.define.effectData.textSpecial": "ພິເສດ", + "Common.define.effectData.textSpin": "ໝຸນ", + "Common.define.effectData.textSpinner": "ເຄື່ອງໝຸນ", + "Common.define.effectData.textSpiralIn": "ກ້ຽວໃນ", + "Common.define.effectData.textSpiralLeft": "ກ້ຽວຊ້າຍ", + "Common.define.effectData.textSpiralOut": "ກ້ຽວອອກ", + "Common.define.effectData.textSpiralRight": "ກ້ຽວຂວາ", + "Common.define.effectData.textSplit": "ແບ່ງເປັນ", + "Common.define.effectData.textSpring": "ດີດ", + "Common.define.effectData.textSquare": "ສີ່ຫຼ່ຽມ", + "Common.define.effectData.textStairsDown": "ຮູບແບບຂັນໃດ", + "Common.define.effectData.textStretch": "ຢຶດ", + "Common.define.effectData.textStrips": "ແຖບ", + "Common.define.effectData.textSubtle": "ລະອຽດອ່ອນ", + "Common.define.effectData.textSwivel": "ໝູນ", + "Common.define.effectData.textSwoosh": "ອະລັງການ", + "Common.define.effectData.textTeardrop": "ເຄື່ອງໝາຍຢອດ", + "Common.define.effectData.textTeeter": "ສ່າຍໄປມາ", + "Common.define.effectData.textToBottom": "ຮອດລຸ່ມ", + "Common.define.effectData.textToBottomLeft": "ໄປ ທາງລຸ່ມ-ຊ້າຍ", + "Common.define.effectData.textToBottomRight": "ໄປ ທາງລຸ່ມ-ຂວາ", + "Common.define.effectData.textToLeft": "ໄປຊ້າຍ", + "Common.define.effectData.textToTopRight": "ໄປທາງຂວາເທິງ", + "Common.define.effectData.textTransparency": "ຄວາມໂປ່ງໃສ", + "Common.define.effectData.textTrapezoid": "ສີ່ຫລ່ຽມຄາງຫມູ", + "Common.define.effectData.textTurnDown": "ປິດລົງ", + "Common.define.effectData.textTurnDownRight": "ລ້ຽວລົງຂວາ", + "Common.define.effectData.textTurnUp": "ຫັນຂຶ້ນ", + "Common.define.effectData.textTurnUpRight": "ລ້ຽວຂື້ນຂວາ", + "Common.define.effectData.textUnderline": "ີຂີດກ້ອງ", + "Common.define.effectData.textUp": "ຂຶ້ນ", + "Common.define.effectData.textVertical": "ລວງຕັ້ງ", + "Common.define.effectData.textVerticalFigure": "ຮູບແນວຕັ້ງ 8", + "Common.define.effectData.textVerticalIn": "ລວງຕັ້ງດ້ານໃນ", + "Common.define.effectData.textVerticalOut": "ລວງຕັ້ງງດ້ານນອກ", + "Common.define.effectData.textWave": "ຄື້ນ", + "Common.define.effectData.textWedge": "ລີ່ມ", + "Common.define.effectData.textWheel": "ລໍ້", + "Common.define.effectData.textWhip": "ສັ່ງການດ້ວຍສຽງ", + "Common.define.effectData.textWipe": "ເຊັດ", + "Common.define.effectData.textZigzag": "Zigzag", + "Common.define.effectData.textZoom": "ຂະຫຍາຍ ເຂົ້າ-ອອກ", "Common.Translation.warnFileLocked": "ແຟ້ມ ກຳ ລັງຖືກດັດແກ້ຢູ່ໃນແອັບ ອື່ນ. ທ່ານສາມາດສືບຕໍ່ດັດແກ້ແລະບັນທຶກເປັນ ສຳ ເນົາ", "Common.Translation.warnFileLockedBtnEdit": "ສ້າງສຳເນົາ", "Common.Translation.warnFileLockedBtnView": "ເປີດເບິ່ງ", "Common.UI.ButtonColored.textAutoColor": "ອັດຕະໂນມັດ", + "Common.UI.ButtonColored.textNewColor": "ເພີ່ມສີທີ່ກຳໜົດເອງໃໝ່", "Common.UI.ComboBorderSize.txtNoBorders": "ບໍ່ມີຂອບ", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "ບໍ່ມີຂອບ", "Common.UI.ComboDataView.emptyComboText": "ບໍ່ມີຮູບແບບ", @@ -60,6 +229,8 @@ "Common.UI.ExtendedColorDialog.textNew": "ໃຫມ່", "Common.UI.ExtendedColorDialog.textRGBErr": "ຄ່າທີ່ປ້ອນເຂົ້າບໍ່ຖືກຕ້ອງ.
ກະລຸນາໃສ່ຄ່າຕົວເລກລະຫວ່າງ 0 ເຖິງ 255.", "Common.UI.HSBColorPicker.textNoColor": "ບໍ່ມີສີ", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "ເຊື່ອງລະຫັດຜ່ານ", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "ສະແດງລະຫັດຜ່ານ", "Common.UI.SearchDialog.textHighlight": "ໄຮໄລ້ ຜົນ", "Common.UI.SearchDialog.textMatchCase": "ກໍລະນີທີ່ສຳຄັນ", "Common.UI.SearchDialog.textReplaceDef": "ກະລຸນາໃສ່ຕົວ ໜັງ ສືທົດແທນເນື້ອຫາ", @@ -103,7 +274,10 @@ "Common.Views.AutoCorrectDialog.textBulleted": "ລາຍການຫົວຂໍ້ອັດຕະໂນມັດ", "Common.Views.AutoCorrectDialog.textBy": "ໂດຍ", "Common.Views.AutoCorrectDialog.textDelete": "ລົບ", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "ເພີ່ມໄລຍະຊ່ອງຫວ່າງສອງເທົ່າ", + "Common.Views.AutoCorrectDialog.textFLCells": "ໃຊ້ໂຕພິມໃຫຍ່ໂຕທຳອິດຂອງຕາລາງຕາຕະລາງ", "Common.Views.AutoCorrectDialog.textFLSentence": "ໃຊ້ຕົວອັກສອນທຳອິດເປັນຕົວພິມໃຫຍ່", + "Common.Views.AutoCorrectDialog.textHyperlink": "ອິນເຕີນັດ ແລະ ເຄື່ອຂ່າຍແບບຫຼາຍຊ່ອງທາງ", "Common.Views.AutoCorrectDialog.textHyphens": "ເຄື່ອງໝາຍຂີດເສັ້ນ (--) ເຄື່ອງໝາຍຂີດປະ", "Common.Views.AutoCorrectDialog.textMathCorrect": "ການແກ້ໄຂອັດຕະໂນມັດທາງຄະນິດສາດ", "Common.Views.AutoCorrectDialog.textNumbered": "ລຳດັບຕົວເລກອັດຕະໂນມັດ", @@ -123,13 +297,22 @@ "Common.Views.AutoCorrectDialog.warnReset": "ທຸກໆການແກ້ໄຂອັດຕະໂນມັດທີ່ທ່ານເພີ່ມຈະຖືກລຶບອອກແລະສິ່ງທີ່ຖືກປ່ຽນແປງຈະຖືກ ນຳ ກັບມາໃຊ້ແບບເດີມ. ທ່ານຕ້ອງການ ດຳ ເນີນການຕໍ່ບໍ?", "Common.Views.AutoCorrectDialog.warnRestore": "ການປ້ອນຂໍ້ມູນທີ່ຖືກຕ້ອງ ສຳ ລັບ% 1 ຈະຖືກຕັ້ງຄ່າໃຫ້ກັບຄ່າເດີມ. ທ່ານຕ້ອງການ ດຳ ເນີນການຕໍ່ບໍ?", "Common.Views.Chat.textSend": "ສົ່ງ", + "Common.Views.Comments.mniAuthorAsc": "ລຽງ A ຫາ Z", + "Common.Views.Comments.mniAuthorDesc": "ລຽງ Z ເຖິງ A", + "Common.Views.Comments.mniDateAsc": "ເກົ່າທີ່ສຸດ", + "Common.Views.Comments.mniDateDesc": "ໃໝ່ລ່າສຸດ", + "Common.Views.Comments.mniFilterGroups": "ກັ່ນຕອງຕາມກຸ່ມ", + "Common.Views.Comments.mniPositionAsc": "ຈາກດ້ານເທິງ", + "Common.Views.Comments.mniPositionDesc": "ຈາກລຸ່ມ", "Common.Views.Comments.textAdd": "ເພີ່ມ", "Common.Views.Comments.textAddComment": "ເພີ່ມຄວາມຄິດເຫັນ", "Common.Views.Comments.textAddCommentToDoc": "ເພີ່ມຄວາມຄິດເຫັນໃນເອກະສານ", "Common.Views.Comments.textAddReply": "ເພີ່ມຄຳຕອບ", + "Common.Views.Comments.textAll": "ທັງໝົດ", "Common.Views.Comments.textAnonym": " ແຂກ", "Common.Views.Comments.textCancel": "ຍົກເລີກ", "Common.Views.Comments.textClose": "ອອກຈາກ", + "Common.Views.Comments.textClosePanel": "ປິດຄຳເຫັນ", "Common.Views.Comments.textComments": "ຄໍາເຫັນ", "Common.Views.Comments.textEdit": "ຕົກລົງ", "Common.Views.Comments.textEnterCommentHint": "ໃສ່ຄຳເຫັນຂອງທ່ານທີ່ນີ້", @@ -138,6 +321,8 @@ "Common.Views.Comments.textReply": "ຕອບ", "Common.Views.Comments.textResolve": "ແກ້ໄຂ", "Common.Views.Comments.textResolved": "ແກ້ໄຂແລ້ວ", + "Common.Views.Comments.textSort": "ຈັດຮຽງຄຳເຫັນ", + "Common.Views.Comments.textViewResolved": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເປີດຄໍາຄິດເຫັນຄືນ", "Common.Views.CopyWarningDialog.textDontShow": "ຢ່າສະແດງຂໍ້ຄວາມນີ້ອີກ", "Common.Views.CopyWarningDialog.textMsg": "ດຳເນີນການ ສຳເນົາ,ຕັດ ແລະ ວາງ", "Common.Views.CopyWarningDialog.textTitle": "ປະຕິບັດການ ສໍາເນົາ, ຕັດ ແລະ ວາງ", @@ -181,6 +366,7 @@ "Common.Views.History.textRestore": "ກູ້ຄືນ", "Common.Views.History.textShow": "ຂະຫຍາຍສ່ວນ", "Common.Views.History.textShowAll": "ສະແດງການປ່ຽນແປງໂດຍລະອຽດ", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "ວາງ URL ຂອງຮູບພາບ:", "Common.Views.ImageFromUrlDialog.txtEmpty": "ຕ້ອງມີດ້ານນີ້", "Common.Views.ImageFromUrlDialog.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນ \"http://www.example.com\"", @@ -301,6 +487,9 @@ "Common.Views.ReviewPopover.textOpenAgain": "ເປີດໃໝ່ອີກຄັ້ງ", "Common.Views.ReviewPopover.textReply": "ຕອບກັບ", "Common.Views.ReviewPopover.textResolve": "ແກ້ໄຂ", + "Common.Views.ReviewPopover.textViewResolved": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເປີດຄໍາຄິດເຫັນຄືນ", + "Common.Views.ReviewPopover.txtDeleteTip": "ລົບ", + "Common.Views.ReviewPopover.txtEditTip": "ແກ້ໄຂ", "Common.Views.SaveAsDlg.textLoading": "ກຳລັງໂຫລດ", "Common.Views.SaveAsDlg.textTitle": "ແຟ້ມສຳລັບບັນທຶກ", "Common.Views.SelectFileDlg.textLoading": "ກຳລັງໂຫລດ", @@ -393,6 +582,7 @@ "PE.Controllers.Main.errorForceSave": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເບັນທຶກຝາຍ. ກະລຸນາໃຊ້ຕົວເລືອກ 'ດາວໂຫລດເປັນ' ເພື່ອບັນທຶກເອກະສານໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານຫຼືລອງ ໃໝ່ ພາຍຫຼັງ.", "PE.Controllers.Main.errorKeyEncrypt": "ບໍ່ຮູ້ຕົວບັນຍາຍຫຼັກ", "PE.Controllers.Main.errorKeyExpire": "ລະຫັດໝົດອາຍຸ", + "PE.Controllers.Main.errorLoadingFont": "ຟອນບໍ່ໄດ້ຖືກໂຫລດ.
ກະລຸນາແອດມີນຂອງທ່ານ.", "PE.Controllers.Main.errorProcessSaveResult": "ບັນທຶກບຊ່ສຳເລັດ", "PE.Controllers.Main.errorServerVersion": "ສະບັບດັດແກ້ໄດ້ຖືກປັບປຸງແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດຄືນເພື່ອນຳໃຊ້ການປ່ຽນແປງ.", "PE.Controllers.Main.errorSessionAbsolute": "ໝົດເວລາການແກ້ໄຂເອກະສານ ກະລຸນາໂຫລດໜ້ານີ້ຄືນໃໝ່", @@ -447,6 +637,7 @@ "PE.Controllers.Main.textContactUs": "ຕິດຕໍ່ຜູ້ຂາຍ", "PE.Controllers.Main.textConvertEquation": "ສົມຜົນນີ້ໄດ້ຖືກສ້າງຂື້ນມາກັບບັນນາທິການສົມຜົນລຸ້ນເກົ່າເຊິ່ງບໍ່ໄດ້ຮັບການສະ ໜັບ ສະ ໜູນ ອີກຕໍ່ໄປ ເພື່ອດັດແກ້ມັນ, ປ່ຽນສົມຜົນໃຫ້ເປັນຮູບແບບ Office Math ML.
ປ່ຽນດຽວນີ້ບໍ?", "PE.Controllers.Main.textCustomLoader": "ກະລຸນາຮັບຊາບວ່າ ອີງຕາມຂໍ້ ກຳນົດຂອງໃບອະນຸຍາດ ທ່ານບໍ່ມີສິດທີ່ຈະປ່ຽນແປງ ການບັນຈຸ.
ກະລຸນາຕິດຕໍ່ຝ່າຍຂາຍຂອງພວກເຮົາເພື່ອຂໍໃບສະເໜີ.", + "PE.Controllers.Main.textDisconnect": "ຂາດການເຊື່ອມຕໍ່", "PE.Controllers.Main.textGuest": "ບຸກຄົນທົ່ວໄປ", "PE.Controllers.Main.textHasMacros": "ເອກະສານບັນຈຸ ມາກໂຄ
ແບບອັດຕະໂນມັດ, ທ່ານຍັງຕ້ອງການດໍາເນີນງານ ມາກໂຄ ບໍ ", "PE.Controllers.Main.textLearnMore": "ຮຽນຮູ້ເພີ່ມຕື່ມ", @@ -454,6 +645,7 @@ "PE.Controllers.Main.textLongName": "ໃສ່ຊື່ທີ່ມີຄວາມຍາວໜ້ອຍກວ່າ 128 ຕົວອັກສອນ.", "PE.Controllers.Main.textNoLicenseTitle": "ຈຳກັດການເຂົ້າເຖິງໃບອະນຸຍາດ", "PE.Controllers.Main.textPaidFeature": "ຄວາມສາມາດ ທີຕ້ອງຊື້ເພີ່ມ", + "PE.Controllers.Main.textReconnect": "ການເຊື່ອມຕໍ່ຖືກກູ້ຄືນມາ", "PE.Controllers.Main.textRemember": "ຈື່ທາງເລືອກຂອງຂ້ອຍ", "PE.Controllers.Main.textRenameError": "ຕ້ອງບໍ່ມີຊື່ຜູ້ໃຊ້", "PE.Controllers.Main.textRenameLabel": "ໃສ່ຊື່ສຳລັບເປັນຜູ້ປະສານງານ", @@ -721,7 +913,7 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມາດນຳໃຊ້ໄດ້.", "PE.Controllers.Main.uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິພາດຮູບແບບຂອງຮູບ", "PE.Controllers.Main.uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ", - "PE.Controllers.Main.uploadImageSizeMessage": "ຈຳກັດຂະໜາດຮູບພາບສູງສຸດ", + "PE.Controllers.Main.uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.", "PE.Controllers.Main.uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ", "PE.Controllers.Main.uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", "PE.Controllers.Main.waitText": "ກະລຸນາລໍຖ້າ...", @@ -735,6 +927,7 @@ "PE.Controllers.Main.warnNoLicense": "ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ %1. ເອກະສານນີ້ສາມາດເປີດເບິ່ງເທົ່ານັ້ນ.
ຕິດຕໍ່ ທີມຂາຍ %1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບສິດ", "PE.Controllers.Main.warnNoLicenseUsers": "ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມຂາຍ %1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບສິດ", "PE.Controllers.Main.warnProcessRightsChange": "ທ່ານໄດ້ຖືກປະຕິເສດສິດໃນການແກ້ໄຂເອກະສານດັ່ງກ່າວ.", + "PE.Controllers.Statusbar.textDisconnect": "ຂາດເຊື່ອມຕໍ່
ກຳລັງພະຍາຍາມເຊື່ອມຕໍ່. ກະລຸນາກວດເບິ່ງການຕັ້ງຄ່າການເຊື່ອມຕໍ່.", "PE.Controllers.Statusbar.zoomText": "ຂະຫຍາຍ {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "ຕົວອັກສອນທີ່ທ່ານ ກຳ ລັງຈະບັນທຶກແມ່ນບໍ່ມີຢູ່ໃນອຸປະກອນປັດຈຸບັນ.
ຮູບແບບຕົວ ໜັງ ສືຈະຖືກສະແດງໂດຍໃຊ້ຕົວອັກສອນລະບົບໜຶ່ງ, ຕົວອັກສອນທີ່ບັນທຶກຈະຖືກ ນຳ ໃຊ້ໃນເວລາທີ່ມັນມີຢູ່.
ທ່ານຕ້ອງການສືບຕໍ່ບໍ ?", "PE.Controllers.Toolbar.textAccent": "ສຳນຽງ", @@ -1071,6 +1264,30 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "ປັບສະໄລພໍດີ", "PE.Controllers.Viewport.textFitWidth": "ຄວາມກວ້າງສະໄລພໍດີ", + "PE.Views.Animation.strDelay": "ລ້າຊ້າ", + "PE.Views.Animation.strDuration": "ໄລຍະ", + "PE.Views.Animation.strRepeat": "ເຮັດຊ້ຳ", + "PE.Views.Animation.strRewind": "ຖອຍຫຼັງ", + "PE.Views.Animation.strStart": "ເລີ່ມ", + "PE.Views.Animation.strTrigger": "ກະຕຸ້ນ", + "PE.Views.Animation.textMoreEffects": "ສະແດງຜົນກະທົບທີ່ຄົງເຫລື່ອ", + "PE.Views.Animation.textMoveEarlier": "ຍ້າຍກ່ອນໜ້ານີ້", + "PE.Views.Animation.textMoveLater": "ຍ້າຍໃນພາຍຫຼັງ", + "PE.Views.Animation.textMultiple": "ຕົວຄູນ", + "PE.Views.Animation.textNone": "ບໍ່ມີ", + "PE.Views.Animation.textNoRepeat": "(ບໍ່ມີ)", + "PE.Views.Animation.textOnClickOf": "ໃນການຄລິກໃສ່", + "PE.Views.Animation.textOnClickSequence": "ລໍາດັບການຄລິກ", + "PE.Views.Animation.textStartAfterPrevious": "ກອນໜ້ານີ້", + "PE.Views.Animation.textStartOnClick": "ເມືອຄລິກ", + "PE.Views.Animation.textStartWithPrevious": "ທີ່ຜ່ານມາ", + "PE.Views.Animation.txtAddEffect": "ເພີ່ມພາບເຄື່ອນໄຫວ", + "PE.Views.Animation.txtAnimationPane": "ແຖບພາບເຄື່ອນໄຫວ", + "PE.Views.Animation.txtParameters": "ພາລາມິເຕີ", + "PE.Views.Animation.txtPreview": "ເບິ່ງຕົວຢ່າງ", + "PE.Views.Animation.txtSec": "S", + "PE.Views.AnimationDialog.textPreviewEffect": "ເບິ່ງຜົນກະທົບ", + "PE.Views.AnimationDialog.textTitle": "ຜົນກະທົບເພີ່ມເຕີມ", "PE.Views.ChartSettings.textAdvanced": "ສະແດງການຕັ້ງຄ່າຂັ້ນສູງ", "PE.Views.ChartSettings.textChartType": "ປ່ຽນປະເພດແຜ່ນພາບ", "PE.Views.ChartSettings.textEditData": "ແກ້ໄຂຂໍ້ມູນ", @@ -1094,7 +1311,7 @@ "PE.Views.DocumentHolder.addCommentText": "ເພີ່ມຄວາມຄິດເຫັນ", "PE.Views.DocumentHolder.addToLayoutText": "ເພີ່ມ ຮູບແບບ", "PE.Views.DocumentHolder.advancedImageText": "ການຕັ້ງຄ່າຮູບຂັ້ນສູງ", - "PE.Views.DocumentHolder.advancedParagraphText": "ການຕັ້ງຄ່າຂັ້ນສູງຂອງຂໍ້ຄວາມ", + "PE.Views.DocumentHolder.advancedParagraphText": "ການຕັ້ງຄ່າຂັ້ນສູງຫຍໍ້ ໜ້າ", "PE.Views.DocumentHolder.advancedShapeText": "ຕັ້ງຄ່າຂັ້ນສູງຮູບຮ່າງ", "PE.Views.DocumentHolder.advancedTableText": "ການຕັ້ງຄ່າຕາຕະລາງຂັ້ນສູງ", "PE.Views.DocumentHolder.alignmentText": "ການຈັດຕຳແໜ່ງ", @@ -1150,6 +1367,7 @@ "PE.Views.DocumentHolder.textCut": "ຕັດ", "PE.Views.DocumentHolder.textDistributeCols": "ກະຈາຍຖັນ", "PE.Views.DocumentHolder.textDistributeRows": "ກະຈາຍແຖວ", + "PE.Views.DocumentHolder.textEditPoints": "ແກ້ໄຂຄະແນນ", "PE.Views.DocumentHolder.textFlipH": "ຫມຸນແນວນອນ ", "PE.Views.DocumentHolder.textFlipV": "ຫມຸນລວງຕັ້ງ", "PE.Views.DocumentHolder.textFromFile": "ຈາກຟາຍ", @@ -1234,6 +1452,8 @@ "PE.Views.DocumentHolder.txtLimitUnder": "ຈຳກັດເນື້ອ", "PE.Views.DocumentHolder.txtMatchBrackets": "ວົງເລັບຄູ່", "PE.Views.DocumentHolder.txtMatrixAlign": "ຈັດລຽງ Matrix", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "ຍ້າຍສະໄລ້ໄປສິ້ນສຸດ", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "ຍ້າຍສະໄລ້ໄປທີ່ຈຸດເລີ່ມຕົ້ນ", "PE.Views.DocumentHolder.txtNewSlide": "ພາບສະໄລໃໝ່", "PE.Views.DocumentHolder.txtOverbar": "ຂີດທັບຕົວໜັງສື", "PE.Views.DocumentHolder.txtPasteDestFormat": "ໃຊ້ຫົວຂໍ້ເປົ້າໝາຍ", @@ -1265,6 +1485,7 @@ "PE.Views.DocumentHolder.txtTop": "ເບື້ອງເທີງ", "PE.Views.DocumentHolder.txtUnderbar": "ຂີດກອ້ງຕົວໜັງສື", "PE.Views.DocumentHolder.txtUngroup": "ຍົກເລີກການເຮັດເປັນກຸ່ມ", + "PE.Views.DocumentHolder.txtWarnUrl": "ການຄລິກລິ້ງນີ້ອາດເປັນອັນຕະລາຍຕໍ່ອຸປະກອນ ແລະຂໍ້ມູນຂອງທ່ານ.
ທ່ານແນ່ໃຈບໍ່ວ່າຕ້ອງການສືບຕໍ່?", "PE.Views.DocumentHolder.vertAlignText": "ຈັດຕາມແນວຕັ້ງ", "PE.Views.DocumentPreview.goToSlideText": "ໄປຍັງສະໄລ", "PE.Views.DocumentPreview.slideIndexText": "ພາບສະໄລ້ {0} ຂອງ {1}", @@ -1284,6 +1505,8 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "ປິດລາຍການ", "PE.Views.FileMenu.btnCreateNewCaption": "ສ້າງໃໝ່", "PE.Views.FileMenu.btnDownloadCaption": "ດາວໂຫລດດ້ວຍ", + "PE.Views.FileMenu.btnExitCaption": " ປິດ", + "PE.Views.FileMenu.btnFileOpenCaption": "ເປີດ...", "PE.Views.FileMenu.btnHelpCaption": "ຊ່ວຍເຫຼືອ", "PE.Views.FileMenu.btnHistoryCaption": "ປະຫວັດ", "PE.Views.FileMenu.btnInfoCaption": "ຂໍ້ມູນບົດນຳສະເໜີ ", @@ -1298,6 +1521,8 @@ "PE.Views.FileMenu.btnSaveCopyAsCaption": "ບັນທຶກສຳເນົາເປັນ...", "PE.Views.FileMenu.btnSettingsCaption": "ຕັ້ງ​ຄ່າ​ຂັ້ນ​ສູງ...", "PE.Views.FileMenu.btnToEditCaption": "ແກ້ໄຂບົດນຳສະເໜີ", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "ການນໍາສະເໜີເປົ່າ", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "ສ້າງໃໝ່", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "ໃຊ້", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "ເພີ່ມຜູ້ຂຽນ", "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "ເພີ່ມຂໍ້ຄວາມ", @@ -1414,6 +1639,7 @@ "PE.Views.ImageSettings.textCrop": "ຕັດເປັນສ່ວນ", "PE.Views.ImageSettings.textCropFill": "ຕື່ມ", "PE.Views.ImageSettings.textCropFit": "ພໍດີ", + "PE.Views.ImageSettings.textCropToShape": "ຂອບຕັດເພືອເປັນຮູ້ຮ່າງ", "PE.Views.ImageSettings.textEdit": "ແກ້ໄຂ", "PE.Views.ImageSettings.textEditObject": "ແກໄຂຈຸດປະສົງ", "PE.Views.ImageSettings.textFitSlide": "ປັບສະໄລພໍດີ", @@ -1428,6 +1654,7 @@ "PE.Views.ImageSettings.textHintFlipV": "ຫມຸນລວງຕັ້ງ", "PE.Views.ImageSettings.textInsert": "ປ່ຽນແທນຮູບພາບ", "PE.Views.ImageSettings.textOriginalSize": "ຂະ ໜາດ ຕົວຈິງ", + "PE.Views.ImageSettings.textRecentlyUsed": "ໃຊ້ລ່າສຸດ", "PE.Views.ImageSettings.textRotate90": "ໝຸນ 90°", "PE.Views.ImageSettings.textRotation": "ການໝຸນ", "PE.Views.ImageSettings.textSize": "ຂະໜາດ", @@ -1469,7 +1696,7 @@ "PE.Views.ParagraphSettings.textAt": "ທີ່", "PE.Views.ParagraphSettings.textAtLeast": "ຢ່າງ​ຫນ້ອຍ", "PE.Views.ParagraphSettings.textAuto": "ຕົວຄູນ", - "PE.Views.ParagraphSettings.textExact": "ແນ່ນອນ, ຖືກຕ້ອງ", + "PE.Views.ParagraphSettings.textExact": "ແນ່ນອນ", "PE.Views.ParagraphSettings.txtAutoText": "ອັດຕະໂນມັດ", "PE.Views.ParagraphSettingsAdvanced.noTabs": "ແທັບທີ່ລະບຸໄວ້ຈະປາກົດຢູ່ໃນນີ້", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "ໂຕໃຫຍ່ທັງໝົດ", @@ -1510,7 +1737,7 @@ "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "ອັດຕະໂນມັດ", "PE.Views.RightMenu.txtChartSettings": "ການຕັ້ງຄ່າແຜ່ນຮູບພາບ", "PE.Views.RightMenu.txtImageSettings": "ການຕັ້ງຄ່າຮູບພາບ", - "PE.Views.RightMenu.txtParagraphSettings": "ການຕັ້ງຄ່າ, ກຳນົດຂໍ້ຄວາມ", + "PE.Views.RightMenu.txtParagraphSettings": "ການຕັ້ງຄ່າວັກ", "PE.Views.RightMenu.txtShapeSettings": "ການຕັ້ງຄ່າຮູບຮ່າງ", "PE.Views.RightMenu.txtSignatureSettings": "ການຕັ້ງຄ່າລາຍເຊັນ,ກຳນົດລາຍເຊັນ", "PE.Views.RightMenu.txtSlideSettings": "ການຕັ້ງຄ່າເລື່ອນພາບສະໄລ, ການກຳນົດການເລື່ອນພາບສະໄລ", @@ -1549,6 +1776,7 @@ "PE.Views.ShapeSettings.textPatternFill": "ຮູບແບບ", "PE.Views.ShapeSettings.textPosition": "ຕໍາແໜ່ງ", "PE.Views.ShapeSettings.textRadial": "ລັງສີ", + "PE.Views.ShapeSettings.textRecentlyUsed": "ໃຊ້ລ່າສຸດ", "PE.Views.ShapeSettings.textRotate90": "ໝຸນ 90°", "PE.Views.ShapeSettings.textRotation": "ການໝຸນ", "PE.Views.ShapeSettings.textSelectImage": "ເລືອກຮູບພາບ", @@ -1865,6 +2093,7 @@ "PE.Views.Toolbar.textColumnsTwo": "2ຖັນ", "PE.Views.Toolbar.textItalic": "ໂຕໜັງສືອຽງ", "PE.Views.Toolbar.textListSettings": "ຕັ້ງຄ່າລາຍການ", + "PE.Views.Toolbar.textRecentlyUsed": "ໃຊ້ລ່າສຸດ", "PE.Views.Toolbar.textShapeAlignBottom": "ຈັດຕ່ຳແໜ່ງທາງດ້ານລຸ່ມ", "PE.Views.Toolbar.textShapeAlignCenter": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", "PE.Views.Toolbar.textShapeAlignLeft": "ຈັດຕຳແໜ່ງຕິດຊ້າຍ", @@ -1878,11 +2107,14 @@ "PE.Views.Toolbar.textStrikeout": "ຂີດທັບ", "PE.Views.Toolbar.textSubscript": "ຕົວຫ້ອຍ", "PE.Views.Toolbar.textSuperscript": "ຕົວຍົກ", + "PE.Views.Toolbar.textTabAnimation": "ພາບເຄື່ອນໄຫວ", "PE.Views.Toolbar.textTabCollaboration": "ການຮ່ວມກັນ", "PE.Views.Toolbar.textTabFile": "ຟາຍ ", "PE.Views.Toolbar.textTabHome": "ໜ້າຫຼັກ", "PE.Views.Toolbar.textTabInsert": "ເພີ່ມ", "PE.Views.Toolbar.textTabProtect": "ການປ້ອງກັນ", + "PE.Views.Toolbar.textTabTransitions": "ການຫັນປ່ຽນ", + "PE.Views.Toolbar.textTabView": "ມຸມມອງ", "PE.Views.Toolbar.textTitleError": "ຂໍ້ຜິດພາດ", "PE.Views.Toolbar.textUnderline": "ຂີດກ້ອງ", "PE.Views.Toolbar.tipAddSlide": "ເພິ່ມພາບສະໄລ", @@ -1919,6 +2151,14 @@ "PE.Views.Toolbar.tipInsertVideo": "ເພີ່ມວິດີໂອ", "PE.Views.Toolbar.tipLineSpace": "ໄລຍະຫ່າງລະຫວ່າງເສັ້ນ", "PE.Views.Toolbar.tipMarkers": "ຂີດໜ້າ", + "PE.Views.Toolbar.tipMarkersArrow": "ລູກສອນ", + "PE.Views.Toolbar.tipMarkersCheckmark": "ເຄື່ອງໝາຍຖືກ ສະແດງຫົວຂໍ້", + "PE.Views.Toolbar.tipMarkersDash": "ຫົວແຫລມ", + "PE.Views.Toolbar.tipMarkersFRound": "ເພີ່ມຮູບວົງມົນ", + "PE.Views.Toolbar.tipMarkersFSquare": "ເພີ່ມຮູບສີ່ຫຼ່ຽມ", + "PE.Views.Toolbar.tipMarkersHRound": "ແບບຮອບກວ້າງ", + "PE.Views.Toolbar.tipMarkersStar": "ຮູບແບບດາວ", + "PE.Views.Toolbar.tipNone": "ບໍ່ມີ", "PE.Views.Toolbar.tipNumbers": "ການນັບ", "PE.Views.Toolbar.tipPaste": "ວາງ", "PE.Views.Toolbar.tipPreview": "ເລີ່ມສະໄລ້", @@ -1936,6 +2176,7 @@ "PE.Views.Toolbar.tipViewSettings": "ເບິ່ງການຕັ້ງຄ່າ", "PE.Views.Toolbar.txtDistribHor": "ແຈກຢາຍຕາມແນວນອນ", "PE.Views.Toolbar.txtDistribVert": "ແຈກຢາຍແນວຕັ້ງ", + "PE.Views.Toolbar.txtDuplicateSlide": "ສຳເນົາ ສະໄລ", "PE.Views.Toolbar.txtGroup": "ກຸ່ມ", "PE.Views.Toolbar.txtObjectsAlign": "ຈັດຕຳແໜ່ງຈຸດປະສົງທີ່ເລືອກໄວ້", "PE.Views.Toolbar.txtScheme1": "ຫ້ອງການ", @@ -1952,6 +2193,7 @@ "PE.Views.Toolbar.txtScheme2": "ໂທນສີເທົາ", "PE.Views.Toolbar.txtScheme20": "ໃນເມືອງ", "PE.Views.Toolbar.txtScheme21": "Verve", + "PE.Views.Toolbar.txtScheme22": "ຫ້ອງການໃໝ່", "PE.Views.Toolbar.txtScheme3": "ເອເພັກສ", "PE.Views.Toolbar.txtScheme4": "ມຸມມອງ", "PE.Views.Toolbar.txtScheme5": "ປະຫວັດ, ກ່ຽວກັບເມືອງ", @@ -1965,6 +2207,7 @@ "PE.Views.Transitions.strDuration": "ໄລຍະ", "PE.Views.Transitions.strStartOnClick": "ເລີ່ມຕົ້ນກົດ", "PE.Views.Transitions.textBlack": "ຜ່ານສີດຳ", + "PE.Views.Transitions.textBottom": "ລຸ່ມສຸດ", "PE.Views.Transitions.textBottomLeft": "ດ້ານລຸ່ມເບື້ອງຊ້າຍ", "PE.Views.Transitions.textBottomRight": "ດ້ານລຸ່ມເບື້ອງຂວາ", "PE.Views.Transitions.textClock": "ໂມງ", @@ -1980,6 +2223,7 @@ "PE.Views.Transitions.textRight": "ຂວາ", "PE.Views.Transitions.textSmoothly": "ຄ່ອງຕົວ, ສະດວກ", "PE.Views.Transitions.textSplit": "ແຍກ, ແບ່ງເປັນ", + "PE.Views.Transitions.textTop": "ເບື້ອງເທີງ", "PE.Views.Transitions.textTopLeft": "ຂ້າງເທິງ ເບິື້ອງຊ້າຍ", "PE.Views.Transitions.textTopRight": "ຂ້າງເທິງເບື້ອງຂວາ", "PE.Views.Transitions.textUnCover": "ເປີດເຜີຍ", @@ -1987,11 +2231,20 @@ "PE.Views.Transitions.textVerticalOut": "ລວງຕັ້ງງດ້ານນອກ", "PE.Views.Transitions.textWedge": "ລີ່ມ", "PE.Views.Transitions.textWipe": "ເຊັດ, ຖູ", + "PE.Views.Transitions.textZoom": "ຂະຫຍາຍ ເຂົ້າ-ອອກ", "PE.Views.Transitions.textZoomIn": "ຊຸມເຂົ້າ", "PE.Views.Transitions.textZoomOut": "ຂະຫຍາຍອອກ", "PE.Views.Transitions.textZoomRotate": "ຂະຫຍາຍ ແລະ ໝຸນ", "PE.Views.Transitions.txtApplyToAll": "ນຳໃຊ້ກັບທຸກໆແຜ່ນສະໄລ້", "PE.Views.Transitions.txtParameters": "ພາລາມິເຕີ", "PE.Views.Transitions.txtPreview": "ເບິ່ງຕົວຢ່າງ", - "PE.Views.Transitions.txtSec": "S" + "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "ສະແດງແຖບເຄື່ອງມືສະເໝີ", + "PE.Views.ViewTab.textFitToSlide": "ປັບສະໄລພໍດີ", + "PE.Views.ViewTab.textFitToWidth": "ຄວາມກວ້າງພໍດີ", + "PE.Views.ViewTab.textInterfaceTheme": "้ຮູບແບບການສະແດງຜົນ", + "PE.Views.ViewTab.textNotes": "ຈົດບັນທຶກ", + "PE.Views.ViewTab.textRulers": "ໄມ້ບັນທັດ", + "PE.Views.ViewTab.textStatusBar": "ຮູບແບບບາ", + "PE.Views.ViewTab.textZoom": "ຂະຫຍາຍ ເຂົ້າ-ອອກ" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/lv.json b/apps/presentationeditor/main/locale/lv.json index 9bcbc898f..da230bebd 100644 --- a/apps/presentationeditor/main/locale/lv.json +++ b/apps/presentationeditor/main/locale/lv.json @@ -6,6 +6,7 @@ "Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Warning", "Common.UI.ButtonColored.textAutoColor": "Automātisks", + "Common.UI.ButtonColored.textNewColor": "Pievienot jauno krāsu", "Common.UI.ComboBorderSize.txtNoBorders": "No borders", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index 4c92f2315..aa19abd86 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -61,7 +61,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Maak een kopie", "Common.Translation.warnFileLockedBtnView": "Open voor lezen", "Common.UI.ButtonColored.textAutoColor": "Automatisch", - "Common.UI.ButtonColored.textNewColor": "Voeg nieuwe aangepaste kleur toe", + "Common.UI.ButtonColored.textNewColor": "Nieuwe aangepaste kleur", "Common.UI.ComboBorderSize.txtNoBorders": "Geen randen", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen", "Common.UI.ComboDataView.emptyComboText": "Geen stijlen", diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json index 602e62b5d..8c7b2789b 100644 --- a/apps/presentationeditor/main/locale/pl.json +++ b/apps/presentationeditor/main/locale/pl.json @@ -22,7 +22,7 @@ "Common.define.chartData.textStock": "Zbiory", "Common.define.chartData.textSurface": "Powierzchnia", "Common.UI.ButtonColored.textAutoColor": "Automatyczny", - "Common.UI.ButtonColored.textNewColor": "Dodaj Nowy Niestandardowy Kolor", + "Common.UI.ButtonColored.textNewColor": "Nowy niestandardowy kolor", "Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi", "Common.UI.ComboDataView.emptyComboText": "Brak styli", diff --git a/apps/presentationeditor/main/locale/pt-PT.json b/apps/presentationeditor/main/locale/pt-PT.json new file mode 100644 index 000000000..130a08f0e --- /dev/null +++ b/apps/presentationeditor/main/locale/pt-PT.json @@ -0,0 +1,2273 @@ +{ + "Common.Controllers.Chat.notcriticalErrorTitle": "Aviso", + "Common.Controllers.Chat.textEnterMessage": "Inserir sua mensagem aqui", + "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anônimo", + "Common.Controllers.ExternalDiagramEditor.textClose": "Fechar", + "Common.Controllers.ExternalDiagramEditor.warningText": "O objeto foi desativado porque está a ser editado por outro utilizador.", + "Common.Controllers.ExternalDiagramEditor.warningTitle": "Aviso", + "Common.define.chartData.textArea": "Gráfico da Área", + "Common.define.chartData.textAreaStacked": "Área empilhada", + "Common.define.chartData.textAreaStackedPer": "Área 100% alinhada", + "Common.define.chartData.textBar": "Barra", + "Common.define.chartData.textBarNormal": "Coluna agrupada", + "Common.define.chartData.textBarNormal3d": "Coluna 3-D agrupada", + "Common.define.chartData.textBarNormal3dPerspective": "Coluna 3-D", + "Common.define.chartData.textBarStacked": "Coluna empilhada", + "Common.define.chartData.textBarStacked3d": "Coluna 3-D agrupada", + "Common.define.chartData.textBarStackedPer": "Coluna 100% alinhada", + "Common.define.chartData.textBarStackedPer3d": "Coluna 3-D 100% alinhada", + "Common.define.chartData.textCharts": "Gráficos", + "Common.define.chartData.textColumn": "Coluna", + "Common.define.chartData.textCombo": "Combinação", + "Common.define.chartData.textComboAreaBar": "Área empilhada – coluna agrupada", + "Common.define.chartData.textComboBarLine": "Coluna agrupada – linha", + "Common.define.chartData.textComboBarLineSecondary": "Coluna agrupada – linha num eixo secundário", + "Common.define.chartData.textComboCustom": "Combinação personalizada", + "Common.define.chartData.textDoughnut": "Rosquinha", + "Common.define.chartData.textHBarNormal": "Barra Agrupada", + "Common.define.chartData.textHBarNormal3d": "Barra 3-D agrupada", + "Common.define.chartData.textHBarStacked": "Barra empilhada", + "Common.define.chartData.textHBarStacked3d": "Barra 3-D agrupada", + "Common.define.chartData.textHBarStackedPer": "Barra 100% alinhada", + "Common.define.chartData.textHBarStackedPer3d": "Barra 3-D 100% alinhada", + "Common.define.chartData.textLine": "Linha", + "Common.define.chartData.textLine3d": "Linha 3-D", + "Common.define.chartData.textLineMarker": "Linha com marcadores", + "Common.define.chartData.textLineStacked": "Linha empilhada", + "Common.define.chartData.textLineStackedMarker": "Linha empilhada com marcadores", + "Common.define.chartData.textLineStackedPer": "100% Alinhado", + "Common.define.chartData.textLineStackedPerMarker": "Alinhado com 100%", + "Common.define.chartData.textPie": "Tarte", + "Common.define.chartData.textPie3d": "Tarte 3-D", + "Common.define.chartData.textPoint": "XY (gráfico de dispersão)", + "Common.define.chartData.textScatter": "Dispersão", + "Common.define.chartData.textScatterLine": "Dispersão com Linhas Retas", + "Common.define.chartData.textScatterLineMarker": "Dispersão com Linhas e Marcadores Retos", + "Common.define.chartData.textScatterSmooth": "Dispersão com Linhas Suaves", + "Common.define.chartData.textScatterSmoothMarker": "Dispersão com Linhas Suaves e Marcadores", + "Common.define.chartData.textStock": "Gráfico de ações", + "Common.define.chartData.textSurface": "Superfície", + "Common.define.effectData.textAppear": "Mostrar", + "Common.define.effectData.textArcDown": "Arco para Baixo", + "Common.define.effectData.textArcLeft": "Arco para a Esquerda", + "Common.define.effectData.textArcRight": "Arco para a Direita", + "Common.define.effectData.textArcs": "Arcos", + "Common.define.effectData.textArcUp": "Arco para Cima", + "Common.define.effectData.textBasic": "Básico", + "Common.define.effectData.textBasicSwivel": "Swivel Básico", + "Common.define.effectData.textBasicZoom": "Zoom Básico", + "Common.define.effectData.textBlinds": "Persianas", + "Common.define.effectData.textBlink": "Piscar", + "Common.define.effectData.textBoldFlash": "Piscar em Negrito ", + "Common.define.effectData.textBoldReveal": "Aparecer em Negrito", + "Common.define.effectData.textBoomerang": "Boomerang", + "Common.define.effectData.textBounce": "Aos Pulos", + "Common.define.effectData.textBounceLeft": "Pular para a Esquerda", + "Common.define.effectData.textBounceRight": "Pular para a Direita", + "Common.define.effectData.textBox": "Caixa", + "Common.define.effectData.textBrushColor": "Cor do Pincel", + "Common.define.effectData.textCircle": "Círculo", + "Common.define.effectData.textCollapse": "Recolher", + "Common.define.effectData.textColorPulse": "Cor Intermitente", + "Common.define.effectData.textComplementaryColor": "Cor Complementar", + "Common.define.effectData.textComplementaryColor2": "Cor Complementar 2", + "Common.define.effectData.textCompress": "Comprimir", + "Common.define.effectData.textContrast": "Contraste", + "Common.define.effectData.textContrastingColor": "Cor Contrastante", + "Common.define.effectData.textCredits": "Créditos", + "Common.define.effectData.textCrescentMoon": "Quarto Crescente", + "Common.define.effectData.textCurveDown": "Curvar para Baixo", + "Common.define.effectData.textCurvedSquare": "Quadrado Encurvado", + "Common.define.effectData.textCurvedX": "X Encurvado", + "Common.define.effectData.textCurvyLeft": "Curva para a Esquerda", + "Common.define.effectData.textCurvyRight": "Curva para a Direita", + "Common.define.effectData.textCurvyStar": "Estrela Curvada", + "Common.define.effectData.textCustomPath": "Caminho Personalizado", + "Common.define.effectData.textCuverUp": "Curvar para Cima", + "Common.define.effectData.textDarken": "Escurecer", + "Common.define.effectData.textDecayingWave": "Onda Esbatida", + "Common.define.effectData.textDesaturate": "Tirar Saturação", + "Common.define.effectData.textDiagonalDownRight": "Diagonal Baixo Direita", + "Common.define.effectData.textDiagonalUpRight": "Diagonal Cima Direita", + "Common.define.effectData.textDiamond": "Diamante", + "Common.define.effectData.textDisappear": "Desaparecer", + "Common.define.effectData.textDissolveIn": "Dissolver na Entrada", + "Common.define.effectData.textDissolveOut": "Dissolver na Saída", + "Common.define.effectData.textDown": "Para baixo", + "Common.define.effectData.textDrop": "Largar", + "Common.define.effectData.textEmphasis": "Efeitos de Ênfase", + "Common.define.effectData.textEntrance": "Efeitos de Entrada", + "Common.define.effectData.textEqualTriangle": "Triângulo Equilátero", + "Common.define.effectData.textExciting": "Apelativo", + "Common.define.effectData.textExit": "Efeitos de Saída", + "Common.define.effectData.textExpand": "Expandir", + "Common.define.effectData.textFade": "Desvanecimento", + "Common.define.effectData.textFigureFour": "Figura 8 Quatro", + "Common.define.effectData.textFillColor": "Cor de preenchimento", + "Common.define.effectData.textFlip": "Virar", + "Common.define.effectData.textFloat": "Flutuar", + "Common.define.effectData.textFloatDown": "Flutuar para Baixo", + "Common.define.effectData.textFloatIn": "Flutuar na Entrada", + "Common.define.effectData.textFloatOut": "Flutuar na Saída", + "Common.define.effectData.textFloatUp": "Flutuar pra Cima", + "Common.define.effectData.textFlyIn": "Voar na Entrada", + "Common.define.effectData.textFlyOut": "Voar na Saída", + "Common.define.effectData.textFontColor": "Cor do tipo de letra", + "Common.define.effectData.textFootball": "Futebol", + "Common.define.effectData.textFromBottom": "Do fundo", + "Common.define.effectData.textFromBottomLeft": "Do Canto Inferior Esquerdo", + "Common.define.effectData.textFromBottomRight": "Do Cantor Inferior Direito", + "Common.define.effectData.textFromLeft": "Da Esquerda", + "Common.define.effectData.textFromRight": "Da Direita", + "Common.define.effectData.textFromTop": "De cima", + "Common.define.effectData.textFromTopLeft": "Do Canto Superior Esquerdo", + "Common.define.effectData.textFromTopRight": "Do Canto Superior Direito", + "Common.define.effectData.textFunnel": "Funil", + "Common.define.effectData.textGrowShrink": "Aumentar/Diminuir", + "Common.define.effectData.textGrowTurn": "Aumentar e Virar", + "Common.define.effectData.textGrowWithColor": "Aumentar com Cor", + "Common.define.effectData.textHeart": "Coração", + "Common.define.effectData.textHeartbeat": "Batimento cardíaco", + "Common.define.effectData.textHexagon": "Hexágono", + "Common.define.effectData.textHorizontal": "Horizontal", + "Common.define.effectData.textHorizontalFigure": "Figura 8 Horizontal", + "Common.define.effectData.textHorizontalIn": "Horizontal para dentro", + "Common.define.effectData.textHorizontalOut": "Horizontal para fora", + "Common.define.effectData.textIn": "Em", + "Common.define.effectData.textInFromScreenCenter": "Ampliar a Partir do Centro do Ecrã", + "Common.define.effectData.textInSlightly": "Ampliar Ligeiramente", + "Common.define.effectData.textInToScreenBottom": "Ampliar para o Fundo do Ecrã", + "Common.define.effectData.textInToScreenCenter": "Ampliar para o Centro do Ecrã", + "Common.define.effectData.textInvertedSquare": "Quadrado Invertido", + "Common.define.effectData.textInvertedTriangle": "Triângulo Invertido", + "Common.define.effectData.textLeft": "Esquerda", + "Common.define.effectData.textLeftDown": "Esquerda em baixo", + "Common.define.effectData.textLeftUp": "Esquerda em cima", + "Common.define.effectData.textLighten": "Mais Claro", + "Common.define.effectData.textLineColor": "Cor da linha", + "Common.define.effectData.textLines": "Linhas", + "Common.define.effectData.textLinesCurves": "Linhas e Curvas", + "Common.define.effectData.textLoopDeLoop": "Nó", + "Common.define.effectData.textLoops": "Ciclos", + "Common.define.effectData.textModerate": "Moderado", + "Common.define.effectData.textNeutron": "Neutrão", + "Common.define.effectData.textObjectCenter": "Centro do Objeto", + "Common.define.effectData.textObjectColor": "Cor do Objeto", + "Common.define.effectData.textOctagon": "Octógono", + "Common.define.effectData.textOut": "Fora", + "Common.define.effectData.textOutFromScreenBottom": "Reduzir a Partir do Fundo do Ecrã", + "Common.define.effectData.textOutSlightly": "Reduzir Ligeiramente", + "Common.define.effectData.textOutToScreenCenter": "De Fora Para a Parte Central do Ecrã", + "Common.define.effectData.textParallelogram": "Paralelograma", + "Common.define.effectData.textPath": "Trajetórias de Movimento ", + "Common.define.effectData.textPeanut": "Amendoim", + "Common.define.effectData.textPeekIn": "Deslizar", + "Common.define.effectData.textPeekOut": "Sair", + "Common.define.effectData.textPentagon": "Pentágono", + "Common.define.effectData.textPinwheel": "Remoinho", + "Common.define.effectData.textPlus": "Mais", + "Common.define.effectData.textPointStar": "Estrela de Pontas", + "Common.define.effectData.textPointStar4": "Estrela de 4 pontos", + "Common.define.effectData.textPointStar5": "Estrela de 5 pontos", + "Common.define.effectData.textPointStar6": "Estrela de 6 pontos", + "Common.define.effectData.textPointStar8": "Estrela de 8 pontos", + "Common.define.effectData.textPulse": "Intermitente", + "Common.define.effectData.textRandomBars": "Barros Aleatórias", + "Common.define.effectData.textRight": "Direita", + "Common.define.effectData.textRightDown": "Direita em Baixo", + "Common.define.effectData.textRightTriangle": "Triângulo à Direita", + "Common.define.effectData.textRightUp": "Direita em cima", + "Common.define.effectData.textRiseUp": "Revelar para Baixo", + "Common.define.effectData.textSCurve1": "Curva em S 1", + "Common.define.effectData.textSCurve2": "Curva em S 2", + "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShapes": "Formas", + "Common.define.effectData.textShimmer": "Brilho", + "Common.define.effectData.textShrinkTurn": "Diminuir e Virar", + "Common.define.effectData.textSineWave": "Onda Sinusoidal", + "Common.define.effectData.textSinkDown": "Mergulhar", + "Common.define.effectData.textSlideCenter": "Centro do Diapositivo", + "Common.define.effectData.textSpecial": "Especial", + "Common.define.effectData.textSpin": "Girar", + "Common.define.effectData.textSpinner": "Controlo giratório", + "Common.define.effectData.textSpiralIn": "Entrada em espiral", + "Common.define.effectData.textSpiralLeft": "Espiral para a Esquerda", + "Common.define.effectData.textSpiralOut": "Saída em Espiral", + "Common.define.effectData.textSpiralRight": "Espiral para a Direita", + "Common.define.effectData.textSplit": "Dividir", + "Common.define.effectData.textSpring": "Primavera", + "Common.define.effectData.textSquare": "Quadrado", + "Common.define.effectData.textStairsDown": "Escadas abaixo", + "Common.define.effectData.textStretch": "Alongar", + "Common.define.effectData.textStrips": "Faixas", + "Common.define.effectData.textSubtle": "Subtil", + "Common.define.effectData.textSwivel": "Girar", + "Common.define.effectData.textSwoosh": "Laço", + "Common.define.effectData.textTeardrop": "Lágrima", + "Common.define.effectData.textTeeter": "Balançar", + "Common.define.effectData.textToBottom": "Para Baixo", + "Common.define.effectData.textToBottomLeft": "Para Baixo-Esquerda", + "Common.define.effectData.textToBottomRight": "Para Baixo-Direita", + "Common.define.effectData.textToFromScreenBottom": "De Fora Para a Parte Inferior do Ecrã", + "Common.define.effectData.textToLeft": "Para a esquerda", + "Common.define.effectData.textToRight": "Para a Direita", + "Common.define.effectData.textToTop": "Para Cima", + "Common.define.effectData.textToTopLeft": "Para Cima-Esquerda", + "Common.define.effectData.textToTopRight": "Para Cima-Direita", + "Common.define.effectData.textTransparency": "Transparência", + "Common.define.effectData.textTrapezoid": "Trapézio", + "Common.define.effectData.textTurnDown": "Virar para Baixo", + "Common.define.effectData.textTurnDownRight": "Virar para Baixo e Direita", + "Common.define.effectData.textTurns": "Voltas", + "Common.define.effectData.textTurnUp": "Para Cima", + "Common.define.effectData.textTurnUpRight": "Para Cima e para a Direita", + "Common.define.effectData.textUnderline": "Sublinhado", + "Common.define.effectData.textUp": "Para cima", + "Common.define.effectData.textVertical": "Vertical", + "Common.define.effectData.textVerticalFigure": "Figura Vertical 8", + "Common.define.effectData.textVerticalIn": "Vertical para dentro", + "Common.define.effectData.textVerticalOut": "Vertical para fora", + "Common.define.effectData.textWave": "Onda", + "Common.define.effectData.textWedge": "Triangular", + "Common.define.effectData.textWheel": "Roda", + "Common.define.effectData.textWhip": "Chicote", + "Common.define.effectData.textWipe": "Revelar", + "Common.define.effectData.textZigzag": "Zigzag", + "Common.define.effectData.textZoom": "Zoom", + "Common.Translation.warnFileLocked": "O ficheiro está a ser editado por outra aplicação. Pode continuar a trabalhar mas terá que guardar uma cópia.", + "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", + "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", + "Common.UI.ButtonColored.textAutoColor": "Automático", + "Common.UI.ButtonColored.textNewColor": "Adicionar nova cor personalizada", + "Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas", + "Common.UI.ComboDataView.emptyComboText": "Sem estilos", + "Common.UI.ExtendedColorDialog.addButtonText": "Adicionar", + "Common.UI.ExtendedColorDialog.textCurrent": "Atual", + "Common.UI.ExtendedColorDialog.textHexErr": "O valor inserido não está correto.
Introduza um valor entre 000000 e FFFFFF.", + "Common.UI.ExtendedColorDialog.textNew": "Novo", + "Common.UI.ExtendedColorDialog.textRGBErr": "O valor inserido não está correto.
Introduza um valor numérico entre 0 e 255.", + "Common.UI.HSBColorPicker.textNoColor": "Sem cor", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar palavra-passe", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar palavra-passe", + "Common.UI.SearchDialog.textHighlight": "Destacar resultados", + "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", + "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto de substituição", + "Common.UI.SearchDialog.textSearchStart": "Inserir seu texto aqui", + "Common.UI.SearchDialog.textTitle": "Localizar e substituir", + "Common.UI.SearchDialog.textTitle2": "Localizar", + "Common.UI.SearchDialog.textWholeWords": "Palavras inteiras apenas", + "Common.UI.SearchDialog.txtBtnHideReplace": "Ocultar Substituição", + "Common.UI.SearchDialog.txtBtnReplace": "Substituir", + "Common.UI.SearchDialog.txtBtnReplaceAll": "Substituir tudo", + "Common.UI.SynchronizeTip.textDontShow": "Não exibir esta mensagem novamente", + "Common.UI.SynchronizeTip.textSynchronize": "O documento foi alterado por outro utilizador.
Clique para guardar as suas alterações e recarregar o documento.", + "Common.UI.ThemeColorPalette.textStandartColors": "Cores padrão", + "Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema", + "Common.UI.Themes.txtThemeClassicLight": "Clássico claro", + "Common.UI.Themes.txtThemeDark": "Escuro", + "Common.UI.Themes.txtThemeLight": "Claro", + "Common.UI.Window.cancelButtonText": "Cancelar", + "Common.UI.Window.closeButtonText": "Fechar", + "Common.UI.Window.noButtonText": "Não", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Confirmação", + "Common.UI.Window.textDontShow": "Não exibir esta mensagem novamente", + "Common.UI.Window.textError": "Erro", + "Common.UI.Window.textInformation": "Informações", + "Common.UI.Window.textWarning": "Aviso", + "Common.UI.Window.yesButtonText": "Sim", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "Pt", + "Common.Views.About.txtAddress": "endereço:", + "Common.Views.About.txtLicensee": "LICENÇA", + "Common.Views.About.txtLicensor": "LICENCIANTE", + "Common.Views.About.txtMail": "e-mail:", + "Common.Views.About.txtPoweredBy": "Desenvolvido por", + "Common.Views.About.txtTel": "tel.: ", + "Common.Views.About.txtVersion": "Versão", + "Common.Views.AutoCorrectDialog.textAdd": "Adicionar", + "Common.Views.AutoCorrectDialog.textApplyText": "Aplicar ao escrever", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autocorreção de Texto", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Formatação automática ao escrever", + "Common.Views.AutoCorrectDialog.textBulleted": "Lista automática com marcas", + "Common.Views.AutoCorrectDialog.textBy": "Por", + "Common.Views.AutoCorrectDialog.textDelete": "Eliminar", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Adicionar parágrafo com espaçamento duplo", + "Common.Views.AutoCorrectDialog.textFLCells": "Maiúscula na primeira letra das células da tabela", + "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalizar a primeira letra das frases", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e locais de rede com hiperligações", + "Common.Views.AutoCorrectDialog.textHyphens": "Hífens (--) com traço (-)", + "Common.Views.AutoCorrectDialog.textMathCorrect": " Correção automática de matemática", + "Common.Views.AutoCorrectDialog.textNumbered": "Lista automática com números", + "Common.Views.AutoCorrectDialog.textQuotes": "\"Aspas retas\" com \"aspas inteligentes\"", + "Common.Views.AutoCorrectDialog.textRecognized": "Funções Reconhecidas", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "As seguintes expressões são expressões matemáticas reconhecidas. Não serão colocadas automaticamente em itálico.", + "Common.Views.AutoCorrectDialog.textReplace": "Substituir", + "Common.Views.AutoCorrectDialog.textReplaceText": "Substituir à medida que digita", + "Common.Views.AutoCorrectDialog.textReplaceType": "Substitua o texto à medida que digita", + "Common.Views.AutoCorrectDialog.textReset": "Repor", + "Common.Views.AutoCorrectDialog.textResetAll": "Repor predefinição", + "Common.Views.AutoCorrectDialog.textRestore": "Restaurar", + "Common.Views.AutoCorrectDialog.textTitle": "Correção automática", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "As funções reconhecidas devem conter apenas as letras de A a Z, maiúsculas ou minúsculas.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Qualquer expressão que tenha acrescentado será removida e as expressões removidas serão restauradas. Quer continuar?", + "Common.Views.AutoCorrectDialog.warnReplace": "A correção automática para %1 já existe. Quer substituí-la?", + "Common.Views.AutoCorrectDialog.warnReset": "Qualquer correção automática que tenha adicionado será removida e as alterações serão restauradas aos seus valores originais. Quer continuar?", + "Common.Views.AutoCorrectDialog.warnRestore": "A correção automática para %1 já existe. Quer substituí-la?", + "Common.Views.Chat.textSend": "Enviar", + "Common.Views.Comments.mniAuthorAsc": "Autor de A a Z", + "Common.Views.Comments.mniAuthorDesc": "Autor Z a A", + "Common.Views.Comments.mniDateAsc": "Mais antigo", + "Common.Views.Comments.mniDateDesc": "Novidades", + "Common.Views.Comments.mniFilterGroups": "Filtrar por Grupo", + "Common.Views.Comments.mniPositionAsc": "De cima", + "Common.Views.Comments.mniPositionDesc": "Do fundo", + "Common.Views.Comments.textAdd": "Adicionar", + "Common.Views.Comments.textAddComment": "Adicionar", + "Common.Views.Comments.textAddCommentToDoc": "Adicionar comentário ao documento", + "Common.Views.Comments.textAddReply": "Adicionar resposta", + "Common.Views.Comments.textAll": "Todos", + "Common.Views.Comments.textAnonym": "Visitante", + "Common.Views.Comments.textCancel": "Cancelar", + "Common.Views.Comments.textClose": "Fechar", + "Common.Views.Comments.textClosePanel": "Fechar comentários", + "Common.Views.Comments.textComments": "Comentários", + "Common.Views.Comments.textEdit": "Editar", + "Common.Views.Comments.textEnterCommentHint": "Inserir seu comentário aqui", + "Common.Views.Comments.textHintAddComment": "Adicionar comentário", + "Common.Views.Comments.textOpenAgain": "Abrir novamente", + "Common.Views.Comments.textReply": "Responder", + "Common.Views.Comments.textResolve": "Resolver", + "Common.Views.Comments.textResolved": "Resolvido", + "Common.Views.Comments.textSort": "Ordenar comentários", + "Common.Views.Comments.textViewResolved": "Não tem permissão para reabrir o comentário", + "Common.Views.CopyWarningDialog.textDontShow": "Não exibir esta mensagem novamente", + "Common.Views.CopyWarningDialog.textMsg": "As ações copiar, cortar e colar através dos botões da barra de ferramentas ou através do menu de contexto apenas serão executadas neste separador.

Para copiar ou colar de outras aplicações deve utilizar estas teclas de atalho:", + "Common.Views.CopyWarningDialog.textTitle": "Ações copiar, cortar e colar", + "Common.Views.CopyWarningDialog.textToCopy": "para copiar", + "Common.Views.CopyWarningDialog.textToCut": "para cortar", + "Common.Views.CopyWarningDialog.textToPaste": "para Colar", + "Common.Views.DocumentAccessDialog.textLoading": "Carregando...", + "Common.Views.DocumentAccessDialog.textTitle": "Definições de partilha", + "Common.Views.ExternalDiagramEditor.textClose": "Fechar", + "Common.Views.ExternalDiagramEditor.textSave": "Salvar e Sair", + "Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico", + "Common.Views.Header.labelCoUsersDescr": "Utilizadores a editar o ficheiro:", + "Common.Views.Header.textAddFavorite": "Marcar como favorito", + "Common.Views.Header.textAdvSettings": "Definições avançadas", + "Common.Views.Header.textBack": "Abrir localização", + "Common.Views.Header.textCompactView": "Ocultar barra de ferramentas", + "Common.Views.Header.textHideLines": "Ocultar réguas", + "Common.Views.Header.textHideNotes": "Ocultar Notas", + "Common.Views.Header.textHideStatusBar": "Ocultar barra de estado", + "Common.Views.Header.textRemoveFavorite": "Remover dos favoritos", + "Common.Views.Header.textSaveBegin": "Salvando...", + "Common.Views.Header.textSaveChanged": "Modificado", + "Common.Views.Header.textSaveEnd": "Todas as alterações foram salvas", + "Common.Views.Header.textSaveExpander": "Todas as alterações foram salvas", + "Common.Views.Header.textZoom": "Ampliação", + "Common.Views.Header.tipAccessRights": "Gerenciar direitos de acesso ao documento", + "Common.Views.Header.tipDownload": "Descarregar ficheiro", + "Common.Views.Header.tipGoEdit": "Editar ficheiro atual", + "Common.Views.Header.tipPrint": "Imprimir ficheiro", + "Common.Views.Header.tipRedo": "Refazer", + "Common.Views.Header.tipSave": "Guardar", + "Common.Views.Header.tipUndo": "Desfazer", + "Common.Views.Header.tipViewSettings": "Definições de visualização", + "Common.Views.Header.tipViewUsers": "Ver utilizadores e gerir direitos de acesso", + "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", + "Common.Views.Header.txtRename": "Renomear", + "Common.Views.History.textCloseHistory": "Fechar histórico", + "Common.Views.History.textHide": "Recolher", + "Common.Views.History.textHideAll": "Ocultar alterações detalhadas", + "Common.Views.History.textRestore": "Restaurar", + "Common.Views.History.textShow": "Expandir", + "Common.Views.History.textShowAll": "Mostrar alterações detalhadas", + "Common.Views.History.textVer": "ver.", + "Common.Views.ImageFromUrlDialog.textUrl": "Colar URL de uma imagem:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "Você precisa especificar números de linhas e colunas válidos.", + "Common.Views.InsertTableDialog.txtColumns": "Número de colunas", + "Common.Views.InsertTableDialog.txtMaxText": "O valor máximo para este campo é {0}.", + "Common.Views.InsertTableDialog.txtMinText": "O valor mínimo para este campo é {0}.", + "Common.Views.InsertTableDialog.txtRows": "Número de linhas", + "Common.Views.InsertTableDialog.txtTitle": "Tamanho da tabela", + "Common.Views.InsertTableDialog.txtTitleSplit": "Dividir célula", + "Common.Views.LanguageDialog.labelSelect": "Selecionar idioma do documento", + "Common.Views.ListSettingsDialog.textBulleted": "Com Marcas de Lista", + "Common.Views.ListSettingsDialog.textNumbering": "Numerado", + "Common.Views.ListSettingsDialog.tipChange": "Alterar lista", + "Common.Views.ListSettingsDialog.txtBullet": "Marcador", + "Common.Views.ListSettingsDialog.txtColor": "Cor", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nova marca", + "Common.Views.ListSettingsDialog.txtNone": "Nenhum", + "Common.Views.ListSettingsDialog.txtOfText": "% do texto", + "Common.Views.ListSettingsDialog.txtSize": "Tamanho", + "Common.Views.ListSettingsDialog.txtStart": "Iniciar em", + "Common.Views.ListSettingsDialog.txtSymbol": "Símbolo", + "Common.Views.ListSettingsDialog.txtTitle": "Definições da lista", + "Common.Views.ListSettingsDialog.txtType": "Tipo", + "Common.Views.OpenDialog.closeButtonText": "Fechar ficheiro", + "Common.Views.OpenDialog.txtEncoding": "Codificação", + "Common.Views.OpenDialog.txtIncorrectPwd": "Palavra-passe inválida.", + "Common.Views.OpenDialog.txtOpenFile": "Introduza a palavra-passe para abrir o ficheiro", + "Common.Views.OpenDialog.txtPassword": "Palavra-passe", + "Common.Views.OpenDialog.txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta.", + "Common.Views.OpenDialog.txtTitle": "Escolher opções %1", + "Common.Views.OpenDialog.txtTitleProtected": "Ficheiro protegido", + "Common.Views.PasswordDialog.txtDescription": "Defina uma palavra-passe para proteger este documento", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Disparidade nas palavras-passe introduzidas", + "Common.Views.PasswordDialog.txtPassword": "Palavra-passe", + "Common.Views.PasswordDialog.txtRepeat": "Repetição de palavra-passe", + "Common.Views.PasswordDialog.txtTitle": "Definir palavra-passe", + "Common.Views.PasswordDialog.txtWarning": "Aviso: Se perder ou esquecer a palavra-passe, não será possível recuperá-la. Guarde-a num local seguro.", + "Common.Views.PluginDlg.textLoading": "Carregamento", + "Common.Views.Plugins.groupCaption": "Plugins", + "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textLoading": "Carregamento", + "Common.Views.Plugins.textStart": "Iniciar", + "Common.Views.Plugins.textStop": "Parar", + "Common.Views.Protection.hintAddPwd": "Cifrar com palavra-passe", + "Common.Views.Protection.hintPwd": "Alterar ou eliminar palavra-passe", + "Common.Views.Protection.hintSignature": "Inserir assinatura digital ou linha de assinatura", + "Common.Views.Protection.txtAddPwd": "Adicionar palavra-passe", + "Common.Views.Protection.txtChangePwd": "Alterar palavra-passe", + "Common.Views.Protection.txtDeletePwd": "Eliminar palavra-passe", + "Common.Views.Protection.txtEncrypt": "Encriptar", + "Common.Views.Protection.txtInvisibleSignature": "Inserir assinatura digital", + "Common.Views.Protection.txtSignature": "Assinatura", + "Common.Views.Protection.txtSignatureLine": "Adicionar linha de assinatura", + "Common.Views.RenameDialog.textName": "Nome do ficheiro", + "Common.Views.RenameDialog.txtInvalidName": "O nome do ficheiro não pode ter qualquer um dos seguintes caracteres:", + "Common.Views.ReviewChanges.hintNext": "Para a próxima alteração", + "Common.Views.ReviewChanges.hintPrev": "Para a alteração anterior", + "Common.Views.ReviewChanges.strFast": "Rápido", + "Common.Views.ReviewChanges.strFastDesc": "Edição em tempo real. Todas as alterações foram guardadas.", + "Common.Views.ReviewChanges.strStrict": "Estrito", + "Common.Views.ReviewChanges.strStrictDesc": "Utilize o botão 'Guardar' para sincronizar as alterações efetuadas ao documento.", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Aceito estas mudanças", + "Common.Views.ReviewChanges.tipCoAuthMode": "Definir modo de coedição", + "Common.Views.ReviewChanges.tipCommentRem": "Remover comentários", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Remover comentários atuais", + "Common.Views.ReviewChanges.tipCommentResolve": "Resolver comentários", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resolver comentários atuais", + "Common.Views.ReviewChanges.tipHistory": "Mostrar histórico de versão", + "Common.Views.ReviewChanges.tipRejectCurrent": "Rejeitar alterações atuais", + "Common.Views.ReviewChanges.tipReview": "Rastrear alterações", + "Common.Views.ReviewChanges.tipReviewView": "Selecione o modo em que pretende que as alterações sejam apresentadas", + "Common.Views.ReviewChanges.tipSetDocLang": "Definir idioma do documento", + "Common.Views.ReviewChanges.tipSetSpelling": "Verificação ortográfica", + "Common.Views.ReviewChanges.tipSharing": "Gerir direitos de acesso ao documento", + "Common.Views.ReviewChanges.txtAccept": "Aceito", + "Common.Views.ReviewChanges.txtAcceptAll": "Aceito todas mudanças", + "Common.Views.ReviewChanges.txtAcceptChanges": "Aceito mudanças", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Aceito a mudança", + "Common.Views.ReviewChanges.txtChat": "Conversa", + "Common.Views.ReviewChanges.txtClose": "Fechar", + "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de co-edição", + "Common.Views.ReviewChanges.txtCommentRemAll": "Remover todos os comentários", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remover comentários atuais", + "Common.Views.ReviewChanges.txtCommentRemMy": "Remover os meus comentários", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remover os meus comentários atuais", + "Common.Views.ReviewChanges.txtCommentRemove": "Remover", + "Common.Views.ReviewChanges.txtCommentResolve": "Resolver", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolver todos os comentários", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolver comentários atuais", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolver meus comentários", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolver meus comentários atuais", + "Common.Views.ReviewChanges.txtDocLang": "Idioma", + "Common.Views.ReviewChanges.txtFinal": "Todas as alterações aceites (Pré-visualizar)", + "Common.Views.ReviewChanges.txtFinalCap": "Final", + "Common.Views.ReviewChanges.txtHistory": "Histórico da versão", + "Common.Views.ReviewChanges.txtMarkup": "Todas as alterações (Editar)", + "Common.Views.ReviewChanges.txtMarkupCap": "Marcação", + "Common.Views.ReviewChanges.txtNext": "Próximo", + "Common.Views.ReviewChanges.txtOriginal": "Todas as alterações recusadas (Pré-visualizar)", + "Common.Views.ReviewChanges.txtOriginalCap": "Original", + "Common.Views.ReviewChanges.txtPrev": "Anterior", + "Common.Views.ReviewChanges.txtReject": "Rejeitar", + "Common.Views.ReviewChanges.txtRejectAll": "Rejeitar todas as alterações", + "Common.Views.ReviewChanges.txtRejectChanges": "Rejeitar alterações", + "Common.Views.ReviewChanges.txtRejectCurrent": "Rejeitar alteração atual", + "Common.Views.ReviewChanges.txtSharing": "Partilhar", + "Common.Views.ReviewChanges.txtSpelling": "Verificação ortográfica", + "Common.Views.ReviewChanges.txtTurnon": "Rastrear alterações", + "Common.Views.ReviewChanges.txtView": "Modo de exibição", + "Common.Views.ReviewPopover.textAdd": "Adiciona", + "Common.Views.ReviewPopover.textAddReply": "Adicionar resposta", + "Common.Views.ReviewPopover.textCancel": "Cancelar", + "Common.Views.ReviewPopover.textClose": "Fechar", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textMention": "+mencionar dar-lhe-á acesso ao documento e enviar-lhe-á um e-mail", + "Common.Views.ReviewPopover.textMentionNotify": "+menção notifica o utilizador por e-mail", + "Common.Views.ReviewPopover.textOpenAgain": "Abrir novamente", + "Common.Views.ReviewPopover.textReply": "Responder", + "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "Não tem permissão para reabrir o comentário", + "Common.Views.ReviewPopover.txtDeleteTip": "Eliminar", + "Common.Views.ReviewPopover.txtEditTip": "Editar", + "Common.Views.SaveAsDlg.textLoading": "A carregar", + "Common.Views.SaveAsDlg.textTitle": "Pasta para guardar", + "Common.Views.SelectFileDlg.textLoading": "A carregar", + "Common.Views.SelectFileDlg.textTitle": "Selecionar fonte de dados", + "Common.Views.SignDialog.textBold": "Negrito", + "Common.Views.SignDialog.textCertificate": " Certificado", + "Common.Views.SignDialog.textChange": "Alterar", + "Common.Views.SignDialog.textInputName": "Inserir nome do assinante", + "Common.Views.SignDialog.textItalic": "Itálico", + "Common.Views.SignDialog.textNameError": "O nome do assinante não pode estar vazio", + "Common.Views.SignDialog.textPurpose": "Objetivo para assinar este documento", + "Common.Views.SignDialog.textSelect": "Selecionar", + "Common.Views.SignDialog.textSelectImage": "Selecionar imagem", + "Common.Views.SignDialog.textSignature": "A assinatura parece ser", + "Common.Views.SignDialog.textTitle": "Assinar o documento", + "Common.Views.SignDialog.textUseImage": "ou clique \"Selecionar imagem\" para a utilizar como assinatura", + "Common.Views.SignDialog.textValid": "Válida de %1 até %2", + "Common.Views.SignDialog.tipFontName": "Nome do tipo de letra", + "Common.Views.SignDialog.tipFontSize": "Tamanho do tipo de letra", + "Common.Views.SignSettingsDialog.textAllowComment": "Permitir ao signatário inserir comentários no diálogo de assinatura", + "Common.Views.SignSettingsDialog.textInfo": "Informação sobre o Assinante", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", + "Common.Views.SignSettingsDialog.textInfoName": "Nome", + "Common.Views.SignSettingsDialog.textInfoTitle": "Título do Assinante", + "Common.Views.SignSettingsDialog.textInstructions": "Instruções para o Assinante", + "Common.Views.SignSettingsDialog.textShowDate": "Mostrar data na linha de assinatura", + "Common.Views.SignSettingsDialog.textTitle": "Definições de Assinatura", + "Common.Views.SignSettingsDialog.txtEmpty": "Este campo é obrigatório", + "Common.Views.SymbolTableDialog.textCharacter": "Carácter", + "Common.Views.SymbolTableDialog.textCode": "Valor Unicode HEX", + "Common.Views.SymbolTableDialog.textCopyright": "Assinatura Copyright", + "Common.Views.SymbolTableDialog.textDCQuote": "Aspas Duplas de Fechamento", + "Common.Views.SymbolTableDialog.textDOQuote": "Aspas de abertura", + "Common.Views.SymbolTableDialog.textEllipsis": "Elipse horizontal", + "Common.Views.SymbolTableDialog.textEmDash": "Travessão", + "Common.Views.SymbolTableDialog.textEmSpace": "Espaço", + "Common.Views.SymbolTableDialog.textEnDash": "Travessão", + "Common.Views.SymbolTableDialog.textEnSpace": "Espaço", + "Common.Views.SymbolTableDialog.textFont": "Tipo de letra", + "Common.Views.SymbolTableDialog.textNBHyphen": "Hífen inseparável", + "Common.Views.SymbolTableDialog.textNBSpace": "Espaço sem interrupção", + "Common.Views.SymbolTableDialog.textPilcrow": "Sinal de antígrafo", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 de espaço", + "Common.Views.SymbolTableDialog.textRange": "Intervalo", + "Common.Views.SymbolTableDialog.textRecent": "Símbolos usados recentemente", + "Common.Views.SymbolTableDialog.textRegistered": "Sinal Registado", + "Common.Views.SymbolTableDialog.textSCQuote": "Aspas de Fechamento", + "Common.Views.SymbolTableDialog.textSection": "Sinal de secção", + "Common.Views.SymbolTableDialog.textShortcut": "Tecla de atalho", + "Common.Views.SymbolTableDialog.textSHyphen": "Hífen virtual", + "Common.Views.SymbolTableDialog.textSOQuote": "Apóstrofo de abertura", + "Common.Views.SymbolTableDialog.textSpecial": "Caracteres especiais", + "Common.Views.SymbolTableDialog.textSymbols": "Símbolos", + "Common.Views.SymbolTableDialog.textTitle": "Símbolo", + "Common.Views.SymbolTableDialog.textTradeMark": "Símbolo de Marca Registada.", + "Common.Views.UserNameDialog.textDontShow": "Não perguntar novamente", + "Common.Views.UserNameDialog.textLabel": "Etiqueta:", + "Common.Views.UserNameDialog.textLabelError": "Etiqueta não deve estar em branco.", + "PE.Controllers.LeftMenu.leavePageText": "Todas as alterações não guardadas serão perdidas.
Clique em \"Cancelar\" e depois em \"Guardar\" para as guardar. Clique em \"Ok\" para descartar todas as alterações não guardadas.", + "PE.Controllers.LeftMenu.newDocumentTitle": "Apresentação sem nome", + "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Aviso", + "PE.Controllers.LeftMenu.requestEditRightsText": "Solicitando direitos de edição...", + "PE.Controllers.LeftMenu.textLoadHistory": "A carregar o histórico de versões...", + "PE.Controllers.LeftMenu.textNoTextFound": "Não foi possível localizar os dados procurados. Por favor ajuste as opções de pesquisa.", + "PE.Controllers.LeftMenu.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", + "PE.Controllers.LeftMenu.textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", + "PE.Controllers.LeftMenu.txtUntitled": "Sem título", + "PE.Controllers.Main.applyChangesTextText": "Carregando dados...", + "PE.Controllers.Main.applyChangesTitleText": "Carregando dados", + "PE.Controllers.Main.convertationTimeoutText": "Excedeu o tempo limite de conversão.", + "PE.Controllers.Main.criticalErrorExtText": "Prima \"OK\" para voltar para a lista de documentos.", + "PE.Controllers.Main.criticalErrorTitle": "Erro", + "PE.Controllers.Main.downloadErrorText": "Download falhou.", + "PE.Controllers.Main.downloadTextText": "Baixando apresentação...", + "PE.Controllers.Main.downloadTitleText": "Baixando apresentação", + "PE.Controllers.Main.errorAccessDeny": "Você está tentando executar uma ação para a qual não tem direitos.
Entre em contato com o administrador do Document Server.", + "PE.Controllers.Main.errorBadImageUrl": "URL inválido", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão com servidor perdida. O documento não pode ser editado neste momento.", + "PE.Controllers.Main.errorComboSeries": "Para criar um gráfico de combinação, selecione pelo menos duas séries de dados.", + "PE.Controllers.Main.errorConnectToServer": "Não foi possível guardar o documento. Verifique a sua ligação de rede ou contacte o administrador.
Ao clicar em 'OK', surgirá uma caixa de diálogo para descarregar o documento.", + "PE.Controllers.Main.errorDatabaseConnection": "Erro externo.
Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.", + "PE.Controllers.Main.errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", + "PE.Controllers.Main.errorDataRange": "Intervalo de dados inválido.", + "PE.Controllers.Main.errorDefaultMessage": "Código de erro: %1", + "PE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no seu computador.", + "PE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
Utilize a opção 'Guardar como...' para guardar uma cópia do ficheiro no seu computador.", + "PE.Controllers.Main.errorEmailClient": "Não foi possível encontrar nenhum cliente de e-mail.", + "PE.Controllers.Main.errorFilePassProtect": "O ficheiro está protegido por palavra-passe e não pode ser aberto.", + "PE.Controllers.Main.errorFileSizeExceed": "O tamanho do ficheiro excede o limite do servidor.
Contacte o administrador do servidor de documentos para mais detalhes.", + "PE.Controllers.Main.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar' para guardar o ficheiro no seu computador e tentar mais tarde.", + "PE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", + "PE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", + "PE.Controllers.Main.errorLoadingFont": "Os tipos de letra não foram carregados.
Contacte o administrador do servidor de documentos.", + "PE.Controllers.Main.errorProcessSaveResult": "Salvamento falhou.", + "PE.Controllers.Main.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", + "PE.Controllers.Main.errorSessionAbsolute": "A sessão de edição expirou. Tente recarregar a página.", + "PE.Controllers.Main.errorSessionIdle": "Este documento não foi editado durante muito tempo. Tente recarregar a página.", + "PE.Controllers.Main.errorSessionToken": "A ligação ao servidor foi interrompida. Tente recarregar a página.", + "PE.Controllers.Main.errorSetPassword": "Não foi possível definir a palavra-passe.", + "PE.Controllers.Main.errorStockChart": "Ordem de linha inválida. Para criar um gráfico de cotações, coloque os dados na folha pela seguinte ordem:
preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "PE.Controllers.Main.errorToken": "O token de segurança do documento não foi formado corretamente.
Entre em contato com o administrador do Document Server.", + "PE.Controllers.Main.errorTokenExpire": "O token de segurança do documento expirou.
Entre em contato com o administrador do Document Server.", + "PE.Controllers.Main.errorUpdateVersion": "A versão do ficheiro foi alterada. A página será recarregada.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.
Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", + "PE.Controllers.Main.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", + "PE.Controllers.Main.errorUsersExceed": "Excedeu o número máximo de utilizadores permitidos pelo seu plano", + "PE.Controllers.Main.errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas
não o conseguirá descarregar até que a ligação seja restaurada e a página recarregada.", + "PE.Controllers.Main.leavePageText": "Este documento tem alterações não guardadas. Clique 'Ficar na página' para que o documento seja guardado automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", + "PE.Controllers.Main.leavePageTextOnClose": "Todas as alterações não guardadas nesta apresentação serão perdidas.
Clique em \"Cancelar\" e depois em \"Guardar\" para as guardar. Clique em \"OK\" para descartar todas as alterações não guardadas.", + "PE.Controllers.Main.loadFontsTextText": "Carregando dados...", + "PE.Controllers.Main.loadFontsTitleText": "Carregando dados", + "PE.Controllers.Main.loadFontTextText": "Carregando dados...", + "PE.Controllers.Main.loadFontTitleText": "Carregando dados", + "PE.Controllers.Main.loadImagesTextText": "A carregar imagens...", + "PE.Controllers.Main.loadImagesTitleText": "A carregar imagens", + "PE.Controllers.Main.loadImageTextText": "A carregar imagem...", + "PE.Controllers.Main.loadImageTitleText": "A carregar imagem", + "PE.Controllers.Main.loadingDocumentTextText": "Carregando apresentação...", + "PE.Controllers.Main.loadingDocumentTitleText": "Carregando apresentação", + "PE.Controllers.Main.loadThemeTextText": "Carregando temas...", + "PE.Controllers.Main.loadThemeTitleText": "Carregando tema", + "PE.Controllers.Main.notcriticalErrorTitle": "Aviso", + "PE.Controllers.Main.openErrorText": "Ocorreu um erro ao abrir o ficheiro.", + "PE.Controllers.Main.openTextText": "Abrindo apresentação...", + "PE.Controllers.Main.openTitleText": "Abrindo apresentação", + "PE.Controllers.Main.printTextText": "Imprimindo apresentação...", + "PE.Controllers.Main.printTitleText": "Imprimindo apresentação", + "PE.Controllers.Main.reloadButtonText": "Recarregar página", + "PE.Controllers.Main.requestEditFailedMessageText": "Alguém está editando esta apresentação neste momento. Tente novamente mais tarde.", + "PE.Controllers.Main.requestEditFailedTitleText": "Acesso negado", + "PE.Controllers.Main.saveErrorText": "Ocorreu um erro ao guardar o ficheiro.", + "PE.Controllers.Main.saveErrorTextDesktop": "Este ficheiro não pode ser guardado ou criado.
Os motivos podem ser:
1. O ficheiro é apenas de leitura.
2. O ficheiro está a ser editado por outro utilizador.
3. O disco está cheio ou danificado.", + "PE.Controllers.Main.saveTextText": "Salvando apresentação...", + "PE.Controllers.Main.saveTitleText": "Salvando apresentação", + "PE.Controllers.Main.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Tente recarregar a página.", + "PE.Controllers.Main.splitDividerErrorText": "O número de linhas deve ser um divisor de %1.", + "PE.Controllers.Main.splitMaxColsErrorText": "O número de colunas deve ser inferior a %1.", + "PE.Controllers.Main.splitMaxRowsErrorText": "O número de linhas deve ser inferior a %1.", + "PE.Controllers.Main.textAnonymous": "Anônimo", + "PE.Controllers.Main.textApplyAll": "Aplicar a todas as equações", + "PE.Controllers.Main.textBuyNow": "Visitar site", + "PE.Controllers.Main.textChangesSaved": "Todas as alterações foram salvas", + "PE.Controllers.Main.textClose": "Fechar", + "PE.Controllers.Main.textCloseTip": "Clique para fechar a dica", + "PE.Controllers.Main.textContactUs": "Contacte a equipa comercial", + "PE.Controllers.Main.textConvertEquation": "Esta equação foi criada com uma versão anterior da aplicação e já não é suportada. Para a editar, tem que converter a equação para o formato Office Math ML.
Converter agora?", + "PE.Controllers.Main.textCustomLoader": "Tenha em conta de que, de acordo com os termos da licença, não tem permissões para alterar o carregador.
Por favor contacte a equipa comercial.", + "PE.Controllers.Main.textDisconnect": "A ligação está perdida", + "PE.Controllers.Main.textGuest": "Convidado(a)", + "PE.Controllers.Main.textHasMacros": "O ficheiro contém macros automáticas.
Deseja executar as macros?", + "PE.Controllers.Main.textLearnMore": "Saiba mais", + "PE.Controllers.Main.textLoadingDocument": "Carregando apresentação", + "PE.Controllers.Main.textLongName": "Insira um nome com menos de 128 caracteres.", + "PE.Controllers.Main.textNoLicenseTitle": "Atingiu o limite da licença", + "PE.Controllers.Main.textPaidFeature": "Funcionalidade paga", + "PE.Controllers.Main.textReconnect": "A ligação foi reposta", + "PE.Controllers.Main.textRemember": "Memorizar a minha escolha", + "PE.Controllers.Main.textRenameError": "O nome de utilizador não pode estar em branco.", + "PE.Controllers.Main.textRenameLabel": "Insira um nome a ser usado para colaboração", + "PE.Controllers.Main.textShape": "Forma", + "PE.Controllers.Main.textStrict": "Modo estrito", + "PE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer foram desativadas para se poder co-editar o documento.
Clique no botão 'Modo estrito' para ativar este modo de edição e editar o ficheiro sem ser incomodado por outros utilizadores enviando apenas as suas alterações assim que terminar e guardar. Pode alternar entre modos de co-edição através das definições avançadas.", + "PE.Controllers.Main.textTryUndoRedoWarn": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.", + "PE.Controllers.Main.titleLicenseExp": "Licença expirada", + "PE.Controllers.Main.titleServerVersion": "Editor atualizado", + "PE.Controllers.Main.txtAddFirstSlide": "Clique para adicionar o primeiro diapositivo", + "PE.Controllers.Main.txtAddNotes": "Clique para adicionar notas", + "PE.Controllers.Main.txtArt": "Your text here", + "PE.Controllers.Main.txtBasicShapes": "Formas básicas", + "PE.Controllers.Main.txtButtons": "Botões", + "PE.Controllers.Main.txtCallouts": "Chamadas", + "PE.Controllers.Main.txtCharts": "Gráficos", + "PE.Controllers.Main.txtClipArt": "Clip Art", + "PE.Controllers.Main.txtDateTime": "Data e Hora", + "PE.Controllers.Main.txtDiagram": "SmartArt", + "PE.Controllers.Main.txtDiagramTitle": "Título do diagrama", + "PE.Controllers.Main.txtEditingMode": "Definir modo de edição...", + "PE.Controllers.Main.txtErrorLoadHistory": "Falha ao carregar histórico", + "PE.Controllers.Main.txtFiguredArrows": "Setas figuradas", + "PE.Controllers.Main.txtFooter": "Rodapé", + "PE.Controllers.Main.txtHeader": "Cabeçalho", + "PE.Controllers.Main.txtImage": "Imagem", + "PE.Controllers.Main.txtLines": "Linhas", + "PE.Controllers.Main.txtLoading": "Carregando...", + "PE.Controllers.Main.txtMath": "Matemática", + "PE.Controllers.Main.txtMedia": "Multimédia", + "PE.Controllers.Main.txtNeedSynchronize": "Você tem atualizações", + "PE.Controllers.Main.txtNone": "Nenhum", + "PE.Controllers.Main.txtPicture": "Imagem", + "PE.Controllers.Main.txtRectangles": "Retângulos", + "PE.Controllers.Main.txtSeries": "Série", + "PE.Controllers.Main.txtShape_accentBorderCallout1": "Chamada da linha 1 (borda e barra de destaque)", + "PE.Controllers.Main.txtShape_accentBorderCallout2": "Chamada da linha 2 (borda e barra de destaque)", + "PE.Controllers.Main.txtShape_accentBorderCallout3": "Texto explicativo da linha 3 (borda e barra de destaque)", + "PE.Controllers.Main.txtShape_accentCallout1": "Chamada da linha 1 (barra de destaque)", + "PE.Controllers.Main.txtShape_accentCallout2": "Chamada da linha 2 (barra de destaque)", + "PE.Controllers.Main.txtShape_accentCallout3": "Texto explicativo da linha 3 (barra de destaque)", + "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Botão Recuar ou Anterior", + "PE.Controllers.Main.txtShape_actionButtonBeginning": "Botão Início", + "PE.Controllers.Main.txtShape_actionButtonBlank": "Botão vazio", + "PE.Controllers.Main.txtShape_actionButtonDocument": "Botão Documento", + "PE.Controllers.Main.txtShape_actionButtonEnd": "Botão Final", + "PE.Controllers.Main.txtShape_actionButtonForwardNext": "Botões Recuar e/ou Avançar", + "PE.Controllers.Main.txtShape_actionButtonHelp": "Botão Ajuda", + "PE.Controllers.Main.txtShape_actionButtonHome": "Botão Base", + "PE.Controllers.Main.txtShape_actionButtonInformation": "Botão Informação", + "PE.Controllers.Main.txtShape_actionButtonMovie": "Botão Filme", + "PE.Controllers.Main.txtShape_actionButtonReturn": "Botão de Voltar", + "PE.Controllers.Main.txtShape_actionButtonSound": "Botão Som", + "PE.Controllers.Main.txtShape_arc": "Arco", + "PE.Controllers.Main.txtShape_bentArrow": "Seta curvada", + "PE.Controllers.Main.txtShape_bentConnector5": "Conector angular", + "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Conector de seta angular", + "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Conector de seta dupla angulada", + "PE.Controllers.Main.txtShape_bentUpArrow": "Seta para cima dobrada", + "PE.Controllers.Main.txtShape_bevel": "Bisel", + "PE.Controllers.Main.txtShape_blockArc": "Arco de bloco", + "PE.Controllers.Main.txtShape_borderCallout1": "Chamada da linha 1", + "PE.Controllers.Main.txtShape_borderCallout2": "Chamada da linha 2", + "PE.Controllers.Main.txtShape_borderCallout3": "Chamada da linha 3", + "PE.Controllers.Main.txtShape_bracePair": "Chaveta dupla", + "PE.Controllers.Main.txtShape_callout1": "Chamada da linha 1 (sem borda)", + "PE.Controllers.Main.txtShape_callout2": "Chamada da linha 2 (sem borda)", + "PE.Controllers.Main.txtShape_callout3": "Texto explicativo da linha 3 (sem borda)", + "PE.Controllers.Main.txtShape_can": "Pode", + "PE.Controllers.Main.txtShape_chevron": "Divisa", + "PE.Controllers.Main.txtShape_chord": "Acorde", + "PE.Controllers.Main.txtShape_circularArrow": "Seta circular", + "PE.Controllers.Main.txtShape_cloud": "Nuvem", + "PE.Controllers.Main.txtShape_cloudCallout": "Texto explicativo na nuvem", + "PE.Controllers.Main.txtShape_corner": "Canto", + "PE.Controllers.Main.txtShape_cube": "Cubo", + "PE.Controllers.Main.txtShape_curvedConnector3": "Conector curvado", + "PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Conector de seta curvada", + "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Conector de seta dupla curvado", + "PE.Controllers.Main.txtShape_curvedDownArrow": "Seta curvada para baixo", + "PE.Controllers.Main.txtShape_curvedLeftArrow": "Seta curvada para a esquerda", + "PE.Controllers.Main.txtShape_curvedRightArrow": "Seta curvava para a direita", + "PE.Controllers.Main.txtShape_curvedUpArrow": "Seta curvada para cima", + "PE.Controllers.Main.txtShape_decagon": "Decágono", + "PE.Controllers.Main.txtShape_diagStripe": "Faixa diagonal", + "PE.Controllers.Main.txtShape_diamond": "Diamante", + "PE.Controllers.Main.txtShape_dodecagon": "Dodecágono", + "PE.Controllers.Main.txtShape_donut": "Donut", + "PE.Controllers.Main.txtShape_doubleWave": "Ondulado Duplo", + "PE.Controllers.Main.txtShape_downArrow": "Seta para baixo", + "PE.Controllers.Main.txtShape_downArrowCallout": "Chamada com seta para baixo", + "PE.Controllers.Main.txtShape_ellipse": "Elipse", + "PE.Controllers.Main.txtShape_ellipseRibbon": "Faixa curvada para baixo", + "PE.Controllers.Main.txtShape_ellipseRibbon2": "Faixa curvada para cima", + "PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Fluxograma: Processo alternativo", + "PE.Controllers.Main.txtShape_flowChartCollate": "Fluxograma: Agrupar", + "PE.Controllers.Main.txtShape_flowChartConnector": "Fluxograma: Conector", + "PE.Controllers.Main.txtShape_flowChartDecision": "Fluxograma: Decisão", + "PE.Controllers.Main.txtShape_flowChartDelay": "Fluxograma: Atraso", + "PE.Controllers.Main.txtShape_flowChartDisplay": "Fluxograma: Exibir", + "PE.Controllers.Main.txtShape_flowChartDocument": "Fluxograma: Documento", + "PE.Controllers.Main.txtShape_flowChartExtract": "Fluxograma: Extrair", + "PE.Controllers.Main.txtShape_flowChartInputOutput": "Fluxograma: Dados", + "PE.Controllers.Main.txtShape_flowChartInternalStorage": "Fluxograma: Armazenamento interno", + "PE.Controllers.Main.txtShape_flowChartMagneticDisk": "Fluxograma: Disco magnético", + "PE.Controllers.Main.txtShape_flowChartMagneticDrum": "Fluxograma: Armazenamento de acesso direto", + "PE.Controllers.Main.txtShape_flowChartMagneticTape": "Fluxograma: Armazenamento de acesso sequencial", + "PE.Controllers.Main.txtShape_flowChartManualInput": "Fluxograma: Entrada manual", + "PE.Controllers.Main.txtShape_flowChartManualOperation": "Fluxograma: Operação manual", + "PE.Controllers.Main.txtShape_flowChartMerge": "Fluxograma: Unir", + "PE.Controllers.Main.txtShape_flowChartMultidocument": "Fluxograma: Vários documentos", + "PE.Controllers.Main.txtShape_flowChartOffpageConnector": "Fluxograma: Conector fora da página", + "PE.Controllers.Main.txtShape_flowChartOnlineStorage": "Fluxograma: Dados armazenados", + "PE.Controllers.Main.txtShape_flowChartOr": "Fluxograma: Ou", + "PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Fluxograma: Processo predefinido", + "PE.Controllers.Main.txtShape_flowChartPreparation": "Fluxograma: Preparação", + "PE.Controllers.Main.txtShape_flowChartProcess": "Fluxograma: Processo", + "PE.Controllers.Main.txtShape_flowChartPunchedCard": "Fluxograma: Cartão", + "PE.Controllers.Main.txtShape_flowChartPunchedTape": "Fluxograma: Fita perfurada", + "PE.Controllers.Main.txtShape_flowChartSort": "Fluxograma: Ordenar", + "PE.Controllers.Main.txtShape_flowChartSummingJunction": "Fluxograma: Junção de Soma", + "PE.Controllers.Main.txtShape_flowChartTerminator": "Fluxograma: Terminator", + "PE.Controllers.Main.txtShape_foldedCorner": "Canto dobrado", + "PE.Controllers.Main.txtShape_frame": "Moldura", + "PE.Controllers.Main.txtShape_halfFrame": "Meia moldura", + "PE.Controllers.Main.txtShape_heart": "Coração", + "PE.Controllers.Main.txtShape_heptagon": "Heptágono", + "PE.Controllers.Main.txtShape_hexagon": "Hexágono", + "PE.Controllers.Main.txtShape_homePlate": "Pentágono", + "PE.Controllers.Main.txtShape_horizontalScroll": "Deslocação horizontal", + "PE.Controllers.Main.txtShape_irregularSeal1": "Explosão 1", + "PE.Controllers.Main.txtShape_irregularSeal2": "Explosão 2", + "PE.Controllers.Main.txtShape_leftArrow": "Seta para a esquerda", + "PE.Controllers.Main.txtShape_leftArrowCallout": "Chamada com seta para a esquerda", + "PE.Controllers.Main.txtShape_leftBrace": "Chaveta esquerda", + "PE.Controllers.Main.txtShape_leftBracket": "Parêntese esquerdo", + "PE.Controllers.Main.txtShape_leftRightArrow": "Seta para a esquerda e para a direita", + "PE.Controllers.Main.txtShape_leftRightArrowCallout": "Chamada com seta para a esquerda e direita", + "PE.Controllers.Main.txtShape_leftRightUpArrow": "Seta para cima, para a direita e para a esquerda", + "PE.Controllers.Main.txtShape_leftUpArrow": "Seta para a esquerda e para cima", + "PE.Controllers.Main.txtShape_lightningBolt": "Relâmpago", + "PE.Controllers.Main.txtShape_line": "Linha", + "PE.Controllers.Main.txtShape_lineWithArrow": "Seta", + "PE.Controllers.Main.txtShape_lineWithTwoArrows": "Seta dupla", + "PE.Controllers.Main.txtShape_mathDivide": "Divisão", + "PE.Controllers.Main.txtShape_mathEqual": "Igual", + "PE.Controllers.Main.txtShape_mathMinus": "Menos", + "PE.Controllers.Main.txtShape_mathMultiply": "Multiplicar", + "PE.Controllers.Main.txtShape_mathNotEqual": "Não é igual", + "PE.Controllers.Main.txtShape_mathPlus": "Mais", + "PE.Controllers.Main.txtShape_moon": "Lua", + "PE.Controllers.Main.txtShape_noSmoking": "Símbolo \"Não\"", + "PE.Controllers.Main.txtShape_notchedRightArrow": "Seta entalhada para a direita", + "PE.Controllers.Main.txtShape_octagon": "Octógono", + "PE.Controllers.Main.txtShape_parallelogram": "Paralelograma", + "PE.Controllers.Main.txtShape_pentagon": "Pentágono", + "PE.Controllers.Main.txtShape_pie": "Tarte", + "PE.Controllers.Main.txtShape_plaque": "Assinar", + "PE.Controllers.Main.txtShape_plus": "Mais", + "PE.Controllers.Main.txtShape_polyline1": "Rabisco", + "PE.Controllers.Main.txtShape_polyline2": "Forma livre", + "PE.Controllers.Main.txtShape_quadArrow": "Seta cruzada", + "PE.Controllers.Main.txtShape_quadArrowCallout": "Chamada com seta cruzada", + "PE.Controllers.Main.txtShape_rect": "Retângulo", + "PE.Controllers.Main.txtShape_ribbon": "Faixa para baixo", + "PE.Controllers.Main.txtShape_ribbon2": "Faixa para cima", + "PE.Controllers.Main.txtShape_rightArrow": "Seta para a direita", + "PE.Controllers.Main.txtShape_rightArrowCallout": "Chamada com seta para a direita", + "PE.Controllers.Main.txtShape_rightBrace": "Chaveta à Direita", + "PE.Controllers.Main.txtShape_rightBracket": "Parêntese direito", + "PE.Controllers.Main.txtShape_round1Rect": "Retângulo de Apenas Um Canto Redondo", + "PE.Controllers.Main.txtShape_round2DiagRect": "Retângulo Diagonal Redondo", + "PE.Controllers.Main.txtShape_round2SameRect": "Retângulo do Mesmo Lado Redondo", + "PE.Controllers.Main.txtShape_roundRect": "Retângulo de Cantos Redondos", + "PE.Controllers.Main.txtShape_rtTriangle": "Triângulo à Direita", + "PE.Controllers.Main.txtShape_smileyFace": "Sorriso", + "PE.Controllers.Main.txtShape_snip1Rect": "Retângulo de Canto Cortado", + "PE.Controllers.Main.txtShape_snip2DiagRect": "Retângulo de Cantos Diagonais Cortados", + "PE.Controllers.Main.txtShape_snip2SameRect": "Retângulo de Cantos Cortados No Mesmo Lado", + "PE.Controllers.Main.txtShape_snipRoundRect": "Retângulo Com Canto Arredondado e Canto Cortado", + "PE.Controllers.Main.txtShape_spline": "Curva", + "PE.Controllers.Main.txtShape_star10": "Estrela de 10 pontos", + "PE.Controllers.Main.txtShape_star12": "Estrela de 12 pontos", + "PE.Controllers.Main.txtShape_star16": "Estrela de 16 pontos", + "PE.Controllers.Main.txtShape_star24": "Estrela de 24 pontos", + "PE.Controllers.Main.txtShape_star32": "Estrela de 32 pontos", + "PE.Controllers.Main.txtShape_star4": "Estrela de 4 pontos", + "PE.Controllers.Main.txtShape_star5": "Estrela de 5 pontos", + "PE.Controllers.Main.txtShape_star6": "Estrela de 6 pontos", + "PE.Controllers.Main.txtShape_star7": "Estrela de 7 pontos", + "PE.Controllers.Main.txtShape_star8": "Estrela de 8 pontos", + "PE.Controllers.Main.txtShape_stripedRightArrow": "Seta riscada para a direita", + "PE.Controllers.Main.txtShape_sun": "Sol", + "PE.Controllers.Main.txtShape_teardrop": "Lágrima", + "PE.Controllers.Main.txtShape_textRect": "Caixa de texto", + "PE.Controllers.Main.txtShape_trapezoid": "Trapézio", + "PE.Controllers.Main.txtShape_triangle": "Triângulo", + "PE.Controllers.Main.txtShape_upArrow": "Seta para cima", + "PE.Controllers.Main.txtShape_upArrowCallout": "Chamada com seta para cima", + "PE.Controllers.Main.txtShape_upDownArrow": "Seta para cima e para baixo", + "PE.Controllers.Main.txtShape_uturnArrow": "Seta em forma de U", + "PE.Controllers.Main.txtShape_verticalScroll": "Deslocação vertical", + "PE.Controllers.Main.txtShape_wave": "Onda", + "PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Texto explicativo oval", + "PE.Controllers.Main.txtShape_wedgeRectCallout": "Texto explicativo retangular", + "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Chamada retangular arredondada", + "PE.Controllers.Main.txtSldLtTBlank": "Branco", + "PE.Controllers.Main.txtSldLtTChart": "Gráfico", + "PE.Controllers.Main.txtSldLtTChartAndTx": "Gráfico e Texto", + "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Clip Art e Texto", + "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Clip Art e Texto vertical", + "PE.Controllers.Main.txtSldLtTCust": "Personalizar", + "PE.Controllers.Main.txtSldLtTDgm": "Diagrama", + "PE.Controllers.Main.txtSldLtTFourObj": "Quatro objetos", + "PE.Controllers.Main.txtSldLtTMediaAndTx": "Multimédia e texto", + "PE.Controllers.Main.txtSldLtTObj": "Título e Objeto", + "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objeto e Dois objetos", + "PE.Controllers.Main.txtSldLtTObjAndTx": "Objeto e Texto", + "PE.Controllers.Main.txtSldLtTObjOnly": "Objeto", + "PE.Controllers.Main.txtSldLtTObjOverTx": "Objeto sobre o texto", + "PE.Controllers.Main.txtSldLtTObjTx": "Título, objeto e legenda", + "PE.Controllers.Main.txtSldLtTPicTx": "Imagem e Legenda", + "PE.Controllers.Main.txtSldLtTSecHead": "Cabeçalho da seção", + "PE.Controllers.Main.txtSldLtTTbl": "Tabela", + "PE.Controllers.Main.txtSldLtTTitle": "Titulo", + "PE.Controllers.Main.txtSldLtTTitleOnly": "Apenas título", + "PE.Controllers.Main.txtSldLtTTwoColTx": "Texto em duas colulas", + "PE.Controllers.Main.txtSldLtTTwoObj": "Dois objetos", + "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dois objetos e Objeto", + "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dois objetos e Texto", + "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Dois objetos sobre Texto", + "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Dois textos e Dois objetos", + "PE.Controllers.Main.txtSldLtTTx": "Тexto", + "PE.Controllers.Main.txtSldLtTTxAndChart": "Texto e Gráfico", + "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Texto e Clip Art", + "PE.Controllers.Main.txtSldLtTTxAndMedia": "Texto e multimédia", + "PE.Controllers.Main.txtSldLtTTxAndObj": "Texto e Objeto", + "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Texto e Dois objetos", + "PE.Controllers.Main.txtSldLtTTxOverObj": "Texto sobre Objeto", + "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Título vertical e Texto", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Título vertical e Texto sobre gráfico", + "PE.Controllers.Main.txtSldLtTVertTx": "Texto vertical", + "PE.Controllers.Main.txtSlideNumber": "Número do diapositivo", + "PE.Controllers.Main.txtSlideSubtitle": "Legenda do diapositivo", + "PE.Controllers.Main.txtSlideText": "Texto do diapositivo", + "PE.Controllers.Main.txtSlideTitle": "Título do diapositivo", + "PE.Controllers.Main.txtStarsRibbons": "Estrelas e Faixas", + "PE.Controllers.Main.txtTheme_basic": "Básico", + "PE.Controllers.Main.txtTheme_blank": "Branco", + "PE.Controllers.Main.txtTheme_classic": "Clássico", + "PE.Controllers.Main.txtTheme_corner": "Canto", + "PE.Controllers.Main.txtTheme_dotted": "Pontilhado", + "PE.Controllers.Main.txtTheme_green": "Verde", + "PE.Controllers.Main.txtTheme_green_leaf": "Folha verde", + "PE.Controllers.Main.txtTheme_lines": "Linhas", + "PE.Controllers.Main.txtTheme_office": "Office", + "PE.Controllers.Main.txtTheme_office_theme": "Tema do office", + "PE.Controllers.Main.txtTheme_official": "Oficial", + "PE.Controllers.Main.txtTheme_pixel": "Píxel", + "PE.Controllers.Main.txtTheme_safari": "Safari", + "PE.Controllers.Main.txtTheme_turtle": "Tartaruga", + "PE.Controllers.Main.txtXAxis": "Eixo X", + "PE.Controllers.Main.txtYAxis": "Eixo Y", + "PE.Controllers.Main.unknownErrorText": "Erro desconhecido.", + "PE.Controllers.Main.unsupportedBrowserErrorText": "Seu navegador não é suportado.", + "PE.Controllers.Main.uploadImageExtMessage": "Formato desconhecido.", + "PE.Controllers.Main.uploadImageFileCountMessage": "Nenhuma imagem carregada.", + "PE.Controllers.Main.uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.", + "PE.Controllers.Main.uploadImageTextText": "A enviar imagem...", + "PE.Controllers.Main.uploadImageTitleText": "A enviar imagem", + "PE.Controllers.Main.waitText": "Aguarde...", + "PE.Controllers.Main.warnBrowserIE9": "A aplicação não funciona corretamente com IE9. Deve utilizar IE10 ou superior", + "PE.Controllers.Main.warnBrowserZoom": "A definição 'zoom' do seu navegador não é totalmente suportada. Prima Ctrl+0 para repor o valor padrão.", + "PE.Controllers.Main.warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
Contacte o administrador para obter mais detalhes.", + "PE.Controllers.Main.warnLicenseExp": "A sua licença expirou.
Deve atualizar a licença e recarregar a página.", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Licença expirada.
Não pode editar o documento.
Por favor contacte o administrador de sistemas.", + "PE.Controllers.Main.warnLicenseLimitedRenewed": "Tem que renovar a sua licença.
A edição de documentos está limitada.
Contacte o administrador de sistemas para obter acesso completo.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", + "PE.Controllers.Main.warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
Contacte a equipa comercial %1 para saber mais sobre os termos de licenciamento.", + "PE.Controllers.Main.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", + "PE.Controllers.Main.warnProcessRightsChange": "Você não tem permissões para editar o ficheiro.", + "PE.Controllers.Statusbar.textDisconnect": "Sem Ligação
A tentar ligar. Por favor, verifique as definições de ligação.", + "PE.Controllers.Statusbar.zoomText": "Zoom {0}%", + "PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
Do you want to continue?", + "PE.Controllers.Toolbar.textAccent": "Destaques", + "PE.Controllers.Toolbar.textBracket": "Parênteses", + "PE.Controllers.Toolbar.textEmptyImgUrl": "Tem que especificar o URL da imagem.", + "PE.Controllers.Toolbar.textFontSizeErr": "O valor inserido não está correto.
Introduza um valor numérico entre 1 e 300.", + "PE.Controllers.Toolbar.textFraction": "Frações", + "PE.Controllers.Toolbar.textFunction": "Funções", + "PE.Controllers.Toolbar.textInsert": "Inserir", + "PE.Controllers.Toolbar.textIntegral": "Inteiros", + "PE.Controllers.Toolbar.textLargeOperator": "Grandes operadores", + "PE.Controllers.Toolbar.textLimitAndLog": "Limites e logaritmos", + "PE.Controllers.Toolbar.textMatrix": "Matrizes", + "PE.Controllers.Toolbar.textOperator": "Operadores", + "PE.Controllers.Toolbar.textRadical": "Radicais", + "PE.Controllers.Toolbar.textScript": "Scripts", + "PE.Controllers.Toolbar.textSymbols": "Símbolos", + "PE.Controllers.Toolbar.textWarning": "Aviso", + "PE.Controllers.Toolbar.txtAccent_Accent": "Agudo", + "PE.Controllers.Toolbar.txtAccent_ArrowD": "Seta para direita-esquerda acima", + "PE.Controllers.Toolbar.txtAccent_ArrowL": "Seta adiante para cima", + "PE.Controllers.Toolbar.txtAccent_ArrowR": "Seta para direita acima", + "PE.Controllers.Toolbar.txtAccent_Bar": "Barra", + "PE.Controllers.Toolbar.txtAccent_BarBot": "Barra inferior", + "PE.Controllers.Toolbar.txtAccent_BarTop": "Barra superior", + "PE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula embalada (com Placeholder)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula embalada(Exemplo)", + "PE.Controllers.Toolbar.txtAccent_Check": "Verificar", + "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Chave Inferior", + "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Chave Superior", + "PE.Controllers.Toolbar.txtAccent_Custom_1": "Vetor A", + "PE.Controllers.Toolbar.txtAccent_Custom_2": "Barra superior com ABC", + "PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y com barra superior", + "PE.Controllers.Toolbar.txtAccent_DDDot": "Ponto triplo", + "PE.Controllers.Toolbar.txtAccent_DDot": "Ponto duplo", + "PE.Controllers.Toolbar.txtAccent_Dot": "Ponto", + "PE.Controllers.Toolbar.txtAccent_DoubleBar": "Barra superior dupla", + "PE.Controllers.Toolbar.txtAccent_Grave": "Grave", + "PE.Controllers.Toolbar.txtAccent_GroupBot": "Agrupamento de caracteres abaixo", + "PE.Controllers.Toolbar.txtAccent_GroupTop": "Agrupamento de caracteres acima", + "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Arpão adiante para cima", + "PE.Controllers.Toolbar.txtAccent_HarpoonR": "Arpão para direita acima", + "PE.Controllers.Toolbar.txtAccent_Hat": "Acento circunflexo", + "PE.Controllers.Toolbar.txtAccent_Smile": "Breve", + "PE.Controllers.Toolbar.txtAccent_Tilde": "Til", + "PE.Controllers.Toolbar.txtBracket_Angle": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Parênteses com separadores", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Parênteses com separadores", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_Curve": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Parênteses com separadores", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (Duas Condições)", + "PE.Controllers.Toolbar.txtBracket_Custom_2": "Casos (Três Condições)", + "PE.Controllers.Toolbar.txtBracket_Custom_3": "Objeto Empilhado", + "PE.Controllers.Toolbar.txtBracket_Custom_4": "Objeto Empilhado", + "PE.Controllers.Toolbar.txtBracket_Custom_5": "Exemplo de casos", + "PE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficiente binominal", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficiente binominal", + "PE.Controllers.Toolbar.txtBracket_Line": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_LowLim": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_Round": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parênteses com separadores", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_Square": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_UppLim": "Parênteses", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Colchete Simples", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Colchete Simples", + "PE.Controllers.Toolbar.txtFractionDiagonal": "Fração inclinada", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "Diferencial", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "Diferencial", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "Diferencial", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "Diferencial", + "PE.Controllers.Toolbar.txtFractionHorizontal": "Fração linear", + "PE.Controllers.Toolbar.txtFractionPi_2": "Pi sobre 2", + "PE.Controllers.Toolbar.txtFractionSmall": "Fração pequena", + "PE.Controllers.Toolbar.txtFractionVertical": "Fração Empilhada", + "PE.Controllers.Toolbar.txtFunction_1_Cos": "Função cosseno inverso", + "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Função cosseno inverso hiperbólico", + "PE.Controllers.Toolbar.txtFunction_1_Cot": "Função cotangente inversa", + "PE.Controllers.Toolbar.txtFunction_1_Coth": "Função cotangente inversa hiperbólica", + "PE.Controllers.Toolbar.txtFunction_1_Csc": "Função cossecante inversa", + "PE.Controllers.Toolbar.txtFunction_1_Csch": "Função cossecante inversa hiperbólica", + "PE.Controllers.Toolbar.txtFunction_1_Sec": "Função secante inversa", + "PE.Controllers.Toolbar.txtFunction_1_Sech": "Função secante inversa hiperbólica", + "PE.Controllers.Toolbar.txtFunction_1_Sin": "Função seno inverso", + "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Função seno inverso hiperbólico", + "PE.Controllers.Toolbar.txtFunction_1_Tan": "Função tangente inversa", + "PE.Controllers.Toolbar.txtFunction_1_Tanh": "Função tangente inversa hiperbólica", + "PE.Controllers.Toolbar.txtFunction_Cos": "Função cosseno", + "PE.Controllers.Toolbar.txtFunction_Cosh": "Função cosseno hiperbólico", + "PE.Controllers.Toolbar.txtFunction_Cot": "Função cotangente", + "PE.Controllers.Toolbar.txtFunction_Coth": "Função cotangente hiperbólica", + "PE.Controllers.Toolbar.txtFunction_Csc": "Função cossecante", + "PE.Controllers.Toolbar.txtFunction_Csch": "Função co-secante hiperbólica", + "PE.Controllers.Toolbar.txtFunction_Custom_1": "Teta seno", + "PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "PE.Controllers.Toolbar.txtFunction_Custom_3": "Fórmula da tangente", + "PE.Controllers.Toolbar.txtFunction_Sec": "Função secante", + "PE.Controllers.Toolbar.txtFunction_Sech": "Função secante hiperbólica", + "PE.Controllers.Toolbar.txtFunction_Sin": "Função de seno", + "PE.Controllers.Toolbar.txtFunction_Sinh": "Função seno hiperbólico", + "PE.Controllers.Toolbar.txtFunction_Tan": "Função da tangente", + "PE.Controllers.Toolbar.txtFunction_Tanh": "Função tangente hiperbólica", + "PE.Controllers.Toolbar.txtIntegral": "Inteiro", + "PE.Controllers.Toolbar.txtIntegral_dtheta": "Teta diferencial", + "PE.Controllers.Toolbar.txtIntegral_dx": "Diferencial x", + "PE.Controllers.Toolbar.txtIntegral_dy": "Diferencial y", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Inteiro", + "PE.Controllers.Toolbar.txtIntegralDouble": "Inteiro duplo", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Inteiro duplo", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Inteiro duplo", + "PE.Controllers.Toolbar.txtIntegralOriented": "Contorno integral", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contorno integral", + "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integral de Superfície", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integral de Superfície", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integral de Superfície", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contorno integral", + "PE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integral de Volume", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integral de Volume", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integral de Volume", + "PE.Controllers.Toolbar.txtIntegralSubSup": "Inteiro", + "PE.Controllers.Toolbar.txtIntegralTriple": "Inteiro triplo", + "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Inteiro triplo", + "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Inteiro triplo", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Triangular", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Triangular", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Triangular", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Triangular", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Triangular", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coproduto", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coproduto", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coproduto", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coproduto", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coproduto", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Somatório", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Somatório", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Somatório", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produto", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "União", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Interseção", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Interseção", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Interseção", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Interseção", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Interseção", + "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Produto", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produto", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produto", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produto", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produto", + "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Somatório", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Somatório", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Somatório", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Somatório", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Somatório", + "PE.Controllers.Toolbar.txtLargeOperator_Union": "União", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "União", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "União", + "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "União", + "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "União", + "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemplo limite", + "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemplo máximo", + "PE.Controllers.Toolbar.txtLimitLog_Lim": "Limite", + "PE.Controllers.Toolbar.txtLimitLog_Ln": "Logaritmo natural", + "PE.Controllers.Toolbar.txtLimitLog_Log": "Logaritmo", + "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmo", + "PE.Controllers.Toolbar.txtLimitLog_Max": "Máximo", + "PE.Controllers.Toolbar.txtLimitLog_Min": "Mínimo", + "PE.Controllers.Toolbar.txtMatrix_1_2": "Matriz Vazia 1x2", + "PE.Controllers.Toolbar.txtMatrix_1_3": "Matriz Vazia 1x3", + "PE.Controllers.Toolbar.txtMatrix_2_1": "Matriz Vazia 2x1", + "PE.Controllers.Toolbar.txtMatrix_2_2": "Matriz Vazia 2x2", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matriz vazia com parênteses", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matriz vazia com parênteses", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matriz vazia com parênteses", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matriz vazia com parênteses", + "PE.Controllers.Toolbar.txtMatrix_2_3": "Matriz Vazia 2x3", + "PE.Controllers.Toolbar.txtMatrix_3_1": "Matriz Vazia 3x1", + "PE.Controllers.Toolbar.txtMatrix_3_2": "Matriz Vazia 3x2", + "PE.Controllers.Toolbar.txtMatrix_3_3": "Matriz Vazia 3x3", + "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Pontos de linha de base", + "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Pontos de linha média", + "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Pontos diagonais", + "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Pontos verticais", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matriz dispersa", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matriz dispersa", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "Matriz da identidade 2x2", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matriz da identidade 3x3", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "Matriz da identidade 3x3", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matriz da identidade 3x3", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Seta para direita esquerda abaixo", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Seta para direita-esquerda acima", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Seta adiante para baixo", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Seta adiante para cima", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Seta para direita abaixo", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Seta para direita acima", + "PE.Controllers.Toolbar.txtOperator_ColonEquals": "Dois-pontos-Sinal de Igual", + "PE.Controllers.Toolbar.txtOperator_Custom_1": "Resultados", + "PE.Controllers.Toolbar.txtOperator_Custom_2": "Resultados de Delta", + "PE.Controllers.Toolbar.txtOperator_Definition": "Igual a por definição", + "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta igual a", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Seta para direita esquerda abaixo", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Seta para direita-esquerda acima", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Seta adiante para baixo", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Seta adiante para cima", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Seta para direita abaixo", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Seta para direita acima", + "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Sinal de Igual-Sinal de Igual", + "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Sinal de Menos-Sinal de Igual", + "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Sinal de Mais-Sinal de Igual", + "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Medido por", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "PE.Controllers.Toolbar.txtRadicalRoot_2": "Raiz quadrada com grau", + "PE.Controllers.Toolbar.txtRadicalRoot_3": "Raiz cúbica", + "PE.Controllers.Toolbar.txtRadicalRoot_n": "Radical com grau", + "PE.Controllers.Toolbar.txtRadicalSqrt": "Raiz quadrada", + "PE.Controllers.Toolbar.txtScriptCustom_1": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_2": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_3": "Script", + "PE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "PE.Controllers.Toolbar.txtScriptSub": "Subscrito", + "PE.Controllers.Toolbar.txtScriptSubSup": "Subscrito-Sobrescrito", + "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Subscrito-Sobrescrito Esquerdo", + "PE.Controllers.Toolbar.txtScriptSup": "Sobrescrito", + "PE.Controllers.Toolbar.txtSymbol_about": "Aproximadamente", + "PE.Controllers.Toolbar.txtSymbol_additional": "Complemento", + "PE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "PE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "PE.Controllers.Toolbar.txtSymbol_approx": "Quase igual a", + "PE.Controllers.Toolbar.txtSymbol_ast": "Operador de asterisco", + "PE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "PE.Controllers.Toolbar.txtSymbol_beth": "Aposta", + "PE.Controllers.Toolbar.txtSymbol_bullet": "Operador de marcador", + "PE.Controllers.Toolbar.txtSymbol_cap": "Interseção", + "PE.Controllers.Toolbar.txtSymbol_cbrt": "Raiz cúbica", + "PE.Controllers.Toolbar.txtSymbol_cdots": "Reticências horizontais de linha média", + "PE.Controllers.Toolbar.txtSymbol_celsius": "Graus Celsius", + "PE.Controllers.Toolbar.txtSymbol_chi": "Ki", + "PE.Controllers.Toolbar.txtSymbol_cong": "Aproximadamente igual a", + "PE.Controllers.Toolbar.txtSymbol_cup": "União", + "PE.Controllers.Toolbar.txtSymbol_ddots": "Reticências diagonal para baixo à direita", + "PE.Controllers.Toolbar.txtSymbol_degree": "Graus", + "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "PE.Controllers.Toolbar.txtSymbol_div": "Sinal de divisão", + "PE.Controllers.Toolbar.txtSymbol_downarrow": "Seta para baixo", + "PE.Controllers.Toolbar.txtSymbol_emptyset": "Conjunto vazio", + "PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsílon", + "PE.Controllers.Toolbar.txtSymbol_equals": "Igual", + "PE.Controllers.Toolbar.txtSymbol_equiv": "Idêntico a", + "PE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "PE.Controllers.Toolbar.txtSymbol_exists": "Existe", + "PE.Controllers.Toolbar.txtSymbol_factorial": "Fatorial", + "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus Fahrenheit", + "PE.Controllers.Toolbar.txtSymbol_forall": "Para todos", + "PE.Controllers.Toolbar.txtSymbol_gamma": "Gama", + "PE.Controllers.Toolbar.txtSymbol_geq": "Superior a ou igual a", + "PE.Controllers.Toolbar.txtSymbol_gg": "Muito superior a", + "PE.Controllers.Toolbar.txtSymbol_greater": "Superior a", + "PE.Controllers.Toolbar.txtSymbol_in": "Elemento de", + "PE.Controllers.Toolbar.txtSymbol_inc": "Incremento", + "PE.Controllers.Toolbar.txtSymbol_infinity": "Infinidade", + "PE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "PE.Controllers.Toolbar.txtSymbol_kappa": "Capa", + "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "PE.Controllers.Toolbar.txtSymbol_leftarrow": "Seta para esquerda", + "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Seta esquerda-direita", + "PE.Controllers.Toolbar.txtSymbol_leq": "Inferior a ou igual a", + "PE.Controllers.Toolbar.txtSymbol_less": "Inferior a", + "PE.Controllers.Toolbar.txtSymbol_ll": "Muito inferior a", + "PE.Controllers.Toolbar.txtSymbol_minus": "Menos", + "PE.Controllers.Toolbar.txtSymbol_mp": "Sinal de Menos-Sinal de Mais", + "PE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "PE.Controllers.Toolbar.txtSymbol_neq": "Não igual a", + "PE.Controllers.Toolbar.txtSymbol_ni": "Contém como membro", + "PE.Controllers.Toolbar.txtSymbol_not": "Não entrar", + "PE.Controllers.Toolbar.txtSymbol_notexists": "Não existe", + "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "PE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "PE.Controllers.Toolbar.txtSymbol_omega": "Ômega", + "PE.Controllers.Toolbar.txtSymbol_partial": "Diferencial parcial", + "PE.Controllers.Toolbar.txtSymbol_percent": "Porcentagem", + "PE.Controllers.Toolbar.txtSymbol_phi": "Fi", + "PE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "PE.Controllers.Toolbar.txtSymbol_plus": "Mais", + "PE.Controllers.Toolbar.txtSymbol_pm": "Sinal de Menos-Sinal de Igual", + "PE.Controllers.Toolbar.txtSymbol_propto": "Proporcional a", + "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "PE.Controllers.Toolbar.txtSymbol_qdrt": "Raiz quadrada", + "PE.Controllers.Toolbar.txtSymbol_qed": "Fim da prova", + "PE.Controllers.Toolbar.txtSymbol_rddots": "Reticências diagonal direitas para cima", + "PE.Controllers.Toolbar.txtSymbol_rho": "Rô", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Seta para direita", + "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "PE.Controllers.Toolbar.txtSymbol_sqrt": "Sinal de Radical", + "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "PE.Controllers.Toolbar.txtSymbol_therefore": "Portanto", + "PE.Controllers.Toolbar.txtSymbol_theta": "Teta", + "PE.Controllers.Toolbar.txtSymbol_times": "Sinal de multiplicação", + "PE.Controllers.Toolbar.txtSymbol_uparrow": "Seta para cima", + "PE.Controllers.Toolbar.txtSymbol_upsilon": "Ípsilon", + "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Variante de Epsílon", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Variante de fi", + "PE.Controllers.Toolbar.txtSymbol_varpi": "Variante de Pi", + "PE.Controllers.Toolbar.txtSymbol_varrho": "Variante de Rô", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Variante de Sigma", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Variante de Teta", + "PE.Controllers.Toolbar.txtSymbol_vdots": "Reticências verticais", + "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "PE.Controllers.Viewport.textFitPage": "Ajustar ao diapositivo", + "PE.Controllers.Viewport.textFitWidth": "Ajustar à Largura", + "PE.Views.Animation.str0_5": "0.5 s (Muito Rápida)", + "PE.Views.Animation.str1": "1 s (Rápida)", + "PE.Views.Animation.str2": "2 s (Médio)", + "PE.Views.Animation.str20": "20 s (Extremamente Lenta)", + "PE.Views.Animation.str3": "3 s (Lenta)", + "PE.Views.Animation.str5": "5 s (Muito Lenta)", + "PE.Views.Animation.strDelay": "Atraso", + "PE.Views.Animation.strDuration": "Duração", + "PE.Views.Animation.strRepeat": "Repetir", + "PE.Views.Animation.strRewind": "Recuar", + "PE.Views.Animation.strStart": "Iniciar", + "PE.Views.Animation.strTrigger": "Acionador", + "PE.Views.Animation.textMoreEffects": "Mostrar Mais Efeitos", + "PE.Views.Animation.textMoveEarlier": "Mover mais cedo", + "PE.Views.Animation.textMoveLater": "Mover mais tarde", + "PE.Views.Animation.textMultiple": "Múltiplo", + "PE.Views.Animation.textNone": "Nenhum", + "PE.Views.Animation.textNoRepeat": "(nenhum)", + "PE.Views.Animation.textOnClickOf": "Ao clicar em", + "PE.Views.Animation.textOnClickSequence": "Sequência ao Clicar", + "PE.Views.Animation.textStartOnClick": "Ao clicar", + "PE.Views.Animation.textStartWithPrevious": "Com o anterior", + "PE.Views.Animation.textUntilEndOfSlide": "Até ao Fim do Diapositivo", + "PE.Views.Animation.textUntilNextClick": "Até ao Próximo Clique", + "PE.Views.Animation.txtAddEffect": "Adicionar animação", + "PE.Views.Animation.txtAnimationPane": "Painel da Animação", + "PE.Views.Animation.txtParameters": "Parâmetros", + "PE.Views.Animation.txtPreview": "Pré-visualizar", + "PE.Views.Animation.txtSec": "s", + "PE.Views.AnimationDialog.textPreviewEffect": "Pré-visualizar Efeito", + "PE.Views.AnimationDialog.textTitle": "Mais Efeitos", + "PE.Views.ChartSettings.textAdvanced": "Mostrar definições avançadas", + "PE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico", + "PE.Views.ChartSettings.textEditData": "Editar dados", + "PE.Views.ChartSettings.textHeight": "Altura", + "PE.Views.ChartSettings.textKeepRatio": "Proporções constantes", + "PE.Views.ChartSettings.textSize": "Tamanho", + "PE.Views.ChartSettings.textStyle": "Estilo", + "PE.Views.ChartSettings.textWidth": "Largura", + "PE.Views.ChartSettingsAdvanced.textAlt": "Texto Alternativo", + "PE.Views.ChartSettingsAdvanced.textAltDescription": "Descrição", + "PE.Views.ChartSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", + "PE.Views.ChartSettingsAdvanced.textAltTitle": "Título", + "PE.Views.ChartSettingsAdvanced.textTitle": "Gráfico - Definições avançadas", + "PE.Views.DateTimeDialog.confirmDefault": "Definir formato predefinido para {0}: \"{1}\"", + "PE.Views.DateTimeDialog.textDefault": "Definir como predefinido", + "PE.Views.DateTimeDialog.textFormat": "Formatos", + "PE.Views.DateTimeDialog.textLang": "Idioma", + "PE.Views.DateTimeDialog.textUpdate": "Atualizar automaticamente", + "PE.Views.DateTimeDialog.txtTitle": "Data e Hora", + "PE.Views.DocumentHolder.aboveText": "Acima", + "PE.Views.DocumentHolder.addCommentText": "Adicionar comentário", + "PE.Views.DocumentHolder.addToLayoutText": "Adicionar à disposição", + "PE.Views.DocumentHolder.advancedImageText": "Definições avançadas de imagem", + "PE.Views.DocumentHolder.advancedParagraphText": "Configurações avançadas de parágrafo", + "PE.Views.DocumentHolder.advancedShapeText": "Definições avançadas de forma", + "PE.Views.DocumentHolder.advancedTableText": "Definições avançadas de tabela", + "PE.Views.DocumentHolder.alignmentText": "Alinhamento", + "PE.Views.DocumentHolder.belowText": "Abaixo", + "PE.Views.DocumentHolder.cellAlignText": "Alinhamento vertical da célula", + "PE.Views.DocumentHolder.cellText": "Célula", + "PE.Views.DocumentHolder.centerText": "Centro", + "PE.Views.DocumentHolder.columnText": "Coluna", + "PE.Views.DocumentHolder.deleteColumnText": "Excluir coluna", + "PE.Views.DocumentHolder.deleteRowText": "Excluir linha", + "PE.Views.DocumentHolder.deleteTableText": "Eliminar tabela", + "PE.Views.DocumentHolder.deleteText": "Excluir", + "PE.Views.DocumentHolder.direct270Text": "Rodar texto para cima", + "PE.Views.DocumentHolder.direct90Text": "Rotate at 90°", + "PE.Views.DocumentHolder.directHText": "Horizontal", + "PE.Views.DocumentHolder.directionText": "Text Direction", + "PE.Views.DocumentHolder.editChartText": "Editar dados", + "PE.Views.DocumentHolder.editHyperlinkText": "Editar hiperligação", + "PE.Views.DocumentHolder.hyperlinkText": "Hiperligação", + "PE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar tudo", + "PE.Views.DocumentHolder.ignoreSpellText": "Ignorar", + "PE.Views.DocumentHolder.insertColumnLeftText": "Coluna esquerda", + "PE.Views.DocumentHolder.insertColumnRightText": "Coluna direita", + "PE.Views.DocumentHolder.insertColumnText": "Inserir coluna", + "PE.Views.DocumentHolder.insertRowAboveText": "Linha acima", + "PE.Views.DocumentHolder.insertRowBelowText": "Linha abaixo", + "PE.Views.DocumentHolder.insertRowText": "Inserir linha", + "PE.Views.DocumentHolder.insertText": "Inserir", + "PE.Views.DocumentHolder.langText": "Selecionar idioma", + "PE.Views.DocumentHolder.leftText": "Esquerda", + "PE.Views.DocumentHolder.loadSpellText": "Carregando variantes...", + "PE.Views.DocumentHolder.mergeCellsText": "Unir células", + "PE.Views.DocumentHolder.mniCustomTable": "Inserir tabela personalizada", + "PE.Views.DocumentHolder.moreText": "Mais variantes...", + "PE.Views.DocumentHolder.noSpellVariantsText": "Sem varientes", + "PE.Views.DocumentHolder.originalSizeText": "Tamanho real", + "PE.Views.DocumentHolder.removeHyperlinkText": "Remover hiperligação", + "PE.Views.DocumentHolder.rightText": "Direita", + "PE.Views.DocumentHolder.rowText": "Linha", + "PE.Views.DocumentHolder.selectText": "Selecionar", + "PE.Views.DocumentHolder.spellcheckText": "Verificação ortográfica", + "PE.Views.DocumentHolder.splitCellsText": "Dividir célula...", + "PE.Views.DocumentHolder.splitCellTitleText": "Dividir célula", + "PE.Views.DocumentHolder.tableText": "Tabela", + "PE.Views.DocumentHolder.textArrangeBack": "Enviar para plano de fundo", + "PE.Views.DocumentHolder.textArrangeBackward": "Enviar para trás", + "PE.Views.DocumentHolder.textArrangeForward": "Trazer para frente", + "PE.Views.DocumentHolder.textArrangeFront": "Trazer para primeiro plano", + "PE.Views.DocumentHolder.textCopy": "Copiar", + "PE.Views.DocumentHolder.textCrop": "Cortar", + "PE.Views.DocumentHolder.textCropFill": "Preencher", + "PE.Views.DocumentHolder.textCropFit": "Ajustar", + "PE.Views.DocumentHolder.textCut": "Cortar", + "PE.Views.DocumentHolder.textDistributeCols": "Distribuir colunas", + "PE.Views.DocumentHolder.textDistributeRows": "Distribuir linhas", + "PE.Views.DocumentHolder.textEditPoints": "Editar Pontos", + "PE.Views.DocumentHolder.textFlipH": "Virar horizontalmente", + "PE.Views.DocumentHolder.textFlipV": "Virar verticalmente", + "PE.Views.DocumentHolder.textFromFile": "De um ficheiro", + "PE.Views.DocumentHolder.textFromStorage": "De um armazenamento", + "PE.Views.DocumentHolder.textFromUrl": "De um URL", + "PE.Views.DocumentHolder.textNextPage": "Diapositivo seguinte", + "PE.Views.DocumentHolder.textPaste": "Colar", + "PE.Views.DocumentHolder.textPrevPage": "Diapositivo anterior", + "PE.Views.DocumentHolder.textReplace": "Substituir imagem", + "PE.Views.DocumentHolder.textRotate": "Rodar", + "PE.Views.DocumentHolder.textRotate270": "Rodar 90º à esquerda", + "PE.Views.DocumentHolder.textRotate90": "Rodar 90º à direita", + "PE.Views.DocumentHolder.textShapeAlignBottom": "Alinhar à parte inferior", + "PE.Views.DocumentHolder.textShapeAlignCenter": "Alinhar ao centro", + "PE.Views.DocumentHolder.textShapeAlignLeft": "Alinhar à esquerda", + "PE.Views.DocumentHolder.textShapeAlignMiddle": "Alinhar ao meio", + "PE.Views.DocumentHolder.textShapeAlignRight": "Alinhar à direita", + "PE.Views.DocumentHolder.textShapeAlignTop": "Alinhar à parte superior", + "PE.Views.DocumentHolder.textSlideSettings": "Definições de diapositivo", + "PE.Views.DocumentHolder.textUndo": "Desfazer", + "PE.Views.DocumentHolder.tipIsLocked": "Este elemento está a ser editado por outro utilizador.", + "PE.Views.DocumentHolder.toDictionaryText": "Incluir no Dicionário", + "PE.Views.DocumentHolder.txtAddBottom": "Adicionar borda inferior", + "PE.Views.DocumentHolder.txtAddFractionBar": "Adicionar barra de fração", + "PE.Views.DocumentHolder.txtAddHor": "Adicionar linha horizontal", + "PE.Views.DocumentHolder.txtAddLB": "Adicionar linha inferior esquerda", + "PE.Views.DocumentHolder.txtAddLeft": "Adicionar borda esquerda", + "PE.Views.DocumentHolder.txtAddLT": "Adicionar linha superior esquerda", + "PE.Views.DocumentHolder.txtAddRight": "Adicionar borda direita", + "PE.Views.DocumentHolder.txtAddTop": "Adicionar borda superior", + "PE.Views.DocumentHolder.txtAddVer": "Adicionar linha vertical", + "PE.Views.DocumentHolder.txtAlign": "Alinhar", + "PE.Views.DocumentHolder.txtAlignToChar": "Alinhar ao caractere", + "PE.Views.DocumentHolder.txtArrange": "Dispor", + "PE.Views.DocumentHolder.txtBackground": "Plano de fundo", + "PE.Views.DocumentHolder.txtBorderProps": "Propriedades de borda", + "PE.Views.DocumentHolder.txtBottom": "Inferior", + "PE.Views.DocumentHolder.txtChangeLayout": "Alterar disposição", + "PE.Views.DocumentHolder.txtChangeTheme": "Alterar tema", + "PE.Views.DocumentHolder.txtColumnAlign": "Alinhamento de colunas", + "PE.Views.DocumentHolder.txtDecreaseArg": "Diminuir tamanho do argumento", + "PE.Views.DocumentHolder.txtDeleteArg": "Excluir argumento", + "PE.Views.DocumentHolder.txtDeleteBreak": "Excluir quebra manual", + "PE.Views.DocumentHolder.txtDeleteChars": "Excluir caracteres anexos ", + "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Excluir separadores e caracteres anexos", + "PE.Views.DocumentHolder.txtDeleteEq": "Excluir equação", + "PE.Views.DocumentHolder.txtDeleteGroupChar": "Excluir caractere", + "PE.Views.DocumentHolder.txtDeleteRadical": "Excluir radical", + "PE.Views.DocumentHolder.txtDeleteSlide": "Eliminar diapositivo", + "PE.Views.DocumentHolder.txtDistribHor": "Distribuir horizontalmente", + "PE.Views.DocumentHolder.txtDistribVert": "Distribuir verticalmente", + "PE.Views.DocumentHolder.txtDuplicateSlide": "Duplicar diapositivo", + "PE.Views.DocumentHolder.txtFractionLinear": "Alterar para fração linear", + "PE.Views.DocumentHolder.txtFractionSkewed": "Alterar para fração inclinada", + "PE.Views.DocumentHolder.txtFractionStacked": "Alterar para fração empilhada", + "PE.Views.DocumentHolder.txtGroup": "Grupo", + "PE.Views.DocumentHolder.txtGroupCharOver": "Caractere sobre texto", + "PE.Views.DocumentHolder.txtGroupCharUnder": "Caractere sob texto", + "PE.Views.DocumentHolder.txtHideBottom": "Ocultar borda inferior", + "PE.Views.DocumentHolder.txtHideBottomLimit": "Ocultar limite inferior", + "PE.Views.DocumentHolder.txtHideCloseBracket": "Ocultar colchete de fechamento", + "PE.Views.DocumentHolder.txtHideDegree": "Ocultar grau", + "PE.Views.DocumentHolder.txtHideHor": "Ocultar linha horizontal", + "PE.Views.DocumentHolder.txtHideLB": "Ocultar linha inferior esquerda", + "PE.Views.DocumentHolder.txtHideLeft": "Ocultar borda esquerda", + "PE.Views.DocumentHolder.txtHideLT": "Ocultar linha superior esquerda", + "PE.Views.DocumentHolder.txtHideOpenBracket": "Ocultar colchete de abertura", + "PE.Views.DocumentHolder.txtHidePlaceholder": "Ocultar espaço reservado", + "PE.Views.DocumentHolder.txtHideRight": "Ocultar borda direita", + "PE.Views.DocumentHolder.txtHideTop": "Ocultar borda superior", + "PE.Views.DocumentHolder.txtHideTopLimit": "Ocultar limite superior", + "PE.Views.DocumentHolder.txtHideVer": "Ocultar linha vertical", + "PE.Views.DocumentHolder.txtIncreaseArg": "Aumentar tamanho do argumento", + "PE.Views.DocumentHolder.txtInsertArgAfter": "Inserir argumento após", + "PE.Views.DocumentHolder.txtInsertArgBefore": "Inserir argumento antes", + "PE.Views.DocumentHolder.txtInsertBreak": "Inserir quebra manual", + "PE.Views.DocumentHolder.txtInsertEqAfter": "Inserir equação a seguir", + "PE.Views.DocumentHolder.txtInsertEqBefore": "Inserir equação à frente", + "PE.Views.DocumentHolder.txtKeepTextOnly": "Manter apenas texto", + "PE.Views.DocumentHolder.txtLimitChange": "Alterar localização de limites", + "PE.Views.DocumentHolder.txtLimitOver": "Limite sobre o texto", + "PE.Views.DocumentHolder.txtLimitUnder": "Limite sob o texto", + "PE.Views.DocumentHolder.txtMatchBrackets": "Combinar parênteses com a altura do argumento", + "PE.Views.DocumentHolder.txtMatrixAlign": "Alinhamento de matriz", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Mover Diapositivo para o Fim", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Mover Diapositivo para o Início", + "PE.Views.DocumentHolder.txtNewSlide": "Novo diapositivo", + "PE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", + "PE.Views.DocumentHolder.txtPasteDestFormat": "Utilizar tema de destino", + "PE.Views.DocumentHolder.txtPastePicture": "Imagem", + "PE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação original", + "PE.Views.DocumentHolder.txtPressLink": "Prima Ctrl e clique na ligação", + "PE.Views.DocumentHolder.txtPreview": "Iniciar apresentação", + "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir seleção", + "PE.Views.DocumentHolder.txtRemFractionBar": "Remover barra de fração", + "PE.Views.DocumentHolder.txtRemLimit": "Remover limite", + "PE.Views.DocumentHolder.txtRemoveAccentChar": "Remover caractere destacado", + "PE.Views.DocumentHolder.txtRemoveBar": "Remover barra", + "PE.Views.DocumentHolder.txtRemScripts": "Remover scripts", + "PE.Views.DocumentHolder.txtRemSubscript": "Remover subscrito", + "PE.Views.DocumentHolder.txtRemSuperscript": "Remover sobrescrito", + "PE.Views.DocumentHolder.txtResetLayout": "Repor diapositivo", + "PE.Views.DocumentHolder.txtScriptsAfter": "Scripts após o texto", + "PE.Views.DocumentHolder.txtScriptsBefore": "Scripts antes do texto", + "PE.Views.DocumentHolder.txtSelectAll": "Selecionar tudo", + "PE.Views.DocumentHolder.txtShowBottomLimit": "Mostrar limite inferior", + "PE.Views.DocumentHolder.txtShowCloseBracket": "Mostrar colchetes de fechamento", + "PE.Views.DocumentHolder.txtShowDegree": "Exibir grau", + "PE.Views.DocumentHolder.txtShowOpenBracket": "Exibir colchetes de abertura", + "PE.Views.DocumentHolder.txtShowPlaceholder": "Exibir espaço reservado", + "PE.Views.DocumentHolder.txtShowTopLimit": "Exibir limite superior", + "PE.Views.DocumentHolder.txtSlide": "Diapositivo", + "PE.Views.DocumentHolder.txtSlideHide": "Ocultar diapositivo", + "PE.Views.DocumentHolder.txtStretchBrackets": "Esticar colchetes", + "PE.Views.DocumentHolder.txtTop": "Parte superior", + "PE.Views.DocumentHolder.txtUnderbar": "Barra abaixo de texto", + "PE.Views.DocumentHolder.txtUngroup": "Desagrupar", + "PE.Views.DocumentHolder.txtWarnUrl": "Clicar nesta ligação pode ser prejudicial ao seu dispositivo e dados.
Deseja continuar?", + "PE.Views.DocumentHolder.vertAlignText": "Alinhamento vertical", + "PE.Views.DocumentPreview.goToSlideText": "Ir para o diapositivo", + "PE.Views.DocumentPreview.slideIndexText": "Diapositivo {0} de {1}", + "PE.Views.DocumentPreview.txtClose": "Fechar apresentação", + "PE.Views.DocumentPreview.txtEndSlideshow": "Terminar apresentação", + "PE.Views.DocumentPreview.txtExitFullScreen": "Exit Full Screen", + "PE.Views.DocumentPreview.txtFinalMessage": "Pré-visualização terminada. Clique para sair.", + "PE.Views.DocumentPreview.txtFullScreen": "Full Screen", + "PE.Views.DocumentPreview.txtNext": "Diapositivo seguinte", + "PE.Views.DocumentPreview.txtPageNumInvalid": "Número inválido", + "PE.Views.DocumentPreview.txtPause": "Pausar apresentação", + "PE.Views.DocumentPreview.txtPlay": "Iniciar apresentação", + "PE.Views.DocumentPreview.txtPrev": "Diapositivo anterior", + "PE.Views.DocumentPreview.txtReset": "Redefinir", + "PE.Views.FileMenu.btnAboutCaption": "Sobre", + "PE.Views.FileMenu.btnBackCaption": "Abrir localização", + "PE.Views.FileMenu.btnCloseMenuCaption": "Fechar menu", + "PE.Views.FileMenu.btnCreateNewCaption": "Criar novo", + "PE.Views.FileMenu.btnDownloadCaption": "Descarregar como...", + "PE.Views.FileMenu.btnExitCaption": "Fechar", + "PE.Views.FileMenu.btnFileOpenCaption": "Abrir...", + "PE.Views.FileMenu.btnHelpCaption": "Ajuda...", + "PE.Views.FileMenu.btnHistoryCaption": "Histórico da versão", + "PE.Views.FileMenu.btnInfoCaption": "Informações de apresentação...", + "PE.Views.FileMenu.btnPrintCaption": "Imprimir", + "PE.Views.FileMenu.btnProtectCaption": "Proteger", + "PE.Views.FileMenu.btnRecentFilesCaption": "Abrir recente...", + "PE.Views.FileMenu.btnRenameCaption": "Renomear...", + "PE.Views.FileMenu.btnReturnCaption": "Voltar para a apresentação", + "PE.Views.FileMenu.btnRightsCaption": "Direitos de Acesso...", + "PE.Views.FileMenu.btnSaveAsCaption": "Save as", + "PE.Views.FileMenu.btnSaveCaption": "Salvar", + "PE.Views.FileMenu.btnSaveCopyAsCaption": "Guardar cópia como...", + "PE.Views.FileMenu.btnSettingsCaption": "Definições avançadas...", + "PE.Views.FileMenu.btnToEditCaption": "Editar apresentação", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "Apresentação em branco", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Criar novo", + "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Inclui o Autor", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Adicionar Texto", + "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicação", + "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", + "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Alterar direitos de acesso", + "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentário", + "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Criado", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última modificação por", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última modificação", + "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Proprietário", + "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Localização", + "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos", + "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", + "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", + "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Enviado", + "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Alterar direitos de acesso", + "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos", + "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", + "PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Com palavra-passe", + "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger a Apresentação", + "PE.Views.FileMenuPanels.ProtectDoc.strSignature": "Com assinatura", + "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar apresentação", + "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Se editar este documento, remove as assinaturas.
Tem a certeza de que deseja continuar?", + "PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "A apresentação está protegida com uma palavra-passe", + "PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Assinaturas adicionadas ao documento. Esta apresentação não pode ser editada.", + "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algumas das assinaturas digitais são inválidas ou não puderam ser verificadas. Esta apresentação não pode ser editada.", + "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver assinaturas", + "PE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", + "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Ativar guias de alinhamento", + "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Ativar recuperação automática", + "PE.Views.FileMenuPanels.Settings.strAutosave": "Ativar salvamento automático", + "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modo de co-edição", + "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Outros utilizadores verão as suas alterações de uma vez", + "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", + "PE.Views.FileMenuPanels.Settings.strFast": "Rápido", + "PE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de tipo de letra", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Guardar sempre no servidor (caso contrário, guardar no servidor ao fechar o documento)", + "PE.Views.FileMenuPanels.Settings.strInputMode": "Ativar hieróglifos", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Definições de macros", + "PE.Views.FileMenuPanels.Settings.strPaste": "Cortar, copiar e colar", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "Mostrar botão Opções de colagem ao colar conteúdo", + "PE.Views.FileMenuPanels.Settings.strShowChanges": "Alterações de colaboração em tempo real", + "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Ativar a opção de verificação ortográfica", + "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", + "PE.Views.FileMenuPanels.Settings.strTheme": "Tema de interface", + "PE.Views.FileMenuPanels.Settings.strUnit": "Unidade de medida", + "PE.Views.FileMenuPanels.Settings.strZoom": "Valor de zoom padrão", + "PE.Views.FileMenuPanels.Settings.text10Minutes": "A cada 10 minutos", + "PE.Views.FileMenuPanels.Settings.text30Minutes": "A cada 30 minutos", + "PE.Views.FileMenuPanels.Settings.text5Minutes": "A cada 5 minutos", + "PE.Views.FileMenuPanels.Settings.text60Minutes": "A cada hora", + "PE.Views.FileMenuPanels.Settings.textAlignGuides": "Guias de alinhamento", + "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Recuperação automática", + "PE.Views.FileMenuPanels.Settings.textAutoSave": "Salvamento automático", + "PE.Views.FileMenuPanels.Settings.textDisabled": "Desabilitado", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Salvar para servidor", + "PE.Views.FileMenuPanels.Settings.textMinute": "A cada minuto", + "PE.Views.FileMenuPanels.Settings.txtAll": "Ver tudo", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opções de correção automática...", + "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Modo de cache padrão", + "PE.Views.FileMenuPanels.Settings.txtCm": "Centímetro", + "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Ajustar ao diapositivo", + "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajustar à Largura", + "PE.Views.FileMenuPanels.Settings.txtInch": "Polegada", + "PE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", + "PE.Views.FileMenuPanels.Settings.txtLast": "Ver último", + "PE.Views.FileMenuPanels.Settings.txtMac": "como OS X", + "PE.Views.FileMenuPanels.Settings.txtNative": "Nativo", + "PE.Views.FileMenuPanels.Settings.txtProofing": "Correção", + "PE.Views.FileMenuPanels.Settings.txtPt": "Ponto", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Ativar tudo", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Ativar todas as macros sem uma notificação", + "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Verificação ortográfica", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Desativar tudo", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Desativar todas as macros sem uma notificação", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificação", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", + "PE.Views.FileMenuPanels.Settings.txtWin": "como Windows", + "PE.Views.HeaderFooterDialog.applyAllText": "Aplicar a todos", + "PE.Views.HeaderFooterDialog.applyText": "Aplicar", + "PE.Views.HeaderFooterDialog.diffLanguage": "Não pode utilizar um formato de data que seja diferente do formato utilizado no modelo global.
Para alterar o modelo global, clique \"Aplicar a todos\" em vez de \"Aplicar\".", + "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Aviso", + "PE.Views.HeaderFooterDialog.textDateTime": "Data e Hora", + "PE.Views.HeaderFooterDialog.textFixed": "Corrigido", + "PE.Views.HeaderFooterDialog.textFooter": "Texto no rodapé", + "PE.Views.HeaderFooterDialog.textFormat": "Formatos", + "PE.Views.HeaderFooterDialog.textLang": "Idioma", + "PE.Views.HeaderFooterDialog.textNotTitle": "Não mostrar no diapositivo inicial", + "PE.Views.HeaderFooterDialog.textPreview": "Pré-visualizar", + "PE.Views.HeaderFooterDialog.textSlideNum": "Número do diapositivo", + "PE.Views.HeaderFooterDialog.textTitle": "Definições de rodapé", + "PE.Views.HeaderFooterDialog.textUpdate": "Atualizar automaticamente", + "PE.Views.HyperlinkSettingsDialog.strDisplay": "Exibir", + "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Ligação a", + "PE.Views.HyperlinkSettingsDialog.textDefault": "Fragmento de texto selecionado", + "PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Inserir legenda aqui", + "PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Introduzir ligação aqui", + "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Inserir dica de ferramenta aqui", + "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Ligação externa", + "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Diapositivo nesta apresentação", + "PE.Views.HyperlinkSettingsDialog.textSlides": "Diapositivos", + "PE.Views.HyperlinkSettingsDialog.textTipText": "Texto de dica de tela:", + "PE.Views.HyperlinkSettingsDialog.textTitle": "Definições de hiperligação", + "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Este campo é obrigatório", + "PE.Views.HyperlinkSettingsDialog.txtFirst": "Primeiro diapositivo", + "PE.Views.HyperlinkSettingsDialog.txtLast": "Último diapositivo", + "PE.Views.HyperlinkSettingsDialog.txtNext": "Diapositivo seguinte", + "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "PE.Views.HyperlinkSettingsDialog.txtPrev": "Diapositivo anterior", + "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Este campo está limitado a 2083 caracteres", + "PE.Views.HyperlinkSettingsDialog.txtSlide": "Diapositivo", + "PE.Views.ImageSettings.textAdvanced": "Mostrar definições avançadas", + "PE.Views.ImageSettings.textCrop": "Cortar", + "PE.Views.ImageSettings.textCropFill": "Preencher", + "PE.Views.ImageSettings.textCropFit": "Ajustar", + "PE.Views.ImageSettings.textCropToShape": "Recortar com Forma", + "PE.Views.ImageSettings.textEdit": "Editar", + "PE.Views.ImageSettings.textEditObject": "Editar objeto", + "PE.Views.ImageSettings.textFitSlide": "Ajustar ao diapositivo", + "PE.Views.ImageSettings.textFlip": "Virar", + "PE.Views.ImageSettings.textFromFile": "De um ficheiro", + "PE.Views.ImageSettings.textFromStorage": "De um armazenamento", + "PE.Views.ImageSettings.textFromUrl": "De um URL", + "PE.Views.ImageSettings.textHeight": "Altura", + "PE.Views.ImageSettings.textHint270": "Rodar 90º à esquerda", + "PE.Views.ImageSettings.textHint90": "Rodar 90º à direita", + "PE.Views.ImageSettings.textHintFlipH": "Virar horizontalmente", + "PE.Views.ImageSettings.textHintFlipV": "Virar verticalmente", + "PE.Views.ImageSettings.textInsert": "Substituir imagem", + "PE.Views.ImageSettings.textOriginalSize": "Tamanho real", + "PE.Views.ImageSettings.textRecentlyUsed": "Utilizado recentemente", + "PE.Views.ImageSettings.textRotate90": "Rodar 90°", + "PE.Views.ImageSettings.textRotation": "Rotação", + "PE.Views.ImageSettings.textSize": "Tamanho", + "PE.Views.ImageSettings.textWidth": "Largura", + "PE.Views.ImageSettingsAdvanced.textAlt": "Texto Alternativo", + "PE.Views.ImageSettingsAdvanced.textAltDescription": "Descrição", + "PE.Views.ImageSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", + "PE.Views.ImageSettingsAdvanced.textAltTitle": "Título", + "PE.Views.ImageSettingsAdvanced.textAngle": "Ângulo", + "PE.Views.ImageSettingsAdvanced.textFlipped": "Invertido", + "PE.Views.ImageSettingsAdvanced.textHeight": "Altura", + "PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalmente", + "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporções constantes", + "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Tamanho real", + "PE.Views.ImageSettingsAdvanced.textPlacement": "Posicionamento", + "PE.Views.ImageSettingsAdvanced.textPosition": "Posição", + "PE.Views.ImageSettingsAdvanced.textRotation": "Rotação", + "PE.Views.ImageSettingsAdvanced.textSize": "Tamanho", + "PE.Views.ImageSettingsAdvanced.textTitle": "Imagem - Definições avançadas", + "PE.Views.ImageSettingsAdvanced.textVertically": "Verticalmente", + "PE.Views.ImageSettingsAdvanced.textWidth": "Largura", + "PE.Views.LeftMenu.tipAbout": "Sobre", + "PE.Views.LeftMenu.tipChat": "Gráfico", + "PE.Views.LeftMenu.tipComments": "Comentários", + "PE.Views.LeftMenu.tipPlugins": "Plugins", + "PE.Views.LeftMenu.tipSearch": "Pesquisa", + "PE.Views.LeftMenu.tipSlides": "Diapositivos", + "PE.Views.LeftMenu.tipSupport": "Feedback e Suporte", + "PE.Views.LeftMenu.tipTitles": "Títulos", + "PE.Views.LeftMenu.txtDeveloper": "MODO DE DESENVOLVEDOR", + "PE.Views.LeftMenu.txtLimit": "Limitar o acesso", + "PE.Views.LeftMenu.txtTrial": "MODO DE TESTE", + "PE.Views.LeftMenu.txtTrialDev": "Versão de Avaliação do Modo de Programador", + "PE.Views.ParagraphSettings.strLineHeight": "Espaçamento de linha", + "PE.Views.ParagraphSettings.strParagraphSpacing": "Espaçamento", + "PE.Views.ParagraphSettings.strSpacingAfter": "Depois", + "PE.Views.ParagraphSettings.strSpacingBefore": "Antes", + "PE.Views.ParagraphSettings.textAdvanced": "Mostrar definições avançadas", + "PE.Views.ParagraphSettings.textAt": "Em", + "PE.Views.ParagraphSettings.textAtLeast": "Pelo menos", + "PE.Views.ParagraphSettings.textAuto": "Múltiplo", + "PE.Views.ParagraphSettings.textExact": "Exatamente", + "PE.Views.ParagraphSettings.txtAutoText": "Automático", + "PE.Views.ParagraphSettingsAdvanced.noTabs": "Os separadores especificados aparecerão neste campo", + "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Todas maiúsculas", + "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Tachado duplo", + "PE.Views.ParagraphSettingsAdvanced.strIndent": "Recuos", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Esquerda", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Espaçamento entre linhas", + "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Direita", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "após", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Antes", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial", + "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Fonte", + "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Avanços e espaçamento", + "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versalete", + "PE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaçamento", + "PE.Views.ParagraphSettingsAdvanced.strStrike": "Taxado", + "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscrito", + "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Sobrescrito", + "PE.Views.ParagraphSettingsAdvanced.strTabs": "Aba", + "PE.Views.ParagraphSettingsAdvanced.textAlign": "Alinhamento", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiplo", + "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaçamento entre caracteres", + "PE.Views.ParagraphSettingsAdvanced.textDefault": "Aba padrão", + "PE.Views.ParagraphSettingsAdvanced.textEffects": "Efeitos", + "PE.Views.ParagraphSettingsAdvanced.textExact": "Exatamente", + "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primeira linha", + "PE.Views.ParagraphSettingsAdvanced.textHanging": "Suspensão", + "PE.Views.ParagraphSettingsAdvanced.textJustified": "Justificado", + "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nenhum)", + "PE.Views.ParagraphSettingsAdvanced.textRemove": "Remover", + "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remover todos", + "PE.Views.ParagraphSettingsAdvanced.textSet": "Especificar", + "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centro", + "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "Esquerda", + "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posição da aba", + "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Direita", + "PE.Views.ParagraphSettingsAdvanced.textTitle": "Parágrafo - Definições avançadas", + "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", + "PE.Views.RightMenu.txtChartSettings": "Definições de gráfico", + "PE.Views.RightMenu.txtImageSettings": "Definições de imagem", + "PE.Views.RightMenu.txtParagraphSettings": "Configurações do parágrafo", + "PE.Views.RightMenu.txtShapeSettings": "Definições de forma", + "PE.Views.RightMenu.txtSignatureSettings": "Definições de assinatura", + "PE.Views.RightMenu.txtSlideSettings": "Definições de diapositivo", + "PE.Views.RightMenu.txtTableSettings": "Definições de tabela", + "PE.Views.RightMenu.txtTextArtSettings": "Definições de texto artístico", + "PE.Views.ShapeSettings.strBackground": "Cor de fundo", + "PE.Views.ShapeSettings.strChange": "Alterar forma automática", + "PE.Views.ShapeSettings.strColor": "Cor", + "PE.Views.ShapeSettings.strFill": "Preencher", + "PE.Views.ShapeSettings.strForeground": "Cor principal", + "PE.Views.ShapeSettings.strPattern": "Padrão", + "PE.Views.ShapeSettings.strShadow": "Mostrar sombra", + "PE.Views.ShapeSettings.strSize": "Tamanho", + "PE.Views.ShapeSettings.strStroke": "Linha", + "PE.Views.ShapeSettings.strTransparency": "Opacidade", + "PE.Views.ShapeSettings.strType": "Tipo", + "PE.Views.ShapeSettings.textAdvanced": "Mostrar definições avançadas", + "PE.Views.ShapeSettings.textAngle": "Ângulo", + "PE.Views.ShapeSettings.textBorderSizeErr": "O valor inserido não está correto.
Introduza um valor entre 0 pt e 1584 pt.", + "PE.Views.ShapeSettings.textColor": "Cor de preenchimento", + "PE.Views.ShapeSettings.textDirection": "Direção", + "PE.Views.ShapeSettings.textEmptyPattern": "Sem padrão", + "PE.Views.ShapeSettings.textFlip": "Virar", + "PE.Views.ShapeSettings.textFromFile": "De um ficheiro", + "PE.Views.ShapeSettings.textFromStorage": "De um armazenamento", + "PE.Views.ShapeSettings.textFromUrl": "De um URL", + "PE.Views.ShapeSettings.textGradient": "Ponto de gradiente", + "PE.Views.ShapeSettings.textGradientFill": "Preenchimento gradiente", + "PE.Views.ShapeSettings.textHint270": "Rodar 90º à esquerda", + "PE.Views.ShapeSettings.textHint90": "Rodar 90º à direita", + "PE.Views.ShapeSettings.textHintFlipH": "Virar horizontalmente", + "PE.Views.ShapeSettings.textHintFlipV": "Virar verticalmente", + "PE.Views.ShapeSettings.textImageTexture": "Imagem ou Textura", + "PE.Views.ShapeSettings.textLinear": "Linear", + "PE.Views.ShapeSettings.textNoFill": "Sem preenchimento", + "PE.Views.ShapeSettings.textPatternFill": "Padrão", + "PE.Views.ShapeSettings.textPosition": "Posição", + "PE.Views.ShapeSettings.textRadial": "Radial", + "PE.Views.ShapeSettings.textRecentlyUsed": "Utilizado recentemente", + "PE.Views.ShapeSettings.textRotate90": "Rodar 90°", + "PE.Views.ShapeSettings.textRotation": "Rotação", + "PE.Views.ShapeSettings.textSelectImage": "Selecionar imagem", + "PE.Views.ShapeSettings.textSelectTexture": "Selecionar", + "PE.Views.ShapeSettings.textStretch": "Alongar", + "PE.Views.ShapeSettings.textStyle": "Estilo", + "PE.Views.ShapeSettings.textTexture": "De uma textura", + "PE.Views.ShapeSettings.textTile": "Lado a lado", + "PE.Views.ShapeSettings.tipAddGradientPoint": "Adicionar ponto de gradiente", + "PE.Views.ShapeSettings.tipRemoveGradientPoint": "Remover Ponto de Gradiente", + "PE.Views.ShapeSettings.txtBrownPaper": "Papel pardo", + "PE.Views.ShapeSettings.txtCanvas": "Canvas", + "PE.Views.ShapeSettings.txtCarton": "Papelão", + "PE.Views.ShapeSettings.txtDarkFabric": "Tecido escuro", + "PE.Views.ShapeSettings.txtGrain": "Granulação", + "PE.Views.ShapeSettings.txtGranite": "Granito", + "PE.Views.ShapeSettings.txtGreyPaper": "Papel cinza", + "PE.Views.ShapeSettings.txtKnit": "Encontro", + "PE.Views.ShapeSettings.txtLeather": "Couro", + "PE.Views.ShapeSettings.txtNoBorders": "Sem linha", + "PE.Views.ShapeSettings.txtPapyrus": "Papiro", + "PE.Views.ShapeSettings.txtWood": "Madeira", + "PE.Views.ShapeSettingsAdvanced.strColumns": "Colunas", + "PE.Views.ShapeSettingsAdvanced.strMargins": "Preenchimento de texto", + "PE.Views.ShapeSettingsAdvanced.textAlt": "Texto Alternativo", + "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Descrição", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", + "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Título", + "PE.Views.ShapeSettingsAdvanced.textAngle": "Ângulo", + "PE.Views.ShapeSettingsAdvanced.textArrows": "Setas", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "Ajuste automático", + "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Tamanho inicial", + "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estilo inicial", + "PE.Views.ShapeSettingsAdvanced.textBevel": "Bisel", + "PE.Views.ShapeSettingsAdvanced.textBottom": "Inferior", + "PE.Views.ShapeSettingsAdvanced.textCapType": "Tipo de letra", + "PE.Views.ShapeSettingsAdvanced.textColNumber": "Número de colunas", + "PE.Views.ShapeSettingsAdvanced.textEndSize": "Tamanho final", + "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Estilo final", + "PE.Views.ShapeSettingsAdvanced.textFlat": "Plano", + "PE.Views.ShapeSettingsAdvanced.textFlipped": "Invertido", + "PE.Views.ShapeSettingsAdvanced.textHeight": "Altura", + "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalmente", + "PE.Views.ShapeSettingsAdvanced.textJoinType": "Tipo de junção", + "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporções constantes", + "PE.Views.ShapeSettingsAdvanced.textLeft": "Esquerda", + "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Estilo de linha", + "PE.Views.ShapeSettingsAdvanced.textMiter": "Malhete", + "PE.Views.ShapeSettingsAdvanced.textNofit": "Não ajustar automaticamente.", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Redimensionar forma para se ajustar ao texto", + "PE.Views.ShapeSettingsAdvanced.textRight": "Direita", + "PE.Views.ShapeSettingsAdvanced.textRotation": "Rotação", + "PE.Views.ShapeSettingsAdvanced.textRound": "Rodada", + "PE.Views.ShapeSettingsAdvanced.textShrink": "Reduzir o texto ao transbordar", + "PE.Views.ShapeSettingsAdvanced.textSize": "Tamanho", + "PE.Views.ShapeSettingsAdvanced.textSpacing": "Espaçamento entre colunas", + "PE.Views.ShapeSettingsAdvanced.textSquare": "Quadrado", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "Caixa de texto", + "PE.Views.ShapeSettingsAdvanced.textTitle": "Forma - Definições avançadas", + "PE.Views.ShapeSettingsAdvanced.textTop": "Parte superior", + "PE.Views.ShapeSettingsAdvanced.textVertically": "Verticalmente", + "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Pesos e Setas", + "PE.Views.ShapeSettingsAdvanced.textWidth": "Largura", + "PE.Views.ShapeSettingsAdvanced.txtNone": "Nenhum", + "PE.Views.SignatureSettings.notcriticalErrorTitle": "Aviso", + "PE.Views.SignatureSettings.strDelete": "Remover assinatura", + "PE.Views.SignatureSettings.strDetails": "Detalhes da assinatura", + "PE.Views.SignatureSettings.strInvalid": "Assinaturas inválidas", + "PE.Views.SignatureSettings.strSign": "Assinar", + "PE.Views.SignatureSettings.strSignature": "Assinatura", + "PE.Views.SignatureSettings.strValid": "Assinaturas válidas", + "PE.Views.SignatureSettings.txtContinueEditing": "Editar mesmo assim", + "PE.Views.SignatureSettings.txtEditWarning": "Se editar este documento, remove as assinaturas.
Tem a certeza de que deseja continuar?", + "PE.Views.SignatureSettings.txtRemoveWarning": "Quer remover esta assinatura?
Isto não pode ser anulado.", + "PE.Views.SignatureSettings.txtSigned": "Assinaturas adicionadas ao documento. Esta apresentação não pode ser editada.", + "PE.Views.SignatureSettings.txtSignedInvalid": "Algumas das assinaturas digitais são inválidas ou não puderam ser verificadas. Esta apresentação não pode ser editada.", + "PE.Views.SlideSettings.strBackground": "Cor de fundo", + "PE.Views.SlideSettings.strColor": "Cor", + "PE.Views.SlideSettings.strDateTime": "Mostrar Data e Tempo", + "PE.Views.SlideSettings.strFill": "Preencher", + "PE.Views.SlideSettings.strForeground": "Cor principal", + "PE.Views.SlideSettings.strPattern": "Padrão", + "PE.Views.SlideSettings.strSlideNum": "Mostrar número do diapositivo", + "PE.Views.SlideSettings.strTransparency": "Opacidade", + "PE.Views.SlideSettings.textAdvanced": "Mostrar definições avançadas", + "PE.Views.SlideSettings.textAngle": "Ângulo", + "PE.Views.SlideSettings.textColor": "Cor de preenchimento", + "PE.Views.SlideSettings.textDirection": "Direção", + "PE.Views.SlideSettings.textEmptyPattern": "Sem padrão", + "PE.Views.SlideSettings.textFromFile": "De um ficheiro", + "PE.Views.SlideSettings.textFromStorage": "De um armazenamento", + "PE.Views.SlideSettings.textFromUrl": "De um URL", + "PE.Views.SlideSettings.textGradient": "Ponto de gradiente", + "PE.Views.SlideSettings.textGradientFill": "Preenchimento gradiente", + "PE.Views.SlideSettings.textImageTexture": "Imagem ou Textura", + "PE.Views.SlideSettings.textLinear": "Linear", + "PE.Views.SlideSettings.textNoFill": "Sem preenchimento", + "PE.Views.SlideSettings.textPatternFill": "Padrão", + "PE.Views.SlideSettings.textPosition": "Posição", + "PE.Views.SlideSettings.textRadial": "Radial", + "PE.Views.SlideSettings.textReset": "Resetar alterações", + "PE.Views.SlideSettings.textSelectImage": "Selecionar imagem", + "PE.Views.SlideSettings.textSelectTexture": "Selecionar", + "PE.Views.SlideSettings.textStretch": "Alongar", + "PE.Views.SlideSettings.textStyle": "Estilo", + "PE.Views.SlideSettings.textTexture": "De uma textura", + "PE.Views.SlideSettings.textTile": "Lado a lado", + "PE.Views.SlideSettings.tipAddGradientPoint": "Adicionar ponto de gradiente", + "PE.Views.SlideSettings.tipRemoveGradientPoint": "Remover Ponto de Gradiente", + "PE.Views.SlideSettings.txtBrownPaper": "Papel pardo", + "PE.Views.SlideSettings.txtCanvas": "Canvas", + "PE.Views.SlideSettings.txtCarton": "Papelão", + "PE.Views.SlideSettings.txtDarkFabric": "Tecido escuro", + "PE.Views.SlideSettings.txtGrain": "Granulação", + "PE.Views.SlideSettings.txtGranite": "Granito", + "PE.Views.SlideSettings.txtGreyPaper": "Papel cinza", + "PE.Views.SlideSettings.txtKnit": "Encontro", + "PE.Views.SlideSettings.txtLeather": "Couro", + "PE.Views.SlideSettings.txtPapyrus": "Papiro", + "PE.Views.SlideSettings.txtWood": "Madeira", + "PE.Views.SlideshowSettings.textLoop": "Loop contínuo até \"Esc\" ser pressionado", + "PE.Views.SlideshowSettings.textTitle": "Mostrar definições", + "PE.Views.SlideSizeSettings.strLandscape": "Paisagem", + "PE.Views.SlideSizeSettings.strPortrait": "Retrato", + "PE.Views.SlideSizeSettings.textHeight": "Altura", + "PE.Views.SlideSizeSettings.textSlideOrientation": "Orientação do diapositivo", + "PE.Views.SlideSizeSettings.textSlideSize": "Tamanho do diapositivo", + "PE.Views.SlideSizeSettings.textTitle": "Definições para o tamanho do diapositivo", + "PE.Views.SlideSizeSettings.textWidth": "Largura", + "PE.Views.SlideSizeSettings.txt35": "Diapositivos de 35 mm", + "PE.Views.SlideSizeSettings.txtA3": "Papel A3 (297x420 mm)", + "PE.Views.SlideSizeSettings.txtA4": "Papel A4 (210x297 mm)", + "PE.Views.SlideSizeSettings.txtB4": "Papel B4 (ICO) (250x353 mm)", + "PE.Views.SlideSizeSettings.txtB5": "Papel B5 (ICO) (176x250 mm)", + "PE.Views.SlideSizeSettings.txtBanner": "Banner", + "PE.Views.SlideSizeSettings.txtCustom": "Personalizar", + "PE.Views.SlideSizeSettings.txtLedger": "Papel Ledger(11x17 in)", + "PE.Views.SlideSizeSettings.txtLetter": "Papel carta (8,5x11 pol)", + "PE.Views.SlideSizeSettings.txtOverhead": "Transparência", + "PE.Views.SlideSizeSettings.txtStandard": "Padrão (4:3)", + "PE.Views.SlideSizeSettings.txtWidescreen": "Panorâmico", + "PE.Views.Statusbar.goToPageText": "Ir para o diapositivo", + "PE.Views.Statusbar.pageIndexText": "Diapositivo {0} de {1}", + "PE.Views.Statusbar.textShowBegin": "Mostrar do início", + "PE.Views.Statusbar.textShowCurrent": "Mostrar a partir do diapositivo atual", + "PE.Views.Statusbar.textShowPresenterView": "Mostrar vista de apresentador", + "PE.Views.Statusbar.tipAccessRights": "Manage document access rights", + "PE.Views.Statusbar.tipFitPage": "Ajustar ao diapositivo", + "PE.Views.Statusbar.tipFitWidth": "Ajustar largura", + "PE.Views.Statusbar.tipPreview": "Iniciar apresentação", + "PE.Views.Statusbar.tipSetLang": "Definir idioma do texto", + "PE.Views.Statusbar.tipZoomFactor": "Ampliação", + "PE.Views.Statusbar.tipZoomIn": "Ampliar", + "PE.Views.Statusbar.tipZoomOut": "Reduzir", + "PE.Views.Statusbar.txtPageNumInvalid": "Número inválido", + "PE.Views.TableSettings.deleteColumnText": "Excluir coluna", + "PE.Views.TableSettings.deleteRowText": "Excluir linha", + "PE.Views.TableSettings.deleteTableText": "Eliminar tabela", + "PE.Views.TableSettings.insertColumnLeftText": "Inserir coluna à esquerda", + "PE.Views.TableSettings.insertColumnRightText": "Inserir coluna à direita", + "PE.Views.TableSettings.insertRowAboveText": "Inserir linha acima", + "PE.Views.TableSettings.insertRowBelowText": "Inserir linha abaixo", + "PE.Views.TableSettings.mergeCellsText": "Unir células", + "PE.Views.TableSettings.selectCellText": "Selecionar célula", + "PE.Views.TableSettings.selectColumnText": "Selecionar coluna", + "PE.Views.TableSettings.selectRowText": "Selecionar linha", + "PE.Views.TableSettings.selectTableText": "Selecionar tabela", + "PE.Views.TableSettings.splitCellsText": "Dividir célula...", + "PE.Views.TableSettings.splitCellTitleText": "Dividir célula", + "PE.Views.TableSettings.textAdvanced": "Mostrar definições avançadas", + "PE.Views.TableSettings.textBackColor": "Cor de fundo", + "PE.Views.TableSettings.textBanded": "Em tiras", + "PE.Views.TableSettings.textBorderColor": "Cor", + "PE.Views.TableSettings.textBorders": "Estilo das bordas", + "PE.Views.TableSettings.textCellSize": "Tamanho da célula", + "PE.Views.TableSettings.textColumns": "Colunas", + "PE.Views.TableSettings.textDistributeCols": "Distribuir colunas", + "PE.Views.TableSettings.textDistributeRows": "Distribuir linhas", + "PE.Views.TableSettings.textEdit": "Linhas e Colunas", + "PE.Views.TableSettings.textEmptyTemplate": "Sem modelos", + "PE.Views.TableSettings.textFirst": "Primeiro", + "PE.Views.TableSettings.textHeader": "Cabeçalho", + "PE.Views.TableSettings.textHeight": "Altura", + "PE.Views.TableSettings.textLast": "Última", + "PE.Views.TableSettings.textRows": "Linhas", + "PE.Views.TableSettings.textSelectBorders": "Selecione os contornos aos quais pretende aplicar o estilo escolhido", + "PE.Views.TableSettings.textTemplate": "Selecionar de um modelo", + "PE.Views.TableSettings.textTotal": "Total", + "PE.Views.TableSettings.textWidth": "Largura", + "PE.Views.TableSettings.tipAll": "Definir borda externa e todas as linhas internas", + "PE.Views.TableSettings.tipBottom": "Definir apenas borda inferior externa", + "PE.Views.TableSettings.tipInner": "Definir apenas linhas internas", + "PE.Views.TableSettings.tipInnerHor": "Definir apenas linhas internas horizontais", + "PE.Views.TableSettings.tipInnerVert": "Definir apenas linhas internas verticais", + "PE.Views.TableSettings.tipLeft": "Definir apenas borda esquerda externa", + "PE.Views.TableSettings.tipNone": "Definir sem bordas", + "PE.Views.TableSettings.tipOuter": "Definir apenas borda externa", + "PE.Views.TableSettings.tipRight": "Definir apenas borda direita externa", + "PE.Views.TableSettings.tipTop": "Definir apenas borda superior externa", + "PE.Views.TableSettings.txtNoBorders": "Sem bordas", + "PE.Views.TableSettings.txtTable_Accent": "Sotaque", + "PE.Views.TableSettings.txtTable_DarkStyle": "Estilo escuro", + "PE.Views.TableSettings.txtTable_LightStyle": "Estilo claro", + "PE.Views.TableSettings.txtTable_MediumStyle": "Estilo médio", + "PE.Views.TableSettings.txtTable_NoGrid": "Sem grelha", + "PE.Views.TableSettings.txtTable_NoStyle": "Sem estilo", + "PE.Views.TableSettings.txtTable_TableGrid": "Grelha da tabela", + "PE.Views.TableSettings.txtTable_ThemedStyle": "Estilo com Tema", + "PE.Views.TableSettingsAdvanced.textAlt": "Texto Alternativo", + "PE.Views.TableSettingsAdvanced.textAltDescription": "Descrição", + "PE.Views.TableSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", + "PE.Views.TableSettingsAdvanced.textAltTitle": "Título", + "PE.Views.TableSettingsAdvanced.textBottom": "Inferior", + "PE.Views.TableSettingsAdvanced.textCheckMargins": "Usar margens padrão", + "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Margens padrão", + "PE.Views.TableSettingsAdvanced.textLeft": "Esquerda", + "PE.Views.TableSettingsAdvanced.textMargins": "Margens da célula", + "PE.Views.TableSettingsAdvanced.textRight": "Direita", + "PE.Views.TableSettingsAdvanced.textTitle": "Tabela - Definições avançadas", + "PE.Views.TableSettingsAdvanced.textTop": "Parte superior", + "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margens", + "PE.Views.TextArtSettings.strBackground": "Cor de fundo", + "PE.Views.TextArtSettings.strColor": "Cor", + "PE.Views.TextArtSettings.strFill": "Preencher", + "PE.Views.TextArtSettings.strForeground": "Cor principal", + "PE.Views.TextArtSettings.strPattern": "Pattern", + "PE.Views.TextArtSettings.strSize": "Tamanho", + "PE.Views.TextArtSettings.strStroke": "Linha", + "PE.Views.TextArtSettings.strTransparency": "Opacidade", + "PE.Views.TextArtSettings.strType": "Tipo", + "PE.Views.TextArtSettings.textAngle": "Ângulo", + "PE.Views.TextArtSettings.textBorderSizeErr": "O valor inserido não está correto.
Introduza um valor entre 0 pt e 1584 pt.", + "PE.Views.TextArtSettings.textColor": "Cor de preenchimento", + "PE.Views.TextArtSettings.textDirection": "Direção", + "PE.Views.TextArtSettings.textEmptyPattern": "No Pattern", + "PE.Views.TextArtSettings.textFromFile": "De um ficheiro", + "PE.Views.TextArtSettings.textFromUrl": "De um URL", + "PE.Views.TextArtSettings.textGradient": "Ponto de gradiente", + "PE.Views.TextArtSettings.textGradientFill": "Preenchimento gradiente", + "PE.Views.TextArtSettings.textImageTexture": "Picture or Texture", + "PE.Views.TextArtSettings.textLinear": "Linear", + "PE.Views.TextArtSettings.textNoFill": "No Fill", + "PE.Views.TextArtSettings.textPatternFill": "Pattern", + "PE.Views.TextArtSettings.textPosition": "Posição", + "PE.Views.TextArtSettings.textRadial": "Radial", + "PE.Views.TextArtSettings.textSelectTexture": "Selecionar", + "PE.Views.TextArtSettings.textStretch": "Alongar", + "PE.Views.TextArtSettings.textStyle": "Estilo", + "PE.Views.TextArtSettings.textTemplate": "Modelo", + "PE.Views.TextArtSettings.textTexture": "De uma textura", + "PE.Views.TextArtSettings.textTile": "Lado a lado", + "PE.Views.TextArtSettings.textTransform": "Transform", + "PE.Views.TextArtSettings.tipAddGradientPoint": "Adicionar ponto de gradiente", + "PE.Views.TextArtSettings.tipRemoveGradientPoint": "Remover Ponto de Gradiente", + "PE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", + "PE.Views.TextArtSettings.txtCanvas": "Canvas", + "PE.Views.TextArtSettings.txtCarton": "Carton", + "PE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric", + "PE.Views.TextArtSettings.txtGrain": "Grain", + "PE.Views.TextArtSettings.txtGranite": "Granite", + "PE.Views.TextArtSettings.txtGreyPaper": "Gray Paper", + "PE.Views.TextArtSettings.txtKnit": "Knit", + "PE.Views.TextArtSettings.txtLeather": "Leather", + "PE.Views.TextArtSettings.txtNoBorders": "No Line", + "PE.Views.TextArtSettings.txtPapyrus": "Papyrus", + "PE.Views.TextArtSettings.txtWood": "Wood", + "PE.Views.Toolbar.capAddSlide": "Adicionar diapositivo", + "PE.Views.Toolbar.capBtnAddComment": "Adicionar comentário", + "PE.Views.Toolbar.capBtnComment": "Comentário", + "PE.Views.Toolbar.capBtnDateTime": "Data e Hora", + "PE.Views.Toolbar.capBtnInsHeader": "Rodapé", + "PE.Views.Toolbar.capBtnInsSymbol": "Símbolo", + "PE.Views.Toolbar.capBtnSlideNum": "Número do diapositivo", + "PE.Views.Toolbar.capInsertAudio": "Áudio", + "PE.Views.Toolbar.capInsertChart": "Gráfico", + "PE.Views.Toolbar.capInsertEquation": "Equação", + "PE.Views.Toolbar.capInsertHyperlink": "Hiperligação", + "PE.Views.Toolbar.capInsertImage": "Imagem", + "PE.Views.Toolbar.capInsertShape": "Forma", + "PE.Views.Toolbar.capInsertTable": "Tabela", + "PE.Views.Toolbar.capInsertText": "Caixa de texto", + "PE.Views.Toolbar.capInsertVideo": "Vídeo", + "PE.Views.Toolbar.capTabFile": "Ficheiro", + "PE.Views.Toolbar.capTabHome": "Base", + "PE.Views.Toolbar.capTabInsert": "Inserir", + "PE.Views.Toolbar.mniCapitalizeWords": "Capitalizar cada palavra", + "PE.Views.Toolbar.mniCustomTable": "Inserir tabela personalizada", + "PE.Views.Toolbar.mniImageFromFile": "Imagem de um ficheiro", + "PE.Views.Toolbar.mniImageFromStorage": "Imagem de um armazenamento", + "PE.Views.Toolbar.mniImageFromUrl": "Imagem de um URL", + "PE.Views.Toolbar.mniLowerCase": "minúscula", + "PE.Views.Toolbar.mniSentenceCase": "Maiúscula no Início da frase.", + "PE.Views.Toolbar.mniSlideAdvanced": "Definições avançadas", + "PE.Views.Toolbar.mniSlideStandard": "Padrão (4:3)", + "PE.Views.Toolbar.mniSlideWide": "Widescreen (16:9)", + "PE.Views.Toolbar.mniToggleCase": "iNVERTER mAIÚSCULAS/mINÚSCULAS", + "PE.Views.Toolbar.mniUpperCase": "MAIÚSCULAS", + "PE.Views.Toolbar.strMenuNoFill": "Sem preenchimento", + "PE.Views.Toolbar.textAlignBottom": "Alinhar texto à parte inferior", + "PE.Views.Toolbar.textAlignCenter": "Centralizar texto", + "PE.Views.Toolbar.textAlignJust": "Justificar", + "PE.Views.Toolbar.textAlignLeft": "Alinhar texto à esquerda", + "PE.Views.Toolbar.textAlignMiddle": "Alinhar texto ao meio", + "PE.Views.Toolbar.textAlignRight": "Alinhar texto à direita", + "PE.Views.Toolbar.textAlignTop": "Alinhar texto à parte superior", + "PE.Views.Toolbar.textArrangeBack": "Enviar para plano de fundo", + "PE.Views.Toolbar.textArrangeBackward": "Enviar para trás", + "PE.Views.Toolbar.textArrangeForward": "Trazer para frente", + "PE.Views.Toolbar.textArrangeFront": "Trazer para primeiro plano", + "PE.Views.Toolbar.textBold": "Negrito", + "PE.Views.Toolbar.textColumnsCustom": "Colunas personalizadas", + "PE.Views.Toolbar.textColumnsOne": "Uma Coluna", + "PE.Views.Toolbar.textColumnsThree": "Três colunas", + "PE.Views.Toolbar.textColumnsTwo": "Duas Colunas", + "PE.Views.Toolbar.textItalic": "Itálico", + "PE.Views.Toolbar.textListSettings": "Definições da lista", + "PE.Views.Toolbar.textRecentlyUsed": "Utilizado recentemente", + "PE.Views.Toolbar.textShapeAlignBottom": "Alinhar à parte inferior", + "PE.Views.Toolbar.textShapeAlignCenter": "Alinhar ao centro", + "PE.Views.Toolbar.textShapeAlignLeft": "Alinhar à esquerda", + "PE.Views.Toolbar.textShapeAlignMiddle": "Alinhar ao meio", + "PE.Views.Toolbar.textShapeAlignRight": "Alinhar à direita", + "PE.Views.Toolbar.textShapeAlignTop": "Alinhar à parte superior", + "PE.Views.Toolbar.textShowBegin": "Mostrar do início", + "PE.Views.Toolbar.textShowCurrent": "Mostrar a partir do diapositivo atual", + "PE.Views.Toolbar.textShowPresenterView": "Mostrar vista de apresentador", + "PE.Views.Toolbar.textShowSettings": "Mostrar definições", + "PE.Views.Toolbar.textStrikeout": "Riscado", + "PE.Views.Toolbar.textSubscript": "Subscrito", + "PE.Views.Toolbar.textSuperscript": "Sobrescrito", + "PE.Views.Toolbar.textTabAnimation": "Animação", + "PE.Views.Toolbar.textTabCollaboration": "colaboração", + "PE.Views.Toolbar.textTabFile": "Ficheiro", + "PE.Views.Toolbar.textTabHome": "Base", + "PE.Views.Toolbar.textTabInsert": "Inserir", + "PE.Views.Toolbar.textTabProtect": "Proteção", + "PE.Views.Toolbar.textTabTransitions": "Transições", + "PE.Views.Toolbar.textTabView": "Visualizar", + "PE.Views.Toolbar.textTitleError": "Erro", + "PE.Views.Toolbar.textUnderline": "Sublinhado", + "PE.Views.Toolbar.tipAddSlide": "Adicionar diapositivo", + "PE.Views.Toolbar.tipBack": "Voltar", + "PE.Views.Toolbar.tipChangeCase": "Alternar maiúscula/minúscula", + "PE.Views.Toolbar.tipChangeChart": "Alterar tipo de gráfico", + "PE.Views.Toolbar.tipChangeSlide": "Alterar disposição do diapositivo", + "PE.Views.Toolbar.tipClearStyle": "Limpar estilo", + "PE.Views.Toolbar.tipColorSchemas": "Alterar esquema de cor", + "PE.Views.Toolbar.tipColumns": "Inserir colunas", + "PE.Views.Toolbar.tipCopy": "Copiar", + "PE.Views.Toolbar.tipCopyStyle": "Copiar estilo", + "PE.Views.Toolbar.tipDateTime": "Insira a data e hora atual", + "PE.Views.Toolbar.tipDecFont": "Diminuir tamanho do tipo de letra", + "PE.Views.Toolbar.tipDecPrLeft": "Diminuir recuo", + "PE.Views.Toolbar.tipEditHeader": "Editar rodapé", + "PE.Views.Toolbar.tipFontColor": "Cor do tipo de letra", + "PE.Views.Toolbar.tipFontName": "Fonte", + "PE.Views.Toolbar.tipFontSize": "Tamanho do tipo de letra", + "PE.Views.Toolbar.tipHAligh": "Alinhamento horizontal", + "PE.Views.Toolbar.tipHighlightColor": "Cor de destaque", + "PE.Views.Toolbar.tipIncFont": "Aumentar tamanho do tipo de letra", + "PE.Views.Toolbar.tipIncPrLeft": "Aumentar recuo", + "PE.Views.Toolbar.tipInsertAudio": "Inserir áudio", + "PE.Views.Toolbar.tipInsertChart": "Inserir gráfico", + "PE.Views.Toolbar.tipInsertEquation": "Inserir equação", + "PE.Views.Toolbar.tipInsertHyperlink": "Adicionar hiperligação", + "PE.Views.Toolbar.tipInsertImage": "Inserir imagem", + "PE.Views.Toolbar.tipInsertShape": "Inserir forma automática", + "PE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo", + "PE.Views.Toolbar.tipInsertTable": "Inserir tabela", + "PE.Views.Toolbar.tipInsertText": "Inserir caixa de texto", + "PE.Views.Toolbar.tipInsertTextArt": "Inserir arte de texto", + "PE.Views.Toolbar.tipInsertVideo": "Inserir vídeo", + "PE.Views.Toolbar.tipLineSpace": "Espaçamento de linha", + "PE.Views.Toolbar.tipMarkers": "Marcadores", + "PE.Views.Toolbar.tipMarkersArrow": "Marcadores de setas", + "PE.Views.Toolbar.tipMarkersCheckmark": "Marcas de verificação", + "PE.Views.Toolbar.tipMarkersDash": "Marcadores de traços", + "PE.Views.Toolbar.tipMarkersHRound": "Marcas de lista redondas vazias", + "PE.Views.Toolbar.tipMarkersStar": "Marcas em estrela", + "PE.Views.Toolbar.tipNone": "Nenhum", + "PE.Views.Toolbar.tipNumbers": "Numeração", + "PE.Views.Toolbar.tipPaste": "Colar", + "PE.Views.Toolbar.tipPreview": "Iniciar apresentação", + "PE.Views.Toolbar.tipPrint": "Imprimir", + "PE.Views.Toolbar.tipRedo": "Refazer", + "PE.Views.Toolbar.tipSave": "Salvar", + "PE.Views.Toolbar.tipSaveCoauth": "Guarde as suas alterações para que os outros utilizadores as possam ver.", + "PE.Views.Toolbar.tipShapeAlign": "Alinhar forma", + "PE.Views.Toolbar.tipShapeArrange": "Dispor forma", + "PE.Views.Toolbar.tipSlideNum": "Inserir número de diapositivo", + "PE.Views.Toolbar.tipSlideSize": "Selecionar tamanho do diapositivo", + "PE.Views.Toolbar.tipSlideTheme": "Tema do diapositivo", + "PE.Views.Toolbar.tipUndo": "Desfazer", + "PE.Views.Toolbar.tipVAligh": "Alinhamento vertical", + "PE.Views.Toolbar.tipViewSettings": "Definições de visualização", + "PE.Views.Toolbar.txtDistribHor": "Distribuir horizontalmente", + "PE.Views.Toolbar.txtDistribVert": "Distribuir verticalmente", + "PE.Views.Toolbar.txtDuplicateSlide": "Duplicar diapositivo", + "PE.Views.Toolbar.txtGroup": "Grupo", + "PE.Views.Toolbar.txtObjectsAlign": "Alinhar objetos selecionados", + "PE.Views.Toolbar.txtScheme1": "Office", + "PE.Views.Toolbar.txtScheme10": "Mediana", + "PE.Views.Toolbar.txtScheme11": "Metro", + "PE.Views.Toolbar.txtScheme12": "Módulo", + "PE.Views.Toolbar.txtScheme13": "Opulento", + "PE.Views.Toolbar.txtScheme14": "Balcão Envidraçado", + "PE.Views.Toolbar.txtScheme15": "Origem", + "PE.Views.Toolbar.txtScheme16": "Papel", + "PE.Views.Toolbar.txtScheme17": "Solstício", + "PE.Views.Toolbar.txtScheme18": "Técnica", + "PE.Views.Toolbar.txtScheme19": "Viagem", + "PE.Views.Toolbar.txtScheme2": "Escala de cinza", + "PE.Views.Toolbar.txtScheme20": "Urbano", + "PE.Views.Toolbar.txtScheme21": "Verve", + "PE.Views.Toolbar.txtScheme22": "Novo Escritório", + "PE.Views.Toolbar.txtScheme3": "Ápice", + "PE.Views.Toolbar.txtScheme4": "Aspecto", + "PE.Views.Toolbar.txtScheme5": "Cívico", + "PE.Views.Toolbar.txtScheme6": "Concurso", + "PE.Views.Toolbar.txtScheme7": "Patrimônio Líquido", + "PE.Views.Toolbar.txtScheme8": "Fluxo", + "PE.Views.Toolbar.txtScheme9": "Fundição", + "PE.Views.Toolbar.txtSlideAlign": "Alinhar ao diapositivo", + "PE.Views.Toolbar.txtUngroup": "Desagrupar", + "PE.Views.Transitions.strDelay": "Atraso", + "PE.Views.Transitions.strDuration": "Duração", + "PE.Views.Transitions.strStartOnClick": "Iniciar ao clicar", + "PE.Views.Transitions.textBlack": "Através preto", + "PE.Views.Transitions.textBottom": "Inferior", + "PE.Views.Transitions.textBottomLeft": "Inferior esquerdo", + "PE.Views.Transitions.textBottomRight": "Inferior direito", + "PE.Views.Transitions.textClock": "Relógio", + "PE.Views.Transitions.textClockwise": "Sentido horário", + "PE.Views.Transitions.textCounterclockwise": "Sentido anti-horário", + "PE.Views.Transitions.textCover": "Capa", + "PE.Views.Transitions.textFade": "Desvanecimento", + "PE.Views.Transitions.textHorizontalIn": "Horizontal para dentro", + "PE.Views.Transitions.textHorizontalOut": "Horizontal para fora", + "PE.Views.Transitions.textLeft": "Esquerda", + "PE.Views.Transitions.textNone": "Nenhum", + "PE.Views.Transitions.textPush": "Empurrar", + "PE.Views.Transitions.textRight": "Direita", + "PE.Views.Transitions.textSmoothly": "Suavemente", + "PE.Views.Transitions.textSplit": "Dividir", + "PE.Views.Transitions.textTop": "Parte superior", + "PE.Views.Transitions.textTopLeft": "Parte superior esquerda", + "PE.Views.Transitions.textTopRight": "Parte superior direita", + "PE.Views.Transitions.textUnCover": "Descobrir", + "PE.Views.Transitions.textVerticalIn": "Vertical para dentro", + "PE.Views.Transitions.textVerticalOut": "Vertical para fora", + "PE.Views.Transitions.textWedge": "Triangular", + "PE.Views.Transitions.textWipe": "Revelar", + "PE.Views.Transitions.textZoom": "Zoom", + "PE.Views.Transitions.textZoomIn": "Ampliar", + "PE.Views.Transitions.textZoomOut": "Reduzir", + "PE.Views.Transitions.textZoomRotate": "Zoom e Rotação", + "PE.Views.Transitions.txtApplyToAll": "Aplicar a todos os diapositivos", + "PE.Views.Transitions.txtParameters": "Parâmetros", + "PE.Views.Transitions.txtPreview": "Pré-visualizar", + "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Mostrar sempre a barra de ferramentas", + "PE.Views.ViewTab.textFitToSlide": "Ajustar ao diapositivo", + "PE.Views.ViewTab.textFitToWidth": "Ajustar à Largura", + "PE.Views.ViewTab.textInterfaceTheme": "Tema da interface", + "PE.Views.ViewTab.textNotes": "Notas", + "PE.Views.ViewTab.textRulers": "Réguas", + "PE.Views.ViewTab.textStatusBar": "Barra de estado", + "PE.Views.ViewTab.textZoom": "Zoom" +} \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 3e6687abd..95284f482 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -179,6 +179,7 @@ "Common.define.effectData.textSCurve1": "Curva S 1", "Common.define.effectData.textSCurve2": "Curva S 2", "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShapes": "Formas", "Common.define.effectData.textShimmer": "Cintilar", "Common.define.effectData.textShrinkTurn": "Encolher e girar", "Common.define.effectData.textSineWave": "Onda senoidal", @@ -238,7 +239,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnView": "Aberto para visualização", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Adicionar nova cor personalizada", + "Common.UI.ButtonColored.textNewColor": "Nova cor personalizada", "Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas", "Common.UI.ComboDataView.emptyComboText": "Sem estilos", @@ -293,6 +294,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Listas com marcadores automáticas", "Common.Views.AutoCorrectDialog.textBy": "Por", "Common.Views.AutoCorrectDialog.textDelete": "Excluir", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Adicionar ponto com espaço duplo", "Common.Views.AutoCorrectDialog.textFLCells": "Capitalizar a primeira letra das células da tabela", "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalizar a primeira carta de sentenças", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e caminhos de rede com hyperlinks", @@ -1293,6 +1295,7 @@ "PE.Views.Animation.textMoveLater": "Mover-se depois", "PE.Views.Animation.textMultiple": "Múltiplo", "PE.Views.Animation.textNone": "Nenhum", + "PE.Views.Animation.textNoRepeat": "(nenhum)", "PE.Views.Animation.textOnClickOf": "Em Clique de", "PE.Views.Animation.textOnClickSequence": "Em Sequência de cliques", "PE.Views.Animation.textStartAfterPrevious": "Após o anterior", @@ -2168,6 +2171,14 @@ "PE.Views.Toolbar.tipInsertVideo": "Inserir Vídeo", "PE.Views.Toolbar.tipLineSpace": "Espaçamento de linha", "PE.Views.Toolbar.tipMarkers": "Marcadores", + "PE.Views.Toolbar.tipMarkersArrow": "Balas de flecha", + "PE.Views.Toolbar.tipMarkersCheckmark": "Marcas de verificação", + "PE.Views.Toolbar.tipMarkersDash": "Marcadores de roteiro", + "PE.Views.Toolbar.tipMarkersFRhombus": "Vinhetas rômbicas cheias", + "PE.Views.Toolbar.tipMarkersFRound": "Balas redondas cheias", + "PE.Views.Toolbar.tipMarkersFSquare": "Balas quadradas cheias", + "PE.Views.Toolbar.tipMarkersHRound": "Balas redondas ocas", + "PE.Views.Toolbar.tipMarkersStar": "Balas de estrelas", "PE.Views.Toolbar.tipNumbers": "Numeração", "PE.Views.Toolbar.tipPaste": "Colar", "PE.Views.Toolbar.tipPreview": "Iniciar pré-visualização", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index c2f06ad79..a55089959 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -52,6 +52,7 @@ "Common.define.effectData.textArcDown": "Arcuire în jos", "Common.define.effectData.textArcLeft": "Arcuire spre stânga", "Common.define.effectData.textArcRight": "Arcuire spre dreapta", + "Common.define.effectData.textArcs": "Arce", "Common.define.effectData.textArcUp": "Arcuire în sus", "Common.define.effectData.textBasic": "De bază", "Common.define.effectData.textBasicSwivel": "Învârtire simplă", @@ -98,11 +99,11 @@ "Common.define.effectData.textDissolveOut": "Dizolvare spre exterior", "Common.define.effectData.textDown": "În jos", "Common.define.effectData.textDrop": "Picătură", - "Common.define.effectData.textEmphasis": "Efect de evidențiere", - "Common.define.effectData.textEntrance": "Efect de intrare", + "Common.define.effectData.textEmphasis": "Efecte de evidențiere", + "Common.define.effectData.textEntrance": "Efecte de intrare", "Common.define.effectData.textEqualTriangle": "Triunghi echilateral", "Common.define.effectData.textExciting": "Emoționant", - "Common.define.effectData.textExit": "Efect de ieșire", + "Common.define.effectData.textExit": "Efecte de ieșire", "Common.define.effectData.textExpand": "Extindere", "Common.define.effectData.textFade": "Estompare", "Common.define.effectData.textFigureFour": "Cifra 8 de patru ori", @@ -139,6 +140,7 @@ "Common.define.effectData.textIn": "În interior", "Common.define.effectData.textInFromScreenCenter": "În interior din centrul ecranului", "Common.define.effectData.textInSlightly": "Ușor în interior", + "Common.define.effectData.textInToScreenBottom": "În interior către josul ecranului", "Common.define.effectData.textInvertedSquare": "Pătrat invers", "Common.define.effectData.textInvertedTriangle": "Triunghi invers", "Common.define.effectData.textLeft": "Stânga", @@ -146,8 +148,10 @@ "Common.define.effectData.textLeftUp": "În stânga sus", "Common.define.effectData.textLighten": "Luminare", "Common.define.effectData.textLineColor": "Culoare linie", + "Common.define.effectData.textLines": "Linii", "Common.define.effectData.textLinesCurves": "Linii Curbe", "Common.define.effectData.textLoopDeLoop": "Bucle", + "Common.define.effectData.textLoops": "Bucle", "Common.define.effectData.textModerate": "Moderat", "Common.define.effectData.textNeutron": "Neutron", "Common.define.effectData.textObjectCenter": "Centrul obiectului", @@ -156,8 +160,9 @@ "Common.define.effectData.textOut": "În exterior", "Common.define.effectData.textOutFromScreenBottom": "În exterior din josul ecranului", "Common.define.effectData.textOutSlightly": "Ușor în exterior", + "Common.define.effectData.textOutToScreenCenter": "În exterior către centrul ecranului", "Common.define.effectData.textParallelogram": "Paralelogram", - "Common.define.effectData.textPath": "Cale de mișcare", + "Common.define.effectData.textPath": "Căi de mișcare", "Common.define.effectData.textPeanut": "Alună", "Common.define.effectData.textPeekIn": "Glisare rapidă spre interior", "Common.define.effectData.textPeekOut": "Glisare rapidă spre exterior", @@ -179,6 +184,7 @@ "Common.define.effectData.textSCurve1": "Curbă S1", "Common.define.effectData.textSCurve2": "Curbă S2", "Common.define.effectData.textShape": "Forma", + "Common.define.effectData.textShapes": "Forme", "Common.define.effectData.textShimmer": "Licărire", "Common.define.effectData.textShrinkTurn": "Micșorare și întoarcere", "Common.define.effectData.textSineWave": "Val sinusoidal", @@ -219,6 +225,7 @@ "Common.define.effectData.textTrapezoid": "Trapez", "Common.define.effectData.textTurnDown": "Întoarcere în jos", "Common.define.effectData.textTurnDownRight": "Întoarcere spre dreapta jos", + "Common.define.effectData.textTurns": "Curbe", "Common.define.effectData.textTurnUp": "Întoarcere în sus", "Common.define.effectData.textTurnUpRight": "Întoarcere spre dreapta sus", "Common.define.effectData.textUnderline": "Subliniat", @@ -238,7 +245,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", "Common.UI.ButtonColored.textAutoColor": "Automat", - "Common.UI.ButtonColored.textNewColor": "Adăugarea unei culori particularizate noi", + "Common.UI.ButtonColored.textNewColor": "Сuloare particularizată", "Common.UI.ComboBorderSize.txtNoBorders": "Fără borduri", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Fără borduri", "Common.UI.ComboDataView.emptyComboText": "Fără stiluri", @@ -293,6 +300,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Creare automată a listei cu marcatori", "Common.Views.AutoCorrectDialog.textBy": "După", "Common.Views.AutoCorrectDialog.textDelete": "Ștergere", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Adăugarea unui punct prin apăsarea dublă a barei de spațiu ", "Common.Views.AutoCorrectDialog.textFLCells": "Scrie cu majusculă prima litera din fiecare celulă de tabel", "Common.Views.AutoCorrectDialog.textFLSentence": "Scrie cu majusculă prima literă a propoziției", "Common.Views.AutoCorrectDialog.textHyperlink": "Căi Internet și de rețea cu hyperlink-uri", @@ -341,6 +349,7 @@ "Common.Views.Comments.textResolved": "Rezolvat", "Common.Views.Comments.textSort": "Sortare comentarii", "Common.Views.Comments.textViewResolved": "Dvs. nu aveți permisiunea de a redeschide comentariu", + "Common.Views.Comments.txtEmpty": "Nu există niciun comentariu.", "Common.Views.CopyWarningDialog.textDontShow": "Nu afișa acest mesaj din nou", "Common.Views.CopyWarningDialog.textMsg": "Operațiuni de copiere, decupare și lipire din bară de instrumente sau meniul contextual al editorului se execută numai în editorul.

Pentru copiere și lipire din sau în aplicații exterioare folosiți următoarele combinații de taste:", "Common.Views.CopyWarningDialog.textTitle": "Comenzile de copiere, decupare și lipire", @@ -1282,6 +1291,12 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Se aliniază la diapozitiv", "PE.Controllers.Viewport.textFitWidth": "Potrivire lățime", + "PE.Views.Animation.str0_5": "0.5 s (foarte repede)", + "PE.Views.Animation.str1": "1 s (Repede)", + "PE.Views.Animation.str2": "2 s (medie)", + "PE.Views.Animation.str20": "20 s (extrem de lent)", + "PE.Views.Animation.str3": "3 s (lent)", + "PE.Views.Animation.str5": "5 s (foarte lent)", "PE.Views.Animation.strDelay": "Amânare", "PE.Views.Animation.strDuration": "Durată", "PE.Views.Animation.strRepeat": "Repetare", @@ -1293,11 +1308,14 @@ "PE.Views.Animation.textMoveLater": "Mutare mai târziu", "PE.Views.Animation.textMultiple": "Multiplu", "PE.Views.Animation.textNone": "Fără", + "PE.Views.Animation.textNoRepeat": "(niciunul)", "PE.Views.Animation.textOnClickOf": "La clic pe", "PE.Views.Animation.textOnClickSequence": "Secvență în clicuri", "PE.Views.Animation.textStartAfterPrevious": "După anterioul", "PE.Views.Animation.textStartOnClick": "La clic", "PE.Views.Animation.textStartWithPrevious": "Cu anteriorul", + "PE.Views.Animation.textUntilEndOfSlide": "Până la finalul diapositivului", + "PE.Views.Animation.textUntilNextClick": "Până la următorul clic", "PE.Views.Animation.txtAddEffect": "Adăugare animație", "PE.Views.Animation.txtAnimationPane": "Panou de animație", "PE.Views.Animation.txtParameters": "Opțiuni", @@ -1522,7 +1540,7 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "Închidere meniu", "PE.Views.FileMenu.btnCreateNewCaption": "Crearea unui document nou", "PE.Views.FileMenu.btnDownloadCaption": "Descărcare ca...", - "PE.Views.FileMenu.btnExitCaption": "Ieșire", + "PE.Views.FileMenu.btnExitCaption": "Închidere", "PE.Views.FileMenu.btnFileOpenCaption": "Deschidere...", "PE.Views.FileMenu.btnHelpCaption": "Asistență...", "PE.Views.FileMenu.btnHistoryCaption": "Istoricul versiune", @@ -2168,6 +2186,15 @@ "PE.Views.Toolbar.tipInsertVideo": "Inserare video", "PE.Views.Toolbar.tipLineSpace": "Interlinie", "PE.Views.Toolbar.tipMarkers": "Marcatori", + "PE.Views.Toolbar.tipMarkersArrow": "Marcatori săgeată", + "PE.Views.Toolbar.tipMarkersCheckmark": "Marcatori simbol de bifare", + "PE.Views.Toolbar.tipMarkersDash": "Marcatori cu o liniuță", + "PE.Views.Toolbar.tipMarkersFRhombus": "Marcatori romb umplut", + "PE.Views.Toolbar.tipMarkersFRound": "Marcatori cerc umplut", + "PE.Views.Toolbar.tipMarkersFSquare": "Marcatori pătrat umplut", + "PE.Views.Toolbar.tipMarkersHRound": "Marcatori cerc gol ", + "PE.Views.Toolbar.tipMarkersStar": "Marcatori stele", + "PE.Views.Toolbar.tipNone": "Fără", "PE.Views.Toolbar.tipNumbers": "Numerotare", "PE.Views.Toolbar.tipPaste": "Lipire", "PE.Views.Toolbar.tipPreview": "Pornire expunere diapozitive", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 15cb2420f..42f5e198d 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -52,6 +52,7 @@ "Common.define.effectData.textArcDown": "Вниз по дуге", "Common.define.effectData.textArcLeft": "Влево по дуге", "Common.define.effectData.textArcRight": "Вправо по дуге", + "Common.define.effectData.textArcs": "Дуги", "Common.define.effectData.textArcUp": "Вверх по дуге", "Common.define.effectData.textBasic": "Базовые", "Common.define.effectData.textBasicSwivel": "Простое вращение", @@ -98,11 +99,11 @@ "Common.define.effectData.textDissolveOut": "Растворение", "Common.define.effectData.textDown": "Вниз", "Common.define.effectData.textDrop": "Падение", - "Common.define.effectData.textEmphasis": "Эффект выделения", - "Common.define.effectData.textEntrance": "Эффект входа", + "Common.define.effectData.textEmphasis": "Эффекты выделения", + "Common.define.effectData.textEntrance": "Эффекты входа", "Common.define.effectData.textEqualTriangle": "Равносторонний треугольник", "Common.define.effectData.textExciting": "Сложные", - "Common.define.effectData.textExit": "Эффект выхода", + "Common.define.effectData.textExit": "Эффекты выхода", "Common.define.effectData.textExpand": "Развертывание", "Common.define.effectData.textFade": "Выцветание", "Common.define.effectData.textFigureFour": "Удвоенный знак 8", @@ -139,6 +140,7 @@ "Common.define.effectData.textIn": "Внутрь", "Common.define.effectData.textInFromScreenCenter": "Увеличение из центра экрана", "Common.define.effectData.textInSlightly": "Небольшое увеличение", + "Common.define.effectData.textInToScreenBottom": "Увеличение к нижней части экрана", "Common.define.effectData.textInvertedSquare": "Квадрат наизнанку", "Common.define.effectData.textInvertedTriangle": "Треугольник наизнанку", "Common.define.effectData.textLeft": "Влево", @@ -146,8 +148,10 @@ "Common.define.effectData.textLeftUp": "Влево и вверх", "Common.define.effectData.textLighten": "Высветление", "Common.define.effectData.textLineColor": "Цвет линии", + "Common.define.effectData.textLines": "Линии", "Common.define.effectData.textLinesCurves": "Линии и кривые", "Common.define.effectData.textLoopDeLoop": "Петля", + "Common.define.effectData.textLoops": "Петли", "Common.define.effectData.textModerate": "Средние", "Common.define.effectData.textNeutron": "Нейтрон", "Common.define.effectData.textObjectCenter": "Центр объекта", @@ -156,8 +160,9 @@ "Common.define.effectData.textOut": "Наружу", "Common.define.effectData.textOutFromScreenBottom": "Уменьшение из нижней части экрана", "Common.define.effectData.textOutSlightly": "Небольшое уменьшение", + "Common.define.effectData.textOutToScreenCenter": "Уменьшение к центру экрана", "Common.define.effectData.textParallelogram": "Параллелограмм", - "Common.define.effectData.textPath": "Путь перемещения", + "Common.define.effectData.textPath": "Пути перемещения", "Common.define.effectData.textPeanut": "Земляной орех", "Common.define.effectData.textPeekIn": "Сбор", "Common.define.effectData.textPeekOut": "Задвигание", @@ -179,6 +184,7 @@ "Common.define.effectData.textSCurve1": "Синусоида 1", "Common.define.effectData.textSCurve2": "Синусоида 2", "Common.define.effectData.textShape": "Фигура", + "Common.define.effectData.textShapes": "Фигуры", "Common.define.effectData.textShimmer": "Мерцание", "Common.define.effectData.textShrinkTurn": "Уменьшение с поворотом", "Common.define.effectData.textSineWave": "Частая синусоида", @@ -219,6 +225,7 @@ "Common.define.effectData.textTrapezoid": "Трапеция", "Common.define.effectData.textTurnDown": "Вправо и вниз", "Common.define.effectData.textTurnDownRight": "Вниз и вправо", + "Common.define.effectData.textTurns": "Повороты", "Common.define.effectData.textTurnUp": "Вправо и вверх", "Common.define.effectData.textTurnUpRight": "Вверх и вправо", "Common.define.effectData.textUnderline": "Подчёркивание", @@ -293,6 +300,7 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Стили маркированных списков", "Common.Views.AutoCorrectDialog.textBy": "На", "Common.Views.AutoCorrectDialog.textDelete": "Удалить", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Добавлять точку двойным пробелом", "Common.Views.AutoCorrectDialog.textFLCells": "Делать первые буквы ячеек таблиц прописными", "Common.Views.AutoCorrectDialog.textFLSentence": "Делать первые буквы предложений прописными", "Common.Views.AutoCorrectDialog.textHyperlink": "Адреса в Интернете и сетевые пути гиперссылками", @@ -341,6 +349,7 @@ "Common.Views.Comments.textResolved": "Решено", "Common.Views.Comments.textSort": "Сортировать комментарии", "Common.Views.Comments.textViewResolved": "У вас нет прав для повторного открытия комментария", + "Common.Views.Comments.txtEmpty": "В документе нет комментариев.", "Common.Views.CopyWarningDialog.textDontShow": "Больше не показывать это сообщение", "Common.Views.CopyWarningDialog.textMsg": "Операции копирования, вырезания и вставки можно выполнить с помощью кнопок на панели инструментов и команд контекстного меню только в этой вкладке редактора.

Для копирования в другие приложения и вставки из них используйте следующие сочетания клавиш:", "Common.Views.CopyWarningDialog.textTitle": "Операции копирования, вырезания и вставки", @@ -1282,6 +1291,12 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Дзета", "PE.Controllers.Viewport.textFitPage": "По размеру слайда", "PE.Controllers.Viewport.textFitWidth": "По ширине", + "PE.Views.Animation.str0_5": "0.5 с (очень быстро)", + "PE.Views.Animation.str1": "1 s (быстро)", + "PE.Views.Animation.str2": "2 c (средне)", + "PE.Views.Animation.str20": "20 с (крайне медленно)", + "PE.Views.Animation.str3": "3 с (медленно)", + "PE.Views.Animation.str5": "5 c (очень медленно)", "PE.Views.Animation.strDelay": "Задержка", "PE.Views.Animation.strDuration": "Длит.", "PE.Views.Animation.strRepeat": "Повтор", @@ -1293,11 +1308,14 @@ "PE.Views.Animation.textMoveLater": "Переместить вперед", "PE.Views.Animation.textMultiple": "Несколько", "PE.Views.Animation.textNone": "Нет", + "PE.Views.Animation.textNoRepeat": "(нет)", "PE.Views.Animation.textOnClickOf": "По щелчку на", "PE.Views.Animation.textOnClickSequence": "По последовательности щелчков", "PE.Views.Animation.textStartAfterPrevious": "После предыдущего", "PE.Views.Animation.textStartOnClick": "По щелчку", "PE.Views.Animation.textStartWithPrevious": "Вместе с предыдущим", + "PE.Views.Animation.textUntilEndOfSlide": "До окончания слайда", + "PE.Views.Animation.textUntilNextClick": "До следующего щелчка", "PE.Views.Animation.txtAddEffect": "Добавить анимацию", "PE.Views.Animation.txtAnimationPane": "Область анимации", "PE.Views.Animation.txtParameters": "Параметры", @@ -1522,7 +1540,7 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню", "PE.Views.FileMenu.btnCreateNewCaption": "Создать новую", "PE.Views.FileMenu.btnDownloadCaption": "Скачать как...", - "PE.Views.FileMenu.btnExitCaption": "Выйти", + "PE.Views.FileMenu.btnExitCaption": "Закрыть", "PE.Views.FileMenu.btnFileOpenCaption": "Открыть...", "PE.Views.FileMenu.btnHelpCaption": "Справка...", "PE.Views.FileMenu.btnHistoryCaption": "История версий", @@ -2168,6 +2186,15 @@ "PE.Views.Toolbar.tipInsertVideo": "Вставить видео", "PE.Views.Toolbar.tipLineSpace": "Междустрочный интервал", "PE.Views.Toolbar.tipMarkers": "Маркированный список", + "PE.Views.Toolbar.tipMarkersArrow": "Маркеры-стрелки", + "PE.Views.Toolbar.tipMarkersCheckmark": "Маркеры-галочки", + "PE.Views.Toolbar.tipMarkersDash": "Маркеры-тире", + "PE.Views.Toolbar.tipMarkersFRhombus": "Заполненные ромбовидные маркеры", + "PE.Views.Toolbar.tipMarkersFRound": "Заполненные круглые маркеры", + "PE.Views.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры", + "PE.Views.Toolbar.tipMarkersHRound": "Пустые круглые маркеры", + "PE.Views.Toolbar.tipMarkersStar": "Маркеры-звездочки", + "PE.Views.Toolbar.tipNone": "Нет", "PE.Views.Toolbar.tipNumbers": "Нумерованный список", "PE.Views.Toolbar.tipPaste": "Вставить", "PE.Views.Toolbar.tipPreview": "Начать показ слайдов", diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json index 1cca542b9..f18fa07d8 100644 --- a/apps/presentationeditor/main/locale/sk.json +++ b/apps/presentationeditor/main/locale/sk.json @@ -6,37 +6,240 @@ "Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Upozornenie", "Common.define.chartData.textArea": "Plošný graf", + "Common.define.chartData.textAreaStacked": "Skladaná oblasť", "Common.define.chartData.textAreaStackedPer": "100% stohovaná oblasť", "Common.define.chartData.textBar": "Pruhový graf", "Common.define.chartData.textBarNormal": "Klastrovaný stĺpec", "Common.define.chartData.textBarNormal3d": "3-D klastrovaný stĺpec", "Common.define.chartData.textBarNormal3dPerspective": "3D stĺpec", + "Common.define.chartData.textBarStacked": "Skladaný stĺpec", "Common.define.chartData.textBarStacked3d": "3-D stohovaný stĺpec", "Common.define.chartData.textBarStackedPer": "100% stohovaný stĺpec", "Common.define.chartData.textBarStackedPer3d": "3-D 100% stohovaný stĺpec", "Common.define.chartData.textCharts": "Grafy", "Common.define.chartData.textColumn": "Stĺpec", "Common.define.chartData.textCombo": "Kombo", + "Common.define.chartData.textComboAreaBar": "Skladaná oblasť - zoskupené", "Common.define.chartData.textComboBarLine": "Zoskupený stĺpec - riadok", "Common.define.chartData.textComboBarLineSecondary": "Zoskupený stĺpec - čiara na sekundárnej osi", "Common.define.chartData.textComboCustom": "Vlastná kombinácia", "Common.define.chartData.textDoughnut": "Šiška", "Common.define.chartData.textHBarNormal": "Zoskupená lišta", "Common.define.chartData.textHBarNormal3d": "3-D zoskupená lišta", + "Common.define.chartData.textHBarStacked": "Skladaný bar", "Common.define.chartData.textHBarStacked3d": "3-D zoskupená lišta", "Common.define.chartData.textHBarStackedPer": "100% stohovaná lišta", "Common.define.chartData.textHBarStackedPer3d": "3-D 100% stohovaná lišta", "Common.define.chartData.textLine": "Čiara/líniový graf", "Common.define.chartData.textLine3d": "3-D línia", + "Common.define.chartData.textLineMarker": "Líniový so značkami", + "Common.define.chartData.textLineStacked": "Skladaná linka", + "Common.define.chartData.textLineStackedMarker": "Skladaná linka so značkami", "Common.define.chartData.textLineStackedPer": "100% stohovaná čiara", "Common.define.chartData.textLineStackedPerMarker": "100% stohovaná línia so značkami", "Common.define.chartData.textPie": "Koláčový graf", "Common.define.chartData.textPie3d": "3-D koláč", "Common.define.chartData.textPoint": "Bodový graf", + "Common.define.chartData.textScatter": "Bodový", + "Common.define.chartData.textScatterLine": "Bodový s rovnými linkami", + "Common.define.chartData.textScatterLineMarker": "Bodový s rovnými linkami a značkami", + "Common.define.chartData.textScatterSmooth": "Bodový s vyhladenými linkami", + "Common.define.chartData.textScatterSmoothMarker": "Bodový s vyhladenými linkami a značkami", "Common.define.chartData.textStock": "Akcie/burzový graf", "Common.define.chartData.textSurface": "Povrch", + "Common.define.effectData.textAcross": "Naprieč", + "Common.define.effectData.textAppear": "Objaviť sa ", + "Common.define.effectData.textArcDown": "Oblúk dole", + "Common.define.effectData.textArcLeft": "Oblúk vľavo", + "Common.define.effectData.textArcRight": "Oblúk vpravo", + "Common.define.effectData.textArcUp": "Oblúk hore", + "Common.define.effectData.textBasic": "Základný", + "Common.define.effectData.textBasicSwivel": "Základný otočný", + "Common.define.effectData.textBasicZoom": "Základný priblíženie", + "Common.define.effectData.textBean": "Fazuľa", + "Common.define.effectData.textBlinds": "Žalúzie", + "Common.define.effectData.textBlink": "Žmurknutie", + "Common.define.effectData.textBoldFlash": "Záblesk tučne", + "Common.define.effectData.textBoldReveal": "Zobrazenie tučne", + "Common.define.effectData.textBoomerang": "Bumerang", + "Common.define.effectData.textBounce": "Odraz", + "Common.define.effectData.textBounceLeft": "Odraz vľavo", + "Common.define.effectData.textBounceRight": "Odraz vpravo", + "Common.define.effectData.textBox": "Schránka", + "Common.define.effectData.textBrushColor": "Farba Štetca", + "Common.define.effectData.textCenterRevolve": "Rotácia okolo stredu", + "Common.define.effectData.textCheckerboard": "Šachovnica", + "Common.define.effectData.textCircle": "Kruh", + "Common.define.effectData.textCollapse": "Stiahnuť/zbaliť/zvinúť", + "Common.define.effectData.textColorPulse": "Farebný pulz", + "Common.define.effectData.textComplementaryColor": "Doplnková farba", + "Common.define.effectData.textComplementaryColor2": "Doplnková farba 2", + "Common.define.effectData.textCompress": "Komprimovať", + "Common.define.effectData.textContrast": "Kontrast", + "Common.define.effectData.textContrastingColor": "Kontrastná farba", + "Common.define.effectData.textCredits": "Poďakovanie", + "Common.define.effectData.textCrescentMoon": "Polmesiac", + "Common.define.effectData.textCurveDown": "Krivka dole", + "Common.define.effectData.textCurvedSquare": "Zaoblený štvorec", + "Common.define.effectData.textCurvedX": "Zakrivené X", + "Common.define.effectData.textCurvyLeft": "Vývrtka doľava", + "Common.define.effectData.textCurvyRight": "Vývrtka doprava", + "Common.define.effectData.textCurvyStar": "Zakrivená hviezda", + "Common.define.effectData.textCustomPath": "Užívateľsky určená cesta", + "Common.define.effectData.textCuverUp": "Krivka hore", + "Common.define.effectData.textDarken": "Tmavnutie", + "Common.define.effectData.textDecayingWave": "Rozpadajúca sa vlna", + "Common.define.effectData.textDesaturate": "Do čiernobielej", + "Common.define.effectData.textDiagonalDownRight": "Diagonálne vpravo dole", + "Common.define.effectData.textDiagonalUpRight": "Diagonálne vpravo hore", + "Common.define.effectData.textDiamond": "Diamant", + "Common.define.effectData.textDisappear": "Zmiznúť", + "Common.define.effectData.textDissolveIn": "Rozpustiť dovnútra", + "Common.define.effectData.textDissolveOut": "Rozpustiť do vonkajška", + "Common.define.effectData.textDown": "Dole", + "Common.define.effectData.textDrop": "Zahodiť", + "Common.define.effectData.textEmphasis": "Zdôrazňujúci efekt", + "Common.define.effectData.textEntrance": "Vstupný efekt", + "Common.define.effectData.textEqualTriangle": "Rovnoramenný trojuholník ", + "Common.define.effectData.textExciting": "Vzrušujúci", + "Common.define.effectData.textExit": "Efekt ukončenia", + "Common.define.effectData.textExpand": "Expandovať/rozšíriť", + "Common.define.effectData.textFade": "Vyblednúť", + "Common.define.effectData.textFigureFour": "Znásobená osmička", + "Common.define.effectData.textFillColor": "Vyplniť farbou", + "Common.define.effectData.textFlip": "Prevrátiť", + "Common.define.effectData.textFloat": "Plávať", + "Common.define.effectData.textFloatDown": "Plávať dole", + "Common.define.effectData.textFloatIn": "Plávať do", + "Common.define.effectData.textFloatOut": "Plávať von", + "Common.define.effectData.textFloatUp": "Plávať hore", + "Common.define.effectData.textFlyIn": "Priletieť", + "Common.define.effectData.textFlyOut": "Odletieť", + "Common.define.effectData.textFontColor": "Farba písma", + "Common.define.effectData.textFootball": "Futbal", + "Common.define.effectData.textFromBottom": "Zdola", + "Common.define.effectData.textFromBottomLeft": "Zľava dole", + "Common.define.effectData.textFromBottomRight": "Sprava dole", + "Common.define.effectData.textFromLeft": "Zľava", + "Common.define.effectData.textFromRight": "Sprava", + "Common.define.effectData.textFromTop": "Zhora ", + "Common.define.effectData.textFromTopLeft": "Zľava hore", + "Common.define.effectData.textFromTopRight": "Sprava hore", + "Common.define.effectData.textFunnel": "Lievik", + "Common.define.effectData.textGrowShrink": "Rast/Zmenšenie", + "Common.define.effectData.textGrowTurn": "Narásť a otočiť", + "Common.define.effectData.textGrowWithColor": "Nárast so zmenou farby", + "Common.define.effectData.textHeart": "Srdce", + "Common.define.effectData.textHeartbeat": "Úder srdca", + "Common.define.effectData.textHexagon": "Šesťuholník", + "Common.define.effectData.textHorizontal": "Vodorovný", + "Common.define.effectData.textHorizontalFigure": "Ležatá osmička", + "Common.define.effectData.textHorizontalIn": "Horizontálne dnu", + "Common.define.effectData.textHorizontalOut": "Horizontálne von", + "Common.define.effectData.textIn": "Dnu", + "Common.define.effectData.textInFromScreenCenter": "Dnu zo stredu obrazovky", + "Common.define.effectData.textInSlightly": "Dnu mierne", + "Common.define.effectData.textInvertedSquare": "Prevrátený štvorec", + "Common.define.effectData.textInvertedTriangle": "Prevrátený trojuholník", + "Common.define.effectData.textLeft": "Vľavo", + "Common.define.effectData.textLeftDown": "Vľavo dole", + "Common.define.effectData.textLeftUp": "Vľavo hore", + "Common.define.effectData.textLighten": "Zosvetliť", + "Common.define.effectData.textLineColor": "Farba ohraničenia", + "Common.define.effectData.textLinesCurves": "Krivky čiar", + "Common.define.effectData.textLoopDeLoop": "Do slučky", + "Common.define.effectData.textModerate": "Primeraný/pomerne malý", + "Common.define.effectData.textNeutron": "Neutron", + "Common.define.effectData.textObjectCenter": "Stred objektu", + "Common.define.effectData.textObjectColor": "Farba objektu", + "Common.define.effectData.textOctagon": "Osemuholník", + "Common.define.effectData.textOut": "Von", + "Common.define.effectData.textOutFromScreenBottom": "Preč cez dolnú časť obrazovky", + "Common.define.effectData.textOutSlightly": "Mierne von", + "Common.define.effectData.textParallelogram": "Rovnobežník", + "Common.define.effectData.textPath": "Trasa pohybu", + "Common.define.effectData.textPeanut": "Búrsky oriešok", + "Common.define.effectData.textPeekIn": "Prilietnutie", + "Common.define.effectData.textPeekOut": "Odlietnutie", + "Common.define.effectData.textPentagon": "Päťuholník", + "Common.define.effectData.textPinwheel": "Veterník", + "Common.define.effectData.textPlus": "Plus", + "Common.define.effectData.textPointStar": "Hviezda s lúčmi", + "Common.define.effectData.textPointStar4": "4 Cípa hviezda", + "Common.define.effectData.textPointStar5": "5 Cípa hviezda", + "Common.define.effectData.textPointStar6": "6 Cípa hviezda", + "Common.define.effectData.textPointStar8": "8 Cípa hviezda", + "Common.define.effectData.textPulse": "Pulz", + "Common.define.effectData.textRandomBars": "Náhodné pruhy", + "Common.define.effectData.textRight": "Vpravo", + "Common.define.effectData.textRightDown": "Vpravo dole", + "Common.define.effectData.textRightTriangle": "Pravý trojuholník", + "Common.define.effectData.textRightUp": "Vpravo hore", + "Common.define.effectData.textRiseUp": "Stúpať", + "Common.define.effectData.textSCurve1": "S Krivka 1", + "Common.define.effectData.textSCurve2": "S Krivka 2", + "Common.define.effectData.textShape": "Tvar", + "Common.define.effectData.textShapes": "Tvary", + "Common.define.effectData.textShimmer": "Trblietať sa", + "Common.define.effectData.textShrinkTurn": "Zmenšiť a otočiť", + "Common.define.effectData.textSineWave": "Sínusová vlna", + "Common.define.effectData.textSinkDown": "Potopenie", + "Common.define.effectData.textSlideCenter": "Stred slajdu", + "Common.define.effectData.textSpecial": "Špeciálny", + "Common.define.effectData.textSpin": "Točiť", + "Common.define.effectData.textSpinner": "Odstredivka", + "Common.define.effectData.textSpiralIn": "Špirála", + "Common.define.effectData.textSpiralLeft": "Vľavo do špirály", + "Common.define.effectData.textSpiralOut": "Von do špirály", + "Common.define.effectData.textSpiralRight": "Vpravo do špirály", + "Common.define.effectData.textSplit": "Rozdeliť", + "Common.define.effectData.textSpoke1": "1 Lúč", + "Common.define.effectData.textSpoke2": "2 Lúče", + "Common.define.effectData.textSpoke3": "3 Lúče", + "Common.define.effectData.textSpoke4": "4 Lúče", + "Common.define.effectData.textSpoke8": "8 Lúčov", + "Common.define.effectData.textSpring": "Pružina", + "Common.define.effectData.textSquare": "Štvorec", + "Common.define.effectData.textStairsDown": "Po schodoch dole", + "Common.define.effectData.textStretch": "Roztiahnuť", + "Common.define.effectData.textStrips": "Prúžky", + "Common.define.effectData.textSubtle": "Jemné", + "Common.define.effectData.textSwivel": "Otočný", + "Common.define.effectData.textSwoosh": "Vlnovka", + "Common.define.effectData.textTeardrop": "Slza", + "Common.define.effectData.textTeeter": "Hojdačka", + "Common.define.effectData.textToBottom": "Dole", + "Common.define.effectData.textToBottomLeft": "Dole vľavo", + "Common.define.effectData.textToBottomRight": "Dole v pravo", + "Common.define.effectData.textToLeft": "Doľava", + "Common.define.effectData.textToRight": "Doprava", + "Common.define.effectData.textToTop": "Hore", + "Common.define.effectData.textToTopLeft": "Hore vľavo", + "Common.define.effectData.textToTopRight": "Hore vpravo", + "Common.define.effectData.textTransparency": "Priehľadnosť", + "Common.define.effectData.textTrapezoid": "Lichobežník", + "Common.define.effectData.textTurnDown": "Otočiť dole", + "Common.define.effectData.textTurnDownRight": "Otočiť vpravo dole", + "Common.define.effectData.textTurnUp": "Prevrátiť hore", + "Common.define.effectData.textTurnUpRight": "Prevrátiť vpravo", + "Common.define.effectData.textUnderline": "Podčiarknuť", + "Common.define.effectData.textUp": "Hore", + "Common.define.effectData.textVertical": "Zvislý", + "Common.define.effectData.textVerticalFigure": "Vertikálna osmička 8", + "Common.define.effectData.textVerticalIn": "Vertikálne dnu", + "Common.define.effectData.textVerticalOut": "Vertikálne von", + "Common.define.effectData.textWave": "Vlnovka", + "Common.define.effectData.textWedge": "Konjunkcia", + "Common.define.effectData.textWheel": "Koleso", + "Common.define.effectData.textWhip": "Bič", + "Common.define.effectData.textWipe": "Rozotrieť", + "Common.define.effectData.textZigzag": "Cikcak", + "Common.define.effectData.textZoom": "Priblíženie", + "Common.Translation.warnFileLocked": "Súbor je upravovaný v inej aplikácií. Môžete pokračovať v úpravách a uložiť ho ako kópiu.", "Common.Translation.warnFileLockedBtnEdit": "Vytvoriť kópiu", + "Common.Translation.warnFileLockedBtnView": "Otvoriť pre náhľad", "Common.UI.ButtonColored.textAutoColor": "Automaticky", + "Common.UI.ButtonColored.textNewColor": "Pridať novú vlastnú farbu", "Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania", "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly", @@ -46,6 +249,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nový", "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez farby", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Skryť heslo", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Zobraziť heslo", "Common.UI.SearchDialog.textHighlight": "Zvýrazniť výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovať veľkosť písmen", "Common.UI.SearchDialog.textReplaceDef": "Zadať náhradný text", @@ -60,7 +265,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Dokument bol zmenený ďalším používateľom.
Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.", "Common.UI.ThemeColorPalette.textStandartColors": "Štandardné farby", "Common.UI.ThemeColorPalette.textThemeColors": "Farebné témy", + "Common.UI.Themes.txtThemeClassicLight": "Štandardná svetlosť", "Common.UI.Themes.txtThemeDark": "Tmavý", + "Common.UI.Themes.txtThemeLight": "Svetlý", "Common.UI.Window.cancelButtonText": "Zrušiť", "Common.UI.Window.closeButtonText": "Zatvoriť", "Common.UI.Window.noButtonText": "Nie", @@ -82,24 +289,50 @@ "Common.Views.About.txtVersion": "Verzia", "Common.Views.AutoCorrectDialog.textAdd": "Pridať", "Common.Views.AutoCorrectDialog.textApplyText": "Aplikujte počas písania", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorekcia textu", "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformátovať počas písania", "Common.Views.AutoCorrectDialog.textBulleted": "Automatické zoznamy s odrážkami", "Common.Views.AutoCorrectDialog.textBy": "Od", "Common.Views.AutoCorrectDialog.textDelete": "Vymazať", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Pridaj interval s dvojitou medzerou", + "Common.Views.AutoCorrectDialog.textFLCells": "Prvé písmeno v obsahu buniek tabuľky meniť na veľké", + "Common.Views.AutoCorrectDialog.textFLSentence": "Veľlé písmeno na začiatku vety", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a sieťové prístupy s hypertextovými odkazmi", "Common.Views.AutoCorrectDialog.textHyphens": "Rozdeľovníky (--) s pomlčkou (-)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autokorekcia pre matematiku", "Common.Views.AutoCorrectDialog.textNumbered": "Automatické očíslované zoznamy ", "Common.Views.AutoCorrectDialog.textQuotes": "\"Rovné úvodzovky\" s \"chytrými úvodzovkami\"", + "Common.Views.AutoCorrectDialog.textRecognized": "Uznané funkcie", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Nasledujúce výrazy sú rozpoznané ako matematické funkcie. Nebudú aplikované pravidlá týkajúce sa veľkých a malých písmen.", + "Common.Views.AutoCorrectDialog.textReplace": "Nahradiť", + "Common.Views.AutoCorrectDialog.textReplaceText": "Nahrádzať počas písania", + "Common.Views.AutoCorrectDialog.textReplaceType": "Nahrádzať text počas písania", + "Common.Views.AutoCorrectDialog.textReset": "Obnoviť", + "Common.Views.AutoCorrectDialog.textResetAll": "Obnoviť pôvodné nastavenia", + "Common.Views.AutoCorrectDialog.textRestore": "Obnoviť", "Common.Views.AutoCorrectDialog.textTitle": "Automatická oprava", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Uznané funkcie musia obsahovať iba písmená A až Z, horný index alebo dolný index.", "Common.Views.AutoCorrectDialog.textWarnResetRec": "Akýkoľvek vami pridaný výraz bude odstránený a tie, ktoré ste odstránili, budú obnovené. Chcete pokračovať?", + "Common.Views.AutoCorrectDialog.warnReplace": "Samooprava pre %1 už existuje. Chcete ju nahradiť?", "Common.Views.AutoCorrectDialog.warnReset": "Akákoľvek vami pridaná automatická oprava bude odstránená a zmeny budú vrátené na pôvodné hodnoty. Chcete pokračovať?", + "Common.Views.AutoCorrectDialog.warnRestore": "Samooprava pre %1 bude resetovaná na pôvodnú hodnotu. Chcete pokračovať?", "Common.Views.Chat.textSend": "Poslať", + "Common.Views.Comments.mniAuthorAsc": "Autor A až Z", + "Common.Views.Comments.mniAuthorDesc": "Autor Z až A", + "Common.Views.Comments.mniDateAsc": "Najstarší", + "Common.Views.Comments.mniDateDesc": "Najnovší", + "Common.Views.Comments.mniFilterGroups": "Filtrovať podľa skupiny", + "Common.Views.Comments.mniPositionAsc": "Zhora", + "Common.Views.Comments.mniPositionDesc": "Zdola", "Common.Views.Comments.textAdd": "Pridať", "Common.Views.Comments.textAddComment": "Pridať komentár", "Common.Views.Comments.textAddCommentToDoc": "Pridať komentár k dokumentu", "Common.Views.Comments.textAddReply": "Pridať odpoveď", + "Common.Views.Comments.textAll": "Všetko", "Common.Views.Comments.textAnonym": "Návštevník/Hosť", "Common.Views.Comments.textCancel": "Zrušiť", "Common.Views.Comments.textClose": "Zatvoriť", + "Common.Views.Comments.textClosePanel": "Zavrieť komentáre", "Common.Views.Comments.textComments": "Komentáre", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Zadať svoj komentár tu", @@ -108,6 +341,8 @@ "Common.Views.Comments.textReply": "Odpovedať", "Common.Views.Comments.textResolve": "Vyriešiť", "Common.Views.Comments.textResolved": "Vyriešené", + "Common.Views.Comments.textSort": "Triediť komentáre", + "Common.Views.Comments.textViewResolved": "Nemáte povolenie pre opätovné otvorenie komentáru", "Common.Views.CopyWarningDialog.textDontShow": "Neukazovať túto správu znova", "Common.Views.CopyWarningDialog.textMsg": "Kopírovať, vystrihovať a priliepať pomocou tlačidiel panela nástrojov editora a kontextovej ponuky sa vykonajú iba v rámci tejto karty editora.

Ak chcete kopírovať alebo priliepať do alebo z aplikácií mimo editora, použite nasledujúce klávesové skratky: ", "Common.Views.CopyWarningDialog.textTitle": "Akcia kopírovať, vystrihnúť a prilepiť", @@ -119,12 +354,15 @@ "Common.Views.ExternalDiagramEditor.textClose": "Zatvoriť", "Common.Views.ExternalDiagramEditor.textSave": "Uložiť a Zatvoriť", "Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu", - "Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.", + "Common.Views.Header.labelCoUsersDescr": "Používatelia, ktorí súbor upravujú:", + "Common.Views.Header.textAddFavorite": "Označiť ako obľúbené", "Common.Views.Header.textAdvSettings": "Pokročilé nastavenia", - "Common.Views.Header.textBack": "Prejsť do Dokumentov", + "Common.Views.Header.textBack": "Otvoriť umiestnenie súboru", "Common.Views.Header.textCompactView": "Skryť panel s nástrojmi", "Common.Views.Header.textHideLines": "Skryť pravítka", + "Common.Views.Header.textHideNotes": "Skryť poznámky", "Common.Views.Header.textHideStatusBar": "Schovať stavový riadok", + "Common.Views.Header.textRemoveFavorite": "Odstrániť z obľúbených", "Common.Views.Header.textSaveBegin": "Ukladanie ...", "Common.Views.Header.textSaveChanged": "Modifikovaný", "Common.Views.Header.textSaveEnd": "Všetky zmeny boli uložené", @@ -137,11 +375,17 @@ "Common.Views.Header.tipRedo": "Opakovať", "Common.Views.Header.tipSave": "Uložiť", "Common.Views.Header.tipUndo": "Krok späť", + "Common.Views.Header.tipUndock": "Oddeliť do samostatného okna", "Common.Views.Header.tipViewSettings": "Zobraziť nastavenia", "Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom", "Common.Views.Header.txtAccessRights": "Zmeniť prístupové práva", "Common.Views.Header.txtRename": "Premenovať", "Common.Views.History.textCloseHistory": "Zatvoriť históriu", + "Common.Views.History.textHide": "Stiahnuť/zbaliť/zvinúť", + "Common.Views.History.textHideAll": "Skryť podrobné zmeny", + "Common.Views.History.textRestore": "Obnoviť", + "Common.Views.History.textShow": "Expandovať/rozšíriť", + "Common.Views.History.textShowAll": "Zobraziť detailné zmeny", "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Vložte obrázok URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje", @@ -155,24 +399,30 @@ "Common.Views.InsertTableDialog.txtTitleSplit": "Rozdeliť bunku", "Common.Views.LanguageDialog.labelSelect": "Vybrať jazyk dokumentu", "Common.Views.ListSettingsDialog.textBulleted": "S odrážkami", + "Common.Views.ListSettingsDialog.textNumbering": "Číslovaný", "Common.Views.ListSettingsDialog.tipChange": "Zmeniť odrážku", "Common.Views.ListSettingsDialog.txtBullet": "Odrážka", "Common.Views.ListSettingsDialog.txtColor": "Farba", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nová odrážka", "Common.Views.ListSettingsDialog.txtNone": "žiadny", "Common.Views.ListSettingsDialog.txtOfText": "% textu", "Common.Views.ListSettingsDialog.txtSize": "Veľkosť", "Common.Views.ListSettingsDialog.txtStart": "Začať na", "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", + "Common.Views.ListSettingsDialog.txtTitle": "Nastavenia zoznamu", "Common.Views.ListSettingsDialog.txtType": "Typ", "Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor", "Common.Views.OpenDialog.txtEncoding": "Kódovanie", "Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.", "Common.Views.OpenDialog.txtOpenFile": "Zadajte heslo na otvorenie súboru", "Common.Views.OpenDialog.txtPassword": "Heslo", + "Common.Views.OpenDialog.txtProtected": "Po zadaní hesla a otvorení súboru bude súčasné heslo k súboru resetované.", "Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností", "Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor", + "Common.Views.PasswordDialog.txtDescription": "Nastaviť heslo na ochranu tohto dokumentu", "Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú", "Common.Views.PasswordDialog.txtPassword": "Heslo", + "Common.Views.PasswordDialog.txtRepeat": "Zopakujte heslo", "Common.Views.PasswordDialog.txtTitle": "Nastaviť heslo", "Common.Views.PasswordDialog.txtWarning": "Upozornenie: Ak stratíte alebo zabudnete heslo, nemožno ho obnoviť. Uschovajte ho na bezpečnom mieste.", "Common.Views.PluginDlg.textLoading": "Nahrávanie", @@ -196,11 +446,22 @@ "Common.Views.ReviewChanges.hintNext": "K ďalšej zmene", "Common.Views.ReviewChanges.hintPrev": "K predošlej zmene", "Common.Views.ReviewChanges.strFast": "Rýchly", + "Common.Views.ReviewChanges.strFastDesc": "Spoločné úpravy v reálnom čase. Všetky zmeny sú ukladané automaticky.", "Common.Views.ReviewChanges.strStrict": "Prísny", + "Common.Views.ReviewChanges.strStrictDesc": "Pre synchronizáciu zmien, ktoré ste urobili vy a ostatný, použite tlačítko \"Uložiť\".", "Common.Views.ReviewChanges.tipAcceptCurrent": "Akceptovať aktuálnu zmenu", + "Common.Views.ReviewChanges.tipCoAuthMode": "Nastaviť mód spoločných úprav", + "Common.Views.ReviewChanges.tipCommentRem": "Odstrániť komentáre", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Odstrániť aktuálne komentáre", + "Common.Views.ReviewChanges.tipCommentResolve": "Vyriešiť komentáre", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Vyriešiť aktuálne komentáre", + "Common.Views.ReviewChanges.tipHistory": "Zobraziť históriu verzií", "Common.Views.ReviewChanges.tipRejectCurrent": "Odmietnuť aktuálne zmeny", "Common.Views.ReviewChanges.tipReview": "Sledovať zmeny", "Common.Views.ReviewChanges.tipReviewView": "Vyberte režim, v ktorom chcete zobraziť zmeny", + "Common.Views.ReviewChanges.tipSetDocLang": "Nastaviť jazyk dokumentu", + "Common.Views.ReviewChanges.tipSetSpelling": "Kontrola pravopisu", + "Common.Views.ReviewChanges.tipSharing": "Spravovať prístupové práva k dokumentom", "Common.Views.ReviewChanges.txtAccept": "Akceptovať", "Common.Views.ReviewChanges.txtAcceptAll": "Akceptovať všetky zmeny", "Common.Views.ReviewChanges.txtAcceptChanges": "Akceptovať zmeny", @@ -208,7 +469,16 @@ "Common.Views.ReviewChanges.txtChat": "Rozhovor", "Common.Views.ReviewChanges.txtClose": "Zatvoriť", "Common.Views.ReviewChanges.txtCoAuthMode": "Režim spoločnej úpravy", + "Common.Views.ReviewChanges.txtCommentRemAll": "Odstrániť všetky komentáre", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Odstrániť aktuálne komentáre", + "Common.Views.ReviewChanges.txtCommentRemMy": "Odstrániť moje komentáre", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Odstrániť moje aktuálne komentáre", "Common.Views.ReviewChanges.txtCommentRemove": "Odstrániť", + "Common.Views.ReviewChanges.txtCommentResolve": "Vyriešiť", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Vyriešiť všetky komentáre", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Vyriešiť aktuálne komentáre", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Vyriešiť moje komentáre", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Vyriešiť moje aktuálne komentáre", "Common.Views.ReviewChanges.txtDocLang": "Jazyk", "Common.Views.ReviewChanges.txtFinal": "Všetky zmeny prijaté (ukážka)", "Common.Views.ReviewChanges.txtFinalCap": "Posledný", @@ -222,6 +492,9 @@ "Common.Views.ReviewChanges.txtReject": "Odmietnuť", "Common.Views.ReviewChanges.txtRejectAll": "Odmietnuť všetky zmeny", "Common.Views.ReviewChanges.txtRejectChanges": "Odmietnuť zmeny", + "Common.Views.ReviewChanges.txtRejectCurrent": "Odmietnuť aktuálnu zmenu", + "Common.Views.ReviewChanges.txtSharing": "Zdieľanie", + "Common.Views.ReviewChanges.txtSpelling": "Kontrola pravopisu", "Common.Views.ReviewChanges.txtTurnon": "Sledovať zmeny", "Common.Views.ReviewChanges.txtView": "Režim zobrazenia", "Common.Views.ReviewPopover.textAdd": "Pridať", @@ -231,20 +504,29 @@ "Common.Views.ReviewPopover.textEdit": "OK", "Common.Views.ReviewPopover.textMention": "+zmienka poskytne prístup k dokumentu a odošle mail", "Common.Views.ReviewPopover.textMentionNotify": "+zmienka upovedomí užívateľa mailom", + "Common.Views.ReviewPopover.textOpenAgain": "Znova otvoriť", "Common.Views.ReviewPopover.textReply": "Odpovedať", "Common.Views.ReviewPopover.textResolve": "Vyriešiť", + "Common.Views.ReviewPopover.textViewResolved": "Nemáte povolenie pre opätovné otvorenie komentáru", + "Common.Views.ReviewPopover.txtDeleteTip": "Odstrániť", + "Common.Views.ReviewPopover.txtEditTip": "Upraviť", "Common.Views.SaveAsDlg.textLoading": "Načítavanie", + "Common.Views.SaveAsDlg.textTitle": "Priečinok na uloženie", "Common.Views.SelectFileDlg.textLoading": "Načítavanie", + "Common.Views.SelectFileDlg.textTitle": "Vybrať zdroj údajov", "Common.Views.SignDialog.textBold": "Tučné", "Common.Views.SignDialog.textCertificate": "Certifikát", "Common.Views.SignDialog.textChange": "Zmeniť", "Common.Views.SignDialog.textInputName": "Zadať meno signatára", "Common.Views.SignDialog.textItalic": "Kurzíva", + "Common.Views.SignDialog.textNameError": "Meno podpisovateľa nesmie byť prázdne. ", "Common.Views.SignDialog.textPurpose": "Účel podpisovania tohto dokumentu", "Common.Views.SignDialog.textSelect": "Vybrať", "Common.Views.SignDialog.textSelectImage": "Vybrať obrázok", + "Common.Views.SignDialog.textSignature": "Podpis vyzerá ako", "Common.Views.SignDialog.textTitle": "Podpísať dokument", "Common.Views.SignDialog.textUseImage": "alebo kliknite na položku 'Vybrať obrázok' ak chcete použiť obrázok ako podpis", + "Common.Views.SignDialog.textValid": "Platný od %1 do %2", "Common.Views.SignDialog.tipFontName": "Názov písma", "Common.Views.SignDialog.tipFontSize": "Veľkosť písma", "Common.Views.SignSettingsDialog.textAllowComment": "Povoliť signatárovi pridať komentár do podpisového dialógu", @@ -252,20 +534,45 @@ "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Názov", "Common.Views.SignSettingsDialog.textInfoTitle": "Názov signatára", + "Common.Views.SignSettingsDialog.textInstructions": "Pokyny pre signatára", + "Common.Views.SignSettingsDialog.textShowDate": "Zobraziť dátum podpisu v riadku podpisu", + "Common.Views.SignSettingsDialog.textTitle": "Nastavenia podpisu", "Common.Views.SignSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", "Common.Views.SymbolTableDialog.textCharacter": "Symbol", + "Common.Views.SymbolTableDialog.textCode": "Hodnota unicode HEX ", "Common.Views.SymbolTableDialog.textCopyright": "Znak autorských práv", "Common.Views.SymbolTableDialog.textDCQuote": "Uzatvárajúca úvodzovka", + "Common.Views.SymbolTableDialog.textDOQuote": "Úvodná dvojitá úvodzovka", + "Common.Views.SymbolTableDialog.textEllipsis": "Horizontálna elipsa", + "Common.Views.SymbolTableDialog.textEmDash": "Dlhá pomlčka", + "Common.Views.SymbolTableDialog.textEmSpace": "Dlhá medzera", + "Common.Views.SymbolTableDialog.textEnDash": "Krátka pomlčka", + "Common.Views.SymbolTableDialog.textEnSpace": "Krátka medzera", "Common.Views.SymbolTableDialog.textFont": "Písmo", + "Common.Views.SymbolTableDialog.textNBHyphen": "Pevná pomlčka", + "Common.Views.SymbolTableDialog.textNBSpace": "Nezalomiteľná medzera", + "Common.Views.SymbolTableDialog.textPilcrow": "Pí", "Common.Views.SymbolTableDialog.textQEmSpace": "Medzera 1/4 Em", "Common.Views.SymbolTableDialog.textRange": "Rozsah", + "Common.Views.SymbolTableDialog.textRecent": "Nedávno použité symboly", + "Common.Views.SymbolTableDialog.textRegistered": "Registrovaná značka", "Common.Views.SymbolTableDialog.textSCQuote": "Uzatvárajúca úvodzovka", + "Common.Views.SymbolTableDialog.textSection": "Paragraf", + "Common.Views.SymbolTableDialog.textShortcut": "Klávesová skratka", + "Common.Views.SymbolTableDialog.textSHyphen": "Mäkký spojovník", + "Common.Views.SymbolTableDialog.textSOQuote": "Úvodná jednoduchá úvodzovka", + "Common.Views.SymbolTableDialog.textSpecial": "špeciálne znaky", "Common.Views.SymbolTableDialog.textSymbols": "Symboly", "Common.Views.SymbolTableDialog.textTitle": "Symbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Symbol ochrannej známky", "Common.Views.UserNameDialog.textDontShow": "Nepýtať sa ma znova", "Common.Views.UserNameDialog.textLabel": "Štítok:", + "Common.Views.UserNameDialog.textLabelError": "Etiketa nesmie byť prázdna.", + "PE.Controllers.LeftMenu.leavePageText": "Všetky neuložené zmeny v tomto dokumente budú stratené.
Kliknite na \"Zrušiť\" a potom na \"Uložiť\" pre uloženie. Kliknite na \"OK\" pre zrušenie všetkých neuložených zmien.", "PE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaná prezentácia", + "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Upozornenie", "PE.Controllers.LeftMenu.requestEditRightsText": "Žiadanie o práva na úpravu ...", + "PE.Controllers.LeftMenu.textLoadHistory": "Načítavanie histórie verzií ...", "PE.Controllers.LeftMenu.textNoTextFound": "Dáta, ktoré hľadáte sa nedajú nájsť. Prosím, upravte svoje možnosti vyhľadávania.", "PE.Controllers.LeftMenu.textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.", "PE.Controllers.LeftMenu.textReplaceSuccess": "Vyhľadávanie bolo uskutočnené. Nahradené udalosti: {0}", @@ -281,6 +588,7 @@ "PE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "PE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.", + "PE.Controllers.Main.errorComboSeries": "Pre vytvorenie kombinovaného grafu, zvoľte aspoň dve skupiny dát.", "PE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.", "PE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ", "PE.Controllers.Main.errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.", @@ -288,24 +596,29 @@ "PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", "PE.Controllers.Main.errorEditingDownloadas": "Pri práci s dokumentom došlo k chybe.
Použite voľbu \"Stiahnuť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", "PE.Controllers.Main.errorEditingSaveas": "Pri práci s dokumentom došlo k chybe.
Použite voľbu \"Uložiť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", - "PE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", + "PE.Controllers.Main.errorEmailClient": "Nenašiel sa žiadny emailový klient.", + "PE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom.", "PE.Controllers.Main.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
Kontaktujte prosím vášho správcu dokumentového servera o ďalšie podrobnosti.", "PE.Controllers.Main.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", "PE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", "PE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", + "PE.Controllers.Main.errorLoadingFont": "Fonty sa nenahrali.
Kontaktujte prosím svojho administrátora Servera dokumentov.", "PE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo.", "PE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", "PE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.", "PE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.", "PE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", + "PE.Controllers.Main.errorSetPassword": "Heslo nemohlo byť použité", "PE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", "PE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "PE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "PE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internetové spojenie bolo obnovené a verzia súboru bola zmenená.
Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", "PE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", "PE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", - "PE.Controllers.Main.errorViewerDisconnect": "Spojenie so serverom je prerušené. Dokument môžete zobraziť,
ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.", + "PE.Controllers.Main.errorViewerDisconnect": "Spojenie so serverom je prerušené. Dokument môžete zobraziť,
ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví a stránka sa znovu nenačíta.", "PE.Controllers.Main.leavePageText": "V tejto prezentácii máte neuložené zmeny. Kliknite na \"Zostať na tejto stránke\", potom \"Uložiť\" aby sa zmeny uložili. Kliknutím na \"Opustiť túto stránku\" odstránite všetky neuložené zmeny.", + "PE.Controllers.Main.leavePageTextOnClose": "Všetky neuložené zmeny v tomto dokumente budú stratené.
Kliknite na \"Zrušiť\" a potom na \"Uložiť\" pre uloženie. Kliknite na \"OK\" pre zrušenie všetkých neuložených zmien.", "PE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", "PE.Controllers.Main.loadFontsTitleText": "Načítavanie dát", "PE.Controllers.Main.loadFontTextText": "Načítavanie dát...", @@ -319,7 +632,7 @@ "PE.Controllers.Main.loadThemeTextText": "Načítavanie témy...", "PE.Controllers.Main.loadThemeTitleText": "Načítavanie témy", "PE.Controllers.Main.notcriticalErrorTitle": "Upozornenie", - "PE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba", + "PE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba.", "PE.Controllers.Main.openTextText": "Otváranie prezentácie...", "PE.Controllers.Main.openTitleText": "Otváranie prezentácie", "PE.Controllers.Main.printTextText": "Tlačenie prezentácie...", @@ -327,9 +640,11 @@ "PE.Controllers.Main.reloadButtonText": "Obnoviť stránku", "PE.Controllers.Main.requestEditFailedMessageText": "Niekto momentálne upravuje túto prezentáciu. Skúste neskôr prosím.", "PE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý", - "PE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", + "PE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba.", + "PE.Controllers.Main.saveErrorTextDesktop": "Súbor nemohol byť uložený, alebo vytvorený
Možné dôvody:
1.Súbor je možne použiť iba na čítanie.
2. Súbor je editovaný iným užívateľom.
3.Úložisko je plné, alebo poškodené.", "PE.Controllers.Main.saveTextText": "Ukladanie prezentácie...", "PE.Controllers.Main.saveTitleText": "Ukladanie prezentácie", + "PE.Controllers.Main.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", "PE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľný %1.", "PE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1.", "PE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1.", @@ -340,15 +655,24 @@ "PE.Controllers.Main.textClose": "Zatvoriť", "PE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip", "PE.Controllers.Main.textContactUs": "Kontaktujte predajcu", + "PE.Controllers.Main.textConvertEquation": "Táto rovnica bola vytvorená starou verziou editora rovníc, ktorá už nie je podporovaná. Pre jej upravenie, preveďte rovnicu do formátu Office Math ML.
Previesť teraz?", "PE.Controllers.Main.textCustomLoader": "Všimnite si, prosím, že podľa zmluvných podmienok licencie nemáte oprávnenie zmeniť loader.
Kontaktujte prosím naše Predajné oddelenie, aby ste získali odhad ceny.", + "PE.Controllers.Main.textDisconnect": "Spojenie sa stratilo", + "PE.Controllers.Main.textGuest": "Návštevník", "PE.Controllers.Main.textHasMacros": "Súbor obsahuje automatické makrá.
Chcete spustiť makrá?", + "PE.Controllers.Main.textLearnMore": "Viac informácií", "PE.Controllers.Main.textLoadingDocument": "Načítavanie prezentácie", "PE.Controllers.Main.textLongName": "Vložte meno, ktorého dĺžka je menej ako 128 znakov.", - "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE obmedzenie pripojenia", + "PE.Controllers.Main.textNoLicenseTitle": "Bol dosiahnutý limit licencie", + "PE.Controllers.Main.textPaidFeature": "Platená funkcia", + "PE.Controllers.Main.textReconnect": "Spojenie sa obnovilo", + "PE.Controllers.Main.textRemember": "Pamätať si moju voľbu pre všetky súbory", + "PE.Controllers.Main.textRenameError": "Meno užívateľa nesmie byť prázdne.", "PE.Controllers.Main.textRenameLabel": "Zadajte meno, ktoré sa bude používať pre spoluprácu", "PE.Controllers.Main.textShape": "Tvar", "PE.Controllers.Main.textStrict": "Prísny režim", "PE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.
Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.", + "PE.Controllers.Main.textTryUndoRedoWarn": "Funkcia Späť/Znova sú vypnuté pre rýchli režim spolupráce. ", "PE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", "PE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", "PE.Controllers.Main.txtAddFirstSlide": "Kliknutím pridajte prvú snímku", @@ -363,6 +687,7 @@ "PE.Controllers.Main.txtDiagram": "Moderné umenie", "PE.Controllers.Main.txtDiagramTitle": "Názov grafu", "PE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav...", + "PE.Controllers.Main.txtErrorLoadHistory": "Načítavanie histórie zlyhalo", "PE.Controllers.Main.txtFiguredArrows": "Šipky", "PE.Controllers.Main.txtFooter": "Päta stránky", "PE.Controllers.Main.txtHeader": "Hlavička", @@ -372,26 +697,49 @@ "PE.Controllers.Main.txtMath": "Matematika", "PE.Controllers.Main.txtMedia": "Médiá ", "PE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie", + "PE.Controllers.Main.txtNone": "žiadny", "PE.Controllers.Main.txtPicture": "Obrázok", "PE.Controllers.Main.txtRectangles": "Obdĺžniky", "PE.Controllers.Main.txtSeries": "Rady", + "PE.Controllers.Main.txtShape_accentBorderCallout1": "Bublina s čiarou 1 (ohraničenie a akcentový pruh)", + "PE.Controllers.Main.txtShape_accentBorderCallout2": "Bublina s čiarou 2 (ohraničenie a zvýraznenie)", + "PE.Controllers.Main.txtShape_accentBorderCallout3": "Bublina s čiarou 3 (Ohraničenie a zvýraznenie)", + "PE.Controllers.Main.txtShape_accentCallout1": "Bublina s čiarou 1 (Accent Bar)", + "PE.Controllers.Main.txtShape_accentCallout2": "Bublina s čiarou 2 (zvýraznenie)", + "PE.Controllers.Main.txtShape_accentCallout3": "Bublina s čiarou 3 (zvýraznená)", "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tlačítko Späť alebo Predchádzajúci", "PE.Controllers.Main.txtShape_actionButtonBeginning": "Tlačítko Začiatok", "PE.Controllers.Main.txtShape_actionButtonBlank": "Prázdne tlačítko", "PE.Controllers.Main.txtShape_actionButtonDocument": "Tlačítko Dokument", "PE.Controllers.Main.txtShape_actionButtonEnd": "Tlačítko Koniec", + "PE.Controllers.Main.txtShape_actionButtonForwardNext": "Tlačítko vpred alebo ďalej", + "PE.Controllers.Main.txtShape_actionButtonHelp": "Tlačítko Nápoveda", + "PE.Controllers.Main.txtShape_actionButtonHome": "Tlačítko Domov", "PE.Controllers.Main.txtShape_actionButtonInformation": "Tlačítko Informácia", + "PE.Controllers.Main.txtShape_actionButtonMovie": "Tlačítko Film", "PE.Controllers.Main.txtShape_actionButtonReturn": "Tlačítko Návrat", + "PE.Controllers.Main.txtShape_actionButtonSound": "Tlačítko Zvuk", "PE.Controllers.Main.txtShape_arc": "Oblúk", "PE.Controllers.Main.txtShape_bentArrow": "Ohnutá šípka", + "PE.Controllers.Main.txtShape_bentConnector5": "Kolenový konektor", + "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Kolenový konektor so šípkou", + "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Kolenový dvojšípkový konektor", "PE.Controllers.Main.txtShape_bentUpArrow": "Šípka ohnutá hore", "PE.Controllers.Main.txtShape_bevel": "Skosenie", "PE.Controllers.Main.txtShape_blockArc": "Časť kruhu", + "PE.Controllers.Main.txtShape_borderCallout1": "Bublina s čiarou 1", + "PE.Controllers.Main.txtShape_borderCallout2": "Bublina s čiarou 2", + "PE.Controllers.Main.txtShape_borderCallout3": "Bublina s čiarou 3", "PE.Controllers.Main.txtShape_bracePair": "Dvojitá zátvorka", + "PE.Controllers.Main.txtShape_callout1": "Bublina s čiarou 1 (bez ohraničenia)", + "PE.Controllers.Main.txtShape_callout2": "Bublina s čiarou 2 (bez orámovania)", + "PE.Controllers.Main.txtShape_callout3": "Bublina s čiarou 3 (bez orámovania)", "PE.Controllers.Main.txtShape_can": "Môže", "PE.Controllers.Main.txtShape_chevron": "Chevron", + "PE.Controllers.Main.txtShape_chord": "Akord", "PE.Controllers.Main.txtShape_circularArrow": "okrúhla šípka", "PE.Controllers.Main.txtShape_cloud": "Cloud", + "PE.Controllers.Main.txtShape_cloudCallout": "Upozornenie na cloud", "PE.Controllers.Main.txtShape_corner": "Roh", "PE.Controllers.Main.txtShape_cube": "Kocka", "PE.Controllers.Main.txtShape_curvedConnector3": "Zakrivený konektor", @@ -431,17 +779,34 @@ "PE.Controllers.Main.txtShape_flowChartMultidocument": "Viacnásobný dokument", "PE.Controllers.Main.txtShape_flowChartOffpageConnector": "Vývojový diagram: Spojovací prvok mimo stránky", "PE.Controllers.Main.txtShape_flowChartOnlineStorage": "Uložené dáta", + "PE.Controllers.Main.txtShape_flowChartOr": "Diagram: alebo", + "PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Diagram: Preddefinovaný proces ", + "PE.Controllers.Main.txtShape_flowChartPreparation": "Diagram: Príprava", + "PE.Controllers.Main.txtShape_flowChartProcess": "Diagram: proces", "PE.Controllers.Main.txtShape_flowChartPunchedCard": "Vývojový diagram: Karta", "PE.Controllers.Main.txtShape_flowChartPunchedTape": "Vývojový diagram: Páska s dierkami", "PE.Controllers.Main.txtShape_flowChartSort": "Vývojový diagram: Triedenie", "PE.Controllers.Main.txtShape_flowChartSummingJunction": "Vývojový diagram: Sumarizačný uzol", "PE.Controllers.Main.txtShape_flowChartTerminator": "Vývojový diagram: Terminátor", + "PE.Controllers.Main.txtShape_foldedCorner": "Prehnutý roh", "PE.Controllers.Main.txtShape_frame": "Rámček", + "PE.Controllers.Main.txtShape_halfFrame": "Polovičný rámček", "PE.Controllers.Main.txtShape_heart": "Srdce", + "PE.Controllers.Main.txtShape_heptagon": "Päťuholník", + "PE.Controllers.Main.txtShape_hexagon": "Šesťuholník", + "PE.Controllers.Main.txtShape_homePlate": "Päťuholník", "PE.Controllers.Main.txtShape_horizontalScroll": "Horizontálny posuvník", "PE.Controllers.Main.txtShape_irregularSeal1": "Výbuch 1", "PE.Controllers.Main.txtShape_irregularSeal2": "Výbuch 2", "PE.Controllers.Main.txtShape_leftArrow": "Ľavá šípka", + "PE.Controllers.Main.txtShape_leftArrowCallout": "Vyvolanie šípky vľavo", + "PE.Controllers.Main.txtShape_leftBrace": "Ľavá zložená zátvorka", + "PE.Controllers.Main.txtShape_leftBracket": "Ľavá zátvorka", + "PE.Controllers.Main.txtShape_leftRightArrow": "Šípka vľavo vpravo", + "PE.Controllers.Main.txtShape_leftRightArrowCallout": "Vyvolanie šípky vľavo vpravo", + "PE.Controllers.Main.txtShape_leftRightUpArrow": "Šípka doľava doprava nahor", + "PE.Controllers.Main.txtShape_leftUpArrow": "Šípka doľava nahor", + "PE.Controllers.Main.txtShape_lightningBolt": "Blesk", "PE.Controllers.Main.txtShape_line": "Čiara", "PE.Controllers.Main.txtShape_lineWithArrow": "Šípka", "PE.Controllers.Main.txtShape_lineWithTwoArrows": "Dvojitá šípka", @@ -453,11 +818,34 @@ "PE.Controllers.Main.txtShape_mathPlus": "Plus", "PE.Controllers.Main.txtShape_moon": "Mesiac", "PE.Controllers.Main.txtShape_noSmoking": "Symbol \"Nie\"", + "PE.Controllers.Main.txtShape_notchedRightArrow": "Šípka v pravo so zárezom", + "PE.Controllers.Main.txtShape_octagon": "Osemuholník", + "PE.Controllers.Main.txtShape_parallelogram": "Rovnobežník", + "PE.Controllers.Main.txtShape_pentagon": "Päťuholník", "PE.Controllers.Main.txtShape_pie": "Koláčový graf", "PE.Controllers.Main.txtShape_plaque": "Podpísať", "PE.Controllers.Main.txtShape_plus": "Plus", + "PE.Controllers.Main.txtShape_polyline1": "Čmárať", + "PE.Controllers.Main.txtShape_polyline2": "Voľná forma", + "PE.Controllers.Main.txtShape_quadArrow": "Štvorstranná šípka", + "PE.Controllers.Main.txtShape_quadArrowCallout": "Bublina so štvorstrannou šípkou", + "PE.Controllers.Main.txtShape_rect": "Pravouholník", "PE.Controllers.Main.txtShape_ribbon": "Pruh nadol", + "PE.Controllers.Main.txtShape_ribbon2": "Pásik hore", "PE.Controllers.Main.txtShape_rightArrow": "Pravá šípka", + "PE.Controllers.Main.txtShape_rightArrowCallout": "Bublina so šípkou vpravo", + "PE.Controllers.Main.txtShape_rightBrace": "Pravá svorka", + "PE.Controllers.Main.txtShape_rightBracket": "Pravá zátvorka", + "PE.Controllers.Main.txtShape_round1Rect": "Obdĺžnik s jedným oblým rohom", + "PE.Controllers.Main.txtShape_round2DiagRect": "Obdĺžnik s okrúhlymi protiľahlými rohmi", + "PE.Controllers.Main.txtShape_round2SameRect": "Obdĺžnik s oblými rohmi na rovnakej strane", + "PE.Controllers.Main.txtShape_roundRect": "obdĺžnik s oblými rohmi", + "PE.Controllers.Main.txtShape_rtTriangle": "Pravý trojuholník", + "PE.Controllers.Main.txtShape_smileyFace": "Smajlík", + "PE.Controllers.Main.txtShape_snip1Rect": "Obdĺžnik s jedným odstrihnutým rohom", + "PE.Controllers.Main.txtShape_snip2DiagRect": "Obdĺžnik s dvoma protiľahlými odstrihnutými rohmi", + "PE.Controllers.Main.txtShape_snip2SameRect": "Obdĺžnik s dvoma odstrihnutými rohmi na rovnakej strane ", + "PE.Controllers.Main.txtShape_snipRoundRect": "Obdĺžnik s jedným zaobleným a jedným odstrihnutým rohom hore", "PE.Controllers.Main.txtShape_spline": "Krivka", "PE.Controllers.Main.txtShape_star10": "10-cípa hviezda", "PE.Controllers.Main.txtShape_star12": "12-cípa hviezda", @@ -469,10 +857,21 @@ "PE.Controllers.Main.txtShape_star6": "6-cípa hviezda", "PE.Controllers.Main.txtShape_star7": "7-cípa hviezda", "PE.Controllers.Main.txtShape_star8": "8-cípa hviezda", + "PE.Controllers.Main.txtShape_stripedRightArrow": "Prúžkovaná šípka vpravo", "PE.Controllers.Main.txtShape_sun": "Ne", + "PE.Controllers.Main.txtShape_teardrop": "Slza", "PE.Controllers.Main.txtShape_textRect": "Textové pole", + "PE.Controllers.Main.txtShape_trapezoid": "Lichobežník", + "PE.Controllers.Main.txtShape_triangle": "Trojuholník", "PE.Controllers.Main.txtShape_upArrow": "Šípka hore", + "PE.Controllers.Main.txtShape_upArrowCallout": "Bublina so šípkou hore", + "PE.Controllers.Main.txtShape_upDownArrow": "Šípka hore a dole", + "PE.Controllers.Main.txtShape_uturnArrow": "Šípka s otočkou", + "PE.Controllers.Main.txtShape_verticalScroll": "Vertikálne posúvanie", "PE.Controllers.Main.txtShape_wave": "Vlnka", + "PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oválna bublina", + "PE.Controllers.Main.txtShape_wedgeRectCallout": "Obdĺžniková bublina", + "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Bublina v tvare obdĺžnika so zaoblenými rohmi", "PE.Controllers.Main.txtSldLtTBlank": "Prázdny", "PE.Controllers.Main.txtSldLtTChart": "Graf", "PE.Controllers.Main.txtSldLtTChartAndTx": "Graf a text", @@ -520,25 +919,35 @@ "PE.Controllers.Main.txtTheme_corner": "Roh", "PE.Controllers.Main.txtTheme_dotted": "Bodkovaný", "PE.Controllers.Main.txtTheme_green": "Zelený", + "PE.Controllers.Main.txtTheme_green_leaf": "Zelený list", "PE.Controllers.Main.txtTheme_lines": "Čiary", "PE.Controllers.Main.txtTheme_office": "Kancelária", + "PE.Controllers.Main.txtTheme_office_theme": "Kancelársky vzhľad prostredia", "PE.Controllers.Main.txtTheme_official": "Oficiálny", "PE.Controllers.Main.txtTheme_pixel": "Pixel", + "PE.Controllers.Main.txtTheme_safari": "Safari", + "PE.Controllers.Main.txtTheme_turtle": "Korytnačka", "PE.Controllers.Main.txtXAxis": "Os X", "PE.Controllers.Main.txtYAxis": "Os Y", "PE.Controllers.Main.unknownErrorText": "Neznáma chyba.", "PE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", "PE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", "PE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", - "PE.Controllers.Main.uploadImageSizeMessage": "Prekročená maximálna veľkosť obrázka", + "PE.Controllers.Main.uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.", "PE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", "PE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", "PE.Controllers.Main.waitText": "Prosím čakajte...", "PE.Controllers.Main.warnBrowserIE9": "Aplikácia má na IE9 slabé schopnosti. Použite IE10 alebo vyššie.", "PE.Controllers.Main.warnBrowserZoom": "Súčasné nastavenie priblíženia nie je plne podporované prehliadačom. Obnovte štandardné priblíženie stlačením klávesov Ctrl+0.", + "PE.Controllers.Main.warnLicenseExceeded": "Dosiahli ste limit počtu súbežných spojení %1 editora. Dokument bude otvorený len na náhľad.
Pre viac podrobností kontaktujte svojho správcu. ", "PE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", - "PE.Controllers.Main.warnNoLicense": "Táto verzia aplikácie %1 editors má určité obmedzenia pre súbežné pripojenia k dokumentovému serveru.
Ak potrebujete viac, zvážte aktualizáciu aktuálnej licencie alebo zakúpenie komerčnej.", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencia vypršala.
K funkcii úprav dokumentu už nemáte prístup.
Kontaktujte svojho administrátora, prosím.", + "PE.Controllers.Main.warnLicenseLimitedRenewed": "Je potrebné obnoviť licenciu.
K funkciám úprav dokumentov máte obmedzený prístup.
Pre získanie úplného prístupu kontaktujte prosím svojho administrátora.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Dosiahli ste limit %1 editora v režime spolupráce na úpravách. Ohľadne podrobnosti sa obráťte na svojho správcu. ", + "PE.Controllers.Main.warnNoLicense": "Dosiahli ste limit súběžných pripojení %1 editora. Dokument bude otvorený len na prezeranie.
Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", + "PE.Controllers.Main.warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", "PE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", + "PE.Controllers.Statusbar.textDisconnect": "Spojenie sa stratilo
Pokus o opätovné spojenie. Skontrolujte nastavenie pripojenia. ", "PE.Controllers.Statusbar.zoomText": "Priblíženie {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Písmo, ktoré chcete uložiť, nie je dostupné na aktuálnom zariadení.
Štýl textu sa zobrazí pomocou jedného zo systémových písiem, uložené písmo sa použije, keď bude k dispozícii.
Chcete pokračovať?", "PE.Controllers.Toolbar.textAccent": "Akcenty", @@ -875,6 +1284,30 @@ "PE.Controllers.Toolbar.txtSymbol_zeta": "Zéta", "PE.Controllers.Viewport.textFitPage": "Prispôsobiť snímke", "PE.Controllers.Viewport.textFitWidth": "Prispôsobiť na šírku", + "PE.Views.Animation.strDelay": "Oneskorenie", + "PE.Views.Animation.strDuration": "Trvanie", + "PE.Views.Animation.strRepeat": "Zopakovať", + "PE.Views.Animation.strRewind": "Vrátiť na začiatok", + "PE.Views.Animation.strStart": "Štart", + "PE.Views.Animation.strTrigger": "Spúšťač", + "PE.Views.Animation.textMoreEffects": "Zobraziť ďalšie efekty", + "PE.Views.Animation.textMoveEarlier": "Presunúť skôr", + "PE.Views.Animation.textMoveLater": "Presunúť neskôr", + "PE.Views.Animation.textMultiple": "Viacnásobný", + "PE.Views.Animation.textNone": "žiadny", + "PE.Views.Animation.textNoRepeat": "(žiadne)", + "PE.Views.Animation.textOnClickOf": "Pri kliknutí na", + "PE.Views.Animation.textOnClickSequence": "Kliknite na položku Sekvencia", + "PE.Views.Animation.textStartAfterPrevious": "Po predchádzajúcom", + "PE.Views.Animation.textStartOnClick": "Pri kliknutí", + "PE.Views.Animation.textStartWithPrevious": "S predchádzajúcim", + "PE.Views.Animation.txtAddEffect": "Pridať animáciu", + "PE.Views.Animation.txtAnimationPane": "Animačná Tabuľka", + "PE.Views.Animation.txtParameters": "Parametre", + "PE.Views.Animation.txtPreview": "Náhľad", + "PE.Views.Animation.txtSec": "S", + "PE.Views.AnimationDialog.textPreviewEffect": "Náhľad efektu", + "PE.Views.AnimationDialog.textTitle": "Ďalšie efekty", "PE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "PE.Views.ChartSettings.textChartType": "Zmeniť typ grafu", "PE.Views.ChartSettings.textEditData": "Upravovať dáta", @@ -888,6 +1321,8 @@ "PE.Views.ChartSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", "PE.Views.ChartSettingsAdvanced.textAltTitle": "Názov", "PE.Views.ChartSettingsAdvanced.textTitle": "Graf - Pokročilé nastavenia", + "PE.Views.DateTimeDialog.confirmDefault": "Nastaviť defaultný formát pre {0}: \"{1}\"", + "PE.Views.DateTimeDialog.textDefault": "Nastaviť ako defaultné", "PE.Views.DateTimeDialog.textFormat": "Formáty", "PE.Views.DateTimeDialog.textLang": "Jazyk", "PE.Views.DateTimeDialog.textUpdate": "Aktualizovať automaticky", @@ -896,7 +1331,7 @@ "PE.Views.DocumentHolder.addCommentText": "Pridať komentár", "PE.Views.DocumentHolder.addToLayoutText": "Pridať do rozloženia", "PE.Views.DocumentHolder.advancedImageText": "Pokročilé nastavenia obrázku", - "PE.Views.DocumentHolder.advancedParagraphText": "Pokročilé nastavenia textu", + "PE.Views.DocumentHolder.advancedParagraphText": "Pokročilé nastavenia odseku", "PE.Views.DocumentHolder.advancedShapeText": "Pokročilé nastavenia tvaru", "PE.Views.DocumentHolder.advancedTableText": "Pokročilé nastavenia tabuľky", "PE.Views.DocumentHolder.alignmentText": "Zarovnanie", @@ -932,7 +1367,7 @@ "PE.Views.DocumentHolder.mniCustomTable": "Vložiť vlastnú tabuľku", "PE.Views.DocumentHolder.moreText": "Viac variantov...", "PE.Views.DocumentHolder.noSpellVariantsText": "Žiadne varianty", - "PE.Views.DocumentHolder.originalSizeText": "Predvolená veľkosť", + "PE.Views.DocumentHolder.originalSizeText": "Aktuálna veľkosť", "PE.Views.DocumentHolder.removeHyperlinkText": "Odstrániť hypertextový odkaz", "PE.Views.DocumentHolder.rightText": "Vpravo", "PE.Views.DocumentHolder.rowText": "Riadok", @@ -952,6 +1387,7 @@ "PE.Views.DocumentHolder.textCut": "Vystrihnúť", "PE.Views.DocumentHolder.textDistributeCols": "Rozdeliť stĺpce", "PE.Views.DocumentHolder.textDistributeRows": "Rozdeliť riadky", + "PE.Views.DocumentHolder.textEditPoints": "Upraviť body", "PE.Views.DocumentHolder.textFlipH": "Prevrátiť horizontálne", "PE.Views.DocumentHolder.textFlipV": "Prevrátiť vertikálne", "PE.Views.DocumentHolder.textFromFile": "Zo súboru", @@ -960,6 +1396,7 @@ "PE.Views.DocumentHolder.textNextPage": "Nasledujúca snímka", "PE.Views.DocumentHolder.textPaste": "Vložiť", "PE.Views.DocumentHolder.textPrevPage": "Predchádzajúca snímka", + "PE.Views.DocumentHolder.textReplace": "Nahradiť obrázok", "PE.Views.DocumentHolder.textRotate": "Otočiť", "PE.Views.DocumentHolder.textRotate270": "Otočiť o 90° doľava", "PE.Views.DocumentHolder.textRotate90": "Otočiť o 90° doprava", @@ -1035,11 +1472,16 @@ "PE.Views.DocumentHolder.txtLimitUnder": "Limita pod textom", "PE.Views.DocumentHolder.txtMatchBrackets": "Prispôsobenie zátvoriek k výške obsahu", "PE.Views.DocumentHolder.txtMatrixAlign": "Zarovnanie matice", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Presunúť slajd na koniec", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "Presunúť slajd na začiatok", "PE.Views.DocumentHolder.txtNewSlide": "Nová snímka", "PE.Views.DocumentHolder.txtOverbar": "Čiara nad textom", + "PE.Views.DocumentHolder.txtPasteDestFormat": "Použiť cieľový vzhľad ", "PE.Views.DocumentHolder.txtPastePicture": "Obrázok", + "PE.Views.DocumentHolder.txtPasteSourceFormat": "Uchovať zdrojové formátovanie", "PE.Views.DocumentHolder.txtPressLink": "Stlačte CTRL a kliknite na odkaz", "PE.Views.DocumentHolder.txtPreview": "Spustiť prezentáciu", + "PE.Views.DocumentHolder.txtPrintSelection": "Vytlačiť výber", "PE.Views.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", "PE.Views.DocumentHolder.txtRemLimit": "Odstrániť limitu", "PE.Views.DocumentHolder.txtRemoveAccentChar": "Odstrániť znak akcentu", @@ -1047,6 +1489,7 @@ "PE.Views.DocumentHolder.txtRemScripts": "Odstrániť skripty", "PE.Views.DocumentHolder.txtRemSubscript": "Odstrániť dolný index", "PE.Views.DocumentHolder.txtRemSuperscript": "Odstrániť horný index", + "PE.Views.DocumentHolder.txtResetLayout": "Obnovenie slajdu", "PE.Views.DocumentHolder.txtScriptsAfter": "Zápisy za textom", "PE.Views.DocumentHolder.txtScriptsBefore": "Zápisy pred textom", "PE.Views.DocumentHolder.txtSelectAll": "Vybrať všetko", @@ -1062,6 +1505,7 @@ "PE.Views.DocumentHolder.txtTop": "Hore", "PE.Views.DocumentHolder.txtUnderbar": "Čiara pod textom", "PE.Views.DocumentHolder.txtUngroup": "Oddeliť", + "PE.Views.DocumentHolder.txtWarnUrl": "Kliknutie na tento odkaz môže byť škodlivé pre Vaše zariadenie a Vaše dáta.
Ste si istý, že chcete pokračovať?", "PE.Views.DocumentHolder.vertAlignText": "Vertikálne zarovnanie", "PE.Views.DocumentPreview.goToSlideText": "Prejsť na snímku", "PE.Views.DocumentPreview.slideIndexText": "Snímka {0} z {1}", @@ -1077,10 +1521,12 @@ "PE.Views.DocumentPreview.txtPrev": "Predchádzajúca snímka", "PE.Views.DocumentPreview.txtReset": "Obnoviť", "PE.Views.FileMenu.btnAboutCaption": "O aplikácii", - "PE.Views.FileMenu.btnBackCaption": "Prejsť do Dokumentov", + "PE.Views.FileMenu.btnBackCaption": "Otvoriť umiestnenie súboru", "PE.Views.FileMenu.btnCloseMenuCaption": "Zatvoriť menu", "PE.Views.FileMenu.btnCreateNewCaption": "Vytvoriť nový", "PE.Views.FileMenu.btnDownloadCaption": "Stiahnuť ako...", + "PE.Views.FileMenu.btnExitCaption": "Koniec", + "PE.Views.FileMenu.btnFileOpenCaption": "Otvoriť...", "PE.Views.FileMenu.btnHelpCaption": "Pomoc...", "PE.Views.FileMenu.btnHistoryCaption": "História verzií", "PE.Views.FileMenu.btnInfoCaption": "Informácie o prezentácii...", @@ -1092,8 +1538,10 @@ "PE.Views.FileMenu.btnRightsCaption": "Prístupové práva...", "PE.Views.FileMenu.btnSaveAsCaption": "Uložiť ako", "PE.Views.FileMenu.btnSaveCaption": "Uložiť", + "PE.Views.FileMenu.btnSaveCopyAsCaption": "Uložiť kópiu ako...", "PE.Views.FileMenu.btnSettingsCaption": "Pokročilé nastavenia...", "PE.Views.FileMenu.btnToEditCaption": "Upraviť prezentáciu", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "Prázdná prezentácia", "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Vytvoriť nový", "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Použiť", "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Pridať autora", @@ -1109,13 +1557,19 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami", "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Predmet", - "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov prezentácie", + "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov", "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Nahrané", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmeniť prístupové práva", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami", "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Upozornenie", + "PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Za pomoci hesla", + "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Zabezpečenie prezentácie", + "PE.Views.FileMenuPanels.ProtectDoc.strSignature": "S podpisom", "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Upraviť prezentáciu", "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Úprava odstráni podpisy z prezentácie.
Naozaj chcete pokračovať?", + "PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Prezentácia je zabezpečená heslom", + "PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Do prezentácie boli pridané platné podpisy. Je zabezpečená pred úpravámi. ", + "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Niektoré z digitálnych podpisov v prezentácií sú neplatné, alebo sa ich nepodarilo overiť. Prezentácia je zabezpečená proti úpravám.", "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobraziť podpisy", "PE.Views.FileMenuPanels.Settings.okButtonText": "Použiť", "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnúť tipy zarovnávania", @@ -1125,12 +1579,16 @@ "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ", "PE.Views.FileMenuPanels.Settings.strFast": "Rýchly", - "PE.Views.FileMenuPanels.Settings.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)", + "PE.Views.FileMenuPanels.Settings.strFontRender": "Vyhladzovanie hrán písma", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Pridaj verziu na úložisko kliknutím na Uložiť alebo Ctrl+S", "PE.Views.FileMenuPanels.Settings.strInputMode": "Zapnúť hieroglyfy", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Nastavenia makier", "PE.Views.FileMenuPanels.Settings.strPaste": "Vystrihni, skopíruj a vlep", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "Po vložení obsahu ukázať tlačítko Možnosti vloženia", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Zmeny spolupráce v reálnom čase", "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnúť kontrolu pravopisu", "PE.Views.FileMenuPanels.Settings.strStrict": "Prísny", + "PE.Views.FileMenuPanels.Settings.strTheme": "Vzhľad prostredia", "PE.Views.FileMenuPanels.Settings.strUnit": "Jednotka merania", "PE.Views.FileMenuPanels.Settings.strZoom": "Predvolená hodnota priblíženia", "PE.Views.FileMenuPanels.Settings.text10Minutes": "Každých 10 minút", @@ -1141,7 +1599,7 @@ "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatická obnova", "PE.Views.FileMenuPanels.Settings.textAutoSave": "Automatické ukladanie", "PE.Views.FileMenuPanels.Settings.textDisabled": "Zakázané", - "PE.Views.FileMenuPanels.Settings.textForceSave": "Uložiť na Server", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Uložiť dočasnú verziu", "PE.Views.FileMenuPanels.Settings.textMinute": "Každú minútu", "PE.Views.FileMenuPanels.Settings.txtAll": "Zobraziť všetko", "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Možnosti automatickej opravy...", @@ -1154,23 +1612,29 @@ "PE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný", "PE.Views.FileMenuPanels.Settings.txtMac": "ako macOS", "PE.Views.FileMenuPanels.Settings.txtNative": "Pôvodný", + "PE.Views.FileMenuPanels.Settings.txtProofing": "Hľadanie chýb", "PE.Views.FileMenuPanels.Settings.txtPt": "Bod", "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Povoliť všetko", "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Umožniť všetky makrá bez oznámenia", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kontrola pravopisu", "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Zablokovať všetko", "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Zablokovať všetky makrá bez upozornenia", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Ukázať oznámenie", "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Zablokovať všetky makrá s upozornením", "PE.Views.FileMenuPanels.Settings.txtWin": "ako Windows", "PE.Views.HeaderFooterDialog.applyAllText": "Použiť na všetko", "PE.Views.HeaderFooterDialog.applyText": "Použiť", + "PE.Views.HeaderFooterDialog.diffLanguage": "Nie je možné použiť formát dát z iného jazyka, než je používaný pre hlavný slajd.
Pre zmenu hlavného jazyka, kliknite na \"Použiť na všetko\"namiesto \"Použiť\"", + "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Upozornenie", "PE.Views.HeaderFooterDialog.textDateTime": "Dátum a čas", "PE.Views.HeaderFooterDialog.textFixed": "Fixný", + "PE.Views.HeaderFooterDialog.textFooter": "Text v päte strany", "PE.Views.HeaderFooterDialog.textFormat": "Formáty", "PE.Views.HeaderFooterDialog.textLang": "Jazyk", "PE.Views.HeaderFooterDialog.textNotTitle": "Neukazovať na titulnom snímku", "PE.Views.HeaderFooterDialog.textPreview": "Náhľad", "PE.Views.HeaderFooterDialog.textSlideNum": "Číslo snímky", + "PE.Views.HeaderFooterDialog.textTitle": "Nastavenie päty stránky", "PE.Views.HeaderFooterDialog.textUpdate": "Aktualizovať automaticky", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Zobraziť", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Odkaz na", @@ -1189,11 +1653,13 @@ "PE.Views.HyperlinkSettingsDialog.txtNext": "Nasledujúca snímka", "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", "PE.Views.HyperlinkSettingsDialog.txtPrev": "Predchádzajúca snímka", + "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Toto pole je obmedzené na 2083 znakov", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Snímka", "PE.Views.ImageSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "PE.Views.ImageSettings.textCrop": "Orezať", "PE.Views.ImageSettings.textCropFill": "Vyplniť", "PE.Views.ImageSettings.textCropFit": "Prispôsobiť", + "PE.Views.ImageSettings.textCropToShape": "Orezať podľa tvaru", "PE.Views.ImageSettings.textEdit": "Upraviť", "PE.Views.ImageSettings.textEditObject": "Upraviť objekt", "PE.Views.ImageSettings.textFitSlide": "Prispôsobiť snímke", @@ -1207,7 +1673,8 @@ "PE.Views.ImageSettings.textHintFlipH": "Prevrátiť horizontálne", "PE.Views.ImageSettings.textHintFlipV": "Prevrátiť vertikálne", "PE.Views.ImageSettings.textInsert": "Nahradiť obrázok", - "PE.Views.ImageSettings.textOriginalSize": "Predvolená veľkosť", + "PE.Views.ImageSettings.textOriginalSize": "Aktuálna veľkosť", + "PE.Views.ImageSettings.textRecentlyUsed": "Nedávno použité", "PE.Views.ImageSettings.textRotate90": "Otočiť o 90°", "PE.Views.ImageSettings.textRotation": "Otočenie", "PE.Views.ImageSettings.textSize": "Veľkosť", @@ -1221,7 +1688,7 @@ "PE.Views.ImageSettingsAdvanced.textHeight": "Výška", "PE.Views.ImageSettingsAdvanced.textHorizontally": "Vodorovne", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Konštantné rozmery", - "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Predvolená veľkosť", + "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Aktuálna veľkosť", "PE.Views.ImageSettingsAdvanced.textPlacement": "Umiestnenie", "PE.Views.ImageSettingsAdvanced.textPosition": "Pozícia", "PE.Views.ImageSettingsAdvanced.textRotation": "Otočenie", @@ -1238,7 +1705,9 @@ "PE.Views.LeftMenu.tipSupport": "Spätná väzba a podpora", "PE.Views.LeftMenu.tipTitles": "Nadpisy", "PE.Views.LeftMenu.txtDeveloper": "VÝVOJÁRSKY REŽIM", + "PE.Views.LeftMenu.txtLimit": "Obmedziť prístup", "PE.Views.LeftMenu.txtTrial": "Skúšobný režim", + "PE.Views.LeftMenu.txtTrialDev": "Skúšobný vývojársky režim", "PE.Views.ParagraphSettings.strLineHeight": "Riadkovanie", "PE.Views.ParagraphSettings.strParagraphSpacing": "Riadkovanie medzi odstavcami", "PE.Views.ParagraphSettings.strSpacingAfter": "Za", @@ -1254,6 +1723,7 @@ "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie", "PE.Views.ParagraphSettingsAdvanced.strIndent": "Odsadenia", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Riadkovanie", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Za", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Pred", @@ -1273,6 +1743,7 @@ "PE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty", "PE.Views.ParagraphSettingsAdvanced.textExact": "Presne", "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Prvý riadok", + "PE.Views.ParagraphSettingsAdvanced.textHanging": "Závesný", "PE.Views.ParagraphSettingsAdvanced.textJustified": "Podľa okrajov", "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(žiadne)", "PE.Views.ParagraphSettingsAdvanced.textRemove": "Odstrániť", @@ -1286,8 +1757,9 @@ "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automaticky", "PE.Views.RightMenu.txtChartSettings": "Nastavenia grafu", "PE.Views.RightMenu.txtImageSettings": "Nastavenie obrázka", - "PE.Views.RightMenu.txtParagraphSettings": "Nastavenia textu", + "PE.Views.RightMenu.txtParagraphSettings": "Nastavenia odseku", "PE.Views.RightMenu.txtShapeSettings": "Nastavenia tvaru", + "PE.Views.RightMenu.txtSignatureSettings": "Nastavenia Podpisu", "PE.Views.RightMenu.txtSlideSettings": "Nastavenia snímky", "PE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky", "PE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art", @@ -1297,8 +1769,9 @@ "PE.Views.ShapeSettings.strFill": "Vyplniť", "PE.Views.ShapeSettings.strForeground": "Farba popredia", "PE.Views.ShapeSettings.strPattern": "Vzor", + "PE.Views.ShapeSettings.strShadow": "Ukázať tieň", "PE.Views.ShapeSettings.strSize": "Veľkosť", - "PE.Views.ShapeSettings.strStroke": "Obrys", + "PE.Views.ShapeSettings.strStroke": "Čiara", "PE.Views.ShapeSettings.strTransparency": "Priehľadnosť", "PE.Views.ShapeSettings.strType": "Typ", "PE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia", @@ -1321,15 +1794,19 @@ "PE.Views.ShapeSettings.textLinear": "Lineárny/čiarový", "PE.Views.ShapeSettings.textNoFill": "Bez výplne", "PE.Views.ShapeSettings.textPatternFill": "Vzor", + "PE.Views.ShapeSettings.textPosition": "Pozícia", "PE.Views.ShapeSettings.textRadial": "Kruhový/hviezdicovitý", + "PE.Views.ShapeSettings.textRecentlyUsed": "Nedávno použité", "PE.Views.ShapeSettings.textRotate90": "Otočiť o 90°", "PE.Views.ShapeSettings.textRotation": "Otočenie", + "PE.Views.ShapeSettings.textSelectImage": "Vybrať obrázok", "PE.Views.ShapeSettings.textSelectTexture": "Vybrať", "PE.Views.ShapeSettings.textStretch": "Roztiahnuť", "PE.Views.ShapeSettings.textStyle": "Štýl", "PE.Views.ShapeSettings.textTexture": "Z textúry", "PE.Views.ShapeSettings.textTile": "Dlaždica", "PE.Views.ShapeSettings.tipAddGradientPoint": "Pridať spádový bod", + "PE.Views.ShapeSettings.tipRemoveGradientPoint": "Odstrániť spádový bod", "PE.Views.ShapeSettings.txtBrownPaper": "Hnedý/baliaci papier", "PE.Views.ShapeSettings.txtCanvas": "Plátno", "PE.Views.ShapeSettings.txtCarton": "Kartón", @@ -1369,9 +1846,11 @@ "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Štýl čiary", "PE.Views.ShapeSettingsAdvanced.textMiter": "Sklon", "PE.Views.ShapeSettingsAdvanced.textNofit": "Neprispôsobovať automaticky", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Zmeniť veľkosť tvaru, aby zodpovedala textu", "PE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", "PE.Views.ShapeSettingsAdvanced.textRotation": "Otočenie", "PE.Views.ShapeSettingsAdvanced.textRound": "Zaoblené", + "PE.Views.ShapeSettingsAdvanced.textShrink": "V prípade pretečenia riadku orezať text", "PE.Views.ShapeSettingsAdvanced.textSize": "Veľkosť", "PE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami", "PE.Views.ShapeSettingsAdvanced.textSquare": "Štvorec", @@ -1383,16 +1862,24 @@ "PE.Views.ShapeSettingsAdvanced.textWidth": "Šírka", "PE.Views.ShapeSettingsAdvanced.txtNone": "Žiadny", "PE.Views.SignatureSettings.notcriticalErrorTitle": "Upozornenie", + "PE.Views.SignatureSettings.strDelete": "Odstrániť podpis", + "PE.Views.SignatureSettings.strDetails": "Podrobnosti podpisu", + "PE.Views.SignatureSettings.strInvalid": "Neplatné podpisy", "PE.Views.SignatureSettings.strSign": "Podpísať", "PE.Views.SignatureSettings.strSignature": "Podpis", + "PE.Views.SignatureSettings.strValid": "Platné podpisy", "PE.Views.SignatureSettings.txtContinueEditing": "Aj tak upraviť", "PE.Views.SignatureSettings.txtEditWarning": "Úprava odstráni podpisy z prezentácie.
Naozaj chcete pokračovať?", "PE.Views.SignatureSettings.txtRemoveWarning": "Chcete odstrániť tento podpis?
Nie je možné to vrátiť späť.", + "PE.Views.SignatureSettings.txtSigned": "Do prezentácie boli pridané platné podpisy. Je zabezpečená pred úpravámi. ", + "PE.Views.SignatureSettings.txtSignedInvalid": "Niektoré z digitálnych podpisov v prezentácií sú neplatné, alebo sa ich nepodarilo overiť. Prezentácia je zabezpečená proti úpravám.", "PE.Views.SlideSettings.strBackground": "Farba pozadia", "PE.Views.SlideSettings.strColor": "Farba", + "PE.Views.SlideSettings.strDateTime": "Zobraziť dátum a čas", "PE.Views.SlideSettings.strFill": "Pozadie", "PE.Views.SlideSettings.strForeground": "Farba popredia", "PE.Views.SlideSettings.strPattern": "Vzor", + "PE.Views.SlideSettings.strSlideNum": "Zobraziť čísla slajdov", "PE.Views.SlideSettings.strTransparency": "Priehľadnosť", "PE.Views.SlideSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "PE.Views.SlideSettings.textAngle": "Uhol", @@ -1408,14 +1895,17 @@ "PE.Views.SlideSettings.textLinear": "Lineárny/čiarový", "PE.Views.SlideSettings.textNoFill": "Bez výplne", "PE.Views.SlideSettings.textPatternFill": "Vzor", + "PE.Views.SlideSettings.textPosition": "Pozícia", "PE.Views.SlideSettings.textRadial": "Kruhový/hviezdicovitý", "PE.Views.SlideSettings.textReset": "Obnoviť zmeny", + "PE.Views.SlideSettings.textSelectImage": "Vybrať obrázok", "PE.Views.SlideSettings.textSelectTexture": "Vybrať", "PE.Views.SlideSettings.textStretch": "Roztiahnuť", "PE.Views.SlideSettings.textStyle": "Štýl", "PE.Views.SlideSettings.textTexture": "Z textúry", "PE.Views.SlideSettings.textTile": "Dlaždica", "PE.Views.SlideSettings.tipAddGradientPoint": "Pridať spádový bod", + "PE.Views.SlideSettings.tipRemoveGradientPoint": "Odstrániť spádový bod", "PE.Views.SlideSettings.txtBrownPaper": "Hnedý/baliaci papier", "PE.Views.SlideSettings.txtCanvas": "Plátno", "PE.Views.SlideSettings.txtCarton": "Kartón", @@ -1447,8 +1937,12 @@ "PE.Views.SlideSizeSettings.txtLetter": "Listový papier (8,5 x 11 palcov)", "PE.Views.SlideSizeSettings.txtOverhead": "Horný", "PE.Views.SlideSizeSettings.txtStandard": "Štandard (4:3)", + "PE.Views.SlideSizeSettings.txtWidescreen": "Širokouhlý", "PE.Views.Statusbar.goToPageText": "Prejsť na snímku", "PE.Views.Statusbar.pageIndexText": "Snímka {0} z {1}", + "PE.Views.Statusbar.textShowBegin": "Zobraziť od začiatku", + "PE.Views.Statusbar.textShowCurrent": "Zobraziť od aktuálneho slajdu", + "PE.Views.Statusbar.textShowPresenterView": "Zobraziť režim prezentácie", "PE.Views.Statusbar.tipAccessRights": "Spravovať prístupové práva k dokumentom", "PE.Views.Statusbar.tipFitPage": "Prispôsobiť snímke", "PE.Views.Statusbar.tipFitWidth": "Prispôsobiť na šírku", @@ -1505,6 +1999,12 @@ "PE.Views.TableSettings.txtNoBorders": "Bez orámovania", "PE.Views.TableSettings.txtTable_Accent": "Akcent", "PE.Views.TableSettings.txtTable_DarkStyle": "Tmavý štýl", + "PE.Views.TableSettings.txtTable_LightStyle": "Svetlý štýl", + "PE.Views.TableSettings.txtTable_MediumStyle": "Stredný štýl", + "PE.Views.TableSettings.txtTable_NoGrid": "Žiadna mriežka", + "PE.Views.TableSettings.txtTable_NoStyle": "Bez štýlu", + "PE.Views.TableSettings.txtTable_TableGrid": "Mriežka tabuľky", + "PE.Views.TableSettings.txtTable_ThemedStyle": "Téma štýlu", "PE.Views.TableSettingsAdvanced.textAlt": "Alternatívny text", "PE.Views.TableSettingsAdvanced.textAltDescription": "Popis", "PE.Views.TableSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", @@ -1524,7 +2024,7 @@ "PE.Views.TextArtSettings.strForeground": "Farba popredia", "PE.Views.TextArtSettings.strPattern": "Vzor", "PE.Views.TextArtSettings.strSize": "Veľkosť", - "PE.Views.TextArtSettings.strStroke": "Obrys", + "PE.Views.TextArtSettings.strStroke": "Čiara", "PE.Views.TextArtSettings.strTransparency": "Priehľadnosť", "PE.Views.TextArtSettings.strType": "Typ", "PE.Views.TextArtSettings.textAngle": "Uhol", @@ -1540,6 +2040,7 @@ "PE.Views.TextArtSettings.textLinear": "Lineárny/čiarový", "PE.Views.TextArtSettings.textNoFill": "Bez výplne", "PE.Views.TextArtSettings.textPatternFill": "Vzor", + "PE.Views.TextArtSettings.textPosition": "Pozícia", "PE.Views.TextArtSettings.textRadial": "Kruhový/hviezdicovitý", "PE.Views.TextArtSettings.textSelectTexture": "Vybrať", "PE.Views.TextArtSettings.textStretch": "Roztiahnuť", @@ -1549,6 +2050,7 @@ "PE.Views.TextArtSettings.textTile": "Dlaždica", "PE.Views.TextArtSettings.textTransform": "Transformovať", "PE.Views.TextArtSettings.tipAddGradientPoint": "Pridať spádový bod", + "PE.Views.TextArtSettings.tipRemoveGradientPoint": "Odstrániť spádový bod", "PE.Views.TextArtSettings.txtBrownPaper": "Hnedý/baliaci papier", "PE.Views.TextArtSettings.txtCanvas": "Plátno", "PE.Views.TextArtSettings.txtCarton": "Kartón", @@ -1585,9 +2087,14 @@ "PE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru", "PE.Views.Toolbar.mniImageFromStorage": "Obrázok z úložiska", "PE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy", + "PE.Views.Toolbar.mniLowerCase": "malé písmena", + "PE.Views.Toolbar.mniSentenceCase": "Veľké písmeno na začiatku vety.", "PE.Views.Toolbar.mniSlideAdvanced": "Pokročilé nastavenia", "PE.Views.Toolbar.mniSlideStandard": "Štandard (4:3)", "PE.Views.Toolbar.mniSlideWide": "Širokouhlý (16:9)", + "PE.Views.Toolbar.mniToggleCase": "zAMENIŤ mALÉ a vEĽKÉ", + "PE.Views.Toolbar.mniUpperCase": "VEĽKÉ PÍSMENÁ", + "PE.Views.Toolbar.strMenuNoFill": "Bez výplne", "PE.Views.Toolbar.textAlignBottom": "Zarovnať text nadol", "PE.Views.Toolbar.textAlignCenter": "Vycentrovať text", "PE.Views.Toolbar.textAlignJust": "Zarovnať/nastaviť", @@ -1601,7 +2108,12 @@ "PE.Views.Toolbar.textArrangeFront": "Premiestniť do popredia", "PE.Views.Toolbar.textBold": "Tučné", "PE.Views.Toolbar.textColumnsCustom": "Vlastné stĺpce", + "PE.Views.Toolbar.textColumnsOne": "Jeden stĺpec", + "PE.Views.Toolbar.textColumnsThree": "Tri stĺpce", + "PE.Views.Toolbar.textColumnsTwo": "Dva stĺpce", "PE.Views.Toolbar.textItalic": "Kurzíva", + "PE.Views.Toolbar.textListSettings": "Nastavenia zoznamu", + "PE.Views.Toolbar.textRecentlyUsed": "Nedávno použité", "PE.Views.Toolbar.textShapeAlignBottom": "Zarovnať dole", "PE.Views.Toolbar.textShapeAlignCenter": "Centrovať", "PE.Views.Toolbar.textShapeAlignLeft": "Zarovnať doľava", @@ -1615,11 +2127,14 @@ "PE.Views.Toolbar.textStrikeout": "Prečiarknuť", "PE.Views.Toolbar.textSubscript": "Dolný index", "PE.Views.Toolbar.textSuperscript": "Horný index", + "PE.Views.Toolbar.textTabAnimation": "Animácie", "PE.Views.Toolbar.textTabCollaboration": "Spolupráca", "PE.Views.Toolbar.textTabFile": "Súbor", "PE.Views.Toolbar.textTabHome": "Hlavná stránka", "PE.Views.Toolbar.textTabInsert": "Vložiť", "PE.Views.Toolbar.textTabProtect": "Ochrana", + "PE.Views.Toolbar.textTabTransitions": "Prechod", + "PE.Views.Toolbar.textTabView": "Zobraziť", "PE.Views.Toolbar.textTitleError": "Chyba", "PE.Views.Toolbar.textUnderline": "Podčiarknuť", "PE.Views.Toolbar.tipAddSlide": "Pridať snímku", @@ -1629,8 +2144,10 @@ "PE.Views.Toolbar.tipChangeSlide": "Zmeniť usporiadanie snímky", "PE.Views.Toolbar.tipClearStyle": "Vymazať štýl", "PE.Views.Toolbar.tipColorSchemas": "Zmeniť farebnú schému", + "PE.Views.Toolbar.tipColumns": "Vložiť stĺpce", "PE.Views.Toolbar.tipCopy": "Kopírovať", "PE.Views.Toolbar.tipCopyStyle": "Kopírovať štýl", + "PE.Views.Toolbar.tipDateTime": "Vložiť aktuálny dátum a čas", "PE.Views.Toolbar.tipDecFont": "Zmenšiť veľkosť písma", "PE.Views.Toolbar.tipDecPrLeft": "Zmenšiť zarážku", "PE.Views.Toolbar.tipEditHeader": "Upraviť pätu", @@ -1638,8 +2155,10 @@ "PE.Views.Toolbar.tipFontName": "Písmo", "PE.Views.Toolbar.tipFontSize": "Veľkosť písma", "PE.Views.Toolbar.tipHAligh": "Horizontálne zarovnanie", + "PE.Views.Toolbar.tipHighlightColor": "Farba zvýraznenia", "PE.Views.Toolbar.tipIncFont": "Zväčšiť veľkosť písma", "PE.Views.Toolbar.tipIncPrLeft": "Zväčšiť zarážku", + "PE.Views.Toolbar.tipInsertAudio": "Vložiť zvuk", "PE.Views.Toolbar.tipInsertChart": "Vložiť graf", "PE.Views.Toolbar.tipInsertEquation": "Vložiť rovnicu", "PE.Views.Toolbar.tipInsertHyperlink": "Pridať odkaz", @@ -1647,10 +2166,19 @@ "PE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar", "PE.Views.Toolbar.tipInsertSymbol": "Vložiť symbol", "PE.Views.Toolbar.tipInsertTable": "Vložiť tabuľku", - "PE.Views.Toolbar.tipInsertText": "Vložiť text", + "PE.Views.Toolbar.tipInsertText": "Vložiť textové pole", "PE.Views.Toolbar.tipInsertTextArt": "Vložiť Text Art", + "PE.Views.Toolbar.tipInsertVideo": "Vložiť video", "PE.Views.Toolbar.tipLineSpace": "Riadkovanie", "PE.Views.Toolbar.tipMarkers": "Odrážky", + "PE.Views.Toolbar.tipMarkersArrow": "Šípkové odrážky", + "PE.Views.Toolbar.tipMarkersCheckmark": "Začiarknuteľné odrážky", + "PE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky", + "PE.Views.Toolbar.tipMarkersFRhombus": "Kosoštvorcové odrážky s výplňou", + "PE.Views.Toolbar.tipMarkersFRound": "Vyplnené okrúhle odrážky", + "PE.Views.Toolbar.tipMarkersFSquare": "Vyplnené štvorcové odrážky", + "PE.Views.Toolbar.tipMarkersHRound": "Prázdne okrúhle odrážky", + "PE.Views.Toolbar.tipMarkersStar": "Hviezdičkové odrážky", "PE.Views.Toolbar.tipNumbers": "Číslovanie", "PE.Views.Toolbar.tipPaste": "Vložiť", "PE.Views.Toolbar.tipPreview": "Spustiť prezentáciu", @@ -1660,6 +2188,7 @@ "PE.Views.Toolbar.tipSaveCoauth": "Uložte zmeny, aby ich videli aj ostatní používatelia.", "PE.Views.Toolbar.tipShapeAlign": "Zarovnať tvar", "PE.Views.Toolbar.tipShapeArrange": "Usporiadať tvar", + "PE.Views.Toolbar.tipSlideNum": "Vložiť číslo slajdu", "PE.Views.Toolbar.tipSlideSize": "Vyberte veľkosť snímku", "PE.Views.Toolbar.tipSlideTheme": "Téma snímky", "PE.Views.Toolbar.tipUndo": "Krok späť", @@ -1667,6 +2196,7 @@ "PE.Views.Toolbar.tipViewSettings": "Zobraziť nastavenia", "PE.Views.Toolbar.txtDistribHor": "Rozložiť horizontálne", "PE.Views.Toolbar.txtDistribVert": "Rozložiť vertikálne", + "PE.Views.Toolbar.txtDuplicateSlide": "Kopírovať snímku", "PE.Views.Toolbar.txtGroup": "Skupina", "PE.Views.Toolbar.txtObjectsAlign": "Zarovnať označené objekty", "PE.Views.Toolbar.txtScheme1": "Kancelária", @@ -1683,6 +2213,7 @@ "PE.Views.Toolbar.txtScheme2": "Odtiene sivej", "PE.Views.Toolbar.txtScheme20": "Mestský", "PE.Views.Toolbar.txtScheme21": "Elán", + "PE.Views.Toolbar.txtScheme22": "Nová kancelária", "PE.Views.Toolbar.txtScheme3": "Vrchol", "PE.Views.Toolbar.txtScheme4": "Aspekt", "PE.Views.Toolbar.txtScheme5": "Občiansky", @@ -1694,6 +2225,8 @@ "PE.Views.Toolbar.txtUngroup": "Oddeliť", "PE.Views.Transitions.strDelay": "Oneskorenie", "PE.Views.Transitions.strDuration": "Trvanie", + "PE.Views.Transitions.strStartOnClick": "Začať kliknutím", + "PE.Views.Transitions.textBlack": "Prostredníctvom čiernej", "PE.Views.Transitions.textBottom": "Dole", "PE.Views.Transitions.textBottomLeft": "Dole-vľavo", "PE.Views.Transitions.textBottomRight": "Dole-vpravo", @@ -1705,6 +2238,7 @@ "PE.Views.Transitions.textHorizontalIn": "Horizontálne dnu", "PE.Views.Transitions.textHorizontalOut": "Horizontálne von", "PE.Views.Transitions.textLeft": "Vľavo", + "PE.Views.Transitions.textNone": "žiadny", "PE.Views.Transitions.textPush": "Posunúť", "PE.Views.Transitions.textRight": "Vpravo", "PE.Views.Transitions.textSmoothly": "Plynule", @@ -1715,11 +2249,22 @@ "PE.Views.Transitions.textUnCover": "Odkryť", "PE.Views.Transitions.textVerticalIn": "Vertikálne dnu", "PE.Views.Transitions.textVerticalOut": "Vertikálne von", + "PE.Views.Transitions.textWedge": "Konjunkcia", "PE.Views.Transitions.textWipe": "Rozotrieť", + "PE.Views.Transitions.textZoom": "Priblíženie", "PE.Views.Transitions.textZoomIn": "Priblížiť", "PE.Views.Transitions.textZoomOut": "Oddialiť", "PE.Views.Transitions.textZoomRotate": "Priblížiť a otáčať", "PE.Views.Transitions.txtApplyToAll": "Použiť na všetky snímky", + "PE.Views.Transitions.txtParameters": "Parametre", "PE.Views.Transitions.txtPreview": "Náhľad", - "PE.Views.Transitions.txtSec": "S" + "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "Vždy zobrazovať panel nástrojov", + "PE.Views.ViewTab.textFitToSlide": "Prispôsobiť snímke", + "PE.Views.ViewTab.textFitToWidth": "Prispôsobiť na šírku", + "PE.Views.ViewTab.textInterfaceTheme": "Vzhľad prostredia", + "PE.Views.ViewTab.textNotes": "Poznámky", + "PE.Views.ViewTab.textRulers": "Pravítka", + "PE.Views.ViewTab.textStatusBar": "Stavový riadok", + "PE.Views.ViewTab.textZoom": "Priblíženie" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json index 19b96411d..adb5c8ed2 100644 --- a/apps/presentationeditor/main/locale/sl.json +++ b/apps/presentationeditor/main/locale/sl.json @@ -28,6 +28,7 @@ "Common.define.chartData.textPoint": "Točkovni grafikon", "Common.define.chartData.textStock": "Založni grafikon", "Common.Translation.warnFileLockedBtnEdit": "Ustvari kopijo", + "Common.UI.ButtonColored.textNewColor": "Dodaj novo barvo po meri", "Common.UI.ComboBorderSize.txtNoBorders": "Ni mej", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej", "Common.UI.ComboDataView.emptyComboText": "Ni slogov", diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index 872a68309..4402dba57 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -179,6 +179,7 @@ "Common.define.effectData.textSCurve1": "S kurva 1", "Common.define.effectData.textSCurve2": "S kurva 2", "Common.define.effectData.textShape": "Form", + "Common.define.effectData.textShapes": "Former", "Common.define.effectData.textShimmer": "Skimmer", "Common.define.effectData.textShrinkTurn": "Krymp och sväng", "Common.define.effectData.textSineWave": "Sinusvåg", @@ -238,7 +239,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia", "Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad", "Common.UI.ButtonColored.textAutoColor": "Automatisk", - "Common.UI.ButtonColored.textNewColor": "Lägg till ny anpassad färg", + "Common.UI.ButtonColored.textNewColor": "Lägg till ny egen färg", "Common.UI.ComboBorderSize.txtNoBorders": "Inga ramar", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Inga ramar", "Common.UI.ComboDataView.emptyComboText": "Inga stilar", @@ -2168,6 +2169,14 @@ "PE.Views.Toolbar.tipInsertVideo": "Infoga video", "PE.Views.Toolbar.tipLineSpace": "Radavstånd", "PE.Views.Toolbar.tipMarkers": "Punktlista", + "PE.Views.Toolbar.tipMarkersArrow": "Pil punkter", + "PE.Views.Toolbar.tipMarkersCheckmark": "Bock punkt", + "PE.Views.Toolbar.tipMarkersDash": "Sträck punkter", + "PE.Views.Toolbar.tipMarkersFRhombus": "Fyllda romb punkter", + "PE.Views.Toolbar.tipMarkersFRound": "Fyllda runda punkter", + "PE.Views.Toolbar.tipMarkersFSquare": "Fyllda kvadratiska punkter", + "PE.Views.Toolbar.tipMarkersHRound": "Ofyllda runda punkter", + "PE.Views.Toolbar.tipMarkersStar": "Stjärn punkter", "PE.Views.Toolbar.tipNumbers": "Numrering", "PE.Views.Toolbar.tipPaste": "Klistra in", "PE.Views.Toolbar.tipPreview": "Starta visning", diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index 0697945bb..617cf052f 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -1199,6 +1199,7 @@ "PE.Views.Animation.strDelay": "Geciktir", "PE.Views.Animation.strDuration": "Süre", "PE.Views.Animation.strRepeat": "Tekrar", + "PE.Views.Animation.textNoRepeat": "(hiçbiri)", "PE.Views.Animation.textStartAfterPrevious": "Öncekinden Sonra", "PE.Views.Animation.txtAddEffect": "Animasyon ekle", "PE.Views.Animation.txtAnimationPane": "Animasyon Bölmesi", @@ -2062,6 +2063,14 @@ "PE.Views.Toolbar.tipInsertVideo": "Video ekle", "PE.Views.Toolbar.tipLineSpace": "Satır Aralığı", "PE.Views.Toolbar.tipMarkers": "Maddeler", + "PE.Views.Toolbar.tipMarkersArrow": "Ok işaretleri", + "PE.Views.Toolbar.tipMarkersCheckmark": "Onay işaretleri", + "PE.Views.Toolbar.tipMarkersDash": "Çizgi işaretleri", + "PE.Views.Toolbar.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler", + "PE.Views.Toolbar.tipMarkersFRound": "Dolu yuvarlak işaretler", + "PE.Views.Toolbar.tipMarkersFSquare": "Dolu kare işaretler", + "PE.Views.Toolbar.tipMarkersHRound": "İçi boş daire işaretler", + "PE.Views.Toolbar.tipMarkersStar": "Yıldız işaretleri", "PE.Views.Toolbar.tipNumbers": "Numaralandırma", "PE.Views.Toolbar.tipPaste": "Yapıştır", "PE.Views.Toolbar.tipPreview": "Önizlemeye Başla", diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 369556469..71bdf15b6 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -179,6 +179,7 @@ "Common.define.effectData.textSCurve1": "Синусоїда 1", "Common.define.effectData.textSCurve2": "Синусоїда 2", "Common.define.effectData.textShape": "Фігура", + "Common.define.effectData.textShapes": "Фігури", "Common.define.effectData.textShimmer": "Мерехтіння", "Common.define.effectData.textShrinkTurn": "Зменшення з поворотом", "Common.define.effectData.textSineWave": "Часта синусоїда", @@ -238,7 +239,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Створити копію", "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", "Common.UI.ButtonColored.textAutoColor": "Автоматичний", - "Common.UI.ButtonColored.textNewColor": "Додати новий спеціальний колір", + "Common.UI.ButtonColored.textNewColor": "Новий спеціальний колір", "Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів", "Common.UI.ComboDataView.emptyComboText": "Немає стилів", @@ -2168,6 +2169,14 @@ "PE.Views.Toolbar.tipInsertVideo": "Вставити відео", "PE.Views.Toolbar.tipLineSpace": "Лінія інтервалу", "PE.Views.Toolbar.tipMarkers": "Кулі", + "PE.Views.Toolbar.tipMarkersArrow": "Маркери-стрілки", + "PE.Views.Toolbar.tipMarkersCheckmark": "Маркери-галочки", + "PE.Views.Toolbar.tipMarkersDash": "Маркери-тире", + "PE.Views.Toolbar.tipMarkersFRhombus": "Заповнені ромбоподібні маркери", + "PE.Views.Toolbar.tipMarkersFRound": "Заповнені круглі маркери", + "PE.Views.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери", + "PE.Views.Toolbar.tipMarkersHRound": "Пусті круглі маркери", + "PE.Views.Toolbar.tipMarkersStar": "Маркери-зірочки", "PE.Views.Toolbar.tipNumbers": "Нумерація", "PE.Views.Toolbar.tipPaste": "Вставити", "PE.Views.Toolbar.tipPreview": "Розпочати слайдшоу", diff --git a/apps/presentationeditor/main/locale/vi.json b/apps/presentationeditor/main/locale/vi.json index ef3a77646..0f5d13d80 100644 --- a/apps/presentationeditor/main/locale/vi.json +++ b/apps/presentationeditor/main/locale/vi.json @@ -13,6 +13,7 @@ "Common.define.chartData.textPoint": "XY (Phân tán)", "Common.define.chartData.textStock": "Cổ phiếu", "Common.define.chartData.textSurface": "Bề mặt", + "Common.UI.ButtonColored.textNewColor": "Màu tùy chỉnh", "Common.UI.ComboBorderSize.txtNoBorders": "Không viền", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền", "Common.UI.ComboDataView.emptyComboText": "Không có kiểu", diff --git a/apps/presentationeditor/main/locale/zh-TW.json b/apps/presentationeditor/main/locale/zh-TW.json new file mode 100644 index 000000000..9289317a3 --- /dev/null +++ b/apps/presentationeditor/main/locale/zh-TW.json @@ -0,0 +1,2274 @@ +{ + "Common.Controllers.Chat.notcriticalErrorTitle": "警告", + "Common.Controllers.Chat.textEnterMessage": "在這裡輸入您的信息", + "Common.Controllers.ExternalDiagramEditor.textAnonymous": "匿名", + "Common.Controllers.ExternalDiagramEditor.textClose": "關閉", + "Common.Controllers.ExternalDiagramEditor.warningText": "該對像被禁用,因為它正在由另一個用戶編輯。", + "Common.Controllers.ExternalDiagramEditor.warningTitle": "警告", + "Common.define.chartData.textArea": "區域", + "Common.define.chartData.textAreaStacked": "堆叠面積", + "Common.define.chartData.textAreaStackedPer": "100% 堆疊面積圖", + "Common.define.chartData.textBar": "槓", + "Common.define.chartData.textBarNormal": "劇集柱形", + "Common.define.chartData.textBarNormal3d": "3D劇集柱形", + "Common.define.chartData.textBarNormal3dPerspective": "3-D 直式長條圖", + "Common.define.chartData.textBarStacked": "堆叠柱形", + "Common.define.chartData.textBarStacked3d": "3D堆叠柱形", + "Common.define.chartData.textBarStackedPer": "100%堆叠柱形", + "Common.define.chartData.textBarStackedPer3d": "3-D 100% 堆疊直式長條圖", + "Common.define.chartData.textCharts": "圖表", + "Common.define.chartData.textColumn": "欄", + "Common.define.chartData.textCombo": "組合", + "Common.define.chartData.textComboAreaBar": "堆叠面積 - 劇集柱形", + "Common.define.chartData.textComboBarLine": "劇集柱形 - 綫", + "Common.define.chartData.textComboBarLineSecondary": "劇集柱形 - 副軸綫", + "Common.define.chartData.textComboCustom": "自訂組合", + "Common.define.chartData.textDoughnut": "甜甜圈圖", + "Common.define.chartData.textHBarNormal": "劇集條形", + "Common.define.chartData.textHBarNormal3d": "3D劇集條形", + "Common.define.chartData.textHBarStacked": "堆叠條形", + "Common.define.chartData.textHBarStacked3d": "3D堆叠條形", + "Common.define.chartData.textHBarStackedPer": "100%堆叠條形", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% 堆疊橫式長條圖", + "Common.define.chartData.textLine": "線", + "Common.define.chartData.textLine3d": "3-D 直線圖", + "Common.define.chartData.textLineMarker": "直線加標記", + "Common.define.chartData.textLineStacked": "堆叠綫", + "Common.define.chartData.textLineStackedMarker": "堆積綫及標記", + "Common.define.chartData.textLineStackedPer": "100%堆叠綫", + "Common.define.chartData.textLineStackedPerMarker": "100% 堆疊直線圖加標記", + "Common.define.chartData.textPie": "餅", + "Common.define.chartData.textPie3d": "3-D 圓餅圖", + "Common.define.chartData.textPoint": "XY(散點圖)", + "Common.define.chartData.textScatter": "散佈圖", + "Common.define.chartData.textScatterLine": "散佈圖同直線", + "Common.define.chartData.textScatterLineMarker": "散佈圖同直線及標記", + "Common.define.chartData.textScatterSmooth": "散佈圖同平滑線", + "Common.define.chartData.textScatterSmoothMarker": "散佈圖同平滑線及標記", + "Common.define.chartData.textStock": "庫存", + "Common.define.chartData.textSurface": "表面", + "Common.define.effectData.textAcross": "橫向", + "Common.define.effectData.textAppear": "顯示", + "Common.define.effectData.textArcDown": "弧形下彎", + "Common.define.effectData.textArcLeft": "弧形左彎", + "Common.define.effectData.textArcRight": "弧形右彎", + "Common.define.effectData.textArcUp": "弧形上彎", + "Common.define.effectData.textBasic": "基本的", + "Common.define.effectData.textBasicSwivel": "簡版漩渦", + "Common.define.effectData.textBasicZoom": "基礎縮放", + "Common.define.effectData.textBean": "豆豆", + "Common.define.effectData.textBlinds": "百葉窗", + "Common.define.effectData.textBlink": "閃爍", + "Common.define.effectData.textBoldFlash": "加深閃爍", + "Common.define.effectData.textBoldReveal": "加深顯示", + "Common.define.effectData.textBoomerang": "回飛鏢", + "Common.define.effectData.textBounce": "反彈", + "Common.define.effectData.textBounceLeft": "左反彈", + "Common.define.effectData.textBounceRight": "右反彈", + "Common.define.effectData.textBox": "方形", + "Common.define.effectData.textBrushColor": "畫筆色彩", + "Common.define.effectData.textCenterRevolve": "中心旋轉", + "Common.define.effectData.textCheckerboard": "棋盤", + "Common.define.effectData.textCircle": "圓形", + "Common.define.effectData.textCollapse": "縮小", + "Common.define.effectData.textColorPulse": "色彩頻率", + "Common.define.effectData.textComplementaryColor": "互補色", + "Common.define.effectData.textComplementaryColor2": "互補色2", + "Common.define.effectData.textCompress": "壓縮", + "Common.define.effectData.textContrast": "對比", + "Common.define.effectData.textContrastingColor": "對比色", + "Common.define.effectData.textCredits": "來源出處", + "Common.define.effectData.textCrescentMoon": "弦月形", + "Common.define.effectData.textCurveDown": "弧形向下", + "Common.define.effectData.textCurvedSquare": "圓角正方形", + "Common.define.effectData.textCurvedX": "曲線X", + "Common.define.effectData.textCurvyLeft": "自左曲線", + "Common.define.effectData.textCurvyRight": "自右曲線", + "Common.define.effectData.textCurvyStar": "曲形星星", + "Common.define.effectData.textCustomPath": "客制路徑", + "Common.define.effectData.textCuverUp": "弧形向上", + "Common.define.effectData.textDarken": "加深", + "Common.define.effectData.textDecayingWave": "弱減波", + "Common.define.effectData.textDesaturate": "色彩不飽和", + "Common.define.effectData.textDiagonalDownRight": "對角向右下", + "Common.define.effectData.textDiagonalUpRight": "對角向右上", + "Common.define.effectData.textDiamond": "鑽石", + "Common.define.effectData.textDisappear": "消失", + "Common.define.effectData.textDissolveIn": "平滑淡出", + "Common.define.effectData.textDissolveOut": "淡出切換", + "Common.define.effectData.textDown": "下", + "Common.define.effectData.textDrop": "落下", + "Common.define.effectData.textEmphasis": "加強特效", + "Common.define.effectData.textEntrance": "進場特效", + "Common.define.effectData.textEqualTriangle": "等邊三角形", + "Common.define.effectData.textExciting": "華麗", + "Common.define.effectData.textExit": "離開特效", + "Common.define.effectData.textExpand": "擴大", + "Common.define.effectData.textFade": "褪", + "Common.define.effectData.textFigureFour": "雙8圖", + "Common.define.effectData.textFillColor": "填色", + "Common.define.effectData.textFlip": "翻轉", + "Common.define.effectData.textFloat": "漂浮", + "Common.define.effectData.textFloatDown": "向下浮動", + "Common.define.effectData.textFloatIn": "漂浮進入", + "Common.define.effectData.textFloatOut": "漂浮出去", + "Common.define.effectData.textFloatUp": "向上浮動", + "Common.define.effectData.textFlyIn": "飛入", + "Common.define.effectData.textFlyOut": "飛出", + "Common.define.effectData.textFontColor": "字體顏色", + "Common.define.effectData.textFootball": "足球形", + "Common.define.effectData.textFromBottom": "自下而上", + "Common.define.effectData.textFromBottomLeft": "從左下", + "Common.define.effectData.textFromBottomRight": "從右下", + "Common.define.effectData.textFromLeft": "從左邊", + "Common.define.effectData.textFromRight": "從右邊", + "Common.define.effectData.textFromTop": "自上", + "Common.define.effectData.textFromTopLeft": "自左上", + "Common.define.effectData.textFromTopRight": "自右上", + "Common.define.effectData.textFunnel": "漏斗", + "Common.define.effectData.textGrowShrink": "放大/縮小", + "Common.define.effectData.textGrowTurn": "延展及翻轉", + "Common.define.effectData.textGrowWithColor": "顏色伸展", + "Common.define.effectData.textHeart": "心", + "Common.define.effectData.textHeartbeat": "心跳圖", + "Common.define.effectData.textHexagon": "六邊形", + "Common.define.effectData.textHorizontal": "水平", + "Common.define.effectData.textHorizontalFigure": "水平數字8", + "Common.define.effectData.textHorizontalIn": "水平", + "Common.define.effectData.textHorizontalOut": "水平向外", + "Common.define.effectData.textIn": "在", + "Common.define.effectData.textInFromScreenCenter": "從螢幕中心展開", + "Common.define.effectData.textInSlightly": "微量放大", + "Common.define.effectData.textInToScreenCenter": "從外縮到螢幕中心", + "Common.define.effectData.textInvertedSquare": "反向正方形", + "Common.define.effectData.textInvertedTriangle": "反向三角形", + "Common.define.effectData.textLeft": "左", + "Common.define.effectData.textLeftDown": "左下", + "Common.define.effectData.textLeftUp": "左上", + "Common.define.effectData.textLighten": "淡化", + "Common.define.effectData.textLineColor": "線條顏色", + "Common.define.effectData.textLines": "線", + "Common.define.effectData.textLinesCurves": "直線曲線", + "Common.define.effectData.textLoopDeLoop": "漣漪", + "Common.define.effectData.textModerate": "中等", + "Common.define.effectData.textNeutron": "中子", + "Common.define.effectData.textObjectCenter": "物件中心", + "Common.define.effectData.textObjectColor": "物件色彩", + "Common.define.effectData.textOctagon": "八邊形", + "Common.define.effectData.textOut": "外", + "Common.define.effectData.textOutFromScreenBottom": "從螢幕下縮小", + "Common.define.effectData.textOutSlightly": "微量縮小", + "Common.define.effectData.textParallelogram": "平行四邊形", + "Common.define.effectData.textPath": "動態路徑", + "Common.define.effectData.textPeanut": "花生", + "Common.define.effectData.textPeekIn": "向內", + "Common.define.effectData.textPeekOut": "向外", + "Common.define.effectData.textPentagon": "五角形", + "Common.define.effectData.textPinwheel": "風車", + "Common.define.effectData.textPlus": "加", + "Common.define.effectData.textPointStar": "點星", + "Common.define.effectData.textPointStar4": "4點星", + "Common.define.effectData.textPointStar5": "5點星", + "Common.define.effectData.textPointStar6": "6點星", + "Common.define.effectData.textPointStar8": "8點星", + "Common.define.effectData.textPulse": "頻率", + "Common.define.effectData.textRandomBars": "隨機線條", + "Common.define.effectData.textRight": "右", + "Common.define.effectData.textRightDown": "右下", + "Common.define.effectData.textRightTriangle": "直角三角形", + "Common.define.effectData.textRightUp": "右上", + "Common.define.effectData.textRiseUp": "升起", + "Common.define.effectData.textSCurve1": "S曲線1", + "Common.define.effectData.textSCurve2": "S曲線2", + "Common.define.effectData.textShape": "形状", + "Common.define.effectData.textShapes": "形狀", + "Common.define.effectData.textShimmer": "閃爍", + "Common.define.effectData.textShrinkTurn": "縮小並旋轉", + "Common.define.effectData.textSineWave": "正弦波", + "Common.define.effectData.textSinkDown": "向下漂浮", + "Common.define.effectData.textSlideCenter": "投影片中心", + "Common.define.effectData.textSpecial": "特殊", + "Common.define.effectData.textSpin": "旋轉", + "Common.define.effectData.textSpinner": "迴旋鏢", + "Common.define.effectData.textSpiralIn": "螺旋向內", + "Common.define.effectData.textSpiralLeft": "自左螺旋", + "Common.define.effectData.textSpiralOut": "螺旋向外", + "Common.define.effectData.textSpiralRight": "自右螺旋", + "Common.define.effectData.textSplit": "分割", + "Common.define.effectData.textSpoke1": "1輪幅條", + "Common.define.effectData.textSpoke2": "2輪幅條", + "Common.define.effectData.textSpoke3": "3輪幅條", + "Common.define.effectData.textSpoke4": "4輪幅條", + "Common.define.effectData.textSpoke8": "8輪幅條", + "Common.define.effectData.textSpring": "彈跳", + "Common.define.effectData.textSquare": "正方形", + "Common.define.effectData.textStairsDown": "向下階梯", + "Common.define.effectData.textStretch": "延伸", + "Common.define.effectData.textStrips": "階梯狀", + "Common.define.effectData.textSubtle": "輕微", + "Common.define.effectData.textSwivel": "漩渦", + "Common.define.effectData.textSwoosh": "旋轉", + "Common.define.effectData.textTeardrop": "淚珠", + "Common.define.effectData.textTeeter": "落下", + "Common.define.effectData.textToBottom": "自下", + "Common.define.effectData.textToBottomLeft": "自左下", + "Common.define.effectData.textToBottomRight": "自右下", + "Common.define.effectData.textToFromScreenBottom": "縮小到螢幕下方", + "Common.define.effectData.textToLeft": "自左", + "Common.define.effectData.textToRight": "自右", + "Common.define.effectData.textToTop": "自上", + "Common.define.effectData.textToTopLeft": "從左上", + "Common.define.effectData.textToTopRight": "從右上", + "Common.define.effectData.textTransparency": "透明度", + "Common.define.effectData.textTrapezoid": "梯形", + "Common.define.effectData.textTurnDown": "向下轉", + "Common.define.effectData.textTurnDownRight": "向右下轉", + "Common.define.effectData.textTurnUp": "向上轉", + "Common.define.effectData.textTurnUpRight": "向右上轉", + "Common.define.effectData.textUnderline": "底線", + "Common.define.effectData.textUp": "上", + "Common.define.effectData.textVertical": "垂直", + "Common.define.effectData.textVerticalFigure": "垂直數字8", + "Common.define.effectData.textVerticalIn": "垂直", + "Common.define.effectData.textVerticalOut": "由中向左右", + "Common.define.effectData.textWave": "波", + "Common.define.effectData.textWedge": "楔", + "Common.define.effectData.textWheel": "輪型", + "Common.define.effectData.textWhip": "猛然挪動", + "Common.define.effectData.textWipe": "擦去", + "Common.define.effectData.textZigzag": "鋸齒邊緣", + "Common.define.effectData.textZoom": "放大", + "Common.Translation.warnFileLocked": "該文件正在另一個應用程序中進行編輯。您可以繼續編輯並將其另存為副本。", + "Common.Translation.warnFileLockedBtnEdit": "\n建立副本", + "Common.Translation.warnFileLockedBtnView": "打開查看", + "Common.UI.ButtonColored.textAutoColor": "自動", + "Common.UI.ButtonColored.textNewColor": "新增自訂顏色", + "Common.UI.ComboBorderSize.txtNoBorders": "無邊框", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "無邊框", + "Common.UI.ComboDataView.emptyComboText": "無樣式", + "Common.UI.ExtendedColorDialog.addButtonText": "增加", + "Common.UI.ExtendedColorDialog.textCurrent": "當前", + "Common.UI.ExtendedColorDialog.textHexErr": "輸入的值不正確。
請輸入一個介於000000和FFFFFF之間的值。", + "Common.UI.ExtendedColorDialog.textNew": "新", + "Common.UI.ExtendedColorDialog.textRGBErr": "輸入的值不正確。
請輸入0到255之間的數字。", + "Common.UI.HSBColorPicker.textNoColor": "無顏色", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "不顯示密碼", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "顯示密碼", + "Common.UI.SearchDialog.textHighlight": "強調結果", + "Common.UI.SearchDialog.textMatchCase": "區分大小寫", + "Common.UI.SearchDialog.textReplaceDef": "輸入替換文字", + "Common.UI.SearchDialog.textSearchStart": "在這裡輸入您的文字", + "Common.UI.SearchDialog.textTitle": "尋找與取代", + "Common.UI.SearchDialog.textTitle2": "尋找", + "Common.UI.SearchDialog.textWholeWords": "僅全字", + "Common.UI.SearchDialog.txtBtnHideReplace": "隱藏替換", + "Common.UI.SearchDialog.txtBtnReplace": "取代", + "Common.UI.SearchDialog.txtBtnReplaceAll": "取代全部", + "Common.UI.SynchronizeTip.textDontShow": "不再顯示此消息", + "Common.UI.SynchronizeTip.textSynchronize": "該文檔已被其他用戶更改。
請單擊以保存更改並重新加載更新。", + "Common.UI.ThemeColorPalette.textStandartColors": "標準顏色", + "Common.UI.ThemeColorPalette.textThemeColors": "主題顏色", + "Common.UI.Themes.txtThemeClassicLight": "傳統亮色", + "Common.UI.Themes.txtThemeDark": "暗", + "Common.UI.Themes.txtThemeLight": "淺色主題", + "Common.UI.Window.cancelButtonText": "取消", + "Common.UI.Window.closeButtonText": "關閉", + "Common.UI.Window.noButtonText": "沒有", + "Common.UI.Window.okButtonText": "確定", + "Common.UI.Window.textConfirmation": "確認", + "Common.UI.Window.textDontShow": "不再顯示此消息", + "Common.UI.Window.textError": "錯誤", + "Common.UI.Window.textInformation": "資訊", + "Common.UI.Window.textWarning": "警告", + "Common.UI.Window.yesButtonText": "是", + "Common.Utils.Metric.txtCm": "公分", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "地址:", + "Common.Views.About.txtLicensee": "被許可人", + "Common.Views.About.txtLicensor": "許可人", + "Common.Views.About.txtMail": "電子郵件:", + "Common.Views.About.txtPoweredBy": "於支援", + "Common.Views.About.txtTel": "電話: ", + "Common.Views.About.txtVersion": "版本", + "Common.Views.AutoCorrectDialog.textAdd": "增加", + "Common.Views.AutoCorrectDialog.textApplyText": "鍵入時同時申請", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "自動更正", + "Common.Views.AutoCorrectDialog.textAutoFormat": "鍵入時自動調整規格", + "Common.Views.AutoCorrectDialog.textBulleted": "自動項目符號列表", + "Common.Views.AutoCorrectDialog.textBy": "通過", + "Common.Views.AutoCorrectDialog.textDelete": "刪除", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "按兩下空白鍵自動增加一個句點(.)符號", + "Common.Views.AutoCorrectDialog.textFLCells": "儲存格首字母大寫", + "Common.Views.AutoCorrectDialog.textFLSentence": "句子第一個字母大寫", + "Common.Views.AutoCorrectDialog.textHyperlink": "網絡路徑超連結", + "Common.Views.AutoCorrectDialog.textHyphens": "帶連字符(-)的連字符(-)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "數學自動更正", + "Common.Views.AutoCorrectDialog.textNumbered": "自動編號列表", + "Common.Views.AutoCorrectDialog.textQuotes": "“直引號”與“智能引號”", + "Common.Views.AutoCorrectDialog.textRecognized": "公認的功能", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下表達式是公認的數學表達式。它們不會自動斜體顯示。", + "Common.Views.AutoCorrectDialog.textReplace": "替換:", + "Common.Views.AutoCorrectDialog.textReplaceText": "鍵入時替換", + "Common.Views.AutoCorrectDialog.textReplaceType": "鍵入時替換文字", + "Common.Views.AutoCorrectDialog.textReset": "重設", + "Common.Views.AutoCorrectDialog.textResetAll": "重置為預設", + "Common.Views.AutoCorrectDialog.textRestore": "回復", + "Common.Views.AutoCorrectDialog.textTitle": "自動更正", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "公認的函數只能包含字母A到Z,大寫或小寫。", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "您添加的所有表達式都將被刪除,被刪除的表達式將被恢復。你想繼續嗎?", + "Common.Views.AutoCorrectDialog.warnReplace": "%1的自動更正條目已存在。您要更換嗎?", + "Common.Views.AutoCorrectDialog.warnReset": "您添加的所有自動更正將被刪除,更改後的自動更正將恢復為其原始值。你想繼續嗎?", + "Common.Views.AutoCorrectDialog.warnRestore": "%1的自動更正條目將被重置為其原始值。你想繼續嗎?", + "Common.Views.Chat.textSend": "傳送", + "Common.Views.Comments.mniAuthorAsc": "作者排行A到Z", + "Common.Views.Comments.mniAuthorDesc": "作者排行Z到A", + "Common.Views.Comments.mniDateAsc": "從最老的", + "Common.Views.Comments.mniDateDesc": "從最新的", + "Common.Views.Comments.mniFilterGroups": "依群組篩選", + "Common.Views.Comments.mniPositionAsc": "自上", + "Common.Views.Comments.mniPositionDesc": "自下而上", + "Common.Views.Comments.textAdd": "增加", + "Common.Views.Comments.textAddComment": "增加評論", + "Common.Views.Comments.textAddCommentToDoc": "在文檔中添加評論", + "Common.Views.Comments.textAddReply": "加入回覆", + "Common.Views.Comments.textAll": "全部", + "Common.Views.Comments.textAnonym": "來賓帳戶", + "Common.Views.Comments.textCancel": "取消", + "Common.Views.Comments.textClose": "關閉", + "Common.Views.Comments.textClosePanel": "關註釋", + "Common.Views.Comments.textComments": "評論", + "Common.Views.Comments.textEdit": "確定", + "Common.Views.Comments.textEnterCommentHint": "在這裡輸入您的評論", + "Common.Views.Comments.textHintAddComment": "增加評論", + "Common.Views.Comments.textOpenAgain": "重新打開", + "Common.Views.Comments.textReply": "回覆", + "Common.Views.Comments.textResolve": "解決", + "Common.Views.Comments.textResolved": "已解決", + "Common.Views.Comments.textSort": "註釋分類", + "Common.Views.Comments.textViewResolved": "您沒有權限來重新開啟這個註解", + "Common.Views.CopyWarningDialog.textDontShow": "不再顯示此消息", + "Common.Views.CopyWarningDialog.textMsg": "使用編輯器工具欄按鈕進行複制,剪切和粘貼操作以及上下文選單操作僅在此編輯器選項卡中執行。

要在“編輯器”選項卡之外的應用程序之間進行複製或粘貼,請使用以下鍵盤組合:", + "Common.Views.CopyWarningDialog.textTitle": "複製, 剪下, 與貼上之動作", + "Common.Views.CopyWarningDialog.textToCopy": "複印", + "Common.Views.CopyWarningDialog.textToCut": "切", + "Common.Views.CopyWarningDialog.textToPaste": "粘貼", + "Common.Views.DocumentAccessDialog.textLoading": "載入中...", + "Common.Views.DocumentAccessDialog.textTitle": "分享設定", + "Common.Views.ExternalDiagramEditor.textClose": "關閉", + "Common.Views.ExternalDiagramEditor.textSave": "存檔並離開", + "Common.Views.ExternalDiagramEditor.textTitle": "圖表編輯器", + "Common.Views.Header.labelCoUsersDescr": "正在編輯文件的用戶:", + "Common.Views.Header.textAddFavorite": "標記為最愛收藏", + "Common.Views.Header.textAdvSettings": "進階設定", + "Common.Views.Header.textBack": "打開文件所在位置", + "Common.Views.Header.textCompactView": "隱藏工具欄", + "Common.Views.Header.textHideLines": "隱藏標尺", + "Common.Views.Header.textHideNotes": "隐藏笔记", + "Common.Views.Header.textHideStatusBar": "隱藏狀態欄", + "Common.Views.Header.textRemoveFavorite": "\n從最愛收藏夾中刪除", + "Common.Views.Header.textSaveBegin": "存檔中...", + "Common.Views.Header.textSaveChanged": "已更改", + "Common.Views.Header.textSaveEnd": "所有更改已保存", + "Common.Views.Header.textSaveExpander": "所有更改已保存", + "Common.Views.Header.textZoom": "放大", + "Common.Views.Header.tipAccessRights": "管理文檔存取權限", + "Common.Views.Header.tipDownload": "下載文件", + "Common.Views.Header.tipGoEdit": "編輯當前文件", + "Common.Views.Header.tipPrint": "列印文件", + "Common.Views.Header.tipRedo": "重做", + "Common.Views.Header.tipSave": "儲存", + "Common.Views.Header.tipUndo": "復原", + "Common.Views.Header.tipUndock": "移至單獨的視窗", + "Common.Views.Header.tipViewSettings": "查看設定", + "Common.Views.Header.tipViewUsers": "查看用戶並管理文檔存取權限", + "Common.Views.Header.txtAccessRights": "更改存取權限", + "Common.Views.Header.txtRename": "重新命名", + "Common.Views.History.textCloseHistory": "關閉歷史紀錄", + "Common.Views.History.textHide": "縮小", + "Common.Views.History.textHideAll": "隱藏詳細的更改", + "Common.Views.History.textRestore": "恢復", + "Common.Views.History.textShow": "擴大", + "Common.Views.History.textShowAll": "顯示詳細的更改歷史", + "Common.Views.History.textVer": "版本", + "Common.Views.ImageFromUrlDialog.textUrl": "粘貼圖片網址:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "這是必填欄", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "此字段應為“ http://www.example.com”格式的網址", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "您需要指定有效的行數和列數。", + "Common.Views.InsertTableDialog.txtColumns": "列數", + "Common.Views.InsertTableDialog.txtMaxText": "此字段的最大值為{0}。", + "Common.Views.InsertTableDialog.txtMinText": "此字段的最小值為{0}。", + "Common.Views.InsertTableDialog.txtRows": "行數", + "Common.Views.InsertTableDialog.txtTitle": "表格大小", + "Common.Views.InsertTableDialog.txtTitleSplit": "分割儲存格", + "Common.Views.LanguageDialog.labelSelect": "選擇文件語言", + "Common.Views.ListSettingsDialog.textBulleted": "已加入項目點", + "Common.Views.ListSettingsDialog.textNumbering": "已編號", + "Common.Views.ListSettingsDialog.tipChange": "更改項目點", + "Common.Views.ListSettingsDialog.txtBullet": "項目點", + "Common.Views.ListSettingsDialog.txtColor": "顏色", + "Common.Views.ListSettingsDialog.txtNewBullet": "新子彈點", + "Common.Views.ListSettingsDialog.txtNone": "無", + "Common.Views.ListSettingsDialog.txtOfText": "文字百分比", + "Common.Views.ListSettingsDialog.txtSize": "大小", + "Common.Views.ListSettingsDialog.txtStart": "開始", + "Common.Views.ListSettingsDialog.txtSymbol": "符號", + "Common.Views.ListSettingsDialog.txtTitle": "清單設定", + "Common.Views.ListSettingsDialog.txtType": "類型", + "Common.Views.OpenDialog.closeButtonText": "關閉檔案", + "Common.Views.OpenDialog.txtEncoding": "編碼", + "Common.Views.OpenDialog.txtIncorrectPwd": "密碼錯誤。", + "Common.Views.OpenDialog.txtOpenFile": "輸入檔案密碼", + "Common.Views.OpenDialog.txtPassword": "密碼", + "Common.Views.OpenDialog.txtProtected": "輸入密碼並打開文件後,該文件的當前密碼將被重置。", + "Common.Views.OpenDialog.txtTitle": "選擇%1個選項", + "Common.Views.OpenDialog.txtTitleProtected": "受保護的文件", + "Common.Views.PasswordDialog.txtDescription": "設置密碼以保護此文檔", + "Common.Views.PasswordDialog.txtIncorrectPwd": "確認密碼不相同", + "Common.Views.PasswordDialog.txtPassword": "密碼", + "Common.Views.PasswordDialog.txtRepeat": "重複輸入密碼", + "Common.Views.PasswordDialog.txtTitle": "設置密碼", + "Common.Views.PasswordDialog.txtWarning": "警告:如果失去密碼,將無法取回。請妥善保存。", + "Common.Views.PluginDlg.textLoading": "載入中", + "Common.Views.Plugins.groupCaption": "外掛程式", + "Common.Views.Plugins.strPlugins": "外掛程式", + "Common.Views.Plugins.textLoading": "載入中", + "Common.Views.Plugins.textStart": "開始", + "Common.Views.Plugins.textStop": "停止", + "Common.Views.Protection.hintAddPwd": "用密碼加密", + "Common.Views.Protection.hintPwd": "更改或刪除密碼", + "Common.Views.Protection.hintSignature": "添加數字簽名或簽名行", + "Common.Views.Protection.txtAddPwd": "新增密碼", + "Common.Views.Protection.txtChangePwd": "變更密碼", + "Common.Views.Protection.txtDeletePwd": "刪除密碼", + "Common.Views.Protection.txtEncrypt": "加密", + "Common.Views.Protection.txtInvisibleSignature": "添加數字簽名", + "Common.Views.Protection.txtSignature": "簽名", + "Common.Views.Protection.txtSignatureLine": "添加簽名行", + "Common.Views.RenameDialog.textName": "\n文件名", + "Common.Views.RenameDialog.txtInvalidName": "文件名不能包含以下任何字符:", + "Common.Views.ReviewChanges.hintNext": "到下一個變化", + "Common.Views.ReviewChanges.hintPrev": "到之前的變化", + "Common.Views.ReviewChanges.strFast": "快", + "Common.Views.ReviewChanges.strFastDesc": "即時共同編輯。所有更改將自動存檔。", + "Common.Views.ReviewChanges.strStrict": "嚴格", + "Common.Views.ReviewChanges.strStrictDesc": "使用“保存”按鈕同步您和其他人所做的更改。", + "Common.Views.ReviewChanges.tipAcceptCurrent": "同意當前更改", + "Common.Views.ReviewChanges.tipCoAuthMode": "設定共同編輯模式", + "Common.Views.ReviewChanges.tipCommentRem": "刪除評論", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "刪除當前評論", + "Common.Views.ReviewChanges.tipCommentResolve": "標記註解為已解決", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "將註解標記為已解決", + "Common.Views.ReviewChanges.tipHistory": "顯示版本歷史", + "Common.Views.ReviewChanges.tipRejectCurrent": "拒絕當前變化", + "Common.Views.ReviewChanges.tipReview": "跟蹤變化", + "Common.Views.ReviewChanges.tipReviewView": "選擇您要顯示更改的模式", + "Common.Views.ReviewChanges.tipSetDocLang": "設定文件語言", + "Common.Views.ReviewChanges.tipSetSpelling": "拼字檢查", + "Common.Views.ReviewChanges.tipSharing": "管理文檔存取權限", + "Common.Views.ReviewChanges.txtAccept": "同意", + "Common.Views.ReviewChanges.txtAcceptAll": "接受全部的更改", + "Common.Views.ReviewChanges.txtAcceptChanges": "同意更改", + "Common.Views.ReviewChanges.txtAcceptCurrent": "同意當前更改", + "Common.Views.ReviewChanges.txtChat": "聊天", + "Common.Views.ReviewChanges.txtClose": "關閉", + "Common.Views.ReviewChanges.txtCoAuthMode": "共同編輯模式", + "Common.Views.ReviewChanges.txtCommentRemAll": "刪除所有評論", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "刪除當前評論", + "Common.Views.ReviewChanges.txtCommentRemMy": "刪除我的評論", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "刪除我當前的評論", + "Common.Views.ReviewChanges.txtCommentRemove": "移除", + "Common.Views.ReviewChanges.txtCommentResolve": "解決", + "Common.Views.ReviewChanges.txtCommentResolveAll": "將所有註解標記為已解決", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "將註解標記為已解決", + "Common.Views.ReviewChanges.txtCommentResolveMy": "將所有自己的註解標記為已解決", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "將自己的註解標記為已解決", + "Common.Views.ReviewChanges.txtDocLang": "語言", + "Common.Views.ReviewChanges.txtFinal": "更改已全部接受(預覽)", + "Common.Views.ReviewChanges.txtFinalCap": "最後", + "Common.Views.ReviewChanges.txtHistory": "版本歷史", + "Common.Views.ReviewChanges.txtMarkup": "全部的更改(編輯中)", + "Common.Views.ReviewChanges.txtMarkupCap": "標記", + "Common.Views.ReviewChanges.txtNext": "下一個", + "Common.Views.ReviewChanges.txtOriginal": "全部更改被拒絕(預覽)", + "Common.Views.ReviewChanges.txtOriginalCap": "原始", + "Common.Views.ReviewChanges.txtPrev": "前一個", + "Common.Views.ReviewChanges.txtReject": "拒絕", + "Common.Views.ReviewChanges.txtRejectAll": "拒絕所有更改", + "Common.Views.ReviewChanges.txtRejectChanges": "拒絕更改", + "Common.Views.ReviewChanges.txtRejectCurrent": "拒絕當前變化", + "Common.Views.ReviewChanges.txtSharing": "分享", + "Common.Views.ReviewChanges.txtSpelling": "拼字檢查", + "Common.Views.ReviewChanges.txtTurnon": "跟蹤變化", + "Common.Views.ReviewChanges.txtView": "顯示模式", + "Common.Views.ReviewPopover.textAdd": "增加", + "Common.Views.ReviewPopover.textAddReply": "加入回覆", + "Common.Views.ReviewPopover.textCancel": "取消", + "Common.Views.ReviewPopover.textClose": "關閉", + "Common.Views.ReviewPopover.textEdit": "確定", + "Common.Views.ReviewPopover.textMention": "+提及將提供對文檔的存取權限並發送電子郵件", + "Common.Views.ReviewPopover.textMentionNotify": "+提及將通過電子郵件通知用戶", + "Common.Views.ReviewPopover.textOpenAgain": "重新打開", + "Common.Views.ReviewPopover.textReply": "回覆", + "Common.Views.ReviewPopover.textResolve": "解決", + "Common.Views.ReviewPopover.textViewResolved": "您沒有權限來重新開啟這個註解", + "Common.Views.ReviewPopover.txtDeleteTip": "刪除", + "Common.Views.ReviewPopover.txtEditTip": "編輯", + "Common.Views.SaveAsDlg.textLoading": "載入中", + "Common.Views.SaveAsDlg.textTitle": "保存文件夾", + "Common.Views.SelectFileDlg.textLoading": "載入中", + "Common.Views.SelectFileDlg.textTitle": "選擇資料來源", + "Common.Views.SignDialog.textBold": "粗體", + "Common.Views.SignDialog.textCertificate": "證書", + "Common.Views.SignDialog.textChange": "變更", + "Common.Views.SignDialog.textInputName": "輸入簽名者名稱", + "Common.Views.SignDialog.textItalic": "斜體", + "Common.Views.SignDialog.textNameError": "簽名人姓名不能留空。", + "Common.Views.SignDialog.textPurpose": "簽署本文件的目的", + "Common.Views.SignDialog.textSelect": "選擇", + "Common.Views.SignDialog.textSelectImage": "選擇圖片", + "Common.Views.SignDialog.textSignature": "簽名看起來像", + "Common.Views.SignDialog.textTitle": "簽署文件", + "Common.Views.SignDialog.textUseImage": "或單擊“選擇圖像”以使用圖片作為簽名", + "Common.Views.SignDialog.textValid": "從%1到%2有效", + "Common.Views.SignDialog.tipFontName": "字體名稱", + "Common.Views.SignDialog.tipFontSize": "字體大小", + "Common.Views.SignSettingsDialog.textAllowComment": "允許簽名者在簽名對話框中添加註釋", + "Common.Views.SignSettingsDialog.textInfo": "簽名者資訊", + "Common.Views.SignSettingsDialog.textInfoEmail": "電子郵件", + "Common.Views.SignSettingsDialog.textInfoName": "名稱", + "Common.Views.SignSettingsDialog.textInfoTitle": "簽名人稱號", + "Common.Views.SignSettingsDialog.textInstructions": "簽名者說明", + "Common.Views.SignSettingsDialog.textShowDate": "在簽名行中顯示簽名日期", + "Common.Views.SignSettingsDialog.textTitle": "簽名設置", + "Common.Views.SignSettingsDialog.txtEmpty": "這是必填欄", + "Common.Views.SymbolTableDialog.textCharacter": "字符", + "Common.Views.SymbolTableDialog.textCode": "Unicode HEX 值", + "Common.Views.SymbolTableDialog.textCopyright": "版權標誌", + "Common.Views.SymbolTableDialog.textDCQuote": "結束雙引號", + "Common.Views.SymbolTableDialog.textDOQuote": "開頭雙引號", + "Common.Views.SymbolTableDialog.textEllipsis": "水平橢圓", + "Common.Views.SymbolTableDialog.textEmDash": "空槓", + "Common.Views.SymbolTableDialog.textEmSpace": "空白空間", + "Common.Views.SymbolTableDialog.textEnDash": "En 橫槓", + "Common.Views.SymbolTableDialog.textEnSpace": "En 空白", + "Common.Views.SymbolTableDialog.textFont": "字體", + "Common.Views.SymbolTableDialog.textNBHyphen": "不間斷連字符", + "Common.Views.SymbolTableDialog.textNBSpace": "不間斷空間", + "Common.Views.SymbolTableDialog.textPilcrow": "稻草人標誌", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 空白空間", + "Common.Views.SymbolTableDialog.textRange": "範圍", + "Common.Views.SymbolTableDialog.textRecent": "最近使用的符號", + "Common.Views.SymbolTableDialog.textRegistered": "註冊標誌", + "Common.Views.SymbolTableDialog.textSCQuote": "結束單引號", + "Common.Views.SymbolTableDialog.textSection": "分區標誌", + "Common.Views.SymbolTableDialog.textShortcut": "快捷鍵", + "Common.Views.SymbolTableDialog.textSHyphen": "軟連字符", + "Common.Views.SymbolTableDialog.textSOQuote": "開單報價", + "Common.Views.SymbolTableDialog.textSpecial": "特殊字符", + "Common.Views.SymbolTableDialog.textSymbols": "符號", + "Common.Views.SymbolTableDialog.textTitle": "符號", + "Common.Views.SymbolTableDialog.textTradeMark": "商標符號", + "Common.Views.UserNameDialog.textDontShow": "不要再顯示", + "Common.Views.UserNameDialog.textLabel": "標籤:", + "Common.Views.UserNameDialog.textLabelError": "標籤不能為空。", + "PE.Controllers.LeftMenu.leavePageText": "該文檔中所有未保存的更改都將丟失。
單擊“取消”,然後單擊“保存”以保存它們。單擊“確定”,放棄所有未保存的更改。", + "PE.Controllers.LeftMenu.newDocumentTitle": "未命名的演講", + "PE.Controllers.LeftMenu.notcriticalErrorTitle": "警告", + "PE.Controllers.LeftMenu.requestEditRightsText": "正在請求編輯權限...", + "PE.Controllers.LeftMenu.textLoadHistory": "正在載入版本歷史記錄...", + "PE.Controllers.LeftMenu.textNoTextFound": "找不到您一直在搜索的數據。請調整您的搜索選項。", + "PE.Controllers.LeftMenu.textReplaceSkipped": "替換已完成。 {0}個事件被跳過。", + "PE.Controllers.LeftMenu.textReplaceSuccess": "搜索已完成。發生的事件已替換:{0}", + "PE.Controllers.LeftMenu.txtUntitled": "無標題", + "PE.Controllers.Main.applyChangesTextText": "加載數據中...", + "PE.Controllers.Main.applyChangesTitleText": "加載數據中", + "PE.Controllers.Main.convertationTimeoutText": "轉換逾時。", + "PE.Controllers.Main.criticalErrorExtText": "按“確定”返回文檔列表。", + "PE.Controllers.Main.criticalErrorTitle": "錯誤", + "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.errorComboSeries": "新增組合圖表需選兩個以上的數據系列。", + "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": "在處理文檔期間發生錯誤。
使用“下載為...”選項將文件備份副本保存到計算機硬碟驅動器中。", + "PE.Controllers.Main.errorEditingSaveas": "使用文檔期間發生錯誤。
使用“另存為...”選項將文件備份副本保存到計算機硬碟驅動器中。", + "PE.Controllers.Main.errorEmailClient": "找不到電子郵件客戶端。", + "PE.Controllers.Main.errorFilePassProtect": "該文件受密碼保護,無法打開。", + "PE.Controllers.Main.errorFileSizeExceed": "此檔案超過這一主機限制的大小
進一步資訊,請聯絡您的文件服務主機的管理者。", + "PE.Controllers.Main.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦機硬碟中,或稍後再試。", + "PE.Controllers.Main.errorKeyEncrypt": "未知密鑰描述符", + "PE.Controllers.Main.errorKeyExpire": "密鑰描述符已過期", + "PE.Controllers.Main.errorLoadingFont": "字體未加載。
請聯繫文件服務器管理員。", + "PE.Controllers.Main.errorProcessSaveResult": "儲存失敗", + "PE.Controllers.Main.errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。", + "PE.Controllers.Main.errorSessionAbsolute": "此文件編輯的會期已經過時。請重新載入此頁面。", + "PE.Controllers.Main.errorSessionIdle": "此文件已經在編輯狀態有很長時間, 請重新載入此頁面。", + "PE.Controllers.Main.errorSessionToken": "與服務器的連接已中斷。請重新加載頁面。", + "PE.Controllers.Main.errorSetPassword": "無法設定密碼。", + "PE.Controllers.Main.errorStockChart": "不正確的列次序。要建立一推疊圖表, 需要將此表的資料放置為以下的次序
出價, 最高價, 最低價, 節標價。", + "PE.Controllers.Main.errorToken": "文檔安全令牌的格式不正確。
請與您的Document Server管理員聯繫。", + "PE.Controllers.Main.errorTokenExpire": "文檔安全令牌已過期。
請與您的Document Server管理員聯繫。", + "PE.Controllers.Main.errorUpdateVersion": "文件版本已更改。該頁面將重新加載。", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。
在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。", + "PE.Controllers.Main.errorUserDrop": "目前無法存取該文件。", + "PE.Controllers.Main.errorUsersExceed": "超出了定價計劃所允許的用戶數量", + "PE.Controllers.Main.errorViewerDisconnect": "連接斷開。您仍然可以查看該文檔,但在恢復連接並重新加載頁面之前將無法下載或打印該文檔。", + "PE.Controllers.Main.leavePageText": "您尚未保存此演示文稿中的更改。單擊“保留在此頁面上”,然後單擊“保存”以保存它們。單擊“離開此頁面”以放棄所有未保存的更改。", + "PE.Controllers.Main.leavePageTextOnClose": "該文檔中所有未保存的更改都將丟失。
單擊“取消”,然後單擊“保存”以保存它們。單擊“確定”,放棄所有未保存的更改。", + "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.saveErrorTextDesktop": "無法保存或創建此文件。
可能的原因是:
1。該文件是只讀的。
2。該文件正在由其他用戶編輯。
3。磁碟已滿或損壞。", + "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.textApplyAll": "適用於所有方程式", + "PE.Controllers.Main.textBuyNow": "訪問網站", + "PE.Controllers.Main.textChangesSaved": "所有更改已保存", + "PE.Controllers.Main.textClose": "關閉", + "PE.Controllers.Main.textCloseTip": "點擊關閉提示", + "PE.Controllers.Main.textContactUs": "聯絡銷售人員", + "PE.Controllers.Main.textConvertEquation": "該方程式是使用不再受支持的方程式編輯器的舊版本創建的。要對其進行編輯,請將等式轉換為Office Math ML格式。
立即轉換?", + "PE.Controllers.Main.textCustomLoader": "請注意,根據許可條款,您無權更換裝載機。
請聯繫我們的銷售部門以獲取報價。", + "PE.Controllers.Main.textDisconnect": "失去網絡連接", + "PE.Controllers.Main.textGuest": "來賓帳戶", + "PE.Controllers.Main.textHasMacros": "此檔案包含自動的", + "PE.Controllers.Main.textLearnMore": "了解更多", + "PE.Controllers.Main.textLoadingDocument": "正在載入簡報", + "PE.Controllers.Main.textLongName": "輸入少於128個字符的名稱。", + "PE.Controllers.Main.textNoLicenseTitle": "達到許可限制", + "PE.Controllers.Main.textPaidFeature": "付費功能", + "PE.Controllers.Main.textReconnect": "連線恢復", + "PE.Controllers.Main.textRemember": "記住我對所有文件的選擇", + "PE.Controllers.Main.textRenameError": "使用者名稱無法留空。", + "PE.Controllers.Main.textRenameLabel": "輸入合作名稱", + "PE.Controllers.Main.textShape": "形狀", + "PE.Controllers.Main.textStrict": "嚴格模式", + "PE.Controllers.Main.textTryUndoRedo": "快速共同編輯模式禁用了“撤消/重做”功能。
單擊“嚴格模式”按鈕切換到“嚴格共同編輯”模式以編輯文件而不會受到其他用戶的干擾,並且僅在保存後發送更改他們。您可以使用編輯器的“高級”設置在共同編輯模式之間切換。", + "PE.Controllers.Main.textTryUndoRedoWarn": "在快速共同編輯模式下,撤消/重做功能被禁用。", + "PE.Controllers.Main.titleLicenseExp": "證件過期", + "PE.Controllers.Main.titleServerVersion": "編輯器已更新", + "PE.Controllers.Main.txtAddFirstSlide": "點擊以新增第一張投影片", + "PE.Controllers.Main.txtAddNotes": "點擊添加筆記", + "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": "SmartArt", + "PE.Controllers.Main.txtDiagramTitle": "圖表標題", + "PE.Controllers.Main.txtEditingMode": "設定編輯模式...", + "PE.Controllers.Main.txtErrorLoadHistory": "歷史記錄加載失敗", + "PE.Controllers.Main.txtFiguredArrows": "圖箭", + "PE.Controllers.Main.txtFooter": "頁尾", + "PE.Controllers.Main.txtHeader": "標頭", + "PE.Controllers.Main.txtImage": "圖像", + "PE.Controllers.Main.txtLines": "線數", + "PE.Controllers.Main.txtLoading": "載入中...", + "PE.Controllers.Main.txtMath": "數學", + "PE.Controllers.Main.txtMedia": "媒體", + "PE.Controllers.Main.txtNeedSynchronize": "您有更新", + "PE.Controllers.Main.txtNone": "無", + "PE.Controllers.Main.txtPicture": "圖片", + "PE.Controllers.Main.txtRectangles": "長方形", + "PE.Controllers.Main.txtSeries": "系列", + "PE.Controllers.Main.txtShape_accentBorderCallout1": "線路標註1(邊框和強調欄)", + "PE.Controllers.Main.txtShape_accentBorderCallout2": "線路標註2(邊框和強調欄)", + "PE.Controllers.Main.txtShape_accentBorderCallout3": "線路標註3(邊框和強調欄)", + "PE.Controllers.Main.txtShape_accentCallout1": "線路標註1(強調欄)", + "PE.Controllers.Main.txtShape_accentCallout2": "線路標註2(強調欄)", + "PE.Controllers.Main.txtShape_accentCallout3": "線路標註3(強調欄)", + "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "後退或上一步按鈕", + "PE.Controllers.Main.txtShape_actionButtonBeginning": "開始按鈕", + "PE.Controllers.Main.txtShape_actionButtonBlank": "空白按鈕", + "PE.Controllers.Main.txtShape_actionButtonDocument": "文件按鈕", + "PE.Controllers.Main.txtShape_actionButtonEnd": "結束按鈕", + "PE.Controllers.Main.txtShape_actionButtonForwardNext": "前進或後退按鈕", + "PE.Controllers.Main.txtShape_actionButtonHelp": "幫助按鈕", + "PE.Controllers.Main.txtShape_actionButtonHome": "首頁按鈕", + "PE.Controllers.Main.txtShape_actionButtonInformation": "資訊按鈕", + "PE.Controllers.Main.txtShape_actionButtonMovie": "電影按鈕", + "PE.Controllers.Main.txtShape_actionButtonReturn": "返回按鈕", + "PE.Controllers.Main.txtShape_actionButtonSound": "聲音按鈕", + "PE.Controllers.Main.txtShape_arc": "弧", + "PE.Controllers.Main.txtShape_bentArrow": "彎曲箭頭", + "PE.Controllers.Main.txtShape_bentConnector5": "彎頭接頭", + "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "彎頭箭頭連接器", + "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "彎頭雙箭頭連接器", + "PE.Controllers.Main.txtShape_bentUpArrow": "向上彎曲箭頭", + "PE.Controllers.Main.txtShape_bevel": "斜角", + "PE.Controllers.Main.txtShape_blockArc": "圓弧", + "PE.Controllers.Main.txtShape_borderCallout1": "線路標註1", + "PE.Controllers.Main.txtShape_borderCallout2": "線路標註2", + "PE.Controllers.Main.txtShape_borderCallout3": "線路標註3", + "PE.Controllers.Main.txtShape_bracePair": "雙括號", + "PE.Controllers.Main.txtShape_callout1": "線路標註1(無邊框)", + "PE.Controllers.Main.txtShape_callout2": "線路標註2(無邊框)", + "PE.Controllers.Main.txtShape_callout3": "線路標註3(無邊框)", + "PE.Controllers.Main.txtShape_can": "能夠", + "PE.Controllers.Main.txtShape_chevron": "雪佛龍", + "PE.Controllers.Main.txtShape_chord": "弦", + "PE.Controllers.Main.txtShape_circularArrow": "圓形箭頭", + "PE.Controllers.Main.txtShape_cloud": "雲", + "PE.Controllers.Main.txtShape_cloudCallout": "雲標註", + "PE.Controllers.Main.txtShape_corner": "角", + "PE.Controllers.Main.txtShape_cube": " 立方體", + "PE.Controllers.Main.txtShape_curvedConnector3": "彎曲連接器", + "PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "彎曲箭頭連接器", + "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "彎曲雙箭頭連接器", + "PE.Controllers.Main.txtShape_curvedDownArrow": "彎曲的向下箭頭", + "PE.Controllers.Main.txtShape_curvedLeftArrow": "彎曲的左箭頭", + "PE.Controllers.Main.txtShape_curvedRightArrow": "彎曲的右箭頭", + "PE.Controllers.Main.txtShape_curvedUpArrow": "彎曲的向上箭頭", + "PE.Controllers.Main.txtShape_decagon": "十邊形", + "PE.Controllers.Main.txtShape_diagStripe": "斜條紋", + "PE.Controllers.Main.txtShape_diamond": "鑽石", + "PE.Controllers.Main.txtShape_dodecagon": "十二邊形", + "PE.Controllers.Main.txtShape_donut": "甜甜圈", + "PE.Controllers.Main.txtShape_doubleWave": "雙波", + "PE.Controllers.Main.txtShape_downArrow": "下箭頭", + "PE.Controllers.Main.txtShape_downArrowCallout": "向下箭頭標註", + "PE.Controllers.Main.txtShape_ellipse": "橢圓", + "PE.Controllers.Main.txtShape_ellipseRibbon": "彎下絲帶", + "PE.Controllers.Main.txtShape_ellipseRibbon2": "彎曲絲帶", + "PE.Controllers.Main.txtShape_flowChartAlternateProcess": "流程圖:替代過程", + "PE.Controllers.Main.txtShape_flowChartCollate": "流程圖:整理", + "PE.Controllers.Main.txtShape_flowChartConnector": "流程圖:連接器", + "PE.Controllers.Main.txtShape_flowChartDecision": "流程圖:決策", + "PE.Controllers.Main.txtShape_flowChartDelay": "流程圖:延遲", + "PE.Controllers.Main.txtShape_flowChartDisplay": "流程圖:顯示", + "PE.Controllers.Main.txtShape_flowChartDocument": "流程圖:文件", + "PE.Controllers.Main.txtShape_flowChartExtract": "流程圖:提取", + "PE.Controllers.Main.txtShape_flowChartInputOutput": "流程圖:數據", + "PE.Controllers.Main.txtShape_flowChartInternalStorage": "流程圖:內部存儲", + "PE.Controllers.Main.txtShape_flowChartMagneticDisk": "流程圖:磁碟", + "PE.Controllers.Main.txtShape_flowChartMagneticDrum": "流程圖:直接存取存儲", + "PE.Controllers.Main.txtShape_flowChartMagneticTape": "流程圖:順序存取存儲", + "PE.Controllers.Main.txtShape_flowChartManualInput": "流程圖:手動輸入", + "PE.Controllers.Main.txtShape_flowChartManualOperation": "流程圖:手動操作", + "PE.Controllers.Main.txtShape_flowChartMerge": "流程圖:合併", + "PE.Controllers.Main.txtShape_flowChartMultidocument": "流程圖:多文檔", + "PE.Controllers.Main.txtShape_flowChartOffpageConnector": "流程圖:頁外連接器", + "PE.Controllers.Main.txtShape_flowChartOnlineStorage": "流程圖:存儲的數據", + "PE.Controllers.Main.txtShape_flowChartOr": "流程圖:或", + "PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "流程圖:預定義流程", + "PE.Controllers.Main.txtShape_flowChartPreparation": "流程圖:準備", + "PE.Controllers.Main.txtShape_flowChartProcess": "流程圖:流程", + "PE.Controllers.Main.txtShape_flowChartPunchedCard": "流程圖:卡", + "PE.Controllers.Main.txtShape_flowChartPunchedTape": "流程圖:穿孔紙帶", + "PE.Controllers.Main.txtShape_flowChartSort": "流程圖:排序", + "PE.Controllers.Main.txtShape_flowChartSummingJunction": "流程圖:求和結點", + "PE.Controllers.Main.txtShape_flowChartTerminator": "流程圖:終結者", + "PE.Controllers.Main.txtShape_foldedCorner": "折角", + "PE.Controllers.Main.txtShape_frame": "框", + "PE.Controllers.Main.txtShape_halfFrame": "半框", + "PE.Controllers.Main.txtShape_heart": "心", + "PE.Controllers.Main.txtShape_heptagon": "七邊形", + "PE.Controllers.Main.txtShape_hexagon": "六邊形", + "PE.Controllers.Main.txtShape_homePlate": "五角形", + "PE.Controllers.Main.txtShape_horizontalScroll": "水平滾動", + "PE.Controllers.Main.txtShape_irregularSeal1": "爆炸1", + "PE.Controllers.Main.txtShape_irregularSeal2": "爆炸2", + "PE.Controllers.Main.txtShape_leftArrow": "左箭頭", + "PE.Controllers.Main.txtShape_leftArrowCallout": "向左箭頭標註", + "PE.Controllers.Main.txtShape_leftBrace": "左括號", + "PE.Controllers.Main.txtShape_leftBracket": "左括號", + "PE.Controllers.Main.txtShape_leftRightArrow": "左右箭頭", + "PE.Controllers.Main.txtShape_leftRightArrowCallout": "左右箭頭標註", + "PE.Controllers.Main.txtShape_leftRightUpArrow": "左右上箭頭", + "PE.Controllers.Main.txtShape_leftUpArrow": "左上箭頭", + "PE.Controllers.Main.txtShape_lightningBolt": "閃電", + "PE.Controllers.Main.txtShape_line": "線", + "PE.Controllers.Main.txtShape_lineWithArrow": "箭頭", + "PE.Controllers.Main.txtShape_lineWithTwoArrows": "雙箭頭", + "PE.Controllers.Main.txtShape_mathDivide": "分裂", + "PE.Controllers.Main.txtShape_mathEqual": "等於", + "PE.Controllers.Main.txtShape_mathMinus": "減去", + "PE.Controllers.Main.txtShape_mathMultiply": "乘", + "PE.Controllers.Main.txtShape_mathNotEqual": "不平等", + "PE.Controllers.Main.txtShape_mathPlus": "加", + "PE.Controllers.Main.txtShape_moon": "月亮", + "PE.Controllers.Main.txtShape_noSmoking": "“否”符號", + "PE.Controllers.Main.txtShape_notchedRightArrow": "缺口右箭頭", + "PE.Controllers.Main.txtShape_octagon": "八邊形", + "PE.Controllers.Main.txtShape_parallelogram": "平行四邊形", + "PE.Controllers.Main.txtShape_pentagon": "五角形", + "PE.Controllers.Main.txtShape_pie": "餅", + "PE.Controllers.Main.txtShape_plaque": "簽名", + "PE.Controllers.Main.txtShape_plus": "加", + "PE.Controllers.Main.txtShape_polyline1": "塗", + "PE.Controllers.Main.txtShape_polyline2": "自由形式", + "PE.Controllers.Main.txtShape_quadArrow": "四箭頭", + "PE.Controllers.Main.txtShape_quadArrowCallout": "四箭頭標註", + "PE.Controllers.Main.txtShape_rect": "長方形", + "PE.Controllers.Main.txtShape_ribbon": "下絨帶", + "PE.Controllers.Main.txtShape_ribbon2": "上色帶", + "PE.Controllers.Main.txtShape_rightArrow": "右箭頭", + "PE.Controllers.Main.txtShape_rightArrowCallout": "右箭頭標註", + "PE.Controllers.Main.txtShape_rightBrace": "右括號", + "PE.Controllers.Main.txtShape_rightBracket": "右括號", + "PE.Controllers.Main.txtShape_round1Rect": "圓形單角矩形", + "PE.Controllers.Main.txtShape_round2DiagRect": "圓斜角矩形", + "PE.Controllers.Main.txtShape_round2SameRect": "圓同一邊角矩形", + "PE.Controllers.Main.txtShape_roundRect": "圓角矩形", + "PE.Controllers.Main.txtShape_rtTriangle": "直角三角形", + "PE.Controllers.Main.txtShape_smileyFace": "笑臉", + "PE.Controllers.Main.txtShape_snip1Rect": "剪斷單角矩形", + "PE.Controllers.Main.txtShape_snip2DiagRect": "剪裁對角線矩形", + "PE.Controllers.Main.txtShape_snip2SameRect": "剪斷同一邊角矩形", + "PE.Controllers.Main.txtShape_snipRoundRect": "剪斷和圓形單角矩形", + "PE.Controllers.Main.txtShape_spline": "曲線", + "PE.Controllers.Main.txtShape_star10": "十點星", + "PE.Controllers.Main.txtShape_star12": "十二點星", + "PE.Controllers.Main.txtShape_star16": "十六點星", + "PE.Controllers.Main.txtShape_star24": "24點星", + "PE.Controllers.Main.txtShape_star32": "32點星", + "PE.Controllers.Main.txtShape_star4": "4點星", + "PE.Controllers.Main.txtShape_star5": "5點星", + "PE.Controllers.Main.txtShape_star6": "6點星", + "PE.Controllers.Main.txtShape_star7": "7點星", + "PE.Controllers.Main.txtShape_star8": "8點星", + "PE.Controllers.Main.txtShape_stripedRightArrow": "條紋右箭頭", + "PE.Controllers.Main.txtShape_sun": "太陽", + "PE.Controllers.Main.txtShape_teardrop": "淚珠", + "PE.Controllers.Main.txtShape_textRect": "文字框", + "PE.Controllers.Main.txtShape_trapezoid": "梯形", + "PE.Controllers.Main.txtShape_triangle": "三角形", + "PE.Controllers.Main.txtShape_upArrow": "向上箭頭", + "PE.Controllers.Main.txtShape_upArrowCallout": "向上箭頭標註", + "PE.Controllers.Main.txtShape_upDownArrow": "上下箭頭", + "PE.Controllers.Main.txtShape_uturnArrow": "掉頭箭頭", + "PE.Controllers.Main.txtShape_verticalScroll": "垂直滾動", + "PE.Controllers.Main.txtShape_wave": "波", + "PE.Controllers.Main.txtShape_wedgeEllipseCallout": "橢圓形標註", + "PE.Controllers.Main.txtShape_wedgeRectCallout": "矩形標註", + "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "圓角矩形標註", + "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.txtTheme_basic": "基本的", + "PE.Controllers.Main.txtTheme_blank": "空白", + "PE.Controllers.Main.txtTheme_classic": "經典", + "PE.Controllers.Main.txtTheme_corner": "角", + "PE.Controllers.Main.txtTheme_dotted": "點", + "PE.Controllers.Main.txtTheme_green": "綠色", + "PE.Controllers.Main.txtTheme_green_leaf": "綠葉", + "PE.Controllers.Main.txtTheme_lines": "線數", + "PE.Controllers.Main.txtTheme_office": "辦公室", + "PE.Controllers.Main.txtTheme_office_theme": "辦公室主題", + "PE.Controllers.Main.txtTheme_official": "官方", + "PE.Controllers.Main.txtTheme_pixel": "像素點", + "PE.Controllers.Main.txtTheme_safari": "蘋果瀏覽器", + "PE.Controllers.Main.txtTheme_turtle": "龜", + "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": "圖像超出最大大小限制。最大大小為25MB。", + "PE.Controllers.Main.uploadImageTextText": "正在上傳圖片...", + "PE.Controllers.Main.uploadImageTitleText": "上載圖片", + "PE.Controllers.Main.waitText": "請耐心等待...", + "PE.Controllers.Main.warnBrowserIE9": "該應用程序在IE9上具有較低的功能。使用IE10或更高版本", + "PE.Controllers.Main.warnBrowserZoom": "瀏覽器當前的縮放設置不受完全支持。請按Ctrl + 0重置為預設縮放。", + "PE.Controllers.Main.warnLicenseExceeded": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。
進一步訊息, 請聯繫您的管理者。", + "PE.Controllers.Main.warnLicenseExp": "您的授權證已過期.
請更新您的授權證並重新整理頁面。", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "授權過期
您已沒有編輯文件功能的授權
請與您的管理者聯繫。", + "PE.Controllers.Main.warnLicenseLimitedRenewed": "授權證書需要更新
您只有部分的文件編輯功能的存取權限
請與您的管理者聯繫來取得完整的存取權限。", + "PE.Controllers.Main.warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。", + "PE.Controllers.Main.warnNoLicense": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。
請聯繫 %1 銷售團隊來取得個人升級的需求。", + "PE.Controllers.Main.warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。", + "PE.Controllers.Main.warnProcessRightsChange": "您被拒絕編輯文件的權利。", + "PE.Controllers.Statusbar.textDisconnect": "連線失敗
正在嘗試連線。請檢查網路連線設定。", + "PE.Controllers.Statusbar.zoomText": "放大{0}%", + "PE.Controllers.Toolbar.confirmAddFontName": "您要保存的字體在當前設備上不可用。
文本樣式將使用一種系統字體顯示,保存的字體將在可用時使用。
要繼續嗎? ?", + "PE.Controllers.Toolbar.textAccent": "強調", + "PE.Controllers.Toolbar.textBracket": "括號", + "PE.Controllers.Toolbar.textEmptyImgUrl": "您必須輸入圖檔的URL.", + "PE.Controllers.Toolbar.textFontSizeErr": "輸入的值不正確。
請輸入1到300之間的數字值", + "PE.Controllers.Toolbar.textFraction": "分數", + "PE.Controllers.Toolbar.textFunction": "功能", + "PE.Controllers.Toolbar.textInsert": "插入", + "PE.Controllers.Toolbar.textIntegral": "積分", + "PE.Controllers.Toolbar.textLargeOperator": "大型運營商", + "PE.Controllers.Toolbar.textLimitAndLog": "極限和對數", + "PE.Controllers.Toolbar.textMatrix": "矩陣", + "PE.Controllers.Toolbar.textOperator": "經營者", + "PE.Controllers.Toolbar.textRadical": "激進單數", + "PE.Controllers.Toolbar.textScript": "腳本", + "PE.Controllers.Toolbar.textSymbols": "符號", + "PE.Controllers.Toolbar.textWarning": "警告", + "PE.Controllers.Toolbar.txtAccent_Accent": "尖銳", + "PE.Controllers.Toolbar.txtAccent_ArrowD": "上方的左右箭頭", + "PE.Controllers.Toolbar.txtAccent_ArrowL": "上方的向左箭頭", + "PE.Controllers.Toolbar.txtAccent_ArrowR": "上方向右箭頭", + "PE.Controllers.Toolbar.txtAccent_Bar": "槓", + "PE.Controllers.Toolbar.txtAccent_BarBot": "底橫槓", + "PE.Controllers.Toolbar.txtAccent_BarTop": "橫槓", + "PE.Controllers.Toolbar.txtAccent_BorderBox": "盒裝公式(帶佔位符)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "盒裝公式(示例)", + "PE.Controllers.Toolbar.txtAccent_Check": "檢查", + "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "底括號", + "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "大括號", + "PE.Controllers.Toolbar.txtAccent_Custom_1": "向量A", + "PE.Controllers.Toolbar.txtAccent_Custom_2": "帶橫線的ABC", + "PE.Controllers.Toolbar.txtAccent_Custom_3": "x X或y與橫槓", + "PE.Controllers.Toolbar.txtAccent_DDDot": "三點", + "PE.Controllers.Toolbar.txtAccent_DDot": "雙點", + "PE.Controllers.Toolbar.txtAccent_Dot": "點", + "PE.Controllers.Toolbar.txtAccent_DoubleBar": "雙橫槓", + "PE.Controllers.Toolbar.txtAccent_Grave": "墓", + "PE.Controllers.Toolbar.txtAccent_GroupBot": "下面的分組字符", + "PE.Controllers.Toolbar.txtAccent_GroupTop": "上面的分組字符", + "PE.Controllers.Toolbar.txtAccent_HarpoonL": "上方的向左魚叉", + "PE.Controllers.Toolbar.txtAccent_HarpoonR": "右上方的魚叉", + "PE.Controllers.Toolbar.txtAccent_Hat": "帽子", + "PE.Controllers.Toolbar.txtAccent_Smile": "布雷夫", + "PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", + "PE.Controllers.Toolbar.txtBracket_Angle": "括號", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "帶分隔符的括號", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "帶分隔符的括號", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "單括號", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "單括號", + "PE.Controllers.Toolbar.txtBracket_Curve": "括號", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "帶分隔符的括號", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "單括號", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "單括號", + "PE.Controllers.Toolbar.txtBracket_Custom_1": "案件(兩件條件)", + "PE.Controllers.Toolbar.txtBracket_Custom_2": "案件(三件條件)", + "PE.Controllers.Toolbar.txtBracket_Custom_3": "堆疊物件", + "PE.Controllers.Toolbar.txtBracket_Custom_4": "堆疊物件", + "PE.Controllers.Toolbar.txtBracket_Custom_5": "案件例子", + "PE.Controllers.Toolbar.txtBracket_Custom_6": "二項式係數", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "二項式係數", + "PE.Controllers.Toolbar.txtBracket_Line": "括號", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "單括號", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "單括號", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "括號", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "單括號", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "單括號", + "PE.Controllers.Toolbar.txtBracket_LowLim": "括號", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "單括號", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "單括號", + "PE.Controllers.Toolbar.txtBracket_Round": "括號", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "帶分隔符的括號", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "單括號", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "單括號", + "PE.Controllers.Toolbar.txtBracket_Square": "括號", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "括號", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "括號", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "單括號", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "單括號", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "括號", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "括號", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "單括號", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "單括號", + "PE.Controllers.Toolbar.txtBracket_UppLim": "括號", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "單括號", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "單括號", + "PE.Controllers.Toolbar.txtFractionDiagonal": "偏斜分數", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "微分", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "微分", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "微分", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "微分", + "PE.Controllers.Toolbar.txtFractionHorizontal": "線性分數", + "PE.Controllers.Toolbar.txtFractionPi_2": "Pi超過2", + "PE.Controllers.Toolbar.txtFractionSmall": "小分數", + "PE.Controllers.Toolbar.txtFractionVertical": "堆積分數", + "PE.Controllers.Toolbar.txtFunction_1_Cos": "反餘弦函數", + "PE.Controllers.Toolbar.txtFunction_1_Cosh": "雙曲餘弦函數", + "PE.Controllers.Toolbar.txtFunction_1_Cot": "反正切函數", + "PE.Controllers.Toolbar.txtFunction_1_Coth": "雙曲反正切函數", + "PE.Controllers.Toolbar.txtFunction_1_Csc": "餘割函數反", + "PE.Controllers.Toolbar.txtFunction_1_Csch": "雙曲反餘割函數", + "PE.Controllers.Toolbar.txtFunction_1_Sec": "反割線功能", + "PE.Controllers.Toolbar.txtFunction_1_Sech": "雙曲反正割函數", + "PE.Controllers.Toolbar.txtFunction_1_Sin": "反正弦函數", + "PE.Controllers.Toolbar.txtFunction_1_Sinh": "雙曲反正弦函數", + "PE.Controllers.Toolbar.txtFunction_1_Tan": "反正切函數", + "PE.Controllers.Toolbar.txtFunction_1_Tanh": "雙曲反正切函數", + "PE.Controllers.Toolbar.txtFunction_Cos": "Cosine 函數", + "PE.Controllers.Toolbar.txtFunction_Cosh": "雙曲餘弦函數", + "PE.Controllers.Toolbar.txtFunction_Cot": "Cotangent 函數", + "PE.Controllers.Toolbar.txtFunction_Coth": "雙曲餘切函數", + "PE.Controllers.Toolbar.txtFunction_Csc": "餘割函數", + "PE.Controllers.Toolbar.txtFunction_Csch": "雙曲餘割函數", + "PE.Controllers.Toolbar.txtFunction_Custom_1": "正弦波", + "PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "PE.Controllers.Toolbar.txtFunction_Custom_3": "切線公式", + "PE.Controllers.Toolbar.txtFunction_Sec": "正割功能", + "PE.Controllers.Toolbar.txtFunction_Sech": "雙曲正割函數", + "PE.Controllers.Toolbar.txtFunction_Sin": "正弦函數", + "PE.Controllers.Toolbar.txtFunction_Sinh": "雙曲正弦函數", + "PE.Controllers.Toolbar.txtFunction_Tan": "切線公式", + "PE.Controllers.Toolbar.txtFunction_Tanh": "雙曲正切函數", + "PE.Controllers.Toolbar.txtIntegral": "積分", + "PE.Controllers.Toolbar.txtIntegral_dtheta": "微分塞塔", + "PE.Controllers.Toolbar.txtIntegral_dx": "差分 x", + "PE.Controllers.Toolbar.txtIntegral_dy": "差分 y", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "積分", + "PE.Controllers.Toolbar.txtIntegralDouble": "雙積分", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "雙積分", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "雙積分", + "PE.Controllers.Toolbar.txtIntegralOriented": "輪廓積分", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "輪廓積分", + "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "表面積分", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "表面積分", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "表面積分", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "輪廓積分", + "PE.Controllers.Toolbar.txtIntegralOrientedTriple": "體積積分", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "體積積分", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "體積積分", + "PE.Controllers.Toolbar.txtIntegralSubSup": "積分", + "PE.Controllers.Toolbar.txtIntegralTriple": "三重積分", + "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "三重積分", + "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "三重積分", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "楔", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "楔", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "楔", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "楔", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "楔", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "聯產品", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "聯產品", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "聯產品", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "聯產品", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "聯產品", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "求和", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "求和", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "求和", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "產品", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "聯合", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "交叉點", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "交叉點", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "交叉點", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "交叉點", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "交叉點", + "PE.Controllers.Toolbar.txtLargeOperator_Prod": "產品", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "產品", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "產品", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "產品", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "產品", + "PE.Controllers.Toolbar.txtLargeOperator_Sum": "求和", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "求和", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "求和", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "求和", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "求和", + "PE.Controllers.Toolbar.txtLargeOperator_Union": "聯合", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "聯合", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "聯合", + "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "聯合", + "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "聯合", + "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "限制例子", + "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "最大例子", + "PE.Controllers.Toolbar.txtLimitLog_Lim": "限制", + "PE.Controllers.Toolbar.txtLimitLog_Ln": "自然對數", + "PE.Controllers.Toolbar.txtLimitLog_Log": "對數", + "PE.Controllers.Toolbar.txtLimitLog_LogBase": "對數", + "PE.Controllers.Toolbar.txtLimitLog_Max": "最大", + "PE.Controllers.Toolbar.txtLimitLog_Min": "最低", + "PE.Controllers.Toolbar.txtMatrix_1_2": "1x2的空矩陣", + "PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 空矩陣", + "PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 空矩陣", + "PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 空矩陣", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "帶括號的空矩陣", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "帶括號的空矩陣", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "帶括號的空矩陣", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "帶括號的空矩陣", + "PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 空矩陣", + "PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 空矩陣", + "PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 空矩陣", + "PE.Controllers.Toolbar.txtMatrix_3_3": "3x3 空矩陣", + "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "基準點", + "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "中線點", + "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "對角點", + "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "垂直點", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "稀疏矩陣", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "稀疏矩陣", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 單位矩陣", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 單位矩陣", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 單位矩陣", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 單位矩陣", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "下方的左右箭頭", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "上方的左右箭頭", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "下方的向左箭頭", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "上方的向左箭頭", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "下方向右箭頭", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "上方向右箭頭", + "PE.Controllers.Toolbar.txtOperator_ColonEquals": "冒號相等", + "PE.Controllers.Toolbar.txtOperator_Custom_1": "產量", + "PE.Controllers.Toolbar.txtOperator_Custom_2": "Delta 收益", + "PE.Controllers.Toolbar.txtOperator_Definition": "等同於定義", + "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta 等於", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "下方的左右箭頭", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "上方的左右箭頭", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "下方的向左箭頭", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "上方的向左箭頭", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "下方向右箭頭", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "上方向右箭頭", + "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "等於 等於", + "PE.Controllers.Toolbar.txtOperator_MinusEquals": "負等於", + "PE.Controllers.Toolbar.txtOperator_PlusEquals": "加等於", + "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "測量者", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "激進", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "激進", + "PE.Controllers.Toolbar.txtRadicalRoot_2": "平方根", + "PE.Controllers.Toolbar.txtRadicalRoot_3": "立方根", + "PE.Controllers.Toolbar.txtRadicalRoot_n": "自由基度", + "PE.Controllers.Toolbar.txtRadicalSqrt": "平方根", + "PE.Controllers.Toolbar.txtScriptCustom_1": "腳本", + "PE.Controllers.Toolbar.txtScriptCustom_2": "腳本", + "PE.Controllers.Toolbar.txtScriptCustom_3": "腳本", + "PE.Controllers.Toolbar.txtScriptCustom_4": "腳本", + "PE.Controllers.Toolbar.txtScriptSub": "下標", + "PE.Controllers.Toolbar.txtScriptSubSup": "下標-上標", + "PE.Controllers.Toolbar.txtScriptSubSupLeft": "左下標-上標", + "PE.Controllers.Toolbar.txtScriptSup": "上標", + "PE.Controllers.Toolbar.txtSymbol_about": "大約", + "PE.Controllers.Toolbar.txtSymbol_additional": "補充", + "PE.Controllers.Toolbar.txtSymbol_aleph": "A", + "PE.Controllers.Toolbar.txtSymbol_alpha": "Α", + "PE.Controllers.Toolbar.txtSymbol_approx": "幾乎等於", + "PE.Controllers.Toolbar.txtSymbol_ast": "星號運算符", + "PE.Controllers.Toolbar.txtSymbol_beta": "貝塔", + "PE.Controllers.Toolbar.txtSymbol_beth": "賭注", + "PE.Controllers.Toolbar.txtSymbol_bullet": "項目點操作者", + "PE.Controllers.Toolbar.txtSymbol_cap": "交叉點", + "PE.Controllers.Toolbar.txtSymbol_cbrt": "立方根", + "PE.Controllers.Toolbar.txtSymbol_cdots": "中線水平省略號", + "PE.Controllers.Toolbar.txtSymbol_celsius": "攝氏度", + "PE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "PE.Controllers.Toolbar.txtSymbol_cong": "大約等於", + "PE.Controllers.Toolbar.txtSymbol_cup": "聯合", + "PE.Controllers.Toolbar.txtSymbol_ddots": "右下斜省略號", + "PE.Controllers.Toolbar.txtSymbol_degree": "度", + "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "PE.Controllers.Toolbar.txtSymbol_div": "分裂標誌", + "PE.Controllers.Toolbar.txtSymbol_downarrow": "下箭頭", + "PE.Controllers.Toolbar.txtSymbol_emptyset": "空組集", + "PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "PE.Controllers.Toolbar.txtSymbol_equals": "等於", + "PE.Controllers.Toolbar.txtSymbol_equiv": "相同", + "PE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "PE.Controllers.Toolbar.txtSymbol_exists": "存在", + "PE.Controllers.Toolbar.txtSymbol_factorial": "階乘", + "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "華氏度", + "PE.Controllers.Toolbar.txtSymbol_forall": "對所有人", + "PE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "PE.Controllers.Toolbar.txtSymbol_geq": "大於或等於", + "PE.Controllers.Toolbar.txtSymbol_gg": "比大得多", + "PE.Controllers.Toolbar.txtSymbol_greater": "更佳", + "PE.Controllers.Toolbar.txtSymbol_in": "元素", + "PE.Controllers.Toolbar.txtSymbol_inc": "增量", + "PE.Controllers.Toolbar.txtSymbol_infinity": "無限", + "PE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "PE.Controllers.Toolbar.txtSymbol_lambda": "拉姆達", + "PE.Controllers.Toolbar.txtSymbol_leftarrow": "左箭頭", + "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "左右箭頭", + "PE.Controllers.Toolbar.txtSymbol_leq": "小於或等於", + "PE.Controllers.Toolbar.txtSymbol_less": "少於", + "PE.Controllers.Toolbar.txtSymbol_ll": "遠遠少於", + "PE.Controllers.Toolbar.txtSymbol_minus": "減去", + "PE.Controllers.Toolbar.txtSymbol_mp": "減加", + "PE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "PE.Controllers.Toolbar.txtSymbol_neq": "不等於", + "PE.Controllers.Toolbar.txtSymbol_ni": "包含為成員", + "PE.Controllers.Toolbar.txtSymbol_not": "不簽名", + "PE.Controllers.Toolbar.txtSymbol_notexists": "不存在", + "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "PE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "PE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "PE.Controllers.Toolbar.txtSymbol_partial": "偏微分", + "PE.Controllers.Toolbar.txtSymbol_percent": "百分比", + "PE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "PE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "PE.Controllers.Toolbar.txtSymbol_plus": "加", + "PE.Controllers.Toolbar.txtSymbol_pm": "加減", + "PE.Controllers.Toolbar.txtSymbol_propto": "成比例", + "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "PE.Controllers.Toolbar.txtSymbol_qdrt": "第四根", + "PE.Controllers.Toolbar.txtSymbol_qed": "證明結束", + "PE.Controllers.Toolbar.txtSymbol_rddots": "右上斜省略號", + "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "右箭頭", + "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "PE.Controllers.Toolbar.txtSymbol_sqrt": "激進標誌", + "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "PE.Controllers.Toolbar.txtSymbol_therefore": "因此", + "PE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "PE.Controllers.Toolbar.txtSymbol_times": "乘法符號", + "PE.Controllers.Toolbar.txtSymbol_uparrow": "向上箭頭", + "PE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", + "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon 變體", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Phi 變體", + "PE.Controllers.Toolbar.txtSymbol_varpi": "Pi變體", + "PE.Controllers.Toolbar.txtSymbol_varrho": "Rho變體", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma 變體", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Theta變體", + "PE.Controllers.Toolbar.txtSymbol_vdots": "垂直省略號", + "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "PE.Controllers.Viewport.textFitPage": "與投影片切合", + "PE.Controllers.Viewport.textFitWidth": "切合至寬度", + "PE.Views.Animation.strDelay": "延遲", + "PE.Views.Animation.strDuration": "持續時間", + "PE.Views.Animation.strRepeat": "重複", + "PE.Views.Animation.strRewind": "倒退", + "PE.Views.Animation.strStart": "開始", + "PE.Views.Animation.strTrigger": "觸發程序", + "PE.Views.Animation.textMoreEffects": "顯示其他特效", + "PE.Views.Animation.textMoveEarlier": "向前移動", + "PE.Views.Animation.textMoveLater": "向後移動", + "PE.Views.Animation.textMultiple": "多項", + "PE.Views.Animation.textNone": "無", + "PE.Views.Animation.textNoRepeat": "(空)", + "PE.Views.Animation.textOnClickOf": "點擊:", + "PE.Views.Animation.textOnClickSequence": "一鍵排序", + "PE.Views.Animation.textStartAfterPrevious": "在前一個動畫後", + "PE.Views.Animation.textStartOnClick": "點擊", + "PE.Views.Animation.textStartWithPrevious": "與上一個動畫一起", + "PE.Views.Animation.txtAddEffect": "新增動畫", + "PE.Views.Animation.txtAnimationPane": "動畫面版", + "PE.Views.Animation.txtParameters": "參量", + "PE.Views.Animation.txtPreview": "預覽", + "PE.Views.Animation.txtSec": "秒", + "PE.Views.AnimationDialog.textPreviewEffect": "預覽效果", + "PE.Views.AnimationDialog.textTitle": "其他特效", + "PE.Views.ChartSettings.textAdvanced": "顯示進階設定", + "PE.Views.ChartSettings.textChartType": "更改圖表類型", + "PE.Views.ChartSettings.textEditData": "編輯資料", + "PE.Views.ChartSettings.textHeight": "高度", + "PE.Views.ChartSettings.textKeepRatio": "比例不變", + "PE.Views.ChartSettings.textSize": "大小", + "PE.Views.ChartSettings.textStyle": "樣式", + "PE.Views.ChartSettings.textWidth": "寬度", + "PE.Views.ChartSettingsAdvanced.textAlt": "替代文字", + "PE.Views.ChartSettingsAdvanced.textAltDescription": "描述", + "PE.Views.ChartSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "PE.Views.ChartSettingsAdvanced.textAltTitle": "標題", + "PE.Views.ChartSettingsAdvanced.textTitle": "圖表-進階設置", + "PE.Views.DateTimeDialog.confirmDefault": "設置{0}的預設格式:“ {1}”", + "PE.Views.DateTimeDialog.textDefault": "設為預設", + "PE.Views.DateTimeDialog.textFormat": "格式", + "PE.Views.DateTimeDialog.textLang": "語言", + "PE.Views.DateTimeDialog.textUpdate": "自動更新", + "PE.Views.DateTimeDialog.txtTitle": "日期和時間", + "PE.Views.DocumentHolder.aboveText": "以上", + "PE.Views.DocumentHolder.addCommentText": "增加評論", + "PE.Views.DocumentHolder.addToLayoutText": "添加到佈局", + "PE.Views.DocumentHolder.advancedImageText": "圖像進階設置", + "PE.Views.DocumentHolder.advancedParagraphText": "文字進階設定", + "PE.Views.DocumentHolder.advancedShapeText": "形狀進階設定", + "PE.Views.DocumentHolder.advancedTableText": "表格進階設定", + "PE.Views.DocumentHolder.alignmentText": "對齊", + "PE.Views.DocumentHolder.belowText": "之下", + "PE.Views.DocumentHolder.cellAlignText": "單元格垂直對齊", + "PE.Views.DocumentHolder.cellText": "單元格", + "PE.Views.DocumentHolder.centerText": "中心", + "PE.Views.DocumentHolder.columnText": "欄", + "PE.Views.DocumentHolder.deleteColumnText": "刪除欄位", + "PE.Views.DocumentHolder.deleteRowText": "刪除行列", + "PE.Views.DocumentHolder.deleteTableText": "刪除表格", + "PE.Views.DocumentHolder.deleteText": "刪除", + "PE.Views.DocumentHolder.direct270Text": "向上旋轉文字", + "PE.Views.DocumentHolder.direct90Text": "向下旋轉文字", + "PE.Views.DocumentHolder.directHText": "水平", + "PE.Views.DocumentHolder.directionText": "文字方向", + "PE.Views.DocumentHolder.editChartText": "編輯資料", + "PE.Views.DocumentHolder.editHyperlinkText": "編輯超連結", + "PE.Views.DocumentHolder.hyperlinkText": "超連結", + "PE.Views.DocumentHolder.ignoreAllSpellText": "忽略所有", + "PE.Views.DocumentHolder.ignoreSpellText": "忽視", + "PE.Views.DocumentHolder.insertColumnLeftText": "欄位以左", + "PE.Views.DocumentHolder.insertColumnRightText": "欄位以右", + "PE.Views.DocumentHolder.insertColumnText": "插入欄位", + "PE.Views.DocumentHolder.insertRowAboveText": "上行", + "PE.Views.DocumentHolder.insertRowBelowText": "下行", + "PE.Views.DocumentHolder.insertRowText": "插入行", + "PE.Views.DocumentHolder.insertText": "插入", + "PE.Views.DocumentHolder.langText": "選擇語言", + "PE.Views.DocumentHolder.leftText": "左", + "PE.Views.DocumentHolder.loadSpellText": "正在加載變體...", + "PE.Views.DocumentHolder.mergeCellsText": "合併單元格", + "PE.Views.DocumentHolder.mniCustomTable": "插入自訂表格", + "PE.Views.DocumentHolder.moreText": "更多變體...", + "PE.Views.DocumentHolder.noSpellVariantsText": "沒有變體", + "PE.Views.DocumentHolder.originalSizeText": "實際大小", + "PE.Views.DocumentHolder.removeHyperlinkText": "刪除超連結", + "PE.Views.DocumentHolder.rightText": "右", + "PE.Views.DocumentHolder.rowText": "行", + "PE.Views.DocumentHolder.selectText": "選擇", + "PE.Views.DocumentHolder.spellcheckText": "拼字檢查", + "PE.Views.DocumentHolder.splitCellsText": "分割儲存格...", + "PE.Views.DocumentHolder.splitCellTitleText": "分割儲存格", + "PE.Views.DocumentHolder.tableText": "表格", + "PE.Views.DocumentHolder.textArrangeBack": "傳送到背景", + "PE.Views.DocumentHolder.textArrangeBackward": "向後發送", + "PE.Views.DocumentHolder.textArrangeForward": "向前帶進", + "PE.Views.DocumentHolder.textArrangeFront": "移到前景", + "PE.Views.DocumentHolder.textCopy": "複製", + "PE.Views.DocumentHolder.textCrop": "修剪", + "PE.Views.DocumentHolder.textCropFill": "填滿", + "PE.Views.DocumentHolder.textCropFit": "切合", + "PE.Views.DocumentHolder.textCut": "剪下", + "PE.Views.DocumentHolder.textDistributeCols": "分配列", + "PE.Views.DocumentHolder.textDistributeRows": "分配行", + "PE.Views.DocumentHolder.textEditPoints": "編輯點", + "PE.Views.DocumentHolder.textFlipH": "水平翻轉", + "PE.Views.DocumentHolder.textFlipV": "垂直翻轉", + "PE.Views.DocumentHolder.textFromFile": "從檔案", + "PE.Views.DocumentHolder.textFromStorage": "從存儲", + "PE.Views.DocumentHolder.textFromUrl": "從 URL", + "PE.Views.DocumentHolder.textNextPage": "下一張投影片", + "PE.Views.DocumentHolder.textPaste": "貼上", + "PE.Views.DocumentHolder.textPrevPage": "上一張投影片", + "PE.Views.DocumentHolder.textReplace": "取代圖片", + "PE.Views.DocumentHolder.textRotate": "旋轉", + "PE.Views.DocumentHolder.textRotate270": "逆時針旋轉90°", + "PE.Views.DocumentHolder.textRotate90": "順時針旋轉90°", + "PE.Views.DocumentHolder.textShapeAlignBottom": "底部對齊", + "PE.Views.DocumentHolder.textShapeAlignCenter": "居中對齊", + "PE.Views.DocumentHolder.textShapeAlignLeft": "對齊左側", + "PE.Views.DocumentHolder.textShapeAlignMiddle": "中央對齊", + "PE.Views.DocumentHolder.textShapeAlignRight": "對齊右側", + "PE.Views.DocumentHolder.textShapeAlignTop": "上方對齊", + "PE.Views.DocumentHolder.textSlideSettings": "投影片設定", + "PE.Views.DocumentHolder.textUndo": "復原", + "PE.Views.DocumentHolder.tipIsLocked": "該元素當前正在由另一個用戶編輯。", + "PE.Views.DocumentHolder.toDictionaryText": "添加到字典", + "PE.Views.DocumentHolder.txtAddBottom": "添加底部邊框", + "PE.Views.DocumentHolder.txtAddFractionBar": "添加分數欄", + "PE.Views.DocumentHolder.txtAddHor": "添加水平線", + "PE.Views.DocumentHolder.txtAddLB": "添加左底邊框", + "PE.Views.DocumentHolder.txtAddLeft": "添加左邊框", + "PE.Views.DocumentHolder.txtAddLT": "添加左上頂行", + "PE.Views.DocumentHolder.txtAddRight": "加入右邊框", + "PE.Views.DocumentHolder.txtAddTop": "加入上邊框", + "PE.Views.DocumentHolder.txtAddVer": "加入垂直線", + "PE.Views.DocumentHolder.txtAlign": "對齊", + "PE.Views.DocumentHolder.txtAlignToChar": "與字符對齊", + "PE.Views.DocumentHolder.txtArrange": "安排", + "PE.Views.DocumentHolder.txtBackground": "背景", + "PE.Views.DocumentHolder.txtBorderProps": "邊框屬性", + "PE.Views.DocumentHolder.txtBottom": "底部", + "PE.Views.DocumentHolder.txtChangeLayout": "變更版面", + "PE.Views.DocumentHolder.txtChangeTheme": "改變主題", + "PE.Views.DocumentHolder.txtColumnAlign": "欄位對準", + "PE.Views.DocumentHolder.txtDecreaseArg": "減小參數大小", + "PE.Views.DocumentHolder.txtDeleteArg": "刪除參數", + "PE.Views.DocumentHolder.txtDeleteBreak": "刪除手動休息", + "PE.Views.DocumentHolder.txtDeleteChars": "刪除封閉字符", + "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "刪除括起來的字符和分隔符", + "PE.Views.DocumentHolder.txtDeleteEq": "刪除方程式", + "PE.Views.DocumentHolder.txtDeleteGroupChar": "刪除字元", + "PE.Views.DocumentHolder.txtDeleteRadical": "刪除部首", + "PE.Views.DocumentHolder.txtDeleteSlide": "刪除投影片", + "PE.Views.DocumentHolder.txtDistribHor": "水平分佈", + "PE.Views.DocumentHolder.txtDistribVert": "垂直分佈", + "PE.Views.DocumentHolder.txtDuplicateSlide": "投影片複製", + "PE.Views.DocumentHolder.txtFractionLinear": "更改為線性分數", + "PE.Views.DocumentHolder.txtFractionSkewed": "更改為傾斜分數", + "PE.Views.DocumentHolder.txtFractionStacked": "更改為堆積分數", + "PE.Views.DocumentHolder.txtGroup": "群組", + "PE.Views.DocumentHolder.txtGroupCharOver": "字符至文字的上方", + "PE.Views.DocumentHolder.txtGroupCharUnder": "字符至文字的下方", + "PE.Views.DocumentHolder.txtHideBottom": "隱藏底部邊框", + "PE.Views.DocumentHolder.txtHideBottomLimit": "隱藏下限", + "PE.Views.DocumentHolder.txtHideCloseBracket": "隱藏右括號", + "PE.Views.DocumentHolder.txtHideDegree": "隱藏度", + "PE.Views.DocumentHolder.txtHideHor": "隱藏水平線", + "PE.Views.DocumentHolder.txtHideLB": "隱藏左底線", + "PE.Views.DocumentHolder.txtHideLeft": "隱藏左邊框", + "PE.Views.DocumentHolder.txtHideLT": "隱藏左頂行", + "PE.Views.DocumentHolder.txtHideOpenBracket": "隱藏開口支架", + "PE.Views.DocumentHolder.txtHidePlaceholder": "隱藏佔位符", + "PE.Views.DocumentHolder.txtHideRight": "隱藏右邊框", + "PE.Views.DocumentHolder.txtHideTop": "隱藏頂部邊框", + "PE.Views.DocumentHolder.txtHideTopLimit": "隱藏最高限額", + "PE.Views.DocumentHolder.txtHideVer": "隱藏垂直線", + "PE.Views.DocumentHolder.txtIncreaseArg": "增加參數大小", + "PE.Views.DocumentHolder.txtInsertArgAfter": "在後面插入參數", + "PE.Views.DocumentHolder.txtInsertArgBefore": "在前面插入參數", + "PE.Views.DocumentHolder.txtInsertBreak": "插入手動中斷", + "PE.Views.DocumentHolder.txtInsertEqAfter": "在後面插入方程式", + "PE.Views.DocumentHolder.txtInsertEqBefore": "在前面插入方程式", + "PE.Views.DocumentHolder.txtKeepTextOnly": "僅保留文字", + "PE.Views.DocumentHolder.txtLimitChange": "更改限制位置", + "PE.Views.DocumentHolder.txtLimitOver": "文字限制", + "PE.Views.DocumentHolder.txtLimitUnder": "文字下的限制", + "PE.Views.DocumentHolder.txtMatchBrackets": "將括號匹配到參數高度", + "PE.Views.DocumentHolder.txtMatrixAlign": "矩陣對齊", + "PE.Views.DocumentHolder.txtMoveSlidesToEnd": "移至投影片至片尾", + "PE.Views.DocumentHolder.txtMoveSlidesToStart": "移至投影片至片頭", + "PE.Views.DocumentHolder.txtNewSlide": "新增投影片", + "PE.Views.DocumentHolder.txtOverbar": "槓覆蓋文字", + "PE.Views.DocumentHolder.txtPasteDestFormat": "使用目標主題", + "PE.Views.DocumentHolder.txtPastePicture": "圖片", + "PE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式", + "PE.Views.DocumentHolder.txtPressLink": "按Ctrl並單擊連結", + "PE.Views.DocumentHolder.txtPreview": "開始投影片放映", + "PE.Views.DocumentHolder.txtPrintSelection": "列印選擇", + "PE.Views.DocumentHolder.txtRemFractionBar": "刪除分數欄", + "PE.Views.DocumentHolder.txtRemLimit": "取消限制", + "PE.Views.DocumentHolder.txtRemoveAccentChar": "刪除強調字符", + "PE.Views.DocumentHolder.txtRemoveBar": "移除欄", + "PE.Views.DocumentHolder.txtRemScripts": "刪除腳本", + "PE.Views.DocumentHolder.txtRemSubscript": "刪除下標", + "PE.Views.DocumentHolder.txtRemSuperscript": "刪除上標", + "PE.Views.DocumentHolder.txtResetLayout": "重設投影片", + "PE.Views.DocumentHolder.txtScriptsAfter": "文字後的腳本", + "PE.Views.DocumentHolder.txtScriptsBefore": "文字前的腳本", + "PE.Views.DocumentHolder.txtSelectAll": "全選 選擇全部", + "PE.Views.DocumentHolder.txtShowBottomLimit": "顯示底限", + "PE.Views.DocumentHolder.txtShowCloseBracket": "顯示結束括號", + "PE.Views.DocumentHolder.txtShowDegree": "顯示程度", + "PE.Views.DocumentHolder.txtShowOpenBracket": "顯示開口支架", + "PE.Views.DocumentHolder.txtShowPlaceholder": "顯示佔位符", + "PE.Views.DocumentHolder.txtShowTopLimit": "顯示最高限額", + "PE.Views.DocumentHolder.txtSlide": "滑動", + "PE.Views.DocumentHolder.txtSlideHide": "隱藏投影片", + "PE.Views.DocumentHolder.txtStretchBrackets": "延伸括號", + "PE.Views.DocumentHolder.txtTop": "上方", + "PE.Views.DocumentHolder.txtUnderbar": "槓至文字底下", + "PE.Views.DocumentHolder.txtUngroup": "解開組合", + "PE.Views.DocumentHolder.txtWarnUrl": "這鏈接有可能對您的設備和數據造成損害。
您確定要繼續嗎?", + "PE.Views.DocumentHolder.vertAlignText": "垂直對齊", + "PE.Views.DocumentPreview.goToSlideText": "轉到投影片", + "PE.Views.DocumentPreview.slideIndexText": "在{1}投影片中的第{0}張", + "PE.Views.DocumentPreview.txtClose": "關閉投影片", + "PE.Views.DocumentPreview.txtEndSlideshow": "結束投影片", + "PE.Views.DocumentPreview.txtExitFullScreen": "退出全螢幕", + "PE.Views.DocumentPreview.txtFinalMessage": "投影片預覽已結尾。點擊退出。", + "PE.Views.DocumentPreview.txtFullScreen": "全螢幕", + "PE.Views.DocumentPreview.txtNext": "下一張投影片", + "PE.Views.DocumentPreview.txtPageNumInvalid": "無效的投影片編號", + "PE.Views.DocumentPreview.txtPause": "暫停演示", + "PE.Views.DocumentPreview.txtPlay": "開始演講", + "PE.Views.DocumentPreview.txtPrev": "上一張投影片", + "PE.Views.DocumentPreview.txtReset": "重設", + "PE.Views.FileMenu.btnAboutCaption": "關於", + "PE.Views.FileMenu.btnBackCaption": "打開文件所在位置", + "PE.Views.FileMenu.btnCloseMenuCaption": "關閉選單", + "PE.Views.FileMenu.btnCreateNewCaption": "創建新的", + "PE.Views.FileMenu.btnDownloadCaption": "下載為...", + "PE.Views.FileMenu.btnExitCaption": "離開", + "PE.Views.FileMenu.btnFileOpenCaption": "開啟...", + "PE.Views.FileMenu.btnHelpCaption": "幫助...", + "PE.Views.FileMenu.btnHistoryCaption": "版本歷史", + "PE.Views.FileMenu.btnInfoCaption": "演示信息...", + "PE.Views.FileMenu.btnPrintCaption": "列印", + "PE.Views.FileMenu.btnProtectCaption": "保護", + "PE.Views.FileMenu.btnRecentFilesCaption": "打開最近...", + "PE.Views.FileMenu.btnRenameCaption": "改名...", + "PE.Views.FileMenu.btnReturnCaption": "返回簡報", + "PE.Views.FileMenu.btnRightsCaption": "存取權限...", + "PE.Views.FileMenu.btnSaveAsCaption": "另存為", + "PE.Views.FileMenu.btnSaveCaption": "儲存", + "PE.Views.FileMenu.btnSaveCopyAsCaption": "另存為...", + "PE.Views.FileMenu.btnSettingsCaption": "進階設定...", + "PE.Views.FileMenu.btnToEditCaption": "編輯簡報", + "PE.Views.FileMenuPanels.CreateNew.txtBlank": "空白演示文稿", + "PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "創建新的", + "PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "套用", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "添加作者", + "PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "添加文字", + "PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "應用程式", + "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者", + "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "更改存取權限", + "PE.Views.FileMenuPanels.DocumentInfo.txtComment": "評論", + "PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "已建立", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "最後修改者", + "PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "上一次更改", + "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "擁有者", + "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置", + "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "有權利的人", + "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主旨", + "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "標題", + "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "\n已上傳", + "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改存取權限", + "PE.Views.FileMenuPanels.DocumentRights.txtRights": "有權利的人", + "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", + "PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "帶密碼", + "PE.Views.FileMenuPanels.ProtectDoc.strProtect": "保護演示", + "PE.Views.FileMenuPanels.ProtectDoc.strSignature": "帶簽名", + "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "編輯簡報", + "PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "編輯將刪除演示文稿中的簽名。
確定要繼續嗎?", + "PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "此演示文稿已受密碼保護", + "PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有效的簽名已添加到演示文稿中。演示文稿受到保護,無法編輯。", + "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "演示文稿中的某些數字簽名無效或無法驗證。演示文稿受到保護,無法編輯。", + "PE.Views.FileMenuPanels.ProtectDoc.txtView": "查看簽名", + "PE.Views.FileMenuPanels.Settings.okButtonText": "套用", + "PE.Views.FileMenuPanels.Settings.strAlignGuides": "打開對齊嚮導", + "PE.Views.FileMenuPanels.Settings.strAutoRecover": "開啟自動恢復", + "PE.Views.FileMenuPanels.Settings.strAutosave": "打開自動保存", + "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同編輯模式", + "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "其他用戶將立即看到您的更改", + "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "您需要先接受更改,然後才能看到它們", + "PE.Views.FileMenuPanels.Settings.strFast": "快", + "PE.Views.FileMenuPanels.Settings.strFontRender": "字體提示", + "PE.Views.FileMenuPanels.Settings.strForcesave": "始終保存到服務器(否則在文檔關閉時保存到服務器)", + "PE.Views.FileMenuPanels.Settings.strInputMode": "打開象形文字", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "巨集設定", + "PE.Views.FileMenuPanels.Settings.strPaste": "剪切,複製和粘貼", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕", + "PE.Views.FileMenuPanels.Settings.strShowChanges": "即時共同編輯設定更新", + "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "啟用拼寫檢查選項", + "PE.Views.FileMenuPanels.Settings.strStrict": "嚴格", + "PE.Views.FileMenuPanels.Settings.strTheme": "介面主題", + "PE.Views.FileMenuPanels.Settings.strUnit": "測量單位", + "PE.Views.FileMenuPanels.Settings.strZoom": "預設縮放值", + "PE.Views.FileMenuPanels.Settings.text10Minutes": "每10分鐘", + "PE.Views.FileMenuPanels.Settings.text30Minutes": "每30分鐘", + "PE.Views.FileMenuPanels.Settings.text5Minutes": "每5分鐘", + "PE.Views.FileMenuPanels.Settings.text60Minutes": "每一小時", + "PE.Views.FileMenuPanels.Settings.textAlignGuides": "對齊指南", + "PE.Views.FileMenuPanels.Settings.textAutoRecover": "自動恢復", + "PE.Views.FileMenuPanels.Settings.textAutoSave": "自動保存", + "PE.Views.FileMenuPanels.Settings.textDisabled": "已停用", + "PE.Views.FileMenuPanels.Settings.textForceSave": "儲存到伺服器", + "PE.Views.FileMenuPanels.Settings.textMinute": "每一分鐘", + "PE.Views.FileMenuPanels.Settings.txtAll": "查看全部", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "自動更正選項...", + "PE.Views.FileMenuPanels.Settings.txtCacheMode": "預設緩存模式", + "PE.Views.FileMenuPanels.Settings.txtCm": "公分", + "PE.Views.FileMenuPanels.Settings.txtFitSlide": "與投影片切合", + "PE.Views.FileMenuPanels.Settings.txtFitWidth": "切合至寬度", + "PE.Views.FileMenuPanels.Settings.txtInch": "吋", + "PE.Views.FileMenuPanels.Settings.txtInput": "備用輸入", + "PE.Views.FileMenuPanels.Settings.txtLast": "查看最後", + "PE.Views.FileMenuPanels.Settings.txtMac": "作為OS X", + "PE.Views.FileMenuPanels.Settings.txtNative": "本機", + "PE.Views.FileMenuPanels.Settings.txtProofing": "打樣", + "PE.Views.FileMenuPanels.Settings.txtPt": "點", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "全部啟用", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "不用提示啟用全部巨集", + "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "拼字檢查", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "全部停用", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "不用提示停用全部巨集", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "顯示通知", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "以提示停用全部巨集", + "PE.Views.FileMenuPanels.Settings.txtWin": "作為Windows", + "PE.Views.HeaderFooterDialog.applyAllText": "全部應用", + "PE.Views.HeaderFooterDialog.applyText": "套用", + "PE.Views.HeaderFooterDialog.diffLanguage": "您不能使用與投影片母片不同的語言的日期格式。
要更改母片,請點擊“全部應用”而不是“應用”", + "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "警告", + "PE.Views.HeaderFooterDialog.textDateTime": "日期和時間", + "PE.Views.HeaderFooterDialog.textFixed": "固定", + "PE.Views.HeaderFooterDialog.textFooter": "頁腳中的文字", + "PE.Views.HeaderFooterDialog.textFormat": "格式", + "PE.Views.HeaderFooterDialog.textLang": "語言", + "PE.Views.HeaderFooterDialog.textNotTitle": "不顯示在標題投影片上", + "PE.Views.HeaderFooterDialog.textPreview": "預覽", + "PE.Views.HeaderFooterDialog.textSlideNum": "投影片頁碼", + "PE.Views.HeaderFooterDialog.textTitle": "頁腳設置", + "PE.Views.HeaderFooterDialog.textUpdate": "自動更新", + "PE.Views.HyperlinkSettingsDialog.strDisplay": "顯示", + "PE.Views.HyperlinkSettingsDialog.strLinkTo": "連結至", + "PE.Views.HyperlinkSettingsDialog.textDefault": "所選文字片段", + "PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "在此處輸入標題", + "PE.Views.HyperlinkSettingsDialog.textEmptyLink": "在此處輸入連結", + "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "在此處輸入工具提示", + "PE.Views.HyperlinkSettingsDialog.textExternalLink": "外部連結", + "PE.Views.HyperlinkSettingsDialog.textInternalLink": "這個簡報中的投影片", + "PE.Views.HyperlinkSettingsDialog.textSlides": "投影片", + "PE.Views.HyperlinkSettingsDialog.textTipText": "屏幕提示文字", + "PE.Views.HyperlinkSettingsDialog.textTitle": "超連結設置", + "PE.Views.HyperlinkSettingsDialog.txtEmpty": "這是必填欄", + "PE.Views.HyperlinkSettingsDialog.txtFirst": "第一張投影片", + "PE.Views.HyperlinkSettingsDialog.txtLast": "最後一張投影片", + "PE.Views.HyperlinkSettingsDialog.txtNext": "下一張投影片", + "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "此字段應為“ http://www.example.com”格式的網址", + "PE.Views.HyperlinkSettingsDialog.txtPrev": "上一張投影片", + "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "此欄位限2083字符", + "PE.Views.HyperlinkSettingsDialog.txtSlide": "滑動", + "PE.Views.ImageSettings.textAdvanced": "顯示進階設定", + "PE.Views.ImageSettings.textCrop": "修剪", + "PE.Views.ImageSettings.textCropFill": "填滿", + "PE.Views.ImageSettings.textCropFit": "切合", + "PE.Views.ImageSettings.textCropToShape": "剪裁成圖形", + "PE.Views.ImageSettings.textEdit": "編輯", + "PE.Views.ImageSettings.textEditObject": "編輯物件", + "PE.Views.ImageSettings.textFitSlide": "與投影片切合", + "PE.Views.ImageSettings.textFlip": "翻轉", + "PE.Views.ImageSettings.textFromFile": "從檔案", + "PE.Views.ImageSettings.textFromStorage": "從存儲", + "PE.Views.ImageSettings.textFromUrl": "從 URL", + "PE.Views.ImageSettings.textHeight": "高度", + "PE.Views.ImageSettings.textHint270": "逆時針旋轉90°", + "PE.Views.ImageSettings.textHint90": "順時針旋轉90°", + "PE.Views.ImageSettings.textHintFlipH": "水平翻轉", + "PE.Views.ImageSettings.textHintFlipV": "垂直翻轉", + "PE.Views.ImageSettings.textInsert": "取代圖片", + "PE.Views.ImageSettings.textOriginalSize": "實際大小", + "PE.Views.ImageSettings.textRecentlyUsed": "最近使用", + "PE.Views.ImageSettings.textRotate90": "旋轉90°", + "PE.Views.ImageSettings.textRotation": "旋轉", + "PE.Views.ImageSettings.textSize": "大小", + "PE.Views.ImageSettings.textWidth": "寬度", + "PE.Views.ImageSettingsAdvanced.textAlt": "替代文字", + "PE.Views.ImageSettingsAdvanced.textAltDescription": "描述", + "PE.Views.ImageSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "PE.Views.ImageSettingsAdvanced.textAltTitle": "標題", + "PE.Views.ImageSettingsAdvanced.textAngle": "角度", + "PE.Views.ImageSettingsAdvanced.textFlipped": "已翻轉", + "PE.Views.ImageSettingsAdvanced.textHeight": "高度", + "PE.Views.ImageSettingsAdvanced.textHorizontally": "水平地", + "PE.Views.ImageSettingsAdvanced.textKeepRatio": "比例不變", + "PE.Views.ImageSettingsAdvanced.textOriginalSize": "實際大小", + "PE.Views.ImageSettingsAdvanced.textPlacement": "放置", + "PE.Views.ImageSettingsAdvanced.textPosition": "位置", + "PE.Views.ImageSettingsAdvanced.textRotation": "旋轉", + "PE.Views.ImageSettingsAdvanced.textSize": "大小", + "PE.Views.ImageSettingsAdvanced.textTitle": "圖像-進階設置", + "PE.Views.ImageSettingsAdvanced.textVertically": "垂直", + "PE.Views.ImageSettingsAdvanced.textWidth": "寬度", + "PE.Views.LeftMenu.tipAbout": "關於", + "PE.Views.LeftMenu.tipChat": "聊天", + "PE.Views.LeftMenu.tipComments": "評論", + "PE.Views.LeftMenu.tipPlugins": "外掛程式", + "PE.Views.LeftMenu.tipSearch": "搜尋", + "PE.Views.LeftMenu.tipSlides": "投影片", + "PE.Views.LeftMenu.tipSupport": "反饋與支持", + "PE.Views.LeftMenu.tipTitles": "標題", + "PE.Views.LeftMenu.txtDeveloper": "開發者模式", + "PE.Views.LeftMenu.txtLimit": "限制存取", + "PE.Views.LeftMenu.txtTrial": "試用模式", + "PE.Views.LeftMenu.txtTrialDev": "試用開發人員模式", + "PE.Views.ParagraphSettings.strLineHeight": "行間距", + "PE.Views.ParagraphSettings.strParagraphSpacing": "段落間距", + "PE.Views.ParagraphSettings.strSpacingAfter": "之後", + "PE.Views.ParagraphSettings.strSpacingBefore": "之前", + "PE.Views.ParagraphSettings.textAdvanced": "顯示進階設定", + "PE.Views.ParagraphSettings.textAt": "在", + "PE.Views.ParagraphSettings.textAtLeast": "至少", + "PE.Views.ParagraphSettings.textAuto": "多項", + "PE.Views.ParagraphSettings.textExact": "準確", + "PE.Views.ParagraphSettings.txtAutoText": "自動", + "PE.Views.ParagraphSettingsAdvanced.noTabs": "指定的標籤將出現在此字段中", + "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "全部大寫", + "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "雙刪除線", + "PE.Views.ParagraphSettingsAdvanced.strIndent": "縮進", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "行間距", + "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "之後", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "之前", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "特殊", + "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "字體", + "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "縮進和間距", + "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "小大寫", + "PE.Views.ParagraphSettingsAdvanced.strSpacing": "間距", + "PE.Views.ParagraphSettingsAdvanced.strStrike": "刪除線", + "PE.Views.ParagraphSettingsAdvanced.strSubscript": "下標", + "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "上標", + "PE.Views.ParagraphSettingsAdvanced.strTabs": "標籤", + "PE.Views.ParagraphSettingsAdvanced.textAlign": "對齊", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "多項", + "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "字符間距", + "PE.Views.ParagraphSettingsAdvanced.textDefault": "預設分頁", + "PE.Views.ParagraphSettingsAdvanced.textEffects": "效果", + "PE.Views.ParagraphSettingsAdvanced.textExact": "準確", + "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "第一行", + "PE.Views.ParagraphSettingsAdvanced.textHanging": "懸掛式", + "PE.Views.ParagraphSettingsAdvanced.textJustified": "合理的", + "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(空)", + "PE.Views.ParagraphSettingsAdvanced.textRemove": "移除", + "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "移除所有", + "PE.Views.ParagraphSettingsAdvanced.textSet": "指定", + "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "中心", + "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "左", + "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "標籤位置", + "PE.Views.ParagraphSettingsAdvanced.textTabRight": "右", + "PE.Views.ParagraphSettingsAdvanced.textTitle": "段落-進階設置", + "PE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動", + "PE.Views.RightMenu.txtChartSettings": "圖表設定", + "PE.Views.RightMenu.txtImageSettings": "影像設定", + "PE.Views.RightMenu.txtParagraphSettings": "文字設定", + "PE.Views.RightMenu.txtShapeSettings": "形狀設定", + "PE.Views.RightMenu.txtSignatureSettings": "簽名設置", + "PE.Views.RightMenu.txtSlideSettings": "投影片設定", + "PE.Views.RightMenu.txtTableSettings": "表格設定", + "PE.Views.RightMenu.txtTextArtSettings": "文字藝術設定", + "PE.Views.ShapeSettings.strBackground": "背景顏色", + "PE.Views.ShapeSettings.strChange": "更改自動形狀", + "PE.Views.ShapeSettings.strColor": "顏色", + "PE.Views.ShapeSettings.strFill": "填滿", + "PE.Views.ShapeSettings.strForeground": "前景色", + "PE.Views.ShapeSettings.strPattern": "模式", + "PE.Views.ShapeSettings.strShadow": "顯示陰影", + "PE.Views.ShapeSettings.strSize": "大小", + "PE.Views.ShapeSettings.strStroke": "筆鋒", + "PE.Views.ShapeSettings.strTransparency": "透明度", + "PE.Views.ShapeSettings.strType": "類型", + "PE.Views.ShapeSettings.textAdvanced": "顯示進階設定", + "PE.Views.ShapeSettings.textAngle": "角度", + "PE.Views.ShapeSettings.textBorderSizeErr": "輸入的值不正確。
請輸入0 pt至1584 pt之間的值。", + "PE.Views.ShapeSettings.textColor": "填充顏色", + "PE.Views.ShapeSettings.textDirection": "方向", + "PE.Views.ShapeSettings.textEmptyPattern": "無模式", + "PE.Views.ShapeSettings.textFlip": "翻轉", + "PE.Views.ShapeSettings.textFromFile": "從檔案", + "PE.Views.ShapeSettings.textFromStorage": "從存儲", + "PE.Views.ShapeSettings.textFromUrl": "從 URL", + "PE.Views.ShapeSettings.textGradient": "漸變點", + "PE.Views.ShapeSettings.textGradientFill": "漸層填充", + "PE.Views.ShapeSettings.textHint270": "逆時針旋轉90°", + "PE.Views.ShapeSettings.textHint90": "順時針旋轉90°", + "PE.Views.ShapeSettings.textHintFlipH": "水平翻轉", + "PE.Views.ShapeSettings.textHintFlipV": "垂直翻轉", + "PE.Views.ShapeSettings.textImageTexture": "圖片或紋理", + "PE.Views.ShapeSettings.textLinear": "線性的", + "PE.Views.ShapeSettings.textNoFill": "沒有填充", + "PE.Views.ShapeSettings.textPatternFill": "模式", + "PE.Views.ShapeSettings.textPosition": "位置", + "PE.Views.ShapeSettings.textRadial": "徑向的", + "PE.Views.ShapeSettings.textRecentlyUsed": "最近使用", + "PE.Views.ShapeSettings.textRotate90": "旋轉90°", + "PE.Views.ShapeSettings.textRotation": "旋轉", + "PE.Views.ShapeSettings.textSelectImage": "選擇圖片", + "PE.Views.ShapeSettings.textSelectTexture": "選擇", + "PE.Views.ShapeSettings.textStretch": "延伸", + "PE.Views.ShapeSettings.textStyle": "樣式", + "PE.Views.ShapeSettings.textTexture": "從紋理", + "PE.Views.ShapeSettings.textTile": "磚瓦", + "PE.Views.ShapeSettings.tipAddGradientPoint": "添加漸變點", + "PE.Views.ShapeSettings.tipRemoveGradientPoint": "刪除漸變點", + "PE.Views.ShapeSettings.txtBrownPaper": "牛皮紙", + "PE.Views.ShapeSettings.txtCanvas": "帆布", + "PE.Views.ShapeSettings.txtCarton": "紙箱", + "PE.Views.ShapeSettings.txtDarkFabric": "深色面料", + "PE.Views.ShapeSettings.txtGrain": "紋", + "PE.Views.ShapeSettings.txtGranite": "花崗岩", + "PE.Views.ShapeSettings.txtGreyPaper": "灰紙", + "PE.Views.ShapeSettings.txtKnit": "編織", + "PE.Views.ShapeSettings.txtLeather": "皮革", + "PE.Views.ShapeSettings.txtNoBorders": "無線條", + "PE.Views.ShapeSettings.txtPapyrus": "紙莎草紙", + "PE.Views.ShapeSettings.txtWood": "木頭", + "PE.Views.ShapeSettingsAdvanced.strColumns": "欄", + "PE.Views.ShapeSettingsAdvanced.strMargins": "文字填充", + "PE.Views.ShapeSettingsAdvanced.textAlt": "替代文字", + "PE.Views.ShapeSettingsAdvanced.textAltDescription": "描述", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "PE.Views.ShapeSettingsAdvanced.textAltTitle": "標題", + "PE.Views.ShapeSettingsAdvanced.textAngle": "角度", + "PE.Views.ShapeSettingsAdvanced.textArrows": "箭頭", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "自動調整", + "PE.Views.ShapeSettingsAdvanced.textBeginSize": "開始大小", + "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "開始樣式", + "PE.Views.ShapeSettingsAdvanced.textBevel": "斜角", + "PE.Views.ShapeSettingsAdvanced.textBottom": "底部", + "PE.Views.ShapeSettingsAdvanced.textCapType": "Cap 類型", + "PE.Views.ShapeSettingsAdvanced.textColNumber": "列數", + "PE.Views.ShapeSettingsAdvanced.textEndSize": "端部尺寸", + "PE.Views.ShapeSettingsAdvanced.textEndStyle": "結束樣式", + "PE.Views.ShapeSettingsAdvanced.textFlat": "平面", + "PE.Views.ShapeSettingsAdvanced.textFlipped": "已翻轉", + "PE.Views.ShapeSettingsAdvanced.textHeight": "高度", + "PE.Views.ShapeSettingsAdvanced.textHorizontally": "水平地", + "PE.Views.ShapeSettingsAdvanced.textJoinType": "加入類型", + "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "比例不變", + "PE.Views.ShapeSettingsAdvanced.textLeft": "左", + "PE.Views.ShapeSettingsAdvanced.textLineStyle": "線型", + "PE.Views.ShapeSettingsAdvanced.textMiter": "Miter", + "PE.Views.ShapeSettingsAdvanced.textNofit": "不要自動調整", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "調整形狀以適合文本", + "PE.Views.ShapeSettingsAdvanced.textRight": "右", + "PE.Views.ShapeSettingsAdvanced.textRotation": "旋轉", + "PE.Views.ShapeSettingsAdvanced.textRound": "圓", + "PE.Views.ShapeSettingsAdvanced.textShrink": "溢出文字縮小", + "PE.Views.ShapeSettingsAdvanced.textSize": "大小", + "PE.Views.ShapeSettingsAdvanced.textSpacing": "欄之前的距離", + "PE.Views.ShapeSettingsAdvanced.textSquare": "正方形", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "文字框", + "PE.Views.ShapeSettingsAdvanced.textTitle": "形狀 - 進階設定", + "PE.Views.ShapeSettingsAdvanced.textTop": "上方", + "PE.Views.ShapeSettingsAdvanced.textVertically": "垂直", + "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "重量和箭頭", + "PE.Views.ShapeSettingsAdvanced.textWidth": "寬度", + "PE.Views.ShapeSettingsAdvanced.txtNone": "無", + "PE.Views.SignatureSettings.notcriticalErrorTitle": "警告", + "PE.Views.SignatureSettings.strDelete": "刪除簽名", + "PE.Views.SignatureSettings.strDetails": "簽名細節", + "PE.Views.SignatureSettings.strInvalid": "無效的簽名", + "PE.Views.SignatureSettings.strSign": "簽名", + "PE.Views.SignatureSettings.strSignature": "簽名", + "PE.Views.SignatureSettings.strValid": "有效簽名", + "PE.Views.SignatureSettings.txtContinueEditing": "仍要編輯", + "PE.Views.SignatureSettings.txtEditWarning": "編輯將刪除演示文稿中的簽名。
確定要繼續嗎?", + "PE.Views.SignatureSettings.txtRemoveWarning": "確定移除此簽名?
這動作無法復原.", + "PE.Views.SignatureSettings.txtSigned": "有效的簽名已添加到演示文稿中。演示文稿受到保護,無法編輯。", + "PE.Views.SignatureSettings.txtSignedInvalid": "演示文稿中的某些數字簽名無效或無法驗證。演示文稿受到保護,無法編輯。", + "PE.Views.SlideSettings.strBackground": "背景顏色", + "PE.Views.SlideSettings.strColor": "顏色", + "PE.Views.SlideSettings.strDateTime": "顯示日期和時間", + "PE.Views.SlideSettings.strFill": "背景", + "PE.Views.SlideSettings.strForeground": "前景色", + "PE.Views.SlideSettings.strPattern": "模式", + "PE.Views.SlideSettings.strSlideNum": "顯示投影片編號", + "PE.Views.SlideSettings.strTransparency": "透明度", + "PE.Views.SlideSettings.textAdvanced": "顯示進階設定", + "PE.Views.SlideSettings.textAngle": "角度", + "PE.Views.SlideSettings.textColor": "填充顏色", + "PE.Views.SlideSettings.textDirection": "方向", + "PE.Views.SlideSettings.textEmptyPattern": "無模式", + "PE.Views.SlideSettings.textFromFile": "從檔案", + "PE.Views.SlideSettings.textFromStorage": "從存儲", + "PE.Views.SlideSettings.textFromUrl": "從 URL", + "PE.Views.SlideSettings.textGradient": "漸變點", + "PE.Views.SlideSettings.textGradientFill": "漸層填充", + "PE.Views.SlideSettings.textImageTexture": "圖片或紋理", + "PE.Views.SlideSettings.textLinear": "線性的", + "PE.Views.SlideSettings.textNoFill": "沒有填充", + "PE.Views.SlideSettings.textPatternFill": "模式", + "PE.Views.SlideSettings.textPosition": "位置", + "PE.Views.SlideSettings.textRadial": "徑向的", + "PE.Views.SlideSettings.textReset": "重設變更", + "PE.Views.SlideSettings.textSelectImage": "選擇圖片", + "PE.Views.SlideSettings.textSelectTexture": "選擇", + "PE.Views.SlideSettings.textStretch": "延伸", + "PE.Views.SlideSettings.textStyle": "樣式", + "PE.Views.SlideSettings.textTexture": "從紋理", + "PE.Views.SlideSettings.textTile": "磚瓦", + "PE.Views.SlideSettings.tipAddGradientPoint": "添加漸變點", + "PE.Views.SlideSettings.tipRemoveGradientPoint": "刪除漸變點", + "PE.Views.SlideSettings.txtBrownPaper": "牛皮紙", + "PE.Views.SlideSettings.txtCanvas": "帆布", + "PE.Views.SlideSettings.txtCarton": "紙箱", + "PE.Views.SlideSettings.txtDarkFabric": "深色面料", + "PE.Views.SlideSettings.txtGrain": "紋", + "PE.Views.SlideSettings.txtGranite": "花崗岩", + "PE.Views.SlideSettings.txtGreyPaper": "灰紙", + "PE.Views.SlideSettings.txtKnit": "編織", + "PE.Views.SlideSettings.txtLeather": "皮革", + "PE.Views.SlideSettings.txtPapyrus": "紙莎草紙", + "PE.Views.SlideSettings.txtWood": "木頭", + "PE.Views.SlideshowSettings.textLoop": "連續循環直到按下“ Esc”", + "PE.Views.SlideshowSettings.textTitle": "顯示設置", + "PE.Views.SlideSizeSettings.strLandscape": "景觀", + "PE.Views.SlideSizeSettings.strPortrait": "纵向", + "PE.Views.SlideSizeSettings.textHeight": "高度", + "PE.Views.SlideSizeSettings.textSlideOrientation": "滑動方向", + "PE.Views.SlideSizeSettings.textSlideSize": "投影片大小", + "PE.Views.SlideSizeSettings.textTitle": "投影片大小設置", + "PE.Views.SlideSizeSettings.textWidth": "寬度", + "PE.Views.SlideSizeSettings.txt35": "35公釐投影片", + "PE.Views.SlideSizeSettings.txtA3": "A3紙(297x420毫米)", + "PE.Views.SlideSizeSettings.txtA4": "A4紙(210x297毫米)", + "PE.Views.SlideSizeSettings.txtB4": "B4(ICO)紙(250x353毫米)", + "PE.Views.SlideSizeSettings.txtB5": "B5(ICO)紙(176x250毫米)", + "PE.Views.SlideSizeSettings.txtBanner": "幡", + "PE.Views.SlideSizeSettings.txtCustom": "自訂", + "PE.Views.SlideSizeSettings.txtLedger": "分類帳紙(11x17英寸)", + "PE.Views.SlideSizeSettings.txtLetter": "信紙(8.5x11英寸)", + "PE.Views.SlideSizeSettings.txtOverhead": "高架", + "PE.Views.SlideSizeSettings.txtStandard": "標準(4:3)", + "PE.Views.SlideSizeSettings.txtWidescreen": "寬屏", + "PE.Views.Statusbar.goToPageText": "轉到投影片", + "PE.Views.Statusbar.pageIndexText": "在{1}投影片中的第{0}張", + "PE.Views.Statusbar.textShowBegin": "從頭開始展示", + "PE.Views.Statusbar.textShowCurrent": "從目前投影片顯示", + "PE.Views.Statusbar.textShowPresenterView": "顯示演示者視圖", + "PE.Views.Statusbar.tipAccessRights": "管理文檔存取權限", + "PE.Views.Statusbar.tipFitPage": "與投影片切合", + "PE.Views.Statusbar.tipFitWidth": "切合至寬度", + "PE.Views.Statusbar.tipPreview": "開始投影片放映", + "PE.Views.Statusbar.tipSetLang": "設定文字語言", + "PE.Views.Statusbar.tipZoomFactor": "放大", + "PE.Views.Statusbar.tipZoomIn": "放大", + "PE.Views.Statusbar.tipZoomOut": "縮小", + "PE.Views.Statusbar.txtPageNumInvalid": "無效的投影片編號", + "PE.Views.TableSettings.deleteColumnText": "刪除欄位", + "PE.Views.TableSettings.deleteRowText": "刪除行列", + "PE.Views.TableSettings.deleteTableText": "刪除表格", + "PE.Views.TableSettings.insertColumnLeftText": "向左插入列", + "PE.Views.TableSettings.insertColumnRightText": "向右插入列", + "PE.Views.TableSettings.insertRowAboveText": "在上方插入行", + "PE.Views.TableSettings.insertRowBelowText": "在下方插入行", + "PE.Views.TableSettings.mergeCellsText": "合併單元格", + "PE.Views.TableSettings.selectCellText": "選擇儲存格", + "PE.Views.TableSettings.selectColumnText": "選擇欄", + "PE.Views.TableSettings.selectRowText": "選擇列", + "PE.Views.TableSettings.selectTableText": "選擇表格", + "PE.Views.TableSettings.splitCellsText": "分割儲存格...", + "PE.Views.TableSettings.splitCellTitleText": "分割儲存格", + "PE.Views.TableSettings.textAdvanced": "顯示進階設定", + "PE.Views.TableSettings.textBackColor": "背景顏色", + "PE.Views.TableSettings.textBanded": "帶狀", + "PE.Views.TableSettings.textBorderColor": "顏色", + "PE.Views.TableSettings.textBorders": "邊框樣式", + "PE.Views.TableSettings.textCellSize": "單元格大小", + "PE.Views.TableSettings.textColumns": "欄", + "PE.Views.TableSettings.textDistributeCols": "分配列", + "PE.Views.TableSettings.textDistributeRows": "分配行", + "PE.Views.TableSettings.textEdit": "行和列", + "PE.Views.TableSettings.textEmptyTemplate": "\n沒有模板", + "PE.Views.TableSettings.textFirst": "第一", + "PE.Views.TableSettings.textHeader": "標頭", + "PE.Views.TableSettings.textHeight": "高度", + "PE.Views.TableSettings.textLast": "最後", + "PE.Views.TableSettings.textRows": "行列", + "PE.Views.TableSettings.textSelectBorders": "選擇您要更改上面選擇的應用樣式的邊框", + "PE.Views.TableSettings.textTemplate": "從範本中選擇", + "PE.Views.TableSettings.textTotal": "總計", + "PE.Views.TableSettings.textWidth": "寬度", + "PE.Views.TableSettings.tipAll": "設置外邊界和所有內線", + "PE.Views.TableSettings.tipBottom": "僅設置外底邊框", + "PE.Views.TableSettings.tipInner": "僅設置內線", + "PE.Views.TableSettings.tipInnerHor": "僅設置水平內線", + "PE.Views.TableSettings.tipInnerVert": "僅設置垂直內線", + "PE.Views.TableSettings.tipLeft": "僅設置左外邊框", + "PE.Views.TableSettings.tipNone": "設置無邊界", + "PE.Views.TableSettings.tipOuter": "僅設置外部框線", + "PE.Views.TableSettings.tipRight": "僅設置右外框", + "PE.Views.TableSettings.tipTop": "僅設置外部頂部邊框", + "PE.Views.TableSettings.txtNoBorders": "無邊框", + "PE.Views.TableSettings.txtTable_Accent": "強調", + "PE.Views.TableSettings.txtTable_DarkStyle": "黑暗風格", + "PE.Views.TableSettings.txtTable_LightStyle": "燈光風格", + "PE.Views.TableSettings.txtTable_MediumStyle": "中型樣式", + "PE.Views.TableSettings.txtTable_NoGrid": "無網格", + "PE.Views.TableSettings.txtTable_NoStyle": "沒樣式", + "PE.Views.TableSettings.txtTable_TableGrid": "表格網格", + "PE.Views.TableSettings.txtTable_ThemedStyle": "主題風格", + "PE.Views.TableSettingsAdvanced.textAlt": "替代文字", + "PE.Views.TableSettingsAdvanced.textAltDescription": "描述", + "PE.Views.TableSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "PE.Views.TableSettingsAdvanced.textAltTitle": "標題", + "PE.Views.TableSettingsAdvanced.textBottom": "底部", + "PE.Views.TableSettingsAdvanced.textCheckMargins": "使用預設邊距", + "PE.Views.TableSettingsAdvanced.textDefaultMargins": "預設邊框", + "PE.Views.TableSettingsAdvanced.textLeft": "左", + "PE.Views.TableSettingsAdvanced.textMargins": "單元格內邊距", + "PE.Views.TableSettingsAdvanced.textRight": "右", + "PE.Views.TableSettingsAdvanced.textTitle": "表格 - 進階設定", + "PE.Views.TableSettingsAdvanced.textTop": "上方", + "PE.Views.TableSettingsAdvanced.textWidthSpaces": "邊框", + "PE.Views.TextArtSettings.strBackground": "背景顏色", + "PE.Views.TextArtSettings.strColor": "顏色", + "PE.Views.TextArtSettings.strFill": "填滿", + "PE.Views.TextArtSettings.strForeground": "前景色", + "PE.Views.TextArtSettings.strPattern": "模式", + "PE.Views.TextArtSettings.strSize": "大小", + "PE.Views.TextArtSettings.strStroke": "筆鋒", + "PE.Views.TextArtSettings.strTransparency": "透明度", + "PE.Views.TextArtSettings.strType": "類型", + "PE.Views.TextArtSettings.textAngle": "角度", + "PE.Views.TextArtSettings.textBorderSizeErr": "輸入的值不正確。
請輸入0 pt至1584 pt之間的值。", + "PE.Views.TextArtSettings.textColor": "填充顏色", + "PE.Views.TextArtSettings.textDirection": "方向", + "PE.Views.TextArtSettings.textEmptyPattern": "無模式", + "PE.Views.TextArtSettings.textFromFile": "從檔案", + "PE.Views.TextArtSettings.textFromUrl": "從 URL", + "PE.Views.TextArtSettings.textGradient": "漸變點", + "PE.Views.TextArtSettings.textGradientFill": "漸層填充", + "PE.Views.TextArtSettings.textImageTexture": "圖片或紋理", + "PE.Views.TextArtSettings.textLinear": "線性的", + "PE.Views.TextArtSettings.textNoFill": "沒有填充", + "PE.Views.TextArtSettings.textPatternFill": "模式", + "PE.Views.TextArtSettings.textPosition": "位置", + "PE.Views.TextArtSettings.textRadial": "徑向的", + "PE.Views.TextArtSettings.textSelectTexture": "選擇", + "PE.Views.TextArtSettings.textStretch": "延伸", + "PE.Views.TextArtSettings.textStyle": "樣式", + "PE.Views.TextArtSettings.textTemplate": "樣板", + "PE.Views.TextArtSettings.textTexture": "從紋理", + "PE.Views.TextArtSettings.textTile": "磚瓦", + "PE.Views.TextArtSettings.textTransform": "轉變", + "PE.Views.TextArtSettings.tipAddGradientPoint": "添加漸變點", + "PE.Views.TextArtSettings.tipRemoveGradientPoint": "刪除漸變點", + "PE.Views.TextArtSettings.txtBrownPaper": "牛皮紙", + "PE.Views.TextArtSettings.txtCanvas": "帆布", + "PE.Views.TextArtSettings.txtCarton": "紙箱", + "PE.Views.TextArtSettings.txtDarkFabric": "深色面料", + "PE.Views.TextArtSettings.txtGrain": "紋", + "PE.Views.TextArtSettings.txtGranite": "花崗岩", + "PE.Views.TextArtSettings.txtGreyPaper": "灰紙", + "PE.Views.TextArtSettings.txtKnit": "編織", + "PE.Views.TextArtSettings.txtLeather": "皮革", + "PE.Views.TextArtSettings.txtNoBorders": "無線條", + "PE.Views.TextArtSettings.txtPapyrus": "紙莎草紙", + "PE.Views.TextArtSettings.txtWood": "木頭", + "PE.Views.Toolbar.capAddSlide": "新增投影片", + "PE.Views.Toolbar.capBtnAddComment": "增加評論", + "PE.Views.Toolbar.capBtnComment": "評論", + "PE.Views.Toolbar.capBtnDateTime": "日期和時間", + "PE.Views.Toolbar.capBtnInsHeader": "頁尾", + "PE.Views.Toolbar.capBtnInsSymbol": "符號", + "PE.Views.Toolbar.capBtnSlideNum": "投影片頁碼", + "PE.Views.Toolbar.capInsertAudio": "音訊", + "PE.Views.Toolbar.capInsertChart": "圖表", + "PE.Views.Toolbar.capInsertEquation": "方程式", + "PE.Views.Toolbar.capInsertHyperlink": "超連結", + "PE.Views.Toolbar.capInsertImage": "圖像", + "PE.Views.Toolbar.capInsertShape": "形狀", + "PE.Views.Toolbar.capInsertTable": "表格", + "PE.Views.Toolbar.capInsertText": "文字框", + "PE.Views.Toolbar.capInsertVideo": "影片", + "PE.Views.Toolbar.capTabFile": "檔案", + "PE.Views.Toolbar.capTabHome": "首頁", + "PE.Views.Toolbar.capTabInsert": "插入", + "PE.Views.Toolbar.mniCapitalizeWords": "每個單字字首大寫", + "PE.Views.Toolbar.mniCustomTable": "插入自訂表格", + "PE.Views.Toolbar.mniImageFromFile": "圖片來自文件", + "PE.Views.Toolbar.mniImageFromStorage": "來自存儲的圖像", + "PE.Views.Toolbar.mniImageFromUrl": "來自網址的圖片", + "PE.Views.Toolbar.mniLowerCase": "小寫", + "PE.Views.Toolbar.mniSentenceCase": "大寫句子頭", + "PE.Views.Toolbar.mniSlideAdvanced": "進階設定", + "PE.Views.Toolbar.mniSlideStandard": "標準(4:3)", + "PE.Views.Toolbar.mniSlideWide": "寬螢幕(16:9)", + "PE.Views.Toolbar.mniToggleCase": "轉換大小寫", + "PE.Views.Toolbar.mniUpperCase": "大寫", + "PE.Views.Toolbar.strMenuNoFill": "沒有填充", + "PE.Views.Toolbar.textAlignBottom": "將文字對齊到底部", + "PE.Views.Toolbar.textAlignCenter": "中心文字", + "PE.Views.Toolbar.textAlignJust": "證明", + "PE.Views.Toolbar.textAlignLeft": "左對齊文字", + "PE.Views.Toolbar.textAlignMiddle": "文字居中對齊", + "PE.Views.Toolbar.textAlignRight": "右對齊文字", + "PE.Views.Toolbar.textAlignTop": "將文字對齊到頂部", + "PE.Views.Toolbar.textArrangeBack": "傳送到背景", + "PE.Views.Toolbar.textArrangeBackward": "向後發送", + "PE.Views.Toolbar.textArrangeForward": "向前帶進", + "PE.Views.Toolbar.textArrangeFront": "移到前景", + "PE.Views.Toolbar.textBold": "粗體", + "PE.Views.Toolbar.textColumnsCustom": "自定欄", + "PE.Views.Toolbar.textColumnsOne": "一欄", + "PE.Views.Toolbar.textColumnsThree": "三欄", + "PE.Views.Toolbar.textColumnsTwo": "兩欄", + "PE.Views.Toolbar.textItalic": "斜體", + "PE.Views.Toolbar.textListSettings": "清單設定", + "PE.Views.Toolbar.textRecentlyUsed": "最近使用", + "PE.Views.Toolbar.textShapeAlignBottom": "底部對齊", + "PE.Views.Toolbar.textShapeAlignCenter": "居中對齊", + "PE.Views.Toolbar.textShapeAlignLeft": "對齊左側", + "PE.Views.Toolbar.textShapeAlignMiddle": "中央對齊", + "PE.Views.Toolbar.textShapeAlignRight": "對齊右側", + "PE.Views.Toolbar.textShapeAlignTop": "上方對齊", + "PE.Views.Toolbar.textShowBegin": "從頭開始展示", + "PE.Views.Toolbar.textShowCurrent": "從目前投影片顯示", + "PE.Views.Toolbar.textShowPresenterView": "顯示演示者視圖", + "PE.Views.Toolbar.textShowSettings": "顯示設置", + "PE.Views.Toolbar.textStrikeout": "刪除線", + "PE.Views.Toolbar.textSubscript": "下標", + "PE.Views.Toolbar.textSuperscript": "上標", + "PE.Views.Toolbar.textTabAnimation": "動畫", + "PE.Views.Toolbar.textTabCollaboration": "協作", + "PE.Views.Toolbar.textTabFile": "檔案", + "PE.Views.Toolbar.textTabHome": "首頁", + "PE.Views.Toolbar.textTabInsert": "插入", + "PE.Views.Toolbar.textTabProtect": "保護", + "PE.Views.Toolbar.textTabTransitions": "過渡", + "PE.Views.Toolbar.textTabView": "檢視", + "PE.Views.Toolbar.textTitleError": "錯誤", + "PE.Views.Toolbar.textUnderline": "底線", + "PE.Views.Toolbar.tipAddSlide": "新增投影片", + "PE.Views.Toolbar.tipBack": "返回", + "PE.Views.Toolbar.tipChangeCase": "改大小寫", + "PE.Views.Toolbar.tipChangeChart": "更改圖表類型", + "PE.Views.Toolbar.tipChangeSlide": "更改投影片版面配置", + "PE.Views.Toolbar.tipClearStyle": "清晰的風格", + "PE.Views.Toolbar.tipColorSchemas": "更改配色方案", + "PE.Views.Toolbar.tipColumns": "插入欄", + "PE.Views.Toolbar.tipCopy": "複製", + "PE.Views.Toolbar.tipCopyStyle": "複製樣式", + "PE.Views.Toolbar.tipDateTime": "插入當前日期和時間", + "PE.Views.Toolbar.tipDecFont": "減少字體大小", + "PE.Views.Toolbar.tipDecPrLeft": "減少縮進", + "PE.Views.Toolbar.tipEditHeader": "編輯頁腳", + "PE.Views.Toolbar.tipFontColor": "字體顏色", + "PE.Views.Toolbar.tipFontName": "字體", + "PE.Views.Toolbar.tipFontSize": "字體大小", + "PE.Views.Toolbar.tipHAligh": "水平對齊", + "PE.Views.Toolbar.tipHighlightColor": "熒光色選", + "PE.Views.Toolbar.tipIncFont": "增量字體大小", + "PE.Views.Toolbar.tipIncPrLeft": "增加縮進", + "PE.Views.Toolbar.tipInsertAudio": "插入音頻", + "PE.Views.Toolbar.tipInsertChart": "插入圖表", + "PE.Views.Toolbar.tipInsertEquation": "插入方程式", + "PE.Views.Toolbar.tipInsertHyperlink": "新增超連結", + "PE.Views.Toolbar.tipInsertImage": "插入圖片", + "PE.Views.Toolbar.tipInsertShape": "插入自動形狀", + "PE.Views.Toolbar.tipInsertSymbol": "插入符號", + "PE.Views.Toolbar.tipInsertTable": "插入表格", + "PE.Views.Toolbar.tipInsertText": "插入文字框", + "PE.Views.Toolbar.tipInsertTextArt": "插入文字藝術", + "PE.Views.Toolbar.tipInsertVideo": "插入影片", + "PE.Views.Toolbar.tipLineSpace": "行間距", + "PE.Views.Toolbar.tipMarkers": "項目符號", + "PE.Views.Toolbar.tipMarkersArrow": "箭頭項目符號", + "PE.Views.Toolbar.tipMarkersCheckmark": "核取記號項目符號", + "PE.Views.Toolbar.tipMarkersDash": "連字號項目符號", + "PE.Views.Toolbar.tipMarkersFRhombus": "實心菱形項目符號", + "PE.Views.Toolbar.tipMarkersFRound": "實心圓項目符號", + "PE.Views.Toolbar.tipMarkersFSquare": "實心方形項目符號", + "PE.Views.Toolbar.tipMarkersHRound": "空心圓項目符號", + "PE.Views.Toolbar.tipMarkersStar": "星星項目符號", + "PE.Views.Toolbar.tipNone": "無", + "PE.Views.Toolbar.tipNumbers": "編號", + "PE.Views.Toolbar.tipPaste": "貼上", + "PE.Views.Toolbar.tipPreview": "開始投影片放映", + "PE.Views.Toolbar.tipPrint": "列印", + "PE.Views.Toolbar.tipRedo": "重做", + "PE.Views.Toolbar.tipSave": "儲存", + "PE.Views.Toolbar.tipSaveCoauth": "保存您的更改,以供其他用戶查看。", + "PE.Views.Toolbar.tipShapeAlign": "對齊形狀", + "PE.Views.Toolbar.tipShapeArrange": "排列形狀", + "PE.Views.Toolbar.tipSlideNum": "插入投影片編號", + "PE.Views.Toolbar.tipSlideSize": "選擇投影片大小", + "PE.Views.Toolbar.tipSlideTheme": "投影片主題", + "PE.Views.Toolbar.tipUndo": "復原", + "PE.Views.Toolbar.tipVAligh": "垂直對齊", + "PE.Views.Toolbar.tipViewSettings": "查看設定", + "PE.Views.Toolbar.txtDistribHor": "水平分佈", + "PE.Views.Toolbar.txtDistribVert": "垂直分佈", + "PE.Views.Toolbar.txtDuplicateSlide": "投影片複製", + "PE.Views.Toolbar.txtGroup": "群組", + "PE.Views.Toolbar.txtObjectsAlign": "對齊所選物件", + "PE.Views.Toolbar.txtScheme1": "辦公室", + "PE.Views.Toolbar.txtScheme10": "中位數", + "PE.Views.Toolbar.txtScheme11": " 地鐵", + "PE.Views.Toolbar.txtScheme12": "模組", + "PE.Views.Toolbar.txtScheme13": "豐富的", + "PE.Views.Toolbar.txtScheme14": "Oriel", + "PE.Views.Toolbar.txtScheme15": "起源", + "PE.Views.Toolbar.txtScheme16": "紙", + "PE.Views.Toolbar.txtScheme17": "冬至", + "PE.Views.Toolbar.txtScheme18": "技術", + "PE.Views.Toolbar.txtScheme19": "跋涉", + "PE.Views.Toolbar.txtScheme2": "灰階", + "PE.Views.Toolbar.txtScheme20": "市區", + "PE.Views.Toolbar.txtScheme21": "感染力", + "PE.Views.Toolbar.txtScheme22": "新的Office", + "PE.Views.Toolbar.txtScheme3": "頂尖", + "PE.Views.Toolbar.txtScheme4": "方面", + "PE.Views.Toolbar.txtScheme5": "思域", + "PE.Views.Toolbar.txtScheme6": "大堂", + "PE.Views.Toolbar.txtScheme7": "產權", + "PE.Views.Toolbar.txtScheme8": "流程", + "PE.Views.Toolbar.txtScheme9": "鑄造廠", + "PE.Views.Toolbar.txtSlideAlign": "對齊投影片", + "PE.Views.Toolbar.txtUngroup": "解開組合", + "PE.Views.Transitions.strDelay": "延遲", + "PE.Views.Transitions.strDuration": "持續時間", + "PE.Views.Transitions.strStartOnClick": "點選後開始", + "PE.Views.Transitions.textBlack": "通過黑", + "PE.Views.Transitions.textBottom": "底部", + "PE.Views.Transitions.textBottomLeft": "左下方", + "PE.Views.Transitions.textBottomRight": "右下方", + "PE.Views.Transitions.textClock": "時鐘", + "PE.Views.Transitions.textClockwise": "順時針", + "PE.Views.Transitions.textCounterclockwise": "逆時針", + "PE.Views.Transitions.textCover": "覆蓋", + "PE.Views.Transitions.textFade": "褪", + "PE.Views.Transitions.textHorizontalIn": "水平輸入", + "PE.Views.Transitions.textHorizontalOut": "水平輸出", + "PE.Views.Transitions.textLeft": "左", + "PE.Views.Transitions.textNone": "無", + "PE.Views.Transitions.textPush": "推", + "PE.Views.Transitions.textRight": "右", + "PE.Views.Transitions.textSmoothly": "順的", + "PE.Views.Transitions.textSplit": "分割", + "PE.Views.Transitions.textTop": "上方", + "PE.Views.Transitions.textTopLeft": "左上方", + "PE.Views.Transitions.textTopRight": "右上方", + "PE.Views.Transitions.textUnCover": "揭露", + "PE.Views.Transitions.textVerticalIn": "垂直輸入", + "PE.Views.Transitions.textVerticalOut": "由中向左右", + "PE.Views.Transitions.textWedge": "楔", + "PE.Views.Transitions.textWipe": "擦去", + "PE.Views.Transitions.textZoom": "放大", + "PE.Views.Transitions.textZoomIn": "放大", + "PE.Views.Transitions.textZoomOut": "縮小", + "PE.Views.Transitions.textZoomRotate": "放大與旋轉", + "PE.Views.Transitions.txtApplyToAll": "應用於所有投影片", + "PE.Views.Transitions.txtParameters": "參量", + "PE.Views.Transitions.txtPreview": "預覽", + "PE.Views.Transitions.txtSec": "S", + "PE.Views.ViewTab.textAlwaysShowToolbar": "永遠顯示工具欄", + "PE.Views.ViewTab.textFitToSlide": "與投影片切合", + "PE.Views.ViewTab.textFitToWidth": "配合寬度", + "PE.Views.ViewTab.textInterfaceTheme": "介面主題", + "PE.Views.ViewTab.textNotes": "備忘稿", + "PE.Views.ViewTab.textRulers": "尺規", + "PE.Views.ViewTab.textStatusBar": "狀態欄", + "PE.Views.ViewTab.textZoom": "放大" +} \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 64d844ff9..d2dc3e016 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -179,6 +179,7 @@ "Common.define.effectData.textSCurve1": "S形曲线1", "Common.define.effectData.textSCurve2": "S形曲线2", "Common.define.effectData.textShape": "形状", + "Common.define.effectData.textShapes": "形状", "Common.define.effectData.textShimmer": "闪现", "Common.define.effectData.textShrinkTurn": "收缩并旋转", "Common.define.effectData.textSineWave": "正弦波", @@ -1522,7 +1523,7 @@ "PE.Views.FileMenu.btnCloseMenuCaption": "关闭菜单", "PE.Views.FileMenu.btnCreateNewCaption": "新建", "PE.Views.FileMenu.btnDownloadCaption": "下载为...", - "PE.Views.FileMenu.btnExitCaption": "退出", + "PE.Views.FileMenu.btnExitCaption": "关闭", "PE.Views.FileMenu.btnFileOpenCaption": "打开...", "PE.Views.FileMenu.btnHelpCaption": "帮助", "PE.Views.FileMenu.btnHistoryCaption": "版本历史", @@ -2168,6 +2169,14 @@ "PE.Views.Toolbar.tipInsertVideo": "插入视频", "PE.Views.Toolbar.tipLineSpace": "行间距", "PE.Views.Toolbar.tipMarkers": "项目符号", + "PE.Views.Toolbar.tipMarkersArrow": "箭头项目符号", + "PE.Views.Toolbar.tipMarkersCheckmark": "选中标记项目符号", + "PE.Views.Toolbar.tipMarkersDash": "划线项目符号", + "PE.Views.Toolbar.tipMarkersFRhombus": "实心菱形项目符号", + "PE.Views.Toolbar.tipMarkersFRound": "实心圆形项目符号", + "PE.Views.Toolbar.tipMarkersFSquare": "实心方形项目符号", + "PE.Views.Toolbar.tipMarkersHRound": "空心圆形项目符号", + "PE.Views.Toolbar.tipMarkersStar": "星形项目符号", "PE.Views.Toolbar.tipNumbers": "编号", "PE.Views.Toolbar.tipPaste": "粘贴", "PE.Views.Toolbar.tipPreview": "开始幻灯片放映", diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm index dff87269e..207637a01 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm @@ -89,6 +89,12 @@
  • To delete an Accent, you can right-click on it and select the Remove accent character, Delete char or Remove bar option from the menu (the available options differ depending on the selected accent).
  • To delete a row or a column of a Matrix, you can right-click on the placeholder within the row/column you need to delete, select the Delete option from the menu, then select Delete Row/Column.
  • +

    Convert equations

    +

    If you open an existing document containing equations which were created with an old version of equation editor (for example, with MS Office versions before 2007), you need to convert these equations to the Office Math ML format to be able to edit them.

    +

    To convert an equation, double-click it. The warning window will appear:

    +

    Convert equation

    +

    To convert the selected equation only, click the Yes button in the warning window. To convert all equations in this document, check the Apply to all equations box and click Yes.

    +

    Once the equation is converted, you can edit it.

    \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/en/images/convertequation.png b/apps/presentationeditor/main/resources/help/en/images/convertequation.png new file mode 100644 index 000000000..be3e6bf99 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/convertequation.png differ diff --git a/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertEquation.htm b/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertEquation.htm index 5fde53850..1d441f9b3 100644 --- a/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertEquation.htm +++ b/apps/presentationeditor/main/resources/help/fr/UsageInstructions/InsertEquation.htm @@ -89,6 +89,12 @@
  • Pour supprimer une Accentuation, vous pouvez cliquer avec le bouton droit de la souris et sélectionner l'option Supprimer le caractère d'accentuation, Supprimer le caractère ou Supprimer la barre dans le menu (les options disponibles varient en fonction de l'accent sélectionné).
  • Pour supprimer une ligne ou une colonne d'une Matrice, vous pouvez cliquer avec le bouton droit de la souris sur l'espace réservé dans la ligne/colonne à supprimer, sélectionner l'option Supprimer dans le menu, puis sélectionner Supprimer la ligne/Colonne.
  • +

    Conversion des équations

    +

    Si vous disposez d'un document contenant des équations créées avec l'éditeur d'équations dans les versions plus anciennes (par exemple, avec MS Office version antérieure à 2007) vous devez convertir toutes les équations au format Office Math ML pour pouvoir les modifier.

    +

    Faites un double-clic sur l'équation pour la convertir. La fenêtre d'avertissement s'affiche:

    +

    Conversion des équations

    +

    Pour ne convertir que l'équation sélectionnée, cliquez sur OK dans la fenêtre d'avertissement. Pour convertir toutes les équations du document, activez la case Appliquer à toutes les équations et cliquez sur OK.

    +

    Une fois converti, l'équation peut être modifiée.

    \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/fr/images/convertequation.png b/apps/presentationeditor/main/resources/help/fr/images/convertequation.png new file mode 100644 index 000000000..6a695b3f4 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/fr/images/convertequation.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm index ef7946803..cb0d32904 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm @@ -91,6 +91,12 @@
  • Чтобы удалить Диакритический знак, можно щелкнуть по нему правой кнопкой мыши и выбрать из контекстного меню пункт Удалить диакритический знак, Удалить символ или Удалить черту (доступные опции отличаются в зависимости от выбранного диакритического знака).
  • Чтобы удалить строку или столбец Матрицы, можно щелкнуть правой кнопкой мыши по полю для заполнения внутри строки/столбца, который требуется удалить, выбрать из контекстного меню пункт Удалить, а затем - Удалить строку/столбец.
  • +

    Преобразование уравнений

    +

    Если вы открываете существующий документ с уравнениями, которые были созданы с помощью старой версии редактора уравнений (например, в версиях, предшествующих MS Office 2007), эти уравнения необходимо преобразовать в формат Office Math ML, чтобы иметь возможность их редактировать.

    +

    Чтобы преобразовать уравнение, дважды щелкните по нему. Откроется окно с предупреждением:

    +

    Преобразование уравнений

    +

    Чтобы преобразовать только выбранное уравнение, нажмите кнопку Да в окне предупреждения. Чтобы преобразовать все уравнения в документе, поставьте галочку Применить ко всем уравнениям и нажмите кнопку Да.

    +

    После преобразования уравнения вы сможете его редактировать.

    \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/ru/images/convertequation.png b/apps/presentationeditor/main/resources/help/ru/images/convertequation.png index 3ad46ae4e..c6be81229 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/convertequation.png and b/apps/presentationeditor/main/resources/help/ru/images/convertequation.png differ diff --git a/apps/presentationeditor/main/resources/img/file-template.svg b/apps/presentationeditor/main/resources/img/file-template.svg index 340012eb0..94c499c0f 100644 --- a/apps/presentationeditor/main/resources/img/file-template.svg +++ b/apps/presentationeditor/main/resources/img/file-template.svg @@ -1,5 +1,5 @@ - + @@ -11,5 +11,5 @@ - + \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/img/recent-file.svg b/apps/presentationeditor/main/resources/img/recent-file.svg index 83be8a6b6..0bbc55cc7 100644 --- a/apps/presentationeditor/main/resources/img/recent-file.svg +++ b/apps/presentationeditor/main/resources/img/recent-file.svg @@ -1,7 +1,7 @@ - + - + diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold-flash.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold-flash.png new file mode 100644 index 000000000..1661d69cc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold-flash.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold-reveal.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold-reveal.png new file mode 100644 index 000000000..f4f279d14 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold-reveal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold_flash.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold_flash.png deleted file mode 100644 index fdd8b6dea..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold_flash.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold_reveal.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold_reveal.png deleted file mode 100644 index 6e711bfbe..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-bold_reveal.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-brush-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-brush-color.png new file mode 100644 index 000000000..f90cd5554 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-brush-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-brush_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-brush_color.png deleted file mode 100644 index ac4452ce6..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-brush_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-color-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-color-pulse.png new file mode 100644 index 000000000..19e85bfdb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-color-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-color_pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-color_pulse.png deleted file mode 100644 index 014291545..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-color_pulse.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-complementary-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-complementary-color.png new file mode 100644 index 000000000..6af6f8453 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-complementary-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-complementary_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-complementary_color.png deleted file mode 100644 index cc92107e0..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-complementary_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-custom.png index 517917c84..7d8fbfbfd 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-darken.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-darken.png index 0ee2cd51e..d20953096 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-darken.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-darken.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-desaturate.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-desaturate.png index 241f335d8..02fdfe12d 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-desaturate.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-desaturate.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-fill-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-fill-color.png new file mode 100644 index 000000000..4820ce96d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-fill-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-fill_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-fill_color.png deleted file mode 100644 index 9e4d29317..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-fill_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-font-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-font-color.png new file mode 100644 index 000000000..f90cd5554 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-font-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-font_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-font_color.png deleted file mode 100644 index ac4452ce6..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-font_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-grow-or-shrink.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-grow-or-shrink.png new file mode 100644 index 000000000..9d1a63faf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-grow-or-shrink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-grow_or_Shrink.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-grow_or_Shrink.png deleted file mode 100644 index f345c4bed..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-grow_or_Shrink.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-lighten.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-lighten.png index 1122a0005..f031a4b11 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-lighten.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-lighten.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-line-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-line-color.png new file mode 100644 index 000000000..e3ffb6f62 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-line-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-line_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-line_color.png deleted file mode 100644 index 40346b95a..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-line_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-object-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-object-color.png new file mode 100644 index 000000000..4820ce96d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-object-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-object_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-object_color.png deleted file mode 100644 index 9e4d29317..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-object_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-pulse.png index 71f7fe457..9924c5979 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-pulse.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-spin.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-spin.png index 49dc965f0..d4de6597d 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-spin.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-spin.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-teeter.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-teeter.png index 4125f719c..18cfe38f2 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-teeter.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-teeter.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-transparency.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-transparency.png index da2a484b7..8c9a03d0a 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-transparency.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-transparency.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-underline.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-underline.png index 8c43e2911..ba320cec3 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-underline.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-underline.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-wave.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-wave.png index 8322c2ddf..ff8d7c729 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-wave.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-emphasis-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-appear.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-appear.png index 16f77543b..7380f3293 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-appear.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-appear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-bounce.png index a220fec9e..aae1ef783 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-bounce.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-custom.png index 88d647a98..a19f6a417 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-fade.png index 814b52776..550684904 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-fade.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-float-in.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-float-in.png new file mode 100644 index 000000000..386cb3628 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-float-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-float_in.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-float_in.png deleted file mode 100644 index 4e0237c3c..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-float_in.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-fly-in.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-fly-in.png new file mode 100644 index 000000000..a67a05545 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-fly-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-fly_in.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-fly_in.png deleted file mode 100644 index 83d3b729d..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-fly_in.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-grow-turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-grow-turn.png new file mode 100644 index 000000000..4000f1892 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-grow-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-grow_turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-grow_turn.png deleted file mode 100644 index 150d79ef8..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-grow_turn.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-random-bars.png new file mode 100644 index 000000000..df26b62c3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-random_bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-random_bars.png deleted file mode 100644 index 3054a7732..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-random_bars.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-shape.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-shape.png index 905ae5a58..3918f7e52 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-shape.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-split.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-split.png index 89d69e5e8..6d26b297c 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-split.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-swivel.png index 20df5dee7..4d1304b00 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-swivel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-wheel.png index bbed44d32..b4d3bc131 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-wheel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-wipe.png index 64f772cfc..5558c953f 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-wipe.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-zoom.png index 4ead28596..a8a981de8 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-zoom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-entrance-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-Disappear.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-Disappear.png index 220154386..d3a41820a 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-Disappear.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-Disappear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-bounce.png index dc1cd0b79..75cb5765d 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-bounce.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-custom.png index 7f4467c04..627c3b62e 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-fade.png index f87c0b501..4f4b22a33 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-fade.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-float-out.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-float-out.png new file mode 100644 index 000000000..5fa43cd35 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-float-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-float_out.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-float_out.png deleted file mode 100644 index 1e4f00eae..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-float_out.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-fly-out.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-fly-out.png new file mode 100644 index 000000000..08278aa71 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-fly-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-fly_out.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-fly_out.png deleted file mode 100644 index dc2d134c5..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-fly_out.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-random-bars.png new file mode 100644 index 000000000..18c038141 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-random_bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-random_bars.png deleted file mode 100644 index 76f09f670..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-random_bars.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-shape.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-shape.png index a92b56500..acff016a8 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-shape.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-shrink-turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-shrink-turn.png new file mode 100644 index 000000000..4c22a2836 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-shrink-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-shrink_turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-shrink_turn.png deleted file mode 100644 index e087ecbec..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-shrink_turn.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-split.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-split.png index 2b49bec0d..f97234e46 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-split.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-swivel.png index e97559357..72e36d73b 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-swivel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-wheel.png index 5cf7148b5..50a9b3d49 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-wheel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-wipe.png index dc0f1d7c9..7bb424fd3 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-wipe.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-zoom.png index cb5452a8a..e6f60d673 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-zoom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-exit-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-arcs.png new file mode 100644 index 000000000..e3b53cc2b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-arcs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-custom.png new file mode 100644 index 000000000..095946dda Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-lines.png new file mode 100644 index 000000000..25e0c3d83 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-lines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-loops.png new file mode 100644 index 000000000..176bf9500 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-loops.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-shapes.png new file mode 100644 index 000000000..c2b8eb146 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-shapes.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-turns.png new file mode 100644 index 000000000..dd7e96c57 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion-paths-turns.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-arcs.png deleted file mode 100644 index 3309df749..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-arcs.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-custom.png deleted file mode 100644 index 0335e33d2..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-custom.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-custom_path.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-custom_path.png deleted file mode 100644 index 71a357a5a..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-custom_path.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-lines.png deleted file mode 100644 index 7cc227f2c..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-lines.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-loops.png deleted file mode 100644 index 2236b0c8b..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-loops.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-shapes.png deleted file mode 100644 index f35357224..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-shapes.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-turns.png deleted file mode 100644 index 5df103fa5..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-motion_paths-turns.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-parameters.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-parameters.png new file mode 100644 index 000000000..012ed70fb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/animation-parameters.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-repeat.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-repeat.png index 5a4fd085b..45279de42 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-repeat.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/animation-repeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-Object_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-Object_color.png deleted file mode 100644 index aba97471f..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-Object_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold-flash.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold-flash.png new file mode 100644 index 000000000..6d5e0b404 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold-flash.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold-reveal.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold-reveal.png new file mode 100644 index 000000000..5ad5fc992 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold-reveal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold_flash.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold_flash.png deleted file mode 100644 index e94d445de..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold_flash.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold_reveal.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold_reveal.png deleted file mode 100644 index 49eec0414..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-bold_reveal.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-brush-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-brush-color.png new file mode 100644 index 000000000..a94935a96 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-brush-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-brush_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-brush_color.png deleted file mode 100644 index b4e79acb6..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-brush_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-color-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-color-pulse.png new file mode 100644 index 000000000..a758e6b98 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-color-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-color_pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-color_pulse.png deleted file mode 100644 index 2f5de3519..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-color_pulse.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-complementary-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-complementary-color.png new file mode 100644 index 000000000..31da7ced8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-complementary-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-complementary_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-complementary_color.png deleted file mode 100644 index 6c7b58a12..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-complementary_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-custom.png index 6f512969d..20e36a75f 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-darken.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-darken.png index c5c0bebb7..1a6919dd3 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-darken.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-darken.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-desaturate.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-desaturate.png index d73a75ff5..903b7f546 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-desaturate.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-desaturate.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-fill-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-fill-color.png new file mode 100644 index 000000000..3ef065a90 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-fill-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-fill_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-fill_color.png deleted file mode 100644 index aba97471f..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-fill_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-font-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-font-color.png new file mode 100644 index 000000000..f38057460 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-font-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-font_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-font_color.png deleted file mode 100644 index b11b438ba..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-font_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-grow-or-shrink.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-grow-or-shrink.png new file mode 100644 index 000000000..3129a3b3f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-grow-or-shrink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-grow_or_Shrink.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-grow_or_Shrink.png deleted file mode 100644 index 73547b6e4..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-grow_or_Shrink.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-lighten.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-lighten.png index aa6732f6f..8a36340f7 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-lighten.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-lighten.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-line-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-line-color.png new file mode 100644 index 000000000..e304aec98 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-line-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-line_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-line_color.png deleted file mode 100644 index 8fcc97b49..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-line_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-object-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-object-color.png new file mode 100644 index 000000000..3ef065a90 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-object-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-pulse.png index 64f2ac8d2..b7f86f33f 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-pulse.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-spin.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-spin.png index 75160ae0a..c91a615d1 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-spin.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-spin.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-teeter.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-teeter.png index 86c908475..887eb38d1 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-teeter.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-teeter.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-transparency.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-transparency.png index 12d0d8ca6..cd85ce8ed 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-transparency.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-transparency.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-underline.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-underline.png index 16bacfd24..251e74ecf 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-underline.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-underline.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-wave.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-wave.png index 292ab5a43..7500994f8 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-wave.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-emphasis-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-appear.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-appear.png index f6292c1a0..bc0aa7dc2 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-appear.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-appear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-bounce.png index 0460d4901..8f96e56d1 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-bounce.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-custom.png index 56f92ac8a..aaf8ff19b 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-fade.png index 5e171baa6..384dfc9c3 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-fade.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-float-in.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-float-in.png new file mode 100644 index 000000000..3c5794639 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-float-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-float_in.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-float_in.png deleted file mode 100644 index 0ed022b46..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-float_in.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-fly-in.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-fly-in.png new file mode 100644 index 000000000..19772aa74 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-fly-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-fly_in.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-fly_in.png deleted file mode 100644 index 942f34bee..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-fly_in.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-grow-turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-grow-turn.png new file mode 100644 index 000000000..29d6f6070 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-grow-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-grow_turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-grow_turn.png deleted file mode 100644 index 28ab8900b..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-grow_turn.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-random-bars.png new file mode 100644 index 000000000..489050c2d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-random_bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-random_bars.png deleted file mode 100644 index 853c9d33b..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-random_bars.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-shape.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-shape.png index 1fdcfa8b0..1a61721a0 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-shape.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-split.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-split.png index ee636936a..a578f0dab 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-split.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-swivel.png index bd2276119..ad692588e 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-swivel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-wheel.png index 7b82b6e74..714cace71 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-wheel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-wipe.png index 09a5f3a43..b1b045630 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-wipe.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-zoom.png index 3ba5cb829..bc6ce9dc7 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-zoom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-entrance-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-Random_bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-Random_bars.png deleted file mode 100644 index 10376043f..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-Random_bars.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-Wheel.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-Wheel.png index 11a5eeb19..e87954643 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-Wheel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-Wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-bounce.png index a03091e39..434ebc5e4 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-bounce.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-custom.png index aa140ec68..f5064dba5 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-disappear.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-disappear.png index e0b076703..a8888d7a9 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-disappear.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-disappear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-fade.png index fb1361853..fedd10162 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-fade.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-float-out.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-float-out.png new file mode 100644 index 000000000..1a42dfc54 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-float-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-float_out.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-float_out.png deleted file mode 100644 index 9a671569d..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-float_out.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-fly-out.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-fly-out.png new file mode 100644 index 000000000..c5cf6b7df Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-fly-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-fly_out.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-fly_out.png deleted file mode 100644 index a86625685..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-fly_out.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-random-bars.png new file mode 100644 index 000000000..80478e1a4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-shape.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-shape.png index 887118035..b2c76f787 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-shape.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-shrink-turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-shrink-turn.png new file mode 100644 index 000000000..e627962be Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-shrink-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-shrink_turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-shrink_turn.png deleted file mode 100644 index fc7418ed6..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-shrink_turn.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-split.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-split.png index 400c90623..a4024008c 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-split.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-swivel.png index 5d4f99966..2085492c4 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-swivel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-wipe.png index 84b3f6e87..8658bf138 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-wipe.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-zoom.png index 3653dbee5..d1ae67d53 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-zoom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-exit-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-arcs.png new file mode 100644 index 000000000..1cff6d30f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-arcs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-custom.png new file mode 100644 index 000000000..9d20d4d49 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-lines.png new file mode 100644 index 000000000..8c325a801 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-lines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-loops.png new file mode 100644 index 000000000..680420fed Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-loops.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-shapes.png new file mode 100644 index 000000000..c6f6e7abd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-shapes.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-turns.png new file mode 100644 index 000000000..004999469 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion-paths-turns.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-arcs.png deleted file mode 100644 index 4302636cf..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-arcs.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-custom.png deleted file mode 100644 index 3f6e01ca5..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-custom.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-custom_path.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-custom_path.png deleted file mode 100644 index a19c8a7d0..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-custom_path.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-lines.png deleted file mode 100644 index 791db55b7..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-lines.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-loops.png deleted file mode 100644 index 4c5520b0d..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-loops.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-shapes.png deleted file mode 100644 index 640c998c1..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-shapes.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-turns.png deleted file mode 100644 index bb30c231c..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-motion_paths-turns.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-parameters.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-parameters.png new file mode 100644 index 000000000..0d542389f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/animation-parameters.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold-flash.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold-flash.png new file mode 100644 index 000000000..7900e65cc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold-flash.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold-reveal.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold-reveal.png new file mode 100644 index 000000000..8298a81f1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold-reveal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold_flash.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold_flash.png deleted file mode 100644 index 0d25ec681..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold_flash.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold_reveal.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold_reveal.png deleted file mode 100644 index b0d13fe32..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-bold_reveal.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-brush-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-brush-color.png new file mode 100644 index 000000000..613148282 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-brush-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-brush_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-brush_color.png deleted file mode 100644 index 045cf1287..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-brush_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-color-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-color-pulse.png new file mode 100644 index 000000000..aa3ae81d4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-color-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-color_pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-color_pulse.png deleted file mode 100644 index 6be0c7407..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-color_pulse.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-complementary-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-complementary-color.png new file mode 100644 index 000000000..d5e96da35 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-complementary-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-complementary_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-complementary_color.png deleted file mode 100644 index 83d7566c3..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-complementary_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-custom.png index be1322f05..54ce7893a 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-darken.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-darken.png index 87c570af7..15e0f7637 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-darken.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-darken.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-desaturate.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-desaturate.png index 6a6368560..31bdfb206 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-desaturate.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-desaturate.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-fill-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-fill-color.png new file mode 100644 index 000000000..efca753ef Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-fill-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-fill_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-fill_color.png deleted file mode 100644 index f09eebb49..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-fill_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-font-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-font-color.png new file mode 100644 index 000000000..577d709ea Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-font-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-font_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-font_color.png deleted file mode 100644 index 3cb3ddf76..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-font_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-grow-or-shrink.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-grow-or-shrink.png new file mode 100644 index 000000000..d05f3d591 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-grow-or-shrink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-grow_or_Shrink.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-grow_or_Shrink.png deleted file mode 100644 index 8f01e1ece..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-grow_or_Shrink.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-lighten.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-lighten.png index 0e4989bd9..c754e721a 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-lighten.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-lighten.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-line-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-line-color.png new file mode 100644 index 000000000..f8e781d4c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-line-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-line_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-line_color.png deleted file mode 100644 index 65403b538..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-line_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-object-color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-object-color.png new file mode 100644 index 000000000..efca753ef Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-object-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-object_color.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-object_color.png deleted file mode 100644 index f09eebb49..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-object_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-pulse.png index f8f38d85b..6b354a856 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-pulse.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-spin.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-spin.png index ee6b34bfe..4821b2609 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-spin.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-spin.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-teeter.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-teeter.png index aeaf2fba1..5d738e97b 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-teeter.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-teeter.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-transparency.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-transparency.png index 781c8e546..ea3aa7c3f 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-transparency.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-transparency.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-underline.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-underline.png index bc040c82c..c13aea661 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-underline.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-underline.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-wave.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-wave.png index c6d17fa11..e5dea6750 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-wave.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-emphasis-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-appear.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-appear.png index 150f33a5e..b7c62c6bc 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-appear.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-appear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-bounce.png index ba01b90fd..73ad31292 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-bounce.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-custom.png index 931b04d75..a3be4edce 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-fade.png index 05c6a287e..fd7039d6d 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-fade.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-float-in.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-float-in.png new file mode 100644 index 000000000..2831b5aca Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-float-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-float_in.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-float_in.png deleted file mode 100644 index 1dd2a4c70..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-float_in.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-fly-in.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-fly-in.png new file mode 100644 index 000000000..ebcb19973 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-fly-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-fly_in.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-fly_in.png deleted file mode 100644 index b294880e6..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-fly_in.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-grow-turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-grow-turn.png new file mode 100644 index 000000000..3a08b91fc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-grow-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-grow_turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-grow_turn.png deleted file mode 100644 index 93332f3a8..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-grow_turn.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-random-bars.png new file mode 100644 index 000000000..367fad721 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-random_bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-random_bars.png deleted file mode 100644 index 35450c4cc..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-random_bars.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-shape.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-shape.png index 79ed210c3..fd84baf0a 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-shape.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-split.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-split.png index 5010b14d7..d1fd22b49 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-split.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-swivel.png index 60b45b73c..20b97bdde 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-swivel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-wheel.png index 864f6c8fa..37d4e07a0 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-wheel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-wipe.png index 3321bef22..e111af11c 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-wipe.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-zoom.png index e4c9a21ab..d4709de59 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-zoom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-entrance-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-bounce.png index 95338b363..148afb4a8 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-bounce.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-custom.png index 1c094cb90..760e09c83 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-disappear.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-disappear.png index c271db9a0..5f604709f 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-disappear.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-disappear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-fade.png index d5523bac6..85987ccf5 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-fade.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-float-out.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-float-out.png new file mode 100644 index 000000000..dc891a52e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-float-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-float_out.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-float_out.png deleted file mode 100644 index aa9f14e48..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-float_out.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-fly-out.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-fly-out.png new file mode 100644 index 000000000..910838cd4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-fly-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-fly_out.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-fly_out.png deleted file mode 100644 index 5c1b21bf0..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-fly_out.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-random-bars.png new file mode 100644 index 000000000..73b450df9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-random_bars.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-random_bars.png deleted file mode 100644 index edbf2c7a0..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-random_bars.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-shape.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-shape.png index fd6e239fb..087ae87cb 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-shape.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-shrink-turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-shrink-turn.png new file mode 100644 index 000000000..2e5c720c9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-shrink-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-shrink_turn.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-shrink_turn.png deleted file mode 100644 index 97d53daf5..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-shrink_turn.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-split.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-split.png index fb78c49e5..dc2ef613d 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-split.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-swivel.png index 9f34192de..c78da440e 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-swivel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-wheel.png index d7486c56c..d90be1981 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-wheel.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-wipe.png index ebb9e6d40..0bbdb0e35 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-wipe.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-zoom.png index a50b43199..0c8073238 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-zoom.png and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-exit-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-arcs.png new file mode 100644 index 000000000..9758f0e88 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-arcs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-custom.png new file mode 100644 index 000000000..ebe7918cf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-lines.png new file mode 100644 index 000000000..d3d7fe737 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-lines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-loops.png new file mode 100644 index 000000000..5ea24f450 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-loops.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-shapes.png new file mode 100644 index 000000000..3b47a4b7f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-shapes.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-turns.png new file mode 100644 index 000000000..6584b3f18 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion-paths-turns.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-arcs.png deleted file mode 100644 index 118a0408c..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-arcs.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-custom.png deleted file mode 100644 index 3395d28bd..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-custom.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-custom_path.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-custom_path.png deleted file mode 100644 index fbf7296d3..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-custom_path.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-lines.png deleted file mode 100644 index 80f5dc6c8..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-lines.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-loops.png deleted file mode 100644 index d48cbd04b..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-loops.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-shapes.png deleted file mode 100644 index 9c2a48897..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-shapes.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-turns.png deleted file mode 100644 index 6597eb4ef..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-motion_paths-turns.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-parameters.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-parameters.png new file mode 100644 index 000000000..90f978d89 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/animation-parameters.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold-flash.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold-flash.png new file mode 100644 index 000000000..a82e90985 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold-flash.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold-reveal.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold-reveal.png new file mode 100644 index 000000000..987286573 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold-reveal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold_flash.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold_flash.png deleted file mode 100644 index 17fef551f..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold_flash.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold_reveal.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold_reveal.png deleted file mode 100644 index 761833948..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-bold_reveal.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-brush-color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-brush-color.png new file mode 100644 index 000000000..9b605bc4d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-brush-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-brush_color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-brush_color.png deleted file mode 100644 index c3e64a40c..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-brush_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-color-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-color-pulse.png new file mode 100644 index 000000000..83723fb5d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-color-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-color_pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-color_pulse.png deleted file mode 100644 index b78035213..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-color_pulse.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-complementary-color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-complementary-color.png new file mode 100644 index 000000000..2bb6d0761 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-complementary-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-complementary_color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-complementary_color.png deleted file mode 100644 index 051d24705..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-complementary_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-custom.png index a87408d49..ead8797a0 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-darken.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-darken.png index 4cd0ecd6d..50dd779d8 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-darken.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-darken.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-desaturate.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-desaturate.png index f1503b43c..d689f83cf 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-desaturate.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-desaturate.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-fill-color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-fill-color.png new file mode 100644 index 000000000..e2732b03a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-fill-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-fill_color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-fill_color.png deleted file mode 100644 index 16cc9aeb0..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-fill_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-font-color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-font-color.png new file mode 100644 index 000000000..04c7607bc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-font-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-font_color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-font_color.png deleted file mode 100644 index 4ea6d89b7..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-font_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-grow-or-shrink.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-grow-or-shrink.png new file mode 100644 index 000000000..079253c73 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-grow-or-shrink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-grow_or_Shrink.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-grow_or_Shrink.png deleted file mode 100644 index fb9357a63..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-grow_or_Shrink.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-lighten.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-lighten.png index 746873743..69da3c3ac 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-lighten.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-lighten.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-line-color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-line-color.png new file mode 100644 index 000000000..dc010eff6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-line-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-line_color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-line_color.png deleted file mode 100644 index 9bb684382..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-line_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-object-color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-object-color.png new file mode 100644 index 000000000..e2732b03a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-object-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-object_color.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-object_color.png deleted file mode 100644 index 16cc9aeb0..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-object_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-pulse.png index 545c7818f..00206b3eb 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-pulse.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-spin.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-spin.png index dc61e2a22..5e8dd88a3 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-spin.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-spin.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-teeter.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-teeter.png index cd96004a5..6ebfa6fd8 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-teeter.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-teeter.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-transparency.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-transparency.png index 3d70161fd..5e2e9214c 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-transparency.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-transparency.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-underline.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-underline.png index cdd015975..da799f1a5 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-underline.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-underline.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-wave.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-wave.png index be960de02..be93b1889 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-wave.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-emphasis-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-appear.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-appear.png index 09ef9408f..c2bd64e06 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-appear.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-appear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-bounce.png index 5abafeaa5..cf5040b08 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-bounce.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-custom.png index 9eb8a1a1c..34282ffe3 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-fade.png index 97c1ba397..cbb314eb4 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-fade.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-float-in.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-float-in.png new file mode 100644 index 000000000..3f6fc053d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-float-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-float_in.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-float_in.png deleted file mode 100644 index e3eb38415..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-float_in.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-fly-in.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-fly-in.png new file mode 100644 index 000000000..5ad49773f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-fly-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-fly_in.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-fly_in.png deleted file mode 100644 index 73ae2e230..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-fly_in.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-grow-turn.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-grow-turn.png new file mode 100644 index 000000000..9fa0d4618 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-grow-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-grow_turn.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-grow_turn.png deleted file mode 100644 index 8b383dab4..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-grow_turn.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-random-bars.png new file mode 100644 index 000000000..afb0289af Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-random_bars.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-random_bars.png deleted file mode 100644 index b4879f4a5..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-random_bars.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-shape.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-shape.png index b6fbb5f06..d9ef515f1 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-shape.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-split.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-split.png index d200cf625..2585a6d4b 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-split.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-swivel.png index 821d48e11..d72167438 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-swivel.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-wheel.png index b44d75f0e..220d5f03c 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-wheel.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-wipe.png index 6e1196cb0..79287c827 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-wipe.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-zoom.png index 991ce0be2..5ab173dcf 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-zoom.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-entrance-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-bounce.png index d21abde2c..4f3cf0c4d 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-bounce.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-custom.png index 170583fac..eee41d9a8 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-disappear.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-disappear.png index 1496defc2..bf189e002 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-disappear.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-disappear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-fade.png index ef186ea66..b5c676783 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-fade.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-float-out.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-float-out.png new file mode 100644 index 000000000..2d3bf461c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-float-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-float_out.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-float_out.png deleted file mode 100644 index e041cf5d8..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-float_out.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-fly-out.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-fly-out.png new file mode 100644 index 000000000..f51abc456 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-fly-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-fly_out.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-fly_out.png deleted file mode 100644 index e57178dc7..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-fly_out.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-random-bars.png new file mode 100644 index 000000000..7ab055808 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-random_bars.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-random_bars.png deleted file mode 100644 index 8086ad434..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-random_bars.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-shape.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-shape.png index 01f5bf5fb..f3dafd78a 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-shape.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-shrink-turn.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-shrink-turn.png new file mode 100644 index 000000000..b4bd6ef95 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-shrink-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-shrink_turn.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-shrink_turn.png deleted file mode 100644 index a8bb27739..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-shrink_turn.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-split.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-split.png index f17ad742a..d8ead95a6 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-split.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-swivel.png index 4008bfd16..01dd604c2 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-swivel.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-wheel.png index 8fe9db2ac..140707e4a 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-wheel.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-wipe.png index 319a25fc7..bcc4df4c1 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-wipe.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-zoom.png index 8b325f318..6b70abaa0 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-zoom.png and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-exit-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-arcs.png new file mode 100644 index 000000000..ab0c2e086 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-arcs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-custom.png new file mode 100644 index 000000000..8b51acacf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-lines.png new file mode 100644 index 000000000..158d833b2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-lines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-loops.png new file mode 100644 index 000000000..2bcbbf89f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-loops.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-shapes.png new file mode 100644 index 000000000..f12946cad Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-shapes.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-turns.png new file mode 100644 index 000000000..3a60e9dc3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion-paths-turns.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-arcs.png deleted file mode 100644 index a2436402f..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-arcs.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-custom.png deleted file mode 100644 index b680cfb1d..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-custom.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-custom_path.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-custom_path.png deleted file mode 100644 index 5bc90dcd6..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-custom_path.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-lines.png deleted file mode 100644 index e6028fdcd..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-lines.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-loops.png deleted file mode 100644 index 141dcb1db..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-loops.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-shapes.png deleted file mode 100644 index ddc3b4ae2..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-shapes.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-turns.png deleted file mode 100644 index 8f884a84f..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-motion_paths-turns.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-parameters.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-parameters.png new file mode 100644 index 000000000..fcc551b36 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/animation-parameters.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold-flash.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold-flash.png new file mode 100644 index 000000000..70af5adef Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold-flash.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold-reveal.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold-reveal.png new file mode 100644 index 000000000..5edf0a2c9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold-reveal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold_flash.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold_flash.png deleted file mode 100644 index 567312289..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold_flash.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold_reveal.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold_reveal.png deleted file mode 100644 index 6a70cb5c0..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-bold_reveal.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-brush-color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-brush-color.png new file mode 100644 index 000000000..032aa87ac Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-brush-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-brush_color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-brush_color.png deleted file mode 100644 index ab78aaf14..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-brush_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-color-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-color-pulse.png new file mode 100644 index 000000000..a5e2a626b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-color-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-color_pulse.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-color_pulse.png deleted file mode 100644 index efcbb0653..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-color_pulse.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-complementary-color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-complementary-color.png new file mode 100644 index 000000000..8ef18eb43 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-complementary-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-complementary_color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-complementary_color.png deleted file mode 100644 index 123be41bd..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-complementary_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-custom.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-custom.png index 6983151c2..dc77abe06 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-darken.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-darken.png index bc9f725b4..7ef3d34c2 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-darken.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-darken.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-desaturate.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-desaturate.png index 2ca9348ee..b0bf992a6 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-desaturate.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-desaturate.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-fill-color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-fill-color.png new file mode 100644 index 000000000..94b95ef4e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-fill-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-fill_color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-fill_color.png deleted file mode 100644 index a5d9a5110..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-fill_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-font-color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-font-color.png new file mode 100644 index 000000000..c9d4cc959 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-font-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-font_color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-font_color.png deleted file mode 100644 index 81beca421..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-font_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-grow-or-shrink.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-grow-or-shrink.png new file mode 100644 index 000000000..e361c7689 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-grow-or-shrink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-grow_or_Shrink.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-grow_or_Shrink.png deleted file mode 100644 index 321a60eea..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-grow_or_Shrink.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-lighten.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-lighten.png index 61337bbb5..fe986ff52 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-lighten.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-lighten.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-line-color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-line-color.png new file mode 100644 index 000000000..7faaa178c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-line-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-line_color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-line_color.png deleted file mode 100644 index cb62e2e51..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-line_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-object-color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-object-color.png new file mode 100644 index 000000000..94b95ef4e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-object-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-object_color.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-object_color.png deleted file mode 100644 index a5d9a5110..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-object_color.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-pulse.png index 751f5052f..86d103eba 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-pulse.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-spin.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-spin.png index 56efade1c..3494c1f3b 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-spin.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-spin.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-teeter.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-teeter.png index 4e1eb2393..6f013a6aa 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-teeter.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-teeter.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-transparency.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-transparency.png index 7ff65d1a9..e1b3b1e18 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-transparency.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-transparency.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-underline.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-underline.png index e95122f30..7d5f07b63 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-underline.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-underline.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-wave.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-wave.png index 2c2bc19a2..0a340c489 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-wave.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-emphasis-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-appear.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-appear.png index 0589a8032..5defd8a91 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-appear.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-appear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-bounce.png index 4f4fae04f..c56d99693 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-bounce.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-custom.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-custom.png index 5ab7170c8..c29b36fc0 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-fade.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-fade.png index 669cabf4a..8bac5437f 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-fade.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-float-in.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-float-in.png new file mode 100644 index 000000000..da1655a74 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-float-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-float_in.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-float_in.png deleted file mode 100644 index 06f71d58c..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-float_in.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-fly-in.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-fly-in.png new file mode 100644 index 000000000..ecaaec596 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-fly-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-fly_in.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-fly_in.png deleted file mode 100644 index 8306b210b..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-fly_in.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-grow-turn.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-grow-turn.png new file mode 100644 index 000000000..989a187a1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-grow-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-grow_turn.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-grow_turn.png deleted file mode 100644 index 4be198450..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-grow_turn.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-random-bars.png new file mode 100644 index 000000000..bacda643d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-random_bars.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-random_bars.png deleted file mode 100644 index 3407cffb9..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-random_bars.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-shape.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-shape.png index 125665b2c..d5f381999 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-shape.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-split.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-split.png index 5dca465b8..76972cb60 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-split.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-swivel.png index 0e2ee2e4e..9984ba85d 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-swivel.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-wheel.png index 12d8cd82a..ef7353c14 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-wheel.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-wipe.png index 7f3ead3d9..eebf34826 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-wipe.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-zoom.png index 3ffe376cf..f9bcd3908 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-zoom.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-entrance-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-bounce.png index 874165655..28ad32071 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-bounce.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-custom.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-custom.png index e99d0939a..c700645ba 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-custom.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-disappear.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-disappear.png index b22cd2653..6c9cb24fd 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-disappear.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-disappear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-fade.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-fade.png index f054474a4..addf61313 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-fade.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-float-out.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-float-out.png new file mode 100644 index 000000000..b50058b82 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-float-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-float_out.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-float_out.png deleted file mode 100644 index 5d4f9ffe4..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-float_out.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-fly-out.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-fly-out.png new file mode 100644 index 000000000..8bc2b9752 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-fly-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-fly_out.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-fly_out.png deleted file mode 100644 index 181481801..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-fly_out.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-random-bars.png new file mode 100644 index 000000000..aa54c18c8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-random_bars.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-random_bars.png deleted file mode 100644 index ed4f126de..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-random_bars.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-shape.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-shape.png index f534e24f8..159905ee0 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-shape.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-shrink-turn.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-shrink-turn.png new file mode 100644 index 000000000..52d445e43 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-shrink-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-shrink_turn.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-shrink_turn.png deleted file mode 100644 index c1100fd05..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-shrink_turn.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-split.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-split.png index 147e68388..6d9025d6f 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-split.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-swivel.png index f2a2b49ed..853eea150 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-swivel.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-wheel.png index bee0a1632..4f2a8e898 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-wheel.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-wipe.png index 8be127623..dfeb55d5f 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-wipe.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-zoom.png index 6b11cbe31..11341c141 100644 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-zoom.png and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-exit-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-arcs.png new file mode 100644 index 000000000..358eb3f61 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-arcs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-custom.png new file mode 100644 index 000000000..19fa4a587 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-lines.png new file mode 100644 index 000000000..18f70a0b3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-lines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-loops.png new file mode 100644 index 000000000..4f06b102f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-loops.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-shapes.png new file mode 100644 index 000000000..653f155f2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-shapes.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-turns.png new file mode 100644 index 000000000..19fa04ae4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion-paths-turns.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-arcs.png deleted file mode 100644 index 5e58bd2fd..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-arcs.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-custom.png deleted file mode 100644 index 73a6cc316..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-custom.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-custom_path.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-custom_path.png deleted file mode 100644 index 51f0a3dd8..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-custom_path.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-lines.png deleted file mode 100644 index f330d1fb3..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-lines.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-loops.png deleted file mode 100644 index c8488229e..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-loops.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-shapes.png deleted file mode 100644 index 24d40f76a..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-shapes.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-turns.png deleted file mode 100644 index 3a092acad..000000000 Binary files a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-motion_paths-turns.png and /dev/null differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-parameters.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-parameters.png new file mode 100644 index 000000000..022f1c1db Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/animation-parameters.png differ diff --git a/apps/presentationeditor/main/resources/less/leftmenu.less b/apps/presentationeditor/main/resources/less/leftmenu.less index fb6dfbd60..c17b701a1 100644 --- a/apps/presentationeditor/main/resources/less/leftmenu.less +++ b/apps/presentationeditor/main/resources/less/leftmenu.less @@ -39,8 +39,46 @@ height: 125px; cursor: pointer; - svg&:hover { - opacity:0.85; + .svg-format- { + &pptx { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/pptx.svg) no-repeat center"; + } + &pdf { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/pdf.svg) no-repeat center"; + } + &odp { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/odp.svg) no-repeat center"; + } + &potx { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/potx.svg) no-repeat center"; + } + &pdfa { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/pdfa.svg) no-repeat center"; + } + &otp { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/otp.svg) no-repeat center"; + } + &ppsx { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/ppsx.svg) no-repeat center"; + } + &png { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/png.svg) no-repeat center"; + } + &jpg { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/jpg.svg) no-repeat center"; + } + &pptm { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/pptm.svg) no-repeat center"; + } + } + + div { + display: block; + height: 100%; + width: 100%; + &:hover { + opacity: 0.85; + } } } @@ -49,6 +87,19 @@ width: 96px; height: 96px; cursor: pointer; + + .svg-format-blank { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/blank.svg) no-repeat center" ; + } + .svg-file-template{ + background: ~"url(resources/img/file-template.svg) no-repeat center" ; + } + + div { + display: block; + height: 100%; + width: 100%; + } } #file-menu-panel { @@ -306,9 +357,12 @@ width: 25px; height: 25px; margin-top: 1px; - svg { + div { width: 100%; height: 100%; + .svg-file-recent { + background: ~"url(resources/img/recent-file.svg) no-repeat top"; + } } } diff --git a/apps/presentationeditor/main/resources/less/statusbar.less b/apps/presentationeditor/main/resources/less/statusbar.less index c12bf11f7..06767765a 100644 --- a/apps/presentationeditor/main/resources/less/statusbar.less +++ b/apps/presentationeditor/main/resources/less/statusbar.less @@ -4,17 +4,12 @@ .status-label { position: relative; - top: 1px; } #status-label-pages, #status-label-zoom { cursor: pointer; } - #status-label-pages, #status-label-action { - margin-top: 2px; - } - #status-users-icon, #status-users-count { display: inline-block; cursor: pointer; @@ -44,10 +39,19 @@ display: table-cell; white-space: nowrap; vertical-align: top; - padding-top: 3px; &.dropup { position: static; } + + .status-label.margin-top-large { + margin-top: 6px; + } + + button.margin-top-small, + .margin-top-small > button, + .margin-top-small > .btn-group { + margin-top: 3px; + } } .separator { @@ -55,7 +59,6 @@ &.short { height: 25px; - margin-top: -2px; } &.space { @@ -72,7 +75,8 @@ .cnt-zoom { display: inline-block; - + vertical-align: middle; + margin-top: 4px; .dropdown-menu { min-width: 80px; margin-left: -4px; diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 6496c6f6a..476fe9652 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -1,20 +1,20 @@ { "About": { - "textAbout": "Quant a...", + "textAbout": "Quant a", "textAddress": "Adreça", "textBack": "Enrere", "textEmail": "Correu electrònic", - "textPoweredBy": "Amb tecnologia de", + "textPoweredBy": "Impulsat per", "textTel": "Tel", "textVersion": "Versió" }, "Common": { "Collaboration": { "notcriticalErrorTitle": "Advertiment", - "textAddComment": "Afegeix un comentari", - "textAddReply": "Afegeix una resposta", + "textAddComment": "Afegir comentari", + "textAddReply": "Afegir Resposta", "textBack": "Enrere", - "textCancel": "Cancel·la", + "textCancel": "Cancel·lar", "textCollaboration": "Col·laboració", "textComments": "Comentaris", "textDeleteComment": "Suprimeix el comentari", @@ -24,8 +24,8 @@ "textEditComment": "Edita el comentari", "textEditReply": "Edita la resposta", "textEditUser": "Usuaris que editen el fitxer:", - "textMessageDeleteComment": "Segur que vols suprimir aquest comentari?", - "textMessageDeleteReply": "Segur que vols suprimir aquesta resposta?", + "textMessageDeleteComment": "Voleu suprimir aquest comentari?", + "textMessageDeleteReply": "Voleu suprimir aquesta resposta?", "textNoComments": "Aquest document no conté comentaris", "textOk": "D'acord", "textReopen": "Torna a obrir", @@ -44,15 +44,15 @@ }, "ContextMenu": { "errorCopyCutPaste": "Les accions de copiar, tallar i enganxar mitjançant el menú contextual només es realitzaran en el fitxer actual.", - "menuAddComment": "Afegeix un comentari", - "menuAddLink": "Afegeix un enllaç", - "menuCancel": "Cancel·la", + "menuAddComment": "Afegir comentari", + "menuAddLink": "Afegir Enllaç", + "menuCancel": "Cancel·lar", "menuDelete": "Suprimeix", "menuDeleteTable": "Suprimeix la taula", "menuEdit": "Edita", "menuMerge": "Combina", "menuMore": "Més", - "menuOpenLink": "Obre l'enllaç", + "menuOpenLink": "Obrir Enllaç", "menuSplit": "Divideix", "menuViewComment": "Mostra el comentari", "textColumns": "Columnes", @@ -66,21 +66,21 @@ "advDRMPassword": "Contrasenya", "closeButtonText": "Tanca el fitxer", "criticalErrorTitle": "Error", - "errorAccessDeny": "No tens permís per realitzar aquesta acció.
    Contacta amb el teu administrador.", - "errorOpensource": "Amb la versió gratuïta de la Comunitat, només pots obrir els documents en mode lectura. Per accedir als editors de web per a mòbils, cal una llicència comercial.", + "errorAccessDeny": "No teniu permís per realitzar aquesta acció.
    Contacteu amb l'administrador.", + "errorOpensource": "Amb la versió gratuïta de la Comunitat, només podeu obrir els documents en mode lectura. Per accedir als editors de web per a mòbils, cal una llicència comercial.", "errorProcessSaveResult": "S'ha produït un error en desar.", "errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", "errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", - "leavePageText": "Tens canvis no desats en aquest document. Fes clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Fes clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", + "leavePageText": "Teniu canvis no desats en aquest document. Feu clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", "notcriticalErrorTitle": "Advertiment", "SDK": { "Chart": "Gràfic", - "Click to add first slide": "Fes clic per afegir la primera diapositiva", - "Click to add notes": "Fes clic per afegir notes", + "Click to add first slide": "Feu clic per afegir la primera diapositiva", + "Click to add notes": "Feu clic per afegir notes", "ClipArt": "Galeria d'imatges", "Date and time": "Data i hora", "Diagram": "Diagrama", - "Diagram Title": "Títol del gràfic", + "Diagram Title": "Títol del Gràfic", "Footer": "Peu de pàgina", "Header": "Capçalera", "Image": "Imatge", @@ -96,19 +96,19 @@ "Table": "Taula", "X Axis": "Eix X XAS", "Y Axis": "Eix Y", - "Your text here": "El teu text aquí" + "Your text here": "El vostre text aquí" }, "textAnonymous": "Anònim", - "textBuyNow": "Visita el lloc web", + "textBuyNow": "Visiteu el lloc web", "textClose": "Tanca", - "textContactUs": "Contacta amb vendes", - "textCustomLoader": "No tens els permisos per canviar el carregador. Contacta amb el nostre departament de vendes per obtenir un pressupost.", + "textContactUs": "Contacteu amb vendes", + "textCustomLoader": "No teniu els permisos per canviar el carregador. Contacteu amb el nostre departament de vendes per obtenir un pressupost.", "textGuest": "Convidat", - "textHasMacros": "El fitxer conté macros automàtiques.
    Les vols executar?", + "textHasMacros": "El fitxer conté macros automàtiques.
    Les voleu executar?", "textNo": "No", "textNoLicenseTitle": "S'ha assolit el límit de llicència", "textNoTextFound": "No s'ha trobat el text", - "textOpenFile": "Introdueix una contrasenya per obrir el fitxer", + "textOpenFile": "Introduïu una contrasenya per obrir el fitxer", "textPaidFeature": "Funció de pagament", "textRemember": "Recorda la meva elecció", "textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", @@ -118,99 +118,99 @@ "titleServerVersion": "S'ha actualitzat l'editor", "titleUpdateVersion": "S'ha canviat la versió", "txtIncorrectPwd": "La contrasenya no és correcta", - "txtProtected": "Un cop hagis introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer", - "warnLicenseExceeded": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb el vostre administrador per a més informació.", - "warnLicenseExp": "La teva llicència ha caducat. Actualitza-la i recarrega la pàgina.", - "warnLicenseLimitedNoAccess": "La llicència ha caducat. No pots editar documents. Contacta amb el teu administrador.", - "warnLicenseLimitedRenewed": "Cal renovar la llicència. Tens accés limitat a la funció d'edició de documents.
    Contacta amb el teu administrador per obtenir accés total", - "warnLicenseUsersExceeded": "Has arribat al límit d'usuari per a %1 editors. Contacta amb el teu administrador per a més informació.", - "warnNoLicense": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb l'equip de vendes %1 per a les condicions d'una actualització personal.", - "warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", - "warnProcessRightsChange": "No tens permís per editar el fitxer." + "txtProtected": "Un cop hàgiu introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer", + "warnLicenseExceeded": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'administrador per a més informació.", + "warnLicenseExp": "La llicència ha caducat. Actualitzeu-la i recarregueu la pàgina.", + "warnLicenseLimitedNoAccess": "La llicència ha caducat. No podeu editar documents. Contacteu amb l'administrador.", + "warnLicenseLimitedRenewed": "Cal renovar la llicència. Teniu accés limitat a la funció d'edició de documents.
    Contacteu amb l'administrador per obtenir accés total", + "warnLicenseUsersExceeded": "Heu arribat al límit d'usuari per a %1 editors. Contacteu amb l'administrador per a més informació.", + "warnNoLicense": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'equip de vendes %1 per a les condicions d'una actualització personal.", + "warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.", + "warnProcessRightsChange": "No teniu permís per editar el fitxer." } }, "Error": { "convertationTimeoutText": "S'ha superat el temps de conversió.", - "criticalErrorExtText": "Prem «D'acord» per tornar a la llista de documents.", + "criticalErrorExtText": "Premeu «D'acord» per tornar a la llista de documents.", "criticalErrorTitle": "Error", "downloadErrorText": "S'ha produït un error en la baixada", - "errorAccessDeny": "No tens permís per realitzar aquesta acció.
    Contacta amb el teu administrador.", + "errorAccessDeny": "No teniu permís per realitzar aquesta acció.
    Contacteu amb l'administrador.", "errorBadImageUrl": "L'URL de la imatge no és correcta", - "errorConnectToServer": "No es pot desar aquest document. Comprova la configuració de la vostra connexió o contacta amb el teu administrador.
    Quan facis clic al botó «D'acord», et demanarà que baixis el document.", - "errorDatabaseConnection": "Error extern.
    Error de connexió amb la base de dades. Contacta amb el servei d'assistència tècnica.", + "errorConnectToServer": "No es pot desar aquest document. Comproveu la configuració de la vostra connexió o contacteu amb l'administrador.
    Quan feu clic al botó «D'acord», us demanarà que baixeu el document.", + "errorDatabaseConnection": "Error extern.
    Error de connexió amb la base de dades. Contacteu amb el servei d'assistència tècnica.", "errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", "errorDataRange": "L'interval de dades no és correcte.", "errorDefaultMessage": "Codi d'error:%1", - "errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
    Utilitza l'opció \"Descarregar\" per desar la còpia de seguretat del fitxer localment.", + "errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
    Utilitzeu l'opció \"Descarregar\" per desar la còpia de seguretat del fitxer localment.", "errorFilePassProtect": "El fitxer està protegit amb contrasenya i no s'ha pogut obrir.", - "errorFileSizeExceed": "La mida del fitxer supera el límit del vostre servidor.
    Contacta amb el teu administrador.", + "errorFileSizeExceed": "La mida del fitxer supera el límit del vostre servidor.
    Contacteu amb l'administrador.", "errorKeyEncrypt": "Descriptor de claus desconegut", "errorKeyExpire": "El descriptor de claus ha caducat", - "errorLoadingFont": "No s'han carregat els tipus de lletra.
    Contacta amb l'administrador del Servidor de Documents.", - "errorSessionAbsolute": "La sessió d'edició del document ha caducat. Torna a carregar la pàgina.", - "errorSessionIdle": "Fa molt de temps que no s'edita el document. Torna a carregar la pàgina.", - "errorSessionToken": "S'ha interromput la connexió amb el servidor. Torna a carregar la pàgina.", - "errorStockChart": "L'ordre de la fila no és correcte. Per construir un gràfic de valors, posa les dades al full de càlcul en l'ordre següent:
    preu d'obertura, preu màxim, preu mínim, preu de tancament.", - "errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a Internet i s'ha canviat la versió del fitxer.
    Abans de continuar treballant, descarrega el fitxer o copia el seu contingut per assegurar-te que no s'ha perdut res i torna a carregar aquesta pàgina.", - "errorUserDrop": "Ara mateix no es pot accedir al fitxer.", - "errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el teu pla", - "errorViewerDisconnect": "S'ha perdut la connexió. Encara pots veure el document,
    però no podràs baixar-lo fins que es restableixi la connexió i es torni a carregar la pàgina.", + "errorLoadingFont": "No s'han carregat els tipus de lletra.
    Contacteu amb l'administrador del servidor de documents.", + "errorSessionAbsolute": "La sessió d'edició del document ha caducat. Torneu a carregar la pàgina.", + "errorSessionIdle": "Fa molt de temps que no s'edita el document. Torneu a carregar la pàgina.", + "errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", + "errorStockChart": "L'ordre de la fila no és correcte. Per construir un gràfic de valors, poseu les dades al full de càlcul en l'ordre següent:
    preu d'obertura, preu màxim, preu mínim, preu de tancament.", + "errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a Internet i s'ha canviat la versió del fitxer.
    Abans de continuar treballant, descarregueu el fitxer o copieu el seu contingut per assegurar-vos que no s'ha perdut res i torneu a carregar aquesta pàgina.", + "errorUserDrop": "No es pot accedir al fitxer.", + "errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el vostre pla", + "errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu veure el document,
    però no el podreu baixar fins que es restableixi la connexió i es torni a carregar la pàgina.", "notcriticalErrorTitle": "Advertiment", "openErrorText": "S'ha produït un error en obrir el fitxer", "saveErrorText": "S'ha produït un error en desar el fitxer", - "scriptLoadError": "La connexió és massa lenta, alguns dels components no s'han pogut carregar. Torna a carregar la pàgina.", + "scriptLoadError": "La connexió és massa lenta, alguns dels components no s'han pogut carregar. Torneu a carregar la pàgina.", "splitDividerErrorText": "El nombre de files ha de ser un divisor de %1", "splitMaxColsErrorText": "El nombre de columnes ha de ser inferior a %1", "splitMaxRowsErrorText": "El nombre de files ha de ser inferior a %1", "unknownErrorText": "Error desconegut.", "uploadImageExtMessage": "Format d'imatge desconegut.", - "uploadImageFileCountMessage": "No s'ha carregat cap imatge.", + "uploadImageFileCountMessage": "No s'ha penjat cap imatge.", "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB." }, "LongActions": { - "applyChangesTextText": "S'estan carregant les dades...", - "applyChangesTitleText": "S'estan carregant les dades", + "applyChangesTextText": "Carregant dades...", + "applyChangesTitleText": "Carregant Dades", "downloadTextText": "S'està baixant el document...", "downloadTitleText": "S'està baixant el document", - "loadFontsTextText": "S'estan carregant les dades...", - "loadFontsTitleText": "S'estan carregant les dades", - "loadFontTextText": "S'estan carregant les dades...", - "loadFontTitleText": "S'estan carregant les dades", - "loadImagesTextText": "S'estan carregant les imatges...", - "loadImagesTitleText": "S'estan carregant les imatges", - "loadImageTextText": "S'està carregant la imatge...", - "loadImageTitleText": "S'està carregant la imatge", - "loadingDocumentTextText": "S'està carregant el document...", - "loadingDocumentTitleText": "S'està carregant el document", - "loadThemeTextText": "S'està carregant el tema...", - "loadThemeTitleText": "S'està carregant el tema", - "openTextText": "S'està obrint el document...", - "openTitleText": "S'està obrint el document", + "loadFontsTextText": "Carregant dades...", + "loadFontsTitleText": "Carregant Dades", + "loadFontTextText": "Carregant dades...", + "loadFontTitleText": "Carregant Dades", + "loadImagesTextText": "Carregant imatges...", + "loadImagesTitleText": "Carregant Imatges", + "loadImageTextText": "Carregant imatge...", + "loadImageTitleText": "Carregant Imatge", + "loadingDocumentTextText": "Carregant document...", + "loadingDocumentTitleText": "Carregant document", + "loadThemeTextText": "Carregant tema...", + "loadThemeTitleText": "Carregant Tema", + "openTextText": "Obrint Document...", + "openTitleText": "Obrint Document", "printTextText": "S'està imprimint el document...", "printTitleText": "S'està imprimint el document", - "savePreparingText": "S'està preparant per desar", - "savePreparingTitle": "S'està preparant per desar. Espereu...", + "savePreparingText": "Preparant per desar", + "savePreparingTitle": "Preparant per desar. Espereu...", "saveTextText": "S'està desant el document...", "saveTitleText": "S'està desant el document", - "textLoadingDocument": "S'està carregant el document", + "textLoadingDocument": "Carregant document", "txtEditingMode": "Estableix el mode d'edició ...", "uploadImageTextText": "S'està carregant la imatge...", "uploadImageTitleText": "S'està carregant la imatge", - "waitText": "Espera..." + "waitText": "Si us plau, Espereu..." }, "Toolbar": { - "dlgLeaveMsgText": "Tens canvis no desats en aquest document. Fes clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Fes clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", - "dlgLeaveTitleText": "Estàs sortint de l'aplicació", + "dlgLeaveMsgText": "Teniu canvis no desats en aquest document. Feu clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", + "dlgLeaveTitleText": "Esteu sortint de l'aplicació", "leaveButtonText": "Surt d'aquesta pàgina", "stayButtonText": "Queda't a aquesta pàgina" }, "View": { "Add": { "notcriticalErrorTitle": "Advertiment", - "textAddLink": "Afegeix un enllaç", + "textAddLink": "Afegir Enllaç", "textAddress": "Adreça", "textBack": "Enrere", - "textCancel": "Cancel·la", + "textCancel": "Cancel·lar", "textColumns": "Columnes", "textComment": "Comentari", "textDefault": "Text seleccionat", @@ -246,36 +246,36 @@ "Edit": { "notcriticalErrorTitle": "Advertiment", "textActualSize": "Mida real", - "textAddCustomColor": "Afegeix un color personalitzat", + "textAddCustomColor": "Afegir Color Personalitzat", "textAdditional": "Addicional", - "textAdditionalFormatting": "Format addicional", + "textAdditionalFormatting": "Format Addicional", "textAddress": "Adreça", "textAfter": "Després", "textAlign": "Alineació", "textAlignBottom": "Alineació inferior", "textAlignCenter": "Alineació al centre", - "textAlignLeft": "Alineació a l'esquerra", + "textAlignLeft": "Alineació esquerra", "textAlignMiddle": "Alineació al mig", - "textAlignRight": "Alineació a la dreta", - "textAlignTop": "Alineació a la part superior", - "textAllCaps": "Tot en majúscules", - "textApplyAll": "Aplica-ho a totes les diapositives", + "textAlignRight": "Alineació dreta", + "textAlignTop": "Alineació Superior", + "textAllCaps": "Tot Majúscules", + "textApplyAll": "Aplicar a totes les diapositives", "textAuto": "Automàtic", "textAutomatic": "Automàtic", "textBack": "Enrere", - "textBandedColumn": "Columna en bandes", - "textBandedRow": "Fila en bandes", + "textBandedColumn": "Columna en Bandes", + "textBandedRow": "Fila en Bandes", "textBefore": "Abans", "textBlack": "En negre", "textBorder": "Vora", - "textBottom": "Part inferior", - "textBottomLeft": "Part inferior-Esquerra", - "textBottomRight": "Part inferior-dreta", - "textBringToForeground": "Porta al primer pla", + "textBottom": "Part Inferior", + "textBottomLeft": "Part Inferior-Esquerra", + "textBottomRight": "Part Inferior-Dreta", + "textBringToForeground": "Portar al Davant", "textBullets": "Pics", "textBulletsAndNumbers": "Pics i números", - "textCaseSensitive": "Sensible a majúscules i minúscules", - "textCellMargins": "Marges de la cel·la", + "textCaseSensitive": "Sensible a Majúscules i Minúscules", + "textCellMargins": "Marges de Cel·la", "textChart": "Gràfic", "textClock": "Rellotge", "textClockwise": "En sentit horari", @@ -332,7 +332,7 @@ "textLinkType": "Tipus d'enllaç", "textMoveBackward": "Torna enrere", "textMoveForward": "Ves endavant", - "textNextSlide": "Diapositiva següent", + "textNextSlide": "Següent Diapositiva", "textNone": "Cap", "textNoStyles": "Aquest tipus de diagrama no té cap estil.", "textNoTextFound": "No s'ha trobat el text", @@ -341,11 +341,11 @@ "textOk": "D'acord", "textOpacity": "Opacitat", "textOptions": "Opcions", - "textPictureFromLibrary": "Imatge de la biblioteca", + "textPictureFromLibrary": "Imatge de la Biblioteca", "textPictureFromURL": "Imatge de l'URL", "textPreviousSlide": "Diapositiva anterior", "textPt": "pt", - "textPush": "Empeny", + "textPush": "Inserció", "textRemoveChart": "Suprimeix el gràfic", "textRemoveImage": "Suprimeix la imatge", "textRemoveLink": "Suprimeix l'enllaç", @@ -369,7 +369,7 @@ "textSmallCaps": "Versaletes", "textSmoothly": "Suau", "textSplit": "Divideix", - "textStartOnClick": "Inicia fent clic", + "textStartOnClick": "Inicieu fent clic", "textStrikethrough": "Ratllat", "textStyle": "Estil", "textStyleOptions": "Opcions d'estil", @@ -390,20 +390,20 @@ "textWedge": "Falca", "textWipe": "Elimina", "textZoom": "Zoom", - "textZoomIn": "Amplia", + "textZoomIn": "Ampliar", "textZoomOut": "Redueix", - "textZoomRotate": "Amplia i gira" + "textZoomRotate": "Ampliar i Girar" }, "Settings": { "mniSlideStandard": "Estàndard (4:3)", "mniSlideWide": "Pantalla panoràmica (16:9)", - "textAbout": "Quant a...", + "textAbout": "Quant a", "textAddress": "adreça:", "textApplication": "Aplicació", - "textApplicationSettings": "Configuració de l'aplicació", + "textApplicationSettings": "Configurar Aplicació", "textAuthor": "Autor", "textBack": "Enrere", - "textCaseSensitive": "Sensible a majúscules i minúscules", + "textCaseSensitive": "Sensible a Majúscules i Minúscules", "textCentimeter": "Centímetre", "textCollaboration": "Col·laboració", "textColorSchemes": "Combinacions de colors", @@ -433,10 +433,10 @@ "textNoTextFound": "No s'ha trobat el text", "textOwner": "Propietari", "textPoint": "Punt", - "textPoweredBy": "Amb tecnologia de", + "textPoweredBy": "Impulsat per", "textPresentationInfo": "Informació de la presentació", - "textPresentationSettings": "Configuració de la presentació", - "textPresentationTitle": "Títol de la presentació", + "textPresentationSettings": "Configuració de Presentació", + "textPresentationTitle": "Títol de Presentació", "textPrint": "Imprimeix", "textReplace": "Substitueix", "textReplaceAll": "Substitueix-ho tot ", @@ -466,7 +466,7 @@ "txtScheme20": "Urbà", "txtScheme21": "Inspiració", "txtScheme22": "Crea Office", - "txtScheme3": "Vèrtex", + "txtScheme3": "Àpex", "txtScheme4": "Aspecte", "txtScheme5": "Cívic", "txtScheme6": "Esplanada", diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index d51b2a5a2..9e67ba067 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -123,9 +123,9 @@ "warnLicenseExp": "Su licencia ha expirado. Por favor, actualícela y recargue la página.", "warnLicenseLimitedNoAccess": "La licencia ha expirado. No tiene acceso a la funcionalidad de edición de documentos. Por favor, póngase en contacto con su administrador.", "warnLicenseLimitedRenewed": "La licencia necesita renovación. Tiene acceso limitado a la funcionalidad de edición de documentos.
    Por favor, póngase en contacto con su administrador para obtener acceso completo", - "warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.", + "warnLicenseUsersExceeded": "Ha alcanzado el límite de usuarios para los editores de %1. Contacte con su administrador para recibir más información.", "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", - "warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1.
    Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", + "warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para los editores de %1.
    Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", "warnProcessRightsChange": "No tiene permiso para editar el archivo." } }, @@ -245,7 +245,7 @@ }, "Edit": { "notcriticalErrorTitle": "Advertencia", - "textActualSize": "Tamaño actual", + "textActualSize": "Tamaño real", "textAddCustomColor": "Agregar color personalizado", "textAdditional": "Adicional", "textAdditionalFormatting": "Formato adicional", diff --git a/apps/presentationeditor/mobile/locale/id.json b/apps/presentationeditor/mobile/locale/id.json new file mode 100644 index 000000000..c1e902b36 --- /dev/null +++ b/apps/presentationeditor/mobile/locale/id.json @@ -0,0 +1,479 @@ +{ + "About": { + "textAbout": "Tentang", + "textAddress": "Alamat", + "textBack": "Kembali", + "textEmail": "Email", + "textPoweredBy": "Didukung oleh", + "textTel": "Tel", + "textVersion": "Versi" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Peringatan", + "textAddComment": "Tambahkan Komentar", + "textAddReply": "Tambahkan Balasan", + "textBack": "Kembali", + "textCancel": "Batalkan", + "textCollaboration": "Kolaborasi", + "textComments": "Komentar", + "textDeleteComment": "Hapus Komentar", + "textDeleteReply": "Hapus Reply", + "textDone": "Selesai", + "textEdit": "Sunting", + "textEditComment": "Edit Komentar", + "textEditReply": "Edit Reply", + "textEditUser": "User yang sedang edit file:", + "textMessageDeleteComment": "Apakah Anda ingin menghapus komentar ini?", + "textMessageDeleteReply": "Apakah Anda ingin menghapus reply ini?", + "textNoComments": "Dokumen ini tidak memiliki komentar", + "textOk": "OK", + "textReopen": "Buka lagi", + "textResolve": "Selesaikan", + "textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.", + "textUsers": "Pengguna" + }, + "HighlightColorPalette": { + "textNoFill": "Tidak ada Isian" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Warna", + "textStandartColors": "Warna Standar", + "textThemeColors": "Warna Tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Tindakan copy, cut dan paste menggunakan menu konteks hanya akan dilakukan dalam file saat ini.", + "menuAddComment": "Tambahkan Komentar", + "menuAddLink": "Tambah tautan", + "menuCancel": "Batalkan", + "menuDelete": "Hapus", + "menuDeleteTable": "Hapus Tabel", + "menuEdit": "Sunting", + "menuMerge": "Merge", + "menuMore": "Lainnya", + "menuOpenLink": "Buka Link", + "menuSplit": "Split", + "menuViewComment": "Tampilkan Komentar", + "textColumns": "Kolom", + "textCopyCutPasteActions": "Salin, Potong dan Tempel", + "textDoNotShowAgain": "Jangan tampilkan lagi", + "textRows": "Baris" + }, + "Controller": { + "Main": { + "advDRMOptions": "File yang Diproteksi", + "advDRMPassword": "Kata Sandi", + "closeButtonText": "Tutup File", + "criticalErrorTitle": "Kesalahan", + "errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
    Silakan hubungi admin Anda.", + "errorOpensource": "Menggunakan versi Komunitas gratis, Anda bisa membuka dokumen hanya untuk dilihat. Untuk mengakses editor web mobile, diperlukan lisensi komersial.", + "errorProcessSaveResult": "Gagal menyimpan.", + "errorServerVersion": "Versi editor sudah di update. Halaman akan dimuat ulang untuk menerapkan perubahan.", + "errorUpdateVersion": "Versi file telah diubah. Halaman tidak akan dimuat ulang.", + "leavePageText": "Ada perubahan yang belum disimpan dalam dokumen ini. Klik 'Tetap di Halaman Ini' untuk menunggu simpan otomatis. Klik ‘Tinggalkan Halaman Ini’ untuk membatalkan semua perubahan yang belum disimpan.", + "notcriticalErrorTitle": "Peringatan", + "SDK": { + "Chart": "Bagan", + "Click to add first slide": "Klik untuk tambah slide pertama", + "Click to add notes": "Klik untuk tambah catatan", + "ClipArt": "Clip Art", + "Date and time": "Tanggal dan Jam", + "Diagram": "Diagram", + "Diagram Title": "Judul Grafik", + "Footer": "Footer", + "Header": "Header", + "Image": "Gambar", + "Loading": "Memuat", + "Media": "Media", + "None": "Tidak ada", + "Picture": "Gambar", + "Series": "Seri", + "Slide number": "Nomor Slide", + "Slide subtitle": "Subtitle Slide", + "Slide text": "Teks Slide", + "Slide title": "Judul Slide", + "Table": "Tabel", + "X Axis": "XAS Sumbu X", + "Y Axis": "Sumbu Y", + "Your text here": "Teks Anda di sini" + }, + "textAnonymous": "Anonim", + "textBuyNow": "Kunjungi website", + "textClose": "Tutup", + "textContactUs": "Hubungi sales", + "textCustomLoader": "Maaf, Anda tidak diizinkan untuk mengganti loader. Silakan hubungi tim sales kami untuk mendapatkan harga.", + "textGuest": "Tamu", + "textHasMacros": "File berisi macros otomatis.
    Apakah Anda ingin menjalankan macros?", + "textNo": "Tidak", + "textNoLicenseTitle": "Batas lisensi sudah tercapai", + "textNoTextFound": "Teks tidak ditemukan", + "textOpenFile": "Masukkan kata sandi untuk buka file", + "textPaidFeature": "Fitur berbayar", + "textRemember": "Ingat pilihan saya", + "textReplaceSkipped": "Penggantian telah dilakukan. Ada {0} yang dilewatkan.", + "textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti {0}", + "textYes": "Ya", + "titleLicenseExp": "Lisensi kadaluwarsa", + "titleServerVersion": "Editor mengupdate", + "titleUpdateVersion": "Versi telah diubah", + "txtIncorrectPwd": "Password salah", + "txtProtected": "Jika Anda memasukkan password dan membuka file, password file saat ini akan di reset.", + "warnLicenseExceeded": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi admin Anda untuk mempelajari lebih lanjut.", + "warnLicenseExp": "Lisensi Anda sudah kadaluwarsa. Silakan update dan muat ulang halaman.", + "warnLicenseLimitedNoAccess": "Lisensi kadaluwarsa. Anda tidak memiliki akses untuk editing dokumen secara keseluruhan. Silakan hubungi admin Anda.", + "warnLicenseLimitedRenewed": "Lisensi perlu diperbaharui. Anda memiliki akses terbatas untuk edit dokumen.
    Silakan hubungi admin Anda untuk mendapatkan akses penuh", + "warnLicenseUsersExceeded": "Anda sudah mencapai batas user untuk %1 editor. Hubungi admin Anda untuk mempelajari lebih lanjut.", + "warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi %1 tim sales untuk syarat personal upgrade.", + "warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", + "warnProcessRightsChange": "Anda tidak memiliki izin edit file ini." + } + }, + "Error": { + "convertationTimeoutText": "Waktu konversi habis.", + "criticalErrorExtText": "Tekan 'OK' untuk kembali ke list dokumen.", + "criticalErrorTitle": "Kesalahan", + "downloadErrorText": "Unduhan gagal.", + "errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
    Silakan hubungi admin Anda.", + "errorBadImageUrl": "URL Gambar salah", + "errorConnectToServer": "Tidak bisa menyimpan doc ini. Silakan periksa pengaturan koneksi atau hubungi admin Anda.
    Ketika klik tombol 'OK', Anda akan diminta untuk download dokumen.", + "errorDatabaseConnection": "Eror eksternal.
    Koneksi database bermasalah. Silakan hubungi support.", + "errorDataEncrypted": "Perubahan enkripsi sudah diterima dan tidak bisa diuraikan.", + "errorDataRange": "Rentang data salah.", + "errorDefaultMessage": "Kode kesalahan: %1", + "errorEditingDownloadas": "Ada kesalahan saat bekerja dengan dokumen.
    Gunakan menu 'Download' untuk menyimpan file copy backup di lokal.", + "errorFilePassProtect": "Password file diproteksi dan tidak bisa dibuka.", + "errorFileSizeExceed": "Ukuran file melampaui limit server Anda.
    Silakan, hubungi admin.", + "errorKeyEncrypt": "Deskriptor kunci tidak dikenal", + "errorKeyExpire": "Deskriptor kunci tidak berfungsi", + "errorLoadingFont": "Font tidak bisa dimuat.
    Silakan kontak admin Server Dokumen Anda.", + "errorSessionAbsolute": "Waktu edit dokumen sudah selesai. Silakan muat ulang halaman.", + "errorSessionIdle": "Dokumen sudah lama tidak diedit. Silakan muat ulang halaman.", + "errorSessionToken": "Koneksi ke server terganggu. Silakan muat ulang halaman.", + "errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
    harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
    Sebelum Anda bisa melanjutkan kerja, Anda perlu download file atau copy konten untuk memastikan tidak ada yang hilang, dan muat ulang halaman ini.", + "errorUserDrop": "File tidak bisa diakses sekarang.", + "errorUsersExceed": "Jumlah pengguna telah melebihi jumlah yang diijinkan dalam paket harga.", + "errorViewerDisconnect": "Koneksi terputus. Anda tetap bisa melihat dokumen,
    tapi tidak bisa download atau print sampai koneksi terhubung dan halaman dimuat ulang.", + "notcriticalErrorTitle": "Peringatan", + "openErrorText": "Eror ketika membuka file", + "saveErrorText": "Eror ketika menyimpan file.", + "scriptLoadError": "Koneksi terlalu lambat dan beberapa komponen tidak bisa dibuka Silakan muat ulang halaman.", + "splitDividerErrorText": "Jumlah baris harus merupakan pembagi dari %1", + "splitMaxColsErrorText": "Jumlah kolom harus kurang dari %1", + "splitMaxRowsErrorText": "Jumlah baris harus kurang dari %1", + "unknownErrorText": "Kesalahan tidak diketahui.", + "uploadImageExtMessage": "Format gambar tidak dikenal.", + "uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.", + "uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Memuat data...", + "applyChangesTitleText": "Memuat Data", + "downloadTextText": "Mengunduh dokumen...", + "downloadTitleText": "Mengunduh Dokumen", + "loadFontsTextText": "Memuat data...", + "loadFontsTitleText": "Memuat Data", + "loadFontTextText": "Memuat data...", + "loadFontTitleText": "Memuat Data", + "loadImagesTextText": "Memuat gambar...", + "loadImagesTitleText": "Memuat Gambar", + "loadImageTextText": "Memuat gambar...", + "loadImageTitleText": "Memuat Gambar", + "loadingDocumentTextText": "Memuat dokumen...", + "loadingDocumentTitleText": "Memuat dokumen", + "loadThemeTextText": "Loading Tema...", + "loadThemeTitleText": "Loading Tema", + "openTextText": "Membuka Dokumen...", + "openTitleText": "Membuka Dokumen", + "printTextText": "Mencetak dokumen...", + "printTitleText": "Mencetak Dokumen", + "savePreparingText": "Bersiap untuk menyimpan", + "savePreparingTitle": "Bersiap untuk menyimpan. Silahkan menunggu...", + "saveTextText": "Menyimpan dokumen...", + "saveTitleText": "Menyimpan Dokumen", + "textLoadingDocument": "Memuat dokumen", + "txtEditingMode": "Atur mode editing...", + "uploadImageTextText": "Mengunggah gambar...", + "uploadImageTitleText": "Mengunggah Gambar", + "waitText": "Silahkan menunggu" + }, + "Toolbar": { + "dlgLeaveMsgText": "Ada perubahan yang belum disimpan dalam dokumen ini. Klik 'Tetap di Halaman Ini' untuk menunggu simpan otomatis. Klik ‘Tinggalkan Halaman Ini’ untuk membatalkan semua perubahan yang belum disimpan.", + "dlgLeaveTitleText": "Anda meninggalkan aplikasi", + "leaveButtonText": "Tinggalkan Halaman Ini", + "stayButtonText": "Tetap di halaman ini" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Peringatan", + "textAddLink": "Tambah tautan", + "textAddress": "Alamat", + "textBack": "Kembali", + "textCancel": "Batalkan", + "textColumns": "Kolom", + "textComment": "Komentar", + "textDefault": "Teks yang dipilih", + "textDisplay": "Tampilan", + "textEmptyImgUrl": "Anda perlu melengkapkan URL gambar.", + "textExternalLink": "Tautan eksternal", + "textFirstSlide": "Slide Pertama", + "textImage": "Gambar", + "textImageURL": "URL Gambar", + "textInsert": "Sisipkan", + "textInsertImage": "Sisipkan Gambar", + "textLastSlide": "Slide Terakhir", + "textLink": "Tautan", + "textLinkSettings": "Pengaturan Link", + "textLinkTo": "Tautkan dengan", + "textLinkType": "Tipe tautan", + "textNextSlide": "Slide Berikutnya", + "textOk": "OK", + "textOther": "Lainnya", + "textPictureFromLibrary": "Gambar dari Perpustakaan", + "textPictureFromURL": "Gambar dari URL", + "textPreviousSlide": "Slide sebelumnya", + "textRows": "Baris", + "textScreenTip": "Tip Layar", + "textShape": "Bentuk", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide di Presentasi ini", + "textSlideNumber": "Nomor Slide", + "textTable": "Tabel", + "textTableSize": "Ukuran Tabel", + "txtNotUrl": "Area ini harus dalam format URL “http://www.contoh.com”" + }, + "Edit": { + "notcriticalErrorTitle": "Peringatan", + "textActualSize": "Ukuran Sebenarnya", + "textAddCustomColor": "Tambah warna kustom", + "textAdditional": "Tambahan", + "textAdditionalFormatting": "Pemformatan tambahan", + "textAddress": "Alamat", + "textAfter": "Sesudah", + "textAlign": "Ratakan", + "textAlignBottom": "Rata Bawah", + "textAlignCenter": "Rata Tengah", + "textAlignLeft": "Rata Kiri", + "textAlignMiddle": "Rata di Tengah", + "textAlignRight": "Rata Kanan", + "textAlignTop": "Rata Atas", + "textAllCaps": "Huruf kapital semua", + "textApplyAll": "Terapkan untuk Semua Slide", + "textAuto": "Otomatis", + "textAutomatic": "Otomatis", + "textBack": "Kembali", + "textBandedColumn": "Kolom Berpita", + "textBandedRow": "Baris Berpita", + "textBefore": "Sebelum", + "textBlack": "Through Black", + "textBorder": "Pembatas", + "textBottom": "Bawah", + "textBottomLeft": "Kiri", + "textBottomRight": "Bawah-Kanan", + "textBringToForeground": "Tampilkan di Halaman Muka", + "textBullets": "Butir", + "textBulletsAndNumbers": "Butir & Angka", + "textCaseSensitive": "Harus sama persis", + "textCellMargins": "Margin Sel", + "textChart": "Bagan", + "textClock": "Jam", + "textClockwise": "Searah Jarum Jam", + "textColor": "Warna", + "textCounterclockwise": "Berlawanan Jarum Jam", + "textCover": "Cover", + "textCustomColor": "Custom Warna", + "textDefault": "Teks yang dipilih", + "textDelay": "Delay", + "textDeleteSlide": "Hapus Slide", + "textDesign": "Desain", + "textDisplay": "Tampilan", + "textDistanceFromText": "Jarak dari teks", + "textDistributeHorizontally": "Distribusikan Horizontal", + "textDistributeVertically": "Distribusikan Vertikal", + "textDone": "Selesai", + "textDoubleStrikethrough": "Garis coret ganda", + "textDuplicateSlide": "Duplikasi Slide", + "textDuration": "Durasi", + "textEditLink": "Edit Link", + "textEffect": "Efek", + "textEffects": "Efek", + "textEmptyImgUrl": "Anda perlu melengkapkan URL gambar.", + "textExternalLink": "Tautan eksternal", + "textFade": "Pudar", + "textFill": "Isi", + "textFinalMessage": "Akhir dari preview slide. Klik untuk keluar.", + "textFind": "Cari", + "textFindAndReplace": "Cari dan Ganti", + "textFirstColumn": "Kolom Pertama", + "textFirstSlide": "Slide Pertama", + "textFontColor": "Warna Huruf", + "textFontColors": "Warna Font", + "textFonts": "Font", + "textFromLibrary": "Gambar dari Perpustakaan", + "textFromURL": "Gambar dari URL", + "textHeaderRow": "Baris Header", + "textHighlight": "Sorot hasil", + "textHighlightColor": "Warna Sorot", + "textHorizontalIn": "Horizontal Masuk", + "textHorizontalOut": "Horizontal Keluar", + "textHyperlink": "Hyperlink", + "textImage": "Gambar", + "textImageURL": "URL Gambar", + "textLastColumn": "Kolom Terakhir", + "textLastSlide": "Slide Terakhir", + "textLayout": "Layout", + "textLeft": "Kiri", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Spasi Antar Baris", + "textLink": "Tautan", + "textLinkSettings": "Pengaturan Link", + "textLinkTo": "Tautkan dengan", + "textLinkType": "Tipe tautan", + "textMoveBackward": "Pindah Kebelakang", + "textMoveForward": "Majukan", + "textNextSlide": "Slide Berikutnya", + "textNone": "Tidak ada", + "textNoStyles": "Tanpa style untuk tipe grafik ini.", + "textNoTextFound": "Teks tidak ditemukan", + "textNotUrl": "Area ini harus dalam format URL “http://www.contoh.com”", + "textNumbers": "Nomor", + "textOk": "OK", + "textOpacity": "Opasitas", + "textOptions": "Pilihan", + "textPictureFromLibrary": "Gambar dari Perpustakaan", + "textPictureFromURL": "Gambar dari URL", + "textPreviousSlide": "Slide sebelumnya", + "textPt": "pt", + "textPush": "Tekan", + "textRemoveChart": "Hilangkan Grafik", + "textRemoveImage": "Hilangkan Gambar", + "textRemoveLink": "Hilangkan Link", + "textRemoveShape": "Hilangkan Bentuk", + "textRemoveTable": "Hilangkan Tabel", + "textReorder": "Reorder", + "textReplace": "Ganti", + "textReplaceAll": "Ganti Semua", + "textReplaceImage": "Ganti Gambar", + "textRight": "Kanan", + "textScreenTip": "Tip Layar", + "textSearch": "Cari", + "textSec": "s", + "textSelectObjectToEdit": "Pilih objek untuk diedit", + "textSendToBackground": "Jalankan di Background", + "textShape": "Bentuk", + "textSize": "Ukuran", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide di Presentasi ini", + "textSlideNumber": "Nomor Slide", + "textSmallCaps": "Huruf Ukuran Kecil", + "textSmoothly": "Dengan Mulus", + "textSplit": "Split", + "textStartOnClick": "Mulai Saat Klik", + "textStrikethrough": "Coret ganda", + "textStyle": "Model", + "textStyleOptions": "Opsi Style", + "textSubscript": "Subskrip", + "textSuperscript": "Superskrip", + "textTable": "Tabel", + "textText": "Teks", + "textTheme": "Tema", + "textTop": "Atas", + "textTopLeft": "Atas-Kiri", + "textTopRight": "Atas-Kanan", + "textTotalRow": "Total Baris", + "textTransitions": "Transisi", + "textType": "Tipe", + "textUnCover": "UnCover", + "textVerticalIn": "Masuk Vertikal", + "textVerticalOut": "Keluar Horizontal", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Pembesaran", + "textZoomIn": "Perbesar", + "textZoomOut": "Perkecil", + "textZoomRotate": "Zoom dan Rotasi" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "Tentang", + "textAddress": "alamat:", + "textApplication": "Aplikasi", + "textApplicationSettings": "Pengaturan Aplikasi", + "textAuthor": "Penyusun", + "textBack": "Kembali", + "textCaseSensitive": "Harus sama persis", + "textCentimeter": "Sentimeter", + "textCollaboration": "Kolaborasi", + "textColorSchemes": "Skema Warna", + "textComment": "Komentar", + "textCreated": "Dibuat", + "textDarkTheme": "Tema Gelap", + "textDisableAll": "Nonaktifkan Semua", + "textDisableAllMacrosWithNotification": "Nonaktifkan semua macros dengan notifikasi", + "textDisableAllMacrosWithoutNotification": "Nonaktifkan semua macros tanpa notifikasi", + "textDone": "Selesai", + "textDownload": "Unduh", + "textDownloadAs": "Unduh sebagai...", + "textEmail": "email:", + "textEnableAll": "Aktifkan Semua", + "textEnableAllMacrosWithoutNotification": "Aktifkan semua macros tanpa notifikasi", + "textFind": "Cari", + "textFindAndReplace": "Cari dan Ganti", + "textFindAndReplaceAll": "Temukan dan Ganti Semua", + "textHelp": "Bantuan", + "textHighlight": "Sorot hasil", + "textInch": "Inci", + "textLastModified": "Terakhir Dimodifikasi", + "textLastModifiedBy": "Terakhir Dimodifikasi Oleh", + "textLoading": "Memuat...", + "textLocation": "Lokasi", + "textMacrosSettings": "Pengaturan Macros", + "textNoTextFound": "Teks tidak ditemukan", + "textOwner": "Pemilik", + "textPoint": "Titik", + "textPoweredBy": "Didukung oleh", + "textPresentationInfo": "Info Presentasi", + "textPresentationSettings": "Pengaturan Presentasi", + "textPresentationTitle": "Judul Presentasi", + "textPrint": "Cetak", + "textReplace": "Ganti", + "textReplaceAll": "Ganti Semua", + "textSearch": "Cari", + "textSettings": "Pengaturan", + "textShowNotification": "Tampilkan Notifikasi", + "textSlideSize": "Ukuran Slide", + "textSpellcheck": "Periksa Ejaan", + "textSubject": "Subyek", + "textTel": "tel:", + "textTitle": "Judul", + "textUnitOfMeasurement": "Satuan Ukuran", + "textUploaded": "Diunggah", + "textVersion": "Versi", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Modul", + "txtScheme13": "Mewah", + "txtScheme14": "Jendela Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Kertas", + "txtScheme17": "Titik balik matahari", + "txtScheme18": "Teknik", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Semangat", + "txtScheme22": "Office Baru", + "txtScheme3": "Puncak", + "txtScheme4": "Aspek", + "txtScheme5": "Kewargaan", + "txtScheme6": "Himpunan", + "txtScheme7": "Margin Sisa", + "txtScheme8": "Alur", + "txtScheme9": "Cetakan", + "textFeedback": "Feedback & Support" + } + } +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/lo.json b/apps/presentationeditor/mobile/locale/lo.json index 263ce07ec..bb27f26f9 100644 --- a/apps/presentationeditor/mobile/locale/lo.json +++ b/apps/presentationeditor/mobile/locale/lo.json @@ -1,480 +1,479 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "ກ່ຽວກັບ", + "textAddress": "ທີ່ຢູ່", + "textBack": "ກັບຄືນ", + "textEmail": "ອີເມລ", + "textPoweredBy": "ສ້າງໂດຍ", + "textTel": "ໂທ", + "textVersion": "ລຸ້ນ" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", - "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" - }, - "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "notcriticalErrorTitle": "ເຕືອນ", + "textAddComment": "ເພີ່ມຄຳເຫັນ", + "textAddReply": "ເພີ່ມຄຳຕອບກັບ", + "textBack": "ກັບຄືນ", + "textCancel": "ຍົກເລີກ", + "textCollaboration": "ການຮ່ວມກັນ", + "textComments": "ຄໍາເຫັນ", + "textDeleteComment": "ລົບຄໍາເຫັນ", + "textDeleteReply": "ລົບການຕອບກັບ", + "textDone": "ສໍາເລັດ", + "textEdit": "ແກ້ໄຂ", + "textEditComment": "ແກ້ໄຂຄໍາເຫັນ", + "textEditReply": "ແກ້ໄຂການຕອບກັບ", + "textEditUser": "ຜູ້ໃຊ້ທີ່ກໍາລັງແກ້ໄຂເອກະສານ:", + "textMessageDeleteComment": "ທ່ານຕ້ອງການລົບຄຳເຫັນນີ້ແທ້ບໍ", + "textMessageDeleteReply": "ທ່ານຕ້ອງການລົບແທ້ບໍ?", + "textNoComments": "ເອກະສານບໍ່ມີຄໍາເຫັນ", + "textOk": "ຕົກລົງ", + "textReopen": "ເປີດຄືນ", + "textResolve": "ແກ້ໄຂ", + "textTryUndoRedo": "ໜ້າທີ່ ກັບຄືນ ຫຼື ທວນຄືນ ຖືກປິດໃຊ້ງານ ສຳລັບໂໝດການແກ້ໄຂຮ່ວມກັນດ່ວນ.", + "textUsers": "ຜຸ້ໃຊ້" }, "HighlightColorPalette": { - "textNoFill": "No Fill" + "textNoFill": "ບໍ່ມີການຕື່ມຂໍ້ມູນໃສ່" + }, + "ThemeColorPalette": { + "textCustomColors": "ກຳນົດສີເອງ", + "textStandartColors": "ສີມາດຕະຖານ", + "textThemeColors": " ຮູບແບບສີ" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows" + "errorCopyCutPaste": "ການກ໋ອບປີ້,ຕັດ ແລະ ວາງ ການດຳເນີນການໂດຍໃຊ້ເມນູ ຈະດຳເນີນການພາຍໃນຟາຍປັດຈຸບັນເທົ່ານັ້ນ", + "menuAddComment": "ເພີ່ມຄຳເຫັນ", + "menuAddLink": "ເພີ່ມລິ້ງ", + "menuCancel": "ຍົກເລີກ", + "menuDelete": "ລົບ", + "menuDeleteTable": "ລົບຕາຕະລາງ", + "menuEdit": "ແກ້ໄຂ", + "menuMerge": "ປະສົມປະສານ", + "menuMore": "ຫຼາຍກວ່າ", + "menuOpenLink": "ເປີດລີ້ງ", + "menuSplit": "ແຍກ", + "menuViewComment": "ເບີ່ງຄໍາເຫັນ", + "textColumns": "ຖັນ", + "textCopyCutPasteActions": "ປະຕິບັດການ ສໍາເນົາ, ຕັດ ແລະ ວາງ", + "textDoNotShowAgain": "ບໍ່ສະແດງອີກ", + "textRows": "ແຖວ" }, "Controller": { "Main": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "advDRMOptions": "ຟຮາຍມີການປົກປ້ອງ", + "advDRMPassword": "ລະຫັດຜ່ານ", + "closeButtonText": "ປິດຟຮາຍເອກະສານ", + "criticalErrorTitle": "ຂໍ້ຜິດພາດ", + "errorAccessDeny": "ທ່ານກໍາລັງພະຍາຍາມດໍາເນີນການໃນໜ້າທີ່ທ່ານບໍ່ມີສິດສໍາລັບດໍາເນີນການ.
    ກະລຸນາ, ຕິດຕໍ່ແອດມີນລະບົບຂອງທ່ານ.", + "errorOpensource": "ການນໍາໃຊ້ສະບັບຟຣີ, ທ່ານສາມາດເປີດເອກະສານສໍາລັບການອ່ານເທົ່ານັ້ນ. ໃນການເຂົ້າເຖິງໂປຣແກຣມ, ຕ້ອງມີໃບອະນຸຍາດທາງການຄ້າ.", + "errorProcessSaveResult": "ບັນທຶກບຊ່ສຳເລັດ", + "errorServerVersion": "ສະບັບດັດແກ້ໄດ້ຖືກປັບປຸງແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດຄືນເພື່ອນຳໃຊ້ການປ່ຽນແປງ.", + "errorUpdateVersion": "ເອກະສານໄດ້ຖືກປ່ຽນແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດໃໝ່.", + "leavePageText": "ທ່ານມີການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກໄວ້ໃນເອກະສານນີ້. ຄລິກທີ່ 'ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທຶກອັດຕະໂນມັດ. ຄລິກ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໄວ້ທັງໝົດ.", + "notcriticalErrorTitle": "ເຕືອນ", "SDK": { - "Chart": "Chart", - "Click to add first slide": "Click to add first slide", - "Click to add notes": "Click to add notes", - "ClipArt": "Clip Art", - "Date and time": "Date and time", - "Diagram": "Diagram", - "Diagram Title": "Chart Title", - "Footer": "Footer", - "Header": "Header", - "Image": "Image", - "Loading": "Loading", - "Media": "Media", - "None": "None", - "Picture": "Picture", - "Series": "Series", - "Slide number": "Slide number", - "Slide subtitle": "Slide subtitle", - "Slide text": "Slide text", - "Slide title": "Slide title", - "Table": "Table", + "Chart": "ແຜນຮູບວາດ", + "Click to add first slide": "ຄລິກເພື່ອເພີ່ມສະໄລ້ທຳອິດ", + "Click to add notes": "ກົດເພື່ອເພີ່ມບັນທຶກ", + "ClipArt": "ພາບຕັດຕໍ່", + "Date and time": "ວັນທີ ແລະ ເວລາ", + "Diagram": "ແຜ່ນພາບ", + "Diagram Title": "ໃສ່ຊື່ແຜນຮູບວາດ", + "Footer": "ສ່ວນທ້າຍ", + "Header": "ຫົວຂໍ້ເອກະສານ", + "Image": "ຮູບພາບ", + "Loading": "ກຳລັງໂຫລດ", + "Media": "ຊື່ມວນຊົນ", + "None": "ບໍ່ມີ", + "Picture": "ຮູບພາບ", + "Series": "ຊຸດ", + "Slide number": "ຮູບແບບເລກສະໄລ້", + "Slide subtitle": "ຄຳອະທິບາຍພາບສະໄລ່", + "Slide text": "ເນື້ອຫາພາບສະໄລ", + "Slide title": "ຫົວຂໍ້ພາບສະໄລ", + "Table": "ຕາຕະລາງ", "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here" + "Y Axis": "ແກນ Y", + "Your text here": "ເນື້ອຫາຂອງທ່ານຢູ່ນີ້" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textOpenFile": "Enter a password to open the file", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" + "textAnonymous": "ບໍ່ລະບຸຊື່", + "textBuyNow": "ເຂົ້າໄປຍັງເວັບໄຊ", + "textClose": "ປິດ", + "textContactUs": "ຕິດຕໍ່ຜູ້ຂາຍ", + "textCustomLoader": "ຂໍອະໄພ, ທ່ານບໍ່ມີສິດປ່ຽນຕົວໂຫຼດໄດ້. ກະລຸນາຕິດຕໍ່ຫາພະແນກການຂາຍຂອງພວກເຮົາເພື່ອໃຫ້ໄດ້ຮັບໃບສະເໜີລາຄາ.", + "textGuest": " ແຂກ", + "textHasMacros": "ເອກະສານບັນຈຸ ມາກໂຄ
    ແບບອັດຕະໂນມັດ, ທ່ານຍັງຕ້ອງການດໍາເນີນງານ ມາກໂຄ ບໍ ", + "textNo": "ບໍ່", + "textNoLicenseTitle": "ໃບອະນຸຍາດໄດ້ເຖິງຈຳນວນທີ່ຈຳກັດແລ້ວ", + "textNoTextFound": "ບໍ່ພົບເນື້ອຫາ", + "textOpenFile": "ໃສ່ລະຫັດຜ່ານເພື່ອເປີດໄຟລ໌", + "textPaidFeature": "ຄຸນສົມບັດທີ່ຈ່າຍ", + "textRemember": "ຈື່ຈໍາທາງເລືອກ", + "textReplaceSkipped": "ການທົດແທນໄດ້ຖືກປະຕິບັດແລ້ວ. {0} ຖືກຂ້າມເຫດການທີ່ເກີດຂື້ນໄດ້", + "textReplaceSuccess": "ການຄົ້ນຫາໄດ້ສຳເລັດແລ້ວ. ສິ່ງທີ່ເກີດຂື້ນໄດ້ປ່ຽນແທນແລ້ວ: {0}", + "textYes": "ແມ່ນແລ້ວ", + "titleLicenseExp": "ໃບອະນຸຍາດໝົດອາຍຸ", + "titleServerVersion": "ອັບເດດການແກ້ໄຂ", + "titleUpdateVersion": "ປ່ຽນແປງລຸ້ນ", + "txtIncorrectPwd": "ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ", + "txtProtected": "ຖ້າເຈົ້ານໍາໃຊ້ລະຫັດເພື່ອເປີດເອກະສານ, ລະຫັດປັດຈະບັນຈະຖືກແກ້ໄຂ", + "warnLicenseExceeded": "ທ່ານໄດ້ຖືກຈຳກັດສິດພຽງເທົ່ານີ້ສຳຫລັບການເຊື່່ອມພ້ອມກັນກັບເຄື່ອງມືແກ້ໄຂ %1 ແລ້ວເອກະສານນີ້ຈະເປີດໃຫ້ເບີ່ງເທົ່ານັ້ນ ຕິດຕໍ່ຫາທາງແອດມີນຂອງທ່ານເພື່ອຮັບຂໍ້ມູນເພີ່ມ", + "warnLicenseExp": "License ຂອງທ່ານໄດ້ໝົດອາຍຸກະລຸນາຕໍ່ License ຂອງທ່ານ ແລະ ໂຫລດໜ້າເວັບຄືນໃໝ່ອີກຄັ້ງ.", + "warnLicenseLimitedNoAccess": "ໃບອະນຸຍາດໝົດອາຍຸແລ້ວ. ທ່ານບໍ່ສາມາດເຂົ້າເຖິງການດຳເນີນງານແກ້ໄຂເອກະສານ. ກະລຸນາ, ຕິດຕໍ່ແອດມີນຂອງທ່ານ.", + "warnLicenseLimitedRenewed": "ໃບອະນຸຍາດຕ້ອງໄດ້ຮັບການຕໍ່ອາຍຸ. ທ່ານຈະຖືກຈຳກັດສິດໃນການເຂົ້າເຖິ່ງການແກ້ໄຂເອກະສານ.
    ກະລຸນາຕິດຕໍ່ແອດມີນຂອງທ່ານເພື່ອຕໍ່ອາຍຸ", + "warnLicenseUsersExceeded": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ແກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ທີມບໍລິຫານເພື່ອຂໍ້ມູນເພີ່ມເຕີ່ມ", + "warnNoLicense": "ທ່ານໄດ້ຖືກຈຳກັດສິດພຽງເທົ່ານີ້ສຳຫລັບການເຊື່່ອມພ້ອມກັນກັບເຄື່ອງມືແກ້ໄຂ %1 ແລ້ວເອກະສານນີ້ຈະເປີດໃຫ້ເບີ່ງເທົ່ານັ້ນ ຕິດຕໍ່ທີມຂາຍ %1 ສຳຫລັບເງື່ອນໄຂການອັບເກດສ່ວນບຸກຄົນ", + "warnNoLicenseUsers": "ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມຂາຍ %1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບສິດ", + "warnProcessRightsChange": "ທ່ານບໍ່ມີສິດໃນການແກ້ໄຂໄຟລ໌ນີ້." } }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
    Please contact your Document Server administrator." + "convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", + "criticalErrorExtText": "ກົດ 'OK' ເພື່ອກັບຄືນໄປຫາລາຍການເອກະສານ.", + "criticalErrorTitle": "ຂໍ້ຜິດພາດ", + "downloadErrorText": "ດາວໂຫຼດບໍ່ສຳເລັດ.", + "errorAccessDeny": "ທ່ານກໍາລັງພະຍາຍາມດໍາເນີນການໃນໜ້າທີ່ທ່ານບໍ່ມີສິດສໍາລັບດໍາເນີນການ.
    ກະລຸນາ, ຕິດຕໍ່ແອດມີນລະບົບຂອງທ່ານ.", + "errorBadImageUrl": "URL ຮູບພາບບໍ່ຖືກຕ້ອງ", + "errorConnectToServer": "ບໍ່ສາມາດບັນທຶກເອກະສານນີ້ໄດ້. ກວດເບິ່ງການຕັ້ງຄ່າການເຊື່ອມຕໍ່ຂອງທ່ານ ຫຼື ຕິດຕໍ່ຜູ້ແອດມີນຂອງທ່ານ.
    ເມື່ອທ່ານຄລິກປຸ່ມ 'ຕົກລົງ', ທ່ານຈະຖືກເຕືອນໃຫ້ດາວໂຫລດເອກະສານ.", + "errorDatabaseConnection": "ຂໍ້ຜິດພາດຈາກທາງນອກ
    ຖານຂໍ້ມູນ ຂໍ້ຜິດພາດພາຍນອກ. ກະລຸນາ, ຕິດຕໍ່ການສະ ໜັບ ສະ ໜູນ.", + "errorDataEncrypted": "ໄດ້ຮັບການປ່ຽນແປງລະຫັດແລ້ວ, ບໍ່ສາມາດຖອດລະຫັດໄດ້.", + "errorDataRange": "ໄລຍະຂອງຂໍ້ມູນບໍ່ຖືກ", + "errorDefaultMessage": "ລະຫັດຂໍ້ຜິດພາດ: %1", + "errorEditingDownloadas": "ເກີດຄວາມຜິດພາດໃນລະຫວ່າງການເຮັດວຽກກັບເອກະສານ.
    ໃຊ້ຕົວເລືອກ 'ດາວໂຫລດ' ເພື່ອບັນທຶກໄຟລ໌ສໍາຮອງໄວ້ໃນເຄື່ອງ.", + "errorFilePassProtect": "ໄຟລ໌ດັ່ງກ່າວຖືກປ້ອງກັນດ້ວຍລະຫັດຜ່ານ ແລະ ບໍ່ສາມາດເປີດໄດ້.", + "errorFileSizeExceed": "ຂະໜາດໄຟລ໌ເກີນຂີດຈຳກັດເຊີບເວີຂອງທ່ານ.
    ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.", + "errorKeyEncrypt": "ບໍ່ຮູ້ຄຳອະທິບາຍຫຼັກ", + "errorKeyExpire": "ລະຫັດໝົດອາຍຸ", + "errorLoadingFont": "ຟອນບໍ່ໄດ້ຖືກໂຫລດ.
    ກະລຸນາແອດມີນຂອງທ່ານ.", + "errorSessionAbsolute": "ຊ່ວງເວລາການແກ້ໄຂເອກະສານໝົດອາຍຸແລ້ວ. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "errorSessionIdle": "ເອກະສານບໍ່ໄດ້ຮັບການແກ້ໄຂສໍາລັບການຂ້ອນຂ້າງຍາວ. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "errorSessionToken": "ການເຊື່ອມຕໍ່ກັບເຊີບເວີບໍ່ສະຖຽນ. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "errorStockChart": "ລຳດັບແຖວບໍ່ຖືກຕ້ອງ. ເພື່ອສ້າງຕາຕະລາງເກັບຂໍ້ຮູບກ້າບ, ວາງຂໍ້ມູນໃສ່ແຜ່ນງານຕາມລໍາດັບຕໍ່ໄປນີ້:
    ລາຄາເປີດ, ລາຄາສູງສຸດ, ລາຄາຕໍ່າສຸດ, ລາຄາປິດ.", + "errorUpdateVersionOnDisconnect": "ອິນເຕີເນັດໄດ້ເຊື່ອມຕໍ່ອີກຄັ້ງ, ແລະ ໄຟລ໌ໄດ້ຖືກປ່ຽນແປງ.
    ກ່ອນທີ່ທ່ານຈະເລີ່ມການດຳເນີນງານຕໍ່ແນະນຳໃຫ້ດາວໂຫລດໄຟລ໌ ຫຼື ກອບປີ້ເນື້ອໃນທາງໃນໄຟລ໌ເພື່ອຄວາມແນ່ໃຈວ່າຈະບໍ່ຂໍ້ມູນສູນຫາຍຈາກນັ້ນຈືງໂຫຼດໜ້າໃໝ່", + "errorUserDrop": "ບໍ່ສາມາດເຂົ້າເຖິງເອກະສານໄດ້ໃນຂະນະນີ້.", + "errorUsersExceed": "ເກີນຈຳນວນຜູ້ຊົມໃຊ້ທີ່ແຜນການກຳນົດລາຄາອະນຸຍາດ", + "errorViewerDisconnect": "ການເຊື່ອມຕໍ່ຫາຍໄປ. ທ່ານຍັງສາມາດເບິ່ງເອກະສານໄດ້,
    ແຕ່ທ່ານຈະບໍ່ສາມາດດາວນ໌ໂຫລດຫຼືພິມມັນຈົນກ່ວາການເຊື່ອມຕໍ່ໄດ້ຮັບການຟື້ນຟູແລະຫນ້າຈະຖືກໂຫຼດໃຫມ່.", + "notcriticalErrorTitle": "ເຕືອນ", + "openErrorText": "ມີຂໍ້ຜິດພາດເກີດຂຶ້ນໃນຂະນະທີ່ເປີດໄຟລ໌", + "saveErrorText": "ເກີດຄວາມຜິດພາດຂຶ້ນໃນຂະນະທີ່ບັນທຶກໄຟລ໌", + "scriptLoadError": "ການເຊື່ອມຕໍ່ຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "splitDividerErrorText": "ຈໍານວນແຖວຕ້ອງເປັນຕົວເລກຂອງ %1", + "splitMaxColsErrorText": "ຈຳນວນຖັນຕ້ອງຕໍ່າ ກວ່າ % 1", + "splitMaxRowsErrorText": "ຈຳນວນແຖວຕ້ອງໜ້ອຍກວ່າ %1", + "unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", + "uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ", + "uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ", + "uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." + "applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", + "applyChangesTitleText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ", + "downloadTextText": "ກຳລັງດາວໂຫຼດເອກະສານ...", + "downloadTitleText": "ດາວໂຫລດເອກະສານ", + "loadFontsTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", + "loadFontsTitleText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ", + "loadFontTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", + "loadFontTitleText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ", + "loadImagesTextText": "ກໍາລັງດາວໂຫຼດຮູບພາບ...", + "loadImagesTitleText": "ກໍາລັງດາວໂຫຼດຮູບພາບ", + "loadImageTextText": "ກໍາລັງດາວໂຫຼດຮູບພາບ...", + "loadImageTitleText": "ກໍາລັງດາວໂຫຼດຮູບພາບ", + "loadingDocumentTextText": "ກໍາລັງດາວໂຫຼດເອກະສານ...", + "loadingDocumentTitleText": "ກຳລັງດາວໂຫຼດເອກະສານ", + "loadThemeTextText": "ກຳລັງດາວໂຫຼດຫົວຂໍ້", + "loadThemeTitleText": "ກຳລັງດາວໂຫຼດຫົວຂໍ້", + "openTextText": "ກໍາລັງເປີດເອກະສານ...", + "openTitleText": "ກໍາລັງເປີດເອກະສານ", + "printTextText": "ກໍາລັງພິມເອກະສານ...", + "printTitleText": "ກໍາລັງພິມເອກະສານ", + "savePreparingText": "ກະກຽມບັນທືກ", + "savePreparingTitle": "ກຳລັງກະກຽມບັນທືກ, ກະລຸນາລໍຖ້າ", + "saveTextText": "ກໍາລັງບັນທຶກເອກະສານ...", + "saveTitleText": "ບັນທືກເອກະສານ", + "textLoadingDocument": "ກຳລັງດາວໂຫຼດເອກະສານ", + "txtEditingMode": "ຕັ້ງຄ່າຮູບແບບການແກ້ໄຂ...", + "uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ...", + "uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", + "waitText": "ກະລຸນາລໍຖ້າ..." }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", - "stayButtonText": "Stay on this Page" + "dlgLeaveMsgText": "ທ່ານມີການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກໄວ້ໃນເອກະສານນີ້. ຄລິກທີ່ 'ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທຶກອັດຕະໂນມັດ. ຄລິກ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໄວ້ທັງໝົດ.", + "dlgLeaveTitleText": "ເຈົ້າອອກຈາກລະບົບ", + "leaveButtonText": "ອອກຈາກໜ້ານີ້", + "stayButtonText": "ຢູ່ໃນໜ້ານີ້" }, "View": { "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textColumns": "Columns", - "textComment": "Comment", - "textDefault": "Selected text", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFirstSlide": "First Slide", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textLastSlide": "Last Slide", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textNextSlide": "Next Slide", - "textOther": "Other", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok" + "notcriticalErrorTitle": "ເຕືອນ", + "textAddLink": "ເພີ່ມລິ້ງ", + "textAddress": "ທີ່ຢູ່", + "textBack": "ກັບຄືນ", + "textCancel": "ຍົກເລີກ", + "textColumns": "ຖັນ", + "textComment": "ຄໍາເຫັນ", + "textDefault": "ຂໍ້ຄວາມທີ່ເລືອກ", + "textDisplay": "ສະແດງຜົນ", + "textEmptyImgUrl": "ທ່ານຈໍາເປັນຕ້ອງລະບຸ URL ຮູບພາບ.", + "textExternalLink": "ລິງພາຍນອກ", + "textFirstSlide": "ສະໄລທຳອິດ", + "textImage": "ຮູບພາບ", + "textImageURL": "URL ຮູບພາບ", + "textInsert": "ເພີ່ມ", + "textInsertImage": "ເພີ່ມຮູບພາບ", + "textLastSlide": "ສະໄລ່ສຸດທ້າຍ", + "textLink": "ລີ້ງ", + "textLinkSettings": "ການຕັ້ງຄ່າລີ້ງ", + "textLinkTo": "ເຊື່ອມຕໍ່ຫາ", + "textLinkType": "ປະເພດລີ້ງ", + "textNextSlide": "ພາບສະໄລທັດໄປ", + "textOk": "ຕົກລົງ", + "textOther": "ອື່ນໆ", + "textPictureFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", + "textPictureFromURL": "ຮູບພາບຈາກ URL", + "textPreviousSlide": "ພາບສະໄລຜ່ານມາ", + "textRows": "ແຖວ", + "textScreenTip": "ຄຳແນະນຳໃນໜ້າຈໍ", + "textShape": "ຮູບຮ່າງ", + "textSlide": "ຮູບແບບສະໄລ້", + "textSlideInThisPresentation": "ພາບສະໄລ່ ໃນບົດນຳສະເໜີນີ້", + "textSlideNumber": "ຮູບແບບເລກສະໄລ້", + "textTable": "ຕາຕະລາງ", + "textTableSize": "ຂະໜາດຕາຕະລາງ", + "txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional Formatting", - "textAddress": "Address", - "textAfter": "After", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllCaps": "All Caps", - "textApplyAll": "Apply to All Slides", - "textAuto": "Auto", - "textBack": "Back", - "textBandedColumn": "Banded Column", - "textBandedRow": "Banded Row", - "textBefore": "Before", - "textBlack": "Through Black", - "textBorder": "Border", - "textBottom": "Bottom", - "textBottomLeft": "Bottom-Left", - "textBottomRight": "Bottom-Right", - "textBringToForeground": "Bring to Foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCaseSensitive": "Case Sensitive", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClock": "Clock", - "textClockwise": "Clockwise", - "textColor": "Color", - "textCounterclockwise": "Counterclockwise", - "textCover": "Cover", - "textCustomColor": "Custom Color", - "textDefault": "Selected text", - "textDelay": "Delay", - "textDeleteSlide": "Delete Slide", - "textDisplay": "Display", - "textDistanceFromText": "Distance From Text", - "textDistributeHorizontally": "Distribute Horizontally", - "textDistributeVertically": "Distribute Vertically", - "textDone": "Done", - "textDoubleStrikethrough": "Double Strikethrough", - "textDuplicateSlide": "Duplicate Slide", - "textDuration": "Duration", - "textEditLink": "Edit Link", - "textEffect": "Effect", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFade": "Fade", - "textFill": "Fill", - "textFinalMessage": "The end of slide preview. Click to exit.", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFirstColumn": "First Column", - "textFirstSlide": "First Slide", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textHeaderRow": "Header Row", - "textHighlight": "Highlight Results", - "textHighlightColor": "Highlight Color", - "textHorizontalIn": "Horizontal In", - "textHorizontalOut": "Horizontal Out", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textLastColumn": "Last Column", - "textLastSlide": "Last Slide", - "textLayout": "Layout", - "textLeft": "Left", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextSlide": "Next Slide", - "textNone": "None", - "textNoStyles": "No styles for this type of chart.", - "textNoTextFound": "Text not found", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumbers": "Numbers", - "textOpacity": "Opacity", - "textOptions": "Options", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", + "notcriticalErrorTitle": "ເຕືອນ", + "textActualSize": "ຂະໜາດແທ້ຈິງ", + "textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", + "textAdditional": "ເພີ່ມເຕີມ", + "textAdditionalFormatting": "ຈັດຮູບແບບເພີ່ມເຕີມ", + "textAddress": "ທີ່ຢູ່", + "textAfter": "ຫຼັງຈາກ", + "textAlign": "ຈັດແນວ", + "textAlignBottom": "ຈັດຕ່ຳແໜ່ງທາງດ້ານລຸ່ມ", + "textAlignCenter": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", + "textAlignLeft": "ຈັດຕຳແໜ່ງຕິດຊ້າຍ", + "textAlignMiddle": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", + "textAlignRight": "ຈັດຕຳແໜ່ງຕິດຂວາ", + "textAlignTop": "ຈັດຕຳແໜ່ງດ້ານເທິງ", + "textAllCaps": "ໂຕໃຫຍ່ທັງໝົດ", + "textApplyAll": "ນຳໃຊ້ກັບທຸກໆແຜ່ນສະໄລ້", + "textAuto": "ອັດຕະໂນມັດ", + "textAutomatic": "ອັດຕະໂນມັດ", + "textBack": "ກັບຄືນ", + "textBandedColumn": "ຮ່ວມກຸ່ມຖັນ", + "textBandedRow": "ຮ່ວມກຸ່ມແຖວ", + "textBefore": "ກ່ອນ", + "textBlack": "ຜ່ານສີດຳ", + "textBorder": "ຊາຍແດນ", + "textBottom": "ລຸ່ມສຸດ", + "textBottomLeft": "ດ້ານລຸ່ມເບື້ອງຊ້າຍ", + "textBottomRight": "ດ້ານລຸ່ມເບື້ອງຂວາ", + "textBringToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", + "textBullets": "ຂີດໜ້າ", + "textBulletsAndNumbers": "ຫົວຂໍ້ຍ່ອຍ & ຕົວເລກ", + "textCaseSensitive": "ກໍລະນີທີ່ສຳຄັນ", + "textCellMargins": "ຂອບເຂດຂອງແຊວ", + "textChart": "ແຜນຮູບວາດ", + "textClock": "ໂມງ", + "textClockwise": "ການໝຸນຂອງເຂັມໂມງ", + "textColor": "ສີ", + "textCounterclockwise": "ຕົງກັນຊ້າມກັບເຂັມໂມງ", + "textCover": "ໜ້າປົກ", + "textCustomColor": "ປະເພດ ຂອງສີ", + "textDefault": "ຂໍ້ຄວາມທີ່ເລືອກ", + "textDelay": "ລ້າຊ້າ", + "textDeleteSlide": "ລຶບສະໄລ", + "textDesign": "ອອກແບບ", + "textDisplay": "ສະແດງຜົນ", + "textDistanceFromText": "ໄລຍະຫ່າງຈາກຂໍ້ຄວາມ", + "textDistributeHorizontally": "ແຈກຢາຍຕາມແນວນອນ", + "textDistributeVertically": "ແຈກຢາຍແນວຕັ້ງ", + "textDone": "ສໍາເລັດ", + "textDoubleStrikethrough": "ຂີດທັບສອງຄັ້ງ", + "textDuplicateSlide": "ສຳເນົາ ສະໄລ", + "textDuration": "ໄລຍະ", + "textEditLink": "ແກ້ໄຂ ລີ້ງ", + "textEffect": "ຜົນ, ຜົນເສຍ", + "textEffects": "ຜົນ", + "textEmptyImgUrl": "ທ່ານຈໍາເປັນຕ້ອງລະບຸ URL ຮູບພາບ.", + "textExternalLink": "ລິງພາຍນອກ", + "textFade": "ຈ່າງລົງ", + "textFill": "ຕື່ມ", + "textFinalMessage": "ສິ້ນສຸດເບິ່ງພາບສະໄລ, ກົດອອກ", + "textFind": "ຄົ້ນຫາ", + "textFindAndReplace": "ຄົ້ນຫາແລະປ່ຽນແທນ", + "textFirstColumn": "ຖັນທໍາອິດ", + "textFirstSlide": "ສະໄລທຳອິດ", + "textFontColor": "ສີຂອງຕົວອັກສອນ", + "textFontColors": "ສີຕົວອັກສອນ", + "textFonts": "ຕົວອັກສອນ", + "textFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", + "textFromURL": "ຮູບພາບຈາກ URL", + "textHeaderRow": "ແຖວຫົວ", + "textHighlight": "ໄຮໄລ້ ຜົນ", + "textHighlightColor": "ທາສີໄຮໄລ້", + "textHorizontalIn": "ລວງນອນທາງໃນ", + "textHorizontalOut": "ລວງນອນທາງນອກ", + "textHyperlink": "ົໄຮເປີລີ້ງ", + "textImage": "ຮູບພາບ", + "textImageURL": "URL ຮູບພາບ", + "textLastColumn": "ຖັນສຸດທ້າຍ", + "textLastSlide": "ສະໄລ່ສຸດທ້າຍ", + "textLayout": "ແຜນຜັງ", + "textLeft": "ຊ້າຍ", + "textLetterSpacing": "ໄລຍະຫ່າງລະຫວ່າງຕົວອັກສອນ", + "textLineSpacing": "ໄລຍະຫ່າງລະຫວ່າງເສັ້ນ", + "textLink": "ລີ້ງ", + "textLinkSettings": "ການຕັ້ງຄ່າລີ້ງ", + "textLinkTo": "ເຊື່ອມຕໍ່ຫາ", + "textLinkType": "ປະເພດລີ້ງ", + "textMoveBackward": "ຍ້າຍໄປທາງຫຼັງ", + "textMoveForward": "ຍ້າຍໄປດ້ານໜ້າ", + "textNextSlide": "ພາບສະໄລທັດໄປ", + "textNone": "ບໍ່ມີ", + "textNoStyles": "ບໍ່ມີຮູບແບບສຳລັບແຜນວາດປະເພດນີ້.", + "textNoTextFound": "ບໍ່ພົບເນື້ອຫາ", + "textNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"", + "textNumbers": "ຕົວເລກ", + "textOk": "ຕົກລົງ", + "textOpacity": "ຄວາມເຂັ້ມ", + "textOptions": "ທາງເລືອກ", + "textPictureFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", + "textPictureFromURL": "ຮູບພາບຈາກ URL", + "textPreviousSlide": "ພາບສະໄລຜ່ານມາ", "textPt": "pt", - "textPush": "Push", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textReplaceImage": "Replace Image", - "textRight": "Right", - "textScreenTip": "Screen Tip", - "textSearch": "Search", - "textSec": "s", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textShape": "Shape", - "textSize": "Size", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textSmallCaps": "Small Caps", - "textSmoothly": "Smoothly", - "textSplit": "Split", - "textStartOnClick": "Start On Click", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textText": "Text", - "textTheme": "Theme", - "textTop": "Top", - "textTopLeft": "Top-Left", - "textTopRight": "Top-Right", - "textTotalRow": "Total Row", - "textTransition": "Transition", - "textType": "Type", - "textUnCover": "UnCover", - "textVerticalIn": "Vertical In", - "textVerticalOut": "Vertical Out", - "textWedge": "Wedge", - "textWipe": "Wipe", - "textZoom": "Zoom", - "textZoomIn": "Zoom In", - "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate", - "textTransitions": "Transitions", - "textDesign": "Design", - "textAutomatic": "Automatic", - "textOk": "Ok" + "textPush": "ດັນ, ຍູ້", + "textRemoveChart": "ລົບແຜນວາດ", + "textRemoveImage": "ລົບຮູບ", + "textRemoveLink": "ລົບລີ້ງ", + "textRemoveShape": "ລົບຮ່າງ", + "textRemoveTable": "ລົບຕາຕະລາງ", + "textReorder": "ຈັດລຽງລໍາດັບຄືນ", + "textReplace": "ປ່ຽນແທນ", + "textReplaceAll": "ປ່ຽນແທນທັງໝົດ", + "textReplaceImage": "ປ່ຽນແທນຮູບພາບ", + "textRight": "ຂວາ", + "textScreenTip": "ຄຳແນະນຳໃນໜ້າຈໍ", + "textSearch": "ຄົ້ນຫາ", + "textSec": "S", + "textSelectObjectToEdit": "ເລືອກຈຸດທີ່ຕ້ອງການເພື່ອແກ້ໄຂ", + "textSendToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", + "textShape": "ຮູບຮ່າງ", + "textSize": "ຂະໜາດ", + "textSlide": "ຮູບແບບສະໄລ້", + "textSlideInThisPresentation": "ພາບສະໄລ່ ໃນບົດນຳສະເໜີນີ້", + "textSlideNumber": "ຮູບແບບເລກສະໄລ້", + "textSmallCaps": "ໂຕອັກສອນນ້ອຍ", + "textSmoothly": "ຮູບແບບລາຍລື້ນ", + "textSplit": "ແຍກ", + "textStartOnClick": "ເລີ່ມຕົ້ນກົດ", + "textStrikethrough": "ຂີດຂ້າອອກ", + "textStyle": "ແບບ", + "textStyleOptions": "ທາງເລືອກ ປະເພດ", + "textSubscript": "ຕົວຫ້ອຍ", + "textSuperscript": "ຕົວຍົກ", + "textTable": "ຕາຕະລາງ", + "textText": "ເນື້ອຫາ", + "textTheme": "ຫົວຂໍ້", + "textTop": "ເບື້ອງເທີງ", + "textTopLeft": "ຂ້າງເທິງ ເບິື້ອງຊ້າຍ", + "textTopRight": "ຂ້າງເທິງເບື້ອງຂວາ", + "textTotalRow": "ຈໍານວນແຖວທັງໝົດ", + "textTransitions": "ການຫັນປ່ຽນ", + "textType": "ພິມ", + "textUnCover": "ເປີດເຜີຍ", + "textVerticalIn": "ລວງຕັ້ງດ້ານໃນ", + "textVerticalOut": "ລວງຕັ້ງງດ້ານນອກ", + "textWedge": "ລີ່ມ", + "textWipe": "ເຊັດ", + "textZoom": "ຂະຫຍາຍ ເຂົ້າ-ອອກ", + "textZoomIn": "ຊຸມເຂົ້າ", + "textZoomOut": "ຂະຫຍາຍອອກ", + "textZoomRotate": "ຂະຫຍາຍ ແລະ ໝຸນ" }, "Settings": { - "mniSlideStandard": "Standard (4:3)", - "mniSlideWide": "Widescreen (16:9)", - "textAbout": "About", - "textAddress": "address:", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCreated": "Created", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As...", - "textEmail": "email:", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textHelp": "Help", - "textHighlight": "Highlight Results", - "textInch": "Inch", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textNoTextFound": "Text not found", - "textOwner": "Owner", - "textPoint": "Point", - "textPoweredBy": "Powered By", - "textPresentationInfo": "Presentation Info", - "textPresentationSettings": "Presentation Settings", - "textPresentationTitle": "Presentation Title", - "textPrint": "Print", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textSearch": "Search", - "textSettings": "Settings", - "textShowNotification": "Show Notification", - "textSlideSize": "Slide Size", - "textSpellcheck": "Spell Checking", - "textSubject": "Subject", - "textTel": "tel:", - "textTitle": "Title", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textVersion": "Version", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", + "mniSlideStandard": "ມາດຕະຖານ (4:3)", + "mniSlideWide": "ຈໍກວ້າງ (16: 9)", + "textAbout": "ກ່ຽວກັບ", + "textAddress": "ທີ່ຢູ່:", + "textApplication": "ແອັບ", + "textApplicationSettings": "ການຕັ້ງຄ່າແອັບ", + "textAuthor": "ຜູ້ຂຽນ", + "textBack": "ກັບຄືນ", + "textCaseSensitive": "ກໍລະນີທີ່ສຳຄັນ", + "textCentimeter": "ເຊັນຕິເມັດ", + "textCollaboration": "ການຮ່ວມກັນ", + "textColorSchemes": "ໂທນສີ", + "textComment": "ຄໍາເຫັນ", + "textCreated": "ສ້າງ", + "textDarkTheme": "ຮູບແບບສີສັນມືດ", + "textDisableAll": "ປິດທັງໝົດ", + "textDisableAllMacrosWithNotification": "ປິດການໃຊ້ງານແຈ້ງເຕືອນທົ່ວໄປທັງໝົດ", + "textDisableAllMacrosWithoutNotification": "ປິດການໃຊ້ງານແຈ້ງເຕືອນທົວໄປທັງຫມົດໂດຍບໍ່ມີການແຈ້ງການ", + "textDone": "ສໍາເລັດ", + "textDownload": "ດາວໂຫຼດ", + "textDownloadAs": "ດາວໂຫຼດໂດຍ...", + "textEmail": "ອິເມວ", + "textEnableAll": "ເປີດທັງໝົດ", + "textEnableAllMacrosWithoutNotification": "ເປີດໃຊ້ແຈ້ງເຕືອນທົ່ວໄປໂດຍບໍ່ມີການແຈ້ງການ", + "textFind": "ຄົ້ນຫາ", + "textFindAndReplace": "ຄົ້ນຫາແລະປ່ຽນແທນ", + "textFindAndReplaceAll": "ຄົ້ນຫາ ແລະ ປ່ຽນແທນທັງໝົດ", + "textHelp": "ຊວ່ຍ", + "textHighlight": "ໄຮໄລ້ ຜົນ", + "textInch": "ນີ້ວ", + "textLastModified": "ການແກ້ໄຂຄັ້ງລ້າສຸດ", + "textLastModifiedBy": "ແກ້ໄຂຄັ້ງລ້າສຸດໂດຍ", + "textLoading": "ກໍາລັງດາວໂຫຼດ...", + "textLocation": "ສະຖານທີ", + "textMacrosSettings": "ການຕັ້ງຄ່າທົ່ວໄປ", + "textNoTextFound": "ບໍ່ພົບເນື້ອຫາ", + "textOwner": "ເຈົ້າຂອງ", + "textPoint": "ຈຸດ", + "textPoweredBy": "ສ້າງໂດຍ", + "textPresentationInfo": "ຂໍ້ມູນ ການນຳສະເໜີ", + "textPresentationSettings": "ການຕັ້ງຄ່ານຳສະເໜີ", + "textPresentationTitle": "ຫົວຂໍ້ການນຳສະເໜີ", + "textPrint": "ພິມ", + "textReplace": "ປ່ຽນແທນ", + "textReplaceAll": "ປ່ຽນແທນທັງໝົດ", + "textSearch": "ຄົ້ນຫາ", + "textSettings": "ການຕັ້ງຄ່າ", + "textShowNotification": "ສະແດງການແຈ້ງເຕືອນ", + "textSlideSize": "ຂະໜາດພາບສະໄລ", + "textSpellcheck": "ກວດກາການສະກົດຄໍາ", + "textSubject": "ເລື່ອງ", + "textTel": "ໂທ:", + "textTitle": "ຫົວຂໍ້", + "textUnitOfMeasurement": "ຫົວຫນ່ວຍວັດແທກ", + "textUploaded": "ອັບໂຫລດສຳເລັດ", + "textVersion": "ລຸ້ນ", + "txtScheme1": "ຫ້ອງການ", + "txtScheme10": "ເສັ້ນແບ່ງກາງ", + "txtScheme11": "ລົດໄຟຟ້າ", + "txtScheme12": "ໂມດູນ", + "txtScheme13": "ອຸດົມສົມບູນ", + "txtScheme14": "ໂອຣິເອລ", + "txtScheme15": "ເດີມ", + "txtScheme16": "ເຈ້ຍ", + "txtScheme17": "ເສັ້ນໝູນອ້ອມດວງຕາເວັນ", + "txtScheme18": "ເຕັກນິກ", + "txtScheme19": "ຍ່າງ", + "txtScheme2": "ໂທນສີເທົາ", + "txtScheme20": "ໃນເມືອງ", "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "textDarkTheme": "Dark Theme", - "textFeedback": "Feedback & Support" + "txtScheme22": "ຫ້ອງການໃໝ່", + "txtScheme3": "ເອເພັກສ", + "txtScheme4": "ມຸມມອງ", + "txtScheme5": "ພົນລະເມືອງ", + "txtScheme6": "ສຳມະໂນ", + "txtScheme7": "ຄວາມເທົ່າທຽມກັນ", + "txtScheme8": "ຂະບວນການ", + "textFeedback": "Feedback & Support", + "txtScheme9": "ໂຮງຫລໍ່" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/pt-PT.json b/apps/presentationeditor/mobile/locale/pt-PT.json new file mode 100644 index 000000000..3a82e9de6 --- /dev/null +++ b/apps/presentationeditor/mobile/locale/pt-PT.json @@ -0,0 +1,479 @@ +{ + "About": { + "textAbout": "Acerca", + "textAddress": "Endereço", + "textBack": "Recuar", + "textEmail": "Email", + "textPoweredBy": "Desenvolvido por", + "textTel": "Tel", + "textVersion": "Versão" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Aviso", + "textAddComment": "Adicionar comentário", + "textAddReply": "Adicionar resposta", + "textBack": "Voltar", + "textCancel": "Cancelar", + "textCollaboration": "Colaboração", + "textComments": "Comentários", + "textDeleteComment": "Eliminar comentário", + "textDeleteReply": "Eliminar resposta", + "textDone": "Concluído", + "textEdit": "Editar", + "textEditComment": "Editar comentário", + "textEditReply": "Editar resposta", + "textEditUser": "Utilizadores que estão a editar o ficheiro:", + "textMessageDeleteComment": "Tem a certeza de que deseja eliminar este comentário?", + "textMessageDeleteReply": "Tem a certeza de que deseja eliminar esta resposta?", + "textNoComments": "Este documento não contém comentários", + "textOk": "Ok", + "textReopen": "Reabrir", + "textResolve": "Resolver", + "textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.", + "textUsers": "Utilizadores" + }, + "HighlightColorPalette": { + "textNoFill": "Sem preenchimento" + }, + "ThemeColorPalette": { + "textCustomColors": "Cores personalizadas", + "textStandartColors": "Cores padrão", + "textThemeColors": "Cores do tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "As ações copiar, cortar e colar através do menu de contexto apenas serão executadas no documento atual.", + "menuAddComment": "Adicionar comentário", + "menuAddLink": "Adicionar ligação", + "menuCancel": "Cancelar", + "menuDelete": "Eliminar", + "menuDeleteTable": "Eliminar tabela", + "menuEdit": "Editar", + "menuMerge": "Mesclar", + "menuMore": "Mais", + "menuOpenLink": "Abrir ligação", + "menuSplit": "Dividir", + "menuViewComment": "Ver comentário", + "textColumns": "Colunas", + "textCopyCutPasteActions": "Ações copiar, cortar e colar", + "textDoNotShowAgain": "Não mostrar novamente", + "textRows": "Linhas" + }, + "Controller": { + "Main": { + "advDRMOptions": "Ficheiro protegido", + "advDRMPassword": "Senha", + "closeButtonText": "Fechar ficheiro", + "criticalErrorTitle": "Erro", + "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
    Por favor, contacte o seu administrador.", + "errorOpensource": "Utilizando a versão comunitária gratuita, pode abrir documentos apenas para visualização. Para aceder aos editores da web móvel, é necessária uma licença comercial.", + "errorProcessSaveResult": "Salvamento falhou.", + "errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", + "errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", + "leavePageText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.", + "notcriticalErrorTitle": "Aviso", + "SDK": { + "Chart": "Gráfico", + "Click to add first slide": "Clique para adicionar o primeiro diapositivo", + "Click to add notes": "Clique para adicionar notas", + "ClipArt": "Clip Art", + "Date and time": "Data e Hora", + "Diagram": "Diagrama", + "Diagram Title": "Título do gráfico", + "Footer": "Rodapé", + "Header": "Cabeçalho", + "Image": "Imagem", + "Loading": "Carregamento", + "Media": "Multimédia", + "None": "Nenhum", + "Picture": "Imagem", + "Series": "Série", + "Slide number": "Número do diapositivo", + "Slide subtitle": "Legenda do diapositivo", + "Slide text": "Texto do diapositivo", + "Slide title": "Título do diapositivo", + "Table": "Tabela", + "X Axis": "X Eixo XAS", + "Y Axis": "Eixo Y", + "Your text here": "O seu texto aqui" + }, + "textAnonymous": "Anónimo", + "textBuyNow": "Visitar website", + "textClose": "Fechar", + "textContactUs": "Contacte a equipa comercial", + "textCustomLoader": "Desculpe, não tem o direito de mudar o carregador. Por favor, contacte o nosso departamento de vendas para obter um orçamento.", + "textGuest": "Visitante", + "textHasMacros": "O ficheiro contém macros automáticas.
    Deseja executar as macros?", + "textNo": "Não", + "textNoLicenseTitle": "Limite de licença atingido", + "textNoTextFound": "Texto não encontrado", + "textOpenFile": "Introduza a palavra-passe para abrir o ficheiro", + "textPaidFeature": "Funcionalidade paga", + "textRemember": "Memorizar a minha escolha", + "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", + "textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", + "textYes": "Sim", + "titleLicenseExp": "Licença expirada", + "titleServerVersion": "Editor atualizado", + "titleUpdateVersion": "Versão alterada", + "txtIncorrectPwd": "A Palavra-passe está incorreta", + "txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta", + "warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte o seu administrador para obter mais informações.", + "warnLicenseExp": "A sua licença expirou. Por favor, atualize-a e atualize a página.", + "warnLicenseLimitedNoAccess": "A licença expirou. Não tem acesso à funcionalidade de edição de documentos. Por favor contacte o seu administrador.", + "warnLicenseLimitedRenewed": "A licença precisa ed ser renovada. Tem acesso limitado à funcionalidade de edição de documentos, .
    Por favor contacte o seu administrador para ter acesso total", + "warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", + "warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.", + "warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", + "warnProcessRightsChange": "Não tem autorização para editar este ficheiro." + } + }, + "Error": { + "convertationTimeoutText": "Tempo limite de conversão excedido.", + "criticalErrorExtText": "Clique em \"OK\" para voltar para a lista de documentos.", + "criticalErrorTitle": "Erro", + "downloadErrorText": "Falha ao descarregar.", + "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
    Por favor, contacte o seu administrador.", + "errorBadImageUrl": "O URL da imagem está incorreto", + "errorConnectToServer": "Não é possível guardar este documento. Verifique as definições de ligação ou entre em contato com o administrador.
    Ao clicar no botão 'OK', será solicitado a descarregar o documento.", + "errorDatabaseConnection": "Erro externo.
    Erro de ligação à base de dados. Contacte o suporte.", + "errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", + "errorDataRange": "Intervalo de dados incorreto.", + "errorDefaultMessage": "Código de erro: %1", + "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
    Use a opção 'Descarregar' para guardar a cópia de segurança do ficheiro localmente.", + "errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abri-lo. ", + "errorFileSizeExceed": "O tamanho do ficheiro excede a limitação máxima do seu servidor.
    Por favor, contacte o seu administrador para obter mais informações.", + "errorKeyEncrypt": "Descritor de chave desconhecido", + "errorKeyExpire": "Descritor de chave expirado", + "errorLoadingFont": "Tipos de letra não carregados.
    Por favor contacte o administrador do servidor de documentos.", + "errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, volte a carregar a página.", + "errorSessionIdle": "Há muito tempo que o documento não é editado. Por favor, volte a carregar a página.", + "errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, volte a carregar a página.", + "errorStockChart": "Ordem das linhas incorreta. Para construir um gráfico de cotações, introduza os dados na folha com a seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "errorUpdateVersionOnDisconnect": "A ligação com a Internet foi restaurada e a versão do ficheiro foi alterada.
    Antes de continuar a trabalhar, descarregue o ficheiro ou copie o seu conteúdo para garantir que nada seja perdido e depois recarregue esta página.", + "errorUserDrop": "O arquivo não pode ser acessado agora.", + "errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", + "errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será
    possível descarregar ou imprimir o documento se a ligação não for restaurada e a página recarregada.", + "notcriticalErrorTitle": "Aviso", + "openErrorText": "Ocorreu um erro ao abrir o ficheiro", + "saveErrorText": "Ocorreu um erro ao guardar o ficheiro", + "scriptLoadError": "A ligação está demasiado lenta, não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ", + "splitDividerErrorText": "O número de linhas tem que ser um divisor de %1", + "splitMaxColsErrorText": "O número de colunas tem que ser inferior a %1", + "splitMaxRowsErrorText": "O número de linhas tem que ser inferior a %1", + "unknownErrorText": "Erro desconhecido.", + "uploadImageExtMessage": "Formato de imagem desconhecido.", + "uploadImageFileCountMessage": "Nenhuma imagem carregada.", + "uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Carregando dados...", + "applyChangesTitleText": "Carregando dados", + "downloadTextText": "A descarregar documento...", + "downloadTitleText": "A descarregar documento", + "loadFontsTextText": "Carregando dados...", + "loadFontsTitleText": "Carregando dados", + "loadFontTextText": "Carregando dados...", + "loadFontTitleText": "Carregando dados", + "loadImagesTextText": "Carregando imagens...", + "loadImagesTitleText": "Carregando imagens", + "loadImageTextText": "Carregando imagem...", + "loadImageTitleText": "Carregando imagem", + "loadingDocumentTextText": "Carregando documento...", + "loadingDocumentTitleText": "Carregando documento", + "loadThemeTextText": "Carregando temas...", + "loadThemeTitleText": "Carregando tema", + "openTextText": "Abrindo documento...", + "openTitleText": "Abrindo documento", + "printTextText": "Imprimindo documento...", + "printTitleText": "Imprimindo documento", + "savePreparingText": "Preparando para salvar", + "savePreparingTitle": "A preparar para guardar. Por favor aguarde...", + "saveTextText": "Salvando documento...", + "saveTitleText": "Salvando documento", + "textLoadingDocument": "Carregando documento", + "txtEditingMode": "Definir modo de edição...", + "uploadImageTextText": "Carregando imagem...", + "uploadImageTitleText": "Carregando imagem", + "waitText": "Por favor aguarde..." + }, + "Toolbar": { + "dlgLeaveMsgText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.", + "dlgLeaveTitleText": "Saiu da aplicação", + "leaveButtonText": "Sair da página", + "stayButtonText": "Ficar na página" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Aviso", + "textAddLink": "Adicionar ligação", + "textAddress": "Endereço", + "textBack": "Voltar", + "textCancel": "Cancelar", + "textColumns": "Colunas", + "textComment": "Comentário", + "textDefault": "Texto selecionado", + "textDisplay": "Mostrar", + "textEmptyImgUrl": "É necessário especificar o URL da imagem.", + "textExternalLink": "Ligação externa", + "textFirstSlide": "Primeiro diapositivo", + "textImage": "Imagem", + "textImageURL": "URL da imagem", + "textInsert": "Inserir", + "textInsertImage": "Inserir imagem", + "textLastSlide": "Último diapositivo", + "textLink": "Ligação", + "textLinkSettings": "Definições de ligação", + "textLinkTo": "Ligação a", + "textLinkType": "Tipo de ligação", + "textNextSlide": "Diapositivo seguinte", + "textOk": "Ok", + "textOther": "Outros", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem de um URL", + "textPreviousSlide": "Diapositivo anterior", + "textRows": "Linhas", + "textScreenTip": "Dica no ecrã", + "textShape": "Forma", + "textSlide": "Diapositivo", + "textSlideInThisPresentation": "Diapositivo nesta apresentação", + "textSlideNumber": "Número do diapositivo", + "textTable": "Tabela", + "textTableSize": "Tamanho da tabela", + "txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Aviso", + "textActualSize": "Tamanho real", + "textAddCustomColor": "Adicionar cor personalizada", + "textAdditional": "Adicional", + "textAdditionalFormatting": "Formatação adicional", + "textAddress": "Endereço", + "textAfter": "Depois", + "textAlign": "Alinhar", + "textAlignBottom": "Alinhar à parte inferior", + "textAlignCenter": "Alinhar ao centro", + "textAlignLeft": "Alinhar à esquerda", + "textAlignMiddle": "Alinhar ao meio", + "textAlignRight": "Alinhar à direita", + "textAlignTop": "Alinhar à parte superior", + "textAllCaps": "Tudo em maiúsculas", + "textApplyAll": "Aplicar a todos os diapositivos", + "textAuto": "Automático", + "textAutomatic": "Automático", + "textBack": "Voltar", + "textBandedColumn": "Diferenciação de colunas", + "textBandedRow": "Diferenciação de linhas", + "textBefore": "Antes", + "textBlack": "Através preto", + "textBorder": "Borda", + "textBottom": "Inferior", + "textBottomLeft": "Inferior esquerdo", + "textBottomRight": "Inferior direito", + "textBringToForeground": "Trazer para primeiro plano", + "textBullets": "Marcadores", + "textBulletsAndNumbers": "Marcas e numeração", + "textCaseSensitive": "Maiúsculas e Minúsculas", + "textCellMargins": "Margens da célula", + "textChart": "Gráfico", + "textClock": "Relógio", + "textClockwise": "Sentido horário", + "textColor": "Cor", + "textCounterclockwise": "Sentido anti-horário", + "textCover": "Capa", + "textCustomColor": "Cor personalizada", + "textDefault": "Texto selecionado", + "textDelay": "Atraso", + "textDeleteSlide": "Eliminar diapositivo", + "textDesign": "Design", + "textDisplay": "Mostrar", + "textDistanceFromText": "Distância do texto", + "textDistributeHorizontally": "Distribuir horizontalmente", + "textDistributeVertically": "Distribuir verticalmente", + "textDone": "Concluído", + "textDoubleStrikethrough": "Duplo rasurado", + "textDuplicateSlide": "Duplicar diapositivo", + "textDuration": "Duração", + "textEditLink": "Editar ligação", + "textEffect": "Efeito", + "textEffects": "Efeitos", + "textEmptyImgUrl": "É necessário especificar o URL da imagem.", + "textExternalLink": "Ligação externa", + "textFade": "Esmaecer", + "textFill": "Preencher", + "textFinalMessage": "Fim da pré-visualização de slide. Clique para sair.", + "textFind": "Localizar", + "textFindAndReplace": "Localizar e substituir", + "textFirstColumn": "Primeira coluna", + "textFirstSlide": "Primeiro diapositivo", + "textFontColor": "Cor do tipo de letra", + "textFontColors": "Cores do tipo de letra", + "textFonts": "Tipos de letra", + "textFromLibrary": "Imagem da biblioteca", + "textFromURL": "Imagem de um URL", + "textHeaderRow": "Linha de cabeçalho", + "textHighlight": "Destacar resultados", + "textHighlightColor": "Cor de destaque", + "textHorizontalIn": "Horizontal para dentro", + "textHorizontalOut": "Horizontal para fora", + "textHyperlink": "Hiperligação", + "textImage": "Imagem", + "textImageURL": "URL da imagem", + "textLastColumn": "Última coluna", + "textLastSlide": "Último diapositivo", + "textLayout": "Disposição", + "textLeft": "Esquerda", + "textLetterSpacing": "Espaçamento entre letras", + "textLineSpacing": "Espaçamento entre linhas", + "textLink": "Ligação", + "textLinkSettings": "Definições de ligação", + "textLinkTo": "Ligação a", + "textLinkType": "Tipo de ligação", + "textMoveBackward": "Mover para trás", + "textMoveForward": "Mover para frente", + "textNextSlide": "Diapositivo seguinte", + "textNone": "Nenhum", + "textNoStyles": "Sem estilos para este tipo de gráficos.", + "textNoTextFound": "Texto não encontrado", + "textNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", + "textNumbers": "Números", + "textOk": "Ok", + "textOpacity": "Opacidade", + "textOptions": "Opções", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem de um URL", + "textPreviousSlide": "Diapositivo anterior", + "textPt": "pt", + "textPush": "Empurrar", + "textRemoveChart": "Remover gráfico", + "textRemoveImage": "Remover imagem", + "textRemoveLink": "Remover ligação", + "textRemoveShape": "Remover forma", + "textRemoveTable": "Remover tabela", + "textReorder": "Reordenar", + "textReplace": "Substituir", + "textReplaceAll": "Substituir tudo", + "textReplaceImage": "Substituir imagem", + "textRight": "Direita", + "textScreenTip": "Dica no ecrã", + "textSearch": "Pesquisar", + "textSec": "s", + "textSelectObjectToEdit": "Selecionar objeto para editar", + "textSendToBackground": "Enviar para plano de fundo", + "textShape": "Forma", + "textSize": "Tamanho", + "textSlide": "Diapositivo", + "textSlideInThisPresentation": "Diapositivo nesta apresentação", + "textSlideNumber": "Número do diapositivo", + "textSmallCaps": "Versaletes", + "textSmoothly": "Suavemente", + "textSplit": "Dividir", + "textStartOnClick": "Iniciar ao clicar", + "textStrikethrough": "Rasurado", + "textStyle": "Estilo", + "textStyleOptions": "Opções de estilo", + "textSubscript": "Subscrito", + "textSuperscript": "Sobrescrito", + "textTable": "Tabela", + "textText": "Texto", + "textTheme": "Tema", + "textTop": "Parte superior", + "textTopLeft": "Parte superior esquerda", + "textTopRight": "Parte superior direita", + "textTotalRow": "Total de linhas", + "textTransitions": "Transições", + "textType": "Tipo", + "textUnCover": "Descobrir", + "textVerticalIn": "Vertical para dentro", + "textVerticalOut": "Vertical para fora", + "textWedge": "Triangular", + "textWipe": "Revelar", + "textZoom": "Zoom", + "textZoomIn": "Ampliar", + "textZoomOut": "Reduzir", + "textZoomRotate": "Zoom e Rotação" + }, + "Settings": { + "mniSlideStandard": "Padrão (4:3)", + "mniSlideWide": "Ecrã panorâmico (16:9)", + "textAbout": "Acerca", + "textAddress": "endereço:", + "textApplication": "Aplicação", + "textApplicationSettings": "Definições da aplicação", + "textAuthor": "Autor", + "textBack": "Voltar", + "textCaseSensitive": "Maiúsculas e Minúsculas", + "textCentimeter": "Centímetro", + "textCollaboration": "Colaboração", + "textColorSchemes": "Esquemas de cor", + "textComment": "Comentário", + "textCreated": "Criado", + "textDarkTheme": "Tema Escuro", + "textDisableAll": "Desativar tudo", + "textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação", + "textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação", + "textDone": "Concluído", + "textDownload": "Descarregar", + "textDownloadAs": "Descarregar como...", + "textEmail": "e-mail:", + "textEnableAll": "Ativar tudo", + "textEnableAllMacrosWithoutNotification": "Ativar todas as macros sem notificação", + "textFind": "Localizar", + "textFindAndReplace": "Localizar e substituir", + "textFindAndReplaceAll": "Localizar e substituir tudo", + "textHelp": "Ajuda", + "textHighlight": "Destacar resultados", + "textInch": "Polegada", + "textLastModified": "Última modificação", + "textLastModifiedBy": "Última modificação por", + "textLoading": "Carregando...", + "textLocation": "Localização", + "textMacrosSettings": "Definições de macros", + "textNoTextFound": "Texto não encontrado", + "textOwner": "Proprietário", + "textPoint": "Ponto", + "textPoweredBy": "Desenvolvido por", + "textPresentationInfo": "Informação da Apresentação", + "textPresentationSettings": "Definições da apresentação", + "textPresentationTitle": "Título da Apresentação", + "textPrint": "Imprimir", + "textReplace": "Substituir", + "textReplaceAll": "Substituir tudo", + "textSearch": "Pesquisar", + "textSettings": "Configurações", + "textShowNotification": "Mostrar notificação", + "textSlideSize": "Tamanho do diapositivo", + "textSpellcheck": "Verificação ortográfica", + "textSubject": "Assunto", + "textTel": "tel:", + "textTitle": "Título", + "textUnitOfMeasurement": "Unidade de medida", + "textUploaded": "Carregado", + "textVersion": "Versão", + "txtScheme1": "Office", + "txtScheme10": "Mediana", + "txtScheme11": "Metro", + "txtScheme12": "Módulo", + "txtScheme13": "Opulento", + "txtScheme14": "Balcão envidraçado", + "txtScheme15": "Origem", + "txtScheme16": "Papel", + "txtScheme17": "Solstício", + "txtScheme18": "Técnica", + "txtScheme19": "Viagem", + "txtScheme2": "Escala de cinza", + "txtScheme20": "Urbano", + "txtScheme21": "Verve", + "txtScheme22": "Novo Escritório", + "txtScheme3": "Ápice", + "txtScheme4": "Aspecto", + "txtScheme5": "Cívico", + "txtScheme6": "Concurso", + "txtScheme7": "Equidade", + "txtScheme8": "Fluxo", + "txtScheme9": "Fundição", + "textFeedback": "Feedback & Support" + } + } +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index c35343b89..6d6ab4cb6 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -1,6 +1,6 @@ { "About": { - "textAbout": "Despre", + "textAbout": "Informații", "textAddress": "Adresă", "textBack": "Înapoi", "textEmail": "Email", @@ -397,7 +397,7 @@ "Settings": { "mniSlideStandard": "Standard (4:3)", "mniSlideWide": "Ecran lat (16:9)", - "textAbout": "Despre", + "textAbout": "Informații", "textAddress": "adresă:", "textApplication": "Aplicația", "textApplicationSettings": "Setări Aplicație", diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index 263ce07ec..321e45f60 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/mobile/locale/sk.json @@ -1,436 +1,113 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", + "textAbout": "O aplikácii", + "textAddress": "Adresa", + "textBack": "Späť", "textEmail": "Email", - "textPoweredBy": "Powered By", + "textPoweredBy": "Poháňaný ", "textTel": "Tel", - "textVersion": "Version" + "textVersion": "Verzia" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", - "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" - }, - "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "notcriticalErrorTitle": "Upozornenie", + "textAddComment": "Pridať komentár", + "textAddReply": "Pridať odpoveď", + "textBack": "Späť", + "textCancel": "Zrušiť", + "textCollaboration": "Spolupráca", + "textComments": "Komentáre", + "textDeleteComment": "Vymazať komentár", + "textDeleteReply": "Vymazať odpoveď", + "textDone": "Hotovo", + "textEdit": "Upraviť", + "textEditComment": "Upraviť komentár", + "textEditReply": "Upraviť odpoveď", + "textEditUser": "Používatelia, ktorí súbor práve upravujú:", + "textMessageDeleteComment": "Naozaj chcete zmazať tento komentár?", + "textMessageDeleteReply": "Naozaj chcete zmazať túto odpoveď?", + "textNoComments": "Tento dokument neobsahuje komentáre", + "textOk": "OK", + "textReopen": "Znovu otvoriť", + "textResolve": "Vyriešiť", + "textTryUndoRedo": "Funkcia Späť/Znova sú vypnuté pre rýchli režim spolupráce. ", + "textUsers": "Používatelia" }, "HighlightColorPalette": { - "textNoFill": "No Fill" + "textNoFill": "Bez výplne" + }, + "ThemeColorPalette": { + "textCustomColors": "Vlastné farby", + "textStandartColors": "Štandardné farby", + "textThemeColors": "Farebné témy" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuDelete": "Delete", - "menuDeleteTable": "Delete Table", - "menuEdit": "Edit", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuSplit": "Split", - "menuViewComment": "View Comment", - "textColumns": "Columns", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "textRows": "Rows" + "errorCopyCutPaste": "Akcie kopírovania, vystrihovania a vkladania pomocou kontextovej ponuky sa budú vykonávať iba v práve otvorenom súbore.", + "menuAddComment": "Pridať komentár", + "menuAddLink": "Pridať odkaz", + "menuCancel": "Zrušiť", + "menuDelete": "Odstrániť", + "menuDeleteTable": "Odstrániť tabuľku", + "menuEdit": "Upraviť", + "menuMerge": "Zlúčiť", + "menuMore": "Viac", + "menuOpenLink": "Otvoriť odkaz", + "menuSplit": "Rozdeliť", + "menuViewComment": "Zobraziť komentár", + "textColumns": "Stĺpce", + "textCopyCutPasteActions": "Akcia kopírovať, vystrihnúť a prilepiť", + "textDoNotShowAgain": "Nezobrazovať znova", + "textRows": "Riadky" }, "Controller": { "Main": { - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", - "errorProcessSaveResult": "Saving failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "advDRMOptions": "Chránený súbor", + "advDRMPassword": "Heslo", + "closeButtonText": "Zatvoriť súbor", + "criticalErrorTitle": "Chyba", + "errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
    Kontaktujte svojho správcu.", + "errorOpensource": "Pomocou bezplatnej komunitnej verzie môžete otvárať dokumenty len na prezeranie. Na prístup k editorom mobilného webu je potrebná komerčná licencia.", + "errorProcessSaveResult": "Ukladanie zlyhalo.", + "errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.", + "notcriticalErrorTitle": "Upozornenie", "SDK": { - "Chart": "Chart", - "Click to add first slide": "Click to add first slide", - "Click to add notes": "Click to add notes", - "ClipArt": "Clip Art", - "Date and time": "Date and time", + "Chart": "Graf", + "Click to add first slide": "Kliknutím pridáte prvú snímku", + "Click to add notes": "Kliknutím pridáte poznámky", + "ClipArt": "Klipart", + "Date and time": "Dátum a čas", "Diagram": "Diagram", - "Diagram Title": "Chart Title", - "Footer": "Footer", - "Header": "Header", - "Image": "Image", - "Loading": "Loading", - "Media": "Media", - "None": "None", - "Picture": "Picture", - "Series": "Series", - "Slide number": "Slide number", - "Slide subtitle": "Slide subtitle", - "Slide text": "Slide text", - "Slide title": "Slide title", - "Table": "Table", - "X Axis": "X Axis XAS", - "Y Axis": "Y Axis", - "Your text here": "Your text here" + "Diagram Title": "Názov grafu", + "Footer": "Päta stránky", + "Header": "Hlavička", + "Image": "Obrázok", + "Loading": "Nahrávanie", + "Media": "Médiá ", + "None": "žiadne", + "Picture": "Obrázok", + "Series": "Rady", + "Slide number": "Číslo snímky", + "Slide subtitle": "Podtitul snímku", + "Slide text": "Text snímku", + "Slide title": "Názov snímku", + "Table": "Tabuľka", + "X Axis": "Os X (XAS)", + "Y Axis": "Os Y", + "Your text here": "Tu napíšte svoj text" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textOpenFile": "Enter a password to open the file", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleLicenseExp": "License expired", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", - "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file.", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found" - } - }, - "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", - "errorBadImageUrl": "Image url is incorrect", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", - "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "splitDividerErrorText": "The number of rows must be a divisor of %1", - "splitMaxColsErrorText": "The number of columns must be less than %1", - "splitMaxRowsErrorText": "The number of rows must be less than %1", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
    Please contact your Document Server administrator." - }, - "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "loadThemeTextText": "Loading theme...", - "loadThemeTitleText": "Loading Theme", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." - }, - "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this page", - "stayButtonText": "Stay on this Page" - }, - "View": { - "Add": { - "notcriticalErrorTitle": "Warning", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textColumns": "Columns", - "textComment": "Comment", - "textDefault": "Selected text", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFirstSlide": "First Slide", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textLastSlide": "Last Slide", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textNextSlide": "Next Slide", - "textOther": "Other", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", - "textRows": "Rows", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textTable": "Table", - "textTableSize": "Table Size", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textOk": "Ok" - }, - "Edit": { - "notcriticalErrorTitle": "Warning", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAdditional": "Additional", - "textAdditionalFormatting": "Additional Formatting", - "textAddress": "Address", - "textAfter": "After", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllCaps": "All Caps", - "textApplyAll": "Apply to All Slides", - "textAuto": "Auto", - "textBack": "Back", - "textBandedColumn": "Banded Column", - "textBandedRow": "Banded Row", - "textBefore": "Before", - "textBlack": "Through Black", - "textBorder": "Border", - "textBottom": "Bottom", - "textBottomLeft": "Bottom-Left", - "textBottomRight": "Bottom-Right", - "textBringToForeground": "Bring to Foreground", - "textBullets": "Bullets", - "textBulletsAndNumbers": "Bullets & Numbers", - "textCaseSensitive": "Case Sensitive", - "textCellMargins": "Cell Margins", - "textChart": "Chart", - "textClock": "Clock", - "textClockwise": "Clockwise", - "textColor": "Color", - "textCounterclockwise": "Counterclockwise", - "textCover": "Cover", - "textCustomColor": "Custom Color", - "textDefault": "Selected text", - "textDelay": "Delay", - "textDeleteSlide": "Delete Slide", - "textDisplay": "Display", - "textDistanceFromText": "Distance From Text", - "textDistributeHorizontally": "Distribute Horizontally", - "textDistributeVertically": "Distribute Vertically", - "textDone": "Done", - "textDoubleStrikethrough": "Double Strikethrough", - "textDuplicateSlide": "Duplicate Slide", - "textDuration": "Duration", - "textEditLink": "Edit Link", - "textEffect": "Effect", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFade": "Fade", - "textFill": "Fill", - "textFinalMessage": "The end of slide preview. Click to exit.", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFirstColumn": "First Column", - "textFirstSlide": "First Slide", - "textFontColor": "Font Color", - "textFontColors": "Font Colors", - "textFonts": "Fonts", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textHeaderRow": "Header Row", - "textHighlight": "Highlight Results", - "textHighlightColor": "Highlight Color", - "textHorizontalIn": "Horizontal In", - "textHorizontalOut": "Horizontal Out", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textLastColumn": "Last Column", - "textLastSlide": "Last Slide", - "textLayout": "Layout", - "textLeft": "Left", - "textLetterSpacing": "Letter Spacing", - "textLineSpacing": "Line Spacing", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkTo": "Link to", - "textLinkType": "Link Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextSlide": "Next Slide", - "textNone": "None", - "textNoStyles": "No styles for this type of chart.", - "textNoTextFound": "Text not found", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumbers": "Numbers", - "textOpacity": "Opacity", - "textOptions": "Options", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPreviousSlide": "Previous Slide", - "textPt": "pt", - "textPush": "Push", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textRemoveTable": "Remove Table", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textReplaceImage": "Replace Image", - "textRight": "Right", - "textScreenTip": "Screen Tip", - "textSearch": "Search", - "textSec": "s", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textShape": "Shape", - "textSize": "Size", - "textSlide": "Slide", - "textSlideInThisPresentation": "Slide in this Presentation", - "textSlideNumber": "Slide Number", - "textSmallCaps": "Small Caps", - "textSmoothly": "Smoothly", - "textSplit": "Split", - "textStartOnClick": "Start On Click", - "textStrikethrough": "Strikethrough", - "textStyle": "Style", - "textStyleOptions": "Style Options", - "textSubscript": "Subscript", - "textSuperscript": "Superscript", - "textTable": "Table", - "textText": "Text", - "textTheme": "Theme", - "textTop": "Top", - "textTopLeft": "Top-Left", - "textTopRight": "Top-Right", - "textTotalRow": "Total Row", - "textTransition": "Transition", - "textType": "Type", - "textUnCover": "UnCover", - "textVerticalIn": "Vertical In", - "textVerticalOut": "Vertical Out", - "textWedge": "Wedge", - "textWipe": "Wipe", - "textZoom": "Zoom", - "textZoomIn": "Zoom In", - "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate", - "textTransitions": "Transitions", - "textDesign": "Design", - "textAutomatic": "Automatic", - "textOk": "Ok" - }, - "Settings": { - "mniSlideStandard": "Standard (4:3)", - "mniSlideWide": "Widescreen (16:9)", - "textAbout": "About", - "textAddress": "address:", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textCaseSensitive": "Case Sensitive", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCreated": "Created", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As...", - "textEmail": "email:", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textHelp": "Help", - "textHighlight": "Highlight Results", - "textInch": "Inch", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLoading": "Loading...", - "textLocation": "Location", - "textMacrosSettings": "Macros Settings", - "textNoTextFound": "Text not found", + "textAnonymous": "Anonymný", + "textBuyNow": "Navštíviť webovú stránku", + "textClose": "Zatvoriť", + "textContactUs": "Kontaktujte predajcu", + "textCustomLoader": "Ľutujeme, nemáte nárok na výmenu zavádzača. Pre získanie cenovej ponuky kontaktujte prosím naše obchodné oddelenie.", + "textGuest": "Návštevník", + "textHasMacros": "Súbor obsahuje automatické makrá.
    Naozaj chcete makra spustiť?", + "textNo": "Nie", + "textNoLicenseTitle": "Bol dosiahnutý limit licencie", + "textNoTextFound": "Text nebol nájdený", "textOwner": "Owner", "textPoint": "Point", "textPoweredBy": "Powered By", @@ -474,6 +151,372 @@ "txtScheme8": "Flow", "txtScheme9": "Foundry", "textDarkTheme": "Dark Theme", + "textFeedback": "Feedback & Support", + "textOpenFile": "Zadajte heslo na otvorenie súboru", + "textPaidFeature": "Platená funkcia", + "textRemember": "Zapamätaj si moju voľbu", + "textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.", + "textReplaceSuccess": "Vyhľadávanie bolo uskutočnené. Nahradené udalosti: {0}", + "textYes": "Áno", + "titleLicenseExp": "Platnosť licencie uplynula", + "titleServerVersion": "Editor bol aktualizovaný", + "titleUpdateVersion": "Verzia bola zmenená", + "txtIncorrectPwd": "Heslo je chybné ", + "txtProtected": "Akonáhle vložíte heslo a otvoríte súbor, terajšie heslo sa zresetuje.", + "warnLicenseExceeded": "Dosiahli ste limit pre simultánne pripojenia k %1 editorom. Tento dokument sa otvorí iba na prezeranie. Ak sa chcete dozvedieť viac, kontaktujte svojho správcu.", + "warnLicenseExp": "Platnosť vašej licencie vypršala. Aktualizujte ho a obnovte stránku.", + "warnLicenseLimitedNoAccess": "Platnosť licencie vypršala. Nemáte prístup k funkciám úpravy dokumentov. Kontaktujte svojho správcu.", + "warnLicenseLimitedRenewed": "Licenciu je potrebné obnoviť. Máte obmedzený prístup k funkciám úpravy dokumentov.
    Ak chcete získať úplný prístup, kontaktujte svojho správcu", + "warnLicenseUsersExceeded": "Dosiahli ste limit %1 editora v režime spolupráce na úpravách. Ohľadne podrobnosti sa obráťte na svojho správcu. ", + "warnNoLicense": "Dosiahli ste limit pre simultánne pripojenia k %1 editorom. Tento dokument sa otvorí iba na prezeranie. Kontaktujte predajný tím %1 pre osobné podmienky inovácie.", + "warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", + "warnProcessRightsChange": "Nemáte povolenie na úpravu súboru." + } + }, + "Error": { + "convertationTimeoutText": "Prekročený čas konverzie.", + "criticalErrorExtText": "Stlačením tlačidla „OK“ sa vrátite do zoznamu dokumentov.", + "criticalErrorTitle": "Chyba", + "downloadErrorText": "Sťahovanie zlyhalo.", + "errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
    Kontaktujte svojho správcu.", + "errorBadImageUrl": "Adresa URL obrázku je nesprávna", + "errorConnectToServer": "Tento dokument nie je možné uložiť. Skontrolujte nastavenia pripojenia alebo kontaktujte svojho správcu.
    Keď kliknete na tlačidlo 'OK', zobrazí sa výzva na stiahnutie dokumentu.", + "errorDatabaseConnection": "Externá chyba.
    Chyba spojenia databázy. Obráťte sa prosím na podporu.", + "errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.", + "errorDataRange": "Nesprávny rozsah údajov.", + "errorDefaultMessage": "Kód chyby: %1", + "errorEditingDownloadas": "Počas práce s dokumentom sa vyskytla chyba.
    Na lokálne uloženie záložnej kópie súboru použite možnosť „Stiahnuť“.", + "errorFilePassProtect": "Súbor je chránený heslom a nebolo možné ho otvoriť.", + "errorFileSizeExceed": "Veľkosť súboru presahuje obmedzenie vášho servera.
    Kontaktujte svojho správcu.", + "errorKeyEncrypt": "Neznámy kľúč deskriptoru", + "errorKeyExpire": "Kľúč deskriptora vypršal", + "errorLoadingFont": "Fonty sa nenahrali.
    Kontaktujte prosím svojho administrátora Servera dokumentov.", + "errorSessionAbsolute": "Platnosť relácie úpravy dokumentu vypršala. Prosím, načítajte stránku znova.", + "errorSessionIdle": "Dokument nebol dlhší čas upravovaný. Prosím, načítajte stránku znova.", + "errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", + "errorStockChart": "Nesprávne poradie riadkov. Ak chcete zostaviť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    otváracia cena, maximálna cena, minimálna cena, záverečná cena.", + "errorUpdateVersionOnDisconnect": "Internetové pripojenie bolo obnovené a verzia súboru bola zmenená.
    Skôr ako budete môcť pokračovať v práci, stiahnite súbor alebo skopírujte jeho obsah, aby ste sa uistili, že sa nič nestratí, a potom znova načítajte túto stránku.", + "errorUserDrop": "K súboru teraz nie je možné získať prístup.", + "errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", + "errorViewerDisconnect": "Spojenie je stratené. Dokument si stále môžete prezerať,
    ale nebudete si ho môcť stiahnuť ani vytlačiť, kým sa neobnoví pripojenie a stránka sa znova nenačíta.", + "notcriticalErrorTitle": "Upozornenie", + "openErrorText": "Pri otváraní súboru sa vyskytla chyba", + "saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", + "scriptLoadError": "Pripojenie je príliš pomalé, niektoré komponenty sa nepodarilo načítať. Prosím, načítajte stránku znova.", + "splitDividerErrorText": "Počet riadkov musí byť deliteľom %1", + "splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1", + "splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1", + "unknownErrorText": "Neznáma chyba.", + "uploadImageExtMessage": "Neznámy formát obrázka.", + "uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", + "uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Načítavanie dát...", + "applyChangesTitleText": "Načítavanie dát", + "downloadTextText": "Sťahovanie dokumentu...", + "downloadTitleText": "Sťahovanie dokumentu", + "loadFontsTextText": "Načítavanie dát...", + "loadFontsTitleText": "Načítavanie dát", + "loadFontTextText": "Načítavanie dát...", + "loadFontTitleText": "Načítavanie dát", + "loadImagesTextText": "Načítavanie obrázkov...", + "loadImagesTitleText": "Načítanie obrázkov", + "loadImageTextText": "Načítanie obrázku...", + "loadImageTitleText": "Načítavanie obrázku", + "loadingDocumentTextText": "Načítavanie dokumentu ...", + "loadingDocumentTitleText": "Načítavanie dokumentu", + "loadThemeTextText": "Načítavanie témy...", + "loadThemeTitleText": "Načítavanie témy", + "openTextText": "Otváranie dokumentu...", + "openTitleText": "Otváranie dokumentu", + "printTextText": "Tlač dokumentu...", + "printTitleText": "Tlač dokumentu", + "savePreparingText": "Príprava na uloženie", + "savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", + "saveTextText": "Ukladanie dokumentu...", + "saveTitleText": "Ukladanie dokumentu", + "textLoadingDocument": "Načítavanie dokumentu", + "txtEditingMode": "Nastaviť režim úprav ...", + "uploadImageTextText": "Nahrávanie obrázku...", + "uploadImageTitleText": "Nahrávanie obrázku", + "waitText": "Prosím čakajte..." + }, + "Toolbar": { + "dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.", + "dlgLeaveTitleText": "Opúšťate aplikáciu", + "leaveButtonText": "Opustiť túto stránku", + "stayButtonText": "Zostať na tejto stránke" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Upozornenie", + "textAddLink": "Pridať odkaz", + "textAddress": "Adresa", + "textBack": "Späť", + "textCancel": "Zrušiť", + "textColumns": "Stĺpce", + "textComment": "Komentár", + "textDefault": "Vybraný text", + "textDisplay": "Zobraziť", + "textEmptyImgUrl": "Musíte zadať adresu URL obrázka.", + "textExternalLink": "Externý odkaz", + "textFirstSlide": "Prvá snímka", + "textImage": "Obrázok", + "textImageURL": "URL obrázka", + "textInsert": "Vložiť", + "textInsertImage": "Vložiť obrázok", + "textLastSlide": "Posledná snímka", + "textLink": "Odkaz", + "textLinkSettings": "Nastavenia odkazu", + "textLinkTo": "Odkaz na", + "textLinkType": "Typ odkazu", + "textNextSlide": "Nasledujúca snímka", + "textOk": "OK", + "textOther": "Ostatné", + "textPictureFromLibrary": "Obrázok z Knižnice", + "textPictureFromURL": "Obrázok z URL adresy", + "textPreviousSlide": "Predchádzajúca snímka", + "textRows": "Riadky", + "textScreenTip": "Nápoveda", + "textShape": "Tvar", + "textSlide": "Snímka", + "textSlideInThisPresentation": "Snímok v tejto prezentácii", + "textSlideNumber": "Číslo snímky", + "textTable": "Tabuľka", + "textTableSize": "Veľkosť tabuľky", + "txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Upozornenie", + "textActualSize": "Predvolená veľkosť", + "textAddCustomColor": "Pridať vlastnú farbu", + "textAdditional": "Ďalšie", + "textAdditionalFormatting": "Ďalšie formátovanie", + "textAddress": "Adresa", + "textAfter": "Po", + "textAlign": "Zarovnať", + "textAlignBottom": "Zarovnať dole", + "textAlignCenter": "Zarovnať na stred", + "textAlignLeft": "Zarovnať doľava", + "textAlignMiddle": "Zarovnať na stred", + "textAlignRight": "Zarovnať doprava", + "textAlignTop": "Zarovnať nahor", + "textAllCaps": "Všetko veľkými", + "textApplyAll": "Použiť na všetky snímky", + "textAuto": "Automaticky", + "textAutomatic": "Automaticky", + "textBack": "Späť", + "textBandedColumn": "Pruhovaný stĺpec", + "textBandedRow": "Pruhovaný riadok", + "textBefore": "Pred", + "textBlack": "Prostredníctvom čiernej", + "textBorder": "Orámovanie", + "textBottom": "Dole", + "textBottomLeft": "Dole-vľavo", + "textBottomRight": "Dole-vpravo", + "textBringToForeground": "Premiestniť do popredia", + "textBullets": "Odrážky", + "textBulletsAndNumbers": "Odrážky & Číslovanie", + "textCaseSensitive": "Rozlišovať veľkosť písmen", + "textCellMargins": "Okraje bunky", + "textChart": "Graf", + "textClock": "Hodiny", + "textClockwise": "V smere hodinových ručičiek", + "textColor": "Farba", + "textCounterclockwise": "Proti smeru hodinových ručičiek", + "textCover": "Zakryť", + "textCustomColor": "Vlastná farba", + "textDefault": "Vybraný text", + "textDelay": "Oneskorenie", + "textDeleteSlide": "Odstrániť snímku", + "textDesign": "Dizajn/náčrt", + "textDisplay": "Zobraziť", + "textDistanceFromText": "Vzdialenosť od textu", + "textDistributeHorizontally": "Rozložiť horizontálne", + "textDistributeVertically": "Rozložiť vertikálne", + "textDone": "Hotovo", + "textDoubleStrikethrough": "Dvojité preškrtnutie", + "textDuplicateSlide": "Kopírovať snímku", + "textDuration": "Trvanie", + "textEditLink": "Upraviť odkaz", + "textEffect": "Efekt", + "textEffects": "Efekty", + "textEmptyImgUrl": "Musíte zadať adresu URL obrázka.", + "textExternalLink": "Externý odkaz", + "textFade": "Vyblednúť", + "textFill": "Vyplniť", + "textFinalMessage": "Koniec prezentácie. Kliknutím ukončite.", + "textFind": "Nájsť", + "textFindAndReplace": "Nájsť a nahradiť", + "textFirstColumn": "Prvý stĺpec", + "textFirstSlide": "Prvá snímka", + "textFontColor": "Farba písma", + "textFontColors": "Farby písma", + "textFonts": "Písma", + "textFromLibrary": "Obrázok z Knižnice", + "textFromURL": "Obrázok z URL adresy", + "textHeaderRow": "Riadok hlavičky", + "textHighlight": "Zvýrazniť výsledky", + "textHighlightColor": "Farba zvýraznenia", + "textHorizontalIn": "Horizontálne dnu", + "textHorizontalOut": "Horizontálne von", + "textHyperlink": "Hypertextový odkaz", + "textImage": "Obrázok", + "textImageURL": "URL obrázka", + "textLastColumn": "Posledný stĺpec", + "textLastSlide": "Posledná snímka", + "textLayout": "Rozloženie", + "textLeft": "Vľavo", + "textLetterSpacing": "Rozstup medzi písmenami", + "textLineSpacing": "Riadkovanie", + "textLink": "Odkaz", + "textLinkSettings": "Nastavenia odkazu", + "textLinkTo": "Odkaz na", + "textLinkType": "Typ odkazu", + "textMoveBackward": "Posunúť späť", + "textMoveForward": "Posunúť vpred", + "textNextSlide": "Nasledujúca snímka", + "textNone": "žiadne", + "textNoStyles": "Žiadne štýly pre tento typ grafu.", + "textNoTextFound": "Text nebol nájdený", + "textNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"", + "textNumbers": "Čísla", + "textOk": "OK", + "textOpacity": "Priehľadnosť", + "textOptions": "Možnosti", + "textPictureFromLibrary": "Obrázok z Knižnice", + "textPictureFromURL": "Obrázok z URL adresy", + "textPreviousSlide": "Predchádzajúca snímka", + "textPt": "pt", + "textPush": "Posunúť", + "textRemoveChart": "Odstrániť graf", + "textRemoveImage": "Odstrániť obrázok", + "textRemoveLink": "Odstrániť odkaz", + "textRemoveShape": "Odstrániť tvar", + "textRemoveTable": "Odstrániť tabuľku", + "textReorder": "Znovu usporiadať/zmena poradia", + "textReplace": "Nahradiť", + "textReplaceAll": "Nahradiť všetko", + "textReplaceImage": "Nahradiť obrázok", + "textRight": "Vpravo", + "textScreenTip": "Nápoveda", + "textSearch": "Hľadať", + "textSec": "s", + "textSelectObjectToEdit": "Vyberte objekt, ktorý chcete upraviť", + "textSendToBackground": "Presunúť do pozadia", + "textShape": "Tvar", + "textSize": "Veľkosť", + "textSlide": "Snímka", + "textSlideInThisPresentation": "Snímok v tejto prezentácii", + "textSlideNumber": "Číslo snímky", + "textSmallCaps": "Malé písmená", + "textSmoothly": "Plynule", + "textSplit": "Rozdeliť", + "textStartOnClick": "Začať kliknutím", + "textStrikethrough": "Preškrtnutie", + "textStyle": "Štýl", + "textStyleOptions": "Možnosti štýlu", + "textSubscript": "Dolný index", + "textSuperscript": "Horný index", + "textTable": "Tabuľka", + "textText": "Text", + "textTheme": "Téma", + "textTop": "Hore", + "textTopLeft": "Hore-vľavo", + "textTopRight": "Hore-vpravo", + "textTotalRow": "Celkový riadok", + "textTransitions": "Prechod", + "textType": "Typ", + "textUnCover": "Odkryť", + "textVerticalIn": "Vertikálne dnu", + "textVerticalOut": "Vertikálne von", + "textWedge": "Konjunkcia", + "textWipe": "Rozotrieť", + "textZoom": "Priblíženie", + "textZoomIn": "Priblížiť", + "textZoomOut": "Oddialiť", + "textZoomRotate": "Priblížiť a otáčať" + }, + "Settings": { + "mniSlideStandard": "Štandard (4:3)", + "mniSlideWide": "Širokouhlý (16:9)", + "textAbout": "O aplikácii", + "textAddress": "adresa:", + "textApplication": "Aplikácia", + "textApplicationSettings": "Nastavenia aplikácie", + "textAuthor": "Autor", + "textBack": "Späť", + "textCaseSensitive": "Rozlišovať veľkosť písmen", + "textCentimeter": "Centimeter", + "textCollaboration": "Spolupráca", + "textColorSchemes": "Farebné schémy", + "textComment": "Komentár", + "textCreated": "Vytvorené", + "textDarkTheme": "Tmavá téma", + "textDisableAll": "Vypnúť všetko", + "textDisableAllMacrosWithNotification": "Zakázať všetky makrá s upozornením", + "textDisableAllMacrosWithoutNotification": "Zakázať všetky makrá bez upozornení", + "textDone": "Hotovo", + "textDownload": "Stiahnuť", + "textDownloadAs": "Stiahnuť ako...", + "textEmail": "e-mail: ", + "textEnableAll": "Povoliť všetko", + "textEnableAllMacrosWithoutNotification": "Povoliť všetky makrá bez upozornenia", + "textFind": "Nájsť", + "textFindAndReplace": "Nájsť a nahradiť", + "textFindAndReplaceAll": "Hľadať a nahradiť všetko", + "textHelp": "Pomoc", + "textHighlight": "Zvýrazniť výsledky", + "textInch": "Palec (miera 2,54 cm)", + "textLastModified": "Naposledy upravené", + "textLastModifiedBy": "Naposledy upravil(a) ", + "textLoading": "Načítava sa.....", + "textLocation": "Umiestnenie", + "textMacrosSettings": "Nastavenia makier", + "textNoTextFound": "Text nebol nájdený", + "textOwner": "Vlastník", + "textPoint": "Bod", + "textPoweredBy": "Poháňaný ", + "textPresentationInfo": "Informácie o prezentácii", + "textPresentationSettings": "Nastavení prezentácie", + "textPresentationTitle": "Názov prezentácie", + "textPrint": "Tlačiť", + "textReplace": "Nahradiť", + "textReplaceAll": "Nahradiť všetko", + "textSearch": "Hľadať", + "textSettings": "Nastavenia", + "textShowNotification": "Ukázať oznámenie", + "textSlideSize": "Veľkosť snímku", + "textSpellcheck": "Kontrola pravopisu", + "textSubject": "Predmet", + "textTel": "Telefón:", + "textTitle": "Názov", + "textUnitOfMeasurement": "Jednotka merania", + "textUploaded": "Nahrané", + "textVersion": "Verzia", + "txtScheme1": "Kancelária", + "txtScheme10": "Medián", + "txtScheme11": "Metro", + "txtScheme12": "Modul", + "txtScheme13": "Opulentný", + "txtScheme14": "Výklenok", + "txtScheme15": "Pôvod", + "txtScheme16": "Papier", + "txtScheme17": "Slnovrat", + "txtScheme18": "Technika", + "txtScheme19": "Cestovanie", + "txtScheme2": "Odtiene sivej", + "txtScheme20": "Mestský", + "txtScheme21": "Elán", + "txtScheme22": "Nová kancelária", + "txtScheme3": "Vrchol", + "txtScheme4": "Aspekt", + "txtScheme5": "Občiansky", + "txtScheme6": "Hala", + "txtScheme7": "Spravodlivosť", + "txtScheme8": "Tok", + "txtScheme9": "Zlieváreň", "textFeedback": "Feedback & Support" } } diff --git a/apps/presentationeditor/mobile/locale/zh-TW.json b/apps/presentationeditor/mobile/locale/zh-TW.json new file mode 100644 index 000000000..619916023 --- /dev/null +++ b/apps/presentationeditor/mobile/locale/zh-TW.json @@ -0,0 +1,479 @@ +{ + "About": { + "textAbout": "關於", + "textAddress": "地址", + "textBack": "返回", + "textEmail": "電子郵件", + "textPoweredBy": "於支援", + "textTel": "電話", + "textVersion": "版本" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "警告", + "textAddComment": "新增註解", + "textAddReply": "加入回應", + "textBack": "返回", + "textCancel": "取消", + "textCollaboration": "協作", + "textComments": "評論", + "textDeleteComment": "刪除評論", + "textDeleteReply": "刪除回覆", + "textDone": "完成", + "textEdit": "編輯", + "textEditComment": "編輯評論", + "textEditReply": "編輯回覆", + "textEditUser": "正在編輯文件的用戶:", + "textMessageDeleteComment": "確定要刪除評論嗎?", + "textMessageDeleteReply": "確定要刪除回覆嗎?", + "textNoComments": "此文件未包含回應訊息", + "textOk": "確定", + "textReopen": "重開", + "textResolve": "解決", + "textTryUndoRedo": "在快速共同編輯模式下,撤消/重做功能被禁用。", + "textUsers": "使用者" + }, + "HighlightColorPalette": { + "textNoFill": "沒有填充" + }, + "ThemeColorPalette": { + "textCustomColors": "自訂顏色", + "textStandartColors": "標準顏色", + "textThemeColors": "主題顏色" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "使用上下文選單進行的複制,剪切和粘貼操作將僅在當前文件內執行。", + "menuAddComment": "新增註解", + "menuAddLink": "新增連結", + "menuCancel": "取消", + "menuDelete": "刪除", + "menuDeleteTable": "刪除表格", + "menuEdit": "編輯", + "menuMerge": "合併", + "menuMore": "更多", + "menuOpenLink": "打開連結", + "menuSplit": "分裂", + "menuViewComment": "查看評論", + "textColumns": "欄", + "textCopyCutPasteActions": "複製, 剪下, 與貼上之動作", + "textDoNotShowAgain": "不再顯示", + "textRows": "行列" + }, + "Controller": { + "Main": { + "advDRMOptions": "受保護的文件", + "advDRMPassword": "密碼", + "closeButtonText": "關閉檔案", + "criticalErrorTitle": "錯誤", + "errorAccessDeny": "您正在嘗試執行您無權執行的動作。
    請聯繫您的管理員。", + "errorOpensource": "在使用免費社群版本時,您只能瀏覽開啟的文件。欲使用移動版本的編輯功能,您需要付費的憑證。", + "errorProcessSaveResult": "儲存失敗", + "errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。", + "errorUpdateVersion": "文件版本已更改。該頁面將重新加載。", + "leavePageText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。", + "notcriticalErrorTitle": "警告", + "SDK": { + "Chart": "圖表", + "Click to add first slide": "點擊以新增第一張簡報", + "Click to add notes": "點擊添加筆記", + "ClipArt": "剪貼畫", + "Date and time": "日期和時間", + "Diagram": "圖表", + "Diagram Title": "圖表標題", + "Footer": "頁尾", + "Header": "標頭", + "Image": "圖像", + "Loading": "載入中", + "Media": "媒體", + "None": "無", + "Picture": "圖片", + "Series": "系列", + "Slide number": "幻燈片頁碼", + "Slide subtitle": "幻燈片副標題", + "Slide text": "幻燈片字幕", + "Slide title": "幻燈片標題", + "Table": "表格", + "X Axis": "X 軸 XAS", + "Y Axis": "Y軸", + "Your text here": "在這輸入文字" + }, + "textAnonymous": "匿名", + "textBuyNow": "訪問網站", + "textClose": "關閉", + "textContactUs": "聯絡銷售人員", + "textCustomLoader": "很抱歉,您無權變更載入程序。 請聯繫我們的業務部門取得報價。", + "textGuest": "來賓", + "textHasMacros": "此檔案包含自動巨集程式。
    是否要運行這些巨集?", + "textNo": "沒有", + "textNoLicenseTitle": "達到許可限制", + "textNoTextFound": "找不到文字", + "textOpenFile": "輸入檔案密碼", + "textPaidFeature": "付費功能", + "textRemember": "記住我的選擇", + "textReplaceSkipped": "替換已完成。 {0}個事件被跳過。", + "textReplaceSuccess": "搜索已完成。發生的事件已替換:{0}", + "textYes": "是", + "titleLicenseExp": "證件過期", + "titleServerVersion": "編輯器已更新", + "titleUpdateVersion": "版本已更改", + "txtIncorrectPwd": "密碼錯誤", + "txtProtected": "輸入密碼並打開文件後,該文件的當前密碼將被重置", + "warnLicenseExceeded": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。", + "warnLicenseExp": "您的授權已過期。請更新它並重新載入頁面。", + "warnLicenseLimitedNoAccess": "授權過期。 您無法進入文件編輯功能。 請聯繫您的管理員。", + "warnLicenseLimitedRenewed": "憑證需要續約。您目前只有文件編輯的部份功能。
    欲使用完整功能,請聯絡您的帳號管理員。", + "warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。", + "warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。", + "warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。", + "warnProcessRightsChange": "您沒有編輯此文件的權限。" + } + }, + "Error": { + "convertationTimeoutText": "轉換逾時。", + "criticalErrorExtText": "點擊\"好\"回到文件列表。", + "criticalErrorTitle": "錯誤", + "downloadErrorText": "下載失敗", + "errorAccessDeny": "您正在嘗試執行您無權執行的動作。
    請聯繫您的管理員。", + "errorBadImageUrl": "不正確的圖像 URL", + "errorConnectToServer": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。", + "errorDatabaseConnection": "外部錯誤
    資料庫連結錯誤, 請聯絡技術支援。", + "errorDataEncrypted": "已收到加密的更改,無法解密。", + "errorDataRange": "不正確的資料範圍", + "errorDefaultMessage": "錯誤編號:%1", + "errorEditingDownloadas": "處理文件檔時發生錯誤。
    請使用\"下載\"來儲存一份備份檔案到本機端。", + "errorFilePassProtect": "此文件使用密碼保護功能,無法開啟。", + "errorFileSizeExceed": "檔案大小已超過了您的伺服器限制。
    請聯繫您的管理員。", + "errorKeyEncrypt": "未知密鑰描述符", + "errorKeyExpire": "密鑰描述符已過期", + "errorLoadingFont": "字體未載入。
    請聯絡文件服務(Document Server)管理員。", + "errorSessionAbsolute": "該文件編輯時效已欲期。請重新載入此頁面。", + "errorSessionIdle": "無 該文件已經有一段時間沒有進行編輯了。 請重新載入頁面。", + "errorSessionToken": "主機連線被中斷,請重新載入此頁面。", + "errorStockChart": "行序錯誤。要建立股票圖表,請將數據按照以下順序工作表:
    開盤價、最高價、最低價、收盤價。", + "errorUpdateVersionOnDisconnect": "網路連線已恢復,且文件版本已變更。
    在您繼續工作之前,請下載文件或複製其內容以確保沒有任何內容遺失,之後重新載入本頁面。", + "errorUserDrop": "目前無法存取該文件。", + "errorUsersExceed": "超出了定價計劃所允許的用戶數量", + "errorViewerDisconnect": "網路連線失敗。您可以繼續瀏覽這份文件,
    在連線恢復前以及頁面重新加載之前,您無法下載或列印此文件。", + "notcriticalErrorTitle": "警告", + "openErrorText": "開啟文件時發生錯誤", + "saveErrorText": "存檔時發生錯誤", + "scriptLoadError": "連線速度過慢,某些組件無法加載。 請重新載入頁面。", + "splitDividerErrorText": "行數必須是%1的除數", + "splitMaxColsErrorText": "列數必須少於%1", + "splitMaxRowsErrorText": "行數必須少於%1", + "unknownErrorText": "未知錯誤。", + "uploadImageExtMessage": "圖片格式未知。", + "uploadImageFileCountMessage": "沒有上傳圖片。", + "uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。" + }, + "LongActions": { + "applyChangesTextText": "加載數據中...", + "applyChangesTitleText": "加載數據中", + "downloadTextText": "文件下載中...", + "downloadTitleText": "文件下載中", + "loadFontsTextText": "加載數據中...", + "loadFontsTitleText": "加載數據中", + "loadFontTextText": "加載數據中...", + "loadFontTitleText": "加載數據中", + "loadImagesTextText": "正在載入圖片...", + "loadImagesTitleText": "正在載入圖片", + "loadImageTextText": "正在載入圖片...", + "loadImageTitleText": "正在載入圖片", + "loadingDocumentTextText": "正在載入文件...", + "loadingDocumentTitleText": "載入文件", + "loadThemeTextText": "載入主題中...", + "loadThemeTitleText": "載入主題中", + "openTextText": "開啟文件中...", + "openTitleText": "開啟文件中", + "printTextText": "列印文件中...", + "printTitleText": "列印文件", + "savePreparingText": "準備保存", + "savePreparingTitle": "正在準備保存。請耐心等待...", + "saveTextText": "儲存文件...", + "saveTitleText": "儲存文件", + "textLoadingDocument": "載入文件", + "txtEditingMode": "設定編輯模式...", + "uploadImageTextText": "正在上傳圖片...", + "uploadImageTitleText": "上載圖片", + "waitText": "請耐心等待..." + }, + "Toolbar": { + "dlgLeaveMsgText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。", + "dlgLeaveTitleText": "您離開應用程式", + "leaveButtonText": "離開這個頁面", + "stayButtonText": "保持此頁上" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "警告", + "textAddLink": "新增連結", + "textAddress": "地址", + "textBack": "返回", + "textCancel": "取消", + "textColumns": "欄", + "textComment": "評論", + "textDefault": "所選文字", + "textDisplay": "顯示", + "textEmptyImgUrl": "您需要指定影像的 URL。", + "textExternalLink": "外部連結", + "textFirstSlide": "第一張幻燈片", + "textImage": "圖像", + "textImageURL": "圖像 URL", + "textInsert": "插入", + "textInsertImage": "插入圖片", + "textLastSlide": "最後一張幻燈片", + "textLink": "連結", + "textLinkSettings": "連結設定", + "textLinkTo": "連結至", + "textLinkType": "鏈接類型", + "textNextSlide": "下一張幻燈片", + "textOk": "確定", + "textOther": "其它", + "textPictureFromLibrary": "圖片來自圖書館", + "textPictureFromURL": "網址圖片", + "textPreviousSlide": "上一張幻燈片", + "textRows": "行列", + "textScreenTip": "屏幕提示", + "textShape": "形狀", + "textSlide": "幻燈片", + "textSlideInThisPresentation": "這個簡報中的投影片", + "textSlideNumber": "幻燈片頁碼", + "textTable": "表格", + "textTableSize": "表格大小", + "txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。" + }, + "Edit": { + "notcriticalErrorTitle": "警告", + "textActualSize": "實際大小", + "textAddCustomColor": "新增客制化顏色", + "textAdditional": "額外", + "textAdditionalFormatting": "額外格式化方式", + "textAddress": "地址", + "textAfter": "之後", + "textAlign": "對齊", + "textAlignBottom": "底部對齊", + "textAlignCenter": "居中對齊", + "textAlignLeft": "對齊左側", + "textAlignMiddle": "中央對齊", + "textAlignRight": "對齊右側", + "textAlignTop": "上方對齊", + "textAllCaps": "全部大寫", + "textApplyAll": "應用於所有投影片", + "textAuto": "自動", + "textAutomatic": "自動", + "textBack": "返回", + "textBandedColumn": "分帶欄", + "textBandedRow": "分帶列", + "textBefore": "之前", + "textBlack": "通過黑", + "textBorder": "邊框", + "textBottom": "底部", + "textBottomLeft": "左下方", + "textBottomRight": "右下方", + "textBringToForeground": "移到前景執行", + "textBullets": "項目符號", + "textBulletsAndNumbers": "符號項目與編號", + "textCaseSensitive": "區分大小寫", + "textCellMargins": "儲存格邊距", + "textChart": "圖表", + "textClock": "時鐘", + "textClockwise": "順時針", + "textColor": "顏色", + "textCounterclockwise": "逆時針", + "textCover": "覆蓋", + "textCustomColor": "自訂顏色", + "textDefault": "所選文字", + "textDelay": "延遲", + "textDeleteSlide": "刪除幻燈片", + "textDesign": "設計", + "textDisplay": "顯示", + "textDistanceFromText": "與文字的距離", + "textDistributeHorizontally": "水平分佈", + "textDistributeVertically": "垂直分佈", + "textDone": "完成", + "textDoubleStrikethrough": "雙刪除線", + "textDuplicateSlide": "幻燈片複製", + "textDuration": "持續時間", + "textEditLink": "編輯連結", + "textEffect": "效果", + "textEffects": "作用", + "textEmptyImgUrl": "您需要指定影像的 URL。", + "textExternalLink": "外部連結", + "textFade": "褪", + "textFill": "填入", + "textFinalMessage": "幻燈片預覽的結尾。單擊退出。", + "textFind": "尋找", + "textFindAndReplace": "尋找與取代", + "textFirstColumn": "第一欄", + "textFirstSlide": "第一張幻燈片", + "textFontColor": "字體顏色", + "textFontColors": "字體顏色", + "textFonts": "字型", + "textFromLibrary": "圖片來自圖書館", + "textFromURL": "網址圖片", + "textHeaderRow": "頁首列", + "textHighlight": "強調結果", + "textHighlightColor": "強調顏色", + "textHorizontalIn": "水平輸入", + "textHorizontalOut": "水平輸出", + "textHyperlink": "超連結", + "textImage": "圖像", + "textImageURL": "圖像 URL", + "textLastColumn": "最後一欄", + "textLastSlide": "最後一張幻燈片", + "textLayout": "佈局", + "textLeft": "左", + "textLetterSpacing": "字母間距", + "textLineSpacing": "行間距", + "textLink": "連結", + "textLinkSettings": "連結設定", + "textLinkTo": "連結至", + "textLinkType": "鏈接類型", + "textMoveBackward": "向後移動", + "textMoveForward": "向前移動", + "textNextSlide": "下一張幻燈片", + "textNone": "無", + "textNoStyles": "此類型的圖表沒有樣式。", + "textNoTextFound": "找不到文字", + "textNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。", + "textNumbers": "號碼", + "textOk": "確定", + "textOpacity": "透明度", + "textOptions": "選項", + "textPictureFromLibrary": "圖片來自圖書館", + "textPictureFromURL": "網址圖片", + "textPreviousSlide": "上一張幻燈片", + "textPt": "pt", + "textPush": "推", + "textRemoveChart": "刪除圖表", + "textRemoveImage": "移除圖片", + "textRemoveLink": "刪除連結", + "textRemoveShape": "去除形狀", + "textRemoveTable": "刪除表", + "textReorder": "重新排序", + "textReplace": "取代", + "textReplaceAll": "全部替換", + "textReplaceImage": "替換圖片", + "textRight": "右", + "textScreenTip": "屏幕提示", + "textSearch": "搜尋", + "textSec": "秒", + "textSelectObjectToEdit": "選擇要編輯的物件", + "textSendToBackground": "傳送到背景", + "textShape": "形狀", + "textSize": "大小", + "textSlide": "幻燈片", + "textSlideInThisPresentation": "這個簡報中的投影片", + "textSlideNumber": "幻燈片頁碼", + "textSmallCaps": "小大寫", + "textSmoothly": "順手", + "textSplit": "分裂", + "textStartOnClick": "點選後開始", + "textStrikethrough": "刪除線", + "textStyle": "樣式", + "textStyleOptions": "樣式選項", + "textSubscript": "下標", + "textSuperscript": "上標", + "textTable": "表格", + "textText": "文字", + "textTheme": "主題", + "textTop": "上方", + "textTopLeft": "左上方", + "textTopRight": "右上方", + "textTotalRow": "總行數", + "textTransitions": "過渡", + "textType": "類型", + "textUnCover": "揭露", + "textVerticalIn": "垂直輸入", + "textVerticalOut": "垂直輸出", + "textWedge": "楔", + "textWipe": "擦拭", + "textZoom": "放大", + "textZoomIn": "放大", + "textZoomOut": "縮小", + "textZoomRotate": "放大和旋轉" + }, + "Settings": { + "mniSlideStandard": "標準(4:3)", + "mniSlideWide": "寬銀幕(16:9)", + "textAbout": "關於", + "textAddress": "地址:", + "textApplication": "應用程式", + "textApplicationSettings": "應用程式設定", + "textAuthor": "作者", + "textBack": "返回", + "textCaseSensitive": "區分大小寫", + "textCentimeter": "公分", + "textCollaboration": "協作", + "textColorSchemes": "色盤", + "textComment": "評論", + "textCreated": "已建立", + "textDarkTheme": "暗色主題", + "textDisableAll": "全部停用", + "textDisableAllMacrosWithNotification": "停用所有帶通知的巨集", + "textDisableAllMacrosWithoutNotification": "停用所有不帶通知的巨集", + "textDone": "完成", + "textDownload": "下載", + "textDownloadAs": "下載為...", + "textEmail": "電子郵件:", + "textEnableAll": "全部啟用", + "textEnableAllMacrosWithoutNotification": "啟用所有不帶通知的巨集", + "textFind": "尋找", + "textFindAndReplace": "尋找與取代", + "textFindAndReplaceAll": "尋找與全部取代", + "textHelp": "輔助說明", + "textHighlight": "強調結果", + "textInch": "吋", + "textLastModified": "上一次更改", + "textLastModifiedBy": "最後修改者", + "textLoading": "載入中...", + "textLocation": "位置", + "textMacrosSettings": "巨集設定", + "textNoTextFound": "找不到文字", + "textOwner": "擁有者", + "textPoint": "點", + "textPoweredBy": "於支援", + "textPresentationInfo": "見報資訊", + "textPresentationSettings": "簡報設定", + "textPresentationTitle": "簡報標題", + "textPrint": "打印", + "textReplace": "取代", + "textReplaceAll": "全部替換", + "textSearch": "搜尋", + "textSettings": "設定", + "textShowNotification": "顯示通知", + "textSlideSize": "幻燈片大小", + "textSpellcheck": "拼字檢查", + "textSubject": "主旨", + "textTel": "電話", + "textTitle": "標題", + "textUnitOfMeasurement": "測量單位", + "textUploaded": "\n已上傳", + "textVersion": "版本", + "txtScheme1": "辦公室", + "txtScheme10": "中位數", + "txtScheme11": " 地鐵", + "txtScheme12": "模組", + "txtScheme13": "豐富的", + "txtScheme14": "凸窗", + "txtScheme15": "起源", + "txtScheme16": "紙", + "txtScheme17": "冬至", + "txtScheme18": "技術", + "txtScheme19": "跋涉", + "txtScheme2": "灰階", + "txtScheme20": "市區", + "txtScheme21": "感染力", + "txtScheme22": "新的Office", + "txtScheme3": "頂尖", + "txtScheme4": "方面", + "txtScheme5": "思域", + "txtScheme6": "大堂", + "txtScheme7": "產權", + "txtScheme8": "流程", + "txtScheme9": "鑄造廠", + "textFeedback": "Feedback & Support" + } + } +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index bb8cf7caa..564ff25c0 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -255,7 +255,7 @@ "textAlignBottom": "底部对齐", "textAlignCenter": "居中对齐", "textAlignLeft": "左对齐", - "textAlignMiddle": "居中对齐", + "textAlignMiddle": "垂直居中", "textAlignRight": "右对齐", "textAlignTop": "顶端对齐", "textAllCaps": "全部大写", diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index cd4bb85da..a28803971 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -124,6 +124,9 @@ class MainController extends Component { docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); + if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) + docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + let enable = !this.editorConfig.customization || (this.editorConfig.customization.macros !== false); docInfo.asc_putIsEnabledMacroses(!!enable); enable = !this.editorConfig.customization || (this.editorConfig.customization.plugins !== false); diff --git a/apps/presentationeditor/mobile/src/controller/Search.jsx b/apps/presentationeditor/mobile/src/controller/Search.jsx index d6dc11a94..c3c254ac3 100644 --- a/apps/presentationeditor/mobile/src/controller/Search.jsx +++ b/apps/presentationeditor/mobile/src/controller/Search.jsx @@ -65,9 +65,9 @@ class PESearchView extends SearchView { return {...params, ...searchOptions}; } - onSearchbarShow(isshowed, bar) { - super.onSearchbarShow(isshowed, bar); - } + // onSearchbarShow(isshowed, bar) { + // super.onSearchbarShow(isshowed, bar); + // } } const Search = withTranslation()(props => { diff --git a/apps/presentationeditor/mobile/src/controller/add/AddOther.jsx b/apps/presentationeditor/mobile/src/controller/add/AddOther.jsx index 3b8edb68b..e6060381d 100644 --- a/apps/presentationeditor/mobile/src/controller/add/AddOther.jsx +++ b/apps/presentationeditor/mobile/src/controller/add/AddOther.jsx @@ -10,10 +10,7 @@ class AddOtherController extends Component { constructor (props) { super(props); this.onStyleClick = this.onStyleClick.bind(this); - this.initStyleTable = this.initStyleTable.bind(this); this.onGetTableStylesPreviews = this.onGetTableStylesPreviews.bind(this); - - this.initTable = false; } closeModal () { @@ -24,14 +21,6 @@ class AddOtherController extends Component { } } - initStyleTable () { - if (!this.initTable) { - const api = Common.EditorApi.get(); - api.asc_GetDefaultTableStyles(); - this.initTable = true; - } - } - onStyleClick (type) { const api = Common.EditorApi.get(); @@ -93,8 +82,10 @@ class AddOtherController extends Component { } onGetTableStylesPreviews = () => { - const api = Common.EditorApi.get(); - setTimeout(() => this.props.storeTableSettings.setStyles(api.asc_getTableStylesPreviews(true)), 1); + if(this.props.storeTableSettings.arrayStylesDefault.length == 0) { + const api = Common.EditorApi.get(); + setTimeout(() => this.props.storeTableSettings.setStyles(api.asc_getTableStylesPreviews(true), 'default'), 1); + } } hideAddComment () { @@ -127,7 +118,6 @@ class AddOtherController extends Component { return ( diff --git a/apps/presentationeditor/mobile/src/controller/edit/EditChart.jsx b/apps/presentationeditor/mobile/src/controller/edit/EditChart.jsx index 0771629dc..eb54d09f3 100644 --- a/apps/presentationeditor/mobile/src/controller/edit/EditChart.jsx +++ b/apps/presentationeditor/mobile/src/controller/edit/EditChart.jsx @@ -11,6 +11,7 @@ class EditChartController extends Component { this.onType = this.onType.bind(this); this.onBorderColor = this.onBorderColor.bind(this); this.onBorderSize = this.onBorderSize.bind(this); + this.onStyle = this.onStyle.bind(this); const type = props.storeFocusObjects.chartObject.getType(); if (type==Asc.c_oAscChartTypeSettings.comboBarLine || @@ -88,7 +89,7 @@ class EditChartController extends Component { onStyle (style) { const api = Common.EditorApi.get(); let chart = new Asc.CAscChartProp(); - const chartProps = this.storeFocusObjects.chartObject.get_ChartProperties(); + const chartProps = this.props.storeFocusObjects.chartObject.get_ChartProperties(); chartProps.putStyle(style); chart.put_ChartProperties(chartProps); api.ChartApply(chart); diff --git a/apps/presentationeditor/mobile/src/controller/settings/PresentationSettings.jsx b/apps/presentationeditor/mobile/src/controller/settings/PresentationSettings.jsx index cb3c6803d..c18cdae00 100644 --- a/apps/presentationeditor/mobile/src/controller/settings/PresentationSettings.jsx +++ b/apps/presentationeditor/mobile/src/controller/settings/PresentationSettings.jsx @@ -7,6 +7,7 @@ class PresentationSettingsController extends Component { super(props); this.initSlideSize = this.initSlideSize.bind(this); this.onSlideSize = this.onSlideSize.bind(this); + this.onColorSchemeChange = this.onColorSchemeChange.bind(this); this.initSlideSize(); } @@ -47,6 +48,7 @@ class PresentationSettingsController extends Component { onColorSchemeChange(newScheme) { const api = Common.EditorApi.get(); api.asc_ChangeColorSchemeByIdx(newScheme); + this.props.storeTableSettings.setStyles([], 'default'); } @@ -62,4 +64,4 @@ class PresentationSettingsController extends Component { } } -export default inject("storePresentationSettings")(observer(PresentationSettingsController)); \ No newline at end of file +export default inject("storePresentationSettings", "storeTableSettings")(observer(PresentationSettingsController)); \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/index_dev.html b/apps/presentationeditor/mobile/src/index_dev.html index 3488209c2..13efdb7ea 100644 --- a/apps/presentationeditor/mobile/src/index_dev.html +++ b/apps/presentationeditor/mobile/src/index_dev.html @@ -2,15 +2,7 @@ - - + diff --git a/apps/presentationeditor/mobile/src/less/app.less b/apps/presentationeditor/mobile/src/less/app.less index 960129624..ded0ee9f0 100644 --- a/apps/presentationeditor/mobile/src/less/app.less +++ b/apps/presentationeditor/mobile/src/less/app.less @@ -123,7 +123,7 @@ .table-styles .row div:not(:first-child) { margin: 2px auto 0px; } -.table-styles li, .table-styles .row div { +.table-styles .skeleton-list li, .table-styles .row div { padding: 0; } .table-styles .row .skeleton-list{ diff --git a/apps/presentationeditor/mobile/src/store/tableSettings.js b/apps/presentationeditor/mobile/src/store/tableSettings.js index 7296cfc16..5e433263f 100644 --- a/apps/presentationeditor/mobile/src/store/tableSettings.js +++ b/apps/presentationeditor/mobile/src/store/tableSettings.js @@ -14,10 +14,12 @@ export class storeTableSettings { updateCellBorderColor: action, setAutoColor: action, colorAuto: observable, + arrayStylesDefault: observable, }); } arrayStyles = []; + arrayStylesDefault = []; colorAuto = 'auto'; setAutoColor(value) { @@ -28,7 +30,7 @@ export class storeTableSettings { this.arrayStyles = []; } - setStyles (arrStyles) { + setStyles (arrStyles, typeStyles) { let styles = []; for (let template of arrStyles) { styles.push({ @@ -36,6 +38,10 @@ export class storeTableSettings { templateId : template.asc_getId() }); } + + if(typeStyles === 'default') { + return this.arrayStylesDefault = styles; + } return this.arrayStyles = styles; } diff --git a/apps/presentationeditor/mobile/src/view/add/AddOther.jsx b/apps/presentationeditor/mobile/src/view/add/AddOther.jsx index e337874e9..2eb8d5f4a 100644 --- a/apps/presentationeditor/mobile/src/view/add/AddOther.jsx +++ b/apps/presentationeditor/mobile/src/view/add/AddOther.jsx @@ -5,11 +5,10 @@ import { useTranslation } from 'react-i18next'; import {Device} from "../../../../../common/mobile/utils/device"; const PageTable = props => { - props.initStyleTable(); const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); const storeTableSettings = props.storeTableSettings; - const styles = storeTableSettings.arrayStyles; + const styles = storeTableSettings.arrayStylesDefault; return ( @@ -50,7 +49,6 @@ const AddOther = props => { props.onGetTableStylesPreviews()} routeProps={{ onStyleClick: props.onStyleClick, - initStyleTable: props.initStyleTable }}> diff --git a/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx b/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx index d476f12cd..bd41e6a97 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx @@ -13,11 +13,13 @@ const EditShape = props => { const canFill = shapeObject && shapeObject.get_CanFill(); const shapeType = shapeObject.asc_getType(); - const hideChangeType = shapeObject.get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' + const hideChangeType = shapeObject.get_FromChart() || shapeObject.get_FromSmartArt() + || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' || shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2' || shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5' || shapeType=='straightConnector1'; + const isSmartArtInternal = shapeObject.get_FromSmartArtInternal(); let disableRemove = !!props.storeFocusObjects.paragraphObject; return ( @@ -41,10 +43,11 @@ const EditShape = props => { onReplace: props.onReplace }}> } - - + { !isSmartArtInternal && + + } diff --git a/apps/presentationeditor/mobile/src/view/edit/EditTable.jsx b/apps/presentationeditor/mobile/src/view/edit/EditTable.jsx index 8c0423fe4..95dd24122 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditTable.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditTable.jsx @@ -66,11 +66,9 @@ const PageStyleOptions = props => { isBandVer = tableLook.get_BandVer(); } - const openIndicator = () => props.onGetTableStylesPreviews(); - return ( - + {Device.phone && diff --git a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx index cb6baa7ff..8fae5157f 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx @@ -209,26 +209,10 @@ const PageFonts = props => { const spriteThumbs = storeTextSettings.spriteThumbs; const arrayRecentFonts = storeTextSettings.arrayRecentFonts; - useEffect(() => { - setRecent(getImageUri(arrayRecentFonts)); - - return () => { - } - }, []); - const addRecentStorage = () => { - let arr = []; - arrayRecentFonts.forEach(item => arr.push(item)); setRecent(getImageUri(arrayRecentFonts)); - LocalStorage.setItem('ppe-settings-recent-fonts', JSON.stringify(arr)); - } - - const [stateRecent, setRecent] = useState([]); - const [vlFonts, setVlFonts] = useState({ - vlData: { - items: [], - } - }); + LocalStorage.setItem('ppe-settings-recent-fonts', JSON.stringify(arrayRecentFonts)); + }; const getImageUri = fonts => { return fonts.map(font => { @@ -239,6 +223,13 @@ const PageFonts = props => { }); }; + const [stateRecent, setRecent] = useState(() => getImageUri(arrayRecentFonts)); + const [vlFonts, setVlFonts] = useState({ + vlData: { + items: [], + } + }); + const renderExternal = (vl, vlData) => { setVlFonts((prevState) => { let fonts = [...prevState.vlData.items]; @@ -499,7 +490,7 @@ const PageAdditionalFormatting = props => { ) }; -const PageBullets = props => { +const PageBullets = observer(props => { const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); const bulletArrays = [ @@ -534,11 +525,8 @@ const PageBullets = props => { { - if (bullet.type === -1) { - storeTextSettings.resetBullets(-1); - } - props.onBullet(bullet.type) - props.f7router.back(); + storeTextSettings.resetBullets(bullet.type); + props.onBullet(bullet.type); }}> {bullet.thumb.length < 1 ? @@ -552,9 +540,9 @@ const PageBullets = props => { ))} ) -}; +}); -const PageNumbers = props => { +const PageNumbers = observer(props => { const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); const numberArrays = [ @@ -582,7 +570,7 @@ const PageNumbers = props => { return null; } - return( + return ( {numberArrays.map((numbers, index) => ( @@ -590,11 +578,8 @@ const PageNumbers = props => { { - if (number.type === -1) { - storeTextSettings.resetNumbers(-1); - } - props.onNumber(number.type) - props.f7router.back(); + storeTextSettings.resetNumbers(number.type); + props.onNumber(number.type); }}> {number.thumb.length < 1 ? @@ -608,7 +593,7 @@ const PageNumbers = props => { ))} ) -}; +}); const PageBulletsAndNumbers = props => { const { t } = useTranslation(); diff --git a/apps/presentationeditor/mobile/src/view/settings/ApplicationSettings.jsx b/apps/presentationeditor/mobile/src/view/settings/ApplicationSettings.jsx index 9a929743d..2007144e9 100644 --- a/apps/presentationeditor/mobile/src/view/settings/ApplicationSettings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/ApplicationSettings.jsx @@ -37,8 +37,7 @@ const PageApplicationSettings = props => { onChange={() => changeMeasureSettings(2)}> - - {_t.textSpellcheck} + { store.changeSpellCheck(!isSpellChecking); diff --git a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx index 50bf74b60..dc83664a6 100644 --- a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx @@ -86,9 +86,12 @@ const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer( } const onPrint = () => { - closeModal(); const api = Common.EditorApi.get(); - api.asc_Print(); + + closeModal(); + setTimeout(() => { + api.asc_Print(); + }, 400); }; const showHelp = () => { diff --git a/apps/spreadsheeteditor/embed/locale/id.json b/apps/spreadsheeteditor/embed/locale/id.json index 74414bda4..d2ba60a9a 100644 --- a/apps/spreadsheeteditor/embed/locale/id.json +++ b/apps/spreadsheeteditor/embed/locale/id.json @@ -13,10 +13,15 @@ "SSE.ApplicationController.errorDefaultMessage": "Kode kesalahan %1", "SSE.ApplicationController.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.", "SSE.ApplicationController.errorFileSizeExceed": "Dokumen melebihi ukuran ", + "SSE.ApplicationController.errorForceSave": "Ada kesalahan saat menyimpan file. Silakan gunakan opsi 'Download sebagai' untuk menyimpan file ke komputer Anda dan coba lagi.", + "SSE.ApplicationController.errorLoadingFont": "Font tidak bisa dimuat.
    Silakan kontak admin Server Dokumen Anda.", + "SSE.ApplicationController.errorTokenExpire": "Token keamanan dokumen sudah kadaluwarsa.
    Silakan hubungi admin Server Dokumen Anda.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Huhungan internet telah", "SSE.ApplicationController.errorUserDrop": "File tidak dapat di akses", "SSE.ApplicationController.notcriticalErrorTitle": "Peringatan", + "SSE.ApplicationController.openErrorText": "Eror ketika membuka file.", "SSE.ApplicationController.scriptLoadError": "Hubungan terlalu lambat", + "SSE.ApplicationController.textAnonymous": "Anonim", "SSE.ApplicationController.textGuest": "Tamu", "SSE.ApplicationController.textLoadingDocument": "Memuat spread sheet", "SSE.ApplicationController.textOf": "Dari", diff --git a/apps/spreadsheeteditor/embed/locale/lo.json b/apps/spreadsheeteditor/embed/locale/lo.json index 8d9769b51..6410eceb7 100644 --- a/apps/spreadsheeteditor/embed/locale/lo.json +++ b/apps/spreadsheeteditor/embed/locale/lo.json @@ -13,10 +13,16 @@ "SSE.ApplicationController.errorDefaultMessage": "ລະຫັດຂໍ້ຜິດພາດ: %1", "SSE.ApplicationController.errorFilePassProtect": "ມີລະຫັດປົກປ້ອງຟາຍນີ້ຈຶ່ງບໍ່ສາມາດເປີດໄດ້", "SSE.ApplicationController.errorFileSizeExceed": "ຂະໜາດຂອງຟາຍໃຫຍ່ກວ່າທີ່ກຳນົດໄວ້ໃນລະບົບ.
    ກະລຸນະຕິດຕໍ່ຜູ້ຄຸ້ມຄອງລົບຂອງທ່ານ", + "SSE.ApplicationController.errorForceSave": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເບັນທຶກຝາຍ. ກະລຸນາໃຊ້ຕົວເລືອກ 'ດາວໂຫລດເປັນ' ເພື່ອບັນທຶກເອກະສານໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານຫຼືລອງໃໝ່ພາຍຫຼັງ.", + "SSE.ApplicationController.errorLoadingFont": "ຟອນບໍ່ໄດ້ຖືກໂຫລດ.
    ກະລຸນາແອດມີນຂອງທ່ານ.", + "SSE.ApplicationController.errorTokenExpire": "ເຄື່ອງໝາຍຄວາມປອດໄພຂອງເອກະສານໄດ້ໝົດອາຍຸແລ້ວ.
    ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບເອກະສານຂອງທ່ານ.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "ການເຊື່ອຕໍ່ອິນເຕີເນັດຫາກໍ່ກັບມາ, ແລະຟາຍເອກະສານໄດ້ມີການປ່ຽນແປງແລ້ວ. ກ່ອນທີ່ທ່ານຈະດຳເນີການຕໍ່ໄປ, ທ່ານຕ້ອງໄດ້ດາວໂຫຼດຟາຍ ຫຼືສຳເນົາເນື້ອຫາ ເພື່ອປ້ອງການການສູນເສຍ, ແລະກໍ່ທຳການໂຫຼດໜ້າຄືນອີກຄັ້ງ.", "SSE.ApplicationController.errorUserDrop": "ບໍ່ສາມາດເຂົ້າເຖິງຟາຍໄດ້", "SSE.ApplicationController.notcriticalErrorTitle": "ເຕືອນ", + "SSE.ApplicationController.openErrorText": "ມີຂໍ້ຜິດພາດເກີດຂື້ນໃນຂະນະເປີດເອກະສານ.", "SSE.ApplicationController.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່", + "SSE.ApplicationController.textAnonymous": "ບໍ່ລະບຸຊື່", + "SSE.ApplicationController.textGuest": " ແຂກ", "SSE.ApplicationController.textLoadingDocument": "ກຳລັງໂຫຼດ", "SSE.ApplicationController.textOf": "ຂອງ", "SSE.ApplicationController.txtClose": "ປິດ", diff --git a/apps/spreadsheeteditor/embed/locale/pt-PT.json b/apps/spreadsheeteditor/embed/locale/pt-PT.json new file mode 100644 index 000000000..6bf55600d --- /dev/null +++ b/apps/spreadsheeteditor/embed/locale/pt-PT.json @@ -0,0 +1,38 @@ +{ + "common.view.modals.txtCopy": "Copiar para a área de transferência", + "common.view.modals.txtEmbed": "Incorporar", + "common.view.modals.txtHeight": "Altura", + "common.view.modals.txtShare": "Partilhar ligação", + "common.view.modals.txtWidth": "Largura", + "SSE.ApplicationController.convertationErrorText": "Falha na conversão.", + "SSE.ApplicationController.convertationTimeoutText": "Excedeu o tempo limite de conversão.", + "SSE.ApplicationController.criticalErrorTitle": "Erro", + "SSE.ApplicationController.downloadErrorText": "Falha ao descarregar.", + "SSE.ApplicationController.downloadTextText": "A descarregar folha de cálculo...", + "SSE.ApplicationController.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissão.
    Contacte o administrador do servidor de documentos.", + "SSE.ApplicationController.errorDefaultMessage": "Código de erro: %1", + "SSE.ApplicationController.errorFilePassProtect": "O documento está protegido por palavra-passe e não pode ser aberto.", + "SSE.ApplicationController.errorFileSizeExceed": "O tamanho do documento excede o limite do servidor.
    Contacte o administrador do servidor de documentos para mais detalhes.", + "SSE.ApplicationController.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar como' para guardar o ficheiro no computador ou tente novamente mais tarde.", + "SSE.ApplicationController.errorLoadingFont": "Tipos de letra não carregados.
    Por favor contacte o administrador do servidor de documentos.", + "SSE.ApplicationController.errorTokenExpire": "O token de segurança do documento expirou.
    Entre em contacto com o administrador do Servidor de Documentos.", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro foi alterada.
    Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e depois recarregue esta página.", + "SSE.ApplicationController.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", + "SSE.ApplicationController.notcriticalErrorTitle": "Aviso", + "SSE.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o ficheiro.", + "SSE.ApplicationController.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Recarregue a página.", + "SSE.ApplicationController.textAnonymous": "Anónimo", + "SSE.ApplicationController.textGuest": "Convidado", + "SSE.ApplicationController.textLoadingDocument": "A carregar folha de cálculo", + "SSE.ApplicationController.textOf": "de", + "SSE.ApplicationController.txtClose": "Fechar", + "SSE.ApplicationController.unknownErrorText": "Erro desconhecido.", + "SSE.ApplicationController.unsupportedBrowserErrorText": "O seu navegador não é suportado.", + "SSE.ApplicationController.waitText": "Aguarde…", + "SSE.ApplicationView.txtDownload": "Descarregar", + "SSE.ApplicationView.txtEmbed": "Incorporar", + "SSE.ApplicationView.txtFileLocation": "Abrir localização do ficheiro", + "SSE.ApplicationView.txtFullScreen": "Ecrã inteiro", + "SSE.ApplicationView.txtPrint": "Imprimir", + "SSE.ApplicationView.txtShare": "Partilhar" +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/sk.json b/apps/spreadsheeteditor/embed/locale/sk.json index 52d3bc24e..767c7af8f 100644 --- a/apps/spreadsheeteditor/embed/locale/sk.json +++ b/apps/spreadsheeteditor/embed/locale/sk.json @@ -15,9 +15,11 @@ "SSE.ApplicationController.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
    Kontaktujte prosím vášho správcu dokumentového servera o ďalšie podrobnosti.", "SSE.ApplicationController.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", "SSE.ApplicationController.errorLoadingFont": "Fonty sa nenahrali.
    Kontaktujte prosím svojho administrátora Servera dokumentov.", + "SSE.ApplicationController.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
    Prosím, kontaktujte svojho správcu dokumentového servera. ", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetové spojenie bolo obnovené a verzia súboru bola zmenená.
    Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", "SSE.ApplicationController.errorUserDrop": "K súboru teraz nie je možné získať prístup.", "SSE.ApplicationController.notcriticalErrorTitle": "Upozornenie", + "SSE.ApplicationController.openErrorText": "Pri otváraní súboru sa vyskytla chyba.", "SSE.ApplicationController.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", "SSE.ApplicationController.textAnonymous": "Anonymný", "SSE.ApplicationController.textGuest": "Hosť", diff --git a/apps/spreadsheeteditor/embed/locale/zh-TW.json b/apps/spreadsheeteditor/embed/locale/zh-TW.json new file mode 100644 index 000000000..2da2ddbfa --- /dev/null +++ b/apps/spreadsheeteditor/embed/locale/zh-TW.json @@ -0,0 +1,38 @@ +{ + "common.view.modals.txtCopy": "複製到剪貼板", + "common.view.modals.txtEmbed": "嵌入", + "common.view.modals.txtHeight": "\n高度", + "common.view.modals.txtShare": "分享連結", + "common.view.modals.txtWidth": "寬度", + "SSE.ApplicationController.convertationErrorText": "轉換失敗。", + "SSE.ApplicationController.convertationTimeoutText": "轉換逾時。", + "SSE.ApplicationController.criticalErrorTitle": "錯誤", + "SSE.ApplicationController.downloadErrorText": "下載失敗", + "SSE.ApplicationController.downloadTextText": "下載電子表格中...", + "SSE.ApplicationController.errorAccessDeny": "您嘗試進行未被授權的動作
    請聯繫您的文件伺服器主機的管理者。", + "SSE.ApplicationController.errorDefaultMessage": "錯誤編號:%1", + "SSE.ApplicationController.errorFilePassProtect": "該文件受密碼保護,無法打開。", + "SSE.ApplicationController.errorFileSizeExceed": "此檔案超過這一主機限制的大小
    進一步資訊,請聯絡您的文件服務主機的管理者。", + "SSE.ApplicationController.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦機硬碟中,或稍後再試。", + "SSE.ApplicationController.errorLoadingFont": "字體未加載。
    請聯繫文件服務器管理員。", + "SSE.ApplicationController.errorTokenExpire": "此文件安全憑證(Security Token)已過期。
    請與您的Document Server管理員聯繫。", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet連接已恢復,文件版本已更改。
    在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。", + "SSE.ApplicationController.errorUserDrop": "目前無法存取該文件。", + "SSE.ApplicationController.notcriticalErrorTitle": "警告", + "SSE.ApplicationController.openErrorText": "開啟檔案時發生錯誤", + "SSE.ApplicationController.scriptLoadError": "連接速度太慢,某些組件無法加載。請重新加載頁面。", + "SSE.ApplicationController.textAnonymous": "匿名", + "SSE.ApplicationController.textGuest": "來賓帳戶", + "SSE.ApplicationController.textLoadingDocument": "加載電子表格", + "SSE.ApplicationController.textOf": "於", + "SSE.ApplicationController.txtClose": "關閉", + "SSE.ApplicationController.unknownErrorText": "未知錯誤。", + "SSE.ApplicationController.unsupportedBrowserErrorText": "不支援您的瀏覽器", + "SSE.ApplicationController.waitText": "請耐心等待...", + "SSE.ApplicationView.txtDownload": "下載", + "SSE.ApplicationView.txtEmbed": "嵌入", + "SSE.ApplicationView.txtFileLocation": "打開文件所在位置", + "SSE.ApplicationView.txtFullScreen": "全螢幕", + "SSE.ApplicationView.txtPrint": "列印", + "SSE.ApplicationView.txtShare": "分享" +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app.js b/apps/spreadsheeteditor/main/app.js index a9cf9cc1b..cbd99f6a1 100644 --- a/apps/spreadsheeteditor/main/app.js +++ b/apps/spreadsheeteditor/main/app.js @@ -165,6 +165,7 @@ require([ 'Common.Controllers.Chat', 'Common.Controllers.Comments', 'Common.Controllers.Plugins' + ,'Common.Controllers.ExternalOleEditor' ,'Common.Controllers.ReviewChanges' ,'Common.Controllers.Protection' ] @@ -203,6 +204,7 @@ require([ 'common/main/lib/controller/Comments', 'common/main/lib/controller/Chat', 'common/main/lib/controller/Plugins' + ,'common/main/lib/controller/ExternalOleEditor' ,'common/main/lib/controller/ReviewChanges' ,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Themes' diff --git a/apps/spreadsheeteditor/main/app/controller/CellEditor.js b/apps/spreadsheeteditor/main/app/controller/CellEditor.js index 7462d143d..b79e41345 100644 --- a/apps/spreadsheeteditor/main/app/controller/CellEditor.js +++ b/apps/spreadsheeteditor/main/app/controller/CellEditor.js @@ -97,7 +97,7 @@ define([ this.mode = mode; this.editor.$btnfunc[this.mode.isEdit?'removeClass':'addClass']('disabled'); - this.editor.btnNamedRanges.setVisible(this.mode.isEdit && !this.mode.isEditDiagram && !this.mode.isEditMailMerge); + this.editor.btnNamedRanges.setVisible(this.mode.isEdit && !this.mode.isEditDiagram && !this.mode.isEditMailMerge && !this.mode.isEditOle); if ( this.mode.isEdit ) { this.api.asc_registerCallback('asc_onSelectionChanged', _.bind(this.onApiSelectionChanged, this)); @@ -156,7 +156,7 @@ define([ if (this.viewmode) return; // signed file var seltype = info.asc_getSelectionType(), - coauth_disable = (!this.mode.isEditMailMerge && !this.mode.isEditDiagram) ? (info.asc_getLocked() === true || info.asc_getLockedTable() === true || info.asc_getLockedPivotTable()===true) : false; + coauth_disable = (!this.mode.isEditMailMerge && !this.mode.isEditDiagram && !this.mode.isEditOle) ? (info.asc_getLocked() === true || info.asc_getLockedTable() === true || info.asc_getLockedPivotTable()===true) : false; var is_chart_text = seltype == Asc.c_oAscSelectionType.RangeChartText, is_chart = seltype == Asc.c_oAscSelectionType.RangeChart, @@ -326,14 +326,14 @@ define([ SetDisabled: function(disabled) { this.editor.$btnfunc[!disabled && this.mode.isEdit ?'removeClass':'addClass']('disabled'); - this.editor.btnNamedRanges.setVisible(!disabled && this.mode.isEdit && !this.mode.isEditDiagram && !this.mode.isEditMailMerge); + this.editor.btnNamedRanges.setVisible(!disabled && this.mode.isEdit && !this.mode.isEditDiagram && !this.mode.isEditMailMerge && !this.mode.isEditOle); }, setPreviewMode: function(mode) { if (this.viewmode === mode) return; this.viewmode = mode; this.editor.$btnfunc[!mode && this.mode.isEdit?'removeClass':'addClass']('disabled'); - this.editor.cellNameDisabled(mode && !(this.mode.isEdit && !this.mode.isEditDiagram && !this.mode.isEditMailMerge)); + this.editor.cellNameDisabled(mode && !(this.mode.isEdit && !this.mode.isEditDiagram && !this.mode.isEditMailMerge && !this.mode.isEditOle)); } }); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index dd21ed81c..de94aa22f 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -440,7 +440,7 @@ define([ }, onApiSheetChanged: function() { - if (!this.toolbar.mode || !this.toolbar.mode.isEdit || this.toolbar.mode.isEditDiagram || this.toolbar.mode.isEditMailMerge) return; + if (!this.toolbar.mode || !this.toolbar.mode.isEdit || this.toolbar.mode.isEditDiagram || this.toolbar.mode.isEditMailMerge || this.toolbar.mode.isEditOle) return; var currentSheet = this.api.asc_getActiveWorksheetIndex(); this.onWorksheetLocked(currentSheet, this.api.asc_isWorksheetLockedOrDeleted(currentSheet)); diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index ff6f867fe..ea87aa03a 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -241,6 +241,8 @@ define([ view.pmiTextAdvanced.on('click', _.bind(me.onTextAdvanced, me)); view.mnuShapeAdvanced.on('click', _.bind(me.onShapeAdvanced, me)); view.mnuChartEdit.on('click', _.bind(me.onChartEdit, me)); + view.mnuChartData.on('click', _.bind(me.onChartData, me)); + view.mnuChartType.on('click', _.bind(me.onChartType, me)); view.mnuImgAdvanced.on('click', _.bind(me.onImgAdvanced, me)); view.mnuSlicerAdvanced.on('click', _.bind(me.onSlicerAdvanced, me)); view.textInShapeMenu.on('render:after', _.bind(me.onTextInShapeAfterRender, me)); @@ -254,6 +256,28 @@ define([ view.tableTotalMenu.on('item:click', _.bind(me.onTotalMenuClick, me)); view.menuImgMacro.on('click', _.bind(me.onImgMacro, me)); view.menuImgEditPoints.on('click', _.bind(me.onImgEditPoints, me)); + + if (!me.permissions.isEditMailMerge && !me.permissions.isEditDiagram && !me.permissions.isEditOle) { + var oleEditor = me.getApplication().getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor) { + oleEditor.on('internalmessage', _.bind(function(cmp, message) { + var command = message.data.command; + var data = message.data.data; + if (me.api) { + if (oleEditor.isEditMode()) + me.api.asc_editTableOleObject(data); + } + }, me)); + oleEditor.on('hide', _.bind(function(cmp, message) { + if (me.api) { + me.api.asc_enableKeyEvents(true); + } + setTimeout(function(){ + view.fireEvent('editcomplete', view); + }, 10); + }, me)); + } + } } else { view.menuViewCopy.on('click', _.bind(me.onCopyPaste, me)); view.menuViewUndo.on('click', _.bind(me.onUndo, me)); @@ -340,6 +364,8 @@ define([ this.api.asc_registerCallback('asc_onInputMessage', _.bind(this.onInputMessage, this)); this.api.asc_registerCallback('asc_onTableTotalMenu', _.bind(this.onTableTotalMenu, this)); this.api.asc_registerCallback('asc_onShowPivotGroupDialog', _.bind(this.onShowPivotGroupDialog, this)); + if (!this.permissions.isEditMailMerge && !this.permissions.isEditDiagram && !this.permissions.isEditOle) + this.api.asc_registerCallback('asc_doubleClickOnTableOleObject', _.bind(this.onDoubleClickOnTableOleObject, this)); } this.api.asc_registerCallback('asc_onShowForeignCursorLabel', _.bind(this.onShowForeignCursorLabel, this)); this.api.asc_registerCallback('asc_onHideForeignCursorLabel', _.bind(this.onHideForeignCursorLabel, this)); @@ -1034,6 +1060,60 @@ define([ } }, + onChartData: function(btn) { + var me = this; + var props; + if (me.api){ + props = me.api.asc_getChartObject(); + if (props) { + me._isEditRanges = true; + props.startEdit(); + var win = new SSE.Views.ChartDataDialog({ + chartSettings: props, + api: me.api, + handler: function(result, value) { + if (result == 'ok') { + props.endEdit(); + me._isEditRanges = false; + } + Common.NotificationCenter.trigger('edit:complete', me); + } + }).on('close', function() { + me._isEditRanges && props.cancelEdit(); + me._isEditRanges = false; + }); + win.show(); + } + } + }, + + onChartType: function(btn) { + var me = this; + var props; + if (me.api){ + props = me.api.asc_getChartObject(); + if (props) { + me._isEditType = true; + props.startEdit(); + var win = new SSE.Views.ChartTypeDialog({ + chartSettings: props, + api: me.api, + handler: function(result, value) { + if (result == 'ok') { + props.endEdit(); + me._isEditType = false; + } + Common.NotificationCenter.trigger('edit:complete', me); + } + }).on('close', function() { + me._isEditType && props.cancelEdit(); + me._isEditType = false; + }); + win.show(); + } + } + }, + onImgMacro: function(item) { var me = this; @@ -1832,7 +1912,8 @@ define([ isPivotLocked = cellinfo.asc_getLockedPivotTable()===true, isObjLocked = false, commentsController = this.getApplication().getController('Common.Controllers.Comments'), - internaleditor = this.permissions.isEditMailMerge || this.permissions.isEditDiagram, + internaleditor = this.permissions.isEditMailMerge || this.permissions.isEditDiagram || this.permissions.isEditOle, + diagramOrMergeEditor = this.permissions.isEditMailMerge || this.permissions.isEditDiagram, xfs = cellinfo.asc_getXfs(), isSmartArt = false, isSmartArtInternal = false; @@ -1843,11 +1924,11 @@ define([ case Asc.c_oAscSelectionType.RangeCol: iscolmenu = true; break; case Asc.c_oAscSelectionType.RangeMax: isallmenu = true; break; case Asc.c_oAscSelectionType.RangeSlicer: - case Asc.c_oAscSelectionType.RangeImage: isimagemenu = !internaleditor; break; - case Asc.c_oAscSelectionType.RangeShape: isshapemenu = !internaleditor; break; - case Asc.c_oAscSelectionType.RangeChart: ischartmenu = !internaleditor; break; - case Asc.c_oAscSelectionType.RangeChartText:istextchartmenu = !internaleditor; break; - case Asc.c_oAscSelectionType.RangeShapeText: istextshapemenu = !internaleditor; break; + case Asc.c_oAscSelectionType.RangeImage: isimagemenu = !(this.permissions.isEditMailMerge || this.permissions.isEditDiagram); break; + case Asc.c_oAscSelectionType.RangeShape: isshapemenu = !(this.permissions.isEditMailMerge || this.permissions.isEditDiagram); break; + case Asc.c_oAscSelectionType.RangeChart: ischartmenu = !(this.permissions.isEditMailMerge || this.permissions.isEditDiagram); break; + case Asc.c_oAscSelectionType.RangeChartText:istextchartmenu = !(this.permissions.isEditMailMerge || this.permissions.isEditDiagram); break; + case Asc.c_oAscSelectionType.RangeShapeText: istextshapemenu = !(this.permissions.isEditMailMerge || this.permissions.isEditDiagram); break; } if (this.api.asc_getHeaderFooterMode()) { @@ -1918,6 +1999,10 @@ define([ documentHolder.mnuShapeAdvanced.setDisabled(isObjLocked); documentHolder.mnuChartEdit.setVisible(ischartmenu && !isimagemenu && !isshapemenu && has_chartprops); documentHolder.mnuChartEdit.setDisabled(isObjLocked); + documentHolder.mnuChartData.setVisible(this.permissions.isEditOle && ischartmenu && !isimagemenu && !isshapemenu && has_chartprops); + documentHolder.mnuChartData.setDisabled(isObjLocked); + documentHolder.mnuChartType.setVisible(this.permissions.isEditOle && ischartmenu && !isimagemenu && !isshapemenu && has_chartprops); + documentHolder.mnuChartType.setDisabled(isObjLocked); documentHolder.pmiImgCut.setDisabled(isObjLocked); documentHolder.pmiImgPaste.setDisabled(isObjLocked); documentHolder.mnuImgAdvanced.setVisible(isimagemenu && (!isshapemenu || isimageonly) && !ischartmenu); @@ -1937,6 +2022,8 @@ define([ documentHolder.menuImgRotate.setVisible(!ischartmenu && (pluginGuid===null || pluginGuid===undefined) && !isslicermenu); documentHolder.menuImgRotate.setDisabled(isObjLocked || isSmartArt); + documentHolder.menuImgRotate.menu.items[3].setDisabled(isSmartArtInternal); + documentHolder.menuImgRotate.menu.items[4].setDisabled(isSmartArtInternal); documentHolder.menuImgCrop.setVisible(this.api.asc_canEditCrop()); documentHolder.menuImgCrop.setDisabled(isObjLocked); @@ -1946,6 +2033,7 @@ define([ documentHolder.menuSignatureEditSetup.setVisible(isInSign); documentHolder.menuEditSignSeparator.setVisible(isInSign); + documentHolder.menuImgMacro.setVisible(!internaleditor); documentHolder.menuImgMacro.setDisabled(isObjLocked); var canEditPoints = this.api && this.api.asc_canEditGeometry(); @@ -2059,8 +2147,10 @@ define([ if (showMenu) this.showPopupMenu(documentHolder.textInShapeMenu, {}, event); documentHolder.menuParagraphBullets.setDisabled(isSmartArt || isSmartArtInternal); - } else if (!this.permissions.isEditMailMerge && !this.permissions.isEditDiagram || (seltype !== Asc.c_oAscSelectionType.RangeImage && seltype !== Asc.c_oAscSelectionType.RangeShape && - seltype !== Asc.c_oAscSelectionType.RangeChart && seltype !== Asc.c_oAscSelectionType.RangeChartText && seltype !== Asc.c_oAscSelectionType.RangeShapeText && seltype !== Asc.c_oAscSelectionType.RangeSlicer)) { + } else if (!this.permissions.isEditMailMerge && !this.permissions.isEditDiagram && !this.permissions.isEditOle || + (seltype !== Asc.c_oAscSelectionType.RangeImage && seltype !== Asc.c_oAscSelectionType.RangeShape && + seltype !== Asc.c_oAscSelectionType.RangeChart && seltype !== Asc.c_oAscSelectionType.RangeChartText && + seltype !== Asc.c_oAscSelectionType.RangeShapeText && seltype !== Asc.c_oAscSelectionType.RangeSlicer)) { if (!documentHolder.ssMenu || !showMenu && !documentHolder.ssMenu.isVisible()) return; var iscelledit = this.api.isCellEdited, @@ -2083,14 +2173,14 @@ define([ documentHolder.pmiDeleteTable.setVisible(iscellmenu && !iscelledit && isintable); documentHolder.pmiSparklines.setVisible(isinsparkline); documentHolder.pmiSortCells.setVisible((iscellmenu||isallmenu) && !iscelledit && !inPivot); - documentHolder.pmiSortCells.menu.items[2].setVisible(!internaleditor); - documentHolder.pmiSortCells.menu.items[3].setVisible(!internaleditor); + documentHolder.pmiSortCells.menu.items[2].setVisible(!diagramOrMergeEditor); + documentHolder.pmiSortCells.menu.items[3].setVisible(!diagramOrMergeEditor); documentHolder.pmiSortCells.menu.items[4].setVisible(!internaleditor); - documentHolder.pmiFilterCells.setVisible(iscellmenu && !iscelledit && !internaleditor && !inPivot); - documentHolder.pmiReapply.setVisible((iscellmenu||isallmenu) && !iscelledit && !internaleditor && !inPivot); - documentHolder.pmiCondFormat.setVisible(!iscelledit && !internaleditor); - documentHolder.mnuGroupPivot.setVisible(iscellmenu && !iscelledit && !internaleditor && inPivot); - documentHolder.mnuUnGroupPivot.setVisible(iscellmenu && !iscelledit && !internaleditor && inPivot); + documentHolder.pmiFilterCells.setVisible(iscellmenu && !iscelledit && !diagramOrMergeEditor && !inPivot); + documentHolder.pmiReapply.setVisible((iscellmenu||isallmenu) && !iscelledit && !diagramOrMergeEditor && !inPivot); + documentHolder.pmiCondFormat.setVisible(!iscelledit && !diagramOrMergeEditor); + documentHolder.mnuGroupPivot.setVisible(iscellmenu && !iscelledit && !diagramOrMergeEditor && inPivot); + documentHolder.mnuUnGroupPivot.setVisible(iscellmenu && !iscelledit && !diagramOrMergeEditor && inPivot); documentHolder.ssMenu.items[12].setVisible((iscellmenu||isallmenu||isinsparkline) && !iscelledit); documentHolder.pmiInsFunction.setVisible(iscellmenu && !iscelledit && !inPivot); documentHolder.pmiAddNamedRange.setVisible(iscellmenu && !iscelledit && !internaleditor); @@ -2108,8 +2198,8 @@ define([ } var hyperinfo = cellinfo.asc_getHyperlink(); - documentHolder.menuHyperlink.setVisible(iscellmenu && hyperinfo && !iscelledit && !ismultiselect && !internaleditor && !inPivot); - documentHolder.menuAddHyperlink.setVisible(iscellmenu && !hyperinfo && !iscelledit && !ismultiselect && !internaleditor && !inPivot); + documentHolder.menuHyperlink.setVisible(iscellmenu && hyperinfo && !iscelledit && !ismultiselect && !diagramOrMergeEditor && !inPivot); + documentHolder.menuAddHyperlink.setVisible(iscellmenu && !hyperinfo && !iscelledit && !ismultiselect && !diagramOrMergeEditor && !inPivot); documentHolder.pmiRowHeight.setVisible(isrowmenu||isallmenu); documentHolder.pmiColumnWidth.setVisible(iscolmenu||isallmenu); @@ -2213,9 +2303,9 @@ define([ isCellLocked = cellinfo.asc_getLocked(), isTableLocked = cellinfo.asc_getLockedTable()===true, commentsController = this.getApplication().getController('Common.Controllers.Comments'), - iscellmenu = (seltype==Asc.c_oAscSelectionType.RangeCells) && !this.permissions.isEditMailMerge && !this.permissions.isEditDiagram, + iscellmenu = (seltype==Asc.c_oAscSelectionType.RangeCells) && !this.permissions.isEditMailMerge && !this.permissions.isEditDiagram && !this.permissions.isEditOle, iscelledit = this.api.isCellEdited, - isimagemenu = (seltype==Asc.c_oAscSelectionType.RangeShape || seltype==Asc.c_oAscSelectionType.RangeImage) && !this.permissions.isEditMailMerge && !this.permissions.isEditDiagram, + isimagemenu = (seltype==Asc.c_oAscSelectionType.RangeShape || seltype==Asc.c_oAscSelectionType.RangeImage) && !this.permissions.isEditMailMerge && !this.permissions.isEditDiagram && !this.permissions.isEditOle, signGuid; if (!documentHolder.viewModeMenu) @@ -2347,10 +2437,12 @@ define([ menu.cmpEl.attr({tabindex: "-1"}); } - var coord = me.api.asc_getActiveCellCoord(), + var coord = me.api.asc_getActiveCellCoord(validation), // get merged cell for validation offset = {left:0,top:0}, - showPoint = [coord.asc_getX() + offset.left, (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top]; + showPoint = [coord.asc_getX() + offset.left + (validation ? coord.asc_getWidth() : 0), (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top]; + menuContainer.css({left: showPoint[0], top : showPoint[1]}); + menu.menuAlign = validation ? 'tr-br' : 'tl-bl'; me._preventClick = validation; validation && menuContainer.attr('data-value', 'prevent-canvas-click'); @@ -2405,7 +2497,7 @@ define([ var coord = me.api.asc_getActiveCellCoord(), offset = {left:0,top:0}, - showPoint = [coord.asc_getX() + offset.left, (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top]; + showPoint = [coord.asc_getX() + offset.left + coord.asc_getWidth(), (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top]; menuContainer.css({left: showPoint[0], top : showPoint[1]}); me._preventClick = true; @@ -2449,13 +2541,15 @@ define([ } funcarr.sort(function (a,b) { var atype = a.asc_getType(), - btype = b.asc_getType(), - aname = a.asc_getName(true).toLocaleUpperCase(), - bname = b.asc_getName(true).toLocaleUpperCase(); + btype = b.asc_getType(); + if (atype===btype && (atype === Asc.c_oAscPopUpSelectorType.TableColumnName)) + return 0; if (atype === Asc.c_oAscPopUpSelectorType.TableThisRow) return -1; if (btype === Asc.c_oAscPopUpSelectorType.TableThisRow) return 1; if ((atype === Asc.c_oAscPopUpSelectorType.TableColumnName || btype === Asc.c_oAscPopUpSelectorType.TableColumnName) && atype !== btype) return atype === Asc.c_oAscPopUpSelectorType.TableColumnName ? -1 : 1; + var aname = a.asc_getName(true).toLocaleUpperCase(), + bname = b.asc_getName(true).toLocaleUpperCase(); if (aname < bname) return -1; if (aname > bname) return 1; return 0; @@ -3884,6 +3978,17 @@ define([ } }, + onDoubleClickOnTableOleObject: function(obj) { + if (this.permissions.isEdit && !this._isDisabled) { + var oleEditor = SSE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor && obj) { + oleEditor.setEditMode(true); + oleEditor.show(); + oleEditor.setOleData(Asc.asc_putBinaryDataToFrameFromTableOleObject(obj)); + } + } + }, + getUserName: function(id){ var usersStore = SSE.getCollection('Common.Collections.Users'); if (usersStore){ diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index 6c691cf16..f4a12ab42 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -176,7 +176,7 @@ define([ } } /** coauthoring end **/ - if (!this.mode.isEditMailMerge && !this.mode.isEditDiagram) + if (!this.mode.isEditMailMerge && !this.mode.isEditDiagram && !this.mode.isEditOle) this.api.asc_registerCallback('asc_onEditCell', _.bind(this.onApiEditCell, this)); this.leftMenu.getMenu('file').setApi(api); if (this.mode.canUseHistory) @@ -249,7 +249,7 @@ define([ (this.mode.trialMode || this.mode.isBeta) && this.leftMenu.setDeveloperMode(this.mode.trialMode, this.mode.isBeta, this.mode.buildVersion); /** coauthoring end **/ Common.util.Shortcuts.resumeEvents(); - if (!this.mode.isEditMailMerge && !this.mode.isEditDiagram) + if (!this.mode.isEditMailMerge && !this.mode.isEditDiagram && !this.mode.isEditOle) Common.NotificationCenter.on('cells:range', _.bind(this.onCellsRange, this)); return this; }, @@ -449,6 +449,10 @@ define([ Common.Utils.InternalSettings.set("sse-settings-coauthmode", fast_coauth); this.api.asc_SetFastCollaborative(fast_coauth); } + } else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + fast_coauth = Common.localStorage.getBool("sse-settings-view-coauthmode", false); + Common.Utils.InternalSettings.set("sse-settings-coauthmode", fast_coauth); + this.api.asc_SetFastCollaborative(fast_coauth); } /** coauthoring end **/ @@ -867,6 +871,7 @@ define([ if (this.mode.isEditDiagram && s!='escape') return false; if (this.mode.isEditMailMerge && s!='escape' && s!='search') return false; + if (this.mode.isEditOle && s!='escape' && s!='search') return false; switch (s) { case 'replace': @@ -877,7 +882,8 @@ define([ this.leftMenu.btnSearch.toggle(true,true); this.leftMenu.btnAbout.toggle(false); - this.leftMenu.menuFile.hide(); + if ( this.leftMenu.menuFile.isVisible() ) + this.leftMenu.menuFile.hide(); } return false; case 'save': @@ -931,7 +937,7 @@ define([ } return false; } - if (this.mode.isEditDiagram || this.mode.isEditMailMerge) { + if (this.mode.isEditDiagram || this.mode.isEditMailMerge || this.mode.isEditOle) { menu_opened = $(document.body).find('.open > .dropdown-menu'); if (!this.api.isCellEdited && !menu_opened.length) { Common.Gateway.internalMessage('shortcut', {key:'escape'}); diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 6a093031b..e38e48a33 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -264,7 +264,7 @@ define([ if ((!Common.Utils.ModalWindow.isVisible() || $('.asc-window.enable-key-events:visible').length>0) && !(me.loadMask && me.loadMask.isVisible())) { if (/form-control/.test(e.target.className)) me.inFormControl = false; - if (me.getApplication().getController('LeftMenu').getView('LeftMenu').getMenu('file').isVisible()) + if (me.getApplication().getController('LeftMenu').getView('LeftMenu').getMenu('file').isVisible() && $('.asc-window.enable-key-events:visible').length === 0) return; if (!e.relatedTarget || !/area_id/.test(e.target.id) @@ -398,6 +398,7 @@ define([ this.appOptions.fileChoiceUrl = this.editorConfig.fileChoiceUrl; this.appOptions.isEditDiagram = this.editorConfig.mode == 'editdiagram'; this.appOptions.isEditMailMerge = this.editorConfig.mode == 'editmerge'; + this.appOptions.isEditOle = this.editorConfig.mode == 'editole'; this.appOptions.canRequestClose = this.editorConfig.canRequestClose; this.appOptions.canBackToFolder = (this.editorConfig.canBackToFolder!==false) && (typeof (this.editorConfig.customization) == 'object') && (typeof (this.editorConfig.customization.goback) == 'object') && (!_.isEmpty(this.editorConfig.customization.goback.url) || this.editorConfig.customization.goback.requestClose && this.appOptions.canRequestClose); @@ -414,7 +415,7 @@ define([ this.appOptions.canFeaturePivot = true; this.appOptions.canFeatureViews = true; - if (this.appOptions.user.guest && this.appOptions.canRenameAnonymous && !this.appOptions.isEditDiagram && !this.appOptions.isEditMailMerge) + if (this.appOptions.user.guest && this.appOptions.canRenameAnonymous && !this.appOptions.isEditDiagram && !this.appOptions.isEditMailMerge && !this.appOptions.isEditOle) Common.NotificationCenter.on('user:rename', _.bind(this.showRenameUserDialog, this)); this.headerView = this.getApplication().getController('Viewport').getView('Common.Views.Header'); @@ -464,10 +465,10 @@ define([ this.appOptions.wopi = this.editorConfig.wopi; - this.isFrameClosed = (this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge); + this.isFrameClosed = (this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle); Common.Controllers.Desktop.init(this.appOptions); - if (this.appOptions.isEditDiagram) { + if (this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle) { Common.UI.HintManager.setMode(this.appOptions); } }, @@ -503,6 +504,9 @@ define([ docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); + if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) + docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + var enable = !this.editorConfig.customization || (this.editorConfig.customization.macros!==false); docInfo.asc_putIsEnabledMacroses(!!enable); enable = !this.editorConfig.customization || (this.editorConfig.customization.plugins!==false); @@ -714,6 +718,7 @@ define([ this.onEditComplete(this.loadMask, {restorefocus:true}); } if ( id == Asc.c_oAscAsyncAction['Disconnect']) { + this._state.timerDisconnect && clearTimeout(this._state.timerDisconnect); this.disableEditing(false, true); this.getApplication().getController('Statusbar').hideDisconnectTip(); this.getApplication().getController('Statusbar').setStatusCaption(this.textReconnect); @@ -800,7 +805,9 @@ define([ this.disableEditing(true, true); var me = this; statusCallback = function() { - me.getApplication().getController('Statusbar').showDisconnectTip(); + me._state.timerDisconnect = setTimeout(function(){ + me.getApplication().getController('Statusbar').showDisconnectTip(); + }, me._state.unloadTimer || 0); }; break; @@ -852,7 +859,7 @@ define([ me.hidePreloader(); me.onLongActionEnd(Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument); - value = (this.appOptions.isEditMailMerge || this.appOptions.isEditDiagram) ? 100 : Common.localStorage.getItem("sse-settings-zoom"); + value = (this.appOptions.isEditMailMerge || this.appOptions.isEditDiagram || this.appOptions.isEditOle) ? 100 : Common.localStorage.getItem("sse-settings-zoom"); Common.Utils.InternalSettings.set("sse-settings-zoom", value); var zf = (value!==null) ? parseInt(value)/100 : (this.appOptions.customization && this.appOptions.customization.zoom ? parseInt(this.appOptions.customization.zoom)/100 : 1); this.api.asc_setZoom(zf>0 ? zf : 1); @@ -908,14 +915,15 @@ define([ leftMenuView.getMenu('file').loadDocument({doc:me.appOptions.spreadsheet}); leftmenuController.setMode(me.appOptions).createDelayedElements().setApi(me.api); - if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram) { + if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && !me.appOptions.isEditOle) { pluginsController.setApi(me.api); this.api && this.api.asc_setFrozenPaneBorderType(Common.localStorage.getBool('sse-freeze-shadow', true) ? Asc.c_oAscFrozenPaneBorderType.shadow : Asc.c_oAscFrozenPaneBorderType.line); + application.getController('Common.Controllers.ExternalOleEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); } leftMenuView.disableMenu('all',false); - if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && me.appOptions.canBranding) { + if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && !me.appOptions.isEditOle && me.appOptions.canBranding) { me.getApplication().getController('LeftMenu').leftMenu.getMenu('about').setLicInfo(me.editorConfig.customization); } @@ -952,7 +960,7 @@ define([ } var timer_sl = setInterval(function(){ - if (window.styles_loaded || me.appOptions.isEditDiagram || me.appOptions.isEditMailMerge) { + if (window.styles_loaded || me.appOptions.isEditDiagram || me.appOptions.isEditMailMerge || me.appOptions.isEditOle) { clearInterval(timer_sl); Common.NotificationCenter.trigger('comments:updatefilter', ['doc', 'sheet' + me.api.asc_getActiveWorksheetId()]); @@ -961,13 +969,15 @@ define([ toolbarController.createDelayedElements(); me.setLanguages(); - if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram) { + if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && !me.appOptions.isEditOle) { var shapes = me.api.asc_getPropertyEditorShapes(); if (shapes) me.fillAutoShapes(shapes[0], shapes[1]); me.updateThemeColors(); toolbarController.activateControls(); + } else if (me.appOptions.isEditOle) { + me.updateThemeColors(); } rightmenuController.createDelayedElements(); @@ -994,7 +1004,7 @@ define([ me.applyLicense(); } // TODO bug 43960 - if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram) { + if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && !me.appOptions.isEditOle) { var dummyClass = ~~(1e6*Math.random()); $('.toolbar').prepend(Common.Utils.String.format('
    ', dummyClass)); setTimeout(function() { $(Common.Utils.String.format('.toolbar .lazy-{0}', dummyClass)).remove(); }, 10); @@ -1031,12 +1041,12 @@ define([ } else checkWarns(); Common.Gateway.documentReady(); - if (this.appOptions.user.guest && this.appOptions.canRenameAnonymous && !this.appOptions.isEditDiagram && !this.appOptions.isEditMailMerge && (Common.Utils.InternalSettings.get("guest-username")===null)) + if (this.appOptions.user.guest && this.appOptions.canRenameAnonymous && !this.appOptions.isEditDiagram && !this.appOptions.isEditMailMerge && !this.appOptions.isEditOle && (Common.Utils.InternalSettings.get("guest-username")===null)) this.showRenameUserDialog(); }, onLicenseChanged: function(params) { - if (this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge) return; + if (this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle) return; var licType = params.asc_getLicenseType(); if (licType !== undefined && (this.appOptions.canEdit || this.appOptions.isRestrictedEdit) && this.editorConfig.mode !== 'view' && @@ -1089,7 +1099,7 @@ define([ } }); } - } else if (!this.appOptions.isDesktopApp && !this.appOptions.canBrandingExt && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge) && + } else if (!this.appOptions.isDesktopApp && !this.appOptions.canBrandingExt && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle) && this.editorConfig && this.editorConfig.customization && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo)) { Common.UI.warning({ title: this.textPaidFeature, @@ -1185,7 +1195,7 @@ define([ onEditorPermissions: function(params) { var licType = params ? params.asc_getLicenseType() : Asc.c_oLicenseResult.Error; - if ( params && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge)) { + if ( params && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle)) { if (Asc.c_oLicenseResult.Expired === licType || Asc.c_oLicenseResult.Error === licType || Asc.c_oLicenseResult.ExpiredTrial === licType) { Common.UI.warning({ title: this.titleLicenseExp, @@ -1251,10 +1261,10 @@ define([ this.appOptions.canRequestEditRights = this.editorConfig.canRequestEditRights; this.appOptions.canEdit = this.permissions.edit !== false && // can edit (this.editorConfig.canRequestEditRights || this.editorConfig.mode !== 'view'); // if mode=="view" -> canRequestEditRights must be defined - this.appOptions.isEdit = (this.appOptions.canLicense || this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge) && this.permissions.edit !== false && this.editorConfig.mode !== 'view'; + this.appOptions.isEdit = (this.appOptions.canLicense || this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle) && this.permissions.edit !== false && this.editorConfig.mode !== 'view'; this.appOptions.canDownload = (this.permissions.download !== false); this.appOptions.canPrint = (this.permissions.print !== false); - this.appOptions.canForcesave = this.appOptions.isEdit && !this.appOptions.isOffline && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge) && + this.appOptions.canForcesave = this.appOptions.isEdit && !this.appOptions.isOffline && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle) && (typeof (this.editorConfig.customization) == 'object' && !!this.editorConfig.customization.forcesave); this.appOptions.forcesave = this.appOptions.canForcesave; this.appOptions.canEditComments= this.appOptions.isOffline || !this.permissions.editCommentAuthorOnly; @@ -1265,17 +1275,19 @@ define([ this.appOptions.canEditComments = this.appOptions.canDeleteComments = this.appOptions.isOffline; } this.appOptions.isSignatureSupport= this.appOptions.isEdit && this.appOptions.isDesktopApp && this.appOptions.isOffline && this.api.asc_isSignaturesSupport() && (this.permissions.protect!==false) - && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge); + && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle); this.appOptions.isPasswordSupport = this.appOptions.isEdit && this.api.asc_isProtectionSupport() && (this.permissions.protect!==false) - && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge); + && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle); this.appOptions.canProtect = (this.appOptions.isSignatureSupport || this.appOptions.isPasswordSupport); this.appOptions.canHelp = !((typeof (this.editorConfig.customization) == 'object') && this.editorConfig.customization.help===false); this.appOptions.isRestrictedEdit = !this.appOptions.isEdit && this.appOptions.canComments; - this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge) && this.appOptions.canCoAuthoring && - !(typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false); + // change = true by default in editor, change = false by default in viewer + this.appOptions.canChangeCoAuthoring = this.appOptions.isEdit && !(this.appOptions.isEditDiagram || this.appOptions.isEditMailMerge || this.appOptions.isEditOle) && this.appOptions.canCoAuthoring && + !(typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===false) || + !this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.change===true) ; - if (!this.appOptions.isEditDiagram && !this.appOptions.isEditMailMerge) { + if (!this.appOptions.isEditDiagram && !this.appOptions.isEditMailMerge && !this.appOptions.isEditOle) { this.appOptions.canBrandingExt = params.asc_getCanBranding() && (typeof this.editorConfig.customization == 'object' || this.editorConfig.plugins); this.getApplication().getController('Common.Controllers.Plugins').setMode(this.appOptions); this.appOptions.canBrandingExt && this.editorConfig.customization && Common.UI.LayoutManager.init(this.editorConfig.customization.layout); @@ -1330,6 +1342,16 @@ define([ fastCoauth = (value===null || parseInt(value) == 1); } else if (!this.appOptions.isEdit && this.appOptions.isRestrictedEdit) { fastCoauth = true; + } else if (!this.appOptions.isEdit && !this.appOptions.isRestrictedEdit && !this.appOptions.isOffline) { // viewer + if (!this.appOptions.canChangeCoAuthoring) { //can't change co-auth. mode. Use coEditing.mode or 'strict' by default + value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; + } else { + value = Common.localStorage.getItem("sse-settings-view-coauthmode"); + if (value===null) { + value = this.editorConfig.coEditing && this.editorConfig.coEditing.mode==='fast' ? 1 : 0; + } + } + fastCoauth = (parseInt(value) == 1); } else { fastCoauth = false; autosave = 0; @@ -1354,7 +1376,7 @@ define([ statusbarView = app.getController('Statusbar').getView('Statusbar'); if (this.headerView) { - this.headerView.setVisible(!this.appOptions.isEditMailMerge && !this.appOptions.isDesktopApp && !this.appOptions.isEditDiagram); + this.headerView.setVisible(!this.appOptions.isEditMailMerge && !this.appOptions.isDesktopApp && !this.appOptions.isEditDiagram && !this.appOptions.isEditOle); } viewport && viewport.setMode(this.appOptions, true); @@ -1366,6 +1388,8 @@ define([ if (this.appOptions.isEditMailMerge || this.appOptions.isEditDiagram) { statusbarView.hide(); + } + if (this.appOptions.isEditMailMerge || this.appOptions.isEditDiagram || this.appOptions.isEditOle) { app.getController('LeftMenu').getView('LeftMenu').hide(); $(window) @@ -1379,15 +1403,15 @@ define([ },this)); } - if (!this.appOptions.isEditMailMerge && !this.appOptions.isEditDiagram) { + if (!this.appOptions.isEditMailMerge && !this.appOptions.isEditDiagram && !this.appOptions.isEditOle) { this.api.asc_registerCallback('asc_onSendThemeColors', _.bind(this.onSendThemeColors, this)); this.api.asc_registerCallback('asc_onDownloadUrl', _.bind(this.onDownloadUrl, this)); this.api.asc_registerCallback('asc_onDocumentModifiedChanged', _.bind(this.onDocumentModifiedChanged, this)); var printController = app.getController('Print'); printController && this.api && printController.setApi(this.api); - - } + } else if (this.appOptions.isEditOle) + this.api.asc_registerCallback('asc_onSendThemeColors', _.bind(this.onSendThemeColors, this)); var celleditorController = this.getApplication().getController('CellEditor'); celleditorController && celleditorController.setApi(this.api).setMode(this.appOptions); @@ -1434,10 +1458,11 @@ define([ application.getController('WBProtection').setMode(me.appOptions).setConfig({config: me.editorConfig}, me.api); if (statusbarController) { - statusbarController.getView('Statusbar').changeViewMode(true); + statusbarController.getView('Statusbar').changeViewMode(me.appOptions); + me.appOptions.isEditOle && statusbarController.onChangeViewMode(null, true, true); // set compact status bar for ole editing mode } - if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && me.appOptions.canFeaturePivot) + if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && !me.appOptions.isEditOle && me.appOptions.canFeaturePivot) application.getController('PivotTable').setMode(me.appOptions); var viewport = this.getApplication().getController('Viewport').getView('Viewport'); @@ -1446,7 +1471,7 @@ define([ this.toolbarView = toolbarController.getView('Toolbar'); - if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram) { + if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && !me.appOptions.isEditOle) { var options = {}; JSON.parse(Common.localStorage.getItem('sse-hidden-formula')) && (options.formula = true); application.getController('Toolbar').hideElements(options); @@ -2063,16 +2088,19 @@ define([ onBeforeUnload: function() { Common.localStorage.save(); - var isEdit = this.permissions.edit !== false && this.editorConfig.mode !== 'view' && this.editorConfig.mode !== 'editdiagram' && this.editorConfig.mode !== 'editmerge'; + var isEdit = this.permissions.edit !== false && this.editorConfig.mode !== 'view' && this.editorConfig.mode !== 'editdiagram' && this.editorConfig.mode !== 'editmerge' && this.editorConfig.mode !== 'editole'; if (isEdit && this.api.asc_isDocumentModified()) { var me = this; this.api.asc_stopSaving(); + this._state.unloadTimer = 1000; this.continueSavingTimer = window.setTimeout(function() { me.api.asc_continueSaving(); + me._state.unloadTimer = 0; }, 500); return this.leavePageText; - } + } else + this._state.unloadTimer = 10000; }, onUnload: function() { @@ -2228,7 +2256,7 @@ define([ if (!this.appOptions.isEditMailMerge && !this.appOptions.isEditDiagram && window.editor_elements_prepared) { this.application.getController('Statusbar').selectTab(index); - if (this.appOptions.canViewComments && !this.dontCloseDummyComment) { + if (!this.appOptions.isEditOle && this.appOptions.canViewComments && !this.dontCloseDummyComment) { Common.NotificationCenter.trigger('comments:updatefilter', ['doc', 'sheet' + this.api.asc_getWorksheetId(index)], false ); // hide popover } } @@ -2450,11 +2478,11 @@ define([ updateThemeColors: function() { var me = this; - setTimeout(function(){ + !me.appOptions.isEditOle && setTimeout(function(){ me.getApplication().getController('RightMenu').UpdateThemeColors(); }, 50); - setTimeout(function(){ + !me.appOptions.isEditOle && setTimeout(function(){ me.getApplication().getController('Toolbar').updateThemeColors(); }, 50); @@ -2465,12 +2493,16 @@ define([ onSendThemeColors: function(colors, standart_colors) { Common.Utils.ThemeColor.setColors(colors, standart_colors); - if (window.styles_loaded && !this.appOptions.isEditMailMerge && !this.appOptions.isEditDiagram) { - this.updateThemeColors(); - var me = this; - setTimeout(function(){ - me.fillTextArt(); - }, 1); + if (window.styles_loaded) { + if (!this.appOptions.isEditMailMerge && !this.appOptions.isEditDiagram) + this.updateThemeColors(); + + if (!this.appOptions.isEditMailMerge && !this.appOptions.isEditDiagram && !this.appOptions.isEditOle) { + var me = this; + setTimeout(function(){ + me.fillTextArt(); + }, 1); + } } }, @@ -2491,6 +2523,8 @@ define([ case 'clearChartData': this.clearChartData(); break; case 'setMergeData': this.setMergeData(data.data); break; case 'getMergeData': this.getMergeData(); break; + case 'setOleData': this.setOleData(data.data); break; + case 'getOleData': this.getOleData(); break; case 'setAppDisabled': if (this.isAppDisabled===undefined && !data.data) { // first editor opening Common.NotificationCenter.trigger('layout:changed', 'main'); @@ -2545,6 +2579,24 @@ define([ this.api && this.api.asc_closeCellEditor(); }, + setOleData: function(obj) { + if (typeof obj === 'object' && this.api) { + this.api.asc_addTableOleObjectInOleEditor(obj); + this.isFrameClosed = false; + } + }, + + getOleData: function() { + if (this.api) { + var oleData = this.api.asc_getBinaryInfoOleObject(); + if (typeof oleData === 'object') { + Common.Gateway.internalMessage('oleData', { + data: oleData + }); + } + } + }, + setMergeData: function(merge) { if (typeof merge === 'object' && this.api) { this.api.asc_setData(merge); diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index e8af354c4..3a6f827e5 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -115,6 +115,7 @@ define([ this.api = o; this.api.asc_registerCallback('asc_onSheetsChanged', _.bind(this.updateSheetsInfo, this)); this.api.asc_registerCallback('asc_onPrintPreviewSheetChanged', _.bind(this.onApiChangePreviewSheet, this)); + this.api.asc_registerCallback('asc_onUpdateDocumentProps', _.bind(this.updateDocumentProps, this)); }, updateSheetsInfo: function() { @@ -456,8 +457,8 @@ define([ panel.spnMarginRight.on('change', _.bind(this.propertyChange, this, panel)); panel.chPrintGrid.on('change', _.bind(this.propertyChange, this, panel)); panel.chPrintRows.on('change', _.bind(this.propertyChange, this, panel)); - panel.txtRangeTop.on('changing', _.bind(this.propertyChange, this, panel)); - panel.txtRangeLeft.on('changing', _.bind(this.propertyChange, this, panel)); + panel.txtRangeTop.on('changed:after', _.bind(this.propertyChange, this, panel)); + panel.txtRangeLeft.on('changed:after', _.bind(this.propertyChange, this, panel)); panel.txtRangeTop.on('button:click', _.bind(this.onPresetSelect, this, panel, 'top', panel.btnPresetsTop.menu, {value: 'select'})); panel.txtRangeLeft.on('button:click', _.bind(this.onPresetSelect, this, panel, 'left', panel.btnPresetsLeft.menu, {value: 'select'})); panel.btnPresetsTop.menu.on('item:click', _.bind(this.onPresetSelect, this, panel, 'top')); @@ -521,7 +522,6 @@ define([ fillComponents: function(panel, selectdata) { var me = this; panel.txtRangeTop.validation = function(value) { - !me._noApply && me.propertyChange(panel); if (_.isEmpty(value)) { return true; } @@ -531,7 +531,6 @@ define([ selectdata && panel.txtRangeTop.updateBtnHint(this.textSelectRange); panel.txtRangeLeft.validation = function(value) { - !me._noApply && me.propertyChange(panel); if (_.isEmpty(value)) { return true; } @@ -644,6 +643,12 @@ define([ }, onPreviewWheel: function (e) { + if (e.ctrlKey) { + e.preventDefault(); + e.stopImmediatePropagation(); + } + this.printSettings.txtRangeTop.cmpEl.find('input:focus').blur(); + this.printSettings.txtRangeLeft.cmpEl.find('input:focus').blur(); var forward = (e.deltaY || (e.detail && -e.detail) || e.wheelDelta) < 0; this.onChangePreviewPage(forward); }, @@ -744,6 +749,13 @@ define([ this.printSettings.btnNextPage.setDisabled(curPage > pageCount - 2); }, + updateDocumentProps: function (index) { + if (this._isPreviewVisible) { + this._changedProps[index] = this.api.asc_getPageOptions(index); + this.updatePreview(); + } + }, + warnCheckMargings: 'Margins are incorrect', strAllSheets: 'All Sheets', textWarning: 'Warning', diff --git a/apps/spreadsheeteditor/main/app/controller/Statusbar.js b/apps/spreadsheeteditor/main/app/controller/Statusbar.js index 4ab02c01e..1e12a7b68 100644 --- a/apps/spreadsheeteditor/main/app/controller/Statusbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Statusbar.js @@ -86,6 +86,7 @@ define([ this.statusbar = this.createView('Statusbar').render(); this.statusbar.$el.css('z-index', 10); this.statusbar.labelZoom.css('min-width', 80); + this.statusbar.labelZoom.text(Common.Utils.String.format(this.zoomText, 100)); this.statusbar.zoomMenu.on('item:click', _.bind(this.menuZoomClick, this)); this.bindViewEvents(this.statusbar, this.events); @@ -255,7 +256,7 @@ define([ this.statusbar.$el.css('z-index', ''); this.statusbar.tabMenu.on('item:click', _.bind(this.onTabMenu, this)); this.statusbar.btnAddWorksheet.on('click', _.bind(this.onAddWorksheetClick, this)); - if (!Common.UI.LayoutManager.isElementVisible('statusBar-actionStatus')) { + if (!Common.UI.LayoutManager.isElementVisible('statusBar-actionStatus') || this.statusbar.mode.isEditOle) { this.statusbar.customizeStatusBarMenu.items[0].setVisible(false); this.statusbar.customizeStatusBarMenu.items[1].setVisible(false); this.statusbar.boxAction.addClass('hide'); @@ -779,9 +780,9 @@ define([ this._sheetViewTip.hide(); }, - onChangeViewMode: function(item, compact) { + onChangeViewMode: function(item, compact, suppressEvent) { this.statusbar.fireEvent('view:compact', [this.statusbar, compact]); - Common.localStorage.setBool('sse-compact-statusbar', compact); + !suppressEvent && Common.localStorage.setBool('sse-compact-statusbar', compact); Common.NotificationCenter.trigger('layout:changed', 'status'); this.statusbar.onChangeCompact(compact); diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index f2d4bf681..e060c6f5f 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -301,6 +301,25 @@ define([ toolbar.btnSortUp.on('click', _.bind(this.onSortType, this, Asc.c_oAscSortOptions.Descending)); toolbar.btnSetAutofilter.on('click', _.bind(this.onAutoFilter, this)); toolbar.btnClearAutofilter.on('click', _.bind(this.onClearFilter, this)); + } else + if ( me.appConfig.isEditOle ) { + toolbar.btnUndo.on('click', _.bind(this.onUndo, this)); + toolbar.btnRedo.on('click', _.bind(this.onRedo, this)); + toolbar.btnCopy.on('click', _.bind(this.onCopyPaste, this, true)); + toolbar.btnPaste.on('click', _.bind(this.onCopyPaste, this, false)); + toolbar.btnSearch.on('click', _.bind(this.onSearch, this)); + toolbar.btnSortDown.on('click', _.bind(this.onSortType, this, Asc.c_oAscSortOptions.Ascending)); + toolbar.btnSortUp.on('click', _.bind(this.onSortType, this, Asc.c_oAscSortOptions.Descending)); + toolbar.btnSetAutofilter.on('click', _.bind(this.onAutoFilter, this)); + toolbar.btnClearAutofilter.on('click', _.bind(this.onClearFilter, this)); + toolbar.btnInsertFormula.on('click', _.bind(this.onInsertFormulaMenu, this)); + toolbar.btnInsertFormula.menu.on('item:click', _.bind(this.onInsertFormulaMenu, this)); + toolbar.btnDecDecimal.on('click', _.bind(this.onDecrement, this)); + toolbar.btnIncDecimal.on('click', _.bind(this.onIncrement, this)); + toolbar.cmbNumberFormat.on('selected', _.bind(this.onNumberFormatSelect, this)); + toolbar.cmbNumberFormat.on('show:before', _.bind(this.onNumberFormatOpenBefore, this, true)); + if (toolbar.cmbNumberFormat.cmpEl) + toolbar.cmbNumberFormat.cmpEl.on('click', '#id-toolbar-mnu-item-more-formats a', _.bind(this.onNumberFormatSelect, this)); } else { toolbar.btnPrint.on('click', _.bind(this.onPrint, this)); toolbar.btnPrint.on('disabled', _.bind(this.onBtnChangeState, this, 'print:disabled')); @@ -419,7 +438,7 @@ define([ var config = SSE.getController('Main').appOptions; if (config.isEdit) { - if ( !config.isEditDiagram && !config.isEditMailMerge ) { + if ( !config.isEditDiagram && !config.isEditMailMerge && !config.isEditOle ) { this.api.asc_registerCallback('asc_onSendThemeColors', _.bind(this.onSendThemeColors, this)); this.api.asc_registerCallback('asc_onMathTypes', _.bind(this.onApiMathTypes, this)); this.api.asc_registerCallback('asc_onContextMenu', _.bind(this.onContextMenu, this)); @@ -1846,7 +1865,7 @@ define([ this.toolbar.createDelayedElements(); this.attachUIEvents(this.toolbar); - if ( !this.appConfig.isEditDiagram && !this.appConfig.isEditMailMerge ) { + if ( !this.appConfig.isEditDiagram && !this.appConfig.isEditMailMerge && !this.appConfig.isEditOle ) { this.api.asc_registerCallback('asc_onSheetsChanged', _.bind(this.onApiSheetChanged, this)); this.api.asc_registerCallback('asc_onUpdateSheetViewSettings', _.bind(this.onApiSheetChanged, this)); this.api.asc_registerCallback('asc_onEndAddShape', _.bind(this.onApiEndAddShape, this)); @@ -1901,7 +1920,7 @@ define([ e.stopPropagation(); }, 'command+k,ctrl+k': function (e) { - if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.api.isCellEdited && !me._state.multiselect && !me._state.inpivot && + if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.toolbar.mode.isEditOle && !me.api.isCellEdited && !me._state.multiselect && !me._state.inpivot && !me.getApplication().getController('LeftMenu').leftMenu.menuFile.isVisible() && !me._state.wsProps['InsertHyperlinks']) { var cellinfo = me.api.asc_getCellInfo(), selectionType = cellinfo.asc_getSelectionType(); @@ -1911,7 +1930,7 @@ define([ e.preventDefault(); }, 'command+1,ctrl+1': function(e) { - if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.api.isCellEdited && !me.toolbar.cmbNumberFormat.isDisabled()) { + if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditOle && !me.api.isCellEdited && !me.toolbar.cmbNumberFormat.isDisabled()) { me.onCustomNumberFormat(); } @@ -2192,7 +2211,7 @@ define([ if ($('.asc-window.enable-key-events:visible').length>0) return; var toolbar = this.toolbar; - if (toolbar.mode.isEditDiagram || toolbar.mode.isEditMailMerge) { + if (toolbar.mode.isEditDiagram || toolbar.mode.isEditMailMerge || toolbar.mode.isEditOle) { is_cell_edited = (state == Asc.c_oAscCellEditorState.editStart); toolbar.lockToolbar(Common.enumLock.editCell, state == Asc.c_oAscCellEditorState.editStart, {array: [toolbar.btnDecDecimal,toolbar.btnIncDecimal,toolbar.cmbNumberFormat, toolbar.btnEditChartData, toolbar.btnEditChartType]}); } else @@ -2243,7 +2262,7 @@ define([ onApiSheetChanged: function() { - if (!this.toolbar.mode || !this.toolbar.mode.isEdit || this.toolbar.mode.isEditDiagram || this.toolbar.mode.isEditMailMerge) return; + if (!this.toolbar.mode || !this.toolbar.mode.isEdit || this.toolbar.mode.isEditDiagram || this.toolbar.mode.isEditMailMerge || this.toolbar.mode.isEditOle) return; var currentSheet = this.api.asc_getActiveWorksheetIndex(), props = this.api.asc_getPageOptions(currentSheet), @@ -2401,7 +2420,7 @@ define([ Common.NotificationCenter.trigger('fonts:change', fontobj); /* read font params */ - if (!toolbar.mode.isEditMailMerge && !toolbar.mode.isEditDiagram) { + if (!toolbar.mode.isEditMailMerge && !toolbar.mode.isEditDiagram && !toolbar.mode.isEditOle) { val = fontobj.asc_getFontBold(); if (this._state.bold !== val) { toolbar.btnBold.toggle(val === true, true); @@ -2508,10 +2527,12 @@ define([ if ( this.toolbar.mode.isEditDiagram ) return this.onApiSelectionChanged_DiagramEditor(info); else if ( this.toolbar.mode.isEditMailMerge ) - return this.onApiSelectionChanged_MailMergeEditor(info); + return this.onApiSelectionChanged_MailMergeEditor(info); else + if ( this.toolbar.mode.isEditOle ) + return this.onApiSelectionChanged_OleEditor(info); var selectionType = info.asc_getSelectionType(), - coauth_disable = (!this.toolbar.mode.isEditMailMerge && !this.toolbar.mode.isEditDiagram) ? (info.asc_getLocked()===true || info.asc_getLockedTable()===true || info.asc_getLockedPivotTable()===true) : false, + coauth_disable = (!this.toolbar.mode.isEditMailMerge && !this.toolbar.mode.isEditDiagram && !this.toolbar.mode.isEditOle) ? (info.asc_getLocked()===true || info.asc_getLockedTable()===true || info.asc_getLockedPivotTable()===true) : false, editOptionsDisabled = this._disableEditOptions(selectionType, coauth_disable), me = this, toolbar = this.toolbar, @@ -2570,7 +2591,7 @@ define([ if (editOptionsDisabled) return; /* read font params */ - if (!toolbar.mode.isEditMailMerge && !toolbar.mode.isEditDiagram) { + if (!toolbar.mode.isEditMailMerge && !toolbar.mode.isEditDiagram && !toolbar.mode.isEditOle) { val = xfs.asc_getFontBold(); if (this._state.bold !== val) { toolbar.btnBold.toggle(val === true, true); @@ -3067,6 +3088,90 @@ define([ } }, + onApiSelectionChanged_OleEditor: function(info) { + if ( !this.editMode || this.api.isCellEdited || this.api.isRangeSelection) return; + + var me = this; + var _disableEditOptions = function(seltype, coauth_disable) { + var is_chart_text = seltype == Asc.c_oAscSelectionType.RangeChartText, + is_chart = seltype == Asc.c_oAscSelectionType.RangeChart, + is_shape_text = seltype == Asc.c_oAscSelectionType.RangeShapeText, + is_shape = seltype == Asc.c_oAscSelectionType.RangeShape, + is_image = seltype == Asc.c_oAscSelectionType.RangeImage || seltype == Asc.c_oAscSelectionType.RangeSlicer, + is_mode_2 = is_shape_text || is_shape || is_chart_text || is_chart, + is_objLocked = false; + + if (!(is_mode_2 || is_image) && + me._state.selection_type === seltype && + me._state.coauthdisable === coauth_disable) + return seltype === Asc.c_oAscSelectionType.RangeImage; + + if ( is_mode_2 ) { + var selectedObjects = me.api.asc_getGraphicObjectProps(); + is_objLocked = selectedObjects.some(function (object) { + return object.asc_getObjectType() == Asc.c_oAscTypeSelectElement.Image && object.asc_getObjectValue().asc_getLocked(); + }); + } + + var _set = Common.enumLock; + var type = seltype; + switch ( seltype ) { + case Asc.c_oAscSelectionType.RangeSlicer: + case Asc.c_oAscSelectionType.RangeImage: type = _set.selImage; break; + case Asc.c_oAscSelectionType.RangeShape: type = _set.selShape; break; + case Asc.c_oAscSelectionType.RangeShapeText: type = _set.selShapeText; break; + case Asc.c_oAscSelectionType.RangeChart: type = _set.selChart; break; + case Asc.c_oAscSelectionType.RangeChartText: type = _set.selChartText; break; + } + + me.toolbar.lockToolbar(type, type != seltype, { + clear: [_set.selImage, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.coAuth] + }); + + me.toolbar.lockToolbar(Common.enumLock.coAuthText, is_objLocked); + + return is_image; + }; + + var selectionType = info.asc_getSelectionType(), + xfs = info.asc_getXfs(), + coauth_disable = false, + editOptionsDisabled = _disableEditOptions(selectionType, coauth_disable), + val, need_disable = false; + + if (editOptionsDisabled) return; + if (selectionType == Asc.c_oAscSelectionType.RangeChart || selectionType == Asc.c_oAscSelectionType.RangeChartText) + return; + + if ( !me.toolbar.mode.isEditDiagram ) { + var filterInfo = info.asc_getAutoFilterInfo(); + + val = filterInfo ? filterInfo.asc_getIsAutoFilter() : null; + if ( this._state.filter !== val ) { + me.toolbar.btnSetAutofilter.toggle(val===true, true); + this._state.filter = val; + } + + need_disable = this._state.controlsdisabled.filters || (val===null); + me.toolbar.lockToolbar(Common.enumLock.ruleFilter, need_disable, + { array: [me.toolbar.btnSetAutofilter, me.toolbar.btnSortDown, me.toolbar.btnSortUp] }); + + need_disable = this._state.controlsdisabled.filters || !filterInfo || (filterInfo.asc_getIsApplyAutoFilter()!==true); + me.toolbar.lockToolbar(Common.enumLock.ruleDelFilter, need_disable, {array: [me.toolbar.btnClearAutofilter]}); + } + + var val = xfs.asc_getNumFormatInfo(); + if ( val ) { + this._state.numformat = xfs.asc_getNumFormat(); + this._state.numformatinfo = val; + val = val.asc_getType(); + if (this._state.numformattype !== val) { + me.toolbar.cmbNumberFormat.setValue(val, me.toolbar.txtCustom); + this._state.numformattype = val; + } + } + }, + onApiStyleChange: function() { this.toolbar.btnCopyStyle.toggle(false, true); this.modeAlwaysSetStyle = false; @@ -3511,7 +3616,7 @@ define([ case Asc.c_oAscSelectionType.RangeSlicer: type = _set.selSlicer; break; } - if ( !this.appConfig.isEditDiagram && !this.appConfig.isEditMailMerge ) + if ( !this.appConfig.isEditDiagram && !this.appConfig.isEditMailMerge && !this.appConfig.isEditOle ) toolbar.lockToolbar(type, type != seltype, { array: [ toolbar.btnClearStyle.menu.items[1], @@ -3724,7 +3829,7 @@ define([ me.appConfig = config; var compactview = !config.isEdit; - if ( config.isEdit && !config.isEditDiagram && !config.isEditMailMerge ) { + if ( config.isEdit && !config.isEditDiagram && !config.isEditMailMerge && !config.isEditOle ) { if ( Common.localStorage.itemExists("sse-compact-toolbar") ) { compactview = Common.localStorage.getBool("sse-compact-toolbar"); } else @@ -3734,7 +3839,7 @@ define([ me.toolbar.render(_.extend({isCompactView: compactview}, config)); - if ( !config.isEditDiagram && !config.isEditMailMerge ) { + if ( !config.isEditDiagram && !config.isEditMailMerge && !config.isEditOle ) { var tab = {action: 'review', caption: me.toolbar.textTabCollaboration, layoutname: 'toolbar-collaboration', dataHintTitle: 'U'}; var $panel = me.getApplication().getController('Common.Controllers.ReviewChanges').createToolbarPanel(); if ($panel) { @@ -3752,7 +3857,7 @@ define([ me.toolbar.btnPrint && me.toolbar.btnPrint.on('disabled', _.bind(me.onBtnChangeState, me, 'print:disabled')); me.toolbar.setApi(me.api); - if ( !config.isEditDiagram && !config.isEditMailMerge ) { + if ( !config.isEditDiagram && !config.isEditMailMerge && !config.isEditOle ) { var datatab = me.getApplication().getController('DataTab'); datatab.setApi(me.api).setConfig({toolbar: me}); @@ -3810,7 +3915,7 @@ define([ } } } - if ( !config.isEditDiagram && !config.isEditMailMerge ) { + if ( !config.isEditDiagram && !config.isEditMailMerge && !config.isEditOle ) { tab = {caption: me.toolbar.textTabView, action: 'view', extcls: config.isEdit ? 'canedit' : '', layoutname: 'toolbar-view', dataHintTitle: 'W'}; var viewtab = me.getApplication().getController('ViewTab'); viewtab.setApi(me.api).setConfig({toolbar: me, mode: config}); diff --git a/apps/spreadsheeteditor/main/app/controller/ViewTab.js b/apps/spreadsheeteditor/main/app/controller/ViewTab.js index a620e84cd..66637dbd8 100644 --- a/apps/spreadsheeteditor/main/app/controller/ViewTab.js +++ b/apps/spreadsheeteditor/main/app/controller/ViewTab.js @@ -251,7 +251,7 @@ define([ }, onApiSheetChanged: function() { - if (!this.toolbar.mode || !this.toolbar.mode.isEdit || this.toolbar.mode.isEditDiagram || this.toolbar.mode.isEditMailMerge) return; + if (!this.toolbar.mode || !this.toolbar.mode.isEdit || this.toolbar.mode.isEditDiagram || this.toolbar.mode.isEditMailMerge || this.toolbar.mode.isEditOle) return; var params = this.api.asc_getSheetViewSettings(); this.view.chHeadings.setValue(!!params.asc_getShowRowColHeaders(), true); diff --git a/apps/spreadsheeteditor/main/app/controller/Viewport.js b/apps/spreadsheeteditor/main/app/controller/Viewport.js index caf8cf4e6..7cf81b17c 100644 --- a/apps/spreadsheeteditor/main/app/controller/Viewport.js +++ b/apps/spreadsheeteditor/main/app/controller/Viewport.js @@ -79,7 +79,7 @@ define([ 'Toolbar': { 'render:before' : function (toolbar) { var config = SSE.getController('Main').appOptions; - if (!config.isEditDiagram && !config.isEditMailMerge) + if (!config.isEditDiagram && !config.isEditMailMerge && !config.isEditOle) toolbar.setExtra('right', me.header.getPanel('right', config)); if (!config.isEdit || config.customization && !!config.customization.compactHeader) @@ -148,11 +148,11 @@ define([ { me.viewport.vlayout.getItem('toolbar').height = _intvars.get('toolbar-height-compact'); } else - if ( config.isEditDiagram || config.isEditMailMerge ) { + if ( config.isEditDiagram || config.isEditMailMerge || config.isEditOle ) { me.viewport.vlayout.getItem('toolbar').height = 41; } - if ( config.isEdit && !config.isEditDiagram && !config.isEditMailMerge && !(config.customization && config.customization.compactHeader)) { + if ( config.isEdit && !config.isEditDiagram && !config.isEditMailMerge && !config.isEditOle && !(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)); diff --git a/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template b/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template index d8c20bda8..34d49c39e 100644 --- a/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template +++ b/apps/spreadsheeteditor/main/app/template/ChartSettingsDlg.template @@ -56,7 +56,7 @@
    ', - '', - '
    ', + '
    ', + '
    ', - '', - '
    ', + '
    ', + '
    - @@ -84,13 +84,13 @@ - - - @@ -108,16 +108,27 @@
    +
    + +
    +
    - +
    - + + + +
    + + +
    +
    - -
    +
    +
    +
    + +
    +
    @@ -166,7 +177,7 @@
    - @@ -194,13 +205,13 @@ - - - @@ -218,16 +229,27 @@
    +
    + +
    +
    - +
    - + + + +
    + + +
    +
    - -
    +
    +
    +
    + +
    +
    @@ -276,7 +298,7 @@
    - @@ -385,7 +407,7 @@
    +
    - diff --git a/apps/spreadsheeteditor/main/app/template/Toolbar.template b/apps/spreadsheeteditor/main/app/template/Toolbar.template index 5e8545da9..5b9a230d8 100644 --- a/apps/spreadsheeteditor/main/app/template/Toolbar.template +++ b/apps/spreadsheeteditor/main/app/template/Toolbar.template @@ -172,10 +172,10 @@
    - - + +
    diff --git a/apps/spreadsheeteditor/main/app/template/ToolbarAnother.template b/apps/spreadsheeteditor/main/app/template/ToolbarAnother.template index cc642b5ad..878aa4f2f 100644 --- a/apps/spreadsheeteditor/main/app/template/ToolbarAnother.template +++ b/apps/spreadsheeteditor/main/app/template/ToolbarAnother.template @@ -71,5 +71,54 @@
    + <% } else if ( isEditOle ) { %> + + + +
    +
    +
    + + + + +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    + + +
    +
    +
    +
    +
    + + +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    +
    + +
    +
    +
    +
    <% } %> \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js b/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js index c1102f49d..58e7b7463 100644 --- a/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js +++ b/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js @@ -1356,7 +1356,7 @@ define([ if(Common.Utils.InternalSettings.get('sse-settings-size-filter-window')) { this.$window.find('.combo-values').css({'height': Common.Utils.InternalSettings.get('sse-settings-size-filter-window')[1] - 103 + 'px'}); - this.cellsList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + this.cellsList.scroller.update({minScrollbarLength : this.cellsList.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); } }, @@ -1684,7 +1684,7 @@ define([ this.configTo.asc_getFilterObj().asc_setType(Asc.c_oAscAutoFilterTypes.Filters); // listView.isSuspendEvents = false; - listView.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + listView.scroller.update({minScrollbarLength : listView.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); } }, @@ -1943,7 +1943,7 @@ define([ this.checkCellTrigerBlock = undefined; } this.btnOk.setDisabled(this.cells.length<1); - this.cellsList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + this.cellsList.scroller.update({minScrollbarLength : this.cellsList.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); this.cellsList.cmpEl.toggleClass('scroll-padding', this.cellsList.scroller.isVisible()); }, @@ -2027,7 +2027,7 @@ define([ else if (this.curSize.resize) { var size = this.getSize(); this.$window.find('.combo-values').css({'height': size[1] - 100 + 'px'}); - this.cellsList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + this.cellsList.scroller.update({minScrollbarLength : this.cellsList.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); } }, @@ -2038,7 +2038,7 @@ define([ if (size[1] !== this.curSize.height) { if (!this.curSize.resize) { this.curSize.resize = true; - this.cellsList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: false, suppressScrollX: true}); + this.cellsList.scroller.update({minScrollbarLength : this.cellsList.minScrollbarLength, alwaysVisibleY: false, suppressScrollX: true}); } this.$window.find('.combo-values').css({'height': size[1] - 100 + 'px'}); this.curSize.height = size[1]; diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettings.js b/apps/spreadsheeteditor/main/app/view/ChartSettings.js index f16ce0bf7..797194841 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ChartSettings.js @@ -1011,7 +1011,7 @@ define([ }, onAddChartStylesPreview: function(styles){ - if (this._isEditType) return; + if (this._isEditType || !this.cmbChartStyle) return; if (styles && styles.length>0){ var stylesStore = this.cmbChartStyle.menuPicker.store; diff --git a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js index 687f68387..f946e9a0e 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js +++ b/apps/spreadsheeteditor/main/app/view/ChartSettingsDlg.js @@ -259,6 +259,8 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' this.cmbVertGrid = []; this.chVertHide = []; this.btnVFormat = []; + this.chVLogScale = []; + this.spnBase = []; this._arrVertTitle = [ {value: Asc.c_oAscChartVertAxisLabelShowSettings.none, displayValue: me.textNone}, @@ -516,6 +518,30 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' me.btnVFormat[i] = new Common.UI.Button({ el: $('#chart-dlg-btn-v-format-' + i) }).on('click', _.bind(me.openFormat, me, i)); + + me.chVLogScale[i] = new Common.UI.CheckBox({ + el: $('#chart-dlg-check-v-logscale-' + i), + labelText: me.textLogScale + }).on('change', _.bind(function (checkbox, state) { + if (me.currentAxisProps[i]) { + me.currentAxisProps[i].putLogScale(state == 'checked'); + (state == 'checked') && me.currentAxisProps[i].putLogBase(me.spnBase[i].getNumberValue()); + } + me.spnBase[i].setDisabled((state !== 'checked')); + }, me)); + + me.spnBase[i] = new Common.UI.MetricSpinner({ + el: $('#chart-dlg-input-base-' + i), + maxValue: 1000, + minValue: 2, + step: 1, + defaultUnit: "", + value: 10 + }).on('change', _.bind(function (field, newValue, oldValue) { + if (me.currentAxisProps[i]) { + me.currentAxisProps[i].putLogBase(field.getNumberValue()); + } + }, me)); }; addControlsV(0); addControlsV(1); @@ -1023,10 +1049,10 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' this.cmbChartTitle, this.cmbLegendPos, this.cmbDataLabels, this.chSeriesName, this.chCategoryName, this.chValue, this.txtSeparator, // 1 tab this.cmbVertTitle[0], this.cmbVertGrid[0], this.chVertHide[0], this.cmbMinType[0], this.spnMinValue[0], this.cmbMaxType[0], this.spnMaxValue[0], this.cmbVCrossType[0], this.spnVAxisCrosses[0], - this.chVReverse[0], this.cmbUnits[0] , this.cmbVMajorType[0], this.cmbVMinorType[0], this.cmbVLabelPos[0], // 2 tab + this.cmbUnits[0] , this.chVReverse[0], this.chVLogScale[0], this.spnBase[0], this.cmbVMajorType[0], this.cmbVMinorType[0], this.cmbVLabelPos[0], // 2 tab this.cmbVertTitle[1], this.cmbVertGrid[1], this.chVertHide[1], this.cmbMinType[1] , this.spnMinValue[1], this.cmbMaxType[1], this.spnMaxValue[1], this.cmbVCrossType[1], this.spnVAxisCrosses[1], - this.chVReverse[1], this.cmbUnits[1] , this.cmbVMajorType[1], this.cmbVMinorType[1], this.cmbVLabelPos[1], // 3 tab + this.cmbUnits[1] , this.chVReverse[1], this.chVLogScale[1], this.spnBase[1], this.cmbVMajorType[1], this.cmbVMinorType[1], this.cmbVLabelPos[1], // 3 tab this.chHorHide[0], this.cmbHorTitle[0], this.cmbHorGrid[0], this.cmbHCrossType[0] , this.spnHAxisCrosses[0], this.cmbAxisPos[0], this.chHReverse[0], this.cmbHMajorType[0], this.cmbHMinorType[0], this.spnMarksInterval[0], this.cmbHLabelPos[0] , this.spnLabelDist[0], this.cmbLabelInterval[0], this.spnLabelInterval[0], // 4 tab @@ -1265,6 +1291,10 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' this.cmbVMajorType[index].setValue(props.getMajorTickMark()); this.cmbVMinorType[index].setValue(props.getMinorTickMark()); this.cmbVLabelPos[index].setValue(props.getTickLabelsPos()); + value = props.getLogScale(); + this.chVLogScale[index].setValue(!!value, true); + this.spnBase[index].setDisabled(!value); + value && this.spnBase[index].setValue(props.getLogBase(), true); this.currentAxisProps[index] = props; }, @@ -1878,7 +1908,9 @@ define([ 'text!spreadsheeteditor/main/app/template/ChartSettingsDlg.template' textHorAxisSec: 'Secondary Horizontal Axis', textAxisTitle: 'Title', textHideAxis: 'Hide axis', - textFormat: 'Label format' + textFormat: 'Label format', + textBase: 'Base', + textLogScale: 'Logarithmic Scale' }, SSE.Views.ChartSettingsDlg || {})); }); diff --git a/apps/spreadsheeteditor/main/app/view/DocumentHolder.js b/apps/spreadsheeteditor/main/app/view/DocumentHolder.js index ee6847814..159f2d452 100644 --- a/apps/spreadsheeteditor/main/app/view/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/view/DocumentHolder.js @@ -634,6 +634,15 @@ define([ caption : me.chartText }); + me.mnuChartData = new Common.UI.MenuItem({ + iconCls : 'menu__icon btn-select-range', + caption : me.chartDataText + }); + + me.mnuChartType = new Common.UI.MenuItem({ + caption : me.chartTypeText + }); + me.pmiImgCut = new Common.UI.MenuItem({ iconCls: 'menu__icon btn-cut', caption : me.txtCut, @@ -849,6 +858,8 @@ define([ me.menuImgMacro, me.mnuShapeSeparator, me.menuImgCrop, + me.mnuChartData, + me.mnuChartType, me.mnuChartEdit, me.mnuShapeAdvanced, me.menuImgOriginalSize, @@ -1103,6 +1114,7 @@ define([ this.tableTotalMenu = new Common.UI.Menu({ maxHeight: 160, + menuAlign: 'tr-br', cyclic: false, cls: 'lang-menu', items: [ @@ -1279,7 +1291,9 @@ define([ tipMarkersArrow: 'Arrow bullets', tipMarkersCheckmark: 'Checkmark bullets', tipMarkersFRhombus: 'Filled rhombus bullets', - tipMarkersDash: 'Dash bullets' + tipMarkersDash: 'Dash bullets', + chartDataText: 'Select Chart Data', + chartTypeText: 'Change Chart Type' }, SSE.Views.DocumentHolder || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index eb5b6b202..84b936ad0 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -65,9 +65,9 @@ define([ '', '<% _.each(row, function(item) { %>', '<% if (item.type!==Asc.c_oAscFileType.XLSM || fileType=="xlsm") { %>', - '', + '', '<% } %>', '<% }) %>', '', @@ -136,9 +136,9 @@ define([ '', '<% _.each(row, function(item) { %>', '<% if (item.type!==Asc.c_oAscFileType.XLSM || fileType=="xlsm") { %>', - '', + '', '<% } %>', '<% }) %>', '', @@ -189,7 +189,7 @@ define([ template: _.template([ '
    ', '
    ', - '
    +
    ', - '', - '
    ', + '
    ', + '
    ', - '', - '
    ', + '
    ', + '
    ', + '
    ', '', '', '', @@ -206,7 +206,7 @@ define([ '', '', '', - '', + '', '', '', '', @@ -224,6 +224,10 @@ define([ '', '', '', + '', + '', + '', + '', '', '', '', @@ -296,7 +300,6 @@ define([ '', '', '', - '', '', '', @@ -381,6 +384,14 @@ define([ this.rbCoAuthModeStrict.$el.parent().on('click', function (){me.rbCoAuthModeStrict.setValue(true);}); /** coauthoring end **/ + this.chLiveViewer = new Common.UI.CheckBox({ + el: $markup.findById('#fms-chb-live-viewer'), + labelText: this.strShowOthersChanges, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.cmbZoom = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-zoom'), style : 'width: 160px;', @@ -745,6 +756,7 @@ define([ $('tr.forcesave', this.el)[mode.canForcesave ? 'show' : 'hide'](); $('tr.comments', this.el)[mode.canCoAuthoring ? 'show' : 'hide'](); $('tr.coauth.changes', this.el)[mode.isEdit && !mode.isOffline && mode.canCoAuthoring && mode.canChangeCoAuthoring ? 'show' : 'hide'](); + $('tr.live-viewer', this.el)[!mode.isEdit && !mode.isRestrictedEdit && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide'](); $('tr.macros', this.el)[(mode.customization && mode.customization.macros===false) ? 'hide' : 'show'](); if ( !Common.UI.Themes.available() ) { @@ -772,6 +784,7 @@ define([ this.rbCoAuthModeFast.setValue(fast_coauth); this.rbCoAuthModeStrict.setValue(!fast_coauth); /** coauthoring end **/ + this.chLiveViewer.setValue(Common.Utils.InternalSettings.get("sse-settings-coauthmode")); value = Common.Utils.InternalSettings.get("sse-settings-fontrender"); item = this.cmbFontRender.store.findWhere({value: parseInt(value)}); @@ -898,13 +911,16 @@ define([ Common.localStorage.setItem("sse-settings-resolvedcomment", this.chResolvedComment.isChecked() ? 1 : 0); if (this.mode.isEdit && !this.mode.isOffline && this.mode.canCoAuthoring && this.mode.canChangeCoAuthoring) Common.localStorage.setItem("sse-settings-coauthmode", this.rbCoAuthModeFast.getValue()? 1 : 0); + else if (!this.mode.isEdit && !this.mode.isRestrictedEdit && !this.mode.isOffline && this.mode.canChangeCoAuthoring) { // viewer + Common.localStorage.setItem("sse-settings-view-coauthmode", this.chLiveViewer.isChecked() ? 1 : 0); + } /** coauthoring end **/ Common.localStorage.setItem("sse-settings-r1c1", this.chR1C1Style.isChecked() ? 1 : 0); Common.localStorage.setItem("sse-settings-fontrender", this.cmbFontRender.getValue()); var item = this.cmbFontRender.store.findWhere({value: 'custom'}); Common.localStorage.setItem("sse-settings-cachemode", item && !item.get('checked') ? 0 : 1); Common.localStorage.setItem("sse-settings-unit", this.cmbUnit.getValue()); - if (this.mode.canChangeCoAuthoring || !Common.Utils.InternalSettings.get("sse-settings-coauthmode")) + if (this.mode.isEdit && (this.mode.canChangeCoAuthoring || !Common.Utils.InternalSettings.get("sse-settings-coauthmode"))) Common.localStorage.setItem("sse-settings-autosave", this.chAutosave.isChecked() ? 1 : 0); if (this.mode.canForcesave) Common.localStorage.setItem("sse-settings-forcesave", this.chForcesave.isChecked() ? 1 : 0); @@ -1120,11 +1136,12 @@ define([ strIgnoreWordsWithNumbers: 'Ignore words with numbers', txtAutoCorrect: 'AutoCorrect options...', txtFastTip: 'Real-time co-editing. All changes are saved automatically', - txtStrictTip: 'Use the \'Save\' button to sync the changes you and others make' + txtStrictTip: 'Use the \'Save\' button to sync the changes you and others make', + strShowOthersChanges: 'Show changes from other users' }, SSE.Views.FileMenuPanels.MainSettingsGeneral || {})); - SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ +SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ el: '#panel-recentfiles', menu: undefined, @@ -1148,9 +1165,9 @@ define([ itemTemplate: _.template([ '
    ', '
    ', - '', - '', - '', + '
    ', + '
    ', + '
    ', '
    ', '
    <% if (typeof title !== "undefined") {%><%= Common.Utils.String.htmlEncode(title || "") %><% } %>
    ', '
    <% if (typeof folder !== "undefined") {%><%= Common.Utils.String.htmlEncode(folder || "") %><% } %>
    ', @@ -1199,7 +1216,7 @@ define([ '<% if (blank) { %> ', '
    ', '
    ', - '', + '
    ', '
    ', '
    <%= scope.txtBlank %>
    ', '
    ', @@ -1210,7 +1227,7 @@ define([ '<% if (!_.isEmpty(item.image)) {%> ', ' style="background-image: url(<%= item.image %>);">', ' <%} else {' + - 'print(\">\")' + + 'print(\">
    \")' + ' } %>', '
    ', '
    <%= Common.Utils.String.htmlEncode(item.title || item.name || "") %>
    ', diff --git a/apps/spreadsheeteditor/main/app/view/ImageSettings.js b/apps/spreadsheeteditor/main/app/view/ImageSettings.js index e8d6404d8..65a3bbf86 100644 --- a/apps/spreadsheeteditor/main/app/view/ImageSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ImageSettings.js @@ -215,7 +215,18 @@ define([ this.spnHeight.on('inputleave', function(){ Common.NotificationCenter.trigger('edit:complete', me);}); this.btnOriginalSize.on('click', _.bind(this.setOriginalSize, this)); this.btnEditObject.on('click', _.bind(function(btn){ - if (this.api) this.api.asc_startEditCurrentOleObject(); + if (this.api) { + var oleobj = this.api.asc_canEditTableOleObject(true); + if (oleobj) { + var oleEditor = SSE.getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); + if (oleEditor) { + oleEditor.setEditMode(true); + oleEditor.show(); + oleEditor.setOleData(Asc.asc_putBinaryDataToFrameFromTableOleObject(oleobj)); + } + } else + this.api.asc_startEditCurrentOleObject(); + } Common.NotificationCenter.trigger('edit:complete', this); }, this)); @@ -448,7 +459,7 @@ define([ if (this._state.isOleObject) { var plugin = SSE.getCollection('Common.Collections.Plugins').findWhere({guid: pluginGuid}); - this.btnEditObject.setDisabled(plugin===null || plugin ===undefined || this._locked); + this.btnEditObject.setDisabled(!this.api.asc_canEditTableOleObject() && (plugin===null || plugin ===undefined) || this._locked); } else { this.btnSelectImage.setDisabled(pluginGuid===null || this._locked); } diff --git a/apps/spreadsheeteditor/main/app/view/PivotSettings.js b/apps/spreadsheeteditor/main/app/view/PivotSettings.js index a83eda146..1a288750e 100644 --- a/apps/spreadsheeteditor/main/app/view/PivotSettings.js +++ b/apps/spreadsheeteditor/main/app/view/PivotSettings.js @@ -431,7 +431,7 @@ define([ }); if (!equalArr) { list.store.reset(arr); - list.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + list.scroller.update({minScrollbarLength : list.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); list.dataViewItems.forEach(function (item, index) { item.$el.attr('draggable', true); item.$el.on('dragstart', _.bind(me.onItemsDragStart, me, eventIndex, list, item, index)); @@ -500,7 +500,7 @@ define([ }); if (!equalArr) { this.fieldsList.store.reset(arr); - this.fieldsList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + this.fieldsList.scroller.update({minScrollbarLength : this.fieldsList.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); this.fieldsList.dataViewItems.forEach(function (item, index) { item.$el.attr('draggable', true); item.$el.on('dragstart', _.bind(me.onFieldsDragStart, me, item, index)); @@ -633,7 +633,7 @@ define([ } // listView.isSuspendEvents = false; - listView.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + listView.scroller.update({minScrollbarLength : listView.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); } }, diff --git a/apps/spreadsheeteditor/main/app/view/ProtectDialog.js b/apps/spreadsheeteditor/main/app/view/ProtectDialog.js index 9f10aecdf..433b5e9e2 100644 --- a/apps/spreadsheeteditor/main/app/view/ProtectDialog.js +++ b/apps/spreadsheeteditor/main/app/view/ProtectDialog.js @@ -368,7 +368,7 @@ define([ }); this.optionsList.store.reset(arr); - this.optionsList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + this.optionsList.scroller.update({minScrollbarLength : this.optionsList.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); }, getSettings: function() { diff --git a/apps/spreadsheeteditor/main/app/view/RemoveDuplicatesDialog.js b/apps/spreadsheeteditor/main/app/view/RemoveDuplicatesDialog.js index 7a8b07727..af8a37c64 100644 --- a/apps/spreadsheeteditor/main/app/view/RemoveDuplicatesDialog.js +++ b/apps/spreadsheeteditor/main/app/view/RemoveDuplicatesDialog.js @@ -160,7 +160,7 @@ define([ throughIndex : 0 })); this.columnsList.store.reset(arr); - this.columnsList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + this.columnsList.scroller.update({minScrollbarLength : this.columnsList.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); } else { this.props.asc_getColumnList().forEach(function (item, index) { store.at(index+1).set('value', item.asc_getVal()); @@ -246,7 +246,7 @@ define([ this.checkCellTrigerBlock = undefined; } - listView.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + listView.scroller.update({minScrollbarLength : listView.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); } }, diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js index 50ee3dfea..fe17489b1 100644 --- a/apps/spreadsheeteditor/main/app/view/ShapeSettings.js +++ b/apps/spreadsheeteditor/main/app/view/ShapeSettings.js @@ -764,6 +764,8 @@ define([ this._originalProps = shapeprops; this._noApply = true; + this._state.isFromImage = !!shapeprops.get_FromImage(); + this._state.isFromSmartArtInternal = !!shapeprops.asc_getFromSmartArtInternal(); this.disableControls(this._locked, !shapeprops.asc_getCanFill()); this.hideShapeOnlySettings(shapeprops.asc_getFromChart() || !!shapeprops.asc_getFromImage()); @@ -774,10 +776,8 @@ define([ || shapetype=='curvedConnector3' || shapetype=='curvedConnector4' || shapetype=='curvedConnector5' || shapetype=='straightConnector1'; this.hideChangeTypeSettings(hidechangetype); - this._state.isFromImage = !!shapeprops.get_FromImage(); - this._state.isFromSmartArtInternal = !!shapeprops.asc_getFromSmartArtInternal(); if (!hidechangetype && this.btnChangeShape.menu.items.length) { - this.btnChangeShape.shapePicker.hideTextRect(shapeprops.get_FromImage() || shapeprops.asc_getFromSmartArtInternal()); + this.btnChangeShape.shapePicker.hideTextRect(shapeprops.get_FromImage() || this._state.isFromSmartArtInternal); } // background colors @@ -1868,6 +1868,8 @@ define([ }); this.linkAdvanced.toggleClass('disabled', disable); } + this.btnFlipV.setDisabled(disable || this._state.isFromSmartArtInternal); + this.btnFlipH.setDisabled(disable || this._state.isFromSmartArtInternal); }, hideShapeOnlySettings: function(value) { diff --git a/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js index ddb8ffd01..2bb6390e7 100644 --- a/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/ShapeSettingsAdvanced.js @@ -635,6 +635,8 @@ define([ 'text!spreadsheeteditor/main/app/template/ShapeSettingsAdvanced.temp if (shapeprops.asc_getFromSmartArtInternal()) { this.chAutofit.setDisabled(true); this.chOverflow.setDisabled(true); + this.chFlipHor.setDisabled(true); + this.chFlipVert.setDisabled(true); } this.spnWidth.setValue(Common.Utils.Metric.fnRecalcFromMM(props.asc_getWidth()).toFixed(2), true); diff --git a/apps/spreadsheeteditor/main/app/view/SlicerAddDialog.js b/apps/spreadsheeteditor/main/app/view/SlicerAddDialog.js index b7a15ed44..b995eec6b 100644 --- a/apps/spreadsheeteditor/main/app/view/SlicerAddDialog.js +++ b/apps/spreadsheeteditor/main/app/view/SlicerAddDialog.js @@ -119,7 +119,7 @@ define([ }); this.columnsList.store.reset(arr); - this.columnsList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + this.columnsList.scroller.update({minScrollbarLength : this.columnsList.minScrollbarLength, alwaysVisibleY: true, suppressScrollX: true}); } }, diff --git a/apps/spreadsheeteditor/main/app/view/Statusbar.js b/apps/spreadsheeteditor/main/app/view/Statusbar.js index ff64e3b6e..19827c534 100644 --- a/apps/spreadsheeteditor/main/app/view/Statusbar.js +++ b/apps/spreadsheeteditor/main/app/view/Statusbar.js @@ -516,8 +516,18 @@ define([ this.mode = _.extend({}, this.mode, mode); // this.$el.find('.el-edit')[mode.isEdit?'show':'hide'](); //this.btnAddWorksheet.setVisible(this.mode.isEdit); - $('#status-addtabs-box')[this.mode.isEdit ? 'show' : 'hide'](); + $('#status-addtabs-box')[(this.mode.isEdit) ? 'show' : 'hide'](); this.btnAddWorksheet.setDisabled(this.mode.isDisconnected || this.api && (this.api.asc_isWorkbookLocked() || this.api.isCellEdited) || this.rangeSelectionMode!=Asc.c_oAscSelectionDialogType.None); + if (this.mode.isEditOle) { // change hints order + this.btnAddWorksheet.$el.find('button').addBack().filter('button').attr('data-hint', '1'); + this.btnScrollFirst.$el.find('button').addBack().filter('button').attr('data-hint', '1'); + this.btnScrollLast.$el.find('button').addBack().filter('button').attr('data-hint', '1'); + this.btnScrollBack.$el.find('button').addBack().filter('button').attr('data-hint', '1'); + this.btnScrollNext.$el.find('button').addBack().filter('button').attr('data-hint', '1'); + this.cntSheetList.$el.find('button').attr('data-hint', '1'); + this.cntSheetList.$el.find('button').removeAttr('data-hint-title'); // 'v' hint is used for paste + this.cntZoom.$el.find('.dropdown-toggle').attr('data-hint', '1'); + } this.updateTabbarBorders(); }, @@ -610,7 +620,7 @@ define([ if (this.mode.isEdit) { this.tabbar.addDataHint(_.findIndex(items, function (item) { return item.sheetindex === sindex; - })); + }), this.mode.isEditOle ? '1' : '0'); } $('#status-label-zoom').text(Common.Utils.String.format(this.zoomText, Math.floor((this.api.asc_getZoom() +.005)*100))); @@ -699,7 +709,7 @@ define([ } if (this.mode.isEdit) { - this.tabbar.addDataHint(index); + this.tabbar.addDataHint(index, this.mode.isEditOle ? '1' : '0'); } this.fireEvent('sheet:changed', [this, tab.sheetindex]); @@ -710,7 +720,7 @@ define([ onTabMenu: function (o, index, tab, select) { var me = this; - if (this.mode.isEdit && !this.isEditFormula && (this.rangeSelectionMode !== Asc.c_oAscSelectionDialogType.Chart) && + if (this.mode.isEdit && !this.isEditFormula && (this.rangeSelectionMode !== Asc.c_oAscSelectionDialogType.Chart) && (this.rangeSelectionMode !== Asc.c_oAscSelectionDialogType.FormatTable) && (this.rangeSelectionMode !== Asc.c_oAscSelectionDialogType.PrintTitles) && !this.mode.isDisconnected ) { @@ -745,6 +755,7 @@ define([ this.tabMenu.items[7].setDisabled(select.length>1); this.tabMenu.items[8].setDisabled(issheetlocked || isdocprotected); + this.tabMenu.items[7].setVisible(!this.mode.isEditOle); this.tabMenu.items[7].setCaption(this.api.asc_isProtectedSheet() ? this.itemUnProtect : this.itemProtect); if (select.length === 1) { @@ -890,11 +901,12 @@ define([ } }, - changeViewMode: function (edit) { + changeViewMode: function (mode) { + var edit = mode.isEdit; if (edit) { this.tabBarBox.css('left', '175px'); } else { - this.tabBarBox.css('left', ''); + this.tabBarBox.css('left', ''); } this.tabbar.options.draggable = edit; @@ -968,7 +980,7 @@ define([ //this.boxAction.show(); } this.updateTabbarBorders(); - this.onTabInvisible(undefined, this.tabbar.checkInvisible(true)); + (this.tabbar.getCount()>0) && this.onTabInvisible(undefined, this.tabbar.checkInvisible(true)); }, updateNumberOfSheet: function (active, count) { diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js index 4e87d1e0e..0572660fd 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -197,7 +197,7 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-copy', dataHint: '1', - dataHintDirection: config.isEditDiagram ? 'bottom' : 'top', + dataHintDirection: (config.isEditDiagram || config.isEditMailMerge || config.isEditOle) ? 'bottom' : 'top', dataHintTitle: 'C' }); @@ -207,7 +207,7 @@ define([ iconCls : 'toolbar__icon btn-paste', lock : [/*_set.editCell,*/ _set.coAuth, _set.lostConnect], dataHint : '1', - dataHintDirection: config.isEditDiagram ? 'bottom' : 'top', + dataHintDirection: (config.isEditDiagram || config.isEditMailMerge || config.isEditOle) ? 'bottom' : 'top', dataHintTitle: 'V' }); @@ -235,153 +235,162 @@ define([ dataHintTitle: 'Y' }); - if ( config.isEditDiagram ) { + if (config.isEditDiagram || config.isEditMailMerge || config.isEditOle ) { me.$layout = $(_.template(simple)(config)); + if ( config.isEditDiagram || config.isEditOle ) { + me.btnInsertFormula = new Common.UI.Button({ + id : 'id-toolbar-btn-insertformula', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-formula', + split : true, + lock : [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth], + menu : new Common.UI.Menu({ + style : 'min-width: 110px', + items : [ + {caption: 'SUM', value: 'SUM'}, + {caption: 'AVERAGE', value: 'AVERAGE'}, + {caption: 'MIN', value: 'MIN'}, + {caption: 'MAX', value: 'MAX'}, + {caption: 'COUNT', value: 'COUNT'}, + {caption: '--'}, + { + caption: me.txtAdditional, + value: 'more', + hint: me.txtFormula + Common.Utils.String.platformKey('Shift+F3') + } + ] + }), + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); - me.btnInsertFormula = new Common.UI.Button({ - id : 'id-toolbar-btn-insertformula', - cls : 'btn-toolbar', - iconCls : 'toolbar__icon btn-formula', - split : true, - lock : [_set.editText, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth], - menu : new Common.UI.Menu({ - style : 'min-width: 110px', - items : [ - {caption: 'SUM', value: 'SUM'}, - {caption: 'AVERAGE', value: 'AVERAGE'}, - {caption: 'MIN', value: 'MIN'}, - {caption: 'MAX', value: 'MAX'}, - {caption: 'COUNT', value: 'COUNT'}, - {caption: '--'}, - { - caption: me.txtAdditional, - value: 'more', - hint: me.txtFormula + Common.Utils.String.platformKey('Shift+F3') - } - ] - }), - dataHint: '1', - dataHintDirection: 'bottom', - dataHintOffset: 'big' - }); + me.btnDecDecimal = new Common.UI.Button({ + id : 'id-toolbar-btn-decdecimal', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-decdecimal', + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth], + dataHint : '1', + dataHintDirection: 'bottom' + }); - me.btnDecDecimal = new Common.UI.Button({ - id : 'id-toolbar-btn-decdecimal', - cls : 'btn-toolbar', - iconCls : 'toolbar__icon btn-decdecimal', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth], - dataHint : '1', - dataHintDirection: 'bottom' - }); + me.btnIncDecimal = new Common.UI.Button({ + id : 'id-toolbar-btn-incdecimal', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-incdecimal', + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth], + dataHint : '1', + dataHintDirection: 'bottom' + }); - me.btnIncDecimal = new Common.UI.Button({ - id : 'id-toolbar-btn-incdecimal', - cls : 'btn-toolbar', - iconCls : 'toolbar__icon btn-incdecimal', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth], - dataHint : '1', - dataHintDirection: 'bottom' - }); + var formatTemplate = + _.template([ + '<% _.each(items, function(item) { %>', + '
  • ', + '
    <%= scope.getDisplayValue(item) %>
    ', + '
    <%= item.exampleval ? item.exampleval : "" %>
    ', + '
  • ', + '<% }); %>', + '
  • ', + '
  • ' + me.textMoreFormats + '
  • ' + ].join('')); - var formatTemplate = - _.template([ - '<% _.each(items, function(item) { %>', - '
  • ', - '
    <%= scope.getDisplayValue(item) %>
    ', - '
    <%= item.exampleval ? item.exampleval : "" %>
    ', - '
  • ', - '<% }); %>', - '
  • ', - '
  • ' + me.textMoreFormats + '
  • ' - ].join('')); + me.cmbNumberFormat = new Common.UI.ComboBox({ + cls : 'input-group-nr', + menuStyle : 'min-width: 180px;', + hint : me.tipNumFormat, + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth], + itemsTemplate: formatTemplate, + editable : false, + data : me.numFormatData, + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + } + if ( config.isEditDiagram ) { + me.btnEditChart = new Common.UI.Button({ + id : 'id-toolbar-rtn-edit-chart', + cls : 'btn-toolbar btn-text-default auto', + caption : me.tipEditChart, + lock : [_set.lostConnect], + style : 'min-width: 120px;', + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); - me.cmbNumberFormat = new Common.UI.ComboBox({ - cls : 'input-group-nr', - menuStyle : 'min-width: 180px;', - hint : me.tipNumFormat, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selRangeEdit, _set.lostConnect, _set.coAuth], - itemsTemplate: formatTemplate, - editable : false, - data : me.numFormatData, - dataHint : '1', - dataHintDirection: config.isEditDiagram ? 'bottom' : 'top', - dataHintOffset: config.isEditDiagram ? 'big' : undefined - }); + me.btnEditChartData = new Common.UI.Button({ + id : 'id-toolbar-rtn-edit-chart-data', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-select-range', + caption : me.tipEditChartData, + lock : [_set.editCell, _set.selRange, _set.selRangeEdit, _set.lostConnect], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'medium' + }); - me.btnEditChart = new Common.UI.Button({ - id : 'id-toolbar-rtn-edit-chart', - cls : 'btn-toolbar btn-text-default auto', - caption : me.tipEditChart, - lock : [_set.lostConnect], - style : 'min-width: 120px;', - dataHint : '1', - dataHintDirection: 'bottom', - dataHintOffset: 'big' - }); + me.btnEditChartType = new Common.UI.Button({ + id : 'id-toolbar-rtn-edit-chart-type', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-menu-chart', + caption : me.tipEditChartType, + lock : [_set.editCell, _set.selRange, _set.selRangeEdit, _set.lostConnect], + style : 'min-width: 120px;', + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'medium' + }); + } + if ( config.isEditMailMerge || config.isEditOle ) { + me.btnSearch = new Common.UI.Button({ + id : 'id-toolbar-btn-search', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-menu-search', + lock : [_set.lostConnect], + dataHint : '1', + dataHintDirection: 'bottom' + }); - me.btnEditChartData = new Common.UI.Button({ - id : 'id-toolbar-rtn-edit-chart-data', - cls : 'btn-toolbar', - iconCls : 'toolbar__icon btn-select-range', - caption : me.tipEditChartData, - lock : [_set.editCell, _set.selRange, _set.selRangeEdit, _set.lostConnect], - dataHint : '1', - dataHintDirection: 'left', - dataHintOffset: 'medium' - }); + me.btnSortDown = new Common.UI.Button({ + id : 'id-toolbar-btn-sort-down', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-sort-down', + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot], + dataHint : '1', + dataHintDirection: 'bottom' + }); - me.btnEditChartType = new Common.UI.Button({ - id : 'id-toolbar-rtn-edit-chart-type', - cls : 'btn-toolbar', - iconCls : 'toolbar__icon btn-menu-chart', - caption : me.tipEditChartType, - lock : [_set.editCell, _set.selRange, _set.selRangeEdit, _set.lostConnect], - style : 'min-width: 120px;', - dataHint : '1', - dataHintDirection: 'left', - dataHintOffset: 'medium' - }); - } else - if ( config.isEditMailMerge ) { - me.$layout = $(_.template(simple)(config)); + me.btnSortUp = new Common.UI.Button({ + id : 'id-toolbar-btn-sort-up', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-sort-up', + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot], + dataHint : '1', + dataHintDirection: 'bottom' + }); - me.btnSearch = new Common.UI.Button({ - id : 'id-toolbar-btn-search', - cls : 'btn-toolbar', - iconCls : 'toolbar__icon btn-menu-search', - lock : [_set.lostConnect] - }); + me.btnSetAutofilter = new Common.UI.Button({ + id : 'id-toolbar-btn-setautofilter', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-autofilter', + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot], + enableToggle: true, + dataHint : '1', + dataHintDirection: 'bottom' + }); - me.btnSortDown = new Common.UI.Button({ - id : 'id-toolbar-btn-sort-down', - cls : 'btn-toolbar', - iconCls : 'toolbar__icon btn-sort-down', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot] - }); - - me.btnSortUp = new Common.UI.Button({ - id : 'id-toolbar-btn-sort-up', - cls : 'btn-toolbar', - iconCls : 'toolbar__icon btn-sort-up', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot] - }); - - me.btnSetAutofilter = new Common.UI.Button({ - id : 'id-toolbar-btn-setautofilter', - cls : 'btn-toolbar', - iconCls : 'toolbar__icon btn-autofilter', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot], - enableToggle: true - }); - - me.btnClearAutofilter = new Common.UI.Button({ - id : 'id-toolbar-btn-clearfilter', - cls : 'btn-toolbar', - iconCls : 'toolbar__icon btn-clear-filter', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleDelFilter, _set.editPivot] - }); - } else - if ( config.isEdit ) { + me.btnClearAutofilter = new Common.UI.Button({ + id : 'id-toolbar-btn-clearfilter', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-clear-filter', + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleDelFilter, _set.editPivot], + dataHint : '1', + dataHintDirection: 'bottom' + }); + } + } else if ( config.isEdit ) { Common.UI.Mixtbar.prototype.initialize.call(this, { template: _.template(template), tabs: [ @@ -1781,7 +1790,7 @@ define([ }); if ( mode.isEdit ) { - if (!mode.isEditDiagram && !mode.isEditMailMerge) { + if (!mode.isEditDiagram && !mode.isEditMailMerge && !mode.isEditOle) { var top = Common.localStorage.getItem("sse-pgmargins-top"), left = Common.localStorage.getItem("sse-pgmargins-left"), bottom = Common.localStorage.getItem("sse-pgmargins-bottom"), @@ -2361,7 +2370,7 @@ define([ })); } - if (!this.mode.isEditMailMerge && !this.mode.isEditDiagram) + if (!this.mode.isEditMailMerge && !this.mode.isEditDiagram && !this.mode.isEditOle) this.updateMetricUnit(); }, @@ -2412,7 +2421,7 @@ define([ setApi: function(api) { this.api = api; - if (!this.mode.isEditMailMerge && !this.mode.isEditDiagram) { + if (!this.mode.isEditMailMerge && !this.mode.isEditDiagram && !this.mode.isEditOle) { this.api.asc_registerCallback('asc_onCollaborativeChanges', _.bind(this.onApiCollaborativeChanges, this)); this.api.asc_registerCallback('asc_onSendThemeColorSchemes', _.bind(this.onApiSendThemeColorSchemes, this)); this.api.asc_registerCallback('asc_onAuthParticipantsChanged', _.bind(this.onApiUsersChanged, this)); @@ -2572,7 +2581,7 @@ define([ }, onAppReady: function (config) { - if (!this.mode.isEdit || this.mode.isEditMailMerge || this.mode.isEditDiagram) return; + if (!this.mode.isEdit || this.mode.isEditMailMerge || this.mode.isEditDiagram || this.mode.isEditOle) return; var me = this; var _holder_view = SSE.getController('DocumentHolder').getView('DocumentHolder'); diff --git a/apps/spreadsheeteditor/main/app_dev.js b/apps/spreadsheeteditor/main/app_dev.js index 746539606..ff148b677 100644 --- a/apps/spreadsheeteditor/main/app_dev.js +++ b/apps/spreadsheeteditor/main/app_dev.js @@ -155,6 +155,7 @@ require([ 'Common.Controllers.Chat', 'Common.Controllers.Comments', 'Common.Controllers.Plugins' + ,'Common.Controllers.ExternalOleEditor' ,'Common.Controllers.ReviewChanges' ,'Common.Controllers.Protection' ] @@ -193,6 +194,7 @@ require([ 'common/main/lib/controller/Comments', 'common/main/lib/controller/Chat', 'common/main/lib/controller/Plugins' + ,'common/main/lib/controller/ExternalOleEditor' ,'common/main/lib/controller/ReviewChanges' ,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Themes' diff --git a/apps/spreadsheeteditor/main/index.html b/apps/spreadsheeteditor/main/index.html index 15e5334a7..c68bc5eae 100644 --- a/apps/spreadsheeteditor/main/index.html +++ b/apps/spreadsheeteditor/main/index.html @@ -353,19 +353,8 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/apps/spreadsheeteditor/main/index_loader.html b/apps/spreadsheeteditor/main/index_loader.html index c38785e84..3a6770649 100644 --- a/apps/spreadsheeteditor/main/index_loader.html +++ b/apps/spreadsheeteditor/main/index_loader.html @@ -260,19 +260,8 @@ - - - - - - - - - - - - - - - - - - - - - -
    diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json index 80a167977..7740a772d 100644 --- a/apps/spreadsheeteditor/main/locale/be.json +++ b/apps/spreadsheeteditor/main/locale/be.json @@ -36,7 +36,7 @@ "Common.define.conditionalData.textLessEq": "Менш альбо роўна", "Common.Translation.warnFileLocked": "Дакумент выкарыстоўваецца іншай праграмай. Вы можаце працягнуць рэдагаванне і захаваць яго як копію.", "Common.UI.ButtonColored.textAutoColor": "Аўтаматычна", - "Common.UI.ButtonColored.textNewColor": "Дадаць новы адвольны колер", + "Common.UI.ButtonColored.textNewColor": "Адвольны колер", "Common.UI.ComboBorderSize.txtNoBorders": "Без межаў", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Без межаў", "Common.UI.ComboDataView.emptyComboText": "Без стыляў", @@ -1664,6 +1664,7 @@ "SSE.Views.DocumentHolder.textUndo": "Адрабіць", "SSE.Views.DocumentHolder.textUnFreezePanes": "Адмацаваць вобласці", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрэлкі", "SSE.Views.DocumentHolder.topCellText": "Выраўнаваць па верхняму краю", "SSE.Views.DocumentHolder.txtAccounting": "Фінансавы", "SSE.Views.DocumentHolder.txtAddComment": "Дадаць каментар", @@ -1889,7 +1890,7 @@ "SSE.Views.FormatRulesEditDlg.textItem": "Элемент", "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Левыя межы", "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Унутраныя гарызантальныя межы", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Дадаць новы адвольны колер", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Адвольны колер", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Без межаў", "SSE.Views.FormatRulesEditDlg.textNone": "Няма", "SSE.Views.FormatRulesEditDlg.tipBorders": "Межы", @@ -1981,7 +1982,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Курсіў", "SSE.Views.HeaderFooterDialog.textLeft": "Злева", "SSE.Views.HeaderFooterDialog.textMaxError": "Уведзены занадта доўгі тэкставы радок. Паменшыце колькасць знакаў.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Дадаць новы адвольны колер", + "SSE.Views.HeaderFooterDialog.textNewColor": "Адвольны колер", "SSE.Views.HeaderFooterDialog.textOdd": "Няцотная старонка", "SSE.Views.HeaderFooterDialog.textPageCount": "Колькасць старонак", "SSE.Views.HeaderFooterDialog.textPageNum": "Нумар старонкі", @@ -2659,7 +2660,7 @@ "SSE.Views.Statusbar.textCount": "Колькасць", "SSE.Views.Statusbar.textMax": "Макс", "SSE.Views.Statusbar.textMin": "Мін", - "SSE.Views.Statusbar.textNewColor": "Дадаць новы адвольны колер", + "SSE.Views.Statusbar.textNewColor": "Адвольны колер", "SSE.Views.Statusbar.textNoColor": "Без колеру", "SSE.Views.Statusbar.textSum": "Сума", "SSE.Views.Statusbar.tipAddTab": "Дадаць аркуш", @@ -2840,7 +2841,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Унутраныя гарызантальныя межы", "SSE.Views.Toolbar.textMoreFormats": "Іншыя фарматы", "SSE.Views.Toolbar.textMorePages": "Іншыя старонкі", - "SSE.Views.Toolbar.textNewColor": "Дадаць новы адвольны колер", + "SSE.Views.Toolbar.textNewColor": "Адвольны колер", "SSE.Views.Toolbar.textNoBorders": "Без межаў", "SSE.Views.Toolbar.textOnePage": "Старонка", "SSE.Views.Toolbar.textOutBorders": "Вонкавыя межы", diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json index f6510a7d2..25dbe96b9 100644 --- a/apps/spreadsheeteditor/main/locale/bg.json +++ b/apps/spreadsheeteditor/main/locale/bg.json @@ -15,6 +15,10 @@ "Common.define.chartData.textStock": "Борсова", "Common.define.chartData.textSurface": "Повърхност", "Common.define.chartData.textWinLossSpark": "Печалба/Загуба", + "Common.define.conditionalData.textError": "Грешка", + "Common.define.conditionalData.textFormula": "Формула", + "Common.UI.ButtonColored.textAutoColor": "Автоматичен", + "Common.UI.ButtonColored.textNewColor": "Нов Потребителски Цвят", "Common.UI.ComboBorderSize.txtNoBorders": "Няма граници", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Няма граници", "Common.UI.ComboDataView.emptyComboText": "Няма стилове", @@ -57,6 +61,8 @@ "Common.Views.About.txtPoweredBy": "Задвижвани от", "Common.Views.About.txtTel": "тел.: ", "Common.Views.About.txtVersion": "Версия", + "Common.Views.AutoCorrectDialog.textDelete": "Изтрий", + "Common.Views.AutoCorrectDialog.textRestore": "Възстанови", "Common.Views.Chat.textSend": "Изпращам", "Common.Views.Comments.textAdd": "Добави", "Common.Views.Comments.textAddComment": "Добави коментар ", @@ -103,10 +109,13 @@ "Common.Views.Header.tipViewUsers": "Преглеждайте потребителите и управлявайте правата за достъп до документи", "Common.Views.Header.txtAccessRights": "Промяна на правата за достъп", "Common.Views.Header.txtRename": "Преименувам", + "Common.Views.History.textRestore": "Възстанови", + "Common.Views.History.textShow": "Разширете", "Common.Views.ImageFromUrlDialog.textUrl": "Поставете URL адрес на изображение:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Това поле е задължително", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Това поле трябва да е URL адрес във формат \"http://www.example.com\"", "Common.Views.OpenDialog.closeButtonText": "Затвори файла", + "Common.Views.OpenDialog.txtAdvanced": "Допълнително", "Common.Views.OpenDialog.txtColon": "Дебело черво", "Common.Views.OpenDialog.txtComma": "Запетая", "Common.Views.OpenDialog.txtDelimiter": "Разделител", @@ -194,6 +203,7 @@ "Common.Views.ReviewPopover.textOpenAgain": "Отвори отново", "Common.Views.ReviewPopover.textReply": "Отговор", "Common.Views.ReviewPopover.textResolve": "Решение", + "Common.Views.ReviewPopover.txtDeleteTip": "Изтрий", "Common.Views.SaveAsDlg.textLoading": "Зареждане", "Common.Views.SaveAsDlg.textTitle": "Папка за запис", "Common.Views.SelectFileDlg.textLoading": "Зареждане", @@ -221,6 +231,7 @@ "Common.Views.SignSettingsDialog.textShowDate": "Покажете датата на знака в реда за подпис", "Common.Views.SignSettingsDialog.textTitle": "Настройка на подпис", "Common.Views.SignSettingsDialog.txtEmpty": "Това поле е задължително", + "SSE.Controllers.DataTab.txtExpand": "Разширете", "SSE.Controllers.DocumentHolder.alignmentText": "Подравняване", "SSE.Controllers.DocumentHolder.centerText": "Център", "SSE.Controllers.DocumentHolder.deleteColumnText": "Изтриване на колона", @@ -477,11 +488,13 @@ "SSE.Controllers.Main.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.", "SSE.Controllers.Main.textAnonymous": "Анонимен", "SSE.Controllers.Main.textBuyNow": "Посетете уебсайта", + "SSE.Controllers.Main.textChangesSaved": "Всички промени са запазени", "SSE.Controllers.Main.textClose": "Затвори", "SSE.Controllers.Main.textCloseTip": "Кликнете, за да затворите върха", "SSE.Controllers.Main.textConfirm": "Потвърждаване", "SSE.Controllers.Main.textContactUs": "Свържете се с продажбите", "SSE.Controllers.Main.textCustomLoader": "Моля, имайте предвид, че според условията на лиценза нямате право да сменяте товарача.
    Моля, свържете се с нашия отдел Продажби, за да получите оферта.", + "SSE.Controllers.Main.textGuest": "Гост", "SSE.Controllers.Main.textLoadingDocument": "Електронната таблица се зарежда", "SSE.Controllers.Main.textNo": "Не", "SSE.Controllers.Main.textNoLicenseTitle": "Ограничение за връзка ONLYOFFICE", @@ -502,6 +515,7 @@ "SSE.Controllers.Main.txtDiagramTitle": "Заглавие на диаграмата", "SSE.Controllers.Main.txtEditingMode": "Задаване на режим на редактиране ...", "SSE.Controllers.Main.txtFiguredArrows": "Фигурни стрели", + "SSE.Controllers.Main.txtGroup": "Група", "SSE.Controllers.Main.txtLines": "Линии", "SSE.Controllers.Main.txtMath": "Математик", "SSE.Controllers.Main.txtPrintArea": "Печат_зона", @@ -736,6 +750,7 @@ "SSE.Controllers.Toolbar.textFontSizeErr": "Въведената стойност е неправилна.
    Въведете числова стойност между 1 и 409", "SSE.Controllers.Toolbar.textFraction": "Фракции", "SSE.Controllers.Toolbar.textFunction": "Функция", + "SSE.Controllers.Toolbar.textInsert": "Вмъкни", "SSE.Controllers.Toolbar.textIntegral": "Интеграли", "SSE.Controllers.Toolbar.textLargeOperator": "Големи оператори", "SSE.Controllers.Toolbar.textLimitAndLog": "Граници и логаритми", @@ -1074,6 +1089,7 @@ "SSE.Controllers.Viewport.textHideFBar": "Скриване на лентата за формули", "SSE.Controllers.Viewport.textHideGridlines": "Скриване на решетки", "SSE.Controllers.Viewport.textHideHeadings": "Скриване на заглавията", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Разширени настройки", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Персонализиран филтър", "SSE.Views.AutoFilterDialog.textAddSelection": "Добавяне на текуща селекция за филтриране", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Заготовки}", @@ -1121,6 +1137,7 @@ "SSE.Views.CellSettings.textBorderColor": "Цвят", "SSE.Views.CellSettings.textBorders": "Стил на границите", "SSE.Views.CellSettings.textOrientation": "Ориентация на текста", + "SSE.Views.CellSettings.textPosition": "Позиция", "SSE.Views.CellSettings.textSelectBorders": "Изберете граници, които искате да промените, като използвате избрания по-горе стил", "SSE.Views.CellSettings.tipAll": "Задайте външната граница и всички вътрешни линии", "SSE.Views.CellSettings.tipBottom": "Задайте само външната долна граница", @@ -1270,6 +1287,9 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Заглавие на ос", "SSE.Views.ChartSettingsDlg.textZero": "Нула", "SSE.Views.ChartSettingsDlg.txtEmpty": "Това поле е задължително", + "SSE.Views.DataTab.capBtnGroup": "Група", + "SSE.Views.DataValidationDialog.textAllow": "Позволява", + "SSE.Views.DataValidationDialog.textFormula": "Формула", "SSE.Views.DigitalFilterDialog.capAnd": "И", "SSE.Views.DigitalFilterDialog.capCondition1": "равно на", "SSE.Views.DigitalFilterDialog.capCondition10": "не завършва с", @@ -1429,6 +1449,8 @@ "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Запазване на копието като ...", "SSE.Views.FileMenu.btnSettingsCaption": "Разширени настройки ...", "SSE.Views.FileMenu.btnToEditCaption": "Редактиране на електронна таблица", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Приложи", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Добави автор", "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Приложение", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Промяна на правата за достъп", @@ -1480,6 +1502,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Точка", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Руски", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "като Windows", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Приложи", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Внимание", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "С парола", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Защитете електронната таблица", @@ -1493,6 +1516,16 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Преглед на подписи", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Общ", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Настройки на страницата", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "Всички граници", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Автоматичен", + "SSE.Views.FormatRulesEditDlg.textFormat": "Формат", + "SSE.Views.FormatRulesEditDlg.textFormula": "Формула", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Нов Потребителски Цвят", + "SSE.Views.FormatRulesEditDlg.textPosition": "Позиция", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Фракция", + "SSE.Views.FormatRulesManagerDlg.guestText": "Гост", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Изтрий", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Формат", "SSE.Views.FormatSettingsDialog.textCategory": "Категория", "SSE.Views.FormatSettingsDialog.textDecimal": "Десетичен", "SSE.Views.FormatSettingsDialog.textFormat": "Формат", @@ -1525,6 +1558,14 @@ "SSE.Views.FormulaDialog.textGroupDescription": "Изберете функционална група", "SSE.Views.FormulaDialog.textListDescription": "Изберете функция", "SSE.Views.FormulaDialog.txtTitle": "Вмъкване на функция", + "SSE.Views.FormulaTab.textAutomatic": "Автоматичен", + "SSE.Views.FormulaTab.txtAdditional": "Допълнителен", + "SSE.Views.FormulaTab.txtFormula": "Функция", + "SSE.Views.FormulaWizard.textFunction": "Функция", + "SSE.Views.HeaderFooterDialog.textEven": "Дори страница", + "SSE.Views.HeaderFooterDialog.textInsert": "Вмъкни", + "SSE.Views.HeaderFooterDialog.textNewColor": "Нов Потребителски Цвят", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Размер на шрифта", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Показ", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Връзка към", "SSE.Views.HyperlinkSettingsDialog.strRange": "Диапазон", @@ -1667,6 +1708,7 @@ "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Разстояние между знаците", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Разделът по подразбиране", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Ефекти", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "Точно", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Премахване", "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Премахнете всички", "SSE.Views.ParagraphSettingsAdvanced.textSet": "Посочете", @@ -1675,6 +1717,8 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Позиция на раздела", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Прав", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Параграф - Разширени настройки", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Автоматичен", + "SSE.Views.PivotGroupDialog.textAuto": "Автоматичен", "SSE.Views.PivotSettings.textAdvanced": "Показване на разширените настройки", "SSE.Views.PivotSettings.textColumns": "Колони", "SSE.Views.PivotSettings.textFields": "Изберете полета", @@ -1759,6 +1803,10 @@ "SSE.Views.PrintSettings.textShowHeadings": "Показване на заглавията на редове и колони", "SSE.Views.PrintSettings.textTitle": "Настройки за печат", "SSE.Views.PrintSettings.textTitlePDF": "Настройки на PDF", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Ориентация на страницата", + "SSE.Views.PrintWithPreview.txtPageSize": "Размер на страницата", + "SSE.Views.ProtectRangesDlg.guestText": "Гост", + "SSE.Views.ProtectRangesDlg.textDelete": "Изтрий", "SSE.Views.RightMenu.txtCellSettings": "Настройки на клетката", "SSE.Views.RightMenu.txtChartSettings": "Настройки на диаграмата", "SSE.Views.RightMenu.txtImageSettings": "Настройки на изображението", @@ -1770,6 +1818,8 @@ "SSE.Views.RightMenu.txtSparklineSettings": "Настройки за спарклайн", "SSE.Views.RightMenu.txtTableSettings": "Настройки на таблицата", "SSE.Views.RightMenu.txtTextArtSettings": "Настройки за текстово изкуство", + "SSE.Views.ScaleDialog.textAuto": "Автоматичен", + "SSE.Views.ScaleDialog.textHeight": "Височина", "SSE.Views.SetValueDialog.txtMaxText": "Максималната стойност за това поле е {0}", "SSE.Views.SetValueDialog.txtMinText": "Минималната стойност за това поле е {0}", "SSE.Views.ShapeSettings.strBackground": "Цвят на фона", @@ -1783,6 +1833,7 @@ "SSE.Views.ShapeSettings.strTransparency": "Непрозрачност", "SSE.Views.ShapeSettings.strType": "Тип", "SSE.Views.ShapeSettings.textAdvanced": "Показване на разширените настройки", + "SSE.Views.ShapeSettings.textAngle": "Ъгъл", "SSE.Views.ShapeSettings.textBorderSizeErr": "Въведената стойност е неправилна.
    Въведете стойност между 0 pt и 1584 pt.", "SSE.Views.ShapeSettings.textColor": "Цветово пълнене", "SSE.Views.ShapeSettings.textDirection": "Посока", @@ -1801,6 +1852,7 @@ "SSE.Views.ShapeSettings.textNoFill": "Без попълване", "SSE.Views.ShapeSettings.textOriginalSize": "Оригинален размер", "SSE.Views.ShapeSettings.textPatternFill": "Модел", + "SSE.Views.ShapeSettings.textPosition": "Позиция", "SSE.Views.ShapeSettings.textRadial": "Радиален", "SSE.Views.ShapeSettings.textRotate90": "Завъртане на 90 °", "SSE.Views.ShapeSettings.textRotation": "Завъртане", @@ -1872,6 +1924,16 @@ "SSE.Views.SignatureSettings.txtRequestedSignatures": "Тази електронна таблица трябва да бъде подписана.", "SSE.Views.SignatureSettings.txtSigned": "В електронната таблица са добавени валидни подписи. Електронната таблица е защитена от редактиране.", "SSE.Views.SignatureSettings.txtSignedInvalid": "Някои от цифровите подписи в електронната таблица са невалидни или не можаха да бъдат потвърдени. Електронната таблица е защитена от редактиране.", + "SSE.Views.SlicerSettings.textAsc": "Възходящ", + "SSE.Views.SlicerSettings.textHeight": "Височина", + "SSE.Views.SlicerSettings.textPosition": "Позиция", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Височина", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Възходящ", + "SSE.Views.SortDialog.textAsc": "Възходящ", + "SSE.Views.SortDialog.textAuto": "Автоматичен", + "SSE.Views.SortDialog.textFontColor": "Цвят на шрифта", + "SSE.Views.SpecialPasteDialog.textFormats": "Формати", + "SSE.Views.SpecialPasteDialog.textFormulas": "Формули", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Копиране до края)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Преместване в края)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Копиране преди лист", @@ -1961,6 +2023,7 @@ "SSE.Views.TextArtSettings.strStroke": "Удар", "SSE.Views.TextArtSettings.strTransparency": "Непрозрачност", "SSE.Views.TextArtSettings.strType": "Тип", + "SSE.Views.TextArtSettings.textAngle": "Ъгъл", "SSE.Views.TextArtSettings.textBorderSizeErr": "Въведената стойност е неправилна.
    Въведете стойност между 0 pt и 1584 pt.", "SSE.Views.TextArtSettings.textColor": "Цветово пълнене", "SSE.Views.TextArtSettings.textDirection": "Посока", @@ -1973,6 +2036,7 @@ "SSE.Views.TextArtSettings.textLinear": "Линеен", "SSE.Views.TextArtSettings.textNoFill": "Без попълване", "SSE.Views.TextArtSettings.textPatternFill": "Модел", + "SSE.Views.TextArtSettings.textPosition": "Позиция", "SSE.Views.TextArtSettings.textRadial": "Радиален", "SSE.Views.TextArtSettings.textSelectTexture": "Изберете", "SSE.Views.TextArtSettings.textStretch": "Разтягане", @@ -1993,6 +2057,7 @@ "SSE.Views.TextArtSettings.txtNoBorders": "Няма линия", "SSE.Views.TextArtSettings.txtPapyrus": "Папирус", "SSE.Views.TextArtSettings.txtWood": "Дърво", + "SSE.Views.Toolbar.capBtnAddComment": "Добави коментар", "SSE.Views.Toolbar.capBtnComment": "Коментар", "SSE.Views.Toolbar.capBtnMargins": "Полета", "SSE.Views.Toolbar.capBtnPageOrient": "Ориентация", @@ -2021,6 +2086,8 @@ "SSE.Views.Toolbar.textAlignRight": "Подравняване надясно", "SSE.Views.Toolbar.textAlignTop": "Подравняване отгоре", "SSE.Views.Toolbar.textAllBorders": "Всички граници", + "SSE.Views.Toolbar.textAuto": "Автоматичен", + "SSE.Views.Toolbar.textAutoColor": "Автоматичен", "SSE.Views.Toolbar.textBold": "Получер", "SSE.Views.Toolbar.textBordersColor": "Цвят на границата", "SSE.Views.Toolbar.textBordersStyle": "Стил на границата", @@ -2036,6 +2103,7 @@ "SSE.Views.Toolbar.textDiagUpBorder": "Диагонална граница нагоре", "SSE.Views.Toolbar.textEntireCol": "Цяла колона", "SSE.Views.Toolbar.textEntireRow": "Цял ред", + "SSE.Views.Toolbar.textHeight": "Височина", "SSE.Views.Toolbar.textHorizontal": "Хоризонтален текст", "SSE.Views.Toolbar.textInsDown": "Преместете клетките надолу", "SSE.Views.Toolbar.textInsideBorders": "Вътрешни граници", @@ -2068,6 +2136,7 @@ "SSE.Views.Toolbar.textSuperscript": "Горен индекс", "SSE.Views.Toolbar.textTabCollaboration": "Сътрудничество", "SSE.Views.Toolbar.textTabFile": "досие", + "SSE.Views.Toolbar.textTabFormula": "Формула", "SSE.Views.Toolbar.textTabHome": "У дома", "SSE.Views.Toolbar.textTabInsert": "Вмъкни", "SSE.Views.Toolbar.textTabLayout": "Оформление", @@ -2206,5 +2275,8 @@ "SSE.Views.Top10FilterDialog.txtItems": "Вещ", "SSE.Views.Top10FilterDialog.txtPercent": "На сто", "SSE.Views.Top10FilterDialog.txtTitle": "Топ 10 на автофилтъра", - "SSE.Views.Top10FilterDialog.txtTop": "Отгоре" + "SSE.Views.Top10FilterDialog.txtTop": "Отгоре", + "SSE.Views.ViewManagerDlg.guestText": "Гост", + "SSE.Views.ViewManagerDlg.textDelete": "Изтрий", + "SSE.Views.ViewTab.textGridlines": "Мрежови линии" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 8e9b82dc2..df82f8c16 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obre per a la seva visualització", "Common.UI.ButtonColored.textAutoColor": "Automàtic", - "Common.UI.ButtonColored.textNewColor": "Afegeix un color personalitzat nou ", + "Common.UI.ButtonColored.textNewColor": "Color personalitzat nou ", "Common.UI.ComboBorderSize.txtNoBorders": "Sense vores", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sense vores", "Common.UI.ComboDataView.emptyComboText": "Sense estils", @@ -202,6 +202,7 @@ "Common.Views.Comments.textResolved": "S'ha resolt", "Common.Views.Comments.textSort": "Ordena els comentaris", "Common.Views.Comments.textViewResolved": "No teniu permís per tornar a obrir el comentari", + "Common.Views.Comments.txtEmpty": "No hi ha cap comentari al full", "Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge", "Common.Views.CopyWarningDialog.textMsg": "Les accions de copia, talla i enganxa mitjançant els botons de la barra d’eines de l’editor i les accions del menú contextual només es realitzaran dins d’aquesta pestanya editor.

    Per copiar o enganxar a o des d’aplicacions fora de la pestanya de l'editor, utilitza les combinacions de teclat següents:", "Common.Views.CopyWarningDialog.textTitle": "Accions de copia, talla i enganxa ", @@ -1920,6 +1921,14 @@ "SSE.Views.DocumentHolder.textUndo": "Desfés", "SSE.Views.DocumentHolder.textUnFreezePanes": "Mobilitza subfinestres", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Pics de fletxa", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Pics de marca de selecció", + "SSE.Views.DocumentHolder.tipMarkersDash": "Pics de guió", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Pics de rombes plens", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Pics rodons plens", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Pics quadrats plens", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Pics rodons buits", + "SSE.Views.DocumentHolder.tipMarkersStar": "Pics d'estrella", "SSE.Views.DocumentHolder.topCellText": "Alineació a dalt", "SSE.Views.DocumentHolder.txtAccounting": "Comptabilitat", "SSE.Views.DocumentHolder.txtAddComment": "Afegeix un comentari", @@ -2018,7 +2027,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "Tanca el menú", "SSE.Views.FileMenu.btnCreateNewCaption": "Crea'n un de nou", "SSE.Views.FileMenu.btnDownloadCaption": "Baixa-ho com a...", - "SSE.Views.FileMenu.btnExitCaption": "Surt", + "SSE.Views.FileMenu.btnExitCaption": "Tancar", "SSE.Views.FileMenu.btnFileOpenCaption": "Obre...", "SSE.Views.FileMenu.btnHelpCaption": "Ajuda...", "SSE.Views.FileMenu.btnHistoryCaption": "Historial de versions", @@ -2211,7 +2220,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Mínim", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Punt mínim", "SSE.Views.FormatRulesEditDlg.textNegative": "Negatiu", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Afegeix un color personalitzat nou ", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Color personalitzat nou ", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Sense vores", "SSE.Views.FormatRulesEditDlg.textNone": "Cap", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Un o més dels valors especificats no són un percentatge vàlid.", @@ -2380,7 +2389,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Cursiva", "SSE.Views.HeaderFooterDialog.textLeft": "Esquerra", "SSE.Views.HeaderFooterDialog.textMaxError": "La cadena de text que heu introduït és massa llarga. Redueix el nombre de caràcters utilitzats.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Afegeix un color personalitzat nou ", + "SSE.Views.HeaderFooterDialog.textNewColor": "Color personalitzat nou ", "SSE.Views.HeaderFooterDialog.textOdd": "Pàgina senar", "SSE.Views.HeaderFooterDialog.textPageCount": "Recompte de pàgines", "SSE.Views.HeaderFooterDialog.textPageNum": "Número de pàgina", @@ -3154,7 +3163,7 @@ "SSE.Views.Statusbar.textCount": "Recompte", "SSE.Views.Statusbar.textMax": "Màx", "SSE.Views.Statusbar.textMin": "Mín", - "SSE.Views.Statusbar.textNewColor": "Afegeix un color personalitzat nou ", + "SSE.Views.Statusbar.textNewColor": "Color personalitzat nou ", "SSE.Views.Statusbar.textNoColor": "Cap color", "SSE.Views.Statusbar.textSum": "Suma", "SSE.Views.Statusbar.tipAddTab": "Afegeix un full de càlcul", @@ -3341,7 +3350,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Vores interiors horitzontals", "SSE.Views.Toolbar.textMoreFormats": "Més formats", "SSE.Views.Toolbar.textMorePages": "Més pàgines", - "SSE.Views.Toolbar.textNewColor": "Afegeix un color personalitzat nou ", + "SSE.Views.Toolbar.textNewColor": "Color personalitzat nou ", "SSE.Views.Toolbar.textNewRule": "Crea una norma", "SSE.Views.Toolbar.textNoBorders": "Sense vores", "SSE.Views.Toolbar.textOnePage": "pàgina", @@ -3429,14 +3438,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Insereix una taula", "SSE.Views.Toolbar.tipInsertText": "Insereix un quadre de text", "SSE.Views.Toolbar.tipInsertTextart": "Insereix Text Art", - "SSE.Views.Toolbar.tipMarkersArrow": "Pics de fletxa", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Pics de marca de selecció", - "SSE.Views.Toolbar.tipMarkersDash": "Pics de guió", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Pics de rombes plens", - "SSE.Views.Toolbar.tipMarkersFRound": "Pics rodons plens", - "SSE.Views.Toolbar.tipMarkersFSquare": "Pics quadrats plens", - "SSE.Views.Toolbar.tipMarkersHRound": "Pics rodons buits", - "SSE.Views.Toolbar.tipMarkersStar": "Pics d'estrella", "SSE.Views.Toolbar.tipMerge": "Combina i centra", "SSE.Views.Toolbar.tipNone": "cap", "SSE.Views.Toolbar.tipNumFormat": "Format de número", diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 8a1194bc3..0c261a3c2 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "Vrátit zpět", "SSE.Views.DocumentHolder.textUnFreezePanes": "Zrušit ukotvení příček", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Šipkové odrážky", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Zatržítkové odrážky", + "SSE.Views.DocumentHolder.tipMarkersDash": "Pomlčkové odrážky", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Vyplněné kulaté odrážky", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Plné čtvercové odrážky", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Duté kulaté odrážky", + "SSE.Views.DocumentHolder.tipMarkersStar": "Hvězdičkové odrážky", "SSE.Views.DocumentHolder.topCellText": "Zarovnat nahoru", "SSE.Views.DocumentHolder.txtAccounting": "Účetnictví", "SSE.Views.DocumentHolder.txtAddComment": "Přidat komentář", @@ -2018,7 +2026,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "Zavřít nabídku", "SSE.Views.FileMenu.btnCreateNewCaption": "Vytvořit nový", "SSE.Views.FileMenu.btnDownloadCaption": "Stáhnout jako…", - "SSE.Views.FileMenu.btnExitCaption": "Konec", + "SSE.Views.FileMenu.btnExitCaption": "Zavřít", "SSE.Views.FileMenu.btnFileOpenCaption": "Otevřít...", "SSE.Views.FileMenu.btnHelpCaption": "Nápověda…", "SSE.Views.FileMenu.btnHistoryCaption": "Historie verzí", @@ -3429,14 +3437,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Vložit tabulku", "SSE.Views.Toolbar.tipInsertText": "Vložit textové pole", "SSE.Views.Toolbar.tipInsertTextart": "Vložit Text art", - "SSE.Views.Toolbar.tipMarkersArrow": "Šipkové odrážky", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Zatržítkové odrážky", - "SSE.Views.Toolbar.tipMarkersDash": "Pomlčkové odrážky", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Kosočtvercové odrážky s výplní", - "SSE.Views.Toolbar.tipMarkersFRound": "Vyplněné kulaté odrážky", - "SSE.Views.Toolbar.tipMarkersFSquare": "Plné čtvercové odrážky", - "SSE.Views.Toolbar.tipMarkersHRound": "Duté kulaté odrážky", - "SSE.Views.Toolbar.tipMarkersStar": "Hvězdičkové odrážky", "SSE.Views.Toolbar.tipMerge": "Sloučit a vystředit", "SSE.Views.Toolbar.tipNone": "Žádné", "SSE.Views.Toolbar.tipNumFormat": "Formát čísla", diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json index b5882e216..59870677c 100644 --- a/apps/spreadsheeteditor/main/locale/da.json +++ b/apps/spreadsheeteditor/main/locale/da.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Opret en kopi", "Common.Translation.warnFileLockedBtnView": "Åben for visning", "Common.UI.ButtonColored.textAutoColor": "Automatisk", - "Common.UI.ButtonColored.textNewColor": "Tilføj ny brugerdefineret farve", + "Common.UI.ButtonColored.textNewColor": "Brugerdefineret farve", "Common.UI.ComboBorderSize.txtNoBorders": "Ingen rammer", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ingen rammer", "Common.UI.ComboDataView.emptyComboText": "Ingen stilarter", @@ -2193,7 +2193,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minpunkt", "SSE.Views.FormatRulesEditDlg.textNegative": "Negativ", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Tilføj ny brugerdefineret farve", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Brugerdefineret farve", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Ingen rammer", "SSE.Views.FormatRulesEditDlg.textNone": "ingen", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "En eller flere af de angivne værdier er ikke en gyldig procentdel.", @@ -2361,7 +2361,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Kursiv", "SSE.Views.HeaderFooterDialog.textLeft": "Venstre", "SSE.Views.HeaderFooterDialog.textMaxError": "Den indtastede tekststreng er for lang. Reducer antallet af anvendte tegn.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Tilføj ny brugerdefineret farve", + "SSE.Views.HeaderFooterDialog.textNewColor": "Brugerdefineret farve", "SSE.Views.HeaderFooterDialog.textOdd": "Ulige side", "SSE.Views.HeaderFooterDialog.textPageCount": "Side antal", "SSE.Views.HeaderFooterDialog.textPageNum": "Sidetal", @@ -3092,7 +3092,7 @@ "SSE.Views.Statusbar.textCount": "Tæl", "SSE.Views.Statusbar.textMax": "Max", "SSE.Views.Statusbar.textMin": "Min", - "SSE.Views.Statusbar.textNewColor": "Tilføj ny brugerdefineret farve", + "SSE.Views.Statusbar.textNewColor": "Brugerdefineret farve", "SSE.Views.Statusbar.textNoColor": "Ingen farve", "SSE.Views.Statusbar.textSum": "SUM", "SSE.Views.Statusbar.tipAddTab": "Tilføj regneark", @@ -3278,7 +3278,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Indsæt vandrette rammer", "SSE.Views.Toolbar.textMoreFormats": "Flere formatter", "SSE.Views.Toolbar.textMorePages": "Flere sider", - "SSE.Views.Toolbar.textNewColor": "Tilføj ny brugerdefineret farve", + "SSE.Views.Toolbar.textNewColor": "Brugerdefineret farve", "SSE.Views.Toolbar.textNewRule": "Ny regel", "SSE.Views.Toolbar.textNoBorders": "Ingen rammer", "SSE.Views.Toolbar.textOnePage": "Side", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index e8703bcbf..803a4a6e2 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "Rückgängig machen", "SSE.Views.DocumentHolder.textUnFreezePanes": "Fixierung aufheben", "SSE.Views.DocumentHolder.textVar": "VARIANZ", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Häkchenaufzählungszeichen", + "SSE.Views.DocumentHolder.tipMarkersDash": "Aufzählungszeichen", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Leere runde Aufzählungszeichen", + "SSE.Views.DocumentHolder.tipMarkersStar": "Sternförmige Aufzählungszeichen", "SSE.Views.DocumentHolder.topCellText": "Oben ausrichten", "SSE.Views.DocumentHolder.txtAccounting": "Rechnungswesen", "SSE.Views.DocumentHolder.txtAddComment": "Kommentar hinzufügen", @@ -2211,7 +2219,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minimaler Wert", "SSE.Views.FormatRulesEditDlg.textNegative": "Negativ", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Benutzerdefinierte Farbe", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Keine Rahmen", "SSE.Views.FormatRulesEditDlg.textNone": "Kein(e)", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Mindestens einer der angegebenen Werte ist kein gültiger Prozentwert.", @@ -3429,14 +3437,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Tabelle einfügen", "SSE.Views.Toolbar.tipInsertText": "Textfeld einfügen", "SSE.Views.Toolbar.tipInsertTextart": "TextArt einfügen", - "SSE.Views.Toolbar.tipMarkersArrow": "Pfeilförmige Aufzählungszeichen", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Häkchenaufzählungszeichen", - "SSE.Views.Toolbar.tipMarkersDash": "Aufzählungszeichen", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Ausgefüllte karoförmige Aufzählungszeichen", - "SSE.Views.Toolbar.tipMarkersFRound": "Ausgefüllte runde Aufzählungszeichen", - "SSE.Views.Toolbar.tipMarkersFSquare": "Ausgefüllte quadratische Aufzählungszeichen", - "SSE.Views.Toolbar.tipMarkersHRound": "Leere runde Aufzählungszeichen", - "SSE.Views.Toolbar.tipMarkersStar": "Sternförmige Aufzählungszeichen", "SSE.Views.Toolbar.tipMerge": "Verbinden und zentrieren", "SSE.Views.Toolbar.tipNone": "Keine", "SSE.Views.Toolbar.tipNumFormat": "Zahlenformat", diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json index 9bf4c5be0..13ffa5aee 100644 --- a/apps/spreadsheeteditor/main/locale/el.json +++ b/apps/spreadsheeteditor/main/locale/el.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου", "Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή", "Common.UI.ButtonColored.textAutoColor": "Αυτόματα", - "Common.UI.ButtonColored.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", + "Common.UI.ButtonColored.textNewColor": "Νέου Προσαρμοσμένου Χρώματος", "Common.UI.ComboBorderSize.txtNoBorders": "Χωρίς περιγράμματα", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Χωρίς περιγράμματα", "Common.UI.ComboDataView.emptyComboText": "Χωρίς τεχνοτροπίες", @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "Αναίρεση", "SSE.Views.DocumentHolder.textUnFreezePanes": "Απελευθέρωση Παραθύρων", "SSE.Views.DocumentHolder.textVar": "Διαφορά", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Κουκίδες βέλη", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Κουκίδες τσεκαρίσματος", + "SSE.Views.DocumentHolder.tipMarkersDash": "Κουκίδες παύλας", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Κουκίδες πλήρεις στρογγυλές", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Κουκίδες πλήρεις τετράγωνες", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Κουκίδες κούφιες στρογγυλές", + "SSE.Views.DocumentHolder.tipMarkersStar": "Κουκίδες αστέρια", "SSE.Views.DocumentHolder.topCellText": "Στοίχιση Πάνω", "SSE.Views.DocumentHolder.txtAccounting": "Λογιστική", "SSE.Views.DocumentHolder.txtAddComment": "Προσθήκη Σχολίου", @@ -2211,7 +2219,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Ελάχιστο", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Ελάχιστο σημείο", "SSE.Views.FormatRulesEditDlg.textNegative": "Αρνητική", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Νέου Προσαρμοσμένου Χρώματος", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Χωρίς Περιγράμματα", "SSE.Views.FormatRulesEditDlg.textNone": "Κανένα", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Μία ή περισσότερες από τις καθορισμένες τιμές δεν είναι έγκυρο ποσοστό.", @@ -2380,7 +2388,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Πλάγια", "SSE.Views.HeaderFooterDialog.textLeft": "Αριστερά", "SSE.Views.HeaderFooterDialog.textMaxError": "Η συμβολοσειρά που εισαγάγατε είναι πολύ μεγάλη. Μειώστε τον αριθμό των χαρακτήρων.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", + "SSE.Views.HeaderFooterDialog.textNewColor": "Νέου Προσαρμοσμένου Χρώματος", "SSE.Views.HeaderFooterDialog.textOdd": "Μονή σελίδα", "SSE.Views.HeaderFooterDialog.textPageCount": "Αρίθμηση σελίδων", "SSE.Views.HeaderFooterDialog.textPageNum": "Αριθμός σελίδας", @@ -3154,7 +3162,7 @@ "SSE.Views.Statusbar.textCount": "Μέτρηση", "SSE.Views.Statusbar.textMax": "Μέγιστο", "SSE.Views.Statusbar.textMin": "Ελάχιστο", - "SSE.Views.Statusbar.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", + "SSE.Views.Statusbar.textNewColor": "Νέου Προσαρμοσμένου Χρώματος", "SSE.Views.Statusbar.textNoColor": "Χωρίς Χρώμα", "SSE.Views.Statusbar.textSum": "Άθροισμα", "SSE.Views.Statusbar.tipAddTab": "Προσθήκη φύλλου εργασίας", @@ -3341,7 +3349,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Εσωτερικά Οριζόντια Περιγράμματα", "SSE.Views.Toolbar.textMoreFormats": "Περισσότερες μορφές", "SSE.Views.Toolbar.textMorePages": "Περισσότερες σελίδες", - "SSE.Views.Toolbar.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", + "SSE.Views.Toolbar.textNewColor": "Νέου Προσαρμοσμένου Χρώματος", "SSE.Views.Toolbar.textNewRule": "Νέος Κανόνας", "SSE.Views.Toolbar.textNoBorders": "Χωρίς Περιγράμματα", "SSE.Views.Toolbar.textOnePage": "σελίδα", @@ -3429,14 +3437,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Εισαγωγή πίνακα", "SSE.Views.Toolbar.tipInsertText": "Εισαγωγή πλαισίου κειμένου", "SSE.Views.Toolbar.tipInsertTextart": "Εισαγωγή Τεχνοκειμένου", - "SSE.Views.Toolbar.tipMarkersArrow": "Βέλη", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Τικ", - "SSE.Views.Toolbar.tipMarkersDash": "Παύλες", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Κουκίδες πλήρους ρόμβου", - "SSE.Views.Toolbar.tipMarkersFRound": "Κουκίδες", - "SSE.Views.Toolbar.tipMarkersFSquare": "Τετράγωνα", - "SSE.Views.Toolbar.tipMarkersHRound": "Κουκίδες άδειες", - "SSE.Views.Toolbar.tipMarkersStar": "Αστέρια", "SSE.Views.Toolbar.tipMerge": "Συγχώνευση και κεντράρισμα", "SSE.Views.Toolbar.tipNone": "Κανένα", "SSE.Views.Toolbar.tipNumFormat": "Μορφή αριθμού", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 3f19e5ed0..999f838a2 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -202,6 +202,7 @@ "Common.Views.Comments.textResolved": "Resolved", "Common.Views.Comments.textSort": "Sort comments", "Common.Views.Comments.textViewResolved": "You have no permission to reopen the comment", + "Common.Views.Comments.txtEmpty": "There are no comments in the sheet.", "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

    To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", @@ -1726,6 +1727,8 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title", "SSE.Views.ChartSettingsDlg.textZero": "Zero", "SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required", + "SSE.Views.ChartSettingsDlg.textBase": "Base", + "SSE.Views.ChartSettingsDlg.textLogScale": "Logarithmic Scale", "SSE.Views.ChartTypeDialog.errorComboSeries": "To create a combination chart, select at least two series of data.", "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "The selected chart type requires the secondary axis that an existing chart is using. Select another chart type.", "SSE.Views.ChartTypeDialog.textSecondary": "Secondary Axis", @@ -1924,6 +1927,14 @@ "SSE.Views.DocumentHolder.textUndo": "Undo", "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Arrow bullets", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Checkmark bullets", + "SSE.Views.DocumentHolder.tipMarkersDash": "Dash bullets", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Filled rhombus bullets", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Filled round bullets", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Filled square bullets", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Hollow round bullets", + "SSE.Views.DocumentHolder.tipMarkersStar": "Star bullets", "SSE.Views.DocumentHolder.topCellText": "Align Top", "SSE.Views.DocumentHolder.txtAccounting": "Accounting", "SSE.Views.DocumentHolder.txtAddComment": "Add Comment", @@ -1991,6 +2002,8 @@ "SSE.Views.DocumentHolder.txtUngroup": "Ungroup", "SSE.Views.DocumentHolder.txtWidth": "Width", "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", + "SSE.Views.DocumentHolder.chartDataText": "Select Chart Data", + "SSE.Views.DocumentHolder.chartTypeText": "Change Chart Type", "SSE.Views.FieldSettingsDialog.strLayout": "Layout", "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals", "SSE.Views.FieldSettingsDialog.textReport": "Report Form", @@ -2022,7 +2035,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", "SSE.Views.FileMenu.btnCreateNewCaption": "Create New", "SSE.Views.FileMenu.btnDownloadCaption": "Download as...", - "SSE.Views.FileMenu.btnExitCaption": "Exit", + "SSE.Views.FileMenu.btnExitCaption": "Close", "SSE.Views.FileMenu.btnFileOpenCaption": "Open...", "SSE.Views.FileMenu.btnHelpCaption": "Help...", "SSE.Views.FileMenu.btnHistoryCaption": "Version History", @@ -3447,14 +3460,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Insert table", "SSE.Views.Toolbar.tipInsertText": "Insert text box", "SSE.Views.Toolbar.tipInsertTextart": "Insert Text Art", - "SSE.Views.Toolbar.tipMarkersArrow": "Arrow bullets", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Checkmark bullets", - "SSE.Views.Toolbar.tipMarkersDash": "Dash bullets", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Filled rhombus bullets", - "SSE.Views.Toolbar.tipMarkersFRound": "Filled round bullets", - "SSE.Views.Toolbar.tipMarkersFSquare": "Filled square bullets", - "SSE.Views.Toolbar.tipMarkersHRound": "Hollow round bullets", - "SSE.Views.Toolbar.tipMarkersStar": "Star bullets", "SSE.Views.Toolbar.tipMerge": "Merge and center", "SSE.Views.Toolbar.tipNone": "None", "SSE.Views.Toolbar.tipNumFormat": "Number format", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index 2e6194d34..710abb3aa 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crear copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Agregar nuevo color personalizado", + "Common.UI.ButtonColored.textNewColor": "Color personalizado", "Common.UI.ComboBorderSize.txtNoBorders": "Sin bordes", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sin bordes", "Common.UI.ComboDataView.emptyComboText": "Sin estilo", @@ -202,6 +202,7 @@ "Common.Views.Comments.textResolved": "Resuelto", "Common.Views.Comments.textSort": "Ordenar comentarios", "Common.Views.Comments.textViewResolved": "No tiene permiso para volver a abrir el comentario", + "Common.Views.Comments.txtEmpty": "Sin comentarios en la hoja.", "Common.Views.CopyWarningDialog.textDontShow": "No volver a mostrar este mensaje", "Common.Views.CopyWarningDialog.textMsg": "Se puede realizar las acciones de copiar, cortar y pegar usando los botones en la barra de herramientas y el menú contextual sólo en esta pestaña del editor.

    Si quiere copiar o pegar algo fuera de esta pestaña, use las combinaciones de teclas siguientes:", "Common.Views.CopyWarningDialog.textTitle": "Funciones de Copiar, Cortar y Pegar", @@ -1920,6 +1921,14 @@ "SSE.Views.DocumentHolder.textUndo": "Deshacer", "SSE.Views.DocumentHolder.textUnFreezePanes": "Descongelar Paneles", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Viñetas de flecha", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Viñetas de marca de verificación", + "SSE.Views.DocumentHolder.tipMarkersDash": "Viñetas guión", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Rombos rellenos", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Viñetas redondas rellenas", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cuadradas rellenas", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas huecas", + "SSE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrella", "SSE.Views.DocumentHolder.topCellText": "Alinear en la parte superior", "SSE.Views.DocumentHolder.txtAccounting": "Contabilidad", "SSE.Views.DocumentHolder.txtAddComment": "Agregar comentario", @@ -2018,7 +2027,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "Cerrar menú", "SSE.Views.FileMenu.btnCreateNewCaption": "Crear nueva", "SSE.Views.FileMenu.btnDownloadCaption": "Descargar como...", - "SSE.Views.FileMenu.btnExitCaption": "Salir", + "SSE.Views.FileMenu.btnExitCaption": "Cerrar", "SSE.Views.FileMenu.btnFileOpenCaption": "Abrir...", "SSE.Views.FileMenu.btnHelpCaption": "Ayuda...", "SSE.Views.FileMenu.btnHistoryCaption": "Historial de versiones", @@ -2211,7 +2220,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Mínimo", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Punto mínimo", "SSE.Views.FormatRulesEditDlg.textNegative": "Negativo", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Agregar nuevo color personalizado", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Color personalizado", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Sin bordes", "SSE.Views.FormatRulesEditDlg.textNone": "Ningún", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Uno o varios valores especificados no son un porcentaje válido.", @@ -2380,7 +2389,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Cursiva", "SSE.Views.HeaderFooterDialog.textLeft": "A la izquierda", "SSE.Views.HeaderFooterDialog.textMaxError": "El texto es demasiado largo. Reduzca el número de caracteres usados.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Agregar nuevo color personalizado", + "SSE.Views.HeaderFooterDialog.textNewColor": "Color personalizado", "SSE.Views.HeaderFooterDialog.textOdd": "Página impar", "SSE.Views.HeaderFooterDialog.textPageCount": "Número de páginas", "SSE.Views.HeaderFooterDialog.textPageNum": "Número de página", @@ -3154,7 +3163,7 @@ "SSE.Views.Statusbar.textCount": "Contar", "SSE.Views.Statusbar.textMax": "Máx.", "SSE.Views.Statusbar.textMin": "Mín.", - "SSE.Views.Statusbar.textNewColor": "Agregar nuevo color personalizado", + "SSE.Views.Statusbar.textNewColor": "Color personalizado", "SSE.Views.Statusbar.textNoColor": "Sin color", "SSE.Views.Statusbar.textSum": "Suma", "SSE.Views.Statusbar.tipAddTab": "Agregar hoja de cálculo", @@ -3341,7 +3350,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Bordes horizontales internos", "SSE.Views.Toolbar.textMoreFormats": "Otros formatos", "SSE.Views.Toolbar.textMorePages": "Más páginas", - "SSE.Views.Toolbar.textNewColor": "Agregar nuevo color personalizado", + "SSE.Views.Toolbar.textNewColor": "Color personalizado", "SSE.Views.Toolbar.textNewRule": "Nueva regla", "SSE.Views.Toolbar.textNoBorders": "Sin bordes", "SSE.Views.Toolbar.textOnePage": "página", @@ -3429,14 +3438,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Insertar tabla", "SSE.Views.Toolbar.tipInsertText": "Insertar cuadro de texto", "SSE.Views.Toolbar.tipInsertTextart": "Inserta Texto Arte", - "SSE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", - "SSE.Views.Toolbar.tipMarkersDash": "Viñetas guión", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Rombos rellenos", - "SSE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas rellenas", - "SSE.Views.Toolbar.tipMarkersFSquare": "Viñetas cuadradas rellenas", - "SSE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas huecas", - "SSE.Views.Toolbar.tipMarkersStar": "Viñetas de estrella", "SSE.Views.Toolbar.tipMerge": "Combinar y centrar", "SSE.Views.Toolbar.tipNone": "Ninguno", "SSE.Views.Toolbar.tipNumFormat": "Formato de número", diff --git a/apps/spreadsheeteditor/main/locale/fi.json b/apps/spreadsheeteditor/main/locale/fi.json index f16b46878..a3e3987b3 100644 --- a/apps/spreadsheeteditor/main/locale/fi.json +++ b/apps/spreadsheeteditor/main/locale/fi.json @@ -2,6 +2,7 @@ "cancelButtonText": "Peruuta", "Common.Controllers.Chat.notcriticalErrorTitle": "Varoitus", "Common.Controllers.Chat.textEnterMessage": "Syötä viestisi tässä", + "Common.UI.ButtonColored.textNewColor": "Lisää uusi mukautettu väri", "Common.UI.ComboBorderSize.txtNoBorders": "Ei reunuksia", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ei reunuksia", "Common.UI.ComboDataView.emptyComboText": "Ei tyylejä", @@ -1010,11 +1011,13 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "kuten Windows", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Yleistä", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Sivun asetukset", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Lisää uusi mukautettu väri", "SSE.Views.FormatSettingsDialog.txtAccounting": "Kirjanpito", "SSE.Views.FormulaDialog.sDescription": "Kuvaus", "SSE.Views.FormulaDialog.textGroupDescription": "Valitse funktioryhmä", "SSE.Views.FormulaDialog.textListDescription": "Valitse funktio", "SSE.Views.FormulaDialog.txtTitle": "Lisää funktio", + "SSE.Views.HeaderFooterDialog.textNewColor": "Lisää uusi mukautettu väri", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Näyttö", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Linkitä:", "SSE.Views.HyperlinkSettingsDialog.strRange": "Tietoalue", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index a484271d7..c239eb6e1 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Créer une copie", "Common.Translation.warnFileLockedBtnView": "Ouvrir pour visualisation", "Common.UI.ButtonColored.textAutoColor": "Automatique", - "Common.UI.ButtonColored.textNewColor": "Ajouter une nouvelle couleur personnalisée", + "Common.UI.ButtonColored.textNewColor": "Couleur personnalisée", "Common.UI.ComboBorderSize.txtNoBorders": "Pas de bordures", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Pas de bordures", "Common.UI.ComboDataView.emptyComboText": "Aucun style", @@ -218,7 +218,7 @@ "Common.Views.Header.textBack": "Ouvrir l'emplacement du fichier", "Common.Views.Header.textCompactView": "Masquer la barre d'outils", "Common.Views.Header.textHideLines": "Masquer les règles", - "Common.Views.Header.textHideStatusBar": "Combiner la feuille et les barres d'état", + "Common.Views.Header.textHideStatusBar": "Combiner la barre de la feuille et la barre d'état", "Common.Views.Header.textRemoveFavorite": "Enlever des favoris", "Common.Views.Header.textSaveBegin": "Enregistrement en cours...", "Common.Views.Header.textSaveChanged": "Modifié", @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "Annuler", "SSE.Views.DocumentHolder.textUnFreezePanes": "Libérer les volets", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Puces fléchées", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Puces coches", + "SSE.Views.DocumentHolder.tipMarkersDash": "Tirets", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Losanges remplis", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Puces arrondies remplies", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Puces carrées remplies", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Puces rondes vides", + "SSE.Views.DocumentHolder.tipMarkersStar": "Puces en étoile", "SSE.Views.DocumentHolder.topCellText": "Aligner en haut", "SSE.Views.DocumentHolder.txtAccounting": "Comptabilité", "SSE.Views.DocumentHolder.txtAddComment": "Ajouter un commentaire", @@ -2018,7 +2026,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "Fermer le menu", "SSE.Views.FileMenu.btnCreateNewCaption": "Nouveau classeur", "SSE.Views.FileMenu.btnDownloadCaption": "Télécharger comme...", - "SSE.Views.FileMenu.btnExitCaption": "Quitter", + "SSE.Views.FileMenu.btnExitCaption": "Fermer", "SSE.Views.FileMenu.btnFileOpenCaption": "Ouvrir...", "SSE.Views.FileMenu.btnHelpCaption": "Aide...", "SSE.Views.FileMenu.btnHistoryCaption": "Historique des versions", @@ -2211,7 +2219,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Valeur minimum", "SSE.Views.FormatRulesEditDlg.textNegative": "Négatif", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Ajouter une nouvelle couleur personnalisée", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Couleur personnalisée", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Pas de bordures", "SSE.Views.FormatRulesEditDlg.textNone": "Rien", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Une ou plusieurs valeurs spécifiées ne correspondent pas à un pourcentage valide.", @@ -2773,7 +2781,7 @@ "SSE.Views.PrintWithPreview.txtPrintGrid": "Imprimer le quadrillage", "SSE.Views.PrintWithPreview.txtPrintHeadings": "Imprimer les titres des lignes et des colonnes", "SSE.Views.PrintWithPreview.txtPrintRange": "Zone d'impression", - "SSE.Views.PrintWithPreview.txtPrintTitles": "Imprimer les titres", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Titres à imprimer", "SSE.Views.PrintWithPreview.txtRepeat": "Répéter...", "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Répéter les colonnes à gauche", "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Répéter les lignes en haut", @@ -3429,14 +3437,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Insérer un tableau", "SSE.Views.Toolbar.tipInsertText": "Insérez zone de texte", "SSE.Views.Toolbar.tipInsertTextart": "Insérer Text Art", - "SSE.Views.Toolbar.tipMarkersArrow": "Puces fléchées", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Puces coches", - "SSE.Views.Toolbar.tipMarkersDash": "Tirets", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Losanges remplis", - "SSE.Views.Toolbar.tipMarkersFRound": "Puces arrondies remplies", - "SSE.Views.Toolbar.tipMarkersFSquare": "Puces carrées remplies", - "SSE.Views.Toolbar.tipMarkersHRound": "Puces rondes vides", - "SSE.Views.Toolbar.tipMarkersStar": "Puces en étoile", "SSE.Views.Toolbar.tipMerge": "Fusionner et centrer", "SSE.Views.Toolbar.tipNone": "Aucun", "SSE.Views.Toolbar.tipNumFormat": "Format de nombre", @@ -3585,7 +3585,7 @@ "SSE.Views.ViewTab.capBtnSheetView": "Afficher une feuille", "SSE.Views.ViewTab.textAlwaysShowToolbar": "Toujours afficher la barre d'outils", "SSE.Views.ViewTab.textClose": "Fermer", - "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combiner les barres des feuilles et d'état", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combiner la barre de la feuille et la barre d'état", "SSE.Views.ViewTab.textCreate": "Nouveau", "SSE.Views.ViewTab.textDefault": "Par défaut", "SSE.Views.ViewTab.textFormula": "Barre de formule", diff --git a/apps/spreadsheeteditor/main/locale/gl.json b/apps/spreadsheeteditor/main/locale/gl.json index 5ce47c8cc..3895c0ba4 100644 --- a/apps/spreadsheeteditor/main/locale/gl.json +++ b/apps/spreadsheeteditor/main/locale/gl.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crear unha copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Engadir nova cor personalizada", + "Common.UI.ButtonColored.textNewColor": "Nova cor personalizada", "Common.UI.ComboBorderSize.txtNoBorders": "Sen bordos", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sen bordos", "Common.UI.ComboDataView.emptyComboText": "Sen estilo", @@ -218,7 +218,7 @@ "Common.Views.Header.textBack": "Abrir ubicación do ficheiro", "Common.Views.Header.textCompactView": "Agochar barra de ferramentas", "Common.Views.Header.textHideLines": "Agochar regras", - "Common.Views.Header.textHideStatusBar": "COmbinar as barras de folla e de estado", + "Common.Views.Header.textHideStatusBar": "Combinar as barras de folla e de estado", "Common.Views.Header.textRemoveFavorite": "Eliminar dos Favoritos", "Common.Views.Header.textSaveBegin": "Gardando...", "Common.Views.Header.textSaveChanged": "Modificado", @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "Desfacer", "SSE.Views.DocumentHolder.textUnFreezePanes": "Mobilizar paneis", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Viñetas de flecha", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Viñetas de marca de verificación", + "SSE.Views.DocumentHolder.tipMarkersDash": "Viñetas guión", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Rombos recheos", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Viñetas redondas recheas", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Viñetas cadradas recheas", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Viñetas redondas ocas", + "SSE.Views.DocumentHolder.tipMarkersStar": "Viñetas de estrela", "SSE.Views.DocumentHolder.topCellText": "Aliñar á parte superior", "SSE.Views.DocumentHolder.txtAccounting": "Contabilidade", "SSE.Views.DocumentHolder.txtAddComment": "Engadir comentario", @@ -2211,7 +2219,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Mínimo", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Punto mínimo", "SSE.Views.FormatRulesEditDlg.textNegative": "Negativo", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Engadir nova cor personalizada", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Nova cor personalizada", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Sen bordos", "SSE.Views.FormatRulesEditDlg.textNone": "Ningún", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Un ou máis dos valores especificados non é unha porcentaxe válida.", @@ -2380,7 +2388,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Cursiva", "SSE.Views.HeaderFooterDialog.textLeft": "Esquerda", "SSE.Views.HeaderFooterDialog.textMaxError": "O texto é demasiado longo. Reduza o número de caracteres usados.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Engadir nova cor personalizada", + "SSE.Views.HeaderFooterDialog.textNewColor": "Nova cor personalizada", "SSE.Views.HeaderFooterDialog.textOdd": "Páxina impar", "SSE.Views.HeaderFooterDialog.textPageCount": "Número de páxinas", "SSE.Views.HeaderFooterDialog.textPageNum": "Número da páxina", @@ -3154,7 +3162,7 @@ "SSE.Views.Statusbar.textCount": "Contar", "SSE.Views.Statusbar.textMax": "Máx", "SSE.Views.Statusbar.textMin": "Mín.", - "SSE.Views.Statusbar.textNewColor": "Engadir nova cor personalizada", + "SSE.Views.Statusbar.textNewColor": "Nova cor personalizada", "SSE.Views.Statusbar.textNoColor": "Sen cor", "SSE.Views.Statusbar.textSum": "Suma", "SSE.Views.Statusbar.tipAddTab": "Engadir folla de cálculo", @@ -3341,7 +3349,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Bordos horizontais interiores", "SSE.Views.Toolbar.textMoreFormats": "Outros formatos", "SSE.Views.Toolbar.textMorePages": "Máis páxinas", - "SSE.Views.Toolbar.textNewColor": "Engadir nova cor personalizada", + "SSE.Views.Toolbar.textNewColor": "Nova cor personalizada", "SSE.Views.Toolbar.textNewRule": "Nova regra", "SSE.Views.Toolbar.textNoBorders": "Sen bordos", "SSE.Views.Toolbar.textOnePage": "páxina", @@ -3429,14 +3437,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Inserir táboa", "SSE.Views.Toolbar.tipInsertText": "Inserir caixa do texto", "SSE.Views.Toolbar.tipInsertTextart": "Inserir arte do texto", - "SSE.Views.Toolbar.tipMarkersArrow": "Viñetas de flecha", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Viñetas de marca de verificación", - "SSE.Views.Toolbar.tipMarkersDash": "Viñetas guión", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Rombos recheos", - "SSE.Views.Toolbar.tipMarkersFRound": "Viñetas redondas recheas", - "SSE.Views.Toolbar.tipMarkersFSquare": "Viñetas cadradas recheas", - "SSE.Views.Toolbar.tipMarkersHRound": "Viñetas redondas ocas", - "SSE.Views.Toolbar.tipMarkersStar": "Viñetas de estrela", "SSE.Views.Toolbar.tipMerge": "Combinar e centrar", "SSE.Views.Toolbar.tipNone": "Ningún", "SSE.Views.Toolbar.tipNumFormat": "Formato numérico", diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json index 0f2c0fa58..8ab824464 100644 --- a/apps/spreadsheeteditor/main/locale/hu.json +++ b/apps/spreadsheeteditor/main/locale/hu.json @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "Vissza", "SSE.Views.DocumentHolder.textUnFreezePanes": "Rögzítés eltávolítása", "SSE.Views.DocumentHolder.textVar": "Variancia", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Nyíl felsorolásjelek", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek", + "SSE.Views.DocumentHolder.tipMarkersDash": "Kötőjel felsorolásjelek", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Tömör kör felsorolásjelek", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Tömör szögletes felsorolásjelek", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Üreges kör felsorolásjelek", + "SSE.Views.DocumentHolder.tipMarkersStar": "Csillag felsorolásjelek", "SSE.Views.DocumentHolder.topCellText": "Felfelé rendez", "SSE.Views.DocumentHolder.txtAccounting": "Könyvelés", "SSE.Views.DocumentHolder.txtAddComment": "Megjegyzés hozzáadása", @@ -3428,14 +3436,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Táblázat beszúrása", "SSE.Views.Toolbar.tipInsertText": "Szövegdoboz beszúrása", "SSE.Views.Toolbar.tipInsertTextart": "TextArt beszúrása", - "SSE.Views.Toolbar.tipMarkersArrow": "Nyíl felsorolásjelek", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Jelölőnégyzet felsorolásjelek", - "SSE.Views.Toolbar.tipMarkersDash": "Kötőjel felsorolásjelek", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Tömör rombusz felsorolásjelek", - "SSE.Views.Toolbar.tipMarkersFRound": "Tömör kör felsorolásjelek", - "SSE.Views.Toolbar.tipMarkersFSquare": "Tömör szögletes felsorolásjelek", - "SSE.Views.Toolbar.tipMarkersHRound": "Üreges kör felsorolásjelek", - "SSE.Views.Toolbar.tipMarkersStar": "Csillag felsorolásjelek", "SSE.Views.Toolbar.tipMerge": "Összevonás és középre", "SSE.Views.Toolbar.tipNone": "Egyik sem", "SSE.Views.Toolbar.tipNumFormat": "Számformátum", diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json index 250546c06..1216de36b 100644 --- a/apps/spreadsheeteditor/main/locale/id.json +++ b/apps/spreadsheeteditor/main/locale/id.json @@ -1,190 +1,455 @@ { - "cancelButtonText": "Cancel", - "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", - "Common.Controllers.Chat.textEnterMessage": "Enter your message here", + "cancelButtonText": "Batalkan", + "Common.Controllers.Chat.notcriticalErrorTitle": "Peringatan", + "Common.Controllers.Chat.textEnterMessage": "Tuliskan pesan Anda di sini", "Common.Controllers.History.notcriticalErrorTitle": "Peringatan", - "Common.define.chartData.textArea": "Grafik Area", + "Common.define.chartData.textArea": "Area", + "Common.define.chartData.textAreaStacked": "Area yang ditumpuk", + "Common.define.chartData.textAreaStackedPer": "Area bertumpuk 100%", "Common.define.chartData.textBar": "Palang", + "Common.define.chartData.textBarNormal": "Grafik kolom klaster", + "Common.define.chartData.textBarNormal3d": "Kolom cluster 3-D", + "Common.define.chartData.textBarNormal3dPerspective": "Kolom 3-D", + "Common.define.chartData.textBarStacked": "Diagram kolom bertumpuk", + "Common.define.chartData.textBarStacked3d": "Kolom bertumpuk 3-D", + "Common.define.chartData.textBarStackedPer": "Kolom bertumpuk 100%", + "Common.define.chartData.textBarStackedPer3d": "Kolom bertumpuk 100% 3-D", "Common.define.chartData.textCharts": "Bagan", "Common.define.chartData.textColumn": "Kolom", "Common.define.chartData.textColumnSpark": "Kolom", + "Common.define.chartData.textCombo": "Combo", + "Common.define.chartData.textComboAreaBar": "Area yang ditumpuk - kolom klaster", + "Common.define.chartData.textComboBarLine": "Grafik kolom klaster - garis", + "Common.define.chartData.textComboBarLineSecondary": "Grafik kolom klaster - garis pada sumbu sekunder", + "Common.define.chartData.textComboCustom": "Custom kombinasi", + "Common.define.chartData.textDoughnut": "Doughnut", + "Common.define.chartData.textHBarNormal": "Grafik batang klaster", + "Common.define.chartData.textHBarNormal3d": "Diagram Batang Cluster 3-D", + "Common.define.chartData.textHBarStacked": "Diagram batang bertumpuk", + "Common.define.chartData.textHBarStacked3d": "Diagram batang bertumpuk 3-D", + "Common.define.chartData.textHBarStackedPer": "Diagram batang bertumpuk 100%", + "Common.define.chartData.textHBarStackedPer3d": "Diagram batang bertumpuk 100% 3-D", "Common.define.chartData.textLine": "Garis", + "Common.define.chartData.textLine3d": "Garis 3-D", + "Common.define.chartData.textLineMarker": "Garis dengan tanda", "Common.define.chartData.textLineSpark": "Garis", + "Common.define.chartData.textLineStacked": "Diagram garis bertumpuk", + "Common.define.chartData.textLineStackedMarker": "Diagram garis bertumpuk dengan marker", + "Common.define.chartData.textLineStackedPer": "Garis bertumpuk 100%", + "Common.define.chartData.textLineStackedPerMarker": "Garis bertumpuk 100% dengan marker", "Common.define.chartData.textPie": "Diagram Lingkaran", + "Common.define.chartData.textPie3d": "Pie 3-D", + "Common.define.chartData.textPoint": "XY (Scatter)", + "Common.define.chartData.textScatter": "Sebar", + "Common.define.chartData.textScatterLine": "Diagram sebar dengan garis lurus", + "Common.define.chartData.textScatterLineMarker": "Diagram sebar dengan garis lurus dan marker", + "Common.define.chartData.textScatterSmooth": "Diagram sebar dengan garis mulus", + "Common.define.chartData.textScatterSmoothMarker": "Diagram sebar dengan garis mulus dan marker", + "Common.define.chartData.textSparks": "Sparklines", + "Common.define.chartData.textStock": "Diagram Garis", + "Common.define.chartData.textSurface": "Permukaan", + "Common.define.chartData.textWinLossSpark": "Menang/Kalah", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "Tanpa pengaturan format", + "Common.define.conditionalData.text1Above": "1 std dev di atas", + "Common.define.conditionalData.text1Below": "1 std dev di bawah", + "Common.define.conditionalData.text2Above": "2 std dev di atas", + "Common.define.conditionalData.text2Below": "2 std dev di bawah", + "Common.define.conditionalData.text3Above": "3 std dev di atas", + "Common.define.conditionalData.text3Below": "3 std dev di bawah", "Common.define.conditionalData.textAbove": "Di atas", + "Common.define.conditionalData.textAverage": "Rata-rata", + "Common.define.conditionalData.textBegins": "Dimulai dari", "Common.define.conditionalData.textBelow": "Di bawah", + "Common.define.conditionalData.textBetween": "Diantara", + "Common.define.conditionalData.textBlank": "Kosong", + "Common.define.conditionalData.textBlanks": "Tidak berisi/kosong", "Common.define.conditionalData.textBottom": "Bawah", + "Common.define.conditionalData.textContains": "Berisi", + "Common.define.conditionalData.textDataBar": "Bar data", "Common.define.conditionalData.textDate": "Tanggal", "Common.define.conditionalData.textDuplicate": "Duplikat", + "Common.define.conditionalData.textEnds": "Berakhir dengan", + "Common.define.conditionalData.textEqAbove": "Sama dengan atau diatas", + "Common.define.conditionalData.textEqBelow": "Sama dengan atau dibawah", + "Common.define.conditionalData.textEqual": "Sama dengan", "Common.define.conditionalData.textError": "Kesalahan", + "Common.define.conditionalData.textErrors": "Berisi error", + "Common.define.conditionalData.textFormula": "Formula", "Common.define.conditionalData.textGreater": "Lebih Dari", "Common.define.conditionalData.textGreaterEq": "Lebih Dari atau Sama Dengan", + "Common.define.conditionalData.textIconSets": "Icon sets", + "Common.define.conditionalData.textLast7days": "Dalam 7 hari terakhir", "Common.define.conditionalData.textLastMonth": "bulan lalu", "Common.define.conditionalData.textLastWeek": "minggu lalu", "Common.define.conditionalData.textLess": "Kurang Dari", "Common.define.conditionalData.textLessEq": "Kurang Dari atau Sama Dengan", + "Common.define.conditionalData.textNextMonth": "Bulan berikutnya", + "Common.define.conditionalData.textNextWeek": "Minggu berikutnya", + "Common.define.conditionalData.textNotBetween": "Tidak diantara", + "Common.define.conditionalData.textNotBlanks": "Tidak ada yang kosong", + "Common.define.conditionalData.textNotContains": "Tidak memiliki", "Common.define.conditionalData.textNotEqual": "Tidak Sama Dengan", + "Common.define.conditionalData.textNotErrors": "Tidak berisi error", "Common.define.conditionalData.textText": "Teks", "Common.define.conditionalData.textThisMonth": "Bulan ini", + "Common.define.conditionalData.textThisWeek": "Minggu ini", "Common.define.conditionalData.textToday": "Hari ini", "Common.define.conditionalData.textTomorrow": "Besok", "Common.define.conditionalData.textTop": "Atas", + "Common.define.conditionalData.textUnique": "Unik", + "Common.define.conditionalData.textValue": "Nilai adalah", "Common.define.conditionalData.textYesterday": "Kemarin", + "Common.Translation.warnFileLocked": "File sedang diedit di aplikasi lain. Anda bisa melanjutkan edit dan menyimpannya sebagai salinan.", "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", + "Common.Translation.warnFileLockedBtnView": "Buka untuk dilihat", "Common.UI.ButtonColored.textAutoColor": "Otomatis", - "Common.UI.ButtonColored.textNewColor": "Tambahkan Warna Khusus Baru", - "Common.UI.ComboBorderSize.txtNoBorders": "No borders", - "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", - "Common.UI.ComboDataView.emptyComboText": "No styles", - "Common.UI.ExtendedColorDialog.addButtonText": "Add", - "Common.UI.ExtendedColorDialog.textCurrent": "Current", - "Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.
    Please enter a value between 000000 and FFFFFF.", - "Common.UI.ExtendedColorDialog.textNew": "New", - "Common.UI.ExtendedColorDialog.textRGBErr": "The entered value is incorrect.
    Please enter a numeric value between 0 and 255.", - "Common.UI.HSBColorPicker.textNoColor": "No Color", - "Common.UI.SearchDialog.textHighlight": "Highlight results", - "Common.UI.SearchDialog.textMatchCase": "Case sensitive", - "Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text", - "Common.UI.SearchDialog.textSearchStart": "Enter your text here", - "Common.UI.SearchDialog.textTitle": "Find and Replace", - "Common.UI.SearchDialog.textTitle2": "Find", - "Common.UI.SearchDialog.textWholeWords": "Whole words only", - "Common.UI.SearchDialog.txtBtnReplace": "Replace", - "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All", - "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", - "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
    Please click to save your changes and reload the updates.", + "Common.UI.ButtonColored.textNewColor": "Tambahkan warna khusus baru", + "Common.UI.ComboBorderSize.txtNoBorders": "Tidak ada pembatas", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Tidak ada pembatas", + "Common.UI.ComboDataView.emptyComboText": "Tidak ada model", + "Common.UI.ExtendedColorDialog.addButtonText": "Tambahkan", + "Common.UI.ExtendedColorDialog.textCurrent": "Saat ini", + "Common.UI.ExtendedColorDialog.textHexErr": "Input yang dimasukkan salah.
    Silakan masukkan input antara 000000 dan FFFFFF.", + "Common.UI.ExtendedColorDialog.textNew": "Baru", + "Common.UI.ExtendedColorDialog.textRGBErr": "Input yang Anda masukkan salah.
    Silakan masukkan input numerik antara 0 dan 255.", + "Common.UI.HSBColorPicker.textNoColor": "Tidak ada Warna", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan password", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tampilkan password", + "Common.UI.SearchDialog.textHighlight": "Sorot hasil", + "Common.UI.SearchDialog.textMatchCase": "Harus sama persis", + "Common.UI.SearchDialog.textReplaceDef": "Tuliskan teks pengganti", + "Common.UI.SearchDialog.textSearchStart": "Tuliskan teks Anda di sini", + "Common.UI.SearchDialog.textTitle": "Cari dan Ganti", + "Common.UI.SearchDialog.textTitle2": "Cari", + "Common.UI.SearchDialog.textWholeWords": "Seluruh kata saja", + "Common.UI.SearchDialog.txtBtnHideReplace": "Sembunyikan Replace", + "Common.UI.SearchDialog.txtBtnReplace": "Ganti", + "Common.UI.SearchDialog.txtBtnReplaceAll": "Ganti Semua", + "Common.UI.SynchronizeTip.textDontShow": "Jangan tampilkan pesan ini lagi", + "Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah diubah oleh pengguna lain.
    Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.", + "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standar", "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", - "Common.UI.Window.cancelButtonText": "Cancel", - "Common.UI.Window.closeButtonText": "Close", - "Common.UI.Window.noButtonText": "No", + "Common.UI.Themes.txtThemeClassicLight": "Terang Klasik", + "Common.UI.Themes.txtThemeDark": "Gelap", + "Common.UI.Themes.txtThemeLight": "Cerah", + "Common.UI.Window.cancelButtonText": "Batalkan", + "Common.UI.Window.closeButtonText": "Tutup", + "Common.UI.Window.noButtonText": "Tidak", "Common.UI.Window.okButtonText": "OK", - "Common.UI.Window.textConfirmation": "Confirmation", - "Common.UI.Window.textDontShow": "Don't show this message again", - "Common.UI.Window.textError": "Error", - "Common.UI.Window.textInformation": "Information", - "Common.UI.Window.textWarning": "Warning", - "Common.UI.Window.yesButtonText": "Yes", - "Common.Views.About.txtAddress": "address: ", - "Common.Views.About.txtLicensee": "LICENSEE", - "Common.Views.About.txtLicensor": "LICENSOR", - "Common.Views.About.txtMail": "email: ", + "Common.UI.Window.textConfirmation": "Konfirmasi", + "Common.UI.Window.textDontShow": "Jangan tampilkan pesan ini lagi", + "Common.UI.Window.textError": "Kesalahan", + "Common.UI.Window.textInformation": "Informasi", + "Common.UI.Window.textWarning": "Peringatan", + "Common.UI.Window.yesButtonText": "Ya", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "alamat:", + "Common.Views.About.txtLicensee": "PEMEGANG LISENSI", + "Common.Views.About.txtLicensor": "PEMBERI LISENSI", + "Common.Views.About.txtMail": "email:", "Common.Views.About.txtPoweredBy": "Powered by", - "Common.Views.About.txtTel": "tel.: ", - "Common.Views.About.txtVersion": "Version ", + "Common.Views.About.txtTel": "tel:", + "Common.Views.About.txtVersion": "Versi", "Common.Views.AutoCorrectDialog.textAdd": "Tambahkan", + "Common.Views.AutoCorrectDialog.textApplyAsWork": "Terapkan saat anda bekerja", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoCorrect", + "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat Sesuai yang Anda Mau", "Common.Views.AutoCorrectDialog.textBy": "oleh", "Common.Views.AutoCorrectDialog.textDelete": "Hapus", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet dan jalur jaringan dengan hyperlink.", + "Common.Views.AutoCorrectDialog.textMathCorrect": "AutoCorrect Matematika", + "Common.Views.AutoCorrectDialog.textNewRowCol": "Sertakan kolom dan baris baru di tabel", + "Common.Views.AutoCorrectDialog.textRecognized": "Fungsi yang Diterima", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Ekspresi ini merupakan ekspresi matematika. Ekspresi ini tidak akan dimiringkan secara otomatis.", "Common.Views.AutoCorrectDialog.textReplace": "Ganti", + "Common.Views.AutoCorrectDialog.textReplaceText": "Ganti Saat Anda Mengetik", + "Common.Views.AutoCorrectDialog.textReplaceType": "Ganti teks saat Anda mengetik", "Common.Views.AutoCorrectDialog.textReset": "Atur ulang", "Common.Views.AutoCorrectDialog.textResetAll": "Atur ulang kembali ke awal", "Common.Views.AutoCorrectDialog.textRestore": "Pemulihan", - "Common.Views.Chat.textSend": "Send", - "Common.Views.Comments.textAdd": "Add", - "Common.Views.Comments.textAddComment": "Add Comment", - "Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document", - "Common.Views.Comments.textAddReply": "Add Reply", + "Common.Views.AutoCorrectDialog.textTitle": "AutoCorrect", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Fungsi yang diterima harus memiliki huruf A sampai Z, huruf besar atau huruf kecil.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Semua ekspresi yang Anda tambahkan akan dihilangkan dan yang sudah terhapus akan dikembalikan. Apakah Anda ingin melanjutkan?", + "Common.Views.AutoCorrectDialog.warnReplace": "Entri autocorrect untuk %1 sudah ada. Apakah Anda ingin menggantinya?", + "Common.Views.AutoCorrectDialog.warnReset": "Semua autocorrect yang Anda tambahkan akan dihilangkan dan yang sudah diganti akan dikembalikan ke nilai awalnya. Apakah Anda ingin melanjutkan?", + "Common.Views.AutoCorrectDialog.warnRestore": "Entri autocorrect untuk %1 akan di reset ke nilai awal. Apakah Anda ingin melanjutkan?", + "Common.Views.Chat.textSend": "Kirim", + "Common.Views.Comments.mniAuthorAsc": "Penulis A sampai Z", + "Common.Views.Comments.mniAuthorDesc": "Penulis Z sampai A", + "Common.Views.Comments.mniDateAsc": "Tertua", + "Common.Views.Comments.mniDateDesc": "Terbaru", + "Common.Views.Comments.mniFilterGroups": "Filter Berdasarkan Grup", + "Common.Views.Comments.mniPositionAsc": "Dari atas", + "Common.Views.Comments.mniPositionDesc": "Dari bawah", + "Common.Views.Comments.textAdd": "Tambahkan", + "Common.Views.Comments.textAddComment": "Tambahkan Komentar", + "Common.Views.Comments.textAddCommentToDoc": "Tambahkan Komentar untuk Dokumen", + "Common.Views.Comments.textAddReply": "Tambahkan Balasan", "Common.Views.Comments.textAll": "Semua", - "Common.Views.Comments.textAnonym": "Guest", - "Common.Views.Comments.textCancel": "Cancel", - "Common.Views.Comments.textClose": "Close", - "Common.Views.Comments.textComments": "Comments", - "Common.Views.Comments.textEdit": "Edit", - "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", + "Common.Views.Comments.textAnonym": "Tamu", + "Common.Views.Comments.textCancel": "Batalkan", + "Common.Views.Comments.textClose": "Tutup", + "Common.Views.Comments.textClosePanel": "Tutup komentar", + "Common.Views.Comments.textComments": "Komentar", + "Common.Views.Comments.textEdit": "OK", + "Common.Views.Comments.textEnterCommentHint": "Tuliskan komentar Anda di sini", "Common.Views.Comments.textHintAddComment": "Tambahkan komentar", - "Common.Views.Comments.textOpenAgain": "Open Again", - "Common.Views.Comments.textReply": "Reply", - "Common.Views.Comments.textResolve": "Resolve", - "Common.Views.Comments.textResolved": "Resolved", - "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", - "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

    To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", - "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", - "Common.Views.CopyWarningDialog.textToCopy": "for Copy", - "Common.Views.CopyWarningDialog.textToCut": "for Cut", - "Common.Views.CopyWarningDialog.textToPaste": "for Paste", - "Common.Views.DocumentAccessDialog.textLoading": "Loading...", - "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings", + "Common.Views.Comments.textOpenAgain": "Buka Lagi", + "Common.Views.Comments.textReply": "Balas", + "Common.Views.Comments.textResolve": "Selesaikan", + "Common.Views.Comments.textResolved": "Diselesaikan", + "Common.Views.Comments.textSort": "Sortir komentar", + "Common.Views.Comments.textViewResolved": "Anda tidak memiliki izin membuka kembali komentar", + "Common.Views.CopyWarningDialog.textDontShow": "Jangan tampilkan pesan ini lagi", + "Common.Views.CopyWarningDialog.textMsg": "Langkah salin, potong dan tempel menggunakan tombol editor toolbar dan menu konteks dapat dilakukan hanya dengan tab editor ni saja.

    Untuk menyalin atau menempel ke atau dari aplikasi di luar tab editor, gunakan kombinasi tombol keyboard berikut ini:", + "Common.Views.CopyWarningDialog.textTitle": "Salin, Potong dan Tempel", + "Common.Views.CopyWarningDialog.textToCopy": "untuk Salin", + "Common.Views.CopyWarningDialog.textToCut": "untuk Potong", + "Common.Views.CopyWarningDialog.textToPaste": "untuk Tempel", + "Common.Views.DocumentAccessDialog.textLoading": "Memuat...", + "Common.Views.DocumentAccessDialog.textTitle": "Pengaturan Berbagi", + "Common.Views.EditNameDialog.textLabel": "Label:", + "Common.Views.EditNameDialog.textLabelError": "Label tidak boleh kosong.", + "Common.Views.Header.labelCoUsersDescr": "User yang sedang edit file:", + "Common.Views.Header.textAddFavorite": "Tandai sebagai favorit", "Common.Views.Header.textAdvSettings": "Pengaturan Lanjut", - "Common.Views.Header.textBack": "Go to Documents", + "Common.Views.Header.textBack": "Buka Dokumen", + "Common.Views.Header.textCompactView": "Sembunyikan Toolbar", "Common.Views.Header.textHideLines": "Sembunyikan Mistar", + "Common.Views.Header.textHideStatusBar": "Gabungkan sheet dan bar status", + "Common.Views.Header.textRemoveFavorite": "Hilangkan dari Favorit", + "Common.Views.Header.textSaveBegin": "Menyimpan...", + "Common.Views.Header.textSaveChanged": "Dimodifikasi", + "Common.Views.Header.textSaveEnd": "Semua perubahan tersimpan", + "Common.Views.Header.textSaveExpander": "Semua perubahan tersimpan", "Common.Views.Header.textZoom": "Pembesaran", + "Common.Views.Header.tipAccessRights": "Atur perizinan akses dokumen", "Common.Views.Header.tipDownload": "Unduh File", + "Common.Views.Header.tipGoEdit": "Edit file saat ini", + "Common.Views.Header.tipPrint": "Print file", "Common.Views.Header.tipRedo": "Ulangi", "Common.Views.Header.tipSave": "Simpan", "Common.Views.Header.tipUndo": "Batalkan", + "Common.Views.Header.tipUndock": "Buka dock ke jendela terpisah", "Common.Views.Header.tipViewSettings": "Lihat Pengaturan", + "Common.Views.Header.tipViewUsers": "Tampilkan user dan atur hak akses dokumen", "Common.Views.Header.txtAccessRights": "Ubah hak akses", "Common.Views.Header.txtRename": "Ganti nama", "Common.Views.History.textCloseHistory": "Tutup riwayat", + "Common.Views.History.textHide": "Collapse", + "Common.Views.History.textHideAll": "Sembunyikan detail perubahan", "Common.Views.History.textRestore": "Pemulihan", + "Common.Views.History.textShow": "Perluas", + "Common.Views.History.textShowAll": "Tampilkan detail perubahan", "Common.Views.History.textVer": "ver.", - "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", - "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", + "Common.Views.ImageFromUrlDialog.textUrl": "Tempel URL gambar:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", + "Common.Views.ListSettingsDialog.textBulleted": "Start slideshow", + "Common.Views.ListSettingsDialog.textNumbering": "Bernomor", + "Common.Views.ListSettingsDialog.tipChange": "Ubah butir", + "Common.Views.ListSettingsDialog.txtBullet": "Butir", "Common.Views.ListSettingsDialog.txtColor": "Warna", - "Common.Views.ListSettingsDialog.txtNone": "tidak ada", + "Common.Views.ListSettingsDialog.txtNewBullet": "Butir baru", + "Common.Views.ListSettingsDialog.txtNone": "Tidak ada", + "Common.Views.ListSettingsDialog.txtOfText": "% dari teks", "Common.Views.ListSettingsDialog.txtSize": "Ukuran", + "Common.Views.ListSettingsDialog.txtStart": "Dimulai pada", + "Common.Views.ListSettingsDialog.txtSymbol": "Simbol", + "Common.Views.ListSettingsDialog.txtTitle": "List Pengaturan", "Common.Views.ListSettingsDialog.txtType": "Tipe", + "Common.Views.OpenDialog.closeButtonText": "Tutup File", + "Common.Views.OpenDialog.textInvalidRange": "Rentang sel tidak valid", + "Common.Views.OpenDialog.textSelectData": "Pilih data", "Common.Views.OpenDialog.txtAdvanced": "Tingkat Lanjut", "Common.Views.OpenDialog.txtColon": "Titik dua", "Common.Views.OpenDialog.txtComma": "Koma", - "Common.Views.OpenDialog.txtDelimiter": "Delimiter", - "Common.Views.OpenDialog.txtEmpty": "Kolom ini harus diisi", - "Common.Views.OpenDialog.txtEncoding": "Encoding ", + "Common.Views.OpenDialog.txtDelimiter": "Pembatas", + "Common.Views.OpenDialog.txtDestData": "Pilih lokasi untuk data", + "Common.Views.OpenDialog.txtEmpty": "Area ini dibutuhkan", + "Common.Views.OpenDialog.txtEncoding": "Enkoding ", + "Common.Views.OpenDialog.txtIncorrectPwd": "Password salah.", "Common.Views.OpenDialog.txtOpenFile": "Masukkan kata sandi untuk buka file", "Common.Views.OpenDialog.txtOther": "Lainnya", "Common.Views.OpenDialog.txtPassword": "Kata Sandi", "Common.Views.OpenDialog.txtPreview": "Pratinjau", + "Common.Views.OpenDialog.txtProtected": "Jika Anda memasukkan password dan membuka file, password file saat ini akan di reset.", "Common.Views.OpenDialog.txtSemicolon": "Titik koma", - "Common.Views.OpenDialog.txtSpace": "Space", + "Common.Views.OpenDialog.txtSpace": "Spasi", "Common.Views.OpenDialog.txtTab": "Tab", - "Common.Views.OpenDialog.txtTitle": "Choose %1 options", + "Common.Views.OpenDialog.txtTitle": "Pilih %1 opsi", + "Common.Views.OpenDialog.txtTitleProtected": "File yang Diproteksi", + "Common.Views.PasswordDialog.txtDescription": "Buat password untuk melindungi dokumen ini", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Password konfirmasi tidak sama", "Common.Views.PasswordDialog.txtPassword": "Kata Sandi", + "Common.Views.PasswordDialog.txtRepeat": "Ulangi password", "Common.Views.PasswordDialog.txtTitle": "Setel kata sandi", - "Common.Views.PasswordDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.PasswordDialog.txtWarning": "Peringatan: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "Common.Views.PluginDlg.textLoading": "Memuat", + "Common.Views.Plugins.groupCaption": "Plugins", + "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textLoading": "Memuat", "Common.Views.Plugins.textStart": "Mulai", + "Common.Views.Plugins.textStop": "Stop", + "Common.Views.Protection.hintAddPwd": "Enkripsi dengan password", + "Common.Views.Protection.hintPwd": "Ganti atau hapus password", + "Common.Views.Protection.hintSignature": "Tambah tanda tangan digital atau garis tanda tangan", + "Common.Views.Protection.txtAddPwd": "Tambah password", "Common.Views.Protection.txtChangePwd": "Ubah kata sandi", + "Common.Views.Protection.txtDeletePwd": "Nama file", + "Common.Views.Protection.txtEncrypt": "Enkripsi", + "Common.Views.Protection.txtInvisibleSignature": "Tambah tanda tangan digital", + "Common.Views.Protection.txtSignature": "Tanda Tangan", + "Common.Views.Protection.txtSignatureLine": "Tambah garis tanda tangan", "Common.Views.RenameDialog.textName": "Nama file", + "Common.Views.RenameDialog.txtInvalidName": "Nama file tidak boleh berisi karakter seperti:", + "Common.Views.ReviewChanges.hintNext": "Ke perubahan berikutnya", + "Common.Views.ReviewChanges.hintPrev": "Ke perubahan sebelumnya", + "Common.Views.ReviewChanges.strFast": "Cepat", + "Common.Views.ReviewChanges.strFastDesc": "Co-editing real-time. Semua perubahan disimpan otomatis.", + "Common.Views.ReviewChanges.strStrict": "Strict", + "Common.Views.ReviewChanges.strStrictDesc": "Gunakan tombol 'Simpan' untuk sinkronisasi perubahan yang dibuat Anda dan orang lain.", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Terima perubahan saat ini", + "Common.Views.ReviewChanges.tipCoAuthMode": "Atur mode co-editing", + "Common.Views.ReviewChanges.tipCommentRem": "Hilangkan komentar", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Hilangkan komentar saat ini", + "Common.Views.ReviewChanges.tipCommentResolve": "Selesaikan komentar", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Selesaikan komentar saat ini", "Common.Views.ReviewChanges.tipHistory": "Tampilkan riwayat versi", + "Common.Views.ReviewChanges.tipRejectCurrent": "Tolak perubahan saat ini", + "Common.Views.ReviewChanges.tipReview": "Lacak perubahan", + "Common.Views.ReviewChanges.tipReviewView": "Pilih mode yang perubahannya ingin Anda tampilkan", "Common.Views.ReviewChanges.tipSetDocLang": "Atur Bahasa Dokumen", "Common.Views.ReviewChanges.tipSetSpelling": "Periksa Ejaan", + "Common.Views.ReviewChanges.tipSharing": "Atur perizinan akses dokumen", "Common.Views.ReviewChanges.txtAccept": "Terima", "Common.Views.ReviewChanges.txtAcceptAll": "Terima semua perubahan", + "Common.Views.ReviewChanges.txtAcceptChanges": "Terima perubahan", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Terima Perubahan Saat Ini", + "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Tutup", + "Common.Views.ReviewChanges.txtCoAuthMode": "Mode Edit Bersama", + "Common.Views.ReviewChanges.txtCommentRemAll": "Hilangkan Semua Komentar", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Hilangkan Komentar Saat Ini", + "Common.Views.ReviewChanges.txtCommentRemMy": "Hilangkan Komentar Saya", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Hilangkan Komentar Saya Saat Ini", "Common.Views.ReviewChanges.txtCommentRemove": "Hapus", "Common.Views.ReviewChanges.txtCommentResolve": "Selesaikan", - "Common.Views.ReviewChanges.txtHistory": "Riwayat versi", - "Common.Views.ReviewChanges.txtNext": "Berikutnya", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Selesaikan Semua Komentar", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Selesaikan Komentar Saat Ini", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Selesaikan Komentar Saya", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Selesaikan Komentar Saya Saat Ini", + "Common.Views.ReviewChanges.txtDocLang": "Bahasa", + "Common.Views.ReviewChanges.txtFinal": "Semua perubahan diterima (Preview)", + "Common.Views.ReviewChanges.txtFinalCap": "Final", + "Common.Views.ReviewChanges.txtHistory": "Riwayat Versi", + "Common.Views.ReviewChanges.txtMarkup": "Semua perubahan (Editing)", + "Common.Views.ReviewChanges.txtMarkupCap": "Markup", + "Common.Views.ReviewChanges.txtNext": "Selanjutnya", + "Common.Views.ReviewChanges.txtOriginal": "Semua perubahan ditolak (Preview)", + "Common.Views.ReviewChanges.txtOriginalCap": "Original", "Common.Views.ReviewChanges.txtPrev": "Sebelumnya", "Common.Views.ReviewChanges.txtReject": "Tolak", + "Common.Views.ReviewChanges.txtRejectAll": "Tolak Semua Perubahan", + "Common.Views.ReviewChanges.txtRejectChanges": "Tolak Perubahan", + "Common.Views.ReviewChanges.txtRejectCurrent": "Tolak Perubahan Saat Ini", + "Common.Views.ReviewChanges.txtSharing": "Bagikan", "Common.Views.ReviewChanges.txtSpelling": "Periksa Ejaan", + "Common.Views.ReviewChanges.txtTurnon": "Lacak Perubahan", + "Common.Views.ReviewChanges.txtView": "Mode Tampilan", "Common.Views.ReviewPopover.textAdd": "Tambahkan", "Common.Views.ReviewPopover.textAddReply": "Tambahkan Balasan", "Common.Views.ReviewPopover.textCancel": "Batalkan", "Common.Views.ReviewPopover.textClose": "Tutup", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textMention": "+mention akan memberikan akses ke dokumen dan mengirimkan email", + "Common.Views.ReviewPopover.textMentionNotify": "+mention akan mengingatkan user lewat email", "Common.Views.ReviewPopover.textOpenAgain": "Buka Lagi", "Common.Views.ReviewPopover.textReply": "Balas", "Common.Views.ReviewPopover.textResolve": "Selesaikan", + "Common.Views.ReviewPopover.textViewResolved": "Anda tidak memiliki izin membuka kembali komentar", "Common.Views.ReviewPopover.txtDeleteTip": "Hapus", "Common.Views.ReviewPopover.txtEditTip": "Sunting", + "Common.Views.SaveAsDlg.textLoading": "Memuat", + "Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan", + "Common.Views.SelectFileDlg.textLoading": "Memuat", "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", "Common.Views.SignDialog.textBold": "Tebal", + "Common.Views.SignDialog.textCertificate": "Sertifikat", "Common.Views.SignDialog.textChange": "Ganti", + "Common.Views.SignDialog.textInputName": "Masukkan nama penandatangan", "Common.Views.SignDialog.textItalic": "Miring", + "Common.Views.SignDialog.textNameError": "Nama penandatangan tidak boleh kosong.", + "Common.Views.SignDialog.textPurpose": "Tujuan menandatangani dokumen ini", "Common.Views.SignDialog.textSelect": "Pilih", + "Common.Views.SignDialog.textSelectImage": "Pilih Gambar", + "Common.Views.SignDialog.textSignature": "Tandatangan terlihat seperti", + "Common.Views.SignDialog.textTitle": "Tanda Tangan Dokumen", + "Common.Views.SignDialog.textUseImage": "atau klik 'Pilih Gambar' untuk menjadikan gambar sebagai tandatangan", + "Common.Views.SignDialog.textValid": "Valid dari %1 sampai %2", + "Common.Views.SignDialog.tipFontName": "Nama Font", "Common.Views.SignDialog.tipFontSize": "Ukuran Huruf", + "Common.Views.SignSettingsDialog.textAllowComment": "Izinkan penandatangan untuk menambahkan komentar di dialog tanda tangan", + "Common.Views.SignSettingsDialog.textInfo": "Info Penandatangan", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Nama", - "Common.Views.SignSettingsDialog.txtEmpty": "Kolom ini harus diisi", + "Common.Views.SignSettingsDialog.textInfoTitle": "Gelar Penandatangan", + "Common.Views.SignSettingsDialog.textInstructions": "Instruksi untuk Penandatangan", + "Common.Views.SignSettingsDialog.textShowDate": "Tampilkan tanggal di garis tandatangan", + "Common.Views.SignSettingsDialog.textTitle": "Setup Tanda Tangan", + "Common.Views.SignSettingsDialog.txtEmpty": "Area ini dibutuhkan", "Common.Views.SymbolTableDialog.textCharacter": "Karakter", + "Common.Views.SymbolTableDialog.textCode": "Nilai Unicode HEX", + "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign", + "Common.Views.SymbolTableDialog.textDCQuote": "Kutip Dua Penutup", + "Common.Views.SymbolTableDialog.textDOQuote": "Kutip Dua Pembuka", + "Common.Views.SymbolTableDialog.textEllipsis": "Ellipsis Horizontal", + "Common.Views.SymbolTableDialog.textEmDash": "Em Dash", + "Common.Views.SymbolTableDialog.textEmSpace": "Em Space", + "Common.Views.SymbolTableDialog.textEnDash": "En Dash", + "Common.Views.SymbolTableDialog.textEnSpace": "En Space", "Common.Views.SymbolTableDialog.textFont": "Huruf", - "Common.Views.SymbolTableDialog.textSpecial": "karakter khusus", + "Common.Views.SymbolTableDialog.textNBHyphen": "Hyphen Non-breaking", + "Common.Views.SymbolTableDialog.textNBSpace": "Spasi Tanpa-break", + "Common.Views.SymbolTableDialog.textPilcrow": "Simbol Pilcrow", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", + "Common.Views.SymbolTableDialog.textRange": "Rentang", + "Common.Views.SymbolTableDialog.textRecent": "Simbol yang baru digunakan", + "Common.Views.SymbolTableDialog.textRegistered": "Tandatangan Teregistrasi", + "Common.Views.SymbolTableDialog.textSCQuote": "Kutip Satu Penutup", + "Common.Views.SymbolTableDialog.textSection": "Sesi Tandatangan", + "Common.Views.SymbolTableDialog.textShortcut": "Kunci shortcut", + "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen", + "Common.Views.SymbolTableDialog.textSOQuote": "Kutip Satu Pembuka", + "Common.Views.SymbolTableDialog.textSpecial": "Karakter khusus", + "Common.Views.SymbolTableDialog.textSymbols": "Simbol", + "Common.Views.SymbolTableDialog.textTitle": "Simbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Simbol Trademark", + "Common.Views.UserNameDialog.textDontShow": "Jangan tanya saya lagi", + "Common.Views.UserNameDialog.textLabel": "Label:", + "Common.Views.UserNameDialog.textLabelError": "Label tidak boleh kosong.", "SSE.Controllers.DataTab.textColumns": "Kolom", + "SSE.Controllers.DataTab.textEmptyUrl": "Anda perlu melengkapkan URL.", "SSE.Controllers.DataTab.textRows": "Baris", + "SSE.Controllers.DataTab.textWizard": "Teks ke Kolom", + "SSE.Controllers.DataTab.txtDataValidation": "Validasi data", + "SSE.Controllers.DataTab.txtExpand": "Perluas", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Data di sebelah pilihan tidak akan dihilangkan. Apakah Anda ingin memperluas pilihan untuk menyertakan data yang berdekatan atau lanjut sortasi dengan hanya sel yang dipilih?", + "SSE.Controllers.DataTab.txtExtendDataValidation": "Pilihan berisi beberapa sel tanpa pengaturan Validasi Data.
    Apakah Anda ingin memperluas Validasi Data ke sel ini?", + "SSE.Controllers.DataTab.txtImportWizard": "Text Import Wizard", + "SSE.Controllers.DataTab.txtRemDuplicates": "Hapus duplikat", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "Pilihan berisi lebih dari satu jenis validasi.
    Hapus pengaturan saat ini dan lanjutkan?", + "SSE.Controllers.DataTab.txtRemSelected": "Hapus di pilihan", + "SSE.Controllers.DataTab.txtUrlTitle": "Paste URL data", "SSE.Controllers.DocumentHolder.alignmentText": "Perataan", "SSE.Controllers.DocumentHolder.centerText": "Tengah", "SSE.Controllers.DocumentHolder.deleteColumnText": "Hapus Kolom", + "SSE.Controllers.DocumentHolder.deleteRowText": "Hapus Baris", "SSE.Controllers.DocumentHolder.deleteText": "Hapus", - "SSE.Controllers.DocumentHolder.guestText": "Guest", + "SSE.Controllers.DocumentHolder.errorInvalidLink": "Link referensi tidak ada. Silakan koreksi atau hapus link.", + "SSE.Controllers.DocumentHolder.guestText": "Tamu", "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Kolom Kiri", "SSE.Controllers.DocumentHolder.insertColumnRightText": "Kolom Kanan", "SSE.Controllers.DocumentHolder.insertRowAboveText": "Baris di Atas", @@ -193,245 +458,732 @@ "SSE.Controllers.DocumentHolder.leftText": "Kiri", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Peringatan", "SSE.Controllers.DocumentHolder.rightText": "Kanan", - "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Column Width {0} symbols ({1} pixels)", - "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Row Height {0} points ({1} pixels)", - "SSE.Controllers.DocumentHolder.textCtrlClick": "Press CTRL and click link", - "SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Left", - "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", - "SSE.Controllers.DocumentHolder.tipIsLocked": "This element is being edited by another user.", + "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Opsi AutoCorrect", + "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Lebar Kolom {0} simbol ({1} piksel)", + "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Tinggi Baris {0} points ({1} pixels)", + "SSE.Controllers.DocumentHolder.textCtrlClick": "Klik link untuk membuka atau klik dan tahan tombol mouse untuk memilih sel.", + "SSE.Controllers.DocumentHolder.textInsertLeft": "Sisipkan Kiri", + "SSE.Controllers.DocumentHolder.textInsertTop": "Sisipkan Atas", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Paste khusus", + "SSE.Controllers.DocumentHolder.textStopExpand": "Stop memperluas tabel otomatis", + "SSE.Controllers.DocumentHolder.textSym": "sym", + "SSE.Controllers.DocumentHolder.tipIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", + "SSE.Controllers.DocumentHolder.txtAboveAve": "Di atas rata-rata", + "SSE.Controllers.DocumentHolder.txtAddBottom": "Tambah pembatas bawah", + "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Tambah bar pecahan", + "SSE.Controllers.DocumentHolder.txtAddHor": "Tambah garis horizontal", + "SSE.Controllers.DocumentHolder.txtAddLB": "Tambah garis kiri bawah", + "SSE.Controllers.DocumentHolder.txtAddLeft": "Tambah pembatas kiri", + "SSE.Controllers.DocumentHolder.txtAddLT": "Tambah garis kiri atas", + "SSE.Controllers.DocumentHolder.txtAddRight": "Tambah pembatas kiri", + "SSE.Controllers.DocumentHolder.txtAddTop": "Tambah pembatas atas", + "SSE.Controllers.DocumentHolder.txtAddVer": "Tambah garis vertikal", + "SSE.Controllers.DocumentHolder.txtAlignToChar": "Rata dengan karakter", + "SSE.Controllers.DocumentHolder.txtAll": "(Semua)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Kembalikan seluruh isi tabel atau kolom tabel tertentu termasuk header kolom, data dan total baris", "SSE.Controllers.DocumentHolder.txtAnd": "dan", + "SSE.Controllers.DocumentHolder.txtBegins": "Dimulai dari", + "SSE.Controllers.DocumentHolder.txtBelowAve": "Di bawah rata-rata", + "SSE.Controllers.DocumentHolder.txtBlanks": "(Kosong)", + "SSE.Controllers.DocumentHolder.txtBorderProps": "Properti pembatas", "SSE.Controllers.DocumentHolder.txtBottom": "Bawah", "SSE.Controllers.DocumentHolder.txtColumn": "Kolom", + "SSE.Controllers.DocumentHolder.txtColumnAlign": "Rata kolom", + "SSE.Controllers.DocumentHolder.txtContains": "Berisi", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Kembalikan sel data dari tabel atau kolom tabel yang dihitung", + "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Kurangi ukuran argumen", + "SSE.Controllers.DocumentHolder.txtDeleteArg": "Hapus argumen", + "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Hapus break manual", + "SSE.Controllers.DocumentHolder.txtDeleteChars": "Hapus karakter terlampir", + "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Hapus karakter dan separator terlampir", + "SSE.Controllers.DocumentHolder.txtDeleteEq": "Hapus persamaan", + "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Hapus char", + "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Hapus radikal", + "SSE.Controllers.DocumentHolder.txtEnds": "Berakhir dengan", + "SSE.Controllers.DocumentHolder.txtEquals": "Sama Dengan", + "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Sama dengan warna sel", + "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Sama dengan warna font", + "SSE.Controllers.DocumentHolder.txtExpand": "Perluas dan sortir", + "SSE.Controllers.DocumentHolder.txtExpandSort": "Data di sebelah pilihan tidak akan disortasi. Apakah Anda ingin memperluas pilihan untuk menyertakan data yang berdekatan atau lanjut sortasi dengan hanya sel yang dipilih?", "SSE.Controllers.DocumentHolder.txtFilterBottom": "Bawah", "SSE.Controllers.DocumentHolder.txtFilterTop": "Atas", + "SSE.Controllers.DocumentHolder.txtFractionLinear": "Ubah ke pecahan linear", + "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Ubah ke pecahan", + "SSE.Controllers.DocumentHolder.txtFractionStacked": "Ubah ke pecahan bertumpuk", "SSE.Controllers.DocumentHolder.txtGreater": "Lebih Dari", "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Lebih Dari atau Sama Dengan", - "SSE.Controllers.DocumentHolder.txtHeight": "Height", + "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Karakter di atas teks", + "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Karakter di bawah teks", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Kembalikan header kolom untuk tabel atau tabel kolom spesifik", + "SSE.Controllers.DocumentHolder.txtHeight": "Tinggi", + "SSE.Controllers.DocumentHolder.txtHideBottom": "Sembunyikan pembatas bawah", + "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Sembunyikan nilai batas bawah", + "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Sembunyikan tanda kurung tutup", + "SSE.Controllers.DocumentHolder.txtHideDegree": "Sembunyikan degree", + "SSE.Controllers.DocumentHolder.txtHideHor": "Sembunyikan garis horizontal", + "SSE.Controllers.DocumentHolder.txtHideLB": "Sembunyikan garis bawah kiri", + "SSE.Controllers.DocumentHolder.txtHideLeft": "Sembunyikan pembatas kiri", + "SSE.Controllers.DocumentHolder.txtHideLT": "Sembunyikan garis atas kiri", + "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Sembunyikan tanda kurung buka", + "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Sembunyikan placeholder", + "SSE.Controllers.DocumentHolder.txtHideRight": "Sembunyikan pembatas kanan", + "SSE.Controllers.DocumentHolder.txtHideTop": "Sembunyikan pembatas atas", + "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Sembunyikan nilai batas atas", + "SSE.Controllers.DocumentHolder.txtHideVer": "Sembunyikan garis vertikal", + "SSE.Controllers.DocumentHolder.txtImportWizard": "Text Import Wizard", + "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Tingkatkan ukuran argumen", + "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Sisipkan argumen setelah", + "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Sisipkan argumen sebelum", + "SSE.Controllers.DocumentHolder.txtInsertBreak": "Sisipkan break manual", + "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Sisipkan persamaan setelah", + "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Sisipkan persamaan sebelum", + "SSE.Controllers.DocumentHolder.txtItems": "items", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Pertahankan hanya teks", "SSE.Controllers.DocumentHolder.txtLess": "Kurang Dari", "SSE.Controllers.DocumentHolder.txtLessEquals": "Kurang Dari atau Sama Dengan", - "SSE.Controllers.DocumentHolder.txtOr": "Atau", + "SSE.Controllers.DocumentHolder.txtLimitChange": "Ganti lokasi limit", + "SSE.Controllers.DocumentHolder.txtLimitOver": "Batasi di atas teks", + "SSE.Controllers.DocumentHolder.txtLimitUnder": "Batasi di bawah teks", + "SSE.Controllers.DocumentHolder.txtLockSort": "Ditemukan data di sebelah pilihan Anda, tapi, Anda tidak memiliki izin untuk mengubah sel tersebut.
    Apakah Anda ingin tetap lanjut dengan pilihan saat ini?", + "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Sesuaikan tanda kurung dengan tinggi argumen", + "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Rata matriks", + "SSE.Controllers.DocumentHolder.txtNoChoices": "Tidak ada pilihan untuk mengisi sel.
    Hanya nilai teks dari kolom yang bisa dipilih untuk diganti.", + "SSE.Controllers.DocumentHolder.txtNotBegins": "Tidak diawali dari", + "SSE.Controllers.DocumentHolder.txtNotContains": "Tidak memiliki", + "SSE.Controllers.DocumentHolder.txtNotEnds": "Tidak diakhiri dengan", + "SSE.Controllers.DocumentHolder.txtNotEquals": "Tidak sama dengan", + "SSE.Controllers.DocumentHolder.txtOr": "atau", + "SSE.Controllers.DocumentHolder.txtOverbar": "Bar di atas teks", "SSE.Controllers.DocumentHolder.txtPaste": "Tempel", - "SSE.Controllers.DocumentHolder.txtRowHeight": "Row Height", + "SSE.Controllers.DocumentHolder.txtPasteBorders": "Formula tanpa pembatas", + "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Formula + lebar kolom", + "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Pemformatan tujuan", + "SSE.Controllers.DocumentHolder.txtPasteFormat": "Paste hanya pemformatan", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Formula + nomor format", + "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Paste hanya formula", + "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Formula + semua format", + "SSE.Controllers.DocumentHolder.txtPasteLink": "Paste link", + "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Gambar terhubung", + "SSE.Controllers.DocumentHolder.txtPasteMerge": "Merge format bersyarat", + "SSE.Controllers.DocumentHolder.txtPastePicture": "Gambar", + "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Pemformatan sumber", + "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transpose", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Nilai + semua formatting", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Nilai + nomor format", + "SSE.Controllers.DocumentHolder.txtPasteValues": "Paste hanya nilai", + "SSE.Controllers.DocumentHolder.txtPercent": "persen", + "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Redo perluasan otomatis tabel", + "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Hilangkan bar pecahan", + "SSE.Controllers.DocumentHolder.txtRemLimit": "Hilangkan limit", + "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Hilangkan aksen karakter", + "SSE.Controllers.DocumentHolder.txtRemoveBar": "Hilangkan diagram batang", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Apakah Anda ingin menghilangkan tandatangan ini?
    Proses tidak bisa dikembalikan.", + "SSE.Controllers.DocumentHolder.txtRemScripts": "Hilangkan skrip", + "SSE.Controllers.DocumentHolder.txtRemSubscript": "Hilangkan subscript", + "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Hilangkan superscript", + "SSE.Controllers.DocumentHolder.txtRowHeight": "Tinggi Baris", + "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Scripts setelah teks", + "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Scripts sebelum teks", + "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Tampilkan batas bawah", + "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Tampilkan kurung penutup", + "SSE.Controllers.DocumentHolder.txtShowDegree": "Tampilkan degree", + "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Tampilkan kurung pembuka", + "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Tampilkan placeholder", + "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Tampilkan batas atas", + "SSE.Controllers.DocumentHolder.txtSorting": "Sorting", + "SSE.Controllers.DocumentHolder.txtSortSelected": "Sortir dipilih", + "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Regangkan dalam kurung", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Pilih hanya baris ini dari kolom yang ditentukan", "SSE.Controllers.DocumentHolder.txtTop": "Atas", - "SSE.Controllers.DocumentHolder.txtWidth": "Width", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Kembalikan total baris dari tabel atau kolom tabel spesifik", + "SSE.Controllers.DocumentHolder.txtUnderbar": "Bar di bawah teks", + "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Undo perluasan otomatis tabel", + "SSE.Controllers.DocumentHolder.txtUseTextImport": "Gunakan text import wizard", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "Klik link ini bisa berbahaya untuk perangkat dan data Anda.
    Apakah Anda ingin tetap lanjut?", + "SSE.Controllers.DocumentHolder.txtWidth": "Lebar", "SSE.Controllers.FormulaDialog.sCategoryAll": "Semua", + "SSE.Controllers.FormulaDialog.sCategoryCube": "Kubus", + "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database", + "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Tanggal dan Jam", + "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Insinyur", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Finansial", "SSE.Controllers.FormulaDialog.sCategoryInformation": "Informasi", - "SSE.Controllers.LeftMenu.newDocumentTitle": "Unnamed spreadsheet", - "SSE.Controllers.LeftMenu.textByColumns": "By columns", - "SSE.Controllers.LeftMenu.textByRows": "By rows", + "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 terakhir digunakan", + "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logikal", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Lookup dan referensi", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Matematika dan trigonometri", + "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistikal", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Teks dan data", + "SSE.Controllers.LeftMenu.newDocumentTitle": "Spreadsheet tanpa nama", + "SSE.Controllers.LeftMenu.textByColumns": "Dari kolom", + "SSE.Controllers.LeftMenu.textByRows": "Dari baris", "SSE.Controllers.LeftMenu.textFormulas": "Formulas", - "SSE.Controllers.LeftMenu.textItemEntireCell": "Entire cell contents", - "SSE.Controllers.LeftMenu.textLookin": "Look in", - "SSE.Controllers.LeftMenu.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.", - "SSE.Controllers.LeftMenu.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "SSE.Controllers.LeftMenu.textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "SSE.Controllers.LeftMenu.textSearch": "Search", + "SSE.Controllers.LeftMenu.textItemEntireCell": "Seluruh isi sel", + "SSE.Controllers.LeftMenu.textLoadHistory": "Loading versi riwayat...", + "SSE.Controllers.LeftMenu.textLookin": "Melihat kedalam", + "SSE.Controllers.LeftMenu.textNoTextFound": "Data yang Anda cari tidak ditemukan. Silakan atur opsi pencarian Anda.", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "Penggantian telah dilakukan. Ada {0} yang dilewatkan.", + "SSE.Controllers.LeftMenu.textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti {0}", + "SSE.Controllers.LeftMenu.textSearch": "Cari", "SSE.Controllers.LeftMenu.textSheet": "Sheet", - "SSE.Controllers.LeftMenu.textValues": "Values", - "SSE.Controllers.LeftMenu.textWarning": "Warning", - "SSE.Controllers.LeftMenu.textWithin": "Within", + "SSE.Controllers.LeftMenu.textValues": "Nilai", + "SSE.Controllers.LeftMenu.textWarning": "Peringatan", + "SSE.Controllers.LeftMenu.textWithin": "Di dalam", "SSE.Controllers.LeftMenu.textWorkbook": "Workbook", - "SSE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?", - "SSE.Controllers.Main.confirmMoveCellRange": "The destination cell range can contain data. Continue the operation?", - "SSE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", - "SSE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.", - "SSE.Controllers.Main.criticalErrorTitle": "Error", - "SSE.Controllers.Main.downloadErrorText": "Download failed.", - "SSE.Controllers.Main.downloadTextText": "Downloading spreadsheet...", - "SSE.Controllers.Main.downloadTitleText": "Downloading Spreadsheet", - "SSE.Controllers.Main.errorArgsRange": "An error in the entered formula.
    Incorrect arguments range is used.", - "SSE.Controllers.Main.errorAutoFilterChange": "The operation is not allowed, as it is attempting to shift cells in a table on your worksheet.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of the table.
    Select another data range so that the whole table was shifted and try again.", - "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.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.", - "SSE.Controllers.Main.errorCountArg": "An error in the entered formula.
    Incorrect number of arguments is used.", - "SSE.Controllers.Main.errorCountArgExceed": "An error in the entered formula.
    Number of arguments is exceeded.", - "SSE.Controllers.Main.errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", - "SSE.Controllers.Main.errorDatabaseConnection": "External error.
    Database connection error. Please contact support in case the error persists.", - "SSE.Controllers.Main.errorDataRange": "Incorrect data range.", - "SSE.Controllers.Main.errorDefaultMessage": "Error code: %1", - "SSE.Controllers.Main.errorFilePassProtect": "The document is password protected and could not 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.", - "SSE.Controllers.Main.errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", - "SSE.Controllers.Main.errorFormulaName": "An error in the entered formula.
    Incorrect formula name is used.", - "SSE.Controllers.Main.errorFormulaParsing": "Internal error while parsing the formula.", - "SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", - "SSE.Controllers.Main.errorKeyExpire": "Key descriptor expired", - "SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", - "SSE.Controllers.Main.errorMoveRange": "Cannot change part of a merged cell", - "SSE.Controllers.Main.errorOperandExpected": "Operand expected", - "SSE.Controllers.Main.errorPasteMaxRange": "The copy and paste area does not match.
    Please select an area with the same size or click the first cell in a row to paste the copied cells.", - "SSE.Controllers.Main.errorProcessSaveResult": "Saving failed", - "SSE.Controllers.Main.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "SSE.Controllers.Main.errorUnexpectedGuid": "External error.
    Unexpected GUID. Please contact support in case the error persists.", - "SSE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "SSE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", - "SSE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "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.", - "SSE.Controllers.Main.leavePageText": "You have unsaved changes in this spreadsheet. Click 'Stay on this Page' then 'Save' to save them. Click 'Leave this Page' to discard all the unsaved changes.", - "SSE.Controllers.Main.loadFontsTextText": "Loading data...", - "SSE.Controllers.Main.loadFontsTitleText": "Loading Data", - "SSE.Controllers.Main.loadFontTextText": "Loading data...", - "SSE.Controllers.Main.loadFontTitleText": "Loading Data", - "SSE.Controllers.Main.loadImagesTextText": "Loading images...", - "SSE.Controllers.Main.loadImagesTitleText": "Loading Images", - "SSE.Controllers.Main.loadImageTextText": "Loading image...", - "SSE.Controllers.Main.loadImageTitleText": "Loading Image", - "SSE.Controllers.Main.loadingDocumentTitleText": "Loading spreadsheet", - "SSE.Controllers.Main.notcriticalErrorTitle": "Warning", - "SSE.Controllers.Main.openTextText": "Opening spreadsheet...", - "SSE.Controllers.Main.openTitleText": "Opening Spreadsheet", - "SSE.Controllers.Main.pastInMergeAreaError": "Cannot change part of a merged cell", - "SSE.Controllers.Main.printTextText": "Printing spreadsheet...", - "SSE.Controllers.Main.printTitleText": "Printing Spreadsheet", - "SSE.Controllers.Main.reloadButtonText": "Reload Page", - "SSE.Controllers.Main.requestEditFailedMessageText": "Someone is editing this document right now. Please try again later.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Access denied", - "SSE.Controllers.Main.saveTextText": "Saving spreadsheet...", - "SSE.Controllers.Main.saveTitleText": "Saving Spreadsheet", - "SSE.Controllers.Main.textAnonymous": "Anonymous", + "SSE.Controllers.LeftMenu.txtUntitled": "Untitled", + "SSE.Controllers.LeftMenu.warnDownloadAs": "Jika Anda lanjut simpan dengan format ini, semua fitur kecuali teks akan hilang.
    Apakah Anda ingin melanjutkan?", + "SSE.Controllers.Main.confirmMoveCellRange": "Rentang sel yang dituju bisa berisi data. Lanjutkan operasi?", + "SSE.Controllers.Main.confirmPutMergeRange": "Sumber data berisi sel yang digabungkan.
    Telah dipisahkan sebelum ditempelkan ke tabel.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formula di baris header akan dihilangkan dan dikonversi menjadi teks statis.
    Apakah Anda ingin melanjutkan?", + "SSE.Controllers.Main.convertationTimeoutText": "Waktu konversi habis.", + "SSE.Controllers.Main.criticalErrorExtText": "Tekan \"OK\" untuk kembali ke daftar dokumen.", + "SSE.Controllers.Main.criticalErrorTitle": "Kesalahan", + "SSE.Controllers.Main.downloadErrorText": "Unduhan gagal.", + "SSE.Controllers.Main.downloadTextText": "Mengunduh spread sheet...", + "SSE.Controllers.Main.downloadTitleText": "Mengunduh Spread sheet", + "SSE.Controllers.Main.errNoDuplicates": "Nilai duplikat tidak ditemukan.", + "SSE.Controllers.Main.errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
    Silakan hubungi admin Server Dokumen Anda.", + "SSE.Controllers.Main.errorArgsRange": "Kesalahan dalam formula yang dimasukkan.
    Rentang argumen yang digunakan salah.", + "SSE.Controllers.Main.errorAutoFilterChange": "Operasi tidak diizinkan karena mencoba memindahkan sel dari tabel di worksheet Anda.", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operasi tidak bisa dilakukan pada sel yang dipilih karena Anda tidak bisa memindahkan bagian dari tabel.
    Pilih rentang data lain agar seluruh tabel bergeser dan coba lagi.", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Operasi tidak bisa dilakukan pada rentang sel yang dipilih.
    Pilih rentang data seragam yang berbeda dari yang sudah ada dan coba lagi.", + "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operasi tidak bisa dilakukan karena ada sel yang difilter di area.
    Silakan tampilkan kembali elemet yang difilter dan coba lagi.", + "SSE.Controllers.Main.errorBadImageUrl": "URL Gambar salah", + "SSE.Controllers.Main.errorCannotUngroup": "Tidak bisa memisahkan grup. Untuk memulai outline, pilih detail baris atau kolom dan kelompokkan.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Ada tidak bisa menggunakan perintah ini di sheet yang diproteksi. Untuk menggunakan perintah ini, batalkan proteksi sheet.
    Anda mungkin diminta untuk memasukkan password.", + "SSE.Controllers.Main.errorChangeArray": "Anda tidak bisa mengganti bagian dari array.", + "SSE.Controllers.Main.errorChangeFilteredRange": "Hal ini akan mengubah rentang yang difilter pada worksheet Anda.
    Untuk menyelesaikan perintah ini, silahkan hapus AutoFilters.", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Sel atau grafik yang Anda coba untuk ganti berada di sheet yang diproteksi.
    Untuk melakukan perubahan, batalkan proteksi sheet. Anda mungkin diminta untuk mengisi password.", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Koneksi server terputus. Saat ini dokumen tidak dapat diedit.", + "SSE.Controllers.Main.errorConnectToServer": "Dokumen tidak bisa disimpan. Silakan periksa pengaturan koneksi atau hubungi admin Anda.
    Ketika klik tombol 'OK', Anda akan diminta untuk download dokumen.", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Perintah ini tidak bisa digunakan dengan pilihan lebih dari satu.
    Pilih satu rentang dan coba lagi.", + "SSE.Controllers.Main.errorCountArg": "Kesalahan dalam formula yang dimasukkan.
    Jumlah argumen yang digunakan tidak tepat.", + "SSE.Controllers.Main.errorCountArgExceed": "Kesalahan dalam formula yang dimasukkan.
    Jumlah argumen melewati batas.", + "SSE.Controllers.Main.errorCreateDefName": "Rentang nama yang ada tidak bisa di edit dan tidak bisa membuat yang baru
    jika ada beberapa yang sedang diedit.", + "SSE.Controllers.Main.errorDatabaseConnection": "Eror eksternal.
    Koneksi database bermasalah. Silakan hubungi layanan bantuan jika tetap terjadi error.", + "SSE.Controllers.Main.errorDataEncrypted": "Perubahan enkripsi sudah diterima dan tidak bisa diuraikan.", + "SSE.Controllers.Main.errorDataRange": "Rentang data salah.", + "SSE.Controllers.Main.errorDataValidate": "Nilai yang dimasukkan tidak tepat.
    User memiliki batasan nilai yang bisa dimasukkan ke sel ini.", + "SSE.Controllers.Main.errorDefaultMessage": "Kode kesalahan: %1", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Anda mencoba menghapus kolom yang memiliki sel yang terkunci. Sel yang terkunci tidak bisa dihapus ketika worksheet diproteksi.
    Untuk menghapus sel yang terkunci, buka proteksi sheet. Anda mungkin diminta untuk mengisi password.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Anda mencoba menghapus baris yang memiliki sel yang terkunci. Sel yang terkunci tidak bisa dihapus ketika worksheet diproteksi.
    Untuk menghapus sel yang terkunci, buka proteksi sheet. Anda mungkin diminta untuk mengisi password.", + "SSE.Controllers.Main.errorEditingDownloadas": "Ada kesalahan saat bekerja dengan dokumen.
    Gunakan opsi 'Download sebagai...' untuk menyimpan file salinan backup ke komputer Anda.", + "SSE.Controllers.Main.errorEditingSaveas": "Ada kesalahan saat bekerja dengan dokumen.
    Gunakan opsi 'Simpan sebagai...' untuk menyimpan file salinan backup ke komputer Anda.", + "SSE.Controllers.Main.errorEditView": "Tampilan sheet yang ada tidak dapat diedit dan yang baru tidak dapat dibuat saat ini karena beberapa di antaranya sedang diedit.", + "SSE.Controllers.Main.errorEmailClient": "Email klein tidak bisa ditemukan.", + "SSE.Controllers.Main.errorFilePassProtect": "Dokumen dilindungi dengan kata sandi dan tidak dapat dibuka.", + "SSE.Controllers.Main.errorFileRequest": "Error eksternal.
    Kesalahan permintaan file. Silakan hubungi layanan bantuan jika tetap terjadi error.", + "SSE.Controllers.Main.errorFileSizeExceed": "Ukuran file melewati batas server Anda.
    Silakan hubungi admin Server Dokumen Anda untuk detail.", + "SSE.Controllers.Main.errorFileVKey": "Error eksternal.
    Kode keamanan salah. Silakan hubungi layanan bantuan jika tetap terjadi error.", + "SSE.Controllers.Main.errorFillRange": "Tidak bisa mengisi rentang sel yang dipilih.
    Semua sel yang di merge harus memiliki ukuran yang sama.", + "SSE.Controllers.Main.errorForceSave": "Ada kesalahan saat menyimpan file. Silakan gunakan opsi 'Download sebagai' untuk menyimpan file ke komputer Anda dan coba lagi.", + "SSE.Controllers.Main.errorFormulaName": "Kesalahan dalam formula yang dimasukkan.
    Nama formula yang digunakan tidak tepat.", + "SSE.Controllers.Main.errorFormulaParsing": "Kesalahan internal saat menguraikan rumus", + "SSE.Controllers.Main.errorFrmlMaxLength": "Panjang formula Anda melewati batas 8192 karakter.
    Silakan edit dan coba kembali.", + "SSE.Controllers.Main.errorFrmlMaxReference": "Anda tidak bisa memasukkan formula ini karena memiliki nilai terlalu banyak,
    referensi sel, dan/atau nama.", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "Nilai teks dalam formula dibatasi 255 karakter.
    Gunakan fungsi PENGGABUNGAN atau operator penggabungan (&).", + "SSE.Controllers.Main.errorFrmlWrongReferences": "Fungsi yang menuju sheet tidak ada.
    Silakan periksa data kembali.", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "Operasi tidak bisa diselesaikan untuk rentang sel yang dipilih.
    Pilih rentang agar baris pertama tabel berada di baris yang samadan menghasilkan tabel yang overlap dengan tabel saat ini.", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Operasi tidak bisa diselesaikan untuk rentang sel yang dipilih.
    Pilih rentang yang tidak termasuk di tabel lain.", + "SSE.Controllers.Main.errorInvalidRef": "Masukkan nama yang tepat untuk pilihan atau referensi valid sebagai tujuan.", + "SSE.Controllers.Main.errorKeyEncrypt": "Deskriptor kunci tidak dikenal", + "SSE.Controllers.Main.errorKeyExpire": "Deskriptor kunci tidak berfungsi", + "SSE.Controllers.Main.errorLabledColumnsPivot": "Untuk membuat tabel pivot, gunakan data yang diatur menjadi list dengan kolom yang dilabel.", + "SSE.Controllers.Main.errorLoadingFont": "Font tidak bisa dimuat.
    Silakan kontak admin Server Dokumen Anda.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Referensi untuk lokasi atau range data tidak valid.", + "SSE.Controllers.Main.errorLockedAll": "Operasi tidak bisa dilakukan karena sheet dikunci oleh user lain.", + "SSE.Controllers.Main.errorLockedCellPivot": "Anda tidak bisa mengubah data di dalam tabel pivot.", + "SSE.Controllers.Main.errorLockedWorksheetRename": "Nama sheet tidak bisa diubah sekarang karena sedang diganti oleh user lain", + "SSE.Controllers.Main.errorMaxPoints": "Jumlah titik maksimum dalam seri per grafik adalah 4096.", + "SSE.Controllers.Main.errorMoveRange": "Tidak bisa mengganti bagian dari sel yang digabungkan", + "SSE.Controllers.Main.errorMoveSlicerError": "Slicer tabel tidak bisa disalin dari satu workbook ke lainnya.
    Silakan coba lagi dengan memilih seluruh tabel dan slicer.", + "SSE.Controllers.Main.errorMultiCellFormula": "Formula array multi sel tidak diizinkan di tabel.", + "SSE.Controllers.Main.errorNoDataToParse": "Tidak ada data yang dipilih untuk diuraikan.", + "SSE.Controllers.Main.errorOpenWarning": "Salah satu file formula melewati batas 8192 karakter.
    Formula dihapus.", + "SSE.Controllers.Main.errorOperandExpected": "Syntax fungsi yang dimasukkan tidak tepat. Silakan periksa lagi apakah Anda terlewat tanda kurung - '(' atau ')'.", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "Password yang Anda sediakan tidak tepat.
    Pastikan bahwa CAPS LOCK sudah mati dan pastikan sudah menggunakan huruf besar dengan tepat.", + "SSE.Controllers.Main.errorPasteMaxRange": "Area copy dan paste tidak cocok.
    Silakan pilih area dengan ukuran yang sama atau klik sel pertama di baris untuk paste sel yang di copy.", + "SSE.Controllers.Main.errorPasteMultiSelect": "Tindakan ini tidak dapat dilakukan pada beberapa pilihan rentang.
    Pilih satu rentang dan coba lagi.", + "SSE.Controllers.Main.errorPasteSlicerError": "Slicer tabel tidak bisa disalin dari satu workbook ke lainnya.", + "SSE.Controllers.Main.errorPivotGroup": "Tidak bisa mengelompokkan pilihan itu.", + "SSE.Controllers.Main.errorPivotOverlap": "Laporan tabel pivot tidak bisa tumpang tindih dengan tabel.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "Laporan Tabel Pivot disimpan tanpa data pokok.
    Gunakan tombol 'Refresh' untuk memperbarui laporan.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Mohon maaf karena tidak bisa print lebih dari 1500 halaman dalam sekali waktu dengan versi program sekarang.
    Hal ini akan bisa dilakukan di versi selanjutnya.", + "SSE.Controllers.Main.errorProcessSaveResult": "Gagal menyimpan", + "SSE.Controllers.Main.errorServerVersion": "Versi editor sudah di update. Halaman akan dimuat ulang untuk menerapkan perubahan.", + "SSE.Controllers.Main.errorSessionAbsolute": "Waktu edit dokumen sudah selesai. Silakan muat ulang halaman.", + "SSE.Controllers.Main.errorSessionIdle": "Dokumen sudah lama tidak diedit. Silakan muat ulang halaman.", + "SSE.Controllers.Main.errorSessionToken": "Koneksi ke server terganggu. Silakan muat ulang halaman.", + "SSE.Controllers.Main.errorSetPassword": "Password tidak bisa diatur.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Lokasi referensi tidak valid karena sel tidak ada di kolom atau baris yang sama.
    Pilih sel yang semuanya ada di satu kolom atau baris.", + "SSE.Controllers.Main.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
    harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "SSE.Controllers.Main.errorToken": "Token keamanan dokumen tidak dibentuk dengan tepat.
    Silakan hubungi admin Server Dokumen Anda.", + "SSE.Controllers.Main.errorTokenExpire": "Token keamanan dokumen sudah kadaluwarsa.
    Silakan hubungi admin Server Dokumen Anda.", + "SSE.Controllers.Main.errorUnexpectedGuid": "Error eksternal.
    Unexpected GUID. Silakan hubungi layanan bantuan jika tetap terjadi error.", + "SSE.Controllers.Main.errorUpdateVersion": "Versi file telah diubah. Halaman tidak akan dimuat ulang.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
    Sebelum Anda bisa melanjutkan kerja, Anda perlu download file atau copy konten untuk memastikan tidak ada yang hilang, dan muat ulang halaman ini.", + "SSE.Controllers.Main.errorUserDrop": "File tidak bisa diakses sekarang.", + "SSE.Controllers.Main.errorUsersExceed": "Jumlah pengguna telah melebihi jumlah yang diijinkan dalam paket harga.", + "SSE.Controllers.Main.errorViewerDisconnect": "Koneksi terputus. Anda tetap bisa melihat dokumen,
    tapi tidak bisa download atau print sampai koneksi terhubung dan halaman dimuat ulang.", + "SSE.Controllers.Main.errorWrongBracketsCount": "Kesalahan dalam formula yang dimasukkan.
    Jumlah tanda kurung yang dipakai salah.", + "SSE.Controllers.Main.errorWrongOperator": "Eror ketika memasukkan formula. Penggunaan operator tidak tepat.
    Silakan perbaiki.", + "SSE.Controllers.Main.errorWrongPassword": "Password yang Anda sediakan tidak tepat.", + "SSE.Controllers.Main.errRemDuplicates": "Nilai duplikat yang ditemukan dan dihapus: {0}, nilai unik tersisa: {1}.", + "SSE.Controllers.Main.leavePageText": "Anda memiliki perubahan yang belum tersimpan di spreadsheet ini. Klik \"Tetap di Halaman Ini” kemudian \"Simpan” untuk menyimpan perubahan tersebut. Klik ‘Tinggalkan Halaman Ini’ untuk membatalkan semua perubahan yang belum disimpan.", + "SSE.Controllers.Main.leavePageTextOnClose": "Semua perubahan yang belum disimpan dalam spreadsheet ini akan hilang.
    Klik \"Batal\" lalu \"Simpan\" untuk menyimpan. Klik \"OK\" untuk membuang semua perubahan yang tidak tersimpan.", + "SSE.Controllers.Main.loadFontsTextText": "Memuat data...", + "SSE.Controllers.Main.loadFontsTitleText": "Memuat Data", + "SSE.Controllers.Main.loadFontTextText": "Memuat data...", + "SSE.Controllers.Main.loadFontTitleText": "Memuat Data", + "SSE.Controllers.Main.loadImagesTextText": "Memuat gambar...", + "SSE.Controllers.Main.loadImagesTitleText": "Memuat Gambar", + "SSE.Controllers.Main.loadImageTextText": "Memuat gambar...", + "SSE.Controllers.Main.loadImageTitleText": "Memuat Gambar", + "SSE.Controllers.Main.loadingDocumentTitleText": "Memuat spread sheet", + "SSE.Controllers.Main.notcriticalErrorTitle": "Peringatan", + "SSE.Controllers.Main.openErrorText": "Eror ketika membuka file.", + "SSE.Controllers.Main.openTextText": "Membuka spreadsheet...", + "SSE.Controllers.Main.openTitleText": "Membuka spreadsheet", + "SSE.Controllers.Main.pastInMergeAreaError": "Tidak bisa mengganti bagian dari sel yang digabungkan", + "SSE.Controllers.Main.printTextText": "Mencetak spreadsheet...", + "SSE.Controllers.Main.printTitleText": "Mencetak spreadsheet", + "SSE.Controllers.Main.reloadButtonText": "Muat Ulang Halaman", + "SSE.Controllers.Main.requestEditFailedMessageText": "Saat ini dokumen sedang diedit. Silakan coba beberapa saat lagi.", + "SSE.Controllers.Main.requestEditFailedTitleText": "Akses ditolak", + "SSE.Controllers.Main.saveErrorText": "Eror ketika menyimpan file.", + "SSE.Controllers.Main.saveErrorTextDesktop": "File tidak bisa disimpan atau dibuat.
    Alasan yang mungkin adalah:
    1. File hanya bisa dibaca.
    2. File sedang diedit user lain.
    3. Memori penuh atau terkorupsi.", + "SSE.Controllers.Main.saveTextText": "Menyimpan spreadsheet...", + "SSE.Controllers.Main.saveTitleText": "Menyimpan spreadsheet", + "SSE.Controllers.Main.scriptLoadError": "Koneksi terlalu lambat dan beberapa komponen tidak bisa dibuka Silakan muat ulang halaman.", + "SSE.Controllers.Main.textAnonymous": "Anonim", + "SSE.Controllers.Main.textApplyAll": "Terapkan untuk semua persamaan", + "SSE.Controllers.Main.textBuyNow": "Kunjungi website", + "SSE.Controllers.Main.textChangesSaved": "Semua perubahan tersimpan", "SSE.Controllers.Main.textClose": "Tutup", - "SSE.Controllers.Main.textCloseTip": "Click to close the tip", - "SSE.Controllers.Main.textConfirm": "Confirmation", + "SSE.Controllers.Main.textCloseTip": "Klik untuk menutup tips", + "SSE.Controllers.Main.textConfirm": "Konfirmasi", + "SSE.Controllers.Main.textContactUs": "Hubungi sales", + "SSE.Controllers.Main.textConvertEquation": "Persamaan ini dibuat dengan editor persamaan versi lama yang sudah tidak didukung. Untuk edit, konversikan persamaan ke format Office Math ML.
    Konversi sekarang?", + "SSE.Controllers.Main.textCustomLoader": "Perlu diketahui bahwa berdasarkan syarat dari lisensi, Anda tidak bisa untuk mengganti loader.
    Silakan hubungi Departemen Penjualan kami untuk mendapatkan harga.", + "SSE.Controllers.Main.textDisconnect": "Koneksi terputus", + "SSE.Controllers.Main.textFillOtherRows": "Isi baris lainnya", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Formula mengisi {0} baris memiliki data. Mengisi baris kosong lainnya mungkin memerlukan waktu beberapa menit", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "Formula mengisi {0} baris pertama. Mengisi baris kosong lainnya mungkin memerlukan waktu beberapa menit", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Formula yang mengisi hanya {0} baris pertama memiliki data dengan alasan penyimpanan memori. Ada {1} baris lain yang memiliki data di sheet ini. Anda bisa mengisinya dengan manual.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Formula hanya mengisi {0} baris pertama dengan alasan penyimpanan memori. Baris lain di sheet ini tidak memiliki data.", "SSE.Controllers.Main.textGuest": "Tamu", + "SSE.Controllers.Main.textHasMacros": "File berisi macros otomatis.
    Apakah Anda ingin menjalankan macros?", "SSE.Controllers.Main.textLearnMore": "Pelajari selengkapnya", - "SSE.Controllers.Main.textLoadingDocument": "Loading spreadsheet", + "SSE.Controllers.Main.textLoadingDocument": "Memuat spread sheet", + "SSE.Controllers.Main.textLongName": "Masukkan nama maksimum 128 karakter.", "SSE.Controllers.Main.textNeedSynchronize": "Ada pembaruan", - "SSE.Controllers.Main.textNo": "No", - "SSE.Controllers.Main.textNoLicenseTitle": "%1 keterbatasan koneksi", - "SSE.Controllers.Main.textPleaseWait": "The operation might take more time than expected. Please wait...", - "SSE.Controllers.Main.textShape": "Shape", - "SSE.Controllers.Main.textStrict": "Strict mode", - "SSE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
    Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", - "SSE.Controllers.Main.textYes": "Yes", - "SSE.Controllers.Main.txtArt": "Your text here", - "SSE.Controllers.Main.txtBasicShapes": "Basic Shapes", - "SSE.Controllers.Main.txtButtons": "Buttons", - "SSE.Controllers.Main.txtCallouts": "Callouts", - "SSE.Controllers.Main.txtCharts": "Charts", + "SSE.Controllers.Main.textNo": "Tidak", + "SSE.Controllers.Main.textNoLicenseTitle": "Batas lisensi sudah tercapai", + "SSE.Controllers.Main.textPaidFeature": "Fitur berbayar", + "SSE.Controllers.Main.textPleaseWait": "Operasi mungkin akan membutuhkan waktu lebih lama dari perkiraan. Silahkan menunggu...", + "SSE.Controllers.Main.textReconnect": "Koneksi terhubung kembali", + "SSE.Controllers.Main.textRemember": "Ingat pilihan saya untuk semua file", + "SSE.Controllers.Main.textRenameError": "Nama user tidak boleh kosong.", + "SSE.Controllers.Main.textRenameLabel": "Masukkan nama untuk digunakan di kolaborasi", + "SSE.Controllers.Main.textShape": "Bentuk", + "SSE.Controllers.Main.textStrict": "Mode strict", + "SSE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.
    Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.", + "SSE.Controllers.Main.textYes": "Ya", + "SSE.Controllers.Main.titleLicenseExp": "Lisensi kadaluwarsa", + "SSE.Controllers.Main.titleServerVersion": "Editor mengupdate", + "SSE.Controllers.Main.txtAccent": "Aksen", + "SSE.Controllers.Main.txtAll": "(Semua)", + "SSE.Controllers.Main.txtArt": "Teks Anda di sini", + "SSE.Controllers.Main.txtBasicShapes": "Bentuk Dasar", + "SSE.Controllers.Main.txtBlank": "(kosong)", + "SSE.Controllers.Main.txtButtons": "Tombol", + "SSE.Controllers.Main.txtByField": "%1 dari %2", + "SSE.Controllers.Main.txtCallouts": "Balon Kata", + "SSE.Controllers.Main.txtCharts": "Bagan", + "SSE.Controllers.Main.txtClearFilter": "Hapus Filter (Alt+C)", + "SSE.Controllers.Main.txtColLbls": "Label Kolom", "SSE.Controllers.Main.txtColumn": "Kolom", + "SSE.Controllers.Main.txtConfidential": "Konfidensial", "SSE.Controllers.Main.txtDate": "Tanggal", "SSE.Controllers.Main.txtDays": "Hari", - "SSE.Controllers.Main.txtDiagramTitle": "Chart Title", - "SSE.Controllers.Main.txtEditingMode": "Set editing mode...", - "SSE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "SSE.Controllers.Main.txtDiagramTitle": "Judul Grafik", + "SSE.Controllers.Main.txtEditingMode": "Mengatur mode editing...", + "SSE.Controllers.Main.txtErrorLoadHistory": "Memuat riwayat gagal", + "SSE.Controllers.Main.txtFiguredArrows": "Tanda Panah Berpola", "SSE.Controllers.Main.txtFile": "File", + "SSE.Controllers.Main.txtGrandTotal": "Grand Total", "SSE.Controllers.Main.txtGroup": "Grup", "SSE.Controllers.Main.txtHours": "jam", - "SSE.Controllers.Main.txtLines": "Lines", - "SSE.Controllers.Main.txtMath": "Math", + "SSE.Controllers.Main.txtLines": "Garis", + "SSE.Controllers.Main.txtMath": "Matematika", "SSE.Controllers.Main.txtMinutes": "menit", - "SSE.Controllers.Main.txtMonths": "bulan", + "SSE.Controllers.Main.txtMonths": "Bulan", + "SSE.Controllers.Main.txtMultiSelect": "Multi-Select (Alt+S)", + "SSE.Controllers.Main.txtOr": "%1 atau %2", "SSE.Controllers.Main.txtPage": "Halaman", + "SSE.Controllers.Main.txtPageOf": "Halaman %1 dari %2", "SSE.Controllers.Main.txtPages": "Halaman", - "SSE.Controllers.Main.txtRectangles": "Rectangles", + "SSE.Controllers.Main.txtPreparedBy": "Disiapkan oleh", + "SSE.Controllers.Main.txtPrintArea": "Print_Area", + "SSE.Controllers.Main.txtQuarter": "Qtr", + "SSE.Controllers.Main.txtQuarters": "Kuarter", + "SSE.Controllers.Main.txtRectangles": "Persegi Panjang", "SSE.Controllers.Main.txtRow": "Baris", - "SSE.Controllers.Main.txtSeries": "Series", + "SSE.Controllers.Main.txtRowLbls": "Label Baris", + "SSE.Controllers.Main.txtSeconds": "Detik", + "SSE.Controllers.Main.txtSeries": "Seri", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Garis Callout 1 (Border dan Accent Bar)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Garis Callout 2 (Border dan Accent Bar)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Garis Callout 3 (Border dan Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout1": "Garis Callout 1 (Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout2": "Garis Callout 2 (Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout3": "Garis Callout 3 (Accent Bar)", + "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tombol Kembali atau Sebelumnya", + "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Tombol Awal", + "SSE.Controllers.Main.txtShape_actionButtonBlank": "Tombol Kosong", + "SSE.Controllers.Main.txtShape_actionButtonDocument": "Tombol Dokumen", + "SSE.Controllers.Main.txtShape_actionButtonEnd": "Tombol Akhir", + "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Maju atau Tombol Selanjutnya", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "Tombol Batuan", + "SSE.Controllers.Main.txtShape_actionButtonHome": "Tombol Beranda", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "Tombol Informasi", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "Tombol Movie", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "Tombol Kembali", + "SSE.Controllers.Main.txtShape_actionButtonSound": "Tombol Suara", + "SSE.Controllers.Main.txtShape_arc": "Arc", + "SSE.Controllers.Main.txtShape_bentArrow": "Panah Bengkok", + "SSE.Controllers.Main.txtShape_bentConnector5": "Konektor Siku", + "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Panah Konektor Siku", + "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Panah Ganda Konektor Siku", + "SSE.Controllers.Main.txtShape_bentUpArrow": "Panah Kelok Atas", "SSE.Controllers.Main.txtShape_bevel": "Miring", - "SSE.Controllers.Main.txtShape_downArrow": "Panah Bawah", + "SSE.Controllers.Main.txtShape_blockArc": "Block Arc", + "SSE.Controllers.Main.txtShape_borderCallout1": "Garis Callout 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "Garis Callout 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "Garis Callout 3", + "SSE.Controllers.Main.txtShape_bracePair": "Kurung Ganda", + "SSE.Controllers.Main.txtShape_callout1": "Garis Callout 1 (No Border)", + "SSE.Controllers.Main.txtShape_callout2": "Garis Callout 2 (No Border)", + "SSE.Controllers.Main.txtShape_callout3": "Garis Callout 3 (No Border)", + "SSE.Controllers.Main.txtShape_can": "Bisa", + "SSE.Controllers.Main.txtShape_chevron": "Chevron", + "SSE.Controllers.Main.txtShape_chord": "Chord", + "SSE.Controllers.Main.txtShape_circularArrow": "Panah Sirkular", + "SSE.Controllers.Main.txtShape_cloud": "Cloud", + "SSE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout", + "SSE.Controllers.Main.txtShape_corner": "Sudut", + "SSE.Controllers.Main.txtShape_cube": "Kubus", + "SSE.Controllers.Main.txtShape_curvedConnector3": "Konektor Lengkung", + "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Panah Konektor Lengkung", + "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Panah Ganda Konektor Lengkung", + "SSE.Controllers.Main.txtShape_curvedDownArrow": "Panah Kelok Bawah", + "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Panah Kelok Kiri", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "Panah Kelok Kanan", + "SSE.Controllers.Main.txtShape_curvedUpArrow": "Panah Kelok Atas", + "SSE.Controllers.Main.txtShape_decagon": "Decagon", + "SSE.Controllers.Main.txtShape_diagStripe": "Strip Diagonal", + "SSE.Controllers.Main.txtShape_diamond": "Diamond", + "SSE.Controllers.Main.txtShape_dodecagon": "Dodecagon", + "SSE.Controllers.Main.txtShape_donut": "Donut", + "SSE.Controllers.Main.txtShape_doubleWave": "Gelombang Ganda", + "SSE.Controllers.Main.txtShape_downArrow": "Panah Kebawah", + "SSE.Controllers.Main.txtShape_downArrowCallout": "Seranta Panah Bawah", + "SSE.Controllers.Main.txtShape_ellipse": "Elips", + "SSE.Controllers.Main.txtShape_ellipseRibbon": "Pita Kelok Bawah", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Pita Kelok Atas", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagram Alir: Proses Alternatif", + "SSE.Controllers.Main.txtShape_flowChartCollate": "Diagram Alir: Collate", + "SSE.Controllers.Main.txtShape_flowChartConnector": "Diagram Alir: Konektor", + "SSE.Controllers.Main.txtShape_flowChartDecision": "Diagram Alir: Keputusan", + "SSE.Controllers.Main.txtShape_flowChartDelay": "Diagram Alir: Delay", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "Diagram Alir: Tampilan", + "SSE.Controllers.Main.txtShape_flowChartDocument": "Diagram Alir: Dokumen", + "SSE.Controllers.Main.txtShape_flowChartExtract": "Diagram Alir: Ekstrak", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Diagram Alir: Data", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Diagram Alir: Memori Internal", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Diagram Alir: Magnetic Disk", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagram Alir: Direct Access Storage", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Diagram Alir: Sequential Access Storage", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "Diagram Alir: Input Manual", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Diagram Alir: Operasi Manual", + "SSE.Controllers.Main.txtShape_flowChartMerge": "Diagram Alir: Merge", + "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Diagram Alir: Multidokumen ", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Diagram Alir: Off-page Penghubung", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Diagram Alir: Stored Data", + "SSE.Controllers.Main.txtShape_flowChartOr": "Diagram Alir: Atau", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Diagram Alir: Predefined Process", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "Diagram Alir: Preparasi", + "SSE.Controllers.Main.txtShape_flowChartProcess": "Diagram Alir: Proses", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Diagram Alir: Kartu", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Diagram Alir: Punched Tape", + "SSE.Controllers.Main.txtShape_flowChartSort": "Diagram Alir: Sortasi", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagram Alir: Summing Junction", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "Diagram Alir: Terminator", + "SSE.Controllers.Main.txtShape_foldedCorner": "Sudut Folder", "SSE.Controllers.Main.txtShape_frame": "Kerangka", + "SSE.Controllers.Main.txtShape_halfFrame": "Setengah Bingkai", + "SSE.Controllers.Main.txtShape_heart": "Hati", + "SSE.Controllers.Main.txtShape_heptagon": "Heptagon", + "SSE.Controllers.Main.txtShape_hexagon": "Heksagon", + "SSE.Controllers.Main.txtShape_homePlate": "Pentagon", + "SSE.Controllers.Main.txtShape_horizontalScroll": "Scroll Horizontal", + "SSE.Controllers.Main.txtShape_irregularSeal1": "Ledakan 1", + "SSE.Controllers.Main.txtShape_irregularSeal2": "Ledakan 2", "SSE.Controllers.Main.txtShape_leftArrow": "Panah Kiri", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "Seranta Panah Kiri", + "SSE.Controllers.Main.txtShape_leftBrace": "Brace Kiri", + "SSE.Controllers.Main.txtShape_leftBracket": "Kurung Kurawal Kiri", + "SSE.Controllers.Main.txtShape_leftRightArrow": "Panah Kiri Kanan", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Seranta Panah Kiri Kanan", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Panah Kiri Kanan Atas", + "SSE.Controllers.Main.txtShape_leftUpArrow": "Panah Kiri Atas", + "SSE.Controllers.Main.txtShape_lightningBolt": "Petir", "SSE.Controllers.Main.txtShape_line": "Garis", + "SSE.Controllers.Main.txtShape_lineWithArrow": "Panah", + "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Panah Ganda", + "SSE.Controllers.Main.txtShape_mathDivide": "Divisi", "SSE.Controllers.Main.txtShape_mathEqual": "Setara", + "SSE.Controllers.Main.txtShape_mathMinus": "Minus", + "SSE.Controllers.Main.txtShape_mathMultiply": "Perkalian", + "SSE.Controllers.Main.txtShape_mathNotEqual": "Tidak Sama", "SSE.Controllers.Main.txtShape_mathPlus": "Plus", + "SSE.Controllers.Main.txtShape_moon": "Bulan", + "SSE.Controllers.Main.txtShape_noSmoking": "\"No\" simbol", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "Panah Takik Kanan", + "SSE.Controllers.Main.txtShape_octagon": "Oktagon", + "SSE.Controllers.Main.txtShape_parallelogram": "Parallelogram", + "SSE.Controllers.Main.txtShape_pentagon": "Pentagon", "SSE.Controllers.Main.txtShape_pie": "Diagram Lingkaran", + "SSE.Controllers.Main.txtShape_plaque": "Plus", "SSE.Controllers.Main.txtShape_plus": "Plus", + "SSE.Controllers.Main.txtShape_polyline1": "Scribble", + "SSE.Controllers.Main.txtShape_polyline2": "Bentuk bebas", + "SSE.Controllers.Main.txtShape_quadArrow": "Panah Empat Mata", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "Seranta Panah Empat Mata", + "SSE.Controllers.Main.txtShape_rect": "Kotak", + "SSE.Controllers.Main.txtShape_ribbon": "Pita Bawah", + "SSE.Controllers.Main.txtShape_ribbon2": "Pita Keatas", "SSE.Controllers.Main.txtShape_rightArrow": "Tanda Panah ke Kanan", - "SSE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "Seranta Panah Kanan", + "SSE.Controllers.Main.txtShape_rightBrace": "Brace Kanan", + "SSE.Controllers.Main.txtShape_rightBracket": "Kurung Kurawal Kanan", + "SSE.Controllers.Main.txtShape_round1Rect": "Persegi Panjang Sudut Lengkung Single", + "SSE.Controllers.Main.txtShape_round2DiagRect": "Persegi Panjang Sudut Lengkung Diagonal", + "SSE.Controllers.Main.txtShape_round2SameRect": "Persegi Panjang Sudut Lengkung Sama Sisi", + "SSE.Controllers.Main.txtShape_roundRect": "Persegi Panjang Sudut Lengkung", + "SSE.Controllers.Main.txtShape_rtTriangle": "Segitiga Siku-Siku", + "SSE.Controllers.Main.txtShape_smileyFace": "Wajah Senyum", + "SSE.Controllers.Main.txtShape_snip1Rect": "Snip Persegi Panjang Sudut Single", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "Snip Persegi Panjang Sudut Lengkung Diagonal", + "SSE.Controllers.Main.txtShape_snip2SameRect": "Snip Persegi Panjang Sudut Lengkung Sama Sisi", + "SSE.Controllers.Main.txtShape_snipRoundRect": "Snip dan Persegi Panjang Sudut Lengkung Single", + "SSE.Controllers.Main.txtShape_spline": "Lengkung", + "SSE.Controllers.Main.txtShape_star10": "Bintang Titik-10", + "SSE.Controllers.Main.txtShape_star12": "Bintang Titik-12", + "SSE.Controllers.Main.txtShape_star16": "Bintang Titik-16", + "SSE.Controllers.Main.txtShape_star24": "Bintang Titik-24", + "SSE.Controllers.Main.txtShape_star32": "Bintang Titik-32", + "SSE.Controllers.Main.txtShape_star4": "Bintang Titik-4", + "SSE.Controllers.Main.txtShape_star5": "Bintang Titik-5", + "SSE.Controllers.Main.txtShape_star6": "Bintang Titik-6", + "SSE.Controllers.Main.txtShape_star7": "Bintang Titik-7", + "SSE.Controllers.Main.txtShape_star8": "Bintang Titik-8", + "SSE.Controllers.Main.txtShape_stripedRightArrow": "Panah Putus-Putus Kanan", + "SSE.Controllers.Main.txtShape_sun": "Matahari", + "SSE.Controllers.Main.txtShape_teardrop": "Teardrop", + "SSE.Controllers.Main.txtShape_textRect": "Kotak Teks", + "SSE.Controllers.Main.txtShape_trapezoid": "Trapezoid", + "SSE.Controllers.Main.txtShape_triangle": "Segitiga", + "SSE.Controllers.Main.txtShape_upArrow": "Panah keatas", + "SSE.Controllers.Main.txtShape_upArrowCallout": "Seranta Panah Atas", + "SSE.Controllers.Main.txtShape_upDownArrow": "Panah Atas Bawah", + "SSE.Controllers.Main.txtShape_uturnArrow": "Panah Balik", + "SSE.Controllers.Main.txtShape_verticalScroll": "Scroll Vertikal", + "SSE.Controllers.Main.txtShape_wave": "Gelombang", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Callout Oval", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Callout Kotak", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Callout Persegi Panjang Sudut Lengkung", + "SSE.Controllers.Main.txtStarsRibbons": "Bintang & Pita", + "SSE.Controllers.Main.txtStyle_Bad": "Buruk", + "SSE.Controllers.Main.txtStyle_Calculation": "Kalkulasi", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Periksa Sel", "SSE.Controllers.Main.txtStyle_Comma": "Koma", "SSE.Controllers.Main.txtStyle_Currency": "Mata uang", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Teks Penjelasan", + "SSE.Controllers.Main.txtStyle_Good": "Bagus", + "SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4", + "SSE.Controllers.Main.txtStyle_Input": "Input", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Sel Terhubung", + "SSE.Controllers.Main.txtStyle_Neutral": "Netral", + "SSE.Controllers.Main.txtStyle_Normal": "Normal", "SSE.Controllers.Main.txtStyle_Note": "Catatan", + "SSE.Controllers.Main.txtStyle_Output": "Output", + "SSE.Controllers.Main.txtStyle_Percent": "Persen", "SSE.Controllers.Main.txtStyle_Title": "Judul", + "SSE.Controllers.Main.txtStyle_Total": "Total", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Teks Warning", + "SSE.Controllers.Main.txtTab": "Tab", "SSE.Controllers.Main.txtTable": "Tabel", "SSE.Controllers.Main.txtTime": "Waktu", - "SSE.Controllers.Main.txtXAxis": "X Axis", - "SSE.Controllers.Main.txtYAxis": "Y Axis", - "SSE.Controllers.Main.txtYears": "tahun", - "SSE.Controllers.Main.unknownErrorText": "Unknown error.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.", - "SSE.Controllers.Main.uploadImageExtMessage": "Unknown image format.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maximium image size limit exceeded.", - "SSE.Controllers.Main.uploadImageTextText": "Uploading image...", - "SSE.Controllers.Main.uploadImageTitleText": "Uploading Image", + "SSE.Controllers.Main.txtUnlock": "Buka Kunci", + "SSE.Controllers.Main.txtUnlockRange": "Buka Kunci Rentang", + "SSE.Controllers.Main.txtUnlockRangeDescription": "Masukkan password untuk mengubah rentang ini:", + "SSE.Controllers.Main.txtUnlockRangeWarning": "Rentang yang ingin Anda ubah dilindungi password", + "SSE.Controllers.Main.txtValues": "Nilai", + "SSE.Controllers.Main.txtXAxis": "Sumbu X", + "SSE.Controllers.Main.txtYAxis": "Sumbu Y", + "SSE.Controllers.Main.txtYears": "Tahun", + "SSE.Controllers.Main.unknownErrorText": "Kesalahan tidak diketahui.", + "SSE.Controllers.Main.unsupportedBrowserErrorText": "Peramban kamu tidak didukung.", + "SSE.Controllers.Main.uploadDocExtMessage": "Format dokumen tidak diketahui.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Tidak ada dokumen yang diupload.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Batas ukuran maksimum dokumen terlampaui.", + "SSE.Controllers.Main.uploadImageExtMessage": "Format gambar tidak dikenal.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB.", + "SSE.Controllers.Main.uploadImageTextText": "Mengunggah gambar...", + "SSE.Controllers.Main.uploadImageTitleText": "Mengunggah Gambar", "SSE.Controllers.Main.waitText": "Silahkan menunggu", - "SSE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", - "SSE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", - "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "SSE.Controllers.Print.strAllSheets": "All Sheets", - "SSE.Controllers.Print.textWarning": "Warning", + "SSE.Controllers.Main.warnBrowserIE9": "Aplikasi ini tidak berjalan dengan baik di IE9. Gunakan IE10 atau versi yang terbaru.", + "SSE.Controllers.Main.warnBrowserZoom": "Pengaturan pembesaran tampilan pada browser Anda saat ini tidak didukung sepenuhnya. Silakan atur ulang ke tampilan standar dengan menekan Ctrl+0.", + "SSE.Controllers.Main.warnLicenseExceeded": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja.
    Hubungi admin Anda untuk mempelajari lebih lanjut.", + "SSE.Controllers.Main.warnLicenseExp": "Lisensi Anda sudah kadaluwarsa.
    Silakan update lisensi Anda dan muat ulang halaman.", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Lisensi kadaluwarsa.
    Anda tidak memiliki akses untuk editing dokumen secara keseluruhan.
    Silakan hubungi admin Anda.", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Lisensi perlu diperbaharui.
    Anda memiliki akses terbatas untuk edit dokumen.
    Silakan hubungi admin Anda untuk mendapatkan akses penuh", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Anda sudah mencapai batas user untuk %1 editor. Hubungi admin Anda untuk mempelajari lebih lanjut.", + "SSE.Controllers.Main.warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja.
    Hubungi %1 tim sales untuk syarat personal upgrade.", + "SSE.Controllers.Main.warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", + "SSE.Controllers.Main.warnProcessRightsChange": "Hak Anda untuk mengedit file ditolak.", + "SSE.Controllers.Print.strAllSheets": "Semua Sheet", + "SSE.Controllers.Print.textFirstCol": "Kolom pertama", + "SSE.Controllers.Print.textFirstRow": "Baris pertama", + "SSE.Controllers.Print.textFrozenCols": "Kolom yang dibekukan", + "SSE.Controllers.Print.textFrozenRows": "Baris yang dibekukan", + "SSE.Controllers.Print.textInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "SSE.Controllers.Print.textNoRepeat": "Jangan ulang", + "SSE.Controllers.Print.textRepeat": "Ulangi...", + "SSE.Controllers.Print.textSelectRange": "Pilih rentang", + "SSE.Controllers.Print.textWarning": "Peringatan", "SSE.Controllers.Print.txtCustom": "Khusus", - "SSE.Controllers.Print.warnCheckMargings": "Margins are incorrect", - "SSE.Controllers.Statusbar.errorLastSheet": "Workbook must have at least one visible worksheet.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Cannot delete the worksheet.", + "SSE.Controllers.Print.warnCheckMargings": "Margin tidak tepat", + "SSE.Controllers.Statusbar.errorLastSheet": "Workbook harus setidaknya memiliki satu worksheet yang terlihat.", + "SSE.Controllers.Statusbar.errorRemoveSheet": "Tidak bisa menghapus worksheet.", "SSE.Controllers.Statusbar.strSheet": "Sheet", - "SSE.Controllers.Statusbar.warnDeleteSheet": "The worksheet might contain data. Are you sure you want to proceed?", - "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "SSE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
    The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
    Do you want to continue?", + "SSE.Controllers.Statusbar.textDisconnect": "Koneksi terputus
    Mencoba menghubungkan. Silakan periksa pengaturan koneksi.", + "SSE.Controllers.Statusbar.textSheetViewTip": "Anda di mode Tampilan Sheet Filter dan sortasi hanya terlihat oleh Anda dan orang yang masih ada di tampilan ini.", + "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Anda di mode Tampilan Sheet Filter hanya dapat dilihat oleh Anda dan orang yang masih ada di tampilan ini.", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Worksheet yang dipilih mungkin memiliki data. Apakah Anda yakin ingin melanjutkan?", + "SSE.Controllers.Statusbar.zoomText": "Perbesar {0}%", + "SSE.Controllers.Toolbar.confirmAddFontName": "Font yang akan Anda simpan tidak tersedia di perangkat sekarang.
    Style teks akan ditampilkan menggunakan salah satu font sistem, font yang disimpan akan digunakan jika sudah tersedia.
    Apakah Anda ingin melanjutkan?", + "SSE.Controllers.Toolbar.errorComboSeries": "Untuk membuat grafik kombinasi, pilih setidaknya dua seri data.", + "SSE.Controllers.Toolbar.errorMaxRows": "KESALAHAN! Jumlah seri data maksimum per grafik adalah 255.", "SSE.Controllers.Toolbar.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
    harga pembukaan, harga maksimal, harga minimal, harga penutupan.", "SSE.Controllers.Toolbar.textAccent": "Aksen", "SSE.Controllers.Toolbar.textBracket": "Tanda Kurung", - "SSE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
    Please enter a numeric value between 1 and 409", + "SSE.Controllers.Toolbar.textDirectional": "Direksional", + "SSE.Controllers.Toolbar.textFontSizeErr": "Input yang dimasukkan salah.
    Silakan masukkan input numerik antara 1 dan 409", + "SSE.Controllers.Toolbar.textFraction": "Pecahan", "SSE.Controllers.Toolbar.textFunction": "Fungsi", + "SSE.Controllers.Toolbar.textIndicator": "Indikator", "SSE.Controllers.Toolbar.textInsert": "Sisipkan", + "SSE.Controllers.Toolbar.textIntegral": "Integral", "SSE.Controllers.Toolbar.textLargeOperator": "Operator Besar", "SSE.Controllers.Toolbar.textLimitAndLog": "Limit dan Logaritma", + "SSE.Controllers.Toolbar.textLongOperation": "Operasi panjang", "SSE.Controllers.Toolbar.textMatrix": "Matriks", + "SSE.Controllers.Toolbar.textOperator": "Operator", + "SSE.Controllers.Toolbar.textPivot": "Tabel Pivot", "SSE.Controllers.Toolbar.textRadical": "Perakaran", - "SSE.Controllers.Toolbar.textWarning": "Warning", + "SSE.Controllers.Toolbar.textRating": "Rating", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Baru Digunakan", + "SSE.Controllers.Toolbar.textScript": "Scripts", + "SSE.Controllers.Toolbar.textShapes": "Bentuk", + "SSE.Controllers.Toolbar.textSymbols": "Simbol", + "SSE.Controllers.Toolbar.textWarning": "Peringatan", "SSE.Controllers.Toolbar.txtAccent_Accent": "Akut", "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Tanda Panah Kanan-Kiri Atas", "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Panah Kiri Atas", "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Tanda Panah ke Kanan Atas", "SSE.Controllers.Toolbar.txtAccent_Bar": "Palang", + "SSE.Controllers.Toolbar.txtAccent_BarBot": "Underbar", "SSE.Controllers.Toolbar.txtAccent_BarTop": "Garis Atas", "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Kotak Formula (Dengan Placeholder)", "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Kotak Formula(Contoh)", "SSE.Controllers.Toolbar.txtAccent_Check": "Periksa", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Kurung Kurawal Atas", + "SSE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Dengan Overbar", + "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y dengan overbar", + "SSE.Controllers.Toolbar.txtAccent_DDDot": "Triple Dot", "SSE.Controllers.Toolbar.txtAccent_DDot": "Titik Dua", + "SSE.Controllers.Toolbar.txtAccent_Dot": "Titik", "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Overbar Ganda", "SSE.Controllers.Toolbar.txtAccent_Grave": "Aksen Kiri", "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Pengelompokan Karakter Di Bawah", "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Pengelompokan Karakter Di Atas", "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Panah Tiga Kiri Atas", - "SSE.Controllers.Toolbar.txtAccent_Hat": "Caping", - "SSE.Controllers.Toolbar.txtAccent_Smile": "Prosodi ", + "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Harpoon kanan di bawah", + "SSE.Controllers.Toolbar.txtAccent_Hat": "Topi", + "SSE.Controllers.Toolbar.txtAccent_Smile": "Prosodi", + "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", "SSE.Controllers.Toolbar.txtBracket_Angle": "Tanda Kurung", "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Tanda Kurung dengan Pemisah", "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Kurung Kurawal Single", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Kurung Kurawal Single", "SSE.Controllers.Toolbar.txtBracket_Curve": "Tanda Kurung", "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Kurung Kurawal Single", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Kurung Kurawal Single", "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Kasus (Dua Kondisi)", "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Kasus (Tiga Kondisi)", + "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Tumpuk objek", + "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Tumpuk objek", "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Contoh Kasus", "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Koefisien Binomial", "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Koefisien Binomial", "SSE.Controllers.Toolbar.txtBracket_Line": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Kurung Kurawal Single", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Kurung Kurawal Single", "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Kurung Kurawal Single", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Kurung Kurawal Single", "SSE.Controllers.Toolbar.txtBracket_LowLim": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Kurung Kurawal Single", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Kurung Kurawal Single", "SSE.Controllers.Toolbar.txtBracket_Round": "Tanda Kurung", "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Tanda Kurung dengan Pemisah", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Kurung Kurawal Single", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Kurung Kurawal Single", "SSE.Controllers.Toolbar.txtBracket_Square": "Tanda Kurung", "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Tanda Kurung", "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Kurung Kurawal Single", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Kurung Kurawal Single", "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Tanda Kurung", "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Kurung Kurawal Single", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Kurung Kurawal Single", "SSE.Controllers.Toolbar.txtBracket_UppLim": "Tanda Kurung", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Kurung Kurawal Single", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Kurung Kurawal Single", + "SSE.Controllers.Toolbar.txtDeleteCells": "Hapus Sel", + "SSE.Controllers.Toolbar.txtExpand": "Perluas dan sortir", + "SSE.Controllers.Toolbar.txtExpandSort": "Data di sebelah pilihan tidak akan disortasi. Apakah Anda ingin memperluas pilihan untuk menyertakan data yang berdekatan atau lanjut sortasi dengan hanya sel yang dipilih?", + "SSE.Controllers.Toolbar.txtFractionDiagonal": "Pecahan miring", "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Diferensial", "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Diferensial", "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Diferensial", "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Diferensial", "SSE.Controllers.Toolbar.txtFractionHorizontal": "Pecahan Linear", "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi Dibagi 2", + "SSE.Controllers.Toolbar.txtFractionSmall": "Pecahan kecil", + "SSE.Controllers.Toolbar.txtFractionVertical": "Pecahan bertumpuk", "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Fungsi Kosin Terbalik", "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Fungsi Kosin Hiperbolik Terbalik", "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Fungsi Kotangen Terbalik", @@ -450,25 +1202,58 @@ "SSE.Controllers.Toolbar.txtFunction_Coth": "Fungsi Kotangen Hiperbolik", "SSE.Controllers.Toolbar.txtFunction_Csc": "Fungsi Kosekans", "SSE.Controllers.Toolbar.txtFunction_Csch": "Fungsi Kosekans Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formula", + "SSE.Controllers.Toolbar.txtFunction_Sec": "Fungsi sekan", "SSE.Controllers.Toolbar.txtFunction_Sech": "Fungsi Sekans Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Sin": "Fungsi sinus", "SSE.Controllers.Toolbar.txtFunction_Sinh": "Fungsi Sin Hiperbolik", + "SSE.Controllers.Toolbar.txtFunction_Tan": "Fungsi tangen", "SSE.Controllers.Toolbar.txtFunction_Tanh": "Fungsi Tangen Hiperbolik", + "SSE.Controllers.Toolbar.txtInsertCells": "Sisipkan sel", + "SSE.Controllers.Toolbar.txtIntegral": "Integral", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Theta Diferensial", "SSE.Controllers.Toolbar.txtIntegral_dx": "Diferensial x", "SSE.Controllers.Toolbar.txtIntegral_dy": "Diferensial y", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", "SSE.Controllers.Toolbar.txtIntegralDouble": "Integral Ganda", "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integral Ganda", "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integral Ganda", "SSE.Controllers.Toolbar.txtIntegralOriented": "Integral Kontur", "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integral Kontur", + "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Permukaan integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Permukaan integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Permukaan integral", "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integral Kontur", + "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral", + "SSE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "SSE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral", + "SSE.Controllers.Toolbar.txtInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Ko-Produk", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Ko-Produk", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ko-Produk", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Ko-Produk", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Ko-Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Penjumlahan", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Penjumlahan", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Penjumlahan", "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Perpotongan", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Perpotongan", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Perpotongan", @@ -479,12 +1264,25 @@ "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produk", "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produk", "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produk", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Penjumlahan", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Penjumlahan", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Penjumlahan", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Penjumlahan", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Penjumlahan", + "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Contoh Limit", "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Contoh Maksimal", + "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Logaritma Natural", "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logaritma", "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritma", "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maksimal", + "SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "SSE.Controllers.Toolbar.txtLockSort": "Ditemukan data di sebelah pilihan Anda, tapi, Anda tidak memiliki izin untuk mengubah sel tersebut.
    Apakah Anda ingin tetap lanjut dengan pilihan saat ini?", "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Matriks Kosong", "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Matriks Kosong", "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Matriks Kosong", @@ -497,8 +1295,12 @@ "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Matriks Kosong", "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Matriks Kosong", "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Matriks Kosong", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Titik Bawah", "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Titik Tengah", "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Titik Diagonal", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Titik Vertikal", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse Matrix", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix", "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Matriks Identitas", "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Matriks Identitas", "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Matriks Identitas", @@ -507,8 +1309,10 @@ "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Tanda Panah Kanan-Kiri Atas", "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Panah Kiri Bawah", "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Panah Kiri Atas", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Panah kanan di bawah", "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Tanda Panah ke Kanan Atas", "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Titik Dua", + "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Yields", "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Hasil Delta", "SSE.Controllers.Toolbar.txtOperator_Definition": "Setara Menurut Definisi", "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Setara Dengan", @@ -516,6 +1320,7 @@ "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Tanda Panah Kanan-Kiri Atas", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Panah Kiri Bawah", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Panah Kiri Atas", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Panah kanan di bawah", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Tanda Panah ke Kanan Atas", "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Setara Setara", "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Sama Dengan", @@ -523,11 +1328,20 @@ "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Diukur Berdasar", "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Akar", "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Akar", + "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Akar dengan pangkat", "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Akar Pangkat Tiga", "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Akar Dengan Derajat", + "SSE.Controllers.Toolbar.txtRadicalSqrt": "Akar pangkat dua", + "SSE.Controllers.Toolbar.txtScriptCustom_1": "Akar", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "Akar", + "SSE.Controllers.Toolbar.txtScriptCustom_3": "Akar", + "SSE.Controllers.Toolbar.txtScriptCustom_4": "Akar", "SSE.Controllers.Toolbar.txtScriptSub": "Subskrip", + "SSE.Controllers.Toolbar.txtScriptSubSup": "Subskrip-SuperskripKiri", "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Subskrip-SuperskripKiri", "SSE.Controllers.Toolbar.txtScriptSup": "Superskrip", + "SSE.Controllers.Toolbar.txtSorting": "Sorting", + "SSE.Controllers.Toolbar.txtSortSelected": "Sortir dipilih", "SSE.Controllers.Toolbar.txtSymbol_about": "Kira-Kira", "SSE.Controllers.Toolbar.txtSymbol_additional": "Komplemen", "SSE.Controllers.Toolbar.txtSymbol_aleph": "Alef", @@ -543,7 +1357,8 @@ "SSE.Controllers.Toolbar.txtSymbol_celsius": "Derajat Celcius", "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", "SSE.Controllers.Toolbar.txtSymbol_cong": "Kira-Kira Setara Dengan", - "SSE.Controllers.Toolbar.txtSymbol_ddots": "Serong Kanan Bawah ", + "SSE.Controllers.Toolbar.txtSymbol_cup": "Union", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "Serong Kanan Bawah", "SSE.Controllers.Toolbar.txtSymbol_degree": "Derajat", "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", "SSE.Controllers.Toolbar.txtSymbol_div": "Tanda Pembagi", @@ -553,27 +1368,34 @@ "SSE.Controllers.Toolbar.txtSymbol_equals": "Setara", "SSE.Controllers.Toolbar.txtSymbol_equiv": "Identik Dengan", "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "SSE.Controllers.Toolbar.txtSymbol_exists": "Ada di sana", "SSE.Controllers.Toolbar.txtSymbol_factorial": "Faktorial", "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Derajat Fahrenheit", "SSE.Controllers.Toolbar.txtSymbol_forall": "Untuk Semua", "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", "SSE.Controllers.Toolbar.txtSymbol_geq": "Lebih Dari atau Sama Dengan", + "SSE.Controllers.Toolbar.txtSymbol_gg": "Lebih Dari", "SSE.Controllers.Toolbar.txtSymbol_greater": "Lebih Dari", "SSE.Controllers.Toolbar.txtSymbol_in": "Elemen Dari", "SSE.Controllers.Toolbar.txtSymbol_inc": "Naik", "SSE.Controllers.Toolbar.txtSymbol_infinity": "Tak Terbatas", "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Panah Kiri", + "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Panah Kanan-Kiri", "SSE.Controllers.Toolbar.txtSymbol_leq": "Kurang Dari atau Sama Dengan", "SSE.Controllers.Toolbar.txtSymbol_less": "Kurang Dari", "SSE.Controllers.Toolbar.txtSymbol_ll": "Kurang Dari", "SSE.Controllers.Toolbar.txtSymbol_minus": "Minus", "SSE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", "SSE.Controllers.Toolbar.txtSymbol_neq": "Tidak Sama Dengan", "SSE.Controllers.Toolbar.txtSymbol_ni": "Sertakan sebagai Anggota", "SSE.Controllers.Toolbar.txtSymbol_not": "Tanda Negasi", + "SSE.Controllers.Toolbar.txtSymbol_notexists": "Tidak ada di sana", + "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", "SSE.Controllers.Toolbar.txtSymbol_o": "Omikron", "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", "SSE.Controllers.Toolbar.txtSymbol_partial": "Diferensial Parsial", @@ -586,235 +1408,459 @@ "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Akar Kuadrat", "SSE.Controllers.Toolbar.txtSymbol_qed": "Pembuktian Akhir", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Elipsis diagonal kanan atas", "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Tanda Panah ke Kanan", "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Tanda Akar", + "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "SSE.Controllers.Toolbar.txtSymbol_therefore": "Oleh karena itu", "SSE.Controllers.Toolbar.txtSymbol_theta": "Theta", "SSE.Controllers.Toolbar.txtSymbol_times": "Tanda Perkalian", + "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Panah keatas", "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Varian Epsilon", "SSE.Controllers.Toolbar.txtSymbol_varphi": "Varian Phi", "SSE.Controllers.Toolbar.txtSymbol_varpi": "Varian Pi", "SSE.Controllers.Toolbar.txtSymbol_varrho": "Varian Rho", - "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Variant", - "SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
    Are you sure you want to continue?", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Varian Sigma", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Varian Theta", + "SSE.Controllers.Toolbar.txtSymbol_vdots": "Elipsis vertikal", + "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Tabel Gaya Gelap", + "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Tabel Gaya Terang", + "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Tabel Gaya Medium", + "SSE.Controllers.Toolbar.warnLongOperation": "Operasi yang akan Anda lakukan mungkin membutukan waktu yang cukup lama untuk selesai.
    Apakah anda yakin untuk lanjut?", + "SSE.Controllers.Toolbar.warnMergeLostData": "Hanya data dari sel atas-kiri akan tetap berada di sel merging.
    Apakah Anda ingin melanjutkan?", + "SSE.Controllers.Viewport.textFreezePanes": "Freeze Panes", + "SSE.Controllers.Viewport.textFreezePanesShadow": "Tampillkan bayangan panel beku", + "SSE.Controllers.Viewport.textHideFBar": "Sembuntikan Bar Formula", + "SSE.Controllers.Viewport.textHideGridlines": "Sembunyikan Gridlines", + "SSE.Controllers.Viewport.textHideHeadings": "Sembunyikan Heading", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separator desimal", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separator ribuan", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "Pengaturan digunakan untuk mengetahui data numerik", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Text qualifier", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Pengaturan Lanjut", - "SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter", - "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", - "SSE.Views.AutoFilterDialog.textSelectAll": "Select All", - "SSE.Views.AutoFilterDialog.textWarning": "Warning", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(tidak ada)", + "SSE.Views.AutoFilterDialog.btnCustomFilter": "Atur Filter", + "SSE.Views.AutoFilterDialog.textAddSelection": "Tambah pilihan saat ini ke filter", + "SSE.Views.AutoFilterDialog.textEmptyItem": "{Kosong}", + "SSE.Views.AutoFilterDialog.textSelectAll": "Pilih semua", + "SSE.Views.AutoFilterDialog.textSelectAllResults": "Pilih Semua Hasil Pencarian", + "SSE.Views.AutoFilterDialog.textWarning": "Peringatan", + "SSE.Views.AutoFilterDialog.txtAboveAve": "Di atas rata-rata", + "SSE.Views.AutoFilterDialog.txtBegins": "Dimulai dari...", + "SSE.Views.AutoFilterDialog.txtBelowAve": "Di bawah rata-rata", + "SSE.Views.AutoFilterDialog.txtBetween": "Diantara...", "SSE.Views.AutoFilterDialog.txtClear": "Hapus", - "SSE.Views.AutoFilterDialog.txtEmpty": "Enter cell filter", + "SSE.Views.AutoFilterDialog.txtContains": "Berisi...", + "SSE.Views.AutoFilterDialog.txtEmpty": "Masukkan filter sel", + "SSE.Views.AutoFilterDialog.txtEnds": "Berakhir dengan...", + "SSE.Views.AutoFilterDialog.txtEquals": "Sama Dengan...", + "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Filter dari warna sel", + "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filter dari warna font", + "SSE.Views.AutoFilterDialog.txtGreater": "Lebih Dari...", + "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Lebih Dari atau Sama Dengan...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Filter label", + "SSE.Views.AutoFilterDialog.txtLess": "Kurang dari...", + "SSE.Views.AutoFilterDialog.txtLessEquals": "Kurang Dari atau Sama Dengan...", + "SSE.Views.AutoFilterDialog.txtNotBegins": "Tidak diawali dari...", + "SSE.Views.AutoFilterDialog.txtNotBetween": "Tidak diantara...", + "SSE.Views.AutoFilterDialog.txtNotContains": "Tidak berisi...", + "SSE.Views.AutoFilterDialog.txtNotEnds": "Tidak diakhiri dengan...", + "SSE.Views.AutoFilterDialog.txtNotEquals": "Tidak sama dengan...", + "SSE.Views.AutoFilterDialog.txtNumFilter": "Nomor filter", + "SSE.Views.AutoFilterDialog.txtReapply": "Terapkan Ulang", + "SSE.Views.AutoFilterDialog.txtSortCellColor": "Sortasi dari warna sel", + "SSE.Views.AutoFilterDialog.txtSortFontColor": "Sortasi dari warna font", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sortir Tertinggi ke Terendah", + "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sortir Terendah ke Tertinggi", + "SSE.Views.AutoFilterDialog.txtSortOption": "Lebih banyak opsi sortasi...", + "SSE.Views.AutoFilterDialog.txtTextFilter": "Filter teks", "SSE.Views.AutoFilterDialog.txtTitle": "Filter", "SSE.Views.AutoFilterDialog.txtTop10": "10 Teratas", - "SSE.Views.AutoFilterDialog.warnNoSelected": "You must choose at least one value", - "SSE.Views.CellEditor.textManager": "Name Manager", - "SSE.Views.CellEditor.tipFormula": "Insert Function", - "SSE.Views.CellRangeDialog.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Filter Nilai", + "SSE.Views.AutoFilterDialog.warnFilterError": "Anda setidaknya membutuhkan satu area di area Nilai untuk menerapkan filter nilai.", + "SSE.Views.AutoFilterDialog.warnNoSelected": "Anda harus memilih setidaknya satu nilai", + "SSE.Views.CellEditor.textManager": "Pengaturan Nama", + "SSE.Views.CellEditor.tipFormula": "Sisipkan Fungsi", + "SSE.Views.CellRangeDialog.errorMaxRows": "KESALAHAN! Jumlah seri data maksimum per grafik adalah 255.", "SSE.Views.CellRangeDialog.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
    harga pembukaan, harga maksimal, harga minimal, harga penutupan.", - "SSE.Views.CellRangeDialog.txtEmpty": "This field is required", - "SSE.Views.CellRangeDialog.txtInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.CellRangeDialog.txtTitle": "Select Data Range", + "SSE.Views.CellRangeDialog.txtEmpty": "Area ini dibutuhkan", + "SSE.Views.CellRangeDialog.txtInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "SSE.Views.CellRangeDialog.txtTitle": "Pilih Rentang Data", + "SSE.Views.CellSettings.strShrink": "Shrink untuk pas", + "SSE.Views.CellSettings.strWrap": "Wrap Teks", + "SSE.Views.CellSettings.textAngle": "Sudut", "SSE.Views.CellSettings.textBackColor": "Warna Latar", - "SSE.Views.CellSettings.textBackground": "Warna Latar", + "SSE.Views.CellSettings.textBackground": "Warna latar", "SSE.Views.CellSettings.textBorderColor": "Warna", "SSE.Views.CellSettings.textBorders": "Gaya Pembatas", - "SSE.Views.CellSettings.textColor": "Isian Warna", + "SSE.Views.CellSettings.textClearRule": "Bersihkan Aturan", + "SSE.Views.CellSettings.textColor": "Warna Isi", + "SSE.Views.CellSettings.textColorScales": "Skala Warna", + "SSE.Views.CellSettings.textCondFormat": "Format bersyarat", + "SSE.Views.CellSettings.textControl": "Kontrol Teks", + "SSE.Views.CellSettings.textDataBars": "Bar Data", "SSE.Views.CellSettings.textDirection": "Arah", - "SSE.Views.CellSettings.textFill": "Isian", + "SSE.Views.CellSettings.textFill": "Isi", "SSE.Views.CellSettings.textForeground": "Warna latar depan", "SSE.Views.CellSettings.textGradient": "Gradien", "SSE.Views.CellSettings.textGradientColor": "Warna", "SSE.Views.CellSettings.textGradientFill": "Isian Gradien", + "SSE.Views.CellSettings.textIndent": "Indent", + "SSE.Views.CellSettings.textItems": "Items", "SSE.Views.CellSettings.textLinear": "Linier", + "SSE.Views.CellSettings.textManageRule": "Kelola Aturan", + "SSE.Views.CellSettings.textNewRule": "Peraturan Baru", "SSE.Views.CellSettings.textNoFill": "Tidak ada Isian", + "SSE.Views.CellSettings.textOrientation": "Arah Teks", "SSE.Views.CellSettings.textPattern": "Pola", "SSE.Views.CellSettings.textPatternFill": "Pola", - "SSE.Views.CellSettings.textPosition": "Jabatan", + "SSE.Views.CellSettings.textPosition": "Posisi", + "SSE.Views.CellSettings.textRadial": "Radial", + "SSE.Views.CellSettings.textSelectBorders": "Pilih pembatas yang ingin Anda ubah dengan menerarpkan model yang telah dipilih di atas", + "SSE.Views.CellSettings.textSelection": "Dari pilihan saat ini", + "SSE.Views.CellSettings.textThisPivot": "Dari pivot ini", + "SSE.Views.CellSettings.textThisSheet": "Dari worksheet ini", + "SSE.Views.CellSettings.textThisTable": "Dari tabel ini", + "SSE.Views.CellSettings.tipAddGradientPoint": "Tambah titik gradien", "SSE.Views.CellSettings.tipAll": "Buat Pembatas Luar dan Semua Garis Dalam", "SSE.Views.CellSettings.tipBottom": "Buat Pembatas Bawah-Luar Saja", + "SSE.Views.CellSettings.tipDiagD": "Pengaturan Pembatas Bawah Diagonal", + "SSE.Views.CellSettings.tipDiagU": "Pengaturan Pembatas Atas Diagonal", "SSE.Views.CellSettings.tipInner": "Buat Garis Dalam Saja", "SSE.Views.CellSettings.tipInnerHor": "Buat Garis Horisontal Dalam Saja", "SSE.Views.CellSettings.tipInnerVert": "Buat Garis Dalam Vertikal Saja", "SSE.Views.CellSettings.tipLeft": "Buat Pembatas Kiri-Luar Saja", "SSE.Views.CellSettings.tipNone": "Tanpa Pembatas", "SSE.Views.CellSettings.tipOuter": "Buat Pembatas Luar Saja", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "Hilangkan titik gradien", "SSE.Views.CellSettings.tipRight": "Buat Pembatas Kanan-Luar Saja", "SSE.Views.CellSettings.tipTop": "Buat Pembatas Atas-Luar Saja", + "SSE.Views.ChartDataDialog.errorInFormula": "Ada kesalahan di formula yang Anda masukkan.", + "SSE.Views.ChartDataDialog.errorInvalidReference": "Referensi tidak valid. Referensi harus ditukukan ke worksheet terbuka.", + "SSE.Views.ChartDataDialog.errorMaxPoints": "Jumlah titik maksimum dalam seri per grafik adalah 4096.", + "SSE.Views.ChartDataDialog.errorMaxRows": "Jumlah seri data maksimum per grafik adalah 255.", + "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "Referensi tidak valid. Refensi untuk judul, nilai, ukuran, atau label data harus berupa sel, baris, atau kolom tunggal.", + "SSE.Views.ChartDataDialog.errorNoValues": "Untuk membuat grafik, setidaknya seri harus memiliki satu nilai.", "SSE.Views.ChartDataDialog.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
    harga pembukaan, harga maksimal, harga minimal, harga penutupan.", "SSE.Views.ChartDataDialog.textAdd": "Tambahkan", + "SSE.Views.ChartDataDialog.textCategory": "Label Sumbu Horizontal (Kategori)", + "SSE.Views.ChartDataDialog.textData": "Rentang data grafik", "SSE.Views.ChartDataDialog.textDelete": "Hapus", + "SSE.Views.ChartDataDialog.textDown": "Bawah", "SSE.Views.ChartDataDialog.textEdit": "Sunting", + "SSE.Views.ChartDataDialog.textInvalidRange": "Rentang sel tidak valid", + "SSE.Views.ChartDataDialog.textSelectData": "Pilih data", + "SSE.Views.ChartDataDialog.textSeries": "Entri Legenda (Seri)", + "SSE.Views.ChartDataDialog.textSwitch": "Tukar Baris/Kolom", + "SSE.Views.ChartDataDialog.textTitle": "Data Grafik", "SSE.Views.ChartDataDialog.textUp": "Naik", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "Ada kesalahan di formula yang Anda masukkan.", + "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "Referensi tidak valid. Referensi harus ditukukan ke worksheet terbuka.", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "Jumlah titik maksimum dalam seri per grafik adalah 4096.", + "SSE.Views.ChartDataRangeDialog.errorMaxRows": "Jumlah seri data maksimum per grafik adalah 255.", + "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "Referensi tidak valid. Refensi untuk judul, nilai, ukuran, atau label data harus berupa sel, baris, atau kolom tunggal.", + "SSE.Views.ChartDataRangeDialog.errorNoValues": "Untuk membuat grafik, setidaknya seri harus memiliki satu nilai.", "SSE.Views.ChartDataRangeDialog.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
    harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "SSE.Views.ChartDataRangeDialog.textInvalidRange": "Rentang sel tidak valid", + "SSE.Views.ChartDataRangeDialog.textSelectData": "Pilih data", + "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Rentang label sumbu", + "SSE.Views.ChartDataRangeDialog.txtChoose": "Pilih rentang", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Nama Seri", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Label Sumbu", + "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Edit Seri", + "SSE.Views.ChartDataRangeDialog.txtValues": "Nilai", + "SSE.Views.ChartDataRangeDialog.txtXValues": "Nilai X", + "SSE.Views.ChartDataRangeDialog.txtYValues": "Nilai Y", + "SSE.Views.ChartSettings.strLineWeight": "Tebal Garis", "SSE.Views.ChartSettings.strSparkColor": "Warna", - "SSE.Views.ChartSettings.textAdvanced": "Show advanced settings", - "SSE.Views.ChartSettings.textBorderSizeErr": "Input yang dimasukkan salah.
    Silakan masukkan input antara 1pt dan 1584pt.", + "SSE.Views.ChartSettings.strTemplate": "Template", + "SSE.Views.ChartSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.ChartSettings.textBorderSizeErr": "Nilai yang dimasukkan tidak tepat.
    Silakan masukkan nilai antara 0 pt dan 1584 pt.", "SSE.Views.ChartSettings.textChangeType": "Ubah tipe", - "SSE.Views.ChartSettings.textChartType": "Change Chart Type", - "SSE.Views.ChartSettings.textEditData": "Edit Data", - "SSE.Views.ChartSettings.textHeight": "Height", - "SSE.Views.ChartSettings.textKeepRatio": "Constant Proportions", + "SSE.Views.ChartSettings.textChartType": "Ubah Tipe Bagan", + "SSE.Views.ChartSettings.textEditData": "Edit Data dan Lokasi", + "SSE.Views.ChartSettings.textFirstPoint": "Titik Pertama", + "SSE.Views.ChartSettings.textHeight": "Tinggi", + "SSE.Views.ChartSettings.textHighPoint": "Titik Tinggi", + "SSE.Views.ChartSettings.textKeepRatio": "Proporsi Konstan", + "SSE.Views.ChartSettings.textLastPoint": "Titik Terakhir", + "SSE.Views.ChartSettings.textLowPoint": "Titik Rendah", + "SSE.Views.ChartSettings.textMarkers": "Markers", + "SSE.Views.ChartSettings.textNegativePoint": "Titik negatif", + "SSE.Views.ChartSettings.textRanges": "Rentang Data", + "SSE.Views.ChartSettings.textSelectData": "Pilih data", "SSE.Views.ChartSettings.textShow": "Tampilkan", - "SSE.Views.ChartSettings.textSize": "Size", - "SSE.Views.ChartSettings.textStyle": "Style", + "SSE.Views.ChartSettings.textSize": "Ukuran", + "SSE.Views.ChartSettings.textStyle": "Model", "SSE.Views.ChartSettings.textType": "Tipe", - "SSE.Views.ChartSettings.textWidth": "Width", - "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", - "SSE.Views.ChartSettingsDlg.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "SSE.Views.ChartSettings.textWidth": "Lebar", + "SSE.Views.ChartSettingsDlg.errorMaxPoints": "KESALAHAN! Jumlah titik maksimum dalam seri per grafik adalah 4096.", + "SSE.Views.ChartSettingsDlg.errorMaxRows": "KESALAHAN! Jumlah seri data maksimum per grafik adalah 255.", + "SSE.Views.ChartSettingsDlg.errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
    harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "SSE.Views.ChartSettingsDlg.textAbsolute": "Jangan pindah atau ubah dengan sel", + "SSE.Views.ChartSettingsDlg.textAlt": "Teks Alternatif", "SSE.Views.ChartSettingsDlg.textAltDescription": "Deskripsi", + "SSE.Views.ChartSettingsDlg.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.", "SSE.Views.ChartSettingsDlg.textAltTitle": "Judul", - "SSE.Views.ChartSettingsDlg.textAuto": "Auto", - "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses", - "SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options", - "SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position", - "SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings", + "SSE.Views.ChartSettingsDlg.textAuto": "Otomatis", + "SSE.Views.ChartSettingsDlg.textAutoEach": "Auto untuk Masing-masing", + "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Sumbu Berpotongan", + "SSE.Views.ChartSettingsDlg.textAxisOptions": "Opsi Sumbu", + "SSE.Views.ChartSettingsDlg.textAxisPos": "Posisi Sumbu", + "SSE.Views.ChartSettingsDlg.textAxisSettings": "Pengaturan Sumbu", "SSE.Views.ChartSettingsDlg.textAxisTitle": "Judul", - "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks", - "SSE.Views.ChartSettingsDlg.textBillions": "Billions", + "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Di Antara Tanda Centang", + "SSE.Views.ChartSettingsDlg.textBillions": "Miliar", "SSE.Views.ChartSettingsDlg.textBottom": "Bawah", - "SSE.Views.ChartSettingsDlg.textCategoryName": "Category Name", - "SSE.Views.ChartSettingsDlg.textCenter": "Center", - "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements &
    Chart Legend", - "SSE.Views.ChartSettingsDlg.textChartTitle": "Chart Title", - "SSE.Views.ChartSettingsDlg.textCross": "Cross", - "SSE.Views.ChartSettingsDlg.textCustom": "Custom", - "SSE.Views.ChartSettingsDlg.textDataColumns": "in columns", - "SSE.Views.ChartSettingsDlg.textDataLabels": "Data Labels", - "SSE.Views.ChartSettingsDlg.textDataRows": "in rows", - "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Display Legend", + "SSE.Views.ChartSettingsDlg.textCategoryName": "Nama Kategori", + "SSE.Views.ChartSettingsDlg.textCenter": "Tengah", + "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elemen Grafik &
    Legenda Grafik", + "SSE.Views.ChartSettingsDlg.textChartTitle": "Judul Grafik", + "SSE.Views.ChartSettingsDlg.textCross": "Silang", + "SSE.Views.ChartSettingsDlg.textCustom": "Khusus", + "SSE.Views.ChartSettingsDlg.textDataColumns": "Di kolom", + "SSE.Views.ChartSettingsDlg.textDataLabels": "Label Data", + "SSE.Views.ChartSettingsDlg.textDataRows": "Di baris", + "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Tampilkan Legenda", + "SSE.Views.ChartSettingsDlg.textEmptyCells": "Sel Tersembunyi dan Kosong", + "SSE.Views.ChartSettingsDlg.textEmptyLine": "Hubungkan titik data dengan garis", "SSE.Views.ChartSettingsDlg.textFit": "Sesuaikan Lebar", "SSE.Views.ChartSettingsDlg.textFixed": "Fixed", - "SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines", - "SSE.Views.ChartSettingsDlg.textHide": "Hide", - "SSE.Views.ChartSettingsDlg.textHigh": "High", - "SSE.Views.ChartSettingsDlg.textHorAxis": "Horizontal Axis", - "SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal", + "SSE.Views.ChartSettingsDlg.textFormat": "Format label", + "SSE.Views.ChartSettingsDlg.textGaps": "Gaps", + "SSE.Views.ChartSettingsDlg.textGridLines": "Garis Grid", + "SSE.Views.ChartSettingsDlg.textGroup": "Kelompokkan Sparkline", + "SSE.Views.ChartSettingsDlg.textHide": "Sembunyikan", + "SSE.Views.ChartSettingsDlg.textHideAxis": "Sembunyikan sumbu", + "SSE.Views.ChartSettingsDlg.textHigh": "Tinggi", + "SSE.Views.ChartSettingsDlg.textHorAxis": "Sumbu Horizontal", + "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Sumbu Sekunder Horizontal", + "SSE.Views.ChartSettingsDlg.textHorizontal": "Horisontal", "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", - "SSE.Views.ChartSettingsDlg.textHundreds": "Hundreds", + "SSE.Views.ChartSettingsDlg.textHundreds": "Ratusan", "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", - "SSE.Views.ChartSettingsDlg.textIn": "In", - "SSE.Views.ChartSettingsDlg.textInnerBottom": "Inner Bottom", - "SSE.Views.ChartSettingsDlg.textInnerTop": "Inner Top", - "SSE.Views.ChartSettingsDlg.textInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.ChartSettingsDlg.textLabelDist": "Axis Label Distance", - "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval between Labels ", - "SSE.Views.ChartSettingsDlg.textLabelOptions": "Label Options", - "SSE.Views.ChartSettingsDlg.textLabelPos": "Label Position", + "SSE.Views.ChartSettingsDlg.textIn": "Dalam", + "SSE.Views.ChartSettingsDlg.textInnerBottom": "Dalam Bawah", + "SSE.Views.ChartSettingsDlg.textInnerTop": "Dalam Atas", + "SSE.Views.ChartSettingsDlg.textInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "SSE.Views.ChartSettingsDlg.textLabelDist": "Jarak Label Sumbu", + "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval antar Label ", + "SSE.Views.ChartSettingsDlg.textLabelOptions": "Opsi Label", + "SSE.Views.ChartSettingsDlg.textLabelPos": "Posisi Label", "SSE.Views.ChartSettingsDlg.textLayout": "Layout", "SSE.Views.ChartSettingsDlg.textLeft": "Kiri", - "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Left Overlay", - "SSE.Views.ChartSettingsDlg.textLegendBottom": "Bottom", - "SSE.Views.ChartSettingsDlg.textLegendLeft": "Left", - "SSE.Views.ChartSettingsDlg.textLegendPos": "Legend", - "SSE.Views.ChartSettingsDlg.textLegendRight": "Right", - "SSE.Views.ChartSettingsDlg.textLegendTop": "Top", - "SSE.Views.ChartSettingsDlg.textLines": "Lines ", - "SSE.Views.ChartSettingsDlg.textLow": "Low", + "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Overlay Kiri", + "SSE.Views.ChartSettingsDlg.textLegendBottom": "Bawah", + "SSE.Views.ChartSettingsDlg.textLegendLeft": "Kiri", + "SSE.Views.ChartSettingsDlg.textLegendPos": "Keterangan", + "SSE.Views.ChartSettingsDlg.textLegendRight": "Kanan", + "SSE.Views.ChartSettingsDlg.textLegendTop": "Atas", + "SSE.Views.ChartSettingsDlg.textLines": "Garis ", + "SSE.Views.ChartSettingsDlg.textLocationRange": "Rentang Lokasi", + "SSE.Views.ChartSettingsDlg.textLow": "Rendah", "SSE.Views.ChartSettingsDlg.textMajor": "Major", - "SSE.Views.ChartSettingsDlg.textMajorMinor": "Major and Minor", - "SSE.Views.ChartSettingsDlg.textMajorType": "Major Type", + "SSE.Views.ChartSettingsDlg.textMajorMinor": "Major dan Minor", + "SSE.Views.ChartSettingsDlg.textMajorType": "Tipe Major", "SSE.Views.ChartSettingsDlg.textManual": "Manual", "SSE.Views.ChartSettingsDlg.textMarkers": "Markers", - "SSE.Views.ChartSettingsDlg.textMarksInterval": "Interval between Marks", - "SSE.Views.ChartSettingsDlg.textMaxValue": "Maximum Value", - "SSE.Views.ChartSettingsDlg.textMillions": "Millions", + "SSE.Views.ChartSettingsDlg.textMarksInterval": "Inverval antar Tanda", + "SSE.Views.ChartSettingsDlg.textMaxValue": "Nilai Maksimum", + "SSE.Views.ChartSettingsDlg.textMillions": "Juta", "SSE.Views.ChartSettingsDlg.textMinor": "Minor", - "SSE.Views.ChartSettingsDlg.textMinorType": "Minor Type", - "SSE.Views.ChartSettingsDlg.textMinValue": "Minimum Value", - "SSE.Views.ChartSettingsDlg.textNextToAxis": "Next to axis", - "SSE.Views.ChartSettingsDlg.textNone": "None", - "SSE.Views.ChartSettingsDlg.textNoOverlay": "No Overlay", - "SSE.Views.ChartSettingsDlg.textOnTickMarks": "On Tick Marks", - "SSE.Views.ChartSettingsDlg.textOut": "Out", - "SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top", + "SSE.Views.ChartSettingsDlg.textMinorType": "Tipe Minor", + "SSE.Views.ChartSettingsDlg.textMinValue": "Nilai Minimum", + "SSE.Views.ChartSettingsDlg.textNextToAxis": "Di sebelah sumbu", + "SSE.Views.ChartSettingsDlg.textNone": "Tidak ada", + "SSE.Views.ChartSettingsDlg.textNoOverlay": "Tanpa Overlay", + "SSE.Views.ChartSettingsDlg.textOneCell": "Pindahkan tapi tidak digabungkan dengan sel", + "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Di Tanda Centang", + "SSE.Views.ChartSettingsDlg.textOut": "Luar", + "SSE.Views.ChartSettingsDlg.textOuterTop": "Terluar Atas", "SSE.Views.ChartSettingsDlg.textOverlay": "Overlay", - "SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order", + "SSE.Views.ChartSettingsDlg.textReverse": "Nilai dengan Urutan Terbalik", + "SSE.Views.ChartSettingsDlg.textReverseOrder": "Urutan Terbalik", "SSE.Views.ChartSettingsDlg.textRight": "Kanan", - "SSE.Views.ChartSettingsDlg.textRightOverlay": "Right Overlay", - "SSE.Views.ChartSettingsDlg.textRotated": "Rotated", - "SSE.Views.ChartSettingsDlg.textSelectData": "Select Data", - "SSE.Views.ChartSettingsDlg.textSeparator": "Data Labels Separator", - "SSE.Views.ChartSettingsDlg.textSeriesName": "Series Name", - "SSE.Views.ChartSettingsDlg.textShow": "Show", - "SSE.Views.ChartSettingsDlg.textShowBorders": "Display chart borders", - "SSE.Views.ChartSettingsDlg.textShowValues": "Display chart values", - "SSE.Views.ChartSettingsDlg.textSmooth": "Smooth", + "SSE.Views.ChartSettingsDlg.textRightOverlay": "Overlay Kanan", + "SSE.Views.ChartSettingsDlg.textRotated": "Dirotasi", + "SSE.Views.ChartSettingsDlg.textSameAll": "Sama untuk semua", + "SSE.Views.ChartSettingsDlg.textSelectData": "Pilih data", + "SSE.Views.ChartSettingsDlg.textSeparator": "Separator Label Data", + "SSE.Views.ChartSettingsDlg.textSeriesName": "Nama Seri", + "SSE.Views.ChartSettingsDlg.textShow": "Tampilkan", + "SSE.Views.ChartSettingsDlg.textShowBorders": "Tampilkan batas grafik", + "SSE.Views.ChartSettingsDlg.textShowData": "Tampilkan data di baris dan kolom tersembunyi", + "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Tampilkan sel kosong sebagai", + "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Tampilkan Sumbu", + "SSE.Views.ChartSettingsDlg.textShowValues": "Tampilkan nilai grafik", + "SSE.Views.ChartSettingsDlg.textSingle": "Satu Sparkline", + "SSE.Views.ChartSettingsDlg.textSmooth": "Halus", + "SSE.Views.ChartSettingsDlg.textSnap": "Snapping Sel", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "Rentang Sparkline", "SSE.Views.ChartSettingsDlg.textStraight": "Straight", - "SSE.Views.ChartSettingsDlg.textStyle": "Style", + "SSE.Views.ChartSettingsDlg.textStyle": "Model", "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", - "SSE.Views.ChartSettingsDlg.textThousands": "Thousands", - "SSE.Views.ChartSettingsDlg.textTickOptions": "Tick Options", - "SSE.Views.ChartSettingsDlg.textTitle": "Chart - Advanced Settings", + "SSE.Views.ChartSettingsDlg.textThousands": "Ribu", + "SSE.Views.ChartSettingsDlg.textTickOptions": "Opsi Tick", + "SSE.Views.ChartSettingsDlg.textTitle": "Bagan - Pengaturan Lanjut", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Pengaturan Lanjut", "SSE.Views.ChartSettingsDlg.textTop": "Atas", - "SSE.Views.ChartSettingsDlg.textTrillions": "Trillions", - "SSE.Views.ChartSettingsDlg.textType": "Type", - "SSE.Views.ChartSettingsDlg.textTypeData": "Type & Data", - "SSE.Views.ChartSettingsDlg.textUnits": "Display Units", - "SSE.Views.ChartSettingsDlg.textValue": "Value", - "SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical Axis", - "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Axis Title", - "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title", - "SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required", + "SSE.Views.ChartSettingsDlg.textTrillions": "Trilyun", + "SSE.Views.ChartSettingsDlg.textTwoCell": "Pindahkan dan gabungkan dengan sel", + "SSE.Views.ChartSettingsDlg.textType": "Tipe", + "SSE.Views.ChartSettingsDlg.textTypeData": "Tipe & Data", + "SSE.Views.ChartSettingsDlg.textUnits": "Unit Tampilan", + "SSE.Views.ChartSettingsDlg.textValue": "Nilai", + "SSE.Views.ChartSettingsDlg.textVertAxis": "Sumbu Vertikal", + "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Sumbu Sekunder Vertikal", + "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Nama Sumbu X", + "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Nama Sumbu Y", + "SSE.Views.ChartSettingsDlg.textZero": "Zero", + "SSE.Views.ChartSettingsDlg.txtEmpty": "Area ini dibutuhkan", + "SSE.Views.ChartTypeDialog.errorComboSeries": "Untuk membuat grafik kombinasi, pilih setidaknya dua seri data.", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "Tipe grafik yang dipilih memerlukan sumbu sekunder yang digunakan di grafik saat ini. Pilih tipe grafik yang lain.", + "SSE.Views.ChartTypeDialog.textSecondary": "Sumbu Sekunder", + "SSE.Views.ChartTypeDialog.textSeries": "Seri", "SSE.Views.ChartTypeDialog.textStyle": "Model", + "SSE.Views.ChartTypeDialog.textTitle": "Tipe Grafik", "SSE.Views.ChartTypeDialog.textType": "Tipe", - "SSE.Views.CreatePivotDialog.txtEmpty": "Kolom ini harus diisi", - "SSE.Views.CreateSparklineDialog.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.CreatePivotDialog.textDataRange": "Rentang data sumber", + "SSE.Views.CreatePivotDialog.textDestination": "Pilih lokasi untuk tabel", + "SSE.Views.CreatePivotDialog.textExist": "Worksheet saat ini", + "SSE.Views.CreatePivotDialog.textInvalidRange": "Rentang sel tidak valid", + "SSE.Views.CreatePivotDialog.textNew": "Worksheet baru", + "SSE.Views.CreatePivotDialog.textSelectData": "Pilih data", + "SSE.Views.CreatePivotDialog.textTitle": "Buat Tabel Pivot", + "SSE.Views.CreatePivotDialog.txtEmpty": "Area ini dibutuhkan", + "SSE.Views.CreateSparklineDialog.textDataRange": "Rentang data sumber", + "SSE.Views.CreateSparklineDialog.textDestination": "Pilih, lokasi penempetan sparklines", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Rentang sel tidak valid", + "SSE.Views.CreateSparklineDialog.textSelectData": "Pilih data", + "SSE.Views.CreateSparklineDialog.textTitle": "Buat Sparklines", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Area ini dibutuhkan", "SSE.Views.DataTab.capBtnGroup": "Grup", + "SSE.Views.DataTab.capBtnTextCustomSort": "Atur sortasi", + "SSE.Views.DataTab.capBtnTextDataValidation": "Validasi data", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Hapus duplikat", + "SSE.Views.DataTab.capBtnTextToCol": "Teks ke Kolom", "SSE.Views.DataTab.capBtnUngroup": "Pisahkan dari grup", + "SSE.Views.DataTab.capDataFromText": "Dapatkan data", + "SSE.Views.DataTab.mniFromFile": "Dari TXT/CSV lokal", + "SSE.Views.DataTab.mniFromUrl": "Dari alamat web TXT/CSV", + "SSE.Views.DataTab.textBelow": "Ringkasan baris di bawah detail.", + "SSE.Views.DataTab.textClear": "Bersihkan Outline", + "SSE.Views.DataTab.textColumns": "Pisahkan grup kolom", + "SSE.Views.DataTab.textGroupColumns": "Kelompokkan kolom", + "SSE.Views.DataTab.textGroupRows": "Kelompokkan baris", + "SSE.Views.DataTab.textRightOf": "Kolom ringkasan di sebelah kanan detail", + "SSE.Views.DataTab.textRows": "Pisahkan grup baris", + "SSE.Views.DataTab.tipCustomSort": "Atur sortasi", + "SSE.Views.DataTab.tipDataFromText": "Dapatkan data dari file Text/CSV", + "SSE.Views.DataTab.tipDataValidation": "Validasi data", + "SSE.Views.DataTab.tipGroup": "Kelompokkan rentang dari sel", + "SSE.Views.DataTab.tipRemDuplicates": "Hapus baris duplikat dari sheet", + "SSE.Views.DataTab.tipToColumns": "Pisahkan teks sel menjadi kolom", + "SSE.Views.DataTab.tipUngroup": "Pisahkan grup rentang sel", + "SSE.Views.DataValidationDialog.errorFormula": "Nilai saat ini mengevaluasi error. Apakah Anda ingin melanjutkan?", + "SSE.Views.DataValidationDialog.errorInvalid": "Nilai yang Anda masukkan di area \"{0}\" tidak valid.", + "SSE.Views.DataValidationDialog.errorInvalidDate": "Tanggal yang Anda masukkan ke area \"{0}\" tidak valid.", + "SSE.Views.DataValidationDialog.errorInvalidList": "Sumber daftar harus berupa daftar yang dibatasi, atau referensi ke satu baris atau kolom.", + "SSE.Views.DataValidationDialog.errorInvalidTime": "Waktu yang Anda masukkan ke area \"{0}\" tidak valid.", + "SSE.Views.DataValidationDialog.errorMinGreaterMax": "Area \"{1}\" harus lebih besar atau sama dengan area \"{0}\".", + "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "Anda harus memasukkan kedua nilai di area \"{0}\" dan area \"{1}\".", + "SSE.Views.DataValidationDialog.errorMustEnterValue": "Anda harus memasukkan nilai di area \"{0}\".", + "SSE.Views.DataValidationDialog.errorNamedRange": "Nama rentang yang Anda pilih tidak bisa ditemukan.", + "SSE.Views.DataValidationDialog.errorNegativeTextLength": "Nilai negatif tidak bisa digunakan pada kondisi \"{0}\".", + "SSE.Views.DataValidationDialog.errorNotNumeric": "Area \"{0}\" harus bernilai numerik, ekspresi numerik, atau mereferensikan ke sel yang memiliki nilai numerik.", + "SSE.Views.DataValidationDialog.strError": "Peringatan Kesalahan", + "SSE.Views.DataValidationDialog.strInput": "Masukkan pesan", "SSE.Views.DataValidationDialog.strSettings": "Pengaturan", "SSE.Views.DataValidationDialog.textAlert": "Waspada", "SSE.Views.DataValidationDialog.textAllow": "Ijinkan", + "SSE.Views.DataValidationDialog.textApply": "Terapkan perubahan ini ke semua sel lain dengan pengaturan yang sama", + "SSE.Views.DataValidationDialog.textCellSelected": "Saat sel dipilih, tampilkan pesan input ini", + "SSE.Views.DataValidationDialog.textCompare": "Bandingkan dengan", "SSE.Views.DataValidationDialog.textData": "Data", "SSE.Views.DataValidationDialog.textEndDate": "Tanggal Berakhir", + "SSE.Views.DataValidationDialog.textEndTime": "Waktu Akhir", + "SSE.Views.DataValidationDialog.textError": "Pesan error", + "SSE.Views.DataValidationDialog.textFormula": "Formula", + "SSE.Views.DataValidationDialog.textIgnore": "Abaikan kosong", + "SSE.Views.DataValidationDialog.textInput": "Masukkan pesan", "SSE.Views.DataValidationDialog.textMax": "Maksimal", "SSE.Views.DataValidationDialog.textMessage": "Pesan", + "SSE.Views.DataValidationDialog.textMin": "Minimum", + "SSE.Views.DataValidationDialog.textSelectData": "Pilih data", + "SSE.Views.DataValidationDialog.textShowDropDown": "Tampilkan list drop-down di sel", + "SSE.Views.DataValidationDialog.textShowError": "Tampilkan peringatan eror setelah data tidak valid dimasukkan", + "SSE.Views.DataValidationDialog.textShowInput": "Tampilkan pesan yang masuk ketika sel dipilih", "SSE.Views.DataValidationDialog.textSource": "Sumber", "SSE.Views.DataValidationDialog.textStartDate": "Tanggal Mulai", + "SSE.Views.DataValidationDialog.textStartTime": "Waktu mulai", + "SSE.Views.DataValidationDialog.textStop": "Stop", "SSE.Views.DataValidationDialog.textStyle": "Model", "SSE.Views.DataValidationDialog.textTitle": "Judul", + "SSE.Views.DataValidationDialog.textUserEnters": "Saat pengguna memasukkan data yang tidak valid, tunjukkan peringatan kesalahan ini", + "SSE.Views.DataValidationDialog.txtAny": "Semua Nilai", + "SSE.Views.DataValidationDialog.txtBetween": "diantara", "SSE.Views.DataValidationDialog.txtDate": "Tanggal", + "SSE.Views.DataValidationDialog.txtDecimal": "Desimal", + "SSE.Views.DataValidationDialog.txtElTime": "Waktu berlalu", "SSE.Views.DataValidationDialog.txtEndDate": "Tanggal Berakhir", + "SSE.Views.DataValidationDialog.txtEndTime": "Waktu Akhir", + "SSE.Views.DataValidationDialog.txtEqual": "sama dengan", "SSE.Views.DataValidationDialog.txtGreaterThan": "Lebih Dari", "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "Lebih Dari atau Sama Dengan", + "SSE.Views.DataValidationDialog.txtLength": "Panjang", "SSE.Views.DataValidationDialog.txtLessThan": "Kurang Dari", "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "Kurang Dari atau Sama Dengan", + "SSE.Views.DataValidationDialog.txtList": "List", + "SSE.Views.DataValidationDialog.txtNotBetween": "tidak diantara", + "SSE.Views.DataValidationDialog.txtNotEqual": "Tidak sama dengan", "SSE.Views.DataValidationDialog.txtOther": "Lainnya", "SSE.Views.DataValidationDialog.txtStartDate": "Tanggal Mulai", + "SSE.Views.DataValidationDialog.txtStartTime": "Waktu mulai", + "SSE.Views.DataValidationDialog.txtTextLength": "Panjang teks", "SSE.Views.DataValidationDialog.txtTime": "Waktu", - "SSE.Views.DigitalFilterDialog.capAnd": "And", - "SSE.Views.DigitalFilterDialog.capCondition1": "equals", - "SSE.Views.DigitalFilterDialog.capCondition10": "does not end with", - "SSE.Views.DigitalFilterDialog.capCondition11": "contains", - "SSE.Views.DigitalFilterDialog.capCondition12": "does not contain", - "SSE.Views.DigitalFilterDialog.capCondition2": "does not equal", - "SSE.Views.DigitalFilterDialog.capCondition3": "is greater than", - "SSE.Views.DigitalFilterDialog.capCondition4": "is greater than or equal to", - "SSE.Views.DigitalFilterDialog.capCondition5": "is less than", - "SSE.Views.DigitalFilterDialog.capCondition6": "is less than or equal to", - "SSE.Views.DigitalFilterDialog.capCondition7": "begins with", - "SSE.Views.DigitalFilterDialog.capCondition8": "does not begin with", - "SSE.Views.DigitalFilterDialog.capCondition9": "ends with", - "SSE.Views.DigitalFilterDialog.capOr": "Or", - "SSE.Views.DigitalFilterDialog.textNoFilter": "no filter", - "SSE.Views.DigitalFilterDialog.textShowRows": "Show rows where", - "SSE.Views.DigitalFilterDialog.textUse1": "Use ? to present any single character", - "SSE.Views.DigitalFilterDialog.textUse2": "Use * to present any series of character", - "SSE.Views.DigitalFilterDialog.txtTitle": "Custom Filter", + "SSE.Views.DataValidationDialog.txtWhole": "Bilangan bulat", + "SSE.Views.DigitalFilterDialog.capAnd": "Dan", + "SSE.Views.DigitalFilterDialog.capCondition1": "sama dengan", + "SSE.Views.DigitalFilterDialog.capCondition10": "tidak diakhiri dengan", + "SSE.Views.DigitalFilterDialog.capCondition11": "berisi", + "SSE.Views.DigitalFilterDialog.capCondition12": "tidak memiliki", + "SSE.Views.DigitalFilterDialog.capCondition2": "Tidak sama dengan", + "SSE.Views.DigitalFilterDialog.capCondition3": "lebih besar dari", + "SSE.Views.DigitalFilterDialog.capCondition4": "lebih besar dari atau sama dengan", + "SSE.Views.DigitalFilterDialog.capCondition5": "lebih kecil dari", + "SSE.Views.DigitalFilterDialog.capCondition6": "lebih kecil dari atau sama dengan", + "SSE.Views.DigitalFilterDialog.capCondition7": "dimulai dari", + "SSE.Views.DigitalFilterDialog.capCondition8": "tidak diawali dari", + "SSE.Views.DigitalFilterDialog.capCondition9": "berakhir dengan", + "SSE.Views.DigitalFilterDialog.capOr": "Atau", + "SSE.Views.DigitalFilterDialog.textNoFilter": "tanpa filter", + "SSE.Views.DigitalFilterDialog.textShowRows": "Tampilkan baris ketika", + "SSE.Views.DigitalFilterDialog.textUse1": "Gunakan ? untuk menampilkan semua karakter tunggal", + "SSE.Views.DigitalFilterDialog.textUse2": "Gunakan * untuk menampilkan semua rangkaian karakter", + "SSE.Views.DigitalFilterDialog.txtTitle": "Atur Filter", "SSE.Views.DocumentHolder.advancedImgText": "Pengaturan Lanjut untuk Gambar", - "SSE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings", - "SSE.Views.DocumentHolder.bottomCellText": "Align Bottom", - "SSE.Views.DocumentHolder.centerCellText": "Align Center", - "SSE.Views.DocumentHolder.chartText": "Chart Advanced Settings", + "SSE.Views.DocumentHolder.advancedShapeText": "Pengaturan Lanjut untuk Bentuk", + "SSE.Views.DocumentHolder.advancedSlicerText": "Pengaturan Lanjut Slicer", + "SSE.Views.DocumentHolder.bottomCellText": "Rata Bawah", + "SSE.Views.DocumentHolder.bulletsText": "Butir & Penomoran", + "SSE.Views.DocumentHolder.centerCellText": "Rata di Tengah", + "SSE.Views.DocumentHolder.chartText": "Pengaturan Lanjut untuk Bagan", "SSE.Views.DocumentHolder.deleteColumnText": "Kolom", "SSE.Views.DocumentHolder.deleteRowText": "Baris", "SSE.Views.DocumentHolder.deleteTableText": "Tabel", - "SSE.Views.DocumentHolder.direct270Text": "Rotate at 270°", - "SSE.Views.DocumentHolder.direct90Text": "Rotate at 90°", - "SSE.Views.DocumentHolder.directHText": "Horizontal", - "SSE.Views.DocumentHolder.directionText": "Text Direction", + "SSE.Views.DocumentHolder.direct270Text": "Rotasi Teks Keatas", + "SSE.Views.DocumentHolder.direct90Text": "Rotasi Teks Kebawah", + "SSE.Views.DocumentHolder.directHText": "Horisontal", + "SSE.Views.DocumentHolder.directionText": "Arah Teks", "SSE.Views.DocumentHolder.editChartText": "Edit Data", "SSE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", "SSE.Views.DocumentHolder.insertColumnLeftText": "Kolom Kiri", @@ -822,855 +1868,1732 @@ "SSE.Views.DocumentHolder.insertRowAboveText": "Baris di Atas", "SSE.Views.DocumentHolder.insertRowBelowText": "Baris di Bawah", "SSE.Views.DocumentHolder.originalSizeText": "Ukuran Sebenarnya", - "SSE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", + "SSE.Views.DocumentHolder.removeHyperlinkText": "Hapus Hyperlink", + "SSE.Views.DocumentHolder.selectColumnText": "Seluruh Kolom", + "SSE.Views.DocumentHolder.selectDataText": "Data Kolom", "SSE.Views.DocumentHolder.selectRowText": "Baris", "SSE.Views.DocumentHolder.selectTableText": "Tabel", + "SSE.Views.DocumentHolder.strDelete": "Hilangkan Tandatangan", + "SSE.Views.DocumentHolder.strDetails": "Detail Tanda Tangan", + "SSE.Views.DocumentHolder.strSetup": "Setup Tanda Tangan", + "SSE.Views.DocumentHolder.strSign": "Tandatangan", "SSE.Views.DocumentHolder.textAlign": "Ratakan", "SSE.Views.DocumentHolder.textArrange": "Susun", - "SSE.Views.DocumentHolder.textArrangeBack": "Send to Background", - "SSE.Views.DocumentHolder.textArrangeBackward": "Move Backward", - "SSE.Views.DocumentHolder.textArrangeForward": "Move Forward", - "SSE.Views.DocumentHolder.textArrangeFront": "Bring to Foreground", + "SSE.Views.DocumentHolder.textArrangeBack": "Jalankan di Background", + "SSE.Views.DocumentHolder.textArrangeBackward": "Mundurkan", + "SSE.Views.DocumentHolder.textArrangeForward": "Majukan", + "SSE.Views.DocumentHolder.textArrangeFront": "Tampilkan di Halaman Muka", + "SSE.Views.DocumentHolder.textAverage": "Rata-rata", "SSE.Views.DocumentHolder.textBullets": "Butir", - "SSE.Views.DocumentHolder.textCropFill": "Isian", + "SSE.Views.DocumentHolder.textCount": "Dihitung", + "SSE.Views.DocumentHolder.textCrop": "Isian", + "SSE.Views.DocumentHolder.textCropFill": "Isi", + "SSE.Views.DocumentHolder.textCropFit": "Fit", + "SSE.Views.DocumentHolder.textEditPoints": "Edit Titik", + "SSE.Views.DocumentHolder.textEntriesList": "Pilih dari daftar drop-down", + "SSE.Views.DocumentHolder.textFlipH": "Flip Horizontal", + "SSE.Views.DocumentHolder.textFlipV": "Flip Vertikal", "SSE.Views.DocumentHolder.textFreezePanes": "Freeze Panes", "SSE.Views.DocumentHolder.textFromFile": "Dari File", + "SSE.Views.DocumentHolder.textFromStorage": "Dari Penyimpanan", "SSE.Views.DocumentHolder.textFromUrl": "Dari URL", - "SSE.Views.DocumentHolder.textNone": "tidak ada", + "SSE.Views.DocumentHolder.textListSettings": "List Pengaturan", + "SSE.Views.DocumentHolder.textMax": "Maks", + "SSE.Views.DocumentHolder.textMin": "Min", + "SSE.Views.DocumentHolder.textMore": "Lebih banyak fungsi", + "SSE.Views.DocumentHolder.textMoreFormats": "Lebih banyak format", + "SSE.Views.DocumentHolder.textNone": "Tidak ada", "SSE.Views.DocumentHolder.textNumbering": "Penomoran", "SSE.Views.DocumentHolder.textReplace": "Ganti Gambar", + "SSE.Views.DocumentHolder.textRotate": "Rotasi", + "SSE.Views.DocumentHolder.textRotate270": "Rotasi 90° Berlawanan Jarum Jam", + "SSE.Views.DocumentHolder.textRotate90": "Rotasi 90° Searah Jarum Jam", "SSE.Views.DocumentHolder.textShapeAlignBottom": "Rata Bawah", "SSE.Views.DocumentHolder.textShapeAlignCenter": "Rata Tengah", "SSE.Views.DocumentHolder.textShapeAlignLeft": "Rata Kiri", "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Rata di Tengah", "SSE.Views.DocumentHolder.textShapeAlignRight": "Rata Kanan", "SSE.Views.DocumentHolder.textShapeAlignTop": "Rata Atas", + "SSE.Views.DocumentHolder.textStdDev": "StdDev", "SSE.Views.DocumentHolder.textSum": "Jumlah", "SSE.Views.DocumentHolder.textUndo": "Batalkan", - "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", - "SSE.Views.DocumentHolder.topCellText": "Align Top", - "SSE.Views.DocumentHolder.txtAddComment": "Add Comment", - "SSE.Views.DocumentHolder.txtAddNamedRange": "Define Name", - "SSE.Views.DocumentHolder.txtArrange": "Arrange", - "SSE.Views.DocumentHolder.txtAscending": "Ascending", - "SSE.Views.DocumentHolder.txtClear": "Clear", - "SSE.Views.DocumentHolder.txtClearAll": "All", - "SSE.Views.DocumentHolder.txtClearComments": "Comments", + "SSE.Views.DocumentHolder.textUnFreezePanes": "Batal Bekukan Panel", + "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Butir panah", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Butir tanda centang", + "SSE.Views.DocumentHolder.tipMarkersDash": "Titik putus-putus", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Butir belah ketupat isi", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Butir lingkaran isi", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Butir persegi isi", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Butir bundar hollow", + "SSE.Views.DocumentHolder.tipMarkersStar": "Butir bintang", + "SSE.Views.DocumentHolder.topCellText": "Rata Atas", + "SSE.Views.DocumentHolder.txtAccounting": "Akutansi", + "SSE.Views.DocumentHolder.txtAddComment": "Tambahkan Komentar", + "SSE.Views.DocumentHolder.txtAddNamedRange": "Tentukan Nama", + "SSE.Views.DocumentHolder.txtArrange": "Susun", + "SSE.Views.DocumentHolder.txtAscending": "Sortasi Naik", + "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Auto Fit Lebar Kolom", + "SSE.Views.DocumentHolder.txtAutoRowHeight": "Auto Fit Tinggi Baris", + "SSE.Views.DocumentHolder.txtClear": "Hapus", + "SSE.Views.DocumentHolder.txtClearAll": "Semua", + "SSE.Views.DocumentHolder.txtClearComments": "Komentar", "SSE.Views.DocumentHolder.txtClearFormat": "Format", - "SSE.Views.DocumentHolder.txtClearHyper": "Hyperlinks", - "SSE.Views.DocumentHolder.txtClearText": "Text", - "SSE.Views.DocumentHolder.txtColumn": "Entire column", - "SSE.Views.DocumentHolder.txtColumnWidth": "Column Width", - "SSE.Views.DocumentHolder.txtCopy": "Copy", + "SSE.Views.DocumentHolder.txtClearHyper": "Hyperlink", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Bersihkan Grup Sparkline yang Dipilih", + "SSE.Views.DocumentHolder.txtClearSparklines": "Bersihkan Sparklines yang Dipilih", + "SSE.Views.DocumentHolder.txtClearText": "Teks", + "SSE.Views.DocumentHolder.txtColumn": "Seluruh kolom", + "SSE.Views.DocumentHolder.txtColumnWidth": "Atur Lebar Kolom", + "SSE.Views.DocumentHolder.txtCondFormat": "Format bersyarat", + "SSE.Views.DocumentHolder.txtCopy": "Salin", "SSE.Views.DocumentHolder.txtCurrency": "Mata uang", - "SSE.Views.DocumentHolder.txtCut": "Cut", + "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Atur Lebar Kolom", + "SSE.Views.DocumentHolder.txtCustomRowHeight": "Atur Tinggi Baris", + "SSE.Views.DocumentHolder.txtCustomSort": "Atur sortasi", + "SSE.Views.DocumentHolder.txtCut": "Potong", "SSE.Views.DocumentHolder.txtDate": "Tanggal", - "SSE.Views.DocumentHolder.txtDelete": "Delete", - "SSE.Views.DocumentHolder.txtDescending": "Descending", - "SSE.Views.DocumentHolder.txtEditComment": "Edit Comment", - "SSE.Views.DocumentHolder.txtFormula": "Insert Function", - "SSE.Views.DocumentHolder.txtGroup": "Group", - "SSE.Views.DocumentHolder.txtHide": "Hide", - "SSE.Views.DocumentHolder.txtInsert": "Insert", + "SSE.Views.DocumentHolder.txtDelete": "Hapus", + "SSE.Views.DocumentHolder.txtDescending": "Sortasi Turun", + "SSE.Views.DocumentHolder.txtDistribHor": "Distribusikan Horizontal", + "SSE.Views.DocumentHolder.txtDistribVert": "Distribusikan Vertikal", + "SSE.Views.DocumentHolder.txtEditComment": "Edit Komentar", + "SSE.Views.DocumentHolder.txtFilter": "Filter", + "SSE.Views.DocumentHolder.txtFilterCellColor": "Filter dari warna sel", + "SSE.Views.DocumentHolder.txtFilterFontColor": "Filter dari warna font", + "SSE.Views.DocumentHolder.txtFilterValue": "Filter menurut nilai sel yang dipilih", + "SSE.Views.DocumentHolder.txtFormula": "Sisipkan Fungsi", + "SSE.Views.DocumentHolder.txtFraction": "Pecahan", + "SSE.Views.DocumentHolder.txtGeneral": "Umum", + "SSE.Views.DocumentHolder.txtGroup": "Grup", + "SSE.Views.DocumentHolder.txtHide": "Sembunyikan", + "SSE.Views.DocumentHolder.txtInsert": "Sisipkan", "SSE.Views.DocumentHolder.txtInsHyperlink": "Hyperlink", "SSE.Views.DocumentHolder.txtNumber": "Angka", - "SSE.Views.DocumentHolder.txtPaste": "Paste", + "SSE.Views.DocumentHolder.txtNumFormat": "Format Nomor", + "SSE.Views.DocumentHolder.txtPaste": "Tempel", "SSE.Views.DocumentHolder.txtPercentage": "Persentase", - "SSE.Views.DocumentHolder.txtRow": "Entire row", - "SSE.Views.DocumentHolder.txtRowHeight": "Row Height", + "SSE.Views.DocumentHolder.txtReapply": "Terapkan Ulang", + "SSE.Views.DocumentHolder.txtRow": "Seluruh baris", + "SSE.Views.DocumentHolder.txtRowHeight": "Atur Tinggi Baris", + "SSE.Views.DocumentHolder.txtScientific": "Saintifik", "SSE.Views.DocumentHolder.txtSelect": "Pilih", - "SSE.Views.DocumentHolder.txtShiftDown": "Shift cells down", - "SSE.Views.DocumentHolder.txtShiftLeft": "Shift cells left", - "SSE.Views.DocumentHolder.txtShiftRight": "Shift cells right", - "SSE.Views.DocumentHolder.txtShiftUp": "Shift cells up", - "SSE.Views.DocumentHolder.txtShow": "Show", - "SSE.Views.DocumentHolder.txtSort": "Sort", + "SSE.Views.DocumentHolder.txtShiftDown": "Geser Sel ke Bawah", + "SSE.Views.DocumentHolder.txtShiftLeft": "Pindahkan sel ke kiri", + "SSE.Views.DocumentHolder.txtShiftRight": "Geser sel ke kanan", + "SSE.Views.DocumentHolder.txtShiftUp": "Geser sel ke atas", + "SSE.Views.DocumentHolder.txtShow": "Tampilkan", + "SSE.Views.DocumentHolder.txtShowComment": "Tampilkan Komentar", + "SSE.Views.DocumentHolder.txtSort": "Sortasi", + "SSE.Views.DocumentHolder.txtSortCellColor": "Pilih Warna Sel di atas", + "SSE.Views.DocumentHolder.txtSortFontColor": "Pilih Warna font di atas", + "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", "SSE.Views.DocumentHolder.txtText": "Teks", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Text Advanced Settings", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Pengaturan Lanjut untuk Paragraf", "SSE.Views.DocumentHolder.txtTime": "Waktu", - "SSE.Views.DocumentHolder.txtUngroup": "Ungroup", - "SSE.Views.DocumentHolder.txtWidth": "Width", - "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", + "SSE.Views.DocumentHolder.txtUngroup": "Pisahkan dari grup", + "SSE.Views.DocumentHolder.txtWidth": "Lebar", + "SSE.Views.DocumentHolder.vertAlignText": "Perataan Vertikal", + "SSE.Views.FieldSettingsDialog.strLayout": "Layout", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals", + "SSE.Views.FieldSettingsDialog.textReport": "Form Laporan", + "SSE.Views.FieldSettingsDialog.textTitle": "Pengaturan Area", + "SSE.Views.FieldSettingsDialog.txtAverage": "Rata-rata", + "SSE.Views.FieldSettingsDialog.txtBlank": "Sisipkan baris kosong setelah masing-masing item", + "SSE.Views.FieldSettingsDialog.txtBottom": "Tampilkan di bawah grup", + "SSE.Views.FieldSettingsDialog.txtCompact": "Kompak", + "SSE.Views.FieldSettingsDialog.txtCount": "Dihitung", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Hitung Angka", + "SSE.Views.FieldSettingsDialog.txtCustomName": "Atur nama", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Tampilkan item tanpa data", + "SSE.Views.FieldSettingsDialog.txtMax": "Maks", + "SSE.Views.FieldSettingsDialog.txtMin": "Min", + "SSE.Views.FieldSettingsDialog.txtOutline": "Outline", "SSE.Views.FieldSettingsDialog.txtProduct": "Produk", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Ulangi label item pada setiap baris", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Tampilkan subtotal", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Nama sumber:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp", "SSE.Views.FieldSettingsDialog.txtSum": "Jumlah", - "SSE.Views.FileMenu.btnBackCaption": "Go to Documents", - "SSE.Views.FileMenu.btnCreateNewCaption": "Create New", - "SSE.Views.FileMenu.btnDownloadCaption": "Download as...", - "SSE.Views.FileMenu.btnHelpCaption": "Help...", - "SSE.Views.FileMenu.btnHistoryCaption": "Riwayat versi", - "SSE.Views.FileMenu.btnInfoCaption": "Spreadsheet Info...", - "SSE.Views.FileMenu.btnPrintCaption": "Print", - "SSE.Views.FileMenu.btnRecentFilesCaption": "Open Recent...", - "SSE.Views.FileMenu.btnReturnCaption": "Back to Spreadsheet", - "SSE.Views.FileMenu.btnRightsCaption": "Access Rights...", - "SSE.Views.FileMenu.btnSaveAsCaption": "Save as", - "SSE.Views.FileMenu.btnSaveCaption": "Save", - "SSE.Views.FileMenu.btnSettingsCaption": "Advanced Settings...", + "SSE.Views.FieldSettingsDialog.txtSummarize": "Fungsi untuk Subtotal", + "SSE.Views.FieldSettingsDialog.txtTabular": "Tabular", + "SSE.Views.FieldSettingsDialog.txtTop": "Tampilkan di atas grup", + "SSE.Views.FieldSettingsDialog.txtVar": "Var", + "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", + "SSE.Views.FileMenu.btnBackCaption": "Buka Dokumen", + "SSE.Views.FileMenu.btnCloseMenuCaption": "Tutup Menu", + "SSE.Views.FileMenu.btnCreateNewCaption": "Buat Baru", + "SSE.Views.FileMenu.btnDownloadCaption": "Unduh sebagai...", + "SSE.Views.FileMenu.btnExitCaption": "Tutup", + "SSE.Views.FileMenu.btnFileOpenCaption": "Buka...", + "SSE.Views.FileMenu.btnHelpCaption": "Bantuan...", + "SSE.Views.FileMenu.btnHistoryCaption": "Riwayat Versi", + "SSE.Views.FileMenu.btnInfoCaption": "Info Spreadsheet...", + "SSE.Views.FileMenu.btnPrintCaption": "Cetak", + "SSE.Views.FileMenu.btnProtectCaption": "Proteksi", + "SSE.Views.FileMenu.btnRecentFilesCaption": "Membuka yang Terbaru...", + "SSE.Views.FileMenu.btnRenameCaption": "Ganti nama...", + "SSE.Views.FileMenu.btnReturnCaption": "Kembali ke Spreadsheet", + "SSE.Views.FileMenu.btnRightsCaption": "Hak Akses...", + "SSE.Views.FileMenu.btnSaveAsCaption": "Simpan sebagai", + "SSE.Views.FileMenu.btnSaveCaption": "Simpan", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Simpan Salinan sebagai...", + "SSE.Views.FileMenu.btnSettingsCaption": "Pengaturan Lanjut...", "SSE.Views.FileMenu.btnToEditCaption": "Edit Spreadsheet", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Spreadsheet Kosong", "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Buat Baru", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Terapkan", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Tambahkan penulis", - "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author", - "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Tambah teks", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplikasi", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Penyusun", + "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Ubah hak akses", "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Terakhir Dimodifikasi Oleh", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Terakhir Dimodifikasi", "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", - "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", - "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", + "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", + "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak", "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", - "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Spreadsheet Title", + "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul", "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", - "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", - "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Apply", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Turn on autosave", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing mode", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Other users will see your changes at once", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Fast", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Font Hinting", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Turn on display of the comments", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ", + "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ubah hak akses", + "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Orang yang memiliki hak", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Terapkan", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Mode Edit Bersama", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separator desimal", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Cepat", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Contoh Huruf", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Tambah versi ke penyimpanan setelah klik menu Siman atau Ctrl+S", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Bahasa Formula", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Contoh: SUM; MIN; MAX; COUNT", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Pengaturan Macros", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cut, copy, dan paste", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Tampilkan tombol Opsi Paste ketika konten sedang dipaste", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Pengaturan Regional", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Contoh: ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unit of Measurement", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Default Zoom Value", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Every 10 Minutes", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Every 30 Minutes", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Every 5 Minutes", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "Every Hour", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Autosave", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Disabled", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Every Minute", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Deutsch", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Commenting Display", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "as OS X", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Terapkan", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema interface", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separator ribuan", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Satuan Ukuran", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Gunakan separator berdasarkan pengaturan regional", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Skala Pembesaran Standar", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Tiap 10 Menit", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Tiap 30 Menit", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Tiap 5 Menit", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "Tiap Jam", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Recover otmoatis", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Simpan otomatis", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Nonaktif", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Menyimpan versi intermedier", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Tiap Menit", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Referensi Style", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Belarusia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgaria", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalan", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Mode cache default", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Sentimeter", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Ceko", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Denmark", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Jerman", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Yunani", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Inggris", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spanyol", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finlandia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Prancis", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hungaria", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonesia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Inci", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Jepang", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Korea", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Latvia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "sebagai OS X", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Asli", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norwegia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Belanda", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polandia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Titik", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugis (Brazil)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugis (Portugal)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romania", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rusia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Aktifkan Semua", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Aktifkan semua macros tanpa notifikasi", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slovakia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Slovenia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Nonaktifkan Semua", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Nonaktifkan semua macros tanpa notifikasi", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Swedia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turki", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ukraina", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnam", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Tampilkan Notifikasi", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Nonaktifkan semua macros dengan notifikasi", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "sebagai Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "China", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Peringatan", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Periksa Ejaan", + "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Dengan password", + "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteksi Spreadsheet", + "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Dengan tanda tangan", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit spreadsheet", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Perubahan akan menghilangkan tanda tangan dari spreadsheet.
    Lanjutkan?", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Spreadsheet ini diproteksi oleh password", + "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Spreadsheet ini perlu ditandatangani.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Tandatangan valid sudah ditambahkan ke spreadhseet. Spreadsheet diproteksi untuk diedit.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Beberapa tanda tangan digital di spreadsheet tidak valid atau tidak bisa diverifikasi. Spreadsheet diproteksi untuk diedit.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Tampilkan tanda tangan", + "SSE.Views.FormatRulesEditDlg.fillColor": "Isi warna", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Peringatan", + "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Skala warna", + "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Skala warna", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "Semua Pembatas", + "SSE.Views.FormatRulesEditDlg.textAppearance": "Tampilan Bar", + "SSE.Views.FormatRulesEditDlg.textApply": "Terapkan ke Rentang", "SSE.Views.FormatRulesEditDlg.textAutomatic": "Otomatis", + "SSE.Views.FormatRulesEditDlg.textAxis": "Sumbu", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "Arah Bar", "SSE.Views.FormatRulesEditDlg.textBold": "Tebal", + "SSE.Views.FormatRulesEditDlg.textBorder": "Pembatas", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "Warna Pembatas", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Gaya Pembatas", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Batas Bawah", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Tidak bisa menambahkan format bersyarat.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Titik tengah sel", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Batas Dalam Vertikal", "SSE.Views.FormatRulesEditDlg.textClear": "Hapus", + "SSE.Views.FormatRulesEditDlg.textColor": "Warna teks", + "SSE.Views.FormatRulesEditDlg.textContext": "Konteks", "SSE.Views.FormatRulesEditDlg.textCustom": "Khusus", - "SSE.Views.FormatRulesEditDlg.textFill": "Isian", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Pembatas Bawah Diagonal", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Pembatas Atas Diagonal", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Masukkan formula yang valid.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "Formula yang Anda masukkan tidak mengevaluasi angka, tanggal, waktu atau string.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Masukkan nilai.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "Nilai yang Anda masukkan bukan angka, tanggal, jam, atau string yang valid.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "Nilai dari {0} harus lebih besar dari nilai {1}.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Masukkan angka antara {0} dan {1}.", + "SSE.Views.FormatRulesEditDlg.textFill": "Isi", + "SSE.Views.FormatRulesEditDlg.textFormat": "Format", + "SSE.Views.FormatRulesEditDlg.textFormula": "Formula", "SSE.Views.FormatRulesEditDlg.textGradient": "Gradien", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "ketika {0} {1} dan", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "ketika {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "ketika bernilai", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Rentang data satu atau beberapa ikon tumpang tindih.
    Atur nilai rentang data ikon agar tidak tumpang tindih.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Style Ikon", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Pembatas Dalam", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Rentang data tidak valid.", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "KESALAHAN! Rentang sel tidak valid", "SSE.Views.FormatRulesEditDlg.textItalic": "Miring", + "SSE.Views.FormatRulesEditDlg.textItem": "Item", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Kiri ke kanan", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Batas Kiri", + "SSE.Views.FormatRulesEditDlg.textLongBar": "bar terpanjang", "SSE.Views.FormatRulesEditDlg.textMaximum": "Maksimal", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Tambahkan Warna Khusus Baru", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maxpoint", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Batas Dalam Horizontal", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Titik tengah", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minpoint", + "SSE.Views.FormatRulesEditDlg.textNegative": "Negatif", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Tambahkan warna khusus baru", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Tidak ada pembatas", - "SSE.Views.FormatRulesEditDlg.textNone": "tidak ada", - "SSE.Views.FormatRulesEditDlg.textPosition": "Jabatan", + "SSE.Views.FormatRulesEditDlg.textNone": "Tidak ada", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Satu atau lebih nilai yang ditetapkan bukan persentase yang valid.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "Nilai {0} yang ditentukan bukan persentase yang valid.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Satu atau lebih nilai yang ditetapkan bukan persentil yang valid.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "Nilai {0} yang ditentukan bukan persentil yang valid.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Pembatas Luar", + "SSE.Views.FormatRulesEditDlg.textPercent": "Persen", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Persentil", + "SSE.Views.FormatRulesEditDlg.textPosition": "Posisi", + "SSE.Views.FormatRulesEditDlg.textPositive": "Positif", + "SSE.Views.FormatRulesEditDlg.textPresets": "Presets", "SSE.Views.FormatRulesEditDlg.textPreview": "Pratinjau", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "Anda tidak dapat menggunakan referensi relatif dalam kriteria format bersyarat untuk skala warna, bar data, dan kumpulan ikon", + "SSE.Views.FormatRulesEditDlg.textReverse": "Urutan Ikon Terbalik", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Kanan sampai kiri", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Batas Kanan", + "SSE.Views.FormatRulesEditDlg.textRule": "Aturan", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Sama seperti positif", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Pilih data", + "SSE.Views.FormatRulesEditDlg.textShortBar": "bar terpendek", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Tampilkan hanya bar", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Tampilkan hanya icon", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Tipe referensi ini tidak dapat digunakan dalam formula format bersyarat.
    Ubah referensi ke sel tunggal, atau gunakan referensi dengan fungsi worksheet, seperti =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Solid", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Strikeout", "SSE.Views.FormatRulesEditDlg.textSubscript": "Subskrip", "SSE.Views.FormatRulesEditDlg.textSuperscript": "Superskrip", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Batas Atas", "SSE.Views.FormatRulesEditDlg.textUnderline": "Garis bawah", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Pembatas", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Format Nomor", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Akutansi", "SSE.Views.FormatRulesEditDlg.txtCurrency": "Mata uang", "SSE.Views.FormatRulesEditDlg.txtDate": "Tanggal", - "SSE.Views.FormatRulesEditDlg.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Area ini dibutuhkan", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Pecahan", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "Umum", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Tanpa Simbol", "SSE.Views.FormatRulesEditDlg.txtNumber": "Angka", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Persentase", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Saintifik", "SSE.Views.FormatRulesEditDlg.txtText": "Teks", "SSE.Views.FormatRulesEditDlg.txtTime": "Waktu", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Edit Aturan Pemformatan", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Peraturan Format Baru", "SSE.Views.FormatRulesManagerDlg.guestText": "Tamu", "SSE.Views.FormatRulesManagerDlg.lockText": "Dikunci", + "SSE.Views.FormatRulesManagerDlg.text1Above": "1 std dev di atas rata-rata", + "SSE.Views.FormatRulesManagerDlg.text1Below": "1 std dev di bawah rata-rata", + "SSE.Views.FormatRulesManagerDlg.text2Above": "2 std dev di atas rata-rata", + "SSE.Views.FormatRulesManagerDlg.text2Below": "2 std dev di bawah rata-rata", + "SSE.Views.FormatRulesManagerDlg.text3Above": "3 std dev di atas rata-rata", + "SSE.Views.FormatRulesManagerDlg.text3Below": "3 std dev di bawah rata-rata", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Di atas rata-rata", + "SSE.Views.FormatRulesManagerDlg.textApply": "Terapkan ke", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Nilai sel dimulai dari", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Di bawah rata-rata", + "SSE.Views.FormatRulesManagerDlg.textBetween": "antara {0} dan {1}", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Nilai sel", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Skala warna bergradasi", + "SSE.Views.FormatRulesManagerDlg.textContains": "Nilai sel memiliki", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Sel memiliki nilai yang kosong", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "Sel memiliki error", "SSE.Views.FormatRulesManagerDlg.textDelete": "Hapus", + "SSE.Views.FormatRulesManagerDlg.textDown": "Pindah aturan ke bawah", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Duplikasi nilai", "SSE.Views.FormatRulesManagerDlg.textEdit": "Sunting", - "SSE.Views.FormatRulesManagerDlg.textNew": "baru", + "SSE.Views.FormatRulesManagerDlg.textEnds": "Nilai sel diakhiri dengan", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Sama dengan atau diatas rata-rata", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Sama dengan atau dibawah rata-rata", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Format", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Icon set", + "SSE.Views.FormatRulesManagerDlg.textNew": "Baru", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "tidak diantara {0} dan {1}", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "Nilai sel tidak memiliki", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Sel memiliki nilai yang tidak kosong", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Sel tidak memiliki error", + "SSE.Views.FormatRulesManagerDlg.textRules": "Peraturan", + "SSE.Views.FormatRulesManagerDlg.textScope": "Tampilkan peraturan format untuk", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Pilih data", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Pilihan saat ini", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Pivot ini", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Worksheet ini", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "Tabel ini", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Nilai unik", + "SSE.Views.FormatRulesManagerDlg.textUp": "Pindah aturan ke atas", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Format bersyarat", "SSE.Views.FormatSettingsDialog.textCategory": "Kategori", + "SSE.Views.FormatSettingsDialog.textDecimal": "Desimal", + "SSE.Views.FormatSettingsDialog.textFormat": "Format", + "SSE.Views.FormatSettingsDialog.textLinked": "Terhubung ke sumber", + "SSE.Views.FormatSettingsDialog.textSeparator": "Gunakan separator 1000", + "SSE.Views.FormatSettingsDialog.textSymbols": "Simbol", + "SSE.Views.FormatSettingsDialog.textTitle": "Format Nomor", + "SSE.Views.FormatSettingsDialog.txtAccounting": "Akutansi", + "SSE.Views.FormatSettingsDialog.txtAs10": "Persepuluh (5/10)", + "SSE.Views.FormatSettingsDialog.txtAs100": "Perseratus (50/100)", + "SSE.Views.FormatSettingsDialog.txtAs16": "Perenambelas (8/16)", + "SSE.Views.FormatSettingsDialog.txtAs2": "Setengah (1/2)", + "SSE.Views.FormatSettingsDialog.txtAs4": "Perempat (2/4)", + "SSE.Views.FormatSettingsDialog.txtAs8": "Perdelapan (4/8)", "SSE.Views.FormatSettingsDialog.txtCurrency": "Mata uang", "SSE.Views.FormatSettingsDialog.txtCustom": "Khusus", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Silakan masukkan format nomor custom dengan teliti. Editor Spreadsheet tidak memeriksa format pengaturan untuk error yang dapat memengaruhi file xlsx.", "SSE.Views.FormatSettingsDialog.txtDate": "Tanggal", + "SSE.Views.FormatSettingsDialog.txtFraction": "Pecahan", "SSE.Views.FormatSettingsDialog.txtGeneral": "Umum", - "SSE.Views.FormatSettingsDialog.txtNone": "tidak ada", + "SSE.Views.FormatSettingsDialog.txtNone": "Tidak ada", "SSE.Views.FormatSettingsDialog.txtNumber": "Angka", "SSE.Views.FormatSettingsDialog.txtPercentage": "Persentase", + "SSE.Views.FormatSettingsDialog.txtSample": "Sampel", + "SSE.Views.FormatSettingsDialog.txtScientific": "Saintifik", "SSE.Views.FormatSettingsDialog.txtText": "Teks", "SSE.Views.FormatSettingsDialog.txtTime": "Waktu", - "SSE.Views.FormulaDialog.sDescription": "Description", - "SSE.Views.FormulaDialog.textGroupDescription": "Select Function Group", - "SSE.Views.FormulaDialog.textListDescription": "Select Function", + "SSE.Views.FormatSettingsDialog.txtUpto1": "Lebih dari satu digit (1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "Lebih dari dua digit (12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "Lebih dari tiga digit (131/135)", + "SSE.Views.FormulaDialog.sDescription": "Deskripsi", + "SSE.Views.FormulaDialog.textGroupDescription": "Pilih Grup Fungsi", + "SSE.Views.FormulaDialog.textListDescription": "Pilih Fungsi", + "SSE.Views.FormulaDialog.txtRecommended": "Direkomendasikan", "SSE.Views.FormulaDialog.txtSearch": "Cari", - "SSE.Views.FormulaDialog.txtTitle": "Insert Function", + "SSE.Views.FormulaDialog.txtTitle": "Sisipkan Fungsi", "SSE.Views.FormulaTab.textAutomatic": "Otomatis", + "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Kalkulasi sheet saat ini", + "SSE.Views.FormulaTab.textCalculateWorkbook": "Kalkulasi workbook", + "SSE.Views.FormulaTab.textManual": "Manual", + "SSE.Views.FormulaTab.tipCalculate": "Kalkulasi", + "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Kalkulasi seluruh workbook", "SSE.Views.FormulaTab.txtAdditional": "Tambahan", + "SSE.Views.FormulaTab.txtAutosum": "Autosum", + "SSE.Views.FormulaTab.txtAutosumTip": "Penjumlahan", + "SSE.Views.FormulaTab.txtCalculation": "Kalkulasi", + "SSE.Views.FormulaTab.txtFormula": "Fungsi", + "SSE.Views.FormulaTab.txtFormulaTip": "Sisipkan Fungsi", + "SSE.Views.FormulaTab.txtMore": "Lebih banyak fungsi", + "SSE.Views.FormulaTab.txtRecent": "Baru digunakan", "SSE.Views.FormulaWizard.textAny": "Apa saja", + "SSE.Views.FormulaWizard.textArgument": "Argumen", + "SSE.Views.FormulaWizard.textFunction": "Fungsi", + "SSE.Views.FormulaWizard.textFunctionRes": "Hasil fungsi", + "SSE.Views.FormulaWizard.textHelp": "Bantuan di fungsi ini", + "SSE.Views.FormulaWizard.textLogical": "logikal", + "SSE.Views.FormulaWizard.textNoArgs": "Fungsi ini tidak memiliki argumen", "SSE.Views.FormulaWizard.textNumber": "Angka", + "SSE.Views.FormulaWizard.textRef": "referensi", "SSE.Views.FormulaWizard.textText": "Teks", + "SSE.Views.FormulaWizard.textTitle": "Argumen Fungsi", + "SSE.Views.FormulaWizard.textValue": "Hasil formula", + "SSE.Views.HeaderFooterDialog.textAlign": "Ratakan dengan margin halaman", + "SSE.Views.HeaderFooterDialog.textAll": "Semua halaman", "SSE.Views.HeaderFooterDialog.textBold": "Tebal", "SSE.Views.HeaderFooterDialog.textCenter": "Tengah", + "SSE.Views.HeaderFooterDialog.textColor": "Warna teks", "SSE.Views.HeaderFooterDialog.textDate": "Tanggal", + "SSE.Views.HeaderFooterDialog.textDiffFirst": "Halaman pertama yang berbeda", "SSE.Views.HeaderFooterDialog.textDiffOdd": "Halaman ganjil dan genap yang berbeda", "SSE.Views.HeaderFooterDialog.textEven": "Halaman Genap", "SSE.Views.HeaderFooterDialog.textFileName": "Nama file", + "SSE.Views.HeaderFooterDialog.textFirst": "Halaman pertama", + "SSE.Views.HeaderFooterDialog.textFooter": "Footer", + "SSE.Views.HeaderFooterDialog.textHeader": "Header", "SSE.Views.HeaderFooterDialog.textInsert": "Sisipkan", "SSE.Views.HeaderFooterDialog.textItalic": "Miring", "SSE.Views.HeaderFooterDialog.textLeft": "Kiri", - "SSE.Views.HeaderFooterDialog.textNewColor": "Tambahkan Warna Khusus Baru", + "SSE.Views.HeaderFooterDialog.textMaxError": "String teks yang Anda masukkan terlalu panjang. Kurangi jumlah karakter yang digunakan.", + "SSE.Views.HeaderFooterDialog.textNewColor": "Tambahkan warna khusus baru", "SSE.Views.HeaderFooterDialog.textOdd": "Halaman Ganjil", + "SSE.Views.HeaderFooterDialog.textPageCount": "Perhitungan halaman", + "SSE.Views.HeaderFooterDialog.textPageNum": "Nomor halaman", + "SSE.Views.HeaderFooterDialog.textPresets": "Presets", "SSE.Views.HeaderFooterDialog.textRight": "Kanan", + "SSE.Views.HeaderFooterDialog.textScale": "Skala dengan dokumen", + "SSE.Views.HeaderFooterDialog.textSheet": "Nama Sheet", "SSE.Views.HeaderFooterDialog.textStrikeout": "Coret ganda", "SSE.Views.HeaderFooterDialog.textSubscript": "Subskrip", "SSE.Views.HeaderFooterDialog.textSuperscript": "Superskrip", "SSE.Views.HeaderFooterDialog.textTime": "Waktu", + "SSE.Views.HeaderFooterDialog.textTitle": "Pengaturan Header/Footer", "SSE.Views.HeaderFooterDialog.textUnderline": "Garis bawah", "SSE.Views.HeaderFooterDialog.tipFontName": "Huruf", "SSE.Views.HeaderFooterDialog.tipFontSize": "Ukuran Huruf", - "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Display", - "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Link to", - "SSE.Views.HyperlinkSettingsDialog.strRange": "Range", + "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Tampilan", + "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Tautkan dengan", + "SSE.Views.HyperlinkSettingsDialog.strRange": "Rentang", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Sheet", "SSE.Views.HyperlinkSettingsDialog.textCopy": "Salin", - "SSE.Views.HyperlinkSettingsDialog.textDefault": "Selected range", - "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter caption here", - "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here", - "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here", - "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link", - "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Internal Data Range", - "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text", - "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings", - "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required", - "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", + "SSE.Views.HyperlinkSettingsDialog.textDefault": "Rentang yang dipilih", + "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Masukkan caption di sini", + "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Masukkan link di sini", + "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Masukkan tooltip disini", + "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Tautan eksternal", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Dapatkan Link", + "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Rentang Data Internal", + "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Nama yang ditentukan", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Pilih data", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "Sheet", + "SSE.Views.HyperlinkSettingsDialog.textTipText": "Teks ScreenTip", + "SSE.Views.HyperlinkSettingsDialog.textTitle": "Pengaturan Hyperlink", + "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Area ini dibutuhkan", + "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Bagian ini harus berupa URL dengn format \"http://www.contoh.com\"", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Area ini dibatasi 2083 karakter", "SSE.Views.ImageSettings.textAdvanced": "Tampilkan pengaturan lanjut", - "SSE.Views.ImageSettings.textCropFill": "Isian", + "SSE.Views.ImageSettings.textCrop": "Isian", + "SSE.Views.ImageSettings.textCropFill": "Isi", + "SSE.Views.ImageSettings.textCropFit": "Fit", + "SSE.Views.ImageSettings.textCropToShape": "Crop menjadi bentuk", "SSE.Views.ImageSettings.textEdit": "Sunting", - "SSE.Views.ImageSettings.textFromFile": "From File", - "SSE.Views.ImageSettings.textFromUrl": "From URL", - "SSE.Views.ImageSettings.textHeight": "Height", - "SSE.Views.ImageSettings.textInsert": "Replace Image", - "SSE.Views.ImageSettings.textKeepRatio": "Constant Proportions", - "SSE.Views.ImageSettings.textOriginalSize": "Default Size", - "SSE.Views.ImageSettings.textSize": "Size", - "SSE.Views.ImageSettings.textWidth": "Width", + "SSE.Views.ImageSettings.textEditObject": "Edit Objek", + "SSE.Views.ImageSettings.textFlip": "Flip", + "SSE.Views.ImageSettings.textFromFile": "Dari File", + "SSE.Views.ImageSettings.textFromStorage": "Dari Penyimpanan", + "SSE.Views.ImageSettings.textFromUrl": "Dari URL", + "SSE.Views.ImageSettings.textHeight": "Tinggi", + "SSE.Views.ImageSettings.textHint270": "Rotasi 90° Berlawanan Jarum Jam", + "SSE.Views.ImageSettings.textHint90": "Rotasi 90° Searah Jarum Jam", + "SSE.Views.ImageSettings.textHintFlipH": "Flip Horizontal", + "SSE.Views.ImageSettings.textHintFlipV": "Flip Vertikal", + "SSE.Views.ImageSettings.textInsert": "Ganti Gambar", + "SSE.Views.ImageSettings.textKeepRatio": "Proporsi Konstan", + "SSE.Views.ImageSettings.textOriginalSize": "Ukuran Sebenarnya", + "SSE.Views.ImageSettings.textRecentlyUsed": "Baru Digunakan", + "SSE.Views.ImageSettings.textRotate90": "Rotasi 90°", + "SSE.Views.ImageSettings.textRotation": "Rotasi", + "SSE.Views.ImageSettings.textSize": "Ukuran", + "SSE.Views.ImageSettings.textWidth": "Lebar", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Jangan pindah atau ubah dengan sel", + "SSE.Views.ImageSettingsAdvanced.textAlt": "Teks Alternatif", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Judul", + "SSE.Views.ImageSettingsAdvanced.textAngle": "Sudut", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "Flipped", + "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Secara Horizontal", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "Pindahkan tapi tidak digabungkan dengan sel", + "SSE.Views.ImageSettingsAdvanced.textRotation": "Rotasi", + "SSE.Views.ImageSettingsAdvanced.textSnap": "Snapping Sel", "SSE.Views.ImageSettingsAdvanced.textTitle": "Gambar - Pengaturan Lanjut", - "SSE.Views.LeftMenu.tipAbout": "About", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Pindahkan dan gabungkan dengan sel", + "SSE.Views.ImageSettingsAdvanced.textVertically": "Secara Vertikal", + "SSE.Views.LeftMenu.tipAbout": "Tentang", "SSE.Views.LeftMenu.tipChat": "Chat", - "SSE.Views.LeftMenu.tipComments": "Comments", + "SSE.Views.LeftMenu.tipComments": "Komentar", "SSE.Views.LeftMenu.tipFile": "File", - "SSE.Views.LeftMenu.tipSearch": "Search", + "SSE.Views.LeftMenu.tipPlugins": "Plugins", + "SSE.Views.LeftMenu.tipSearch": "Cari", "SSE.Views.LeftMenu.tipSpellcheck": "Periksa Ejaan", - "SSE.Views.LeftMenu.tipSupport": "Feedback & Support", - "SSE.Views.MainSettingsPrint.okButtonText": "Save", - "SSE.Views.MainSettingsPrint.strBottom": "Bottom", + "SSE.Views.LeftMenu.tipSupport": "Masukan & Dukungan", + "SSE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPER", + "SSE.Views.LeftMenu.txtLimit": "Batas Akses", + "SSE.Views.LeftMenu.txtTrial": "MODE TRIAL", + "SSE.Views.LeftMenu.txtTrialDev": "Mode Trial Developer", + "SSE.Views.MacroDialog.textMacro": "Nama macro", + "SSE.Views.MainSettingsPrint.okButtonText": "Simpan", + "SSE.Views.MainSettingsPrint.strBottom": "Bawah", "SSE.Views.MainSettingsPrint.strLandscape": "Landscape", - "SSE.Views.MainSettingsPrint.strLeft": "Left", - "SSE.Views.MainSettingsPrint.strMargins": "Margins", + "SSE.Views.MainSettingsPrint.strLeft": "Kiri", + "SSE.Views.MainSettingsPrint.strMargins": "Margin", "SSE.Views.MainSettingsPrint.strPortrait": "Portrait", - "SSE.Views.MainSettingsPrint.strPrint": "Print", - "SSE.Views.MainSettingsPrint.strRight": "Right", - "SSE.Views.MainSettingsPrint.strTop": "Top", + "SSE.Views.MainSettingsPrint.strPrint": "Cetak", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Print Judul", + "SSE.Views.MainSettingsPrint.strRight": "Kanan", + "SSE.Views.MainSettingsPrint.strTop": "Atas", "SSE.Views.MainSettingsPrint.textActualSize": "Ukuran Sebenarnya", "SSE.Views.MainSettingsPrint.textCustom": "Khusus", - "SSE.Views.MainSettingsPrint.textPageOrientation": "Page Orientation", - "SSE.Views.MainSettingsPrint.textPageSize": "Page Size", - "SSE.Views.MainSettingsPrint.textPrintGrid": "Print Gridlines", - "SSE.Views.MainSettingsPrint.textPrintHeadings": "Print Row and Column Headings", - "SSE.Views.MainSettingsPrint.textSettings": "Settings for", - "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", - "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Defined name", - "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Warning", + "SSE.Views.MainSettingsPrint.textCustomOptions": "Atur Opsi", + "SSE.Views.MainSettingsPrint.textFitCols": "Sesuaikan Semua Kolom kedalam Satu Halaman", + "SSE.Views.MainSettingsPrint.textFitPage": "Sesuaikan Sheet kedalam Satu Halaman", + "SSE.Views.MainSettingsPrint.textFitRows": "Sesuaikan Semua Baris kedalam Satu Halaman", + "SSE.Views.MainSettingsPrint.textPageOrientation": "Orientasi Halaman", + "SSE.Views.MainSettingsPrint.textPageScaling": "Scaling", + "SSE.Views.MainSettingsPrint.textPageSize": "Ukuran Halaman", + "SSE.Views.MainSettingsPrint.textPrintGrid": "Print Garis Grid", + "SSE.Views.MainSettingsPrint.textPrintHeadings": "Print Heading Baris dan Kolom", + "SSE.Views.MainSettingsPrint.textRepeat": "Ulangi...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "Ulangi kolom di kiri", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Ulangi baris di atas", + "SSE.Views.MainSettingsPrint.textSettings": "Pengaturan untuk", + "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Rentang nama yang ada tidak bisa di edit dan tidak bisa membuat yang baru
    jika ada beberapa yang sedang diedit.", + "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Nama yang ditentukan", + "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Peringatan", "SSE.Views.NamedRangeEditDlg.strWorkbook": "Workbook", - "SSE.Views.NamedRangeEditDlg.textDataRange": "Data Range", - "SSE.Views.NamedRangeEditDlg.textExistName": "ERROR! Range with such a name already exists", - "SSE.Views.NamedRangeEditDlg.textInvalidName": "ERROR! Invalid range name", - "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ERROR! Invalid cell range", - "SSE.Views.NamedRangeEditDlg.textIsLocked": "ERROR! This element is being edited by another user.", - "SSE.Views.NamedRangeEditDlg.textName": "Name", - "SSE.Views.NamedRangeEditDlg.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.", + "SSE.Views.NamedRangeEditDlg.textDataRange": "Rentang Data", + "SSE.Views.NamedRangeEditDlg.textExistName": "KESALAHAN! Rentang dengan nama itu sudah ada", + "SSE.Views.NamedRangeEditDlg.textInvalidName": "Nama harus dimulai dengan huruf atau garis bawah dan tidak boleh memiliki karakter yang tidak valid", + "SSE.Views.NamedRangeEditDlg.textInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "SSE.Views.NamedRangeEditDlg.textIsLocked": "KESALAHAN! Elemen ini sedang diedit oleh pengguna lain.", + "SSE.Views.NamedRangeEditDlg.textName": "Nama", + "SSE.Views.NamedRangeEditDlg.textReservedName": "Nama yang Anda coba gunakan sudah direferensikan dalam rumus sel. Mohon gunakan nama lain.", "SSE.Views.NamedRangeEditDlg.textScope": "Scope", - "SSE.Views.NamedRangeEditDlg.textSelectData": "Select Data", - "SSE.Views.NamedRangeEditDlg.txtEmpty": "This field is required", - "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name", - "SSE.Views.NamedRangeEditDlg.txtTitleNew": "New Name", - "SSE.Views.NamedRangePasteDlg.textNames": "Named Ranges", + "SSE.Views.NamedRangeEditDlg.textSelectData": "Pilih data", + "SSE.Views.NamedRangeEditDlg.txtEmpty": "Area ini dibutuhkan", + "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Nama", + "SSE.Views.NamedRangeEditDlg.txtTitleNew": "Nama Baru", + "SSE.Views.NamedRangePasteDlg.textNames": "Rentang yang Bernama", "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name", - "SSE.Views.NameManagerDlg.closeButtonText": "Close", - "SSE.Views.NameManagerDlg.guestText": "Guest", + "SSE.Views.NameManagerDlg.closeButtonText": "Tutup", + "SSE.Views.NameManagerDlg.guestText": "Tamu", "SSE.Views.NameManagerDlg.lockText": "Dikunci", - "SSE.Views.NameManagerDlg.textDataRange": "Data Range", - "SSE.Views.NameManagerDlg.textDelete": "Delete", - "SSE.Views.NameManagerDlg.textEdit": "Edit", - "SSE.Views.NameManagerDlg.textEmpty": "No named ranges have been created yet.
    Create at least one named range and it will appear in this field.", + "SSE.Views.NameManagerDlg.textDataRange": "Rentang Data", + "SSE.Views.NameManagerDlg.textDelete": "Hapus", + "SSE.Views.NameManagerDlg.textEdit": "Sunting", + "SSE.Views.NameManagerDlg.textEmpty": "Tidak ada rentang bernama yang sudah dibuat.
    Buat setidaknya satu rentang bernama dan rentang ini akan muncul di area.", "SSE.Views.NameManagerDlg.textFilter": "Filter", - "SSE.Views.NameManagerDlg.textFilterAll": "All", - "SSE.Views.NameManagerDlg.textFilterDefNames": "Defined names", - "SSE.Views.NameManagerDlg.textFilterSheet": "Names Scoped to Sheet", - "SSE.Views.NameManagerDlg.textFilterTableNames": "Table names", - "SSE.Views.NameManagerDlg.textFilterWorkbook": "Names Scoped to Workbook", - "SSE.Views.NameManagerDlg.textNew": "New", - "SSE.Views.NameManagerDlg.textnoNames": "No named ranges matching your filter could be found.", - "SSE.Views.NameManagerDlg.textRanges": "Named Ranges", + "SSE.Views.NameManagerDlg.textFilterAll": "Semua", + "SSE.Views.NameManagerDlg.textFilterDefNames": "Nama yang ditentukan", + "SSE.Views.NameManagerDlg.textFilterSheet": "Beri Nama Scoped ke Sheet", + "SSE.Views.NameManagerDlg.textFilterTableNames": "Nama tabel", + "SSE.Views.NameManagerDlg.textFilterWorkbook": "Beri nama Scoped ke Workbook", + "SSE.Views.NameManagerDlg.textNew": "Baru", + "SSE.Views.NameManagerDlg.textnoNames": "Tidak ada rentang bernama yang sesuai dengan filter Anda.", + "SSE.Views.NameManagerDlg.textRanges": "Rentang yang Bernama", "SSE.Views.NameManagerDlg.textScope": "Scope", "SSE.Views.NameManagerDlg.textWorkbook": "Workbook", - "SSE.Views.NameManagerDlg.tipIsLocked": "This element is being edited by another user.", - "SSE.Views.NameManagerDlg.txtTitle": "Name Manager", + "SSE.Views.NameManagerDlg.tipIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", + "SSE.Views.NameManagerDlg.txtTitle": "Pengaturan Nama", + "SSE.Views.NameManagerDlg.warnDelete": "Apakah Anda yakin ingin menghapus nama {0}?", "SSE.Views.PageMarginsDialog.textBottom": "Bawah", "SSE.Views.PageMarginsDialog.textLeft": "Kiri", "SSE.Views.PageMarginsDialog.textRight": "Kanan", "SSE.Views.PageMarginsDialog.textTitle": "Margin", "SSE.Views.PageMarginsDialog.textTop": "Atas", - "SSE.Views.ParagraphSettings.strLineHeight": "Line Spacing", - "SSE.Views.ParagraphSettings.strParagraphSpacing": "Spacing", - "SSE.Views.ParagraphSettings.strSpacingAfter": "After", - "SSE.Views.ParagraphSettings.strSpacingBefore": "Before", - "SSE.Views.ParagraphSettings.textAdvanced": "Show advanced settings", - "SSE.Views.ParagraphSettings.textAt": "At", - "SSE.Views.ParagraphSettings.textAtLeast": "At least", - "SSE.Views.ParagraphSettings.textAuto": "Multiple", - "SSE.Views.ParagraphSettings.textExact": "Exactly", - "SSE.Views.ParagraphSettings.txtAutoText": "Auto", - "SSE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", - "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", - "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", + "SSE.Views.ParagraphSettings.strLineHeight": "Spasi Antar Baris", + "SSE.Views.ParagraphSettings.strParagraphSpacing": "Spasi", + "SSE.Views.ParagraphSettings.strSpacingAfter": "Sesudah", + "SSE.Views.ParagraphSettings.strSpacingBefore": "Sebelum", + "SSE.Views.ParagraphSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.ParagraphSettings.textAt": "Pada", + "SSE.Views.ParagraphSettings.textAtLeast": "Sekurang-kurangnya", + "SSE.Views.ParagraphSettings.textAuto": "Banyak", + "SSE.Views.ParagraphSettings.textExact": "Persis", + "SSE.Views.ParagraphSettings.txtAutoText": "Otomatis", + "SSE.Views.ParagraphSettingsAdvanced.noTabs": "Tab yang ditentukan akan muncul pada bagian ini", + "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Huruf kapital semua", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Garis coret ganda", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Indentasi", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Kiri", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Spasi Antar Baris", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Kanan", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Setelah", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Sebelum", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Spesial", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "oleh", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Placement", - "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Huruf", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indentasi & Peletakan", + "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Huruf Ukuran Kecil", "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Spasi", - "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough", - "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", - "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", + "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Coret ganda", + "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subskrip", + "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superskrip", "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", - "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", + "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Perataan", "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Banyak", - "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", - "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", - "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", + "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spasi Antar Karakter", + "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Tab Standar", + "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Efek", "SSE.Views.ParagraphSettingsAdvanced.textExact": "Persis", "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Menggantung", "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", - "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", - "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", - "SSE.Views.ParagraphSettingsAdvanced.textSet": "Specify", - "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center", - "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left", - "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", - "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", - "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", + "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(tidak ada)", + "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Hapus", + "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Hapus Semua", + "SSE.Views.ParagraphSettingsAdvanced.textSet": "Tentukan", + "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Tengah", + "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Kiri", + "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posisi Tab", + "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Kanan", + "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraf - Pengaturan Lanjut", "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "sama dengan", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "tidak diakhiri dengan", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "berisi", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "tidak memiliki", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "diantara", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "tidak diantara", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "Tidak sama dengan", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "lebih besar dari", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "lebih besar dari atau sama dengan", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "lebih kecil dari", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "lebih kecil dari atau sama dengan", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "dimulai dari", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "tidak diawali dari", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "berakhir dengan", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Tampilkan item yang labelnya:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Tampilkan item yang:", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Gunakan ? untuk menampilkan semua karakter tunggal", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Gunakan * untuk menampilkan semua rangkaian karakter", "SSE.Views.PivotDigitalFilterDialog.txtAnd": "dan", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filter label", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Filter Nilai", "SSE.Views.PivotGroupDialog.textAuto": "Otomatis", "SSE.Views.PivotGroupDialog.textBy": "oleh", "SSE.Views.PivotGroupDialog.textDays": "Hari", + "SSE.Views.PivotGroupDialog.textEnd": "Berakhir pada", + "SSE.Views.PivotGroupDialog.textError": "Area harus memiliki nilai numerik", + "SSE.Views.PivotGroupDialog.textGreaterError": "Angka terakhir harus lebih besar dari angka awal.", "SSE.Views.PivotGroupDialog.textHour": "jam", "SSE.Views.PivotGroupDialog.textMin": "menit", - "SSE.Views.PivotGroupDialog.textMonth": "bulan", - "SSE.Views.PivotGroupDialog.textYear": "tahun", + "SSE.Views.PivotGroupDialog.textMonth": "Bulan", + "SSE.Views.PivotGroupDialog.textNumDays": "Jumlah hari", + "SSE.Views.PivotGroupDialog.textQuart": "Kuarter", + "SSE.Views.PivotGroupDialog.textSec": "Detik", + "SSE.Views.PivotGroupDialog.textStart": "Dimulai pada", + "SSE.Views.PivotGroupDialog.textYear": "Tahun", + "SSE.Views.PivotGroupDialog.txtTitle": "Mengelompokkan", "SSE.Views.PivotSettings.textAdvanced": "Tampilkan pengaturan lanjut", "SSE.Views.PivotSettings.textColumns": "Kolom", + "SSE.Views.PivotSettings.textFields": "Pilih Area", + "SSE.Views.PivotSettings.textFilters": "Filter", "SSE.Views.PivotSettings.textRows": "Baris", + "SSE.Views.PivotSettings.textValues": "Nilai", + "SSE.Views.PivotSettings.txtAddColumn": "Tambah ke Kolom", + "SSE.Views.PivotSettings.txtAddFilter": "Tambah ke Filter", + "SSE.Views.PivotSettings.txtAddRow": "Tambah ke Baris", + "SSE.Views.PivotSettings.txtAddValues": "Tambah ke Nilai", + "SSE.Views.PivotSettings.txtFieldSettings": "Pengaturan Area", + "SSE.Views.PivotSettings.txtMoveBegin": "Pindah ke Awal", + "SSE.Views.PivotSettings.txtMoveColumn": "Pindah ke Kolom", + "SSE.Views.PivotSettings.txtMoveDown": "Pindah Kebawah", + "SSE.Views.PivotSettings.txtMoveEnd": "Pindah ke akhir", + "SSE.Views.PivotSettings.txtMoveFilter": "Pindah ke Filter", + "SSE.Views.PivotSettings.txtMoveRow": "Pindah ke Baris", + "SSE.Views.PivotSettings.txtMoveUp": "Pindah Keatas", + "SSE.Views.PivotSettings.txtMoveValues": "Pindah ke Nilai", + "SSE.Views.PivotSettings.txtRemove": "Hapus Area", + "SSE.Views.PivotSettingsAdvanced.strLayout": "Nama dan Layout", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Teks Alternatif", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik atau tabel.", "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Judul", - "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "Rentang Data", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "Sumber Data", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Tampilkan area di area filter laporan", + "SSE.Views.PivotSettingsAdvanced.textDown": "Turun, lalu atas", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Grand Total", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "Header Area", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "SSE.Views.PivotSettingsAdvanced.textOver": "Atas, lalu turun", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Pilih data", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Tampilkan untuk kolom", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Tampilkan header area untuk baris dan kolom", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Tampilkan untuk baris", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Tabel pivot - Pengaturan Lanjut", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Laporan area filter per kolom", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Laporan area filter per baris", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Area ini dibutuhkan", "SSE.Views.PivotSettingsAdvanced.txtName": "Nama", + "SSE.Views.PivotTable.capBlankRows": "Baris Kosong", + "SSE.Views.PivotTable.capGrandTotals": "Grand Total", + "SSE.Views.PivotTable.capLayout": "Layout Laporan", + "SSE.Views.PivotTable.capSubtotals": "Subtotals", + "SSE.Views.PivotTable.mniBottomSubtotals": "Tampilkan semua Subtotal di Bawah Grup", + "SSE.Views.PivotTable.mniInsertBlankLine": "Sisipkan Garis Kosong setelah Masing-masing item", + "SSE.Views.PivotTable.mniLayoutCompact": "Tampilkan dalam Bentuk Kompak", + "SSE.Views.PivotTable.mniLayoutNoRepeat": "Jangan Ulang Semua Label Item", + "SSE.Views.PivotTable.mniLayoutOutline": "Tampilkan dalam Bentuk Outline", + "SSE.Views.PivotTable.mniLayoutRepeat": "Ulangi Semua Label item", + "SSE.Views.PivotTable.mniLayoutTabular": "Tampilkan dalam Bentuk Tabular", + "SSE.Views.PivotTable.mniNoSubtotals": "Jangan Tampilkan Subtotal", + "SSE.Views.PivotTable.mniOffTotals": "Nonaktif untuk Baris dan Kolom", + "SSE.Views.PivotTable.mniOnColumnsTotals": "Hidup untuk Kolom Saja", + "SSE.Views.PivotTable.mniOnRowsTotals": "Hidup untuk Baris Saja", + "SSE.Views.PivotTable.mniOnTotals": "Hidup untuk Baris dan Kolom", + "SSE.Views.PivotTable.mniRemoveBlankLine": "Hapus Baris Kosong setelah Setiap Item", + "SSE.Views.PivotTable.mniTopSubtotals": "Tampilkan semua Subtotal di Atas Grup", + "SSE.Views.PivotTable.textColBanded": "Kolom Berpita", + "SSE.Views.PivotTable.textColHeader": "Header Kolom", + "SSE.Views.PivotTable.textRowBanded": "Baris Berpita", + "SSE.Views.PivotTable.textRowHeader": "Header Baris", + "SSE.Views.PivotTable.tipCreatePivot": "Sisipkan Tabel Pivot", + "SSE.Views.PivotTable.tipGrandTotals": "Tampilkan atau sembunyikan total keseluruhan", + "SSE.Views.PivotTable.tipRefresh": "Update informasi dari sumber data", + "SSE.Views.PivotTable.tipSelect": "Pilih seluruh tabel pivot", + "SSE.Views.PivotTable.tipSubtotals": "Tampilkan atau sembunyikan subtotal", "SSE.Views.PivotTable.txtCreate": "Sisipkan Tabel", + "SSE.Views.PivotTable.txtPivotTable": "Tabel Pivot", + "SSE.Views.PivotTable.txtRefresh": "Refresh", "SSE.Views.PivotTable.txtSelect": "Pilih", - "SSE.Views.PrintSettings.btnPrint": "Save & Print", - "SSE.Views.PrintSettings.strBottom": "Bottom", + "SSE.Views.PrintSettings.btnDownload": "Simpan & Download", + "SSE.Views.PrintSettings.btnPrint": "Simpan & Print", + "SSE.Views.PrintSettings.strBottom": "Bawah", "SSE.Views.PrintSettings.strLandscape": "Landscape", - "SSE.Views.PrintSettings.strLeft": "Left", - "SSE.Views.PrintSettings.strMargins": "Margins", + "SSE.Views.PrintSettings.strLeft": "Kiri", + "SSE.Views.PrintSettings.strMargins": "Margin", "SSE.Views.PrintSettings.strPortrait": "Portrait", - "SSE.Views.PrintSettings.strPrint": "Print", - "SSE.Views.PrintSettings.strRight": "Right", + "SSE.Views.PrintSettings.strPrint": "Cetak", + "SSE.Views.PrintSettings.strPrintTitles": "Print Judul", + "SSE.Views.PrintSettings.strRight": "Kanan", "SSE.Views.PrintSettings.strShow": "Tampilkan", - "SSE.Views.PrintSettings.strTop": "Top", - "SSE.Views.PrintSettings.textActualSize": "Actual Size", - "SSE.Views.PrintSettings.textAllSheets": "All Sheets", - "SSE.Views.PrintSettings.textCurrentSheet": "Current Sheet", + "SSE.Views.PrintSettings.strTop": "Atas", + "SSE.Views.PrintSettings.textActualSize": "Ukuran Sebenarnya", + "SSE.Views.PrintSettings.textAllSheets": "Semua Sheet", + "SSE.Views.PrintSettings.textCurrentSheet": "Sheet saat ini", "SSE.Views.PrintSettings.textCustom": "Khusus", - "SSE.Views.PrintSettings.textHideDetails": "Hide Details", + "SSE.Views.PrintSettings.textCustomOptions": "Atur Opsi", + "SSE.Views.PrintSettings.textFitCols": "Sesuaikan Semua Kolom kedalam Satu Halaman", + "SSE.Views.PrintSettings.textFitPage": "Sesuaikan Sheet kedalam Satu Halaman", + "SSE.Views.PrintSettings.textFitRows": "Sesuaikan Semua Baris kedalam Satu Halaman", + "SSE.Views.PrintSettings.textHideDetails": "Sembunyikan Detail", + "SSE.Views.PrintSettings.textIgnore": "Abaikan Area Print", "SSE.Views.PrintSettings.textLayout": "Layout", - "SSE.Views.PrintSettings.textPageOrientation": "Page Orientation", - "SSE.Views.PrintSettings.textPageSize": "Page Size", - "SSE.Views.PrintSettings.textPrintGrid": "Print Gridlines", - "SSE.Views.PrintSettings.textPrintHeadings": "Print Row and Column Headings", - "SSE.Views.PrintSettings.textPrintRange": "Print Range", - "SSE.Views.PrintSettings.textSelection": "Selection", - "SSE.Views.PrintSettings.textShowDetails": "Show Details", - "SSE.Views.PrintSettings.textTitle": "Print Settings", + "SSE.Views.PrintSettings.textPageOrientation": "Orientasi Halaman", + "SSE.Views.PrintSettings.textPageScaling": "Scaling", + "SSE.Views.PrintSettings.textPageSize": "Ukuran Halaman", + "SSE.Views.PrintSettings.textPrintGrid": "Print Garis Grid", + "SSE.Views.PrintSettings.textPrintHeadings": "Print Heading Baris dan Kolom", + "SSE.Views.PrintSettings.textPrintRange": "Rentang Print", + "SSE.Views.PrintSettings.textRange": "Rentang", + "SSE.Views.PrintSettings.textRepeat": "Ulangi...", + "SSE.Views.PrintSettings.textRepeatLeft": "Ulangi kolom di kiri", + "SSE.Views.PrintSettings.textRepeatTop": "Ulangi baris di atas", + "SSE.Views.PrintSettings.textSelection": "Pilihan", + "SSE.Views.PrintSettings.textSettings": "Pengaturan Sheet", + "SSE.Views.PrintSettings.textShowDetails": "Tampilkan Detail", + "SSE.Views.PrintSettings.textShowGrid": "Tampilkan Garis Gird", + "SSE.Views.PrintSettings.textShowHeadings": "Tampilkan Heading Baris dan Kolom", + "SSE.Views.PrintSettings.textTitle": "Pengaturan Print", + "SSE.Views.PrintSettings.textTitlePDF": "Pengaturan PDF", + "SSE.Views.PrintTitlesDialog.textFirstCol": "Kolom pertama", + "SSE.Views.PrintTitlesDialog.textFirstRow": "Baris pertama", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Kolom yang dibekukan", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Baris yang dibekukan", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "SSE.Views.PrintTitlesDialog.textLeft": "Ulangi kolom di kiri", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "Jangan ulang", + "SSE.Views.PrintTitlesDialog.textRepeat": "Ulangi...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Pilih rentang", + "SSE.Views.PrintTitlesDialog.textTitle": "Print Judul", + "SSE.Views.PrintTitlesDialog.textTop": "Ulangi baris di atas", "SSE.Views.PrintWithPreview.txtActualSize": "Ukuran Sebenarnya", + "SSE.Views.PrintWithPreview.txtAllSheets": "Semua Sheet", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Terapkan ke semua sheet", "SSE.Views.PrintWithPreview.txtBottom": "Bawah", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Sheet saat ini", "SSE.Views.PrintWithPreview.txtCustom": "Khusus", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Atur Opsi", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Tidak ada yang bisa diprint karena tabelnya kosong", + "SSE.Views.PrintWithPreview.txtFitCols": "Sesuaikan Semua Kolom kedalam Satu Halaman", + "SSE.Views.PrintWithPreview.txtFitPage": "Sesuaikan Sheet kedalam Satu Halaman", + "SSE.Views.PrintWithPreview.txtFitRows": "Sesuaikan Semua Baris kedalam Satu Halaman", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Garis grid dan heading", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Pengaturan Header/Footer", + "SSE.Views.PrintWithPreview.txtIgnore": "Abaikan Area Print", + "SSE.Views.PrintWithPreview.txtLandscape": "Landscape", "SSE.Views.PrintWithPreview.txtLeft": "Kiri", "SSE.Views.PrintWithPreview.txtMargins": "Margin", + "SSE.Views.PrintWithPreview.txtOf": "dari {0}", "SSE.Views.PrintWithPreview.txtPage": "Halaman", "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Nomor halaman salah", "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientasi Halaman", "SSE.Views.PrintWithPreview.txtPageSize": "Ukuran Halaman", + "SSE.Views.PrintWithPreview.txtPortrait": "Portrait", "SSE.Views.PrintWithPreview.txtPrint": "Cetak", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Print Garis Grid", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Print Heading Baris dan Kolom", + "SSE.Views.PrintWithPreview.txtPrintRange": "Rentang Print", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Print Judul", + "SSE.Views.PrintWithPreview.txtRepeat": "Ulangi...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Ulangi kolom di kiri", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Ulangi baris di atas", "SSE.Views.PrintWithPreview.txtRight": "Kanan", "SSE.Views.PrintWithPreview.txtSave": "Simpan", + "SSE.Views.PrintWithPreview.txtScaling": "Scaling", + "SSE.Views.PrintWithPreview.txtSelection": "Pilihan", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Pengaturan dari sheet", + "SSE.Views.PrintWithPreview.txtSheet": "Sheet: {0}", "SSE.Views.PrintWithPreview.txtTop": "Atas", - "SSE.Views.ProtectDialog.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.ProtectDialog.textExistName": "KESALAHAN! Rentang dengan judul itu sudah ada", + "SSE.Views.ProtectDialog.textInvalidName": "Rentang judul harus diawali dengan huruf dan hanya boleh berisi huruf, angka, dan spasi.", + "SSE.Views.ProtectDialog.textInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "SSE.Views.ProtectDialog.textSelectData": "Pilih data", + "SSE.Views.ProtectDialog.txtAllow": "Izinkan semua pengguna sheet ini untuk", + "SSE.Views.ProtectDialog.txtAutofilter": "Gunakan AutoFilter", + "SSE.Views.ProtectDialog.txtDelCols": "Hapus Kolom", + "SSE.Views.ProtectDialog.txtDelRows": "Hapus Baris", + "SSE.Views.ProtectDialog.txtEmpty": "Area ini dibutuhkan", + "SSE.Views.ProtectDialog.txtFormatCells": "Format sel", + "SSE.Views.ProtectDialog.txtFormatCols": "Format kolom", + "SSE.Views.ProtectDialog.txtFormatRows": "Format baris", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "Password konfirmasi tidak sama", + "SSE.Views.ProtectDialog.txtInsCols": "Sisipkan kolom", + "SSE.Views.ProtectDialog.txtInsHyper": "Sisipkan hyperlink", + "SSE.Views.ProtectDialog.txtInsRows": "Sisipkan Baris", + "SSE.Views.ProtectDialog.txtObjs": "Edit Objek", + "SSE.Views.ProtectDialog.txtOptional": "opsional", "SSE.Views.ProtectDialog.txtPassword": "Kata Sandi", + "SSE.Views.ProtectDialog.txtPivot": "Gunakan Tabel Pivot dan Grafik Pivot", + "SSE.Views.ProtectDialog.txtProtect": "Proteksi", + "SSE.Views.ProtectDialog.txtRange": "Rentang", "SSE.Views.ProtectDialog.txtRangeName": "Judul", - "SSE.Views.ProtectDialog.txtWarning": "Perhatian: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "SSE.Views.ProtectDialog.txtRepeat": "Ulangi password", + "SSE.Views.ProtectDialog.txtScen": "Edit skenario", + "SSE.Views.ProtectDialog.txtSelLocked": "Pilih sel yang terkunci", + "SSE.Views.ProtectDialog.txtSelUnLocked": "Pilih sel yang tidak dikunci", + "SSE.Views.ProtectDialog.txtSheetDescription": "Cegah perubahan yang tidak diinginkan oleh orang lain dengan membatasi kemampuan mereka untuk mengedit.", + "SSE.Views.ProtectDialog.txtSheetTitle": "Proteksi Sheet", + "SSE.Views.ProtectDialog.txtSort": "Sortasi", + "SSE.Views.ProtectDialog.txtWarning": "Peringatan: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", + "SSE.Views.ProtectDialog.txtWBDescription": "Untuk mencegah pengguna lain menampilkan worksheet tersembunyi, menambahkan, memindahkan, menghapus, atau menyembunyikan worksheet dan mengganti nama worksheet, Anda bisa melindungi struktur workbook dengan password.", + "SSE.Views.ProtectDialog.txtWBTitle": "Proteksi struktur Workbook", "SSE.Views.ProtectRangesDlg.guestText": "Tamu", "SSE.Views.ProtectRangesDlg.lockText": "Dikunci", "SSE.Views.ProtectRangesDlg.textDelete": "Hapus", "SSE.Views.ProtectRangesDlg.textEdit": "Sunting", - "SSE.Views.ProtectRangesDlg.textNew": "baru", + "SSE.Views.ProtectRangesDlg.textEmpty": "Tidak ada rentang yang diizinkan untuk diubah.", + "SSE.Views.ProtectRangesDlg.textNew": "Baru", + "SSE.Views.ProtectRangesDlg.textProtect": "Proteksi Sheet", "SSE.Views.ProtectRangesDlg.textPwd": "Kata Sandi", + "SSE.Views.ProtectRangesDlg.textRange": "Rentang", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "Rentang dibuka dengan password saat sheet diproteksi (ini hanya berfungsi untuk sel yang terkunci)", "SSE.Views.ProtectRangesDlg.textTitle": "Judul", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", + "SSE.Views.ProtectRangesDlg.txtEditRange": "Edit Rentang", + "SSE.Views.ProtectRangesDlg.txtNewRange": "Rentang Baru", "SSE.Views.ProtectRangesDlg.txtNo": "Tidak", + "SSE.Views.ProtectRangesDlg.txtTitle": "Izinkan Pengguna Mengedit Rentang", "SSE.Views.ProtectRangesDlg.txtYes": "Ya", + "SSE.Views.ProtectRangesDlg.warnDelete": "Apakah Anda yakin ingin menghapus nama {0}?", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Kolom", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "Untuk menghapus nilai duplikat, pilih satu atau lebih kolom yang memiliki duplikat.", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Data saya memiliki header", "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Pilih semua", - "SSE.Views.RightMenu.txtChartSettings": "Chart Settings", - "SSE.Views.RightMenu.txtImageSettings": "Image Settings", - "SSE.Views.RightMenu.txtParagraphSettings": "Text Settings", - "SSE.Views.RightMenu.txtSettings": "Common Settings", - "SSE.Views.RightMenu.txtShapeSettings": "Shape Settings", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Hapus duplikat", + "SSE.Views.RightMenu.txtCellSettings": "Pengaturan sel", + "SSE.Views.RightMenu.txtChartSettings": "Pengaturan Bagan", + "SSE.Views.RightMenu.txtImageSettings": "Pengaturan Gambar", + "SSE.Views.RightMenu.txtParagraphSettings": "Pengaturan Paragraf", + "SSE.Views.RightMenu.txtPivotSettings": "Pengaturan tabel pivot", + "SSE.Views.RightMenu.txtSettings": "Pengaturan Umum", + "SSE.Views.RightMenu.txtShapeSettings": "Pengaturan Bentuk", + "SSE.Views.RightMenu.txtSignatureSettings": "Pengaturan tanda tangan", + "SSE.Views.RightMenu.txtSlicerSettings": "Pengaturan slicer", + "SSE.Views.RightMenu.txtSparklineSettings": "Pengaturan sparkline", "SSE.Views.RightMenu.txtTableSettings": "Pengaturan Tabel", - "SSE.Views.RightMenu.txtTextArtSettings": "Text Art Settings", + "SSE.Views.RightMenu.txtTextArtSettings": "Pengaturan Text Art", "SSE.Views.ScaleDialog.textAuto": "Otomatis", + "SSE.Views.ScaleDialog.textError": "Nilai yang dimasukkan tidak tepat.", "SSE.Views.ScaleDialog.textFewPages": "Halaman", - "SSE.Views.ScaleDialog.textHeight": "Ketinggian", + "SSE.Views.ScaleDialog.textFitTo": "Sesuaikan Ke", + "SSE.Views.ScaleDialog.textHeight": "Tinggi", "SSE.Views.ScaleDialog.textManyPages": "Halaman", "SSE.Views.ScaleDialog.textOnePage": "Halaman", + "SSE.Views.ScaleDialog.textScaleTo": "Skala Ke", + "SSE.Views.ScaleDialog.textTitle": "Pengaturan Skala", "SSE.Views.ScaleDialog.textWidth": "Lebar", - "SSE.Views.SetValueDialog.txtMaxText": "The maximum value for this field is {0}", - "SSE.Views.SetValueDialog.txtMinText": "The minimum value for this field is {0}", - "SSE.Views.ShapeSettings.strBackground": "Background color", - "SSE.Views.ShapeSettings.strChange": "Change Autoshape", - "SSE.Views.ShapeSettings.strColor": "Color", - "SSE.Views.ShapeSettings.strFill": "Fill", - "SSE.Views.ShapeSettings.strForeground": "Foreground color", - "SSE.Views.ShapeSettings.strPattern": "Pattern", - "SSE.Views.ShapeSettings.strSize": "Size", - "SSE.Views.ShapeSettings.strStroke": "Stroke", - "SSE.Views.ShapeSettings.strTransparency": "Opacity", + "SSE.Views.SetValueDialog.txtMaxText": "Input maksimal untuk kolom ini adalah {0}", + "SSE.Views.SetValueDialog.txtMinText": "Input minimal untuk kolom ini adalah {0}", + "SSE.Views.ShapeSettings.strBackground": "Warna latar", + "SSE.Views.ShapeSettings.strChange": "Ubah Bentuk Otomatis", + "SSE.Views.ShapeSettings.strColor": "Warna", + "SSE.Views.ShapeSettings.strFill": "Isi", + "SSE.Views.ShapeSettings.strForeground": "Warna latar depan", + "SSE.Views.ShapeSettings.strPattern": "Pola", + "SSE.Views.ShapeSettings.strShadow": "Tampilkan bayangan", + "SSE.Views.ShapeSettings.strSize": "Ukuran", + "SSE.Views.ShapeSettings.strStroke": "Garis", + "SSE.Views.ShapeSettings.strTransparency": "Opasitas", "SSE.Views.ShapeSettings.strType": "Tipe", - "SSE.Views.ShapeSettings.textAdvanced": "Show advanced settings", - "SSE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.
    Please enter a value between 0 pt and 1584 pt.", - "SSE.Views.ShapeSettings.textColor": "Color Fill", - "SSE.Views.ShapeSettings.textDirection": "Direction", - "SSE.Views.ShapeSettings.textEmptyPattern": "No Pattern", - "SSE.Views.ShapeSettings.textFromFile": "From File", - "SSE.Views.ShapeSettings.textFromUrl": "From URL", - "SSE.Views.ShapeSettings.textGradient": "Gradient", - "SSE.Views.ShapeSettings.textGradientFill": "Gradient Fill", - "SSE.Views.ShapeSettings.textImageTexture": "Picture or Texture", - "SSE.Views.ShapeSettings.textLinear": "Linear", - "SSE.Views.ShapeSettings.textNoFill": "No Fill", - "SSE.Views.ShapeSettings.textOriginalSize": "Original Size", - "SSE.Views.ShapeSettings.textPatternFill": "Pattern", - "SSE.Views.ShapeSettings.textPosition": "Jabatan", + "SSE.Views.ShapeSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.ShapeSettings.textAngle": "Sudut", + "SSE.Views.ShapeSettings.textBorderSizeErr": "Nilai yang dimasukkan tidak tepat.
    Silakan masukkan nilai antara 0 pt dan 1584 pt.", + "SSE.Views.ShapeSettings.textColor": "Warna Isi", + "SSE.Views.ShapeSettings.textDirection": "Arah", + "SSE.Views.ShapeSettings.textEmptyPattern": "Tidak ada Pola", + "SSE.Views.ShapeSettings.textFlip": "Flip", + "SSE.Views.ShapeSettings.textFromFile": "Dari File", + "SSE.Views.ShapeSettings.textFromStorage": "Dari Penyimpanan", + "SSE.Views.ShapeSettings.textFromUrl": "Dari URL", + "SSE.Views.ShapeSettings.textGradient": "Gradien", + "SSE.Views.ShapeSettings.textGradientFill": "Isian Gradien", + "SSE.Views.ShapeSettings.textHint270": "Rotasi 90° Berlawanan Jarum Jam", + "SSE.Views.ShapeSettings.textHint90": "Rotasi 90° Searah Jarum Jam", + "SSE.Views.ShapeSettings.textHintFlipH": "Flip Horizontal", + "SSE.Views.ShapeSettings.textHintFlipV": "Flip Vertikal", + "SSE.Views.ShapeSettings.textImageTexture": "Gambar atau Tekstur", + "SSE.Views.ShapeSettings.textLinear": "Linier", + "SSE.Views.ShapeSettings.textNoFill": "Tidak ada Isian", + "SSE.Views.ShapeSettings.textOriginalSize": "Ukuran Original", + "SSE.Views.ShapeSettings.textPatternFill": "Pola", + "SSE.Views.ShapeSettings.textPosition": "Posisi", "SSE.Views.ShapeSettings.textRadial": "Radial", - "SSE.Views.ShapeSettings.textSelectTexture": "Select", - "SSE.Views.ShapeSettings.textStretch": "Stretch", - "SSE.Views.ShapeSettings.textStyle": "Style", - "SSE.Views.ShapeSettings.textTexture": "From Texture", - "SSE.Views.ShapeSettings.textTile": "Tile", - "SSE.Views.ShapeSettings.txtBrownPaper": "Brown Paper", - "SSE.Views.ShapeSettings.txtCanvas": "Canvas", - "SSE.Views.ShapeSettings.txtCarton": "Carton", - "SSE.Views.ShapeSettings.txtDarkFabric": "Dark Fabric", - "SSE.Views.ShapeSettings.txtGrain": "Grain", - "SSE.Views.ShapeSettings.txtGranite": "Granite", - "SSE.Views.ShapeSettings.txtGreyPaper": "Gray Paper", - "SSE.Views.ShapeSettings.txtKnit": "Knit", - "SSE.Views.ShapeSettings.txtLeather": "Leather", - "SSE.Views.ShapeSettings.txtNoBorders": "No Line", - "SSE.Views.ShapeSettings.txtPapyrus": "Papyrus", - "SSE.Views.ShapeSettings.txtWood": "Wood", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Baru Digunakan", + "SSE.Views.ShapeSettings.textRotate90": "Rotasi 90°", + "SSE.Views.ShapeSettings.textRotation": "Rotasi", + "SSE.Views.ShapeSettings.textSelectImage": "Pilih Foto", + "SSE.Views.ShapeSettings.textSelectTexture": "Pilih", + "SSE.Views.ShapeSettings.textStretch": "Rentangkan", + "SSE.Views.ShapeSettings.textStyle": "Model", + "SSE.Views.ShapeSettings.textTexture": "Dari Tekstur", + "SSE.Views.ShapeSettings.textTile": "Petak", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "Tambah titik gradien", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Hilangkan titik gradien", + "SSE.Views.ShapeSettings.txtBrownPaper": "Kertas Coklat", + "SSE.Views.ShapeSettings.txtCanvas": "Kanvas", + "SSE.Views.ShapeSettings.txtCarton": "Karton", + "SSE.Views.ShapeSettings.txtDarkFabric": "Kain Gelap", + "SSE.Views.ShapeSettings.txtGrain": "Butiran", + "SSE.Views.ShapeSettings.txtGranite": "Granit", + "SSE.Views.ShapeSettings.txtGreyPaper": "Kertas Abu-Abu", + "SSE.Views.ShapeSettings.txtKnit": "Rajut", + "SSE.Views.ShapeSettings.txtLeather": "Kulit", + "SSE.Views.ShapeSettings.txtNoBorders": "Tidak ada Garis", + "SSE.Views.ShapeSettings.txtPapyrus": "Papirus", + "SSE.Views.ShapeSettings.txtWood": "Kayu", "SSE.Views.ShapeSettingsAdvanced.strColumns": "Kolom", - "SSE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", + "SSE.Views.ShapeSettingsAdvanced.strMargins": "Lapisan Teks", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Jangan pindah atau ubah dengan sel", + "SSE.Views.ShapeSettingsAdvanced.textAlt": "Teks Alternatif", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik, atau tabel.", "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Judul", - "SSE.Views.ShapeSettingsAdvanced.textArrows": "Arrows", - "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size", - "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style", - "SSE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", - "SSE.Views.ShapeSettingsAdvanced.textBottom": "Bottom", - "SSE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type", + "SSE.Views.ShapeSettingsAdvanced.textAngle": "Sudut", + "SSE.Views.ShapeSettingsAdvanced.textArrows": "Tanda panah", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "AutoFit", + "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Ukuran Mulai", + "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Gaya Mulai", + "SSE.Views.ShapeSettingsAdvanced.textBevel": "Miring", + "SSE.Views.ShapeSettingsAdvanced.textBottom": "Bawah", + "SSE.Views.ShapeSettingsAdvanced.textCapType": "Tipe Cap", "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Jumlah Kolom", - "SSE.Views.ShapeSettingsAdvanced.textEndSize": "End Size", - "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style", - "SSE.Views.ShapeSettingsAdvanced.textFlat": "Flat", - "SSE.Views.ShapeSettingsAdvanced.textHeight": "Height", - "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Join Type", - "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Constant Proportions", - "SSE.Views.ShapeSettingsAdvanced.textLeft": "Left", - "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Line Style", - "SSE.Views.ShapeSettingsAdvanced.textMiter": "Miter", - "SSE.Views.ShapeSettingsAdvanced.textRight": "Right", - "SSE.Views.ShapeSettingsAdvanced.textRound": "Round", - "SSE.Views.ShapeSettingsAdvanced.textSize": "Size", - "SSE.Views.ShapeSettingsAdvanced.textSquare": "Square", - "SSE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced Settings", - "SSE.Views.ShapeSettingsAdvanced.textTop": "Top", - "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows", - "SSE.Views.ShapeSettingsAdvanced.textWidth": "Width", + "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Ukuran Akhir", + "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Model Akhir", + "SSE.Views.ShapeSettingsAdvanced.textFlat": "Datar", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Flipped", + "SSE.Views.ShapeSettingsAdvanced.textHeight": "Tinggi", + "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Secara Horizontal", + "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Gabungkan Tipe", + "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporsi Konstan", + "SSE.Views.ShapeSettingsAdvanced.textLeft": "Kiri", + "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Model Garis", + "SSE.Views.ShapeSettingsAdvanced.textMiter": "Siku-siku", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Pindahkan tapi tidak digabungkan dengan sel", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Izinkan teks keluar dari bentuk", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Ubah ukuran bentuk agar cocok ke teks", + "SSE.Views.ShapeSettingsAdvanced.textRight": "Kanan", + "SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotasi", + "SSE.Views.ShapeSettingsAdvanced.textRound": "Bulat", + "SSE.Views.ShapeSettingsAdvanced.textSize": "Ukuran", + "SSE.Views.ShapeSettingsAdvanced.textSnap": "Snapping Sel", + "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing di antara kolom", + "SSE.Views.ShapeSettingsAdvanced.textSquare": "Persegi", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Kotak Teks", + "SSE.Views.ShapeSettingsAdvanced.textTitle": "Bentuk - Pengaturan Lanjut", + "SSE.Views.ShapeSettingsAdvanced.textTop": "Atas", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Pindahkan dan gabungkan dengan sel", + "SSE.Views.ShapeSettingsAdvanced.textVertically": "Secara Vertikal", + "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Bobot & Panah", + "SSE.Views.ShapeSettingsAdvanced.textWidth": "Lebar", "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Peringatan", + "SSE.Views.SignatureSettings.strDelete": "Hilangkan Tandatangan", + "SSE.Views.SignatureSettings.strDetails": "Detail Tanda Tangan", + "SSE.Views.SignatureSettings.strInvalid": "Tanda tangan tidak valid", + "SSE.Views.SignatureSettings.strRequested": "Penandatangan yang diminta", + "SSE.Views.SignatureSettings.strSetup": "Setup Tanda Tangan", + "SSE.Views.SignatureSettings.strSign": "Tandatangan", + "SSE.Views.SignatureSettings.strSignature": "Tanda Tangan", + "SSE.Views.SignatureSettings.strSigner": "Penandatangan", + "SSE.Views.SignatureSettings.strValid": "Tanda tangan valid", + "SSE.Views.SignatureSettings.txtContinueEditing": "Tetap edit", + "SSE.Views.SignatureSettings.txtEditWarning": "Perubahan akan menghilangkan tanda tangan dari spreadsheet.
    Lanjutkan?", + "SSE.Views.SignatureSettings.txtRemoveWarning": "Apakah Anda ingin menghilangkan tandatangan ini?
    Proses tidak bisa dikembalikan.", + "SSE.Views.SignatureSettings.txtRequestedSignatures": "Spreadsheet ini perlu ditandatangani.", + "SSE.Views.SignatureSettings.txtSigned": "Tandatangan valid sudah ditambahkan ke spreadhseet. Spreadsheet diproteksi untuk diedit.", + "SSE.Views.SignatureSettings.txtSignedInvalid": "Beberapa tanda tangan digital di spreadsheet tidak valid atau tidak bisa diverifikasi. Spreadsheet diproteksi untuk diedit.", "SSE.Views.SlicerAddDialog.textColumns": "Kolom", + "SSE.Views.SlicerAddDialog.txtTitle": "Sisipkan Slicer", + "SSE.Views.SlicerSettings.strHideNoData": "Sembunyikan Item Tanpa Data", + "SSE.Views.SlicerSettings.strIndNoData": "Tunjukkan item tanpa data secara visual", + "SSE.Views.SlicerSettings.strShowDel": "Tampilkan item yang dihapus dari sumber data", + "SSE.Views.SlicerSettings.strShowNoData": "Tampilkan item tanpa data terakhir", + "SSE.Views.SlicerSettings.strSorting": "Sortasi dan pemfilteran", "SSE.Views.SlicerSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "SSE.Views.SlicerSettings.textAsc": "Sortasi Naik", + "SSE.Views.SlicerSettings.textAZ": "A sampai Z", "SSE.Views.SlicerSettings.textButtons": "Tombol", "SSE.Views.SlicerSettings.textColumns": "Kolom", - "SSE.Views.SlicerSettings.textHeight": "Ketinggian", + "SSE.Views.SlicerSettings.textDesc": "Sortasi Turun", + "SSE.Views.SlicerSettings.textHeight": "Tinggi", "SSE.Views.SlicerSettings.textHor": "Horisontal", "SSE.Views.SlicerSettings.textKeepRatio": "Proporsi Konstan", - "SSE.Views.SlicerSettings.textPosition": "Jabatan", + "SSE.Views.SlicerSettings.textLargeSmall": "Terbesar ke Terkecil", + "SSE.Views.SlicerSettings.textLock": "Nonaktifkan pengubahan ukuran atau pemindahan", + "SSE.Views.SlicerSettings.textNewOld": "terbaru sampai tertua", + "SSE.Views.SlicerSettings.textOldNew": "tertua ke terbaru", + "SSE.Views.SlicerSettings.textPosition": "Posisi", "SSE.Views.SlicerSettings.textSize": "Ukuran", + "SSE.Views.SlicerSettings.textSmallLarge": "kecil ke besar", "SSE.Views.SlicerSettings.textStyle": "Model", "SSE.Views.SlicerSettings.textVert": "Vertikal", "SSE.Views.SlicerSettings.textWidth": "Lebar", + "SSE.Views.SlicerSettings.textZA": "Z ke A", "SSE.Views.SlicerSettingsAdvanced.strButtons": "Tombol", "SSE.Views.SlicerSettingsAdvanced.strColumns": "Kolom", - "SSE.Views.SlicerSettingsAdvanced.strHeight": "Ketinggian", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Tinggi", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Sembunyikan Item Tanpa Data", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Tunjukkan item tanpa data secara visual", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Referensi", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Tampilkan item yang dihapus dari sumber data", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Tampilkan header", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Tampilkan item tanpa data terakhir", "SSE.Views.SlicerSettingsAdvanced.strSize": "Ukuran", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Sortasi & Pemfilteran", "SSE.Views.SlicerSettingsAdvanced.strStyle": "Model", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Gaya & Ukuran", "SSE.Views.SlicerSettingsAdvanced.strWidth": "Lebar", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Jangan pindah atau ubah dengan sel", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Teks Alternatif", "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik atau tabel.", "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Judul", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Sortasi Naik", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A sampai Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "Sortasi Turun", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Beri nama untuk dipakai di formula", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "Header", "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Proporsi Konstan", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "Terbesar ke Terkecil", "SSE.Views.SlicerSettingsAdvanced.textName": "Nama", - "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Kolom ini harus diisi", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "terbaru sampai tertua", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "tertua ke terbaru", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Pindahkan tapi tidak digabungkan dengan sel", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "kecil ke besar", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "Snapping Sel", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Sortasi", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Nama sumber", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Pengaturan - Lanjut Slicer", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Pindahkan dan gabungkan dengan sel", + "SSE.Views.SlicerSettingsAdvanced.textZA": "Z ke A", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Area ini dibutuhkan", + "SSE.Views.SortDialog.errorEmpty": "Semua kriteria sortasi harus memiliki kolom atau baris yang sudah ditentukan.", + "SSE.Views.SortDialog.errorMoreOneCol": "Lebih dari satu kolom dipilih", + "SSE.Views.SortDialog.errorMoreOneRow": "Lebih dari satu baris dipilih", + "SSE.Views.SortDialog.errorNotOriginalCol": "Kolom yang Anda pilih tidak di rentang asli yang dipilih.", + "SSE.Views.SortDialog.errorNotOriginalRow": "Baris yang Anda pilih tidak berada di rentang asli yang dipilih.", + "SSE.Views.SortDialog.errorSameColumnColor": "%1 sedang diurutkan menurut warna yang sama lebih dari 1 kali.
    Hapus kriteria sortasi duplikat dan coba lagi", + "SSE.Views.SortDialog.errorSameColumnValue": "%1 sedang diurutkan berdasarkan nilai lebih dari 1 kali.
    Hapus kriteria sortasi duplikat dan coba lagi", + "SSE.Views.SortDialog.textAdd": "Tambah level", + "SSE.Views.SortDialog.textAsc": "Sortasi Naik", "SSE.Views.SortDialog.textAuto": "Otomatis", + "SSE.Views.SortDialog.textAZ": "A sampai Z", "SSE.Views.SortDialog.textBelow": "Di bawah", + "SSE.Views.SortDialog.textCellColor": "Warna sel", "SSE.Views.SortDialog.textColumn": "Kolom", + "SSE.Views.SortDialog.textCopy": "Copy level", + "SSE.Views.SortDialog.textDelete": "Hapus level", + "SSE.Views.SortDialog.textDesc": "Sortasi Turun", + "SSE.Views.SortDialog.textDown": "Pindah ke level bawah", "SSE.Views.SortDialog.textFontColor": "Warna Huruf", "SSE.Views.SortDialog.textLeft": "Kiri", - "SSE.Views.SortDialog.textNone": "tidak ada", + "SSE.Views.SortDialog.textMoreCols": "(Lebih banyak kolom...)", + "SSE.Views.SortDialog.textMoreRows": "(Lebih banyak baris...)", + "SSE.Views.SortDialog.textNone": "Tidak ada", "SSE.Views.SortDialog.textOptions": "Pilihan", "SSE.Views.SortDialog.textOrder": "Pesanan", "SSE.Views.SortDialog.textRight": "Kanan", "SSE.Views.SortDialog.textRow": "Baris", "SSE.Views.SortDialog.textSortBy": "Urutkan berdasar", + "SSE.Views.SortDialog.textThenBy": "Then by", "SSE.Views.SortDialog.textTop": "Atas", + "SSE.Views.SortDialog.textUp": "Pindah ke level atas", + "SSE.Views.SortDialog.textValues": "Nilai", + "SSE.Views.SortDialog.textZA": "Z ke A", + "SSE.Views.SortDialog.txtInvalidRange": "Rentang sel tidak valid.", + "SSE.Views.SortDialog.txtTitle": "Sortasi", + "SSE.Views.SortFilterDialog.textAsc": "Sortasi naik (A sampai Z) dengan", + "SSE.Views.SortFilterDialog.textDesc": "Sortasi Turun (Z sampai A) dengan", + "SSE.Views.SortFilterDialog.txtTitle": "Sortasi", "SSE.Views.SortOptionsDialog.textCase": "Harus sama persis", + "SSE.Views.SortOptionsDialog.textHeaders": "Data saya memiliki header", + "SSE.Views.SortOptionsDialog.textLeftRight": "Sortasi kiri ke kanan", + "SSE.Views.SortOptionsDialog.textOrientation": "Orientasi", + "SSE.Views.SortOptionsDialog.textTitle": "Pengaturan Sortasi", + "SSE.Views.SortOptionsDialog.textTopBottom": "Sortasi dari atas ke bawah", "SSE.Views.SpecialPasteDialog.textAdd": "Tambahkan", "SSE.Views.SpecialPasteDialog.textAll": "Semua", + "SSE.Views.SpecialPasteDialog.textBlanks": "Lewati kosong", + "SSE.Views.SpecialPasteDialog.textColWidth": "Lebar kolom", "SSE.Views.SpecialPasteDialog.textComments": "Komentar", - "SSE.Views.SpecialPasteDialog.textNone": "tidak ada", + "SSE.Views.SpecialPasteDialog.textDiv": "Bagi", + "SSE.Views.SpecialPasteDialog.textFFormat": "Formula & Pemformatan", + "SSE.Views.SpecialPasteDialog.textFNFormat": "Formula & nomor format", + "SSE.Views.SpecialPasteDialog.textFormats": "Format", + "SSE.Views.SpecialPasteDialog.textFormulas": "Formulas", + "SSE.Views.SpecialPasteDialog.textFWidth": "Formula & lebar kolom", + "SSE.Views.SpecialPasteDialog.textMult": "Perkalian", + "SSE.Views.SpecialPasteDialog.textNone": "Tidak ada", + "SSE.Views.SpecialPasteDialog.textOperation": "Operasi", "SSE.Views.SpecialPasteDialog.textPaste": "Tempel", + "SSE.Views.SpecialPasteDialog.textSub": "Mengurangi", + "SSE.Views.SpecialPasteDialog.textTitle": "Paste Khusus", + "SSE.Views.SpecialPasteDialog.textTranspose": "Transpose", + "SSE.Views.SpecialPasteDialog.textValues": "Nilai", + "SSE.Views.SpecialPasteDialog.textVFormat": "Nilai & Pemformatan", + "SSE.Views.SpecialPasteDialog.textVNFormat": "Nilai & nomor format", + "SSE.Views.SpecialPasteDialog.textWBorders": "Semua kecuali batas", + "SSE.Views.Spellcheck.noSuggestions": "Tidak ada saran spelling", "SSE.Views.Spellcheck.textChange": "Ganti", + "SSE.Views.Spellcheck.textChangeAll": "Ubah Semua", "SSE.Views.Spellcheck.textIgnore": "Abaikan", "SSE.Views.Spellcheck.textIgnoreAll": "Abaikan Semua", - "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copy to end)", - "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Move to end)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Copy before sheet", - "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Move before sheet", - "SSE.Views.Statusbar.itemCopy": "Copy", - "SSE.Views.Statusbar.itemDelete": "Delete", - "SSE.Views.Statusbar.itemHidden": "Hidden", - "SSE.Views.Statusbar.itemHide": "Hide", - "SSE.Views.Statusbar.itemInsert": "Insert", + "SSE.Views.Spellcheck.txtAddToDictionary": "Tambah ke Kamus", + "SSE.Views.Spellcheck.txtComplete": "Pemeriksaan spelling sudah selesai", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "Kamus Bahasa", + "SSE.Views.Spellcheck.txtNextTip": "Pergi ke kata berikutnya", + "SSE.Views.Spellcheck.txtSpelling": "Spelling", + "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Salin sampai akhir)", + "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Pindah ke akhir)", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Paste sebelum sheet", + "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Pindahkan sebelum sheet", + "SSE.Views.Statusbar.filteredRecordsText": "{0} dari {1} catatan difilter", + "SSE.Views.Statusbar.filteredText": "Mode filter", + "SSE.Views.Statusbar.itemAverage": "Rata-rata", + "SSE.Views.Statusbar.itemCopy": "Salin", + "SSE.Views.Statusbar.itemCount": "Dihitung", + "SSE.Views.Statusbar.itemDelete": "Hapus", + "SSE.Views.Statusbar.itemHidden": "Tersembunyi", + "SSE.Views.Statusbar.itemHide": "Sembunyikan", + "SSE.Views.Statusbar.itemInsert": "Sisipkan", "SSE.Views.Statusbar.itemMaximum": "Maksimal", - "SSE.Views.Statusbar.itemMove": "Move", - "SSE.Views.Statusbar.itemRename": "Rename", + "SSE.Views.Statusbar.itemMinimum": "Minimum", + "SSE.Views.Statusbar.itemMove": "Pindah", + "SSE.Views.Statusbar.itemProtect": "Proteksi", + "SSE.Views.Statusbar.itemRename": "Ganti nama", + "SSE.Views.Statusbar.itemStatus": "Status penyimpanan", "SSE.Views.Statusbar.itemSum": "Jumlah", - "SSE.Views.Statusbar.itemTabColor": "Tab Color", - "SSE.Views.Statusbar.RenameDialog.errNameExists": "Worksheet with such a name already exists.", - "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "A sheet name cannot contain the following characters: \\/*?[]:", - "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Sheet Name", - "SSE.Views.Statusbar.textAverage": "AVERAGE", - "SSE.Views.Statusbar.textCount": "COUNT", - "SSE.Views.Statusbar.textNewColor": "Add New Custom Color", - "SSE.Views.Statusbar.textNoColor": "No Color", - "SSE.Views.Statusbar.textSum": "SUM", - "SSE.Views.Statusbar.tipAddTab": "Add worksheet", - "SSE.Views.Statusbar.tipFirst": "Scroll to First Sheet", - "SSE.Views.Statusbar.tipLast": "Scroll to Last Sheet", - "SSE.Views.Statusbar.tipNext": "Scroll Sheet List Right", - "SSE.Views.Statusbar.tipPrev": "Scroll Sheet List Left", - "SSE.Views.Statusbar.tipZoomFactor": "Magnification", - "SSE.Views.Statusbar.tipZoomIn": "Zoom In", - "SSE.Views.Statusbar.tipZoomOut": "Zoom Out", - "SSE.Views.Statusbar.zoomText": "Zoom {0}%", - "SSE.Views.TableOptionsDialog.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.Views.TableOptionsDialog.txtEmpty": "This field is required", - "SSE.Views.TableOptionsDialog.txtFormat": "Create table", - "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.TableOptionsDialog.txtTitle": "Title", + "SSE.Views.Statusbar.itemTabColor": "Warna Tab", + "SSE.Views.Statusbar.itemUnProtect": "Buka Proteksi", + "SSE.Views.Statusbar.RenameDialog.errNameExists": "Worksheet dengan nama ini sudah ada.", + "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Nama sheet tidak boleh berisi karakter berikut: \\/*?[]:", + "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nama Sheet", + "SSE.Views.Statusbar.selectAllSheets": "Pilih Semua Sheet", + "SSE.Views.Statusbar.sheetIndexText": "Sheet {0} dari {1}", + "SSE.Views.Statusbar.textAverage": "Rata-rata", + "SSE.Views.Statusbar.textCount": "Dihitung", + "SSE.Views.Statusbar.textMax": "Maks", + "SSE.Views.Statusbar.textMin": "Min", + "SSE.Views.Statusbar.textNewColor": "Tambahkan warna khusus baru", + "SSE.Views.Statusbar.textNoColor": "Tidak ada Warna", + "SSE.Views.Statusbar.textSum": "Jumlah", + "SSE.Views.Statusbar.tipAddTab": "Tambah worksheet", + "SSE.Views.Statusbar.tipFirst": "Gulir ke sheet pertama", + "SSE.Views.Statusbar.tipLast": "Gulir ke sheet terakhir", + "SSE.Views.Statusbar.tipListOfSheets": "List Sheet", + "SSE.Views.Statusbar.tipNext": "Gulir daftar sheet ke kanan", + "SSE.Views.Statusbar.tipPrev": "Gulir daftar sheet ke kiri", + "SSE.Views.Statusbar.tipZoomFactor": "Pembesaran", + "SSE.Views.Statusbar.tipZoomIn": "Perbesar", + "SSE.Views.Statusbar.tipZoomOut": "Perkecil", + "SSE.Views.Statusbar.ungroupSheets": "Pisahkan grup Sheet", + "SSE.Views.Statusbar.zoomText": "Perbesar {0}%", + "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Operasi tidak bisa dilakukan pada rentang sel yang dipilih.
    Pilih rentang data seragam yang berbeda dari yang sudah ada dan coba lagi.", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operasi tidak bisa diselesaikan untuk rentang sel yang dipilih.
    Pilih rentang agar baris pertama tabel berada di baris yang samadan menghasilkan tabel yang overlap dengan tabel saat ini.", + "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Operasi tidak bisa diselesaikan untuk rentang sel yang dipilih.
    Pilih rentang yang tidak termasuk di tabel lain.", + "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Formula array multi sel tidak diizinkan di tabel.", + "SSE.Views.TableOptionsDialog.txtEmpty": "Area ini dibutuhkan", + "SSE.Views.TableOptionsDialog.txtFormat": "Buat Tabel", + "SSE.Views.TableOptionsDialog.txtInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "SSE.Views.TableOptionsDialog.txtNote": "Header harus tetap di baris yang sama, dan rentang tabel yang dihasilkan harus tumpang tindih dengan rentang tabel asli.", + "SSE.Views.TableOptionsDialog.txtTitle": "Judul", "SSE.Views.TableSettings.deleteColumnText": "Hapus Kolom", "SSE.Views.TableSettings.deleteRowText": "Hapus Baris", "SSE.Views.TableSettings.deleteTableText": "Hapus Tabel", "SSE.Views.TableSettings.insertColumnLeftText": "Sisipkan Kolom di Kiri", "SSE.Views.TableSettings.insertColumnRightText": "Sisipkan Kolom di Kanan", + "SSE.Views.TableSettings.insertRowAboveText": "Sisipkan Baris di Atas", "SSE.Views.TableSettings.insertRowBelowText": "Sisipkan Baris di Bawah", "SSE.Views.TableSettings.notcriticalErrorTitle": "Peringatan", + "SSE.Views.TableSettings.selectColumnText": "Pilih Semua Kolom", + "SSE.Views.TableSettings.selectDataText": "Pilih Data Kolom", "SSE.Views.TableSettings.selectRowText": "Pilih Baris", "SSE.Views.TableSettings.selectTableText": "Pilih Tabel", + "SSE.Views.TableSettings.textActions": "Tindakan Tabel", "SSE.Views.TableSettings.textAdvanced": "Tampilkan pengaturan lanjut", "SSE.Views.TableSettings.textBanded": "Bergaris", "SSE.Views.TableSettings.textColumns": "Kolom", + "SSE.Views.TableSettings.textConvertRange": "Ubah ke rentang", "SSE.Views.TableSettings.textEdit": "Baris & Kolom", "SSE.Views.TableSettings.textEmptyTemplate": "Tidak ada template", - "SSE.Views.TableSettings.textFirst": "pertama", - "SSE.Views.TableSettings.textLast": "terakhir", + "SSE.Views.TableSettings.textExistName": "KESALAHAN! Rentang dengan nama ini sudah ada", + "SSE.Views.TableSettings.textFilter": "Tombol filter", + "SSE.Views.TableSettings.textFirst": "Pertama", + "SSE.Views.TableSettings.textHeader": "Header", + "SSE.Views.TableSettings.textInvalidName": "KESALAHAN! Nama tabel tidak tepat", + "SSE.Views.TableSettings.textIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", + "SSE.Views.TableSettings.textLast": "Terakhir", + "SSE.Views.TableSettings.textLongOperation": "Operasi panjang", + "SSE.Views.TableSettings.textPivot": "Sisipkan Tabel Pivot", + "SSE.Views.TableSettings.textRemDuplicates": "Hapus duplikat", + "SSE.Views.TableSettings.textReservedName": "Nama yang Anda coba gunakan sudah direferensikan dalam rumus sel. Mohon gunakan nama lain.", + "SSE.Views.TableSettings.textResize": "Ubah ukuran tabel", "SSE.Views.TableSettings.textRows": "Baris", + "SSE.Views.TableSettings.textSelectData": "Pilih data", + "SSE.Views.TableSettings.textSlicer": "Sisipkan slicer", + "SSE.Views.TableSettings.textTableName": "Nama Tabel", "SSE.Views.TableSettings.textTemplate": "Pilih Dari Template", + "SSE.Views.TableSettings.textTotal": "Total", + "SSE.Views.TableSettings.warnLongOperation": "Operasi yang akan Anda lakukan mungkin membutukan waktu yang cukup lama untuk selesai.
    Apakah anda yakin untuk lanjut?", + "SSE.Views.TableSettingsAdvanced.textAlt": "Teks Alternatif", "SSE.Views.TableSettingsAdvanced.textAltDescription": "Deskripsi", + "SSE.Views.TableSettingsAdvanced.textAltTip": "Representasi alternatif berbasis teks dari informasi objek visual, yang akan dibaca kepada orang dengan gangguan penglihatan atau kognitif untuk membantu mereka lebih memahami informasi yang ada dalam gambar, autoshape, grafik atau tabel.", "SSE.Views.TableSettingsAdvanced.textAltTitle": "Judul", "SSE.Views.TableSettingsAdvanced.textTitle": "Tabel - Pengaturan Lanjut", - "SSE.Views.TextArtSettings.strBackground": "Background color", - "SSE.Views.TextArtSettings.strColor": "Color", - "SSE.Views.TextArtSettings.strFill": "Fill", - "SSE.Views.TextArtSettings.strForeground": "Foreground color", - "SSE.Views.TextArtSettings.strPattern": "Pattern", - "SSE.Views.TextArtSettings.strSize": "Size", - "SSE.Views.TextArtSettings.strStroke": "Stroke", - "SSE.Views.TextArtSettings.strTransparency": "Opacity", + "SSE.Views.TextArtSettings.strBackground": "Warna latar", + "SSE.Views.TextArtSettings.strColor": "Warna", + "SSE.Views.TextArtSettings.strFill": "Isi", + "SSE.Views.TextArtSettings.strForeground": "Warna latar depan", + "SSE.Views.TextArtSettings.strPattern": "Pola", + "SSE.Views.TextArtSettings.strSize": "Ukuran", + "SSE.Views.TextArtSettings.strStroke": "Garis", + "SSE.Views.TextArtSettings.strTransparency": "Opasitas", "SSE.Views.TextArtSettings.strType": "Tipe", - "SSE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
    Please enter a value between 0 pt and 1584 pt.", - "SSE.Views.TextArtSettings.textColor": "Color Fill", - "SSE.Views.TextArtSettings.textDirection": "Direction", - "SSE.Views.TextArtSettings.textEmptyPattern": "No Pattern", - "SSE.Views.TextArtSettings.textFromFile": "From File", - "SSE.Views.TextArtSettings.textFromUrl": "From URL", - "SSE.Views.TextArtSettings.textGradient": "Gradient", - "SSE.Views.TextArtSettings.textGradientFill": "Gradient Fill", - "SSE.Views.TextArtSettings.textImageTexture": "Picture or Texture", - "SSE.Views.TextArtSettings.textLinear": "Linear", - "SSE.Views.TextArtSettings.textNoFill": "No Fill", - "SSE.Views.TextArtSettings.textPatternFill": "Pattern", - "SSE.Views.TextArtSettings.textPosition": "Jabatan", + "SSE.Views.TextArtSettings.textAngle": "Sudut", + "SSE.Views.TextArtSettings.textBorderSizeErr": "Nilai yang dimasukkan tidak tepat.
    Silakan masukkan nilai antara 0 pt dan 1584 pt.", + "SSE.Views.TextArtSettings.textColor": "Warna Isi", + "SSE.Views.TextArtSettings.textDirection": "Arah", + "SSE.Views.TextArtSettings.textEmptyPattern": "Tidak ada Pola", + "SSE.Views.TextArtSettings.textFromFile": "Dari File", + "SSE.Views.TextArtSettings.textFromUrl": "Dari URL", + "SSE.Views.TextArtSettings.textGradient": "Gradien", + "SSE.Views.TextArtSettings.textGradientFill": "Isian Gradien", + "SSE.Views.TextArtSettings.textImageTexture": "Gambar atau Tekstur", + "SSE.Views.TextArtSettings.textLinear": "Linier", + "SSE.Views.TextArtSettings.textNoFill": "Tidak ada Isian", + "SSE.Views.TextArtSettings.textPatternFill": "Pola", + "SSE.Views.TextArtSettings.textPosition": "Posisi", "SSE.Views.TextArtSettings.textRadial": "Radial", - "SSE.Views.TextArtSettings.textSelectTexture": "Select", - "SSE.Views.TextArtSettings.textStretch": "Stretch", - "SSE.Views.TextArtSettings.textStyle": "Style", + "SSE.Views.TextArtSettings.textSelectTexture": "Pilih", + "SSE.Views.TextArtSettings.textStretch": "Rentangkan", + "SSE.Views.TextArtSettings.textStyle": "Model", "SSE.Views.TextArtSettings.textTemplate": "Template", - "SSE.Views.TextArtSettings.textTexture": "From Texture", - "SSE.Views.TextArtSettings.textTile": "Tile", + "SSE.Views.TextArtSettings.textTexture": "Dari Tekstur", + "SSE.Views.TextArtSettings.textTile": "Petak", "SSE.Views.TextArtSettings.textTransform": "Transform", - "SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", - "SSE.Views.TextArtSettings.txtCanvas": "Canvas", - "SSE.Views.TextArtSettings.txtCarton": "Carton", - "SSE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric", - "SSE.Views.TextArtSettings.txtGrain": "Grain", - "SSE.Views.TextArtSettings.txtGranite": "Granite", - "SSE.Views.TextArtSettings.txtGreyPaper": "Gray Paper", - "SSE.Views.TextArtSettings.txtKnit": "Knit", - "SSE.Views.TextArtSettings.txtLeather": "Leather", - "SSE.Views.TextArtSettings.txtNoBorders": "No Line", - "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", - "SSE.Views.TextArtSettings.txtWood": "Wood", - "SSE.Views.Toolbar.capBtnAddComment": "Tambahkan komentar", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "Tambah titik gradien", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Hilangkan titik gradien", + "SSE.Views.TextArtSettings.txtBrownPaper": "Kertas Coklat", + "SSE.Views.TextArtSettings.txtCanvas": "Kanvas", + "SSE.Views.TextArtSettings.txtCarton": "Karton", + "SSE.Views.TextArtSettings.txtDarkFabric": "Kain Gelap", + "SSE.Views.TextArtSettings.txtGrain": "Butiran", + "SSE.Views.TextArtSettings.txtGranite": "Granit", + "SSE.Views.TextArtSettings.txtGreyPaper": "Kertas Abu-Abu", + "SSE.Views.TextArtSettings.txtKnit": "Rajut", + "SSE.Views.TextArtSettings.txtLeather": "Kulit", + "SSE.Views.TextArtSettings.txtNoBorders": "Tidak ada Garis", + "SSE.Views.TextArtSettings.txtPapyrus": "Papirus", + "SSE.Views.TextArtSettings.txtWood": "Kayu", + "SSE.Views.Toolbar.capBtnAddComment": "Tambahkan Komentar", + "SSE.Views.Toolbar.capBtnColorSchemas": "Skema Warna", "SSE.Views.Toolbar.capBtnComment": "Komentar", + "SSE.Views.Toolbar.capBtnInsHeader": "Header & Footer", + "SSE.Views.Toolbar.capBtnInsSlicer": "Slicer", + "SSE.Views.Toolbar.capBtnInsSymbol": "Simbol", "SSE.Views.Toolbar.capBtnMargins": "Margin", + "SSE.Views.Toolbar.capBtnPageOrient": "Orientasi", "SSE.Views.Toolbar.capBtnPageSize": "Ukuran", + "SSE.Views.Toolbar.capBtnPrintArea": "Print Area", + "SSE.Views.Toolbar.capBtnPrintTitles": "Print Judul", + "SSE.Views.Toolbar.capBtnScale": "Skala ke Fit", "SSE.Views.Toolbar.capImgAlign": "Ratakan", "SSE.Views.Toolbar.capImgBackward": "Mundurkan", "SSE.Views.Toolbar.capImgForward": "Majukan", "SSE.Views.Toolbar.capImgGroup": "Grup", "SSE.Views.Toolbar.capInsertChart": "Bagan", + "SSE.Views.Toolbar.capInsertEquation": "Persamaan", + "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink", "SSE.Views.Toolbar.capInsertImage": "Gambar", + "SSE.Views.Toolbar.capInsertShape": "Bentuk", + "SSE.Views.Toolbar.capInsertSpark": "Sparkline", "SSE.Views.Toolbar.capInsertTable": "Tabel", - "SSE.Views.Toolbar.mniImageFromFile": "Picture from File", - "SSE.Views.Toolbar.mniImageFromUrl": "Picture from URL", - "SSE.Views.Toolbar.textAlignBottom": "Align Bottom", - "SSE.Views.Toolbar.textAlignCenter": "Align Center", - "SSE.Views.Toolbar.textAlignJust": "Justified", - "SSE.Views.Toolbar.textAlignLeft": "Align Left", - "SSE.Views.Toolbar.textAlignMiddle": "Align Middle", - "SSE.Views.Toolbar.textAlignRight": "Align Right", - "SSE.Views.Toolbar.textAlignTop": "Align Top", - "SSE.Views.Toolbar.textAllBorders": "All Borders", + "SSE.Views.Toolbar.capInsertText": "Kotak Teks", + "SSE.Views.Toolbar.mniImageFromFile": "Gambar dari File", + "SSE.Views.Toolbar.mniImageFromStorage": "Gambar dari Penyimpanan", + "SSE.Views.Toolbar.mniImageFromUrl": "Gambar dari URL", + "SSE.Views.Toolbar.textAddPrintArea": "Tambah ke Area Print", + "SSE.Views.Toolbar.textAlignBottom": "Rata Bawah", + "SSE.Views.Toolbar.textAlignCenter": "Rata Tengah", + "SSE.Views.Toolbar.textAlignJust": "Rata Kiri-Kanan", + "SSE.Views.Toolbar.textAlignLeft": "Sejajar kiri", + "SSE.Views.Toolbar.textAlignMiddle": "Rata di Tengah", + "SSE.Views.Toolbar.textAlignRight": "Rata Kanan", + "SSE.Views.Toolbar.textAlignTop": "Rata Atas", + "SSE.Views.Toolbar.textAllBorders": "Semua Pembatas", "SSE.Views.Toolbar.textAuto": "Otomatis", "SSE.Views.Toolbar.textAutoColor": "Otomatis", - "SSE.Views.Toolbar.textBold": "Bold", - "SSE.Views.Toolbar.textBordersColor": "Border Color", - "SSE.Views.Toolbar.textBottomBorders": "Bottom Borders", - "SSE.Views.Toolbar.textCenterBorders": "Inside Vertical Borders", - "SSE.Views.Toolbar.textClockwise": "Angle Clockwise", - "SSE.Views.Toolbar.textCounterCw": "Angle Counterclockwise", - "SSE.Views.Toolbar.textDelLeft": "Shift Cells Left", - "SSE.Views.Toolbar.textDelUp": "Shift Cells Up", - "SSE.Views.Toolbar.textDiagDownBorder": "Diagonal Down Border", - "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border", - "SSE.Views.Toolbar.textEntireCol": "Entire Column", - "SSE.Views.Toolbar.textEntireRow": "Entire Row", + "SSE.Views.Toolbar.textBold": "Tebal", + "SSE.Views.Toolbar.textBordersColor": "Warna Pembatas", + "SSE.Views.Toolbar.textBordersStyle": "Gaya Pembatas", + "SSE.Views.Toolbar.textBottom": "Bawah: ", + "SSE.Views.Toolbar.textBottomBorders": "Batas Bawah", + "SSE.Views.Toolbar.textCenterBorders": "Batas Dalam Vertikal", + "SSE.Views.Toolbar.textClearPrintArea": "Bersihkan Area Print", + "SSE.Views.Toolbar.textClearRule": "Bersihkan Aturan", + "SSE.Views.Toolbar.textClockwise": "Sudut Searah Jarum Jam", + "SSE.Views.Toolbar.textColorScales": "Skala Warna", + "SSE.Views.Toolbar.textCounterCw": "Sudut Berlawanan Jarum Jam", + "SSE.Views.Toolbar.textDataBars": "Bar Data", + "SSE.Views.Toolbar.textDelLeft": "Pindahkan sel ke kiri", + "SSE.Views.Toolbar.textDelUp": "Geser Sel ke Atas", + "SSE.Views.Toolbar.textDiagDownBorder": "Pembatas Bawah Diagonal", + "SSE.Views.Toolbar.textDiagUpBorder": "Pembatas Atas Diagonal", + "SSE.Views.Toolbar.textEntireCol": "Seluruh Kolom", + "SSE.Views.Toolbar.textEntireRow": "Seluruh baris", "SSE.Views.Toolbar.textFewPages": "Halaman", - "SSE.Views.Toolbar.textHeight": "Ketinggian", - "SSE.Views.Toolbar.textHorizontal": "Horizontal Text", - "SSE.Views.Toolbar.textInsDown": "Shift Cells Down", - "SSE.Views.Toolbar.textInsideBorders": "Inside Borders", - "SSE.Views.Toolbar.textInsRight": "Shift Cells Right", - "SSE.Views.Toolbar.textItalic": "Italic", - "SSE.Views.Toolbar.textLeftBorders": "Left Borders", + "SSE.Views.Toolbar.textHeight": "Tinggi", + "SSE.Views.Toolbar.textHorizontal": "Teks Horizontal", + "SSE.Views.Toolbar.textInsDown": "Geser Sel ke Bawah", + "SSE.Views.Toolbar.textInsideBorders": "Pembatas Dalam", + "SSE.Views.Toolbar.textInsRight": "Geser Sel ke Kanan", + "SSE.Views.Toolbar.textItalic": "Miring", + "SSE.Views.Toolbar.textItems": "Items", + "SSE.Views.Toolbar.textLandscape": "Landscape", + "SSE.Views.Toolbar.textLeft": "Kiri: ", + "SSE.Views.Toolbar.textLeftBorders": "Batas Kiri", + "SSE.Views.Toolbar.textManageRule": "Kelola Aturan", "SSE.Views.Toolbar.textManyPages": "Halaman", - "SSE.Views.Toolbar.textMiddleBorders": "Inside Horizontal Borders", - "SSE.Views.Toolbar.textNewColor": "Add New Custom Color", - "SSE.Views.Toolbar.textNoBorders": "No Borders", + "SSE.Views.Toolbar.textMarginsLast": "Custom Terakhir", + "SSE.Views.Toolbar.textMarginsNarrow": "Narrow", + "SSE.Views.Toolbar.textMarginsNormal": "Normal", + "SSE.Views.Toolbar.textMarginsWide": "Wide", + "SSE.Views.Toolbar.textMiddleBorders": "Batas Dalam Horizontal", + "SSE.Views.Toolbar.textMoreFormats": "Lebih banyak format", + "SSE.Views.Toolbar.textMorePages": "Lebih banyak halaman", + "SSE.Views.Toolbar.textNewColor": "Tambahkan warna khusus baru", + "SSE.Views.Toolbar.textNewRule": "Peraturan Baru", + "SSE.Views.Toolbar.textNoBorders": "Tidak ada pembatas", "SSE.Views.Toolbar.textOnePage": "Halaman", - "SSE.Views.Toolbar.textOutBorders": "Outside Borders", - "SSE.Views.Toolbar.textPrint": "Print", - "SSE.Views.Toolbar.textPrintOptions": "Print Settings", - "SSE.Views.Toolbar.textRightBorders": "Right Borders", - "SSE.Views.Toolbar.textRotateDown": "Rotate Text Down", - "SSE.Views.Toolbar.textRotateUp": "Rotate Text Up", + "SSE.Views.Toolbar.textOutBorders": "Pembatas Luar", + "SSE.Views.Toolbar.textPageMarginsCustom": "Custom Margin", + "SSE.Views.Toolbar.textPortrait": "Portrait", + "SSE.Views.Toolbar.textPrint": "Cetak", + "SSE.Views.Toolbar.textPrintGridlines": "Print Garis Grid", + "SSE.Views.Toolbar.textPrintHeadings": "Print heading", + "SSE.Views.Toolbar.textPrintOptions": "Pengaturan Print", + "SSE.Views.Toolbar.textRight": "Kanan: ", + "SSE.Views.Toolbar.textRightBorders": "Batas Kanan", + "SSE.Views.Toolbar.textRotateDown": "Rotasi Teks Kebawah", + "SSE.Views.Toolbar.textRotateUp": "Rotasi Teks Keatas", + "SSE.Views.Toolbar.textScale": "Skala", "SSE.Views.Toolbar.textScaleCustom": "Khusus", + "SSE.Views.Toolbar.textSelection": "Dari pilihan saat ini", + "SSE.Views.Toolbar.textSetPrintArea": "Atur Area Print", "SSE.Views.Toolbar.textStrikeout": "Coret ganda", "SSE.Views.Toolbar.textSubscript": "Subskrip", + "SSE.Views.Toolbar.textSubSuperscript": "Subskrip/Superskrip", "SSE.Views.Toolbar.textSuperscript": "Superskrip", + "SSE.Views.Toolbar.textTabCollaboration": "Kolaborasi", "SSE.Views.Toolbar.textTabData": "Data", "SSE.Views.Toolbar.textTabFile": "File", + "SSE.Views.Toolbar.textTabFormula": "Formula", "SSE.Views.Toolbar.textTabHome": "Halaman Depan", "SSE.Views.Toolbar.textTabInsert": "Sisipkan", + "SSE.Views.Toolbar.textTabLayout": "Layout", + "SSE.Views.Toolbar.textTabProtect": "Proteksi", "SSE.Views.Toolbar.textTabView": "Lihat", - "SSE.Views.Toolbar.textTopBorders": "Top Borders", - "SSE.Views.Toolbar.textUnderline": "Underline", + "SSE.Views.Toolbar.textThisPivot": "Dari pivot ini", + "SSE.Views.Toolbar.textThisSheet": "Dari worksheet ini", + "SSE.Views.Toolbar.textThisTable": "Dari tabel ini", + "SSE.Views.Toolbar.textTop": "Atas: ", + "SSE.Views.Toolbar.textTopBorders": "Batas Atas", + "SSE.Views.Toolbar.textUnderline": "Garis bawah", + "SSE.Views.Toolbar.textVertical": "Teks Vertikal", "SSE.Views.Toolbar.textWidth": "Lebar", - "SSE.Views.Toolbar.textZoom": "Zoom", - "SSE.Views.Toolbar.tipAlignBottom": "Align Bottom", - "SSE.Views.Toolbar.tipAlignCenter": "Align Center", - "SSE.Views.Toolbar.tipAlignJust": "Justified", - "SSE.Views.Toolbar.tipAlignLeft": "Align Left", - "SSE.Views.Toolbar.tipAlignMiddle": "Align Middle", - "SSE.Views.Toolbar.tipAlignRight": "Align Right", - "SSE.Views.Toolbar.tipAlignTop": "Align Top", - "SSE.Views.Toolbar.tipAutofilter": "Sort and Filter", - "SSE.Views.Toolbar.tipBack": "Back", - "SSE.Views.Toolbar.tipBorders": "Borders", - "SSE.Views.Toolbar.tipCellStyle": "Cell Style", + "SSE.Views.Toolbar.textZoom": "Pembesaran", + "SSE.Views.Toolbar.tipAlignBottom": "Rata bawah", + "SSE.Views.Toolbar.tipAlignCenter": "Rata tengah", + "SSE.Views.Toolbar.tipAlignJust": "Rata Kiri-Kanan", + "SSE.Views.Toolbar.tipAlignLeft": "Rata Kiri", + "SSE.Views.Toolbar.tipAlignMiddle": "Rata di tengah", + "SSE.Views.Toolbar.tipAlignRight": "Rata kanan", + "SSE.Views.Toolbar.tipAlignTop": "Rata atas", + "SSE.Views.Toolbar.tipAutofilter": "Sortir dan Filter", + "SSE.Views.Toolbar.tipBack": "Kembali", + "SSE.Views.Toolbar.tipBorders": "Pembatas", + "SSE.Views.Toolbar.tipCellStyle": "Gaya Sel", "SSE.Views.Toolbar.tipChangeChart": "Ubah Tipe Bagan", - "SSE.Views.Toolbar.tipClearStyle": "Clear", - "SSE.Views.Toolbar.tipColorSchemas": "Change Color Scheme", - "SSE.Views.Toolbar.tipCopy": "Copy", - "SSE.Views.Toolbar.tipCopyStyle": "Copy Style", - "SSE.Views.Toolbar.tipDecDecimal": "Decrease Decimal", - "SSE.Views.Toolbar.tipDecFont": "Decrement font size", - "SSE.Views.Toolbar.tipDeleteOpt": "Delete Cells", - "SSE.Views.Toolbar.tipDigStyleAccounting": "Accounting Style", - "SSE.Views.Toolbar.tipDigStyleCurrency": "Currency Style", - "SSE.Views.Toolbar.tipDigStylePercent": "Percent Style", - "SSE.Views.Toolbar.tipEditChart": "Edit Chart", + "SSE.Views.Toolbar.tipClearStyle": "Hapus", + "SSE.Views.Toolbar.tipColorSchemas": "Ubah Skema Warna", + "SSE.Views.Toolbar.tipCondFormat": "Format bersyarat", + "SSE.Views.Toolbar.tipCopy": "Salin", + "SSE.Views.Toolbar.tipCopyStyle": "Salin Model", + "SSE.Views.Toolbar.tipDecDecimal": "Kurangi desimal", + "SSE.Views.Toolbar.tipDecFont": "Perkecil Ukuran Huruf", + "SSE.Views.Toolbar.tipDeleteOpt": "Hapus Sel", + "SSE.Views.Toolbar.tipDigStyleAccounting": "Style Akutansi", + "SSE.Views.Toolbar.tipDigStyleCurrency": "Style Mata Uang", + "SSE.Views.Toolbar.tipDigStylePercent": "Gaya persen", + "SSE.Views.Toolbar.tipEditChart": "Edit Grafik", + "SSE.Views.Toolbar.tipEditChartData": "Pilih data", "SSE.Views.Toolbar.tipEditChartType": "Ubah Tipe Bagan", - "SSE.Views.Toolbar.tipFontColor": "Font Color", - "SSE.Views.Toolbar.tipFontName": "Font Name", - "SSE.Views.Toolbar.tipFontSize": "Font Size", - "SSE.Views.Toolbar.tipIncDecimal": "Increase Decimal", - "SSE.Views.Toolbar.tipIncFont": "Increment font size", - "SSE.Views.Toolbar.tipInsertChart": "Insert Chart", + "SSE.Views.Toolbar.tipEditHeader": "Edit Header atau Footer", + "SSE.Views.Toolbar.tipFontColor": "Warna Huruf", + "SSE.Views.Toolbar.tipFontName": "Huruf", + "SSE.Views.Toolbar.tipFontSize": "Ukuran Huruf", + "SSE.Views.Toolbar.tipImgAlign": "Ratakan objek", + "SSE.Views.Toolbar.tipImgGroup": "Satukan objek", + "SSE.Views.Toolbar.tipIncDecimal": "Tambah desimal", + "SSE.Views.Toolbar.tipIncFont": "Perbesar Ukuran Huruf", + "SSE.Views.Toolbar.tipInsertChart": "Sisipkan Bagan", "SSE.Views.Toolbar.tipInsertChartSpark": "Sisipkan Bagan", "SSE.Views.Toolbar.tipInsertEquation": "Masukkan Persamaan", - "SSE.Views.Toolbar.tipInsertHyperlink": "Add Hyperlink", - "SSE.Views.Toolbar.tipInsertImage": "Insert Picture", - "SSE.Views.Toolbar.tipInsertOpt": "Insert Cells", - "SSE.Views.Toolbar.tipInsertShape": "Insert Autoshape", + "SSE.Views.Toolbar.tipInsertHyperlink": "Tambahkan hyperlink", + "SSE.Views.Toolbar.tipInsertImage": "Sisipkan Gambar", + "SSE.Views.Toolbar.tipInsertOpt": "Sisipkan sel", + "SSE.Views.Toolbar.tipInsertShape": "Sisipkan Bentuk Otomatis", + "SSE.Views.Toolbar.tipInsertSlicer": "Sisipkan slicer", + "SSE.Views.Toolbar.tipInsertSpark": "Sisipkan sparkline", + "SSE.Views.Toolbar.tipInsertSymbol": "Sisipkan simbol", "SSE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel", - "SSE.Views.Toolbar.tipInsertText": "Insert Text", - "SSE.Views.Toolbar.tipMerge": "Merge", - "SSE.Views.Toolbar.tipNone": "tidak ada", - "SSE.Views.Toolbar.tipNumFormat": "Number Format", + "SSE.Views.Toolbar.tipInsertText": "Sisipkan Teks", + "SSE.Views.Toolbar.tipInsertTextart": "Sisipkan Text Art", + "SSE.Views.Toolbar.tipMerge": "Merge dan center", + "SSE.Views.Toolbar.tipNone": "Tidak ada", + "SSE.Views.Toolbar.tipNumFormat": "Format nomor", + "SSE.Views.Toolbar.tipPageMargins": "Margin halaman", "SSE.Views.Toolbar.tipPageOrient": "Orientasi Halaman", "SSE.Views.Toolbar.tipPageSize": "Ukuran Halaman", - "SSE.Views.Toolbar.tipPaste": "Paste", - "SSE.Views.Toolbar.tipPrColor": "Background Color", - "SSE.Views.Toolbar.tipPrint": "Print", - "SSE.Views.Toolbar.tipRedo": "Redo", - "SSE.Views.Toolbar.tipSave": "Save", - "SSE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", + "SSE.Views.Toolbar.tipPaste": "Tempel", + "SSE.Views.Toolbar.tipPrColor": "Isi warna", + "SSE.Views.Toolbar.tipPrint": "Cetak", + "SSE.Views.Toolbar.tipPrintArea": "Print Area", + "SSE.Views.Toolbar.tipPrintTitles": "Print Judul", + "SSE.Views.Toolbar.tipRedo": "Ulangi", + "SSE.Views.Toolbar.tipSave": "Simpan", + "SSE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan yang Anda buat agar dapat dilihat oleh pengguna lain", + "SSE.Views.Toolbar.tipScale": "Skala ke Fit", "SSE.Views.Toolbar.tipSendBackward": "Mundurkan", "SSE.Views.Toolbar.tipSendForward": "Majukan", - "SSE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.", - "SSE.Views.Toolbar.tipTextOrientation": "Orientation", - "SSE.Views.Toolbar.tipUndo": "Undo", - "SSE.Views.Toolbar.tipWrap": "Wrap Text", - "SSE.Views.Toolbar.txtAccounting": "Accounting", - "SSE.Views.Toolbar.txtAdditional": "Additional", - "SSE.Views.Toolbar.txtAscending": "Ascending", - "SSE.Views.Toolbar.txtClearAll": "All", - "SSE.Views.Toolbar.txtClearComments": "Comments", - "SSE.Views.Toolbar.txtClearFilter": "Clear Filter", + "SSE.Views.Toolbar.tipSynchronize": "Dokumen telah diubah oleh pengguna lain. Silakan klik untuk menyimpan perubahan dan memuat ulang pembaruan.", + "SSE.Views.Toolbar.tipTextOrientation": "Orientasi", + "SSE.Views.Toolbar.tipUndo": "Batalkan", + "SSE.Views.Toolbar.tipWrap": "Wrap Teks", + "SSE.Views.Toolbar.txtAccounting": "Akutansi", + "SSE.Views.Toolbar.txtAdditional": "Tambahan", + "SSE.Views.Toolbar.txtAscending": "Sortasi Naik", + "SSE.Views.Toolbar.txtAutosumTip": "Penjumlahan", + "SSE.Views.Toolbar.txtClearAll": "Semua", + "SSE.Views.Toolbar.txtClearComments": "Komentar", + "SSE.Views.Toolbar.txtClearFilter": "Bersihkan filter", "SSE.Views.Toolbar.txtClearFormat": "Format", - "SSE.Views.Toolbar.txtClearFormula": "Function", - "SSE.Views.Toolbar.txtClearHyper": "Hyperlinks", - "SSE.Views.Toolbar.txtClearText": "Text", - "SSE.Views.Toolbar.txtCurrency": "Currency", - "SSE.Views.Toolbar.txtCustom": "Custom", - "SSE.Views.Toolbar.txtDate": "Date", - "SSE.Views.Toolbar.txtDateTime": "Date & Time", - "SSE.Views.Toolbar.txtDescending": "Descending", - "SSE.Views.Toolbar.txtDollar": "$ Dollar", + "SSE.Views.Toolbar.txtClearFormula": "Fungsi", + "SSE.Views.Toolbar.txtClearHyper": "Hyperlink", + "SSE.Views.Toolbar.txtClearText": "Teks", + "SSE.Views.Toolbar.txtCurrency": "Mata uang", + "SSE.Views.Toolbar.txtCustom": "Khusus", + "SSE.Views.Toolbar.txtDate": "Tanggal", + "SSE.Views.Toolbar.txtDateTime": "Tanggal & Jam", + "SSE.Views.Toolbar.txtDescending": "Sortasi Turun", + "SSE.Views.Toolbar.txtDollar": "$ Dolar", "SSE.Views.Toolbar.txtEuro": "€ Euro", - "SSE.Views.Toolbar.txtExp": "Exponential", + "SSE.Views.Toolbar.txtExp": "Eksponensial", "SSE.Views.Toolbar.txtFilter": "Filter", - "SSE.Views.Toolbar.txtFormula": "Insert Function", - "SSE.Views.Toolbar.txtFraction": "Fraction", + "SSE.Views.Toolbar.txtFormula": "Sisipkan Fungsi", + "SSE.Views.Toolbar.txtFraction": "Pecahan", "SSE.Views.Toolbar.txtFranc": "CHF Swiss franc", - "SSE.Views.Toolbar.txtGeneral": "General", + "SSE.Views.Toolbar.txtGeneral": "Umum", "SSE.Views.Toolbar.txtInteger": "Integer", - "SSE.Views.Toolbar.txtManageRange": "Name manager", - "SSE.Views.Toolbar.txtMergeAcross": "Merge Across", - "SSE.Views.Toolbar.txtMergeCells": "Merge Cells", + "SSE.Views.Toolbar.txtManageRange": "Pengaturan Nama", + "SSE.Views.Toolbar.txtMergeAcross": "Gabungkan Sampai", + "SSE.Views.Toolbar.txtMergeCells": "Gabungkan Sel", "SSE.Views.Toolbar.txtMergeCenter": "Merge & Center", - "SSE.Views.Toolbar.txtNamedRange": "Named Ranges", - "SSE.Views.Toolbar.txtNewRange": "Define Name", - "SSE.Views.Toolbar.txtNoBorders": "No borders", - "SSE.Views.Toolbar.txtNumber": "Number", - "SSE.Views.Toolbar.txtPasteRange": "Paste name", - "SSE.Views.Toolbar.txtPercentage": "Percentage", + "SSE.Views.Toolbar.txtNamedRange": "Named ranges", + "SSE.Views.Toolbar.txtNewRange": "Tentukan Nama", + "SSE.Views.Toolbar.txtNoBorders": "Tidak ada pembatas", + "SSE.Views.Toolbar.txtNumber": "Angka", + "SSE.Views.Toolbar.txtPasteRange": "Paste Name", + "SSE.Views.Toolbar.txtPercentage": "Persentase", "SSE.Views.Toolbar.txtPound": "£ Pound", - "SSE.Views.Toolbar.txtRouble": "₽ Rouble", + "SSE.Views.Toolbar.txtRouble": "₽ Rubel", "SSE.Views.Toolbar.txtScheme1": "Office", "SSE.Views.Toolbar.txtScheme10": "Median", "SSE.Views.Toolbar.txtScheme11": "Metro", - "SSE.Views.Toolbar.txtScheme12": "Module", - "SSE.Views.Toolbar.txtScheme13": "Opulent", - "SSE.Views.Toolbar.txtScheme14": "Oriel", + "SSE.Views.Toolbar.txtScheme12": "Modul", + "SSE.Views.Toolbar.txtScheme13": "Mewah", + "SSE.Views.Toolbar.txtScheme14": "Jendela Oriel", "SSE.Views.Toolbar.txtScheme15": "Origin", - "SSE.Views.Toolbar.txtScheme16": "Paper", - "SSE.Views.Toolbar.txtScheme17": "Solstice", - "SSE.Views.Toolbar.txtScheme18": "Technic", + "SSE.Views.Toolbar.txtScheme16": "Kertas", + "SSE.Views.Toolbar.txtScheme17": "Titik balik matahari", + "SSE.Views.Toolbar.txtScheme18": "Teknik", "SSE.Views.Toolbar.txtScheme19": "Trek", "SSE.Views.Toolbar.txtScheme2": "Grayscale", "SSE.Views.Toolbar.txtScheme20": "Urban", - "SSE.Views.Toolbar.txtScheme21": "Verve", - "SSE.Views.Toolbar.txtScheme3": "Apex", - "SSE.Views.Toolbar.txtScheme4": "Aspect", - "SSE.Views.Toolbar.txtScheme5": "Civic", - "SSE.Views.Toolbar.txtScheme6": "Concourse", - "SSE.Views.Toolbar.txtScheme7": "Equity", - "SSE.Views.Toolbar.txtScheme8": "Flow", - "SSE.Views.Toolbar.txtScheme9": "Foundry", - "SSE.Views.Toolbar.txtScientific": "Scientific", - "SSE.Views.Toolbar.txtSearch": "Search", - "SSE.Views.Toolbar.txtSort": "Sort", - "SSE.Views.Toolbar.txtSortAZ": "Sort Lowest to Highest", - "SSE.Views.Toolbar.txtSortZA": "Sort Highest to Lowest", - "SSE.Views.Toolbar.txtSpecial": "Special", - "SSE.Views.Toolbar.txtTableTemplate": "Format as Table Template", - "SSE.Views.Toolbar.txtText": "Text", - "SSE.Views.Toolbar.txtTime": "Time", - "SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells", + "SSE.Views.Toolbar.txtScheme21": "Semangat", + "SSE.Views.Toolbar.txtScheme22": "Office Baru", + "SSE.Views.Toolbar.txtScheme3": "Puncak", + "SSE.Views.Toolbar.txtScheme4": "Aspek", + "SSE.Views.Toolbar.txtScheme5": "Kewargaan", + "SSE.Views.Toolbar.txtScheme6": "Himpunan", + "SSE.Views.Toolbar.txtScheme7": "Margin Sisa", + "SSE.Views.Toolbar.txtScheme8": "Alur", + "SSE.Views.Toolbar.txtScheme9": "Cetakan", + "SSE.Views.Toolbar.txtScientific": "Saintifik", + "SSE.Views.Toolbar.txtSearch": "Cari", + "SSE.Views.Toolbar.txtSort": "Sortasi", + "SSE.Views.Toolbar.txtSortAZ": "Sortasi naik", + "SSE.Views.Toolbar.txtSortZA": "Sortasi turun", + "SSE.Views.Toolbar.txtSpecial": "Spesial", + "SSE.Views.Toolbar.txtTableTemplate": "Format sebagai template tabel", + "SSE.Views.Toolbar.txtText": "Teks", + "SSE.Views.Toolbar.txtTime": "Waktu", + "SSE.Views.Toolbar.txtUnmerge": "Pisahkan Sel", "SSE.Views.Toolbar.txtYen": "¥ Yen", "SSE.Views.Top10FilterDialog.textType": "Tampilkan", "SSE.Views.Top10FilterDialog.txtBottom": "Bawah", "SSE.Views.Top10FilterDialog.txtBy": "oleh", + "SSE.Views.Top10FilterDialog.txtItems": "Item", + "SSE.Views.Top10FilterDialog.txtPercent": "Persen", "SSE.Views.Top10FilterDialog.txtSum": "Jumlah", + "SSE.Views.Top10FilterDialog.txtTitle": "Auto Filter Top 10", "SSE.Views.Top10FilterDialog.txtTop": "Atas", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Filter Top 10", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Pengaturan Area Nilai", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Rata-rata", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Area Dasar", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Item Dasar", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 dari %2", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "Dihitung", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Hitung Angka", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Atur nama", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "Perbedaan Dari", "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Indeks", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Maks", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Tanpa Kalkulasi", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Persentase dari", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Persentase Selisih Dari", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Persentase dari Kolom", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Persentase dari Total", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Persentase dari Baris", "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produk", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Dijalankan Total di", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Tampilkan nilai sebagai", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Nama sumber:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp", "SSE.Views.ValueFieldSettingsDialog.txtSum": "Jumlah", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Simpulkan nilai dari", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Tutup", "SSE.Views.ViewManagerDlg.guestText": "Tamu", "SSE.Views.ViewManagerDlg.lockText": "Dikunci", "SSE.Views.ViewManagerDlg.textDelete": "Hapus", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplikat", - "SSE.Views.ViewManagerDlg.textNew": "baru", + "SSE.Views.ViewManagerDlg.textEmpty": "Belum ada tampilan yang dibuat.", + "SSE.Views.ViewManagerDlg.textGoTo": "Pergi ke tampilan", + "SSE.Views.ViewManagerDlg.textLongName": "Masukkan nama maksimum 128 karakter.", + "SSE.Views.ViewManagerDlg.textNew": "Baru", "SSE.Views.ViewManagerDlg.textRename": "Ganti nama", + "SSE.Views.ViewManagerDlg.textRenameError": "Nama tampilan tidak boleh kosong", + "SSE.Views.ViewManagerDlg.textRenameLabel": "Ubah nama tampilan", + "SSE.Views.ViewManagerDlg.textViews": "Tampilan sheet", + "SSE.Views.ViewManagerDlg.tipIsLocked": "Elemen ini sedang diedit oleh pengguna lain.", + "SSE.Views.ViewManagerDlg.txtTitle": "Pengaturan Tampilan Sheet", + "SSE.Views.ViewManagerDlg.warnDeleteView": "Anda mencoba menghapus tampilan '%1''.
    Tutup tampilan ini dan hapus?", + "SSE.Views.ViewTab.capBtnFreeze": "Freeze Panes", + "SSE.Views.ViewTab.capBtnSheetView": "Tampilan sheet", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Selalu tampilkan toolbar", "SSE.Views.ViewTab.textClose": "Tutup", - "SSE.Views.ViewTab.textCreate": "baru", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Gabungkan sheet dan bar status", + "SSE.Views.ViewTab.textCreate": "Baru", "SSE.Views.ViewTab.textDefault": "standar", - "SSE.Views.ViewTab.textZoom": "Pembesaran" + "SSE.Views.ViewTab.textFormula": "bar formula", + "SSE.Views.ViewTab.textFreezeCol": "Bekukan Kolom Pertama", + "SSE.Views.ViewTab.textFreezeRow": "Bekukan Baris Teratas", + "SSE.Views.ViewTab.textGridlines": "Garis Grid", + "SSE.Views.ViewTab.textHeadings": "Headings", + "SSE.Views.ViewTab.textInterfaceTheme": "Tema interface", + "SSE.Views.ViewTab.textManager": "View manager", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Tampillkan bayangan panel beku", + "SSE.Views.ViewTab.textUnFreeze": "Batal Bekukan Panel", + "SSE.Views.ViewTab.textZeros": "Tampilkan zeros", + "SSE.Views.ViewTab.textZoom": "Pembesaran", + "SSE.Views.ViewTab.tipClose": "Tutup tampilan sheet", + "SSE.Views.ViewTab.tipCreate": "Buat tampilan sheet", + "SSE.Views.ViewTab.tipFreeze": "Freeze panes", + "SSE.Views.ViewTab.tipSheetView": "Tampilan sheet", + "SSE.Views.WBProtection.hintAllowRanges": "Izinkan edit rentang", + "SSE.Views.WBProtection.hintProtectSheet": "Proteksi Sheet", + "SSE.Views.WBProtection.hintProtectWB": "Proteksi Workbook", + "SSE.Views.WBProtection.txtAllowRanges": "Izinkan edit rentang", + "SSE.Views.WBProtection.txtHiddenFormula": "Formula Tersembunyi", + "SSE.Views.WBProtection.txtLockedCell": "Sel Terkunci", + "SSE.Views.WBProtection.txtLockedShape": "Bentuk Dikunci", + "SSE.Views.WBProtection.txtLockedText": "Kunci Teks", + "SSE.Views.WBProtection.txtProtectSheet": "Proteksi Sheet", + "SSE.Views.WBProtection.txtProtectWB": "Proteksi Workbook", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "Masukkan password untuk membuka proteksi sheet", + "SSE.Views.WBProtection.txtSheetUnlockTitle": "Buka Proteksi Sheet", + "SSE.Views.WBProtection.txtWBUnlockDescription": "Masukkan password untuk membuka proteksi workbook", + "SSE.Views.WBProtection.txtWBUnlockTitle": "Buka Proteksi Workbook" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 28548310b..a15493b40 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crea una copia", "Common.Translation.warnFileLockedBtnView": "‎Aperto per la visualizzazione‎", "Common.UI.ButtonColored.textAutoColor": "Automatico", - "Common.UI.ButtonColored.textNewColor": "Aggiungere un nuovo colore personalizzato", + "Common.UI.ButtonColored.textNewColor": "Aggiungi Colore personalizzato", "Common.UI.ComboBorderSize.txtNoBorders": "Nessun bordo", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Nessun bordo", "Common.UI.ComboDataView.emptyComboText": "Nessuno stile", @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "Annulla", "SSE.Views.DocumentHolder.textUnFreezePanes": "Sblocca i riquadri", "SSE.Views.DocumentHolder.textVar": "Varianza", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Punti elenco a freccia", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Punti elenco a segno di spunta", + "SSE.Views.DocumentHolder.tipMarkersDash": "Punti elenco a trattino", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Punti elenco a rombo pieno", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Punti elenco rotondi pieni", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Punti elenco quadrati pieni", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Punti elenco rotondi vuoti", + "SSE.Views.DocumentHolder.tipMarkersStar": "Punti elenco a stella", "SSE.Views.DocumentHolder.topCellText": "Allinea in alto", "SSE.Views.DocumentHolder.txtAccounting": "Contabilità", "SSE.Views.DocumentHolder.txtAddComment": "Aggiungi commento", @@ -2211,7 +2219,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimo", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Punto minimo", "SSE.Views.FormatRulesEditDlg.textNegative": "Negativo", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Aggiungere un nuovo colore personalizzato", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Aggiungi Colore personalizzato", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Senza bordi", "SSE.Views.FormatRulesEditDlg.textNone": "niente", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Uno o più dei valori specificati non è una percentuale valida.", @@ -3429,14 +3437,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Inserisci tabella", "SSE.Views.Toolbar.tipInsertText": "Inserisci casella di testo", "SSE.Views.Toolbar.tipInsertTextart": "Inserisci Text Art", - "SSE.Views.Toolbar.tipMarkersArrow": "Punti elenco a freccia", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Punti elenco a segno di spunta", - "SSE.Views.Toolbar.tipMarkersDash": "Punti elenco a trattino", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Punti elenco a rombo pieno", - "SSE.Views.Toolbar.tipMarkersFRound": "Punti elenco rotondi pieni", - "SSE.Views.Toolbar.tipMarkersFSquare": "Punti elenco quadrati pieni", - "SSE.Views.Toolbar.tipMarkersHRound": "Punti elenco rotondi vuoti", - "SSE.Views.Toolbar.tipMarkersStar": "Punti elenco a stella", "SSE.Views.Toolbar.tipMerge": "Unisci e centra", "SSE.Views.Toolbar.tipNone": "Nessuno", "SSE.Views.Toolbar.tipNumFormat": "Formato numero", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 4d1df8f67..f3e892598 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -388,7 +388,7 @@ "Common.Views.SignDialog.textSignature": "署名は次のようになります:", "Common.Views.SignDialog.textTitle": "文書のサイン", "Common.Views.SignDialog.textUseImage": "または画像を署名として使用するため、「画像の選択」をクリックしてください", - "Common.Views.SignDialog.textValid": "%1から%2まで有効", + "Common.Views.SignDialog.textValid": "%1から%2まで有効", "Common.Views.SignDialog.tipFontName": "フォント名", "Common.Views.SignDialog.tipFontSize": "フォントのサイズ", "Common.Views.SignSettingsDialog.textAllowComment": " 署名者が署名ダイアログにコメントを追加できるようにする", @@ -792,7 +792,7 @@ "SSE.Controllers.Main.txtBasicShapes": "基本図形", "SSE.Controllers.Main.txtBlank": "(空白)", "SSE.Controllers.Main.txtButtons": "ボタン", - "SSE.Controllers.Main.txtByField": "%2の%1", + "SSE.Controllers.Main.txtByField": "%2 の %1", "SSE.Controllers.Main.txtCallouts": "引き出し", "SSE.Controllers.Main.txtCharts": "チャート", "SSE.Controllers.Main.txtClearFilter": "フィルターをクリアする(Alt+C)", @@ -816,7 +816,7 @@ "SSE.Controllers.Main.txtMultiSelect": "複数選択(Alt+S)", "SSE.Controllers.Main.txtOr": "%1か%2", "SSE.Controllers.Main.txtPage": "ページ", - "SSE.Controllers.Main.txtPageOf": "%2のページ%1", + "SSE.Controllers.Main.txtPageOf": "%2のページ%1", "SSE.Controllers.Main.txtPages": "ページ", "SSE.Controllers.Main.txtPreparedBy": "作成者:", "SSE.Controllers.Main.txtPrintArea": "印刷範囲", @@ -1910,6 +1910,13 @@ "SSE.Views.DocumentHolder.textUndo": "元に戻す", "SSE.Views.DocumentHolder.textUnFreezePanes": "ウインドウ枠固定の解除", "SSE.Views.DocumentHolder.textVar": "標本分散", + "SSE.Views.DocumentHolder.tipMarkersArrow": "箇条書き(矢印)", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "箇条書き(チェックマーク)", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "箇条書き(ひし形)", + "SSE.Views.DocumentHolder.tipMarkersFRound": "箇条書き(丸)", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "箇条書き(四角)", + "SSE.Views.DocumentHolder.tipMarkersHRound": "箇条書き(円)", + "SSE.Views.DocumentHolder.tipMarkersStar": "箇条書き(星)", "SSE.Views.DocumentHolder.topCellText": "上揃え", "SSE.Views.DocumentHolder.txtAccounting": "会計", "SSE.Views.DocumentHolder.txtAddComment": "コメントを追加", @@ -3380,7 +3387,6 @@ "SSE.Views.Toolbar.tipInsertTable": "テーブルの挿入", "SSE.Views.Toolbar.tipInsertText": "テキストボックスを挿入する", "SSE.Views.Toolbar.tipInsertTextart": "ワードアートの挿入", - "SSE.Views.Toolbar.tipMarkersArrow": "箇条書き(矢印)", "SSE.Views.Toolbar.tipMerge": "結合して、中央に配置する", "SSE.Views.Toolbar.tipNumFormat": "数値の書式", "SSE.Views.Toolbar.tipPageMargins": "余白", @@ -3484,7 +3490,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtAverage": "平均", "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "基本フィールド", "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "基本アイテム\n\t", - "SSE.Views.ValueFieldSettingsDialog.txtByField": "%2の%1", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%2 の %1", "SSE.Views.ValueFieldSettingsDialog.txtCount": "カウント", "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "数を集計", "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "カスタム名", diff --git a/apps/spreadsheeteditor/main/locale/lo.json b/apps/spreadsheeteditor/main/locale/lo.json index a736eee2b..11b63a613 100644 --- a/apps/spreadsheeteditor/main/locale/lo.json +++ b/apps/spreadsheeteditor/main/locale/lo.json @@ -2,6 +2,7 @@ "cancelButtonText": "ຍົກເລີກ", "Common.Controllers.Chat.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", "Common.Controllers.Chat.textEnterMessage": "ໃສ່ຂໍ້ຄວາມຂອງທ່ານທີ່ນີ້", + "Common.Controllers.History.notcriticalErrorTitle": "ເຕືອນ", "Common.define.chartData.textArea": "ພື້ນທີ່", "Common.define.chartData.textAreaStacked": "ພື້ນທີ່ຈັດລຽງລໍາດັບ", "Common.define.chartData.textAreaStackedPer": "100% ແຜ່ນຢອງກັນ", @@ -102,6 +103,8 @@ "Common.Translation.warnFileLocked": "ແຟ້ມ ກຳ ລັງຖືກດັດແກ້ຢູ່ໃນແອັບ ອື່ນ. ທ່ານສາມາດສືບຕໍ່ດັດແກ້ແລະບັນທຶກເປັນ ສຳ ເນົາ", "Common.Translation.warnFileLockedBtnEdit": "ສ້າງສຳເນົາ", "Common.Translation.warnFileLockedBtnView": "ເປີດເບິ່ງ", + "Common.UI.ButtonColored.textAutoColor": "ອັດຕະໂນມັດ", + "Common.UI.ButtonColored.textNewColor": "ເພີ່ມສີທີ່ກຳໜົດເອງໃໝ່", "Common.UI.ComboBorderSize.txtNoBorders": "ບໍ່ມີຂອບ", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "ບໍ່ມີຂອບ", "Common.UI.ComboDataView.emptyComboText": "ບໍ່ມີແບບ", @@ -111,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "ໃຫມ່", "Common.UI.ExtendedColorDialog.textRGBErr": "ຄ່າທີ່ຕື່ມໃສ່ບໍ່ຖືກຕ້ອງ.
    ກະລຸນາໃສ່ຄ່າຕົວເລກລະຫວ່າງ 0 ຫາ 255.", "Common.UI.HSBColorPicker.textNoColor": "ບໍ່ມີສີ", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "ເຊື່ອງລະຫັດຜ່ານ", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "ສະແດງລະຫັດຜ່ານ", "Common.UI.SearchDialog.textHighlight": "ໄຮໄລ້ ຜົນລັບ", "Common.UI.SearchDialog.textMatchCase": "ກໍລະນີທີ່ສຳຄັນ", "Common.UI.SearchDialog.textReplaceDef": "ກະລຸນາໃສ່ຕົວ ໜັງ ສືທົດແທນເນື້ອຫາ", @@ -159,6 +164,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "ຫນ້າທີ່ຮັບຮູ້", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "ສຳນວນດັ່ງຕໍ່ໄປນີ້ແມ່ນການສະແດງອອກທາງຄະນິດສາດ. ແລະ ຈະບໍ່ຖືກປັບໄໝໂດຍອັດຕະໂນມັດ.", "Common.Views.AutoCorrectDialog.textReplace": "ປ່ຽນແທນ", + "Common.Views.AutoCorrectDialog.textReplaceText": "ປ່ຽນແທນໃນຂະນະທີ່ທ່ານພິມ", "Common.Views.AutoCorrectDialog.textReplaceType": "ປ່ຽນຫົວຂໍ້ ໃນຂະນະທີ່ທ່ານພິມ", "Common.Views.AutoCorrectDialog.textReset": "ປັບໃໝ່", "Common.Views.AutoCorrectDialog.textResetAll": "ປັບເປັນຄ່າເລີ່ມຕົ້ນ", @@ -170,13 +176,22 @@ "Common.Views.AutoCorrectDialog.warnReset": "ທຸກໆການແກ້ໄຂອັດຕະໂນມັດທີ່ທ່ານເພີ່ມຈະຖືກລຶບອອກແລະສິ່ງທີ່ຖືກປ່ຽນແປງຈະຖືກ ນຳ ກັບມາໃຊ້ແບບເດີມ. ທ່ານຕ້ອງການ ດຳ ເນີນການຕໍ່ບໍ?", "Common.Views.AutoCorrectDialog.warnRestore": "ການປ້ອນຂໍ້ມູນທີ່ຖືກຕ້ອງສຳລັບ %1 ຈະຖືກຕັ້ງຄ່າໃຫ້ກັບມາເປັນຄ່າເດີມ. ທ່ານຕ້ອງການດຳເນີນການຕໍ່ບໍ່?", "Common.Views.Chat.textSend": "ສົ່ງ", + "Common.Views.Comments.mniAuthorAsc": "ລຽງ A ຫາ Z", + "Common.Views.Comments.mniAuthorDesc": "ລຽງ Z ເຖິງ A", + "Common.Views.Comments.mniDateAsc": "ເກົ່າທີ່ສຸດ", + "Common.Views.Comments.mniDateDesc": "ໃໝ່ລ່າສຸດ", + "Common.Views.Comments.mniFilterGroups": "ກັ່ນຕອງຕາມກຸ່ມ", + "Common.Views.Comments.mniPositionAsc": "ຈາກດ້ານເທິງ", + "Common.Views.Comments.mniPositionDesc": "ຈາກລຸ່ມ", "Common.Views.Comments.textAdd": "ເພີ່ມ", "Common.Views.Comments.textAddComment": "ເພີ່ມຄວາມຄິດເຫັນ", "Common.Views.Comments.textAddCommentToDoc": "ເພີ່ມຄວາມຄິດເຫັນໃນເອກະສານ", "Common.Views.Comments.textAddReply": "ຕອບຄີືນ", + "Common.Views.Comments.textAll": "ທັງໝົດ", "Common.Views.Comments.textAnonym": " ແຂກ", "Common.Views.Comments.textCancel": "ຍົກເລີກ", "Common.Views.Comments.textClose": " ປິດ", + "Common.Views.Comments.textClosePanel": "ປິດຄຳເຫັນ", "Common.Views.Comments.textComments": "ຄໍາເຫັນ", "Common.Views.Comments.textEdit": "ຕົກລົງ", "Common.Views.Comments.textEnterCommentHint": "ໃສ່ຄຳເຫັນຂອງທ່ານທີ່ນີ້", @@ -185,6 +200,8 @@ "Common.Views.Comments.textReply": "ຕອບ", "Common.Views.Comments.textResolve": "ແກ້ໄຂ", "Common.Views.Comments.textResolved": "ແກ້ໄຂແລ້ວ", + "Common.Views.Comments.textSort": "ຈັດຮຽງຄຳເຫັນ", + "Common.Views.Comments.textViewResolved": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເປີດຄໍາຄິດເຫັນຄືນ", "Common.Views.CopyWarningDialog.textDontShow": "ຢ່າສະແດງຂໍ້ຄວາມນີ້ອີກ", "Common.Views.CopyWarningDialog.textMsg": "ດຳເນີນການສຳເນົາ,ຕັດ ແລະ ວາງ ໂດຍໃຊ້ປຸ່ມເຄື່ອງມືແກ້ໄຂ ແລະ ", "Common.Views.CopyWarningDialog.textTitle": "ປະຕິບັດການສໍາເນົາ, ຕັດ ແລະ ວາງ", @@ -220,6 +237,13 @@ "Common.Views.Header.tipViewUsers": "ເບິ່ງຜູ້ໃຊ້ແລະຈັດການສິດເຂົ້າເຖິງເອກະສານ", "Common.Views.Header.txtAccessRights": "ປ່ຽນສິດການເຂົ້າເຖິງ", "Common.Views.Header.txtRename": "ປ່ຽນຊື່", + "Common.Views.History.textCloseHistory": "ປິດປະຫວັດການເຄື່ອນໄຫວ", + "Common.Views.History.textHide": "ພັງທະລາຍ", + "Common.Views.History.textHideAll": "ເຊື່ອງລາຍລະອຽດການປ່ຽນແປງ", + "Common.Views.History.textRestore": "ກູ້ຄືນ", + "Common.Views.History.textShow": "ຂະຫຍາຍສ່ວນ", + "Common.Views.History.textShowAll": "ສະແດງການປ່ຽນແປງໂດຍລະອຽດ", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "ວາງ URL ຂອງຮູບພາບ:", "Common.Views.ImageFromUrlDialog.txtEmpty": "ຈຳເປັນຕ້ອງມີສ່ວນນີ້", "Common.Views.ImageFromUrlDialog.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"", @@ -345,6 +369,9 @@ "Common.Views.ReviewPopover.textOpenAgain": "ເປີດໃໝ່ອີກຄັ້ງ", "Common.Views.ReviewPopover.textReply": "ຕອບ", "Common.Views.ReviewPopover.textResolve": "ແກ້ໄຂ", + "Common.Views.ReviewPopover.textViewResolved": "ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເປີດຄໍາຄິດເຫັນຄືນ", + "Common.Views.ReviewPopover.txtDeleteTip": "ລົບ", + "Common.Views.ReviewPopover.txtEditTip": "ແກ້ໄຂ", "Common.Views.SaveAsDlg.textLoading": "ກຳລັງໂຫລດ", "Common.Views.SaveAsDlg.textTitle": "ແຟ້ມສຳລັບບັນທຶກ", "Common.Views.SelectFileDlg.textLoading": "ກຳລັງໂຫລດ", @@ -415,6 +442,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "ລົບລາຍການທີ່ຊໍ້າກັນ", "SSE.Controllers.DataTab.txtRemoveDataValidation": "ການເລືອກປະເພດຕ້ອງລືອກຫຼາຍກ່ອນ 1 ປະເພດ.
    ການຕັ້ງຄ່າປັດຈຸບັນດຳເນີນການຕໍ່?", "SSE.Controllers.DataTab.txtRemSelected": "ລົບໃນລາຍການທີ່ເລືອກ", + "SSE.Controllers.DataTab.txtUrlTitle": "ວາງ URL ຂໍ້ມູນ", "SSE.Controllers.DocumentHolder.alignmentText": "ການຈັດຕຳແໜ່ງ", "SSE.Controllers.DocumentHolder.centerText": "ທາງກາງ", "SSE.Controllers.DocumentHolder.deleteColumnText": "ລົບຖັນ", @@ -452,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "ເພີ່ມເສັ້ນແນວຕັ້ງ", "SSE.Controllers.DocumentHolder.txtAlignToChar": "ຈັດຕຳແໜ່ງໃຫ້ຊື່ກັບຕົວອັກສອນ", "SSE.Controllers.DocumentHolder.txtAll": "(ທັງໝົດ)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "ສົ່ງຄືນເນື້ອຫາທັງໝົດຂອງຕາຕະລາງ ຫຼື ຖັນຕາຕະລາງທີ່ລະບຸໄວ້ ລວມທັງສ່ວນຫົວຖັນ, ຂໍ້ມູນ ແລະແຖວທັງໝົດ", "SSE.Controllers.DocumentHolder.txtAnd": "ແລະ", "SSE.Controllers.DocumentHolder.txtBegins": "ເລີ້ມຕົ້ນດ້ວຍ", "SSE.Controllers.DocumentHolder.txtBelowAve": "ຕ່ຳກ່ວາຄ່າສະເລ່ຍ", @@ -461,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "ຄໍລັ້ມ", "SSE.Controllers.DocumentHolder.txtColumnAlign": "ການຈັດແນວຄໍລັ້ມ", "SSE.Controllers.DocumentHolder.txtContains": "ປະກອບດ້ວຍ", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "ສົ່ງຄືນຕາລາງຂໍ້ມູນຂອງຕາຕະລາງ ຫຼືຖັນຕາຕະລາງທີ່ລະບຸ", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "ຫຼູດຜ່ອນຄວາມຜິດພາດ", "SSE.Controllers.DocumentHolder.txtDeleteArg": "ລົບຂໍ້ຂັດແຍ່ງທັງໝົດ", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "ຢຸດການລົບດ້ວຍຕົວເອງ", @@ -484,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "ໃຫຍ່ກວ່າ ຫລື ເທົ່າກັບ", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "ຂຽນທັບຂໍ້ຄວາມ", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "ຂຽນກ້ອງຂໍ້ຄວາມ", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "ສົ່ງຄືນສ່ວນຫົວຖັນສຳລັບຕາຕະລາງ ຫຼືຖັນຕາຕະລາງທີ່ລະບຸ", "SSE.Controllers.DocumentHolder.txtHeight": "ລວງສູງ", "SSE.Controllers.DocumentHolder.txtHideBottom": "ເຊື່ອງຂອບດ້ານລູ່ມ", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "ເຊື່ອງຂີດຈຳກັດດ້ານລູ່ມ", @@ -513,6 +544,7 @@ "SSE.Controllers.DocumentHolder.txtLimitChange": "ປ່ຽນສະຖານທີ່ຈຳກັດ", "SSE.Controllers.DocumentHolder.txtLimitOver": "ຈຳກັດຂໍ້ຄວາມ", "SSE.Controllers.DocumentHolder.txtLimitUnder": "ຈຳກັດເນື້ອ", + "SSE.Controllers.DocumentHolder.txtLockSort": "ພົບຂໍ້ມູນຢູ່ຖັດຈາກການເລືອກຂອງທ່ານ, ແຕ່ທ່ານບໍ່ມີສິດພຽງພໍເພື່ອປ່ຽນຕາລາງເຫຼົ່ານັ້ນ.
    ທ່ານຕ້ອງການສືບຕໍ່ກັບການເລືອກປັດຈຸບັນບໍ?", "SSE.Controllers.DocumentHolder.txtMatchBrackets": "ຈັບຄູ່ວົງເລັບເພື່ອຄວາມສູງຂອງການໂຕ້ຖຽງ", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "ຈັດລຽງການຈັດຊຸດຂໍ້ມູນ", "SSE.Controllers.DocumentHolder.txtNoChoices": "ບໍ່ມີຕົວເລືອກໃຫ້ຕື່ມເຊວ.
    ມີແຕ່ຄ່າຂໍ້ຄວາມຈາກຖັນເທົ່ານັ້ນທີ່ສາມາດເລືອກມາເພື່ອປ່ຽນແທນໄດ້.", @@ -545,6 +577,7 @@ "SSE.Controllers.DocumentHolder.txtRemLimit": "ລົບຂໍ້ຈຳກັດ", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "ລົບອັກສອນເນັ້ນສຽງ", "SSE.Controllers.DocumentHolder.txtRemoveBar": "ລຶບແຖບ", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "ທ່ານຕ້ອງການຕັດລາຍເຊັນນີ້ອອກບໍ່?
    ຈະບໍ່ສາມາດກູ້ຄືນໄດ້", "SSE.Controllers.DocumentHolder.txtRemScripts": "ລືບເນື້ອເລື່ອງອອກ", "SSE.Controllers.DocumentHolder.txtRemSubscript": "ລົບອອກຈາກຕົວຫຍໍ້", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "ເອົາຕົວຫຍໍ້ອອກ (ລົບຕົວຫຍໍ້ອອກ)", @@ -560,10 +593,13 @@ "SSE.Controllers.DocumentHolder.txtSorting": "ການລຽງລຳດັບ", "SSE.Controllers.DocumentHolder.txtSortSelected": "ຈັດລຽງທີ່ເລືອກ", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "ຂະຫຍາຍວົງເລັບ", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "ເລືອກສະເພາະຄໍລຳທີ່ລະບຸ", "SSE.Controllers.DocumentHolder.txtTop": "ຂ້າງເທີງ", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "ສົ່ງຄືນແຖວທັງໝົດສຳລັບຕາຕະລາງ ຫຼືຖັນຕາຕະລາງທີ່ລະບຸ", "SSE.Controllers.DocumentHolder.txtUnderbar": "ຂີດກອ້ງຕົວໜັງສື", "SSE.Controllers.DocumentHolder.txtUndoExpansion": "ຍົກເລີກການຂະຫຍານຕາຕະລາງແບບອັດຕະໂນມັດ", "SSE.Controllers.DocumentHolder.txtUseTextImport": "ໃຊ້ຕົວຊ່ວຍສ້າງການນຳເຂົ້າຂໍ້ຄວາມ", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "ການຄລິກລິ້ງນີ້ອາດເປັນອັນຕະລາຍຕໍ່ອຸປະກອນ ແລະຂໍ້ມູນຂອງທ່ານ.
    ທ່ານແນ່ໃຈບໍ່ວ່າຕ້ອງການສືບຕໍ່?", "SSE.Controllers.DocumentHolder.txtWidth": "ລວງກວ້າງ", "SSE.Controllers.FormulaDialog.sCategoryAll": "ທັງໝົດ", "SSE.Controllers.FormulaDialog.sCategoryCube": "ກຳລັງສາມ", @@ -583,6 +619,7 @@ "SSE.Controllers.LeftMenu.textByRows": "ໂດຍ ແຖວ", "SSE.Controllers.LeftMenu.textFormulas": "ສູດ", "SSE.Controllers.LeftMenu.textItemEntireCell": "ເນື້ອຫາຂອງເຊວທັງໝົດ", + "SSE.Controllers.LeftMenu.textLoadHistory": "ກຳລັງໂຫລດປະຫວັດ", "SSE.Controllers.LeftMenu.textLookin": "ເບິ່ງເຂົ້າໄປ", "SSE.Controllers.LeftMenu.textNoTextFound": "ຂໍ້ມູນທີ່ທ່ານກຳລັງຄົ້ນຫາບໍ່ສາມາດຊອກຫາໄດ້. ກະລຸນາປັບຕົວເລືອກການຊອກຫາຂອງທ່ານ.", "SSE.Controllers.LeftMenu.textReplaceSkipped": "ການທົດແທນໄດ້ຖືກປະຕິບັດແລ້ວ. {0} ຖືກຂ້າມເຫດການທີ່ເກີດຂື້ນໄດ້", @@ -597,6 +634,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ທຸກລັກສະນະ ຍົກເວັ້ນຂໍ້ຄວາມຈະຫາຍໄປ.
    ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດໍາເນີນຕໍ່?", "SSE.Controllers.Main.confirmMoveCellRange": "ຊ່ວງເຊວປາຍທາງສາມາດບັນຈຸຂໍ້ມູນໄດ້. ດຳເນີນການຕໍ່ຫຼືບໍ່?", "SSE.Controllers.Main.confirmPutMergeRange": "ແຫ່ງຂໍ້ມູນບັນຈຸບັນລວມເຊວກັນ.
    ຂໍ້ມູນໄດ້ລວມກັນກ່ອນໜ້າທີ່ໄດ້ບັນທຶກລົງໃນຕາຕະລາງ.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "ສູດໃນຫົວແຖວຈະຖືກລຶບອອກ ແລະ ປ່ຽນເປັນຂໍ້ຄວາມໃນສູດ.
    ທ່ານຕ້ອງການສືບຕໍ່ບໍ?", "SSE.Controllers.Main.convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", "SSE.Controllers.Main.criticalErrorExtText": "ກົດປຸ່ມ \"OK\" ເພື່ອກັບໄປຫາລາຍການເອກະສານ.", "SSE.Controllers.Main.criticalErrorTitle": "ຂໍ້ຜິດພາດ", @@ -612,8 +650,10 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "ການດຳເນີນການດັ່ງກ່າວບໍ່ສາມາດດຳເນີນການໄດ້ ເນື່ອງຈາກພື້ນທີ່ເຊວທີ່ຖືກຄັດກອງ.
    ກະລຸນາສະແດງອົງປະກອບທີ່ຄັດກອງແລ້ວລອງໃໝ່ອີກຄັ້ງ.", "SSE.Controllers.Main.errorBadImageUrl": "URL ຮູບພາບບໍ່ຖືກຕ້ອງ", "SSE.Controllers.Main.errorCannotUngroup": "ບໍ່ສາມາດຍົກເລີກການຈັດກຸ່ມໄດ້, ໃນການເລີ້ມໂຄງຮ່າງໃຫ້ເລືອກລາຍລະອຽດຂອງແຖວຫຼືຄໍລັມແລ້ວຈັດກຸ່ມ", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "ທ່ານບໍ່ສາມາດໃຊ້ຄໍາສັ່ງນີ້ຢູ່ໃນໜ້າທີ່ມີການປ້ອງກັນ. ເພື່ອໃຊ້ຄໍາສັ່ງນີ້, ຍົກເລີກການປົກປັກຮັກສາແຜ່ນ.
    ທ່ານອາດຈະຖືກຮ້ອງຂໍໃຫ້ໃສ່ລະຫັດຜ່ານ.", "SSE.Controllers.Main.errorChangeArray": "ທ່ານບໍ່ສາມາດປ່ຽນສ່ວນ ໜຶ່ງ ຂອງອາເລໄດ້.", "SSE.Controllers.Main.errorChangeFilteredRange": "ການດຳເນີນການໃນຄັ້ງນີ້ຈະປ່ຽນແປງຊ່ວງການກັ່ນຕອງເທິງເວີກຊີດຂອງທ່ານ
    ເພື່ອໃຫ້ວຽກນີ້ສຳເລັດສົມບູນ, ກະລຸນາລົບຕົວກັ່ນຕອງແບບອັດຕະໂນມັດ.", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "ຕາລາງ ຫຼື ແຜນກ້າບທີ່ທ່ານກຳລັງພະຍາຍາມປ່ຽນແປງແມ່ນຢູ່ໃນແຜ່ນທີ່ປ້ອງກັນໄວ້. ທ່ານອາດຈະຖືກຮ້ອງຂໍໃຫ້ໃສ່ລະຫັດຜ່ານ.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "ຂາດການເຊື່ອມຕໍ່ອິນເຕີເນັດ, ເອກະສານບໍ່ສາມາດແກ້ໄຂໄດ້ໃນປັດຈຸບັນ.", "SSE.Controllers.Main.errorConnectToServer": "ເອກະສານບໍ່ສາມາດບັນທຶກໄດ້. ກະລຸນາກວດສອບການຕັ້ງຄ່າການເຊື່ອມຕໍ່ ຫລື ຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.
    ເມື່ອທ່ານກົດປຸ່ມ 'OK', ທ່ານຈະໄດ້ຮັບການແຈ້ງເຕືອນໃຫ້ດາວໂຫລດເອກະສານ.", "SSE.Controllers.Main.errorCopyMultiselectArea": "ຄຳ ສັ່ງນີ້ບໍ່ສາມາດໃຊ້ກັບການເລືອກຫລາຍໆອັນໄດ້
    ເລືອກຊ່ວງດຽວ ແລະ ລອງ ໃໝ່ ອີກຄັ້ງ", @@ -625,6 +665,8 @@ "SSE.Controllers.Main.errorDataRange": "ໄລຍະຂອງຂໍ້ມູນບໍ່ຖືກ", "SSE.Controllers.Main.errorDataValidate": "ຄ່າທີ່ທ່ານປ້ອນບໍ່ຖືກຕ້ອງ.
    ຜູ້ໃຊ້ໄດ້ຈຳກັດຄ່າທີ່ສາມາດປ້ອນລົງໃນເຊວນີ້ໄດ້.", "SSE.Controllers.Main.errorDefaultMessage": "ລະຫັດຂໍ້ຜິດພາດ: %1", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "ທ່ານກຳລັງພະຍາຍາມລຶບຖັນທີ່ມີຕາລາງທີ່ຖືກລັອກໄວ້. ຕາລາງທີ່ຖືກລັອກບໍ່ສາມາດຖືກລຶບໃນຂະນະທີ່ແຜ່ນວຽກຖືກລັອກ. ທ່ານອາດຈະຖືກຮ້ອງຂໍໃຫ້ໃສ່ລະຫັດຜ່ານ.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "ຕາລາງທີ່ຖືກລັອກບໍ່ສາມາດຖືກລຶບໃນຂະນະທີ່ແຜ່ນວຽກຖືກລັອກ. ທ່ານອາດຈະຖືກຮ້ອງຂໍໃຫ້ໃສ່ລະຫັດຜ່ານ.", "SSE.Controllers.Main.errorEditingDownloadas": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເຮັດວຽກກັບເອກກະສານ.
    ໃຊ້ຕົວເລືອກ 'ດາວໂຫລດເປັນ ... ' ເພື່ອບັນທຶກເອກະສານເກັບໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານ.", "SSE.Controllers.Main.errorEditingSaveas": "ເກີດຂໍ້ຜິດພາດໃນລະຫວ່າງການເຮັດວຽກກັບເອກກະສານ.
    ໃຊ້ຕົວເລືອກ 'ບັນທຶກເປັນ ... ' ເພື່ອບັນທຶກເອກະສານເກັບໄວ້ໃນຮາດໄດຄອມພິວເຕີຂອງທ່ານ.", "SSE.Controllers.Main.errorEditView": "ບໍ່ສາມາດແກ້ໄຂມຸມມອງແຜ່ນວຽກທີ່ມີຢູ່ແລ້ວໄດ້ ແລະ ບໍ່ສາມາດສ້າງມຸມມອງໃໝ່ໄດ້ໃນຂະນະນີ້ເນື່ອງຈາກມີບາງສ່ວນກຳລັງແກ້ໄຂ.", @@ -647,6 +689,8 @@ "SSE.Controllers.Main.errorKeyEncrypt": "ບໍ່ຮູ້ຄຳອະທິບາຍຫຼັກ", "SSE.Controllers.Main.errorKeyExpire": "ລະຫັດໝົດອາຍຸ", "SSE.Controllers.Main.errorLabledColumnsPivot": "ການທີ່ຈະສ້າງຕາຕະລາງພິວອດ ຄວນຈະນຳໃຊ້ຂໍ້ມູນທີ່ຖືກຈັດເປັນລະບຽບຢູ່ລາຍການທີ່ມີປ້າຍໝາຍຢູ່ຖັນ.", + "SSE.Controllers.Main.errorLoadingFont": "ຟອນບໍ່ໄດ້ຖືກໂຫລດ.
    ກະລຸນາແອດມີນຂອງທ່ານ.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "ການອ້າງອີງສະຖານທີ່ ຫຼືໄລຍະຂໍ້ມູນບໍ່ຖືກຕ້ອງ.", "SSE.Controllers.Main.errorLockedAll": "ການປະຕິບັດງານບໍ່ສາມາດດຳເນີນການໄດ້ເນື່ອງຈາກວ່າ ແຜ່ນເຈ້ຍໄດ້ຖືກລັອກໂດຍຜູ້ໃຊ້ຄົນອື່ນ.", "SSE.Controllers.Main.errorLockedCellPivot": "ທ່ານບໍ່ສາມາດປ່ຽນແປງຂໍ້ມູນທີ່ຢູ່ໃນຕາຕະລາງພິວອດໄດ້.", "SSE.Controllers.Main.errorLockedWorksheetRename": "ບໍ່ສາມາດປ່ຽນຊື່ເອກະສານໄດ້ໃນເວລານີ້ຍ້ອນວ່າຖືກປ່ຽນຊື່ໂດຍຜູ້ໃຊ້ຄົນອື່ນ", @@ -657,6 +701,7 @@ "SSE.Controllers.Main.errorNoDataToParse": "ບໍ່ໄດ້ເລືອກຂໍ້ມູນທີ່ຈະແຍກວິເຄາະ", "SSE.Controllers.Main.errorOpenWarning": "ສູດແຟ້ມໃດໜຶ່ງມີຕົວອັກສອນເກີນຂີດຈຳກັດ 8192.
    ສູດໄດ້ຖືກລົບອອກ.", "SSE.Controllers.Main.errorOperandExpected": "ການເຂົ້າຟັງຊັນທີ່ຖືກເຂົ້າມາແມ່ນບໍ່ຖືກຕ້ອງ. ກະລຸນາກວດເບິ່ງວ່າທ່ານ ກຳ ລັງຂາດໃນວົງເລັບໜຶ່ງ", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "ລະຫັດຜ່ານທີ່ທ່ານລະບຸນັ້ນບໍ່ຖືກຕ້ອງ.
    ກວດສອບວ່າກະແຈ CAPS LOCK ປິດຢູ່ ແລະໃຫ້ແນ່ໃຈວ່າໃຊ້ຕົວພິມໃຫຍ່ທີ່ຖືກຕ້ອງ.", "SSE.Controllers.Main.errorPasteMaxRange": "ພື້ນທີ່ສໍາເນົາ ແລະ ວາງບໍ່ກົງກັນ.
    ກະລຸນາເລືອກພື້ນທີ່ທີ່ມີຂະໜາດດຽວກັນ ຫຼື ກົດທີ່ເຊວທຳອິດຕິດຕໍ່ກັນເພື່ອວາງເຊວທີ່ຖືກຄັດລອກ.", "SSE.Controllers.Main.errorPasteMultiSelect": "ການດໍາເນີນການນີ້ບໍ່ສາມາດເຮັດໄດ້ໃນການເລືອກຫຼາຍຊ່ອງ
    ໃຫ້ທ່ານເລືອກຊ່ອງດຽວ ແລະ ລອງໃຫມ່ອີກຄັ້ງ", "SSE.Controllers.Main.errorPasteSlicerError": "ບໍ່ສາມາດສຳເນົາຕົວແບ່ງຂໍ້ມູນຕາຕະລາງຈາກງານໜື່ງໄປຍັງງານອື່ນ.", @@ -670,6 +715,7 @@ "SSE.Controllers.Main.errorSessionIdle": "ເອກະສານດັ່ງກ່າວບໍ່ໄດ້ຖືກແກ້ໄຂມາດົນແລ້ວ. ກະລຸນາໂຫລດໜ້ານີ້ຄືນໃໝ່.", "SSE.Controllers.Main.errorSessionToken": "ການເຊື່ອມຕໍ່ຫາເຊີເວີຖືກລົບກວນ, ກະລຸນາໂຫຼດໜ້າຄືນໃໝ່.", "SSE.Controllers.Main.errorSetPassword": "ບໍ່ສາມາດຕັ້ງລະຫັດຜ່ານໄດ້", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "ການອ້າງອີງຕຳແໜ່ງທີ່ບໍ່ຖືກຕ້ອງ ເພາະວ່າຕາລາງທັງໝົດບໍ່ແມ່ນຢູ່ໃນຖັນ ຫຼື ແຖວດຽວກັນ.
    ກະລຸນາ ເລືອກຕາລາງທີ່ຢູ່ໃນຖັນ ຫຼື ແຖວດຽວ.", "SSE.Controllers.Main.errorStockChart": "ຄໍາສັ່ງແຖວບໍ່ຖືກຕ້ອງ. ເພື່ອສ້າງຕາຕະລາງຫຸ້ນ ໃຫ້ວາງຂໍ້ມູນໃສ່ເຈັ້ຍຕາມ ລຳດັບຕໍ່ໄປນີ້:
    ລາຄາເປີດ, ລາຄາສູງສຸດ, ລາຄາຕໍ່າສຸດ, ລາຄາປິດ. ", "SSE.Controllers.Main.errorToken": "ເຄື່ອງໝາຍຄວາມປອດໄພເອກະສານບໍ່ຖືກຕ້ອງ.
    ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບເອກະສານຂອງທ່ານ.", "SSE.Controllers.Main.errorTokenExpire": "ເຄື່ອງໝາຍຄວາມປອດໄພຂອງເອກະສານໄດ້ໝົດອາຍຸແລ້ວ.
    ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບເອກະສານຂອງທ່ານ.", @@ -681,6 +727,7 @@ "SSE.Controllers.Main.errorViewerDisconnect": "ຂາດການເຊື່ອມຕໍ່. ທ່ານຍັງສາມາດເບິ່ງເອກະສານໄດ້,
    ແຕ່ຈະບໍ່ສາມາດດາວໂຫລດຫລືພິມໄດ້ຈົນກວ່າການເຊື່ອມຕໍ່ຈະຖືກກັັບຄືນ ແລະ ໜ້າ ຈະຖືກໂຫລດຄືນ", "SSE.Controllers.Main.errorWrongBracketsCount": "ເກີດຂໍ້ຜິດພາດໃນສູດທີ່ໃຊ້.
    ຈຳນວນວົງເລັບບໍ່ຖືກຕ້ອງ.", "SSE.Controllers.Main.errorWrongOperator": "ເກີດຂໍ້ຜິດພາດໃນສູດທີ່ໃຊ້, ຕົວດຳເນີນການບໍ່ຖືກຕ້ອງ.
    ກະລຸນາແກ້ໄຂຂໍ້ຜິດພາດ", + "SSE.Controllers.Main.errorWrongPassword": "ລະຫັດຜ່ານທີ່ທ່ານໃຫ້ນັ້ນບໍ່ຖືກຕ້ອງ.", "SSE.Controllers.Main.errRemDuplicates": "ພົບຄ່າທີ່ຊ້ຳກັນ ແລະ ຖືກລົບ {0},​ຄ່າທີ່ບໍ່ຊ້ຳກັນ {1}.", "SSE.Controllers.Main.leavePageText": "ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ໄດ້ຖືກບັນທຶກຢູ່ spreadsheet ນີ້. ກົດປຸ່ມ ' ຢູ່ໜ້ານີ້ ' ແລ້ວ ກົດ 'ບັນທຶກ' ເພື່ອບັນທຶກມັນ. ກົດປຸ່ມ 'ອອກຈາກໜ້ານີ້' ເພື່ອລະເລີຍການປ່ຽນແປງທີ່ບໍ່ໄດ້ຖືກບັນທຶກ.", "SSE.Controllers.Main.leavePageTextOnClose": "ທຸກໆການປ່ຽນແປງທີ່ບໍ່ໄດ້ເກັບຮັກສາໄວ້ໃນຕາຕະລາງນີ້ຈະຫາຍໄປ. ກົດ \"ຍົກເລິກ\" ຈາກນັ້ນ ກົດ \"ບັນທຶກ\" ເພື່ອກົດບັນທຶກ. ກົດ \"OK\" ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກ.", @@ -709,20 +756,32 @@ "SSE.Controllers.Main.saveTitleText": "ກຳລັງບັນທຶກສະເປຣດຊີດ", "SSE.Controllers.Main.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່", "SSE.Controllers.Main.textAnonymous": "ບໍ່ລະບຸຊື່", + "SSE.Controllers.Main.textApplyAll": "ນຳໃຊ້ກັບສົມມະການທັງໝົດ", "SSE.Controllers.Main.textBuyNow": "ເຂົ້າໄປເວັບໄຊ", + "SSE.Controllers.Main.textChangesSaved": "ບັນທຶກການປ່ຽນແປງທັງໝົດ", "SSE.Controllers.Main.textClose": " ປິດ", "SSE.Controllers.Main.textCloseTip": "ກົດເພື່ອປິດຂໍ້ແນະນຳ", "SSE.Controllers.Main.textConfirm": "ການຢັ້ງຢືນຕົວຕົນ", "SSE.Controllers.Main.textContactUs": "ຕິດຕໍ່ຜູ້ຂາຍ", + "SSE.Controllers.Main.textConvertEquation": "ສົມຜົນນີ້ໄດ້ຖືກສ້າງຂື້ນມາກັບບັນນາທິການສົມຜົນລຸ້ນເກົ່າເຊິ່ງບໍ່ໄດ້ຮັບການສະ ໜັບ ສະ ໜູນ ອີກຕໍ່ໄປ ເພື່ອດັດແກ້ມັນ, ປ່ຽນສົມຜົນໃຫ້ເປັນຮູບແບບ Office Math ML.
    ປ່ຽນດຽວນີ້ບໍ?", "SSE.Controllers.Main.textCustomLoader": "ກະລຸນາຮັບຊາບວ່າ ອີງຕາມຂໍ້ ກຳນົດຂອງໃບອະນຸຍາດ ທ່ານບໍ່ມີສິດທີ່ຈະປ່ຽນແປງ ການບັນຈຸ.
    ກະລຸນາຕິດຕໍ່ຝ່າຍຂາຍຂອງພວກເຮົາເພື່ອຂໍໃບສະເໜີ.", + "SSE.Controllers.Main.textDisconnect": "ຂາດການເຊື່ອມຕໍ່", + "SSE.Controllers.Main.textFillOtherRows": "ຕື່ມຂໍ້ມູນໃສ່ແຖວອື່ນ", + "SSE.Controllers.Main.textFormulaFilledAllRows": "ຕື່ມສູດໃສ່ສະເພາະ {0 }. ຕື່ມແຖວຫວ່າງອື່ນໆອາດໃຊ້ເວລາສອງສາມນາທີ.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "ຕື່ມສູດໃສ່ສະເພາະ {0 }. ຕື່ມແຖວຫວ່າງອື່ນໆອາດໃຊ້ເວລາສອງສາມນາທີ.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "ສູດທີ່ຕື່ມໃສ່ພຽງແຕ່ {0} ແຖວທໍາອິດທີ່ມີຂໍ້ມູນໃນການບັນທືກ. ເພື່ອການປະຫຍັດໜ່ວຍວຍຄວາມຈໍາ. ມີ {1} ແຖວອື່ນທີ່ມີຂໍ້ມູນຢູ່ໃນຊີດນີ້. ທ່ານສາມາດຕື່ມຂໍ້ມູນໃຫ້ຄົນອື່ນດ້ວຍຕົນເອງ.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "ສູດຕື່ມໃສ່ພຽງແຕ່ {0} ແຖວທຳອິດໃນການບັນທືກ. ແຖວອື່ນໃນແຜ່ນຊີດນີ້ບໍ່ມີຂໍ້ມູນ.", "SSE.Controllers.Main.textGuest": "ບຸກຄົນທົ່ວໄປ", "SSE.Controllers.Main.textHasMacros": "ເອກະສານບັນຈຸ ມາກໂຄ
    ແບບອັດຕະໂນມັດ, ທ່ານຍັງຕ້ອງການດໍາເນີນງານ ມາກໂຄ ບໍ ", + "SSE.Controllers.Main.textLearnMore": "ຮຽນຮູ້ເພີ່ມຕື່ມ", "SSE.Controllers.Main.textLoadingDocument": "ກຳລັງໂຫຼດ spreadsheet", "SSE.Controllers.Main.textLongName": "ໃສ່ຊື່ທີ່ມີຄວາມຍາວໜ້ອຍກວ່າ 128 ຕົວອັກສອນ.", + "SSE.Controllers.Main.textNeedSynchronize": "ທ່ານໄດ້ປັບປຸງ", "SSE.Controllers.Main.textNo": "ບໍ່", "SSE.Controllers.Main.textNoLicenseTitle": "ໃບອະນຸຍາດໄດ້ເຖິງຈຳນວນທີ່ຈຳກັດແລ້ວ", "SSE.Controllers.Main.textPaidFeature": "ຄຸນສົມບັດທີ່ຈ່າຍ", "SSE.Controllers.Main.textPleaseWait": "ການດຳເນີນງານອາດຈະໃຊ້ເວລາຫຼາຍກວ່າທີ່ຄາດໄວ້. ກະລຸນາລໍຖ້າ...", + "SSE.Controllers.Main.textReconnect": "ການເຊື່ອມຕໍ່ຖືກກູ້ຄືນມາ", "SSE.Controllers.Main.textRemember": "ຈື່ທາງເລືອກຂອງຂ້ອຍ", "SSE.Controllers.Main.textRenameError": "ຊື່ຜູ້ໃຊ້ຕ້ອງບໍ່ວ່າງ", "SSE.Controllers.Main.textRenameLabel": "ໃສ່ຊື່ສຳລັບເປັນຜູ້ປະສານງານ", @@ -750,6 +809,7 @@ "SSE.Controllers.Main.txtDays": "ວັນ", "SSE.Controllers.Main.txtDiagramTitle": "ໃສ່ຊື່ແຜນຮູບວາດ", "SSE.Controllers.Main.txtEditingMode": "ຕັ້ງຄ່າຮູບແບບການແກ້ໄຂ...", + "SSE.Controllers.Main.txtErrorLoadHistory": "ປະຫວັດການດຶງຂໍ້ມູນບໍ່ສຳເລັດ", "SSE.Controllers.Main.txtFiguredArrows": "ເຄື່ອງໝາຍລູກສອນ", "SSE.Controllers.Main.txtFile": "ຟາຍ ", "SSE.Controllers.Main.txtGrandTotal": "ຜົນລວມທັງໝົດ", @@ -969,15 +1029,22 @@ "SSE.Controllers.Main.txtTab": "ແທບ", "SSE.Controllers.Main.txtTable": "ຕາຕະລາງ", "SSE.Controllers.Main.txtTime": "ເວລາ", + "SSE.Controllers.Main.txtUnlock": "ປົດລັອກ", + "SSE.Controllers.Main.txtUnlockRange": "ປົດລັອກໄລຍະ", + "SSE.Controllers.Main.txtUnlockRangeDescription": "ໃສ່ລະຫັດຜ່ານເພື່ອປ່ຽນໄລຍະ:", + "SSE.Controllers.Main.txtUnlockRangeWarning": "ການປ່ຽນແມ່ນຖືກເຂົ້າລະຫັດຜ່ານ.", "SSE.Controllers.Main.txtValues": "ການຕີລາຄາ, ປະເມີນ", "SSE.Controllers.Main.txtXAxis": "ແກນ X", "SSE.Controllers.Main.txtYAxis": "ແກນ Y", "SSE.Controllers.Main.txtYears": "ປີ", "SSE.Controllers.Main.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", "SSE.Controllers.Main.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມາດນຳໃຊ້ໄດ້.", + "SSE.Controllers.Main.uploadDocExtMessage": "ຮູບແບບເອກະສານທີ່ບໍ່ຮູ້.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "ບໍ່ມີເອກະສານຖືກອັບໂຫລດ.", + "SSE.Controllers.Main.uploadDocSizeMessage": "ເກີນຂີດ ຈຳ ກັດຂະ ໜາດ ເອກະສານ.", "SSE.Controllers.Main.uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ", "SSE.Controllers.Main.uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ", - "SSE.Controllers.Main.uploadImageSizeMessage": "ຂະໜາດຂອງຮູບພາບໃຫ່ຍເກີນກໍານົດ", + "SSE.Controllers.Main.uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.", "SSE.Controllers.Main.uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ", "SSE.Controllers.Main.uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", "SSE.Controllers.Main.waitText": "ກະລຸນາລໍຖ້າ...", @@ -1006,6 +1073,7 @@ "SSE.Controllers.Statusbar.errorLastSheet": "ສະໝຸດເຮັດວຽກຕ້ອງມີຢ່າງໜ້ອຍໜື່ງແຜ່ນທີ່ເບິ່ງເຫັນ.", "SSE.Controllers.Statusbar.errorRemoveSheet": "ບໍ່ສາມາດລົບແຜ່ນງານໄດ້", "SSE.Controllers.Statusbar.strSheet": "ແຜ່ນງານ", + "SSE.Controllers.Statusbar.textDisconnect": "ຂາດເຊື່ອມຕໍ່
    ກຳລັງພະຍາຍາມເຊື່ອມຕໍ່. ກະລຸນາກວດເບິ່ງການຕັ້ງຄ່າການເຊື່ອມຕໍ່.", "SSE.Controllers.Statusbar.textSheetViewTip": "ທ່ານຢຸ່ໃນໂຫມດເບີ່ງແຜ່ນວຽກ. ການກັ່ນຕອງ ແລະ ການຈັດລຽງ ປະກົດໃຫ້ເຫັນສະເພາະທ່ານ ແລະ ຜູ້ທີ່ຍັງຢູ່ໃນມຸມມອງນີ້ເທົ່ານັ້ນ", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "ທ່ານຢູ່ໃນໂໝດເບິ່ງແຜ່ນງານ. ຕົວຄັດກອງຈະເບິ່ງເຫັນໄດ້ສະເພາະແຕ່ທ່ານ ແລະ ຜູ້ທີ່ຍັງຢູ່ໃນມຸມມອງນີ້ຢູ່.", "SSE.Controllers.Statusbar.warnDeleteSheet": "ແຜ່ນເຈ້ຍທີ່ເລືອກໄວ້ອາດຈະມີຂໍ້ມູນ. ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດຳເນີນການ?", @@ -1031,6 +1099,7 @@ "SSE.Controllers.Toolbar.textPivot": "ຕາຕະລາງພິວອດ", "SSE.Controllers.Toolbar.textRadical": "ຮາກຖານ", "SSE.Controllers.Toolbar.textRating": "ການໃຫ້ຄະແນນ", + "SSE.Controllers.Toolbar.textRecentlyUsed": "ໃຊ້ລ່າສຸດ", "SSE.Controllers.Toolbar.textScript": "ບົດເລື່ອງ,ບົດລະຄອນ ", "SSE.Controllers.Toolbar.textShapes": "ຮູບຮ່າງ", "SSE.Controllers.Toolbar.textSymbols": "ສັນຍາລັກ", @@ -1213,6 +1282,7 @@ "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "ເລກກຳລັງ", "SSE.Controllers.Toolbar.txtLimitLog_Max": "ໃຫຍ່ສຸດ", "SSE.Controllers.Toolbar.txtLimitLog_Min": "ໜ້ອຍສຸດ", + "SSE.Controllers.Toolbar.txtLockSort": "ພົບຂໍ້ມູນຢູ່ຖັດຈາກການເລືອກຂອງທ່ານ, ແຕ່ທ່ານບໍ່ມີສິດພຽງພໍເພື່ອປ່ຽນຕາລາງເຫຼົ່ານັ້ນ.
    ທ່ານຕ້ອງການສືບຕໍ່ກັບການເລືອກປັດຈຸບັນບໍ?", "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 ເມັດທຣິກວ່າງ", "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 ເມັດທຣິກວ່າງ", "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 ເມັດທຣິກວ່າງ", @@ -1371,7 +1441,9 @@ "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "ຕົວຂັ້ນທົດນິຍົມ", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "ໜື່ງພັນຕົວແຍກ", "SSE.Views.AdvancedSeparatorDialog.textLabel": "ການຕັ້ງຄ່າທີ່ໃຊ້ໃນການຮັບຮູ້ຂໍ້ມູນໂຕເລກ", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "ຄຸນສົມບັດຂໍ້ຄວາມ", "SSE.Views.AdvancedSeparatorDialog.textTitle": "ຕັ້ງຄ່າຂັ້ນສູງ", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(ບໍ່ມີ)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "ຕົວກຣອງທີ່ກຳນົດເອງ", "SSE.Views.AutoFilterDialog.textAddSelection": "ເພີ່ມການເລືອກປະຈຸບັນເພື່ອກຣອງ", "SSE.Views.AutoFilterDialog.textEmptyItem": "{ຊ່ອງວ່າງ}", @@ -1817,6 +1889,7 @@ "SSE.Views.DocumentHolder.textCrop": "ຕັດເປັນສ່ວນ", "SSE.Views.DocumentHolder.textCropFill": "ຕື່ມ", "SSE.Views.DocumentHolder.textCropFit": "ພໍດີ", + "SSE.Views.DocumentHolder.textEditPoints": "ແກ້ໄຂຄະແນນ", "SSE.Views.DocumentHolder.textEntriesList": "ເລືອກໃນລາຍການທີ່ກຳນົດ", "SSE.Views.DocumentHolder.textFlipH": "ປີ້ນແນວນອນ", "SSE.Views.DocumentHolder.textFlipV": "ປີ້ນແນວຕັ້ງ", @@ -1847,6 +1920,13 @@ "SSE.Views.DocumentHolder.textUndo": "ຍົກເລີກ", "SSE.Views.DocumentHolder.textUnFreezePanes": "ຍົກເລີກໝາຍຕາຕະລາງ", "SSE.Views.DocumentHolder.textVar": "ຄ່າຄວາມແປປວນ", + "SSE.Views.DocumentHolder.tipMarkersArrow": "ລູກສອນ", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "ເຄື່ອງໝາຍຖືກ ສະແດງຫົວຂໍ້", + "SSE.Views.DocumentHolder.tipMarkersDash": "ຫົວແຫລມ", + "SSE.Views.DocumentHolder.tipMarkersFRound": "ເພີ່ມຮູບວົງມົນ", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "ເພີ່ມຮູບສີ່ຫຼ່ຽມ", + "SSE.Views.DocumentHolder.tipMarkersHRound": "ແບບຮອບກວ້າງ", + "SSE.Views.DocumentHolder.tipMarkersStar": "ຮູບແບບດາວ", "SSE.Views.DocumentHolder.topCellText": "ຈັດຕຳແໜ່ງດ້ານເທິງ", "SSE.Views.DocumentHolder.txtAccounting": "ການບັນຊີ", "SSE.Views.DocumentHolder.txtAddComment": "ເພີ່ມຄວາມຄິດເຫັນ", @@ -1865,6 +1945,7 @@ "SSE.Views.DocumentHolder.txtClearText": "ຂໍ້ຄວາມ", "SSE.Views.DocumentHolder.txtColumn": "ຖັນທັງໝົດ", "SSE.Views.DocumentHolder.txtColumnWidth": "ຕັ້ງຄ່າຄວາມກ້ວາງຂອງຖັນ", + "SSE.Views.DocumentHolder.txtCondFormat": "ການຈັດຮູບແບບຕາມເງື່ອນໄຂ", "SSE.Views.DocumentHolder.txtCopy": "ສໍາເນົາ", "SSE.Views.DocumentHolder.txtCurrency": "ສະກຸນເງິນ", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "ຄວາມກ້ວາງຂອງຖັນທີ່ກຳນົດເອງ", @@ -1908,7 +1989,7 @@ "SSE.Views.DocumentHolder.txtSortFontColor": "ສີຕົວອັກສອນທີ່ເລືອກໄວ້ດ້ານເທິງ", "SSE.Views.DocumentHolder.txtSparklines": "Sparkline", "SSE.Views.DocumentHolder.txtText": "ຂໍ້ຄວາມ", - "SSE.Views.DocumentHolder.txtTextAdvanced": "ການຕັ້ງຄ່າຂັ້ນສູງຂອງຂໍ້ຄວາມ", + "SSE.Views.DocumentHolder.txtTextAdvanced": "ການຕັ້ງຄ່າຂັ້ນສູງຫຍໍ້ ໜ້າ", "SSE.Views.DocumentHolder.txtTime": "ເວລາ", "SSE.Views.DocumentHolder.txtUngroup": "ຍົກເລີກການຈັດກຸ່ມ", "SSE.Views.DocumentHolder.txtWidth": "ລວງກວ້າງ ", @@ -1944,7 +2025,10 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "ປິດເມນູ", "SSE.Views.FileMenu.btnCreateNewCaption": "ສ້າງໃໝ່", "SSE.Views.FileMenu.btnDownloadCaption": "ດາວໂຫລດເປັນ...", + "SSE.Views.FileMenu.btnExitCaption": " ປິດ", + "SSE.Views.FileMenu.btnFileOpenCaption": "ເປີດ...", "SSE.Views.FileMenu.btnHelpCaption": "ຊ່ວຍເຫຼືອ", + "SSE.Views.FileMenu.btnHistoryCaption": "ປະຫວັດ", "SSE.Views.FileMenu.btnInfoCaption": "ຂໍ້ມູນ Spreadsheet", "SSE.Views.FileMenu.btnPrintCaption": "ພິມ", "SSE.Views.FileMenu.btnProtectCaption": "ຄວາມປອດໄພ", @@ -1957,6 +2041,8 @@ "SSE.Views.FileMenu.btnSaveCopyAsCaption": "ບັນທຶກສຳເນົາເປັນ...", "SSE.Views.FileMenu.btnSettingsCaption": "ຕັ້ງ​ຄ່າ​ຂັ້ນ​ສູງ...", "SSE.Views.FileMenu.btnToEditCaption": "ແກ້ໄຂແຜ່ນງານ", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "ຕາຕະລາງເປົ່າ", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "ສ້າງໃໝ່", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "ໃຊ້", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "ເພີ່ມຜູ້ຂຽນ", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "ເພີ່ມຂໍ້ຄວາມ", @@ -2040,6 +2126,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "ພາສາດັສ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "ໂປແລນ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "ຈຸດ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "ປາຕຸເກດ (ບຣາຊິວ)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "ພາສາໂປຕຸເກດ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "ພາສາໂລມັນ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "ພາສາຣັດເຊຍ", @@ -2077,7 +2164,7 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "ທົ່ວໄປ", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "ຕັ້ງຄ່າໜ້າເຈ້ຍ", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "ກວດກາການສະກົດຄໍາ", - "SSE.Views.FormatRulesEditDlg.fillColor": "ສີພື້ນຫຼັງ", + "SSE.Views.FormatRulesEditDlg.fillColor": "ຕື່ມສີ", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", "SSE.Views.FormatRulesEditDlg.text2Scales": "ສີ 2 ລະດັບ", "SSE.Views.FormatRulesEditDlg.text3Scales": "ສີ 3 ລະດັບ", @@ -2170,6 +2257,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "ຈຳເປັນຕ້ອງມີສ່ວນນີ້", "SSE.Views.FormatRulesEditDlg.txtFraction": "ເສດສ່ວນ", "SSE.Views.FormatRulesEditDlg.txtGeneral": "ທົ່ວໄປ", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "ບໍ່ມີໄອຄອນ", "SSE.Views.FormatRulesEditDlg.txtNumber": "ຕົວເລກ", "SSE.Views.FormatRulesEditDlg.txtPercentage": "ເປີເຊັນ", "SSE.Views.FormatRulesEditDlg.txtScientific": "ວິທະຍາສາດ", @@ -2178,6 +2266,7 @@ "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "ແກ້ໄຂການຈັດຮູບແບບ", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "ຈັດການຮູບແບບໃຫມ່", "SSE.Views.FormatRulesManagerDlg.guestText": "ບຸກຄົນທົ່ວໄປ", + "SSE.Views.FormatRulesManagerDlg.lockText": "ລັອກ", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 ຄ່າບ່ຽງເບນມາດຕະຖານສູງກວ່າຄ່າສະເລຍ", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 ຄ່າບ່ຽງເບນມາດຕະຖານຕໍ່າກວ່າຄ່າສະເລ່ຍ", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 ຄ່າບ່ຽງເບນມາດຕະຖານສູງກວ່າຄ່າສະເລ່ຍ", @@ -2339,6 +2428,7 @@ "SSE.Views.ImageSettings.textCrop": "ຕັດເປັນສ່ວນ", "SSE.Views.ImageSettings.textCropFill": "ຕື່ມ", "SSE.Views.ImageSettings.textCropFit": "ພໍດີ", + "SSE.Views.ImageSettings.textCropToShape": "ຂອບຕັດເພືອເປັນຮູ້ຮ່າງ", "SSE.Views.ImageSettings.textEdit": "ແກ້ໄຂ", "SSE.Views.ImageSettings.textEditObject": "ແກໄຂຈຸດປະສົງ", "SSE.Views.ImageSettings.textFlip": "ປີ້ນ", @@ -2353,6 +2443,7 @@ "SSE.Views.ImageSettings.textInsert": "ປ່ຽນແທນຮູບພາບ", "SSE.Views.ImageSettings.textKeepRatio": "ອັດຕາສ່ວນຄົງທີ່", "SSE.Views.ImageSettings.textOriginalSize": "ຂະໜາດແທ້ຈິງ", + "SSE.Views.ImageSettings.textRecentlyUsed": "ໃຊ້ລ່າສຸດ", "SSE.Views.ImageSettings.textRotate90": "ໝຸນ 90°", "SSE.Views.ImageSettings.textRotation": "ການໝຸນ", "SSE.Views.ImageSettings.textSize": "ຂະໜາດ", @@ -2430,6 +2521,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "ວາງຊື່", "SSE.Views.NameManagerDlg.closeButtonText": " ປິດ", "SSE.Views.NameManagerDlg.guestText": " ແຂກ", + "SSE.Views.NameManagerDlg.lockText": "ລັອກ", "SSE.Views.NameManagerDlg.textDataRange": "ແຖວຂໍ້ມູນ", "SSE.Views.NameManagerDlg.textDelete": "ລົບ", "SSE.Views.NameManagerDlg.textEdit": "ແກ້ໄຂ", @@ -2661,6 +2753,95 @@ "SSE.Views.PrintTitlesDialog.textSelectRange": "ເລືອກຂອບເຂດ", "SSE.Views.PrintTitlesDialog.textTitle": "ພິມຫົວຂໍ້", "SSE.Views.PrintTitlesDialog.textTop": "ເຮັດແຖວດ້ານເທິງຄືນໃໝ່", + "SSE.Views.PrintWithPreview.txtActualSize": "ຂະໜາດແທ້ຈິງ", + "SSE.Views.PrintWithPreview.txtAllSheets": "ທຸກແຜ່ນ", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "ນຳໃຊ້ກັບທຸກແຜ່ນຊີດ", + "SSE.Views.PrintWithPreview.txtBottom": "ລຸ່ມສຸດ", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "ແຜ່ນງານປັດຈະບັນ", + "SSE.Views.PrintWithPreview.txtCustom": "ລູກຄ້າ", + "SSE.Views.PrintWithPreview.txtCustomOptions": "ຕົວເລືອກທີ່ກຳນົດເອງ", + "SSE.Views.PrintWithPreview.txtEmptyTable": "ບໍ່ມີຫຍັງທີ່ຈະພິມເພາະວ່າຕາຕະລາງຫວ່າງເປົ່າ", + "SSE.Views.PrintWithPreview.txtFitCols": "ຈັດທຸກຖັນໃຫ້ພໍດີໃນໜ້າດຽວ", + "SSE.Views.PrintWithPreview.txtFitPage": "ຈັດແຜ່ນໃຫ້ພໍດີໃນໜ້າດຽວ", + "SSE.Views.PrintWithPreview.txtFitRows": "ຈັດທຸກແຖວໃຫ້ພໍດີໃນໜ້າດຽວ", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "ເສັ້ນຕາຕະລາງ ແລະ ຫົວຂໍ້", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "ການຕັ້ງຄ່າສ່ວນຫົວ ແລະ ສ່ວນທ້າຍ", + "SSE.Views.PrintWithPreview.txtIgnore": "ບໍ່ສົນໃຈພື້ນທີ່ພິມ", + "SSE.Views.PrintWithPreview.txtLandscape": "ພູມສັນຖານ", + "SSE.Views.PrintWithPreview.txtLeft": "ຊ້າຍ", + "SSE.Views.PrintWithPreview.txtMargins": "ຂອບ", + "SSE.Views.PrintWithPreview.txtOf": "ຂອງ {0}", + "SSE.Views.PrintWithPreview.txtPage": "ໜ້າ", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "ໝາຍ ເລກ ໜ້າ ບໍ່ຖືກຕ້ອງ", + "SSE.Views.PrintWithPreview.txtPageOrientation": "ທິດທາງໜ້າ", + "SSE.Views.PrintWithPreview.txtPageSize": "ຂະໜາດໜ້າ", + "SSE.Views.PrintWithPreview.txtPortrait": "ລວງຕັ້ງ", + "SSE.Views.PrintWithPreview.txtPrint": "ພິມ", + "SSE.Views.PrintWithPreview.txtPrintGrid": "ພິມເສັ້ນຕາຕະລາງ", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "ພິມແຖວ ແລະ ຖັນ", + "SSE.Views.PrintWithPreview.txtPrintRange": "ຊ້ວງພິມ", + "SSE.Views.PrintWithPreview.txtPrintTitles": "ພິມຫົວຂໍ້", + "SSE.Views.PrintWithPreview.txtRepeat": "ເຮັດຊ້ຳ...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "ເຮັດຢູ່ຖັນເບື້ອງຊ້າຍຄືນໃໝ່", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "ເຮັດແຖວດ້ານເທິງຄືນໃໝ່", + "SSE.Views.PrintWithPreview.txtRight": "ຂວາ", + "SSE.Views.PrintWithPreview.txtSave": "ບັນທຶກ", + "SSE.Views.PrintWithPreview.txtScaling": "ການປັບຂະໜາດ", + "SSE.Views.PrintWithPreview.txtSelection": "ການເລືອກ", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "ການຕັ້ງຄ່າແຜ່ນຊີດ", + "SSE.Views.PrintWithPreview.txtSheet": "ແຜ່ນ: {0}", + "SSE.Views.PrintWithPreview.txtTop": "ເບື້ອງເທີງ", + "SSE.Views.ProtectDialog.textExistName": "ຜິດພາດ! ໄລຍະຫົວຂໍ້ດັ່ງກ່າວມີຢູ່ແລ້ວ", + "SSE.Views.ProtectDialog.textInvalidName": "ຫົວຂໍ້ໄລຍະຈະຕ້ອງຂຶ້ນຕົ້ນດ້ວຍຕົວອັກສອນ ແລະອາດມີຕົວອັກສອນ, ຕົວເລກ, ແລະຍະຫວ່າງເທົ່ານັ້ນ.", + "SSE.Views.ProtectDialog.textInvalidRange": "ຜິດພາດ! ໄລຍະຕາລາງ ບໍ່ຖືກຕ້ອງ", + "SSE.Views.ProtectDialog.textSelectData": "ເລືອກຂໍ້ມູນ", + "SSE.Views.ProtectDialog.txtAllow": "ອະນຸຍາດໃຫ້ຜູ້ໃຊ້ທັງໝົດຂອງແຜ່ນຊີດນີ້", + "SSE.Views.ProtectDialog.txtAutofilter": "ໃຊ້ຕົວກອງອັດຕະໂນມັດ", + "SSE.Views.ProtectDialog.txtDelCols": "ລຶບຄໍລ້ຳ", + "SSE.Views.ProtectDialog.txtDelRows": "ລຶບແຖວ", + "SSE.Views.ProtectDialog.txtEmpty": "ຈຳເປັນຕ້ອງມີສ່ວນນີ້", + "SSE.Views.ProtectDialog.txtFormatCells": "ຈັດຮູບແບບຕາລາງ", + "SSE.Views.ProtectDialog.txtFormatCols": "ຈັດຮູບແບບຖັນ", + "SSE.Views.ProtectDialog.txtFormatRows": "ຈັດຮູບແບບແຖວ", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "ການຢັ້ງຢືນລະຫັດຜ່ານແມ່ນ", + "SSE.Views.ProtectDialog.txtInsCols": "ເພີ່ມຖັນ", + "SSE.Views.ProtectDialog.txtInsHyper": "ໃສ່ລິ້ງໄປຫາ...", + "SSE.Views.ProtectDialog.txtInsRows": "ເພີ່ມແຖວ", + "SSE.Views.ProtectDialog.txtObjs": "ແກ້ໄຂເລື່ອງ", + "SSE.Views.ProtectDialog.txtOptional": "ທາງເລືອກ", + "SSE.Views.ProtectDialog.txtPassword": "ລະຫັດຜ່ານ", + "SSE.Views.ProtectDialog.txtPivot": "ໃຊ້ PivotTable ແລະ PivotChart", + "SSE.Views.ProtectDialog.txtProtect": "ຄວາມປອດໄພ", + "SSE.Views.ProtectDialog.txtRange": "ຊ່ວງ", + "SSE.Views.ProtectDialog.txtRangeName": "ຫົວຂໍ້", + "SSE.Views.ProtectDialog.txtRepeat": "ໃສ່ລະຫັດຜ່ານຄືນໃໝ່", + "SSE.Views.ProtectDialog.txtScen": "ແກ້ໄຂສະຖານະ", + "SSE.Views.ProtectDialog.txtSelLocked": "ເລືອກຕາລາງທີ່ຖືກລັອກ", + "SSE.Views.ProtectDialog.txtSelUnLocked": "ເລືອກຕາລາງປົດລັອກ", + "SSE.Views.ProtectDialog.txtSheetDescription": "ປ້ອງກັນການປ່ຽນແປງທີ່ບໍ່ຕ້ອງການຈາກຜູ້ອື່ນໂດຍການຈໍາກັດຄວາມສາມາດໃນການແກ້ໄຂຂອງພວກເຂົາ.", + "SSE.Views.ProtectDialog.txtSheetTitle": "ປ້ອງກັນແຜ່ນ", + "SSE.Views.ProtectDialog.txtSort": "ລຽງລຳດັບ", + "SSE.Views.ProtectDialog.txtWarning": "ຄຳເຕືອນ: ຖ້າທ່ານລືມລະຫັດຜ່ານ, ທ່ານບໍ່ສາມາດກູ້ຄືນໄດ້. ກະລຸນາຮັກສາມັນໄວ້ໃນບ່ອນທີ່ປອດໄພ.", + "SSE.Views.ProtectDialog.txtWBDescription": "ເພື່ອປ້ອງກັນບໍ່ໃຫ້ຜູ້ໃຊ້ອື່ນເບິ່ງແຜ່ນວຽກທີ່ເຊື່ອງໄວ້, ເພີ່ມ, ຍ້າຍ, ລຶບ, ຫຼື ເຊື່ອງແຜ່ນຊີດ ແລະ ປ່ຽນຊື່ແຜ່ນຊີດ, ທ່ານສາມາດປ້ອງກັນໂຄງສ້າງຂອງປື້ມບັນທືກຂອງທ່ານດ້ວຍລະຫັດຜ່ານ.", + "SSE.Views.ProtectDialog.txtWBTitle": "ປ້ອງກັນໂຄງສ້າງຂອງປຶ້ມບັນທືກ", + "SSE.Views.ProtectRangesDlg.guestText": " ແຂກ", + "SSE.Views.ProtectRangesDlg.lockText": "ລັອກ", + "SSE.Views.ProtectRangesDlg.textDelete": "ລົບ", + "SSE.Views.ProtectRangesDlg.textEdit": "ແກ້ໄຂ", + "SSE.Views.ProtectRangesDlg.textEmpty": "ບໍ່ມີຂອບເຂດອະນຸຍາດໃຫ້ແກ້ໄຂ.", + "SSE.Views.ProtectRangesDlg.textNew": "ໃຫມ່", + "SSE.Views.ProtectRangesDlg.textProtect": "ປ້ອງກັນແຜ່ນ", + "SSE.Views.ProtectRangesDlg.textPwd": "ລະຫັດຜ່ານ", + "SSE.Views.ProtectRangesDlg.textRange": "ຊ່ວງ", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "ໄລຍະທີ່ຖືກປົດລັອກດ້ວຍລະຫັດຜ່ານເມື່ອແຜ່ນຊີດຖືກປ້ອງກັນ (ອັນນີ້ໃຊ້ໄດ້ກັບຕາລາງທີ່ຖືກລັອກເທົ່ານັ້ນ)", + "SSE.Views.ProtectRangesDlg.textTitle": "ຫົວຂໍ້", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "ອົງປະກອບນີ້ໄດ້ຖືກແກ້ໄຂໂດຍຜູ້ນຳໃຊ້ຄົນອື່ນ.", + "SSE.Views.ProtectRangesDlg.txtEditRange": "ແກ້ໄຂໄລຍະ", + "SSE.Views.ProtectRangesDlg.txtNewRange": "ຊ່ວງໃໝ່", + "SSE.Views.ProtectRangesDlg.txtNo": "ບໍ່", + "SSE.Views.ProtectRangesDlg.txtTitle": "ໄລຍະທີ່ອະນຸຍາດໃຫ້ຜູ້ໃຊ້ແກ້ໄຂ", + "SSE.Views.ProtectRangesDlg.txtYes": "ແມ່ນແລ້ວ", + "SSE.Views.ProtectRangesDlg.warnDelete": "ເຈົ້າຫມັ້ນໃຈບໍທີ່ຈະລຶບຊື່ນີ້{0}?", "SSE.Views.RemoveDuplicatesDialog.textColumns": "ຖັນ", "SSE.Views.RemoveDuplicatesDialog.textDescription": "ການທີ່ຈະລືບຄ່າທີ່ຊ້ຳກັນ ຄວນເລືອກໜຶ່ງ ຫຼື ຫຼາຍຖັນທີ່ມີຄ່າຊ້ຳກັນ.", "SSE.Views.RemoveDuplicatesDialog.textHeaders": "ຂໍ້ມູນຂ້ອຍມີສ່ວນຫົວ", @@ -2669,7 +2850,7 @@ "SSE.Views.RightMenu.txtCellSettings": "ການຕັ້ງຄ່າຂອງເຊວ", "SSE.Views.RightMenu.txtChartSettings": "ການຕັ້ງຄ່າແຜ່ນຮູບພາບ", "SSE.Views.RightMenu.txtImageSettings": "ການຕັ້ງຄ່າຮູບພາບ", - "SSE.Views.RightMenu.txtParagraphSettings": "ການຕັ້ງຄ່າຂໍ້ຄວາມ", + "SSE.Views.RightMenu.txtParagraphSettings": "ການຕັ້ງຄ່າວັກ", "SSE.Views.RightMenu.txtPivotSettings": "ການຕັ້ງຄ່າຂອງຕາຕະລາງພິວອດ", "SSE.Views.RightMenu.txtSettings": "ການຕັ້ງຄ່າທົ່ວໄປ", "SSE.Views.RightMenu.txtShapeSettings": "ການຕັ້ງຄ່າຮູບຮ່າງ", @@ -2724,6 +2905,7 @@ "SSE.Views.ShapeSettings.textPatternFill": "ຮູບແບບ", "SSE.Views.ShapeSettings.textPosition": "ຕໍາແໜ່ງ", "SSE.Views.ShapeSettings.textRadial": "ລັງສີ", + "SSE.Views.ShapeSettings.textRecentlyUsed": "ໃຊ້ລ່າສຸດ", "SSE.Views.ShapeSettings.textRotate90": "ໝຸນ 90°", "SSE.Views.ShapeSettings.textRotation": "ການໝຸນ", "SSE.Views.ShapeSettings.textSelectImage": "ເລືອກຮູບພາບ", @@ -2964,13 +3146,17 @@ "SSE.Views.Statusbar.itemMaximum": "ໃຫຍ່ສຸດ", "SSE.Views.Statusbar.itemMinimum": "ໜ້ອຍສຸດ", "SSE.Views.Statusbar.itemMove": "ຍ້າຍ", + "SSE.Views.Statusbar.itemProtect": "ຄວາມປອດໄພ", "SSE.Views.Statusbar.itemRename": "ປ່ຽນຊື່", + "SSE.Views.Statusbar.itemStatus": "ກຳລັງບັນທຶກສະຖານະ", "SSE.Views.Statusbar.itemSum": "ຜົນລວມ", "SSE.Views.Statusbar.itemTabColor": "ສີຫຍໍ້ໜ້າ", + "SSE.Views.Statusbar.itemUnProtect": "ບໍ່ປ້ອງກັນ", "SSE.Views.Statusbar.RenameDialog.errNameExists": "ມີຊື່ແຜນວຽກດັ່ງກ່າວແລ້ວ.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "ຊື່ແຜ່ນງານຕ້ອງບໍ່ມີຕົວອັກສອນດັ່ງຕໍ່ໄປນີ້: \\/*?[]:", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "ຊື່ແຜ່ນເຈ້ຍ", "SSE.Views.Statusbar.selectAllSheets": "ເລືອກແຜນງານທັງໝົດ", + "SSE.Views.Statusbar.sheetIndexText": "ໃບທີ {0} ຈາກທັງໝົດ {1}", "SSE.Views.Statusbar.textAverage": "ສະເລ່ຍ", "SSE.Views.Statusbar.textCount": "ນັບ", "SSE.Views.Statusbar.textMax": "ສູງສຸດ", @@ -2981,6 +3167,7 @@ "SSE.Views.Statusbar.tipAddTab": "ເພີ່ມແຜນງານ", "SSE.Views.Statusbar.tipFirst": "ເລື່ອນໄປທີ່ແຜນງານທຳອິດ", "SSE.Views.Statusbar.tipLast": "ເລື່ອໄປທີ່ແຜນງານສຸດທ້າຍ", + "SSE.Views.Statusbar.tipListOfSheets": "ບັນຊີລາຍຊື່ຂອງແຜ່ນຊີດ", "SSE.Views.Statusbar.tipNext": "ເລື່ອນລາຍຊື່ເອກະສານໄປເບື້ອງຂວາ", "SSE.Views.Statusbar.tipPrev": "ເລື່ອນບັນຊີລາຍຊື່ເອກກະສານໄປເບື້ອງຊ້າຍ", "SSE.Views.Statusbar.tipZoomFactor": "ຂະຫຍາຍ ", @@ -3169,6 +3356,8 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "ກຳນົດໄລຍະຫ່າງຈາກຂອບ", "SSE.Views.Toolbar.textPortrait": "ລວງຕັ້ງ", "SSE.Views.Toolbar.textPrint": "ພິມ", + "SSE.Views.Toolbar.textPrintGridlines": "ພິມເສັ້ນຕາຕະລາງ", + "SSE.Views.Toolbar.textPrintHeadings": "ພິມຫົວເລື່ອງ", "SSE.Views.Toolbar.textPrintOptions": "ການຕັ້ງຄ່າພິມ", "SSE.Views.Toolbar.textRight": "ຂວາ:", "SSE.Views.Toolbar.textRightBorders": "ຂອບຂວາ", @@ -3248,12 +3437,13 @@ "SSE.Views.Toolbar.tipInsertText": "ເພີ່ມປ່ອງຂໍ້ຄວາມ", "SSE.Views.Toolbar.tipInsertTextart": "ເພີ່ມສີລະປະໃສ່່ຂໍ້ຄວາມ", "SSE.Views.Toolbar.tipMerge": "ຮ່ວມ ແລະ ຢູ່ກາງ", + "SSE.Views.Toolbar.tipNone": "ບໍ່ມີ", "SSE.Views.Toolbar.tipNumFormat": "ຮູບແບບຕົວເລກ", "SSE.Views.Toolbar.tipPageMargins": "ຂອບໜ້າ", "SSE.Views.Toolbar.tipPageOrient": "ການກຳນົດໜ້າ", "SSE.Views.Toolbar.tipPageSize": "ຂະໜາດໜ້າ", "SSE.Views.Toolbar.tipPaste": "ວາງ", - "SSE.Views.Toolbar.tipPrColor": "ສີພື້ນຫຼັງ", + "SSE.Views.Toolbar.tipPrColor": "ຕື່ມສີ", "SSE.Views.Toolbar.tipPrint": "ພິມ", "SSE.Views.Toolbar.tipPrintArea": "ເນື້ອທີ່ພິມ", "SSE.Views.Toolbar.tipPrintTitles": "ພິມຫົວຂໍ້", @@ -3318,6 +3508,7 @@ "SSE.Views.Toolbar.txtScheme2": "ໂທນສີເທົາ", "SSE.Views.Toolbar.txtScheme20": "ໃນເມືອງ", "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "ຫ້ອງການໃໝ່", "SSE.Views.Toolbar.txtScheme3": "ເອເພັກສ", "SSE.Views.Toolbar.txtScheme4": "ມຸມມອງ", "SSE.Views.Toolbar.txtScheme5": "ປະຫວັດ", @@ -3375,6 +3566,7 @@ "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": " ປິດ", "SSE.Views.ViewManagerDlg.guestText": " ແຂກ", + "SSE.Views.ViewManagerDlg.lockText": "ລັອກ", "SSE.Views.ViewManagerDlg.textDelete": "ລົບ", "SSE.Views.ViewManagerDlg.textDuplicate": "ກ໋ອບປີ້, ສຳເນົາ", "SSE.Views.ViewManagerDlg.textEmpty": "ຍັງບໍ່ມີການສ້າງມຸມມອງ", @@ -3390,16 +3582,38 @@ "SSE.Views.ViewManagerDlg.warnDeleteView": "ທ່ານກຳລັງພະຍາຍາມທີ່ຈະລົບມຸມມອງທີ່ເປີດໃຊ້ງານປັດຈຸບັນ '%1'.
    ປິດມຸມມອງນີ້ ແລະ ລົບອອກ ຫຼື ບໍ່?", "SSE.Views.ViewTab.capBtnFreeze": "ຕິກໃສ່ບໍລິເວນທີ່ຕ້ອງການໃຫ້ເຫັນແຈ້ງ", "SSE.Views.ViewTab.capBtnSheetView": "ມູມມອງແຜ່ນງານ", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "ສະແດງແຖບເຄື່ອງມືສະເໝີ", "SSE.Views.ViewTab.textClose": " ປິດ", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "ເຊື່ອງແຖບສະຖານະກີດ", "SSE.Views.ViewTab.textCreate": "ໃຫມ່", "SSE.Views.ViewTab.textDefault": "ຄ່າເລີ້ມຕົ້ນ", "SSE.Views.ViewTab.textFormula": "ແຖບສູດ", + "SSE.Views.ViewTab.textFreezeCol": "ລ໊ອກການເບີ່ງເຫັນຖັນທຳອິດ", + "SSE.Views.ViewTab.textFreezeRow": "ລ໊ອກການເບີ່ງເຫັນແຖວເທິງ", "SSE.Views.ViewTab.textGridlines": "ເສັ້ນຕາຕະລາງ", "SSE.Views.ViewTab.textHeadings": "ຫົວເລື່ອງ", + "SSE.Views.ViewTab.textInterfaceTheme": "้ຮູບແບບການສະແດງຜົນ", "SSE.Views.ViewTab.textManager": "ການຈັດການມຸມມອງ", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "ສະແດງເງົາຂອງແຖບແຂງ", + "SSE.Views.ViewTab.textUnFreeze": "ຍົກເລີກໝາຍຕາຕະລາງ", + "SSE.Views.ViewTab.textZeros": "ບໍ່ມີເນື້ອຫາ", "SSE.Views.ViewTab.textZoom": "ຂະຫຍາຍ ", "SSE.Views.ViewTab.tipClose": "ປິດມູມມອງແຜ່ນງານ", "SSE.Views.ViewTab.tipCreate": "ສ້າງມຸມມອງແຜ່ນງານ", "SSE.Views.ViewTab.tipFreeze": "ຕິກໃສ່ບໍລິເວນທີ່ຕ້ອງການໃຫ້ເຫັນແຈ້ງ", - "SSE.Views.ViewTab.tipSheetView": "ມູມມອງແຜ່ນງານ" + "SSE.Views.ViewTab.tipSheetView": "ມູມມອງແຜ່ນງານ", + "SSE.Views.WBProtection.hintAllowRanges": "ໄລຍະທີ່ອະນຸຍາດໃຫ້ແກ້ໄຂ", + "SSE.Views.WBProtection.hintProtectSheet": "ປ້ອງກັນແຜ່ນ", + "SSE.Views.WBProtection.hintProtectWB": "ປ້ອງກັນປຶ້ມບັນທືກ", + "SSE.Views.WBProtection.txtAllowRanges": "ໄລຍະທີ່ອະນຸຍາດໃຫ້ແກ້ໄຂ", + "SSE.Views.WBProtection.txtHiddenFormula": "ສູດທີ່ເຊື່ອງໄວ້", + "SSE.Views.WBProtection.txtLockedCell": "ຕາລາງທີ່ຖືກລັອກ", + "SSE.Views.WBProtection.txtLockedShape": "ຮູບຮ່າງຖືກລັອກ", + "SSE.Views.WBProtection.txtLockedText": "ລັອກຂໍ້ຄວາມ", + "SSE.Views.WBProtection.txtProtectSheet": "ປ້ອງກັນແຜ່ນ", + "SSE.Views.WBProtection.txtProtectWB": "ປ້ອງກັນປຶ້ມບັນທືກ", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "ໃສ່ລະຫັດຜ່ານເພື່ອຍົກເລີກການປ້ອງກັນແຜ່ນ", + "SSE.Views.WBProtection.txtSheetUnlockTitle": "ບໍ່ປ້ອງກັນແຜ່ນຊີດ", + "SSE.Views.WBProtection.txtWBUnlockDescription": "ປ້ອນລະຫັດຜ່ານເພື່ອບໍ່ປົກປ້ອງປື້ມບັນທືກ", + "SSE.Views.WBProtection.txtWBUnlockTitle": "ບໍ່ປ້ອງ ປື້ມບັນທືກ" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/lv.json b/apps/spreadsheeteditor/main/locale/lv.json index 57891c8c8..be1e8982e 100644 --- a/apps/spreadsheeteditor/main/locale/lv.json +++ b/apps/spreadsheeteditor/main/locale/lv.json @@ -2,6 +2,7 @@ "cancelButtonText": "Atcelt", "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", "Common.Controllers.Chat.textEnterMessage": "Ievadiet savu ziņu šeit", + "Common.UI.ButtonColored.textNewColor": "Pievienot jauno krāsu", "Common.UI.ComboBorderSize.txtNoBorders": "No borders", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", "Common.UI.ComboDataView.emptyComboText": "No styles", @@ -1202,6 +1203,7 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Apskatīt parakstus", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Lapas iestatījumi", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Pievienot jauno krāsu", "SSE.Views.FormatSettingsDialog.textCategory": "Kategorija", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimālis", "SSE.Views.FormatSettingsDialog.textFormat": "Formāts", @@ -1234,6 +1236,7 @@ "SSE.Views.FormulaDialog.textGroupDescription": "Izvēlieties funkcijas grupu", "SSE.Views.FormulaDialog.textListDescription": "Izvēlieties funkciju", "SSE.Views.FormulaDialog.txtTitle": "Ievietot funkciju", + "SSE.Views.HeaderFooterDialog.textNewColor": "Pievienot jauno krāsu", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Parādīt", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Saistīt ar", "SSE.Views.HyperlinkSettingsDialog.strRange": "Diapazons", diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index c73e4e3df..1cbed9457 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Maak een kopie", "Common.Translation.warnFileLockedBtnView": "Open voor lezen", "Common.UI.ButtonColored.textAutoColor": "Automatisch", - "Common.UI.ButtonColored.textNewColor": "Voeg nieuwe aangepaste kleur toe", + "Common.UI.ButtonColored.textNewColor": "Nieuwe aangepaste kleur", "Common.UI.ComboBorderSize.txtNoBorders": "Geen randen", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Geen randen", "Common.UI.ComboDataView.emptyComboText": "Geen stijlen", @@ -2193,7 +2193,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minimum waarde", "SSE.Views.FormatRulesEditDlg.textNegative": "Negatief", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Nieuwe aangepaste kleur", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Geen randen", "SSE.Views.FormatRulesEditDlg.textNone": "Geen", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Een of meer van de opgegeven waarden is geen geldig percentage.", @@ -2361,7 +2361,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Cursief", "SSE.Views.HeaderFooterDialog.textLeft": "Links", "SSE.Views.HeaderFooterDialog.textMaxError": "De tekstreeks die u heeft ingevoerd, is te lang. Verminder het aantal gebruikte tekens.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "SSE.Views.HeaderFooterDialog.textNewColor": "Nieuwe aangepaste kleur", "SSE.Views.HeaderFooterDialog.textOdd": "Oneven pagina", "SSE.Views.HeaderFooterDialog.textPageCount": "Aantal pagina's", "SSE.Views.HeaderFooterDialog.textPageNum": "Paginanummer", @@ -3092,7 +3092,7 @@ "SSE.Views.Statusbar.textCount": "AANTAL", "SSE.Views.Statusbar.textMax": "Max", "SSE.Views.Statusbar.textMin": "Min", - "SSE.Views.Statusbar.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "SSE.Views.Statusbar.textNewColor": "Nieuwe aangepaste kleur", "SSE.Views.Statusbar.textNoColor": "Geen kleur", "SSE.Views.Statusbar.textSum": "SOM", "SSE.Views.Statusbar.tipAddTab": "Werkblad yoevoegen", @@ -3278,7 +3278,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Horizontale binnenranden", "SSE.Views.Toolbar.textMoreFormats": "Meer indelingen", "SSE.Views.Toolbar.textMorePages": "Meer pagina's", - "SSE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "SSE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur", "SSE.Views.Toolbar.textNewRule": "Nieuwe regel", "SSE.Views.Toolbar.textNoBorders": "Geen randen", "SSE.Views.Toolbar.textOnePage": "Pagina", diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json index f5ab82322..114cd6cc7 100644 --- a/apps/spreadsheeteditor/main/locale/pl.json +++ b/apps/spreadsheeteditor/main/locale/pl.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Utwórz kopię", "Common.Translation.warnFileLockedBtnView": "Otwórz do oglądania", "Common.UI.ButtonColored.textAutoColor": "Automatyczny", - "Common.UI.ButtonColored.textNewColor": "Dodaj nowy niestandardowy kolor", + "Common.UI.ButtonColored.textNewColor": "Nowy niestandardowy kolor", "Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi", "Common.UI.ComboDataView.emptyComboText": "Brak styli", @@ -2197,7 +2197,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimalny", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Min. punkt", "SSE.Views.FormatRulesEditDlg.textNegative": "Negatywny", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Dodaj nowy niestandardowy kolor", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Nowy niestandardowy kolor", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Bez krawędzi", "SSE.Views.FormatRulesEditDlg.textNone": "Żaden", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Co najmniej jedna z podanych wartości nie jest prawidłową wartością procentową.", @@ -2366,7 +2366,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Kursywa", "SSE.Views.HeaderFooterDialog.textLeft": "Do Lewej", "SSE.Views.HeaderFooterDialog.textMaxError": "Wpisany ciąg tekstowy jest za długi. Zmniejsz liczbę używanych znaków.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Dodaj nowy niestandardowy kolor", + "SSE.Views.HeaderFooterDialog.textNewColor": "Nowy niestandardowy kolor", "SSE.Views.HeaderFooterDialog.textOdd": "Nieparzysta strona", "SSE.Views.HeaderFooterDialog.textPageCount": "Liczba stron", "SSE.Views.HeaderFooterDialog.textPageNum": "Numer strony", @@ -3121,7 +3121,7 @@ "SSE.Views.Statusbar.textCount": "Licz", "SSE.Views.Statusbar.textMax": "Maksimum", "SSE.Views.Statusbar.textMin": "Minimum", - "SSE.Views.Statusbar.textNewColor": "Dodaj nowy niestandardowy kolor", + "SSE.Views.Statusbar.textNewColor": "Nowy niestandardowy kolor", "SSE.Views.Statusbar.textNoColor": "Bez koloru", "SSE.Views.Statusbar.textSum": "Suma", "SSE.Views.Statusbar.tipAddTab": "Dodaj arkusz", @@ -3308,7 +3308,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Wewnątrz poziomych granic", "SSE.Views.Toolbar.textMoreFormats": "Więcej formatów", "SSE.Views.Toolbar.textMorePages": "Inne strony", - "SSE.Views.Toolbar.textNewColor": "Dodaj nowy niestandardowy kolor", + "SSE.Views.Toolbar.textNewColor": "Nowy niestandardowy kolor", "SSE.Views.Toolbar.textNewRule": "Nowa reguła", "SSE.Views.Toolbar.textNoBorders": "Bez krawędzi", "SSE.Views.Toolbar.textOnePage": "Strona", diff --git a/apps/spreadsheeteditor/main/locale/pt-PT.json b/apps/spreadsheeteditor/main/locale/pt-PT.json new file mode 100644 index 000000000..449b740ab --- /dev/null +++ b/apps/spreadsheeteditor/main/locale/pt-PT.json @@ -0,0 +1,3625 @@ +{ + "cancelButtonText": "Cancelar", + "Common.Controllers.Chat.notcriticalErrorTitle": "Aviso", + "Common.Controllers.Chat.textEnterMessage": "Inserir sua mensagem aqui", + "Common.Controllers.History.notcriticalErrorTitle": "Aviso", + "Common.define.chartData.textArea": "Área", + "Common.define.chartData.textAreaStacked": "Área empilhada", + "Common.define.chartData.textAreaStackedPer": "Área 100% alinhada", + "Common.define.chartData.textBar": "Barra", + "Common.define.chartData.textBarNormal": "Coluna agrupada", + "Common.define.chartData.textBarNormal3d": "Coluna 3-D agrupada", + "Common.define.chartData.textBarNormal3dPerspective": "Coluna 3-D", + "Common.define.chartData.textBarStacked": "Coluna empilhada", + "Common.define.chartData.textBarStacked3d": "Coluna 3-D agrupada", + "Common.define.chartData.textBarStackedPer": "Coluna 100% alinhada", + "Common.define.chartData.textBarStackedPer3d": "Coluna 3-D 100% alinhada", + "Common.define.chartData.textCharts": "Gráficos", + "Common.define.chartData.textColumn": "Coluna", + "Common.define.chartData.textColumnSpark": "Coluna", + "Common.define.chartData.textCombo": "Combinação", + "Common.define.chartData.textComboAreaBar": "Área empilhada – coluna agrupada", + "Common.define.chartData.textComboBarLine": "Coluna agrupada – linha", + "Common.define.chartData.textComboBarLineSecondary": "Coluna agrupada – linha num eixo secundário", + "Common.define.chartData.textComboCustom": "Combinação personalizada", + "Common.define.chartData.textDoughnut": "Rosquinha", + "Common.define.chartData.textHBarNormal": "Barra Agrupada", + "Common.define.chartData.textHBarNormal3d": "Barra 3-D agrupada", + "Common.define.chartData.textHBarStacked": "Barra empilhada", + "Common.define.chartData.textHBarStacked3d": "Barra 3-D agrupada", + "Common.define.chartData.textHBarStackedPer": "Barra 100% alinhada", + "Common.define.chartData.textHBarStackedPer3d": "Barra 3-D 100% alinhada", + "Common.define.chartData.textLine": "Linha", + "Common.define.chartData.textLine3d": "Linha 3-D", + "Common.define.chartData.textLineMarker": "Linha com marcadores", + "Common.define.chartData.textLineSpark": "Linha", + "Common.define.chartData.textLineStacked": "Linha empilhada", + "Common.define.chartData.textLineStackedMarker": "Linha empilhada com marcadores", + "Common.define.chartData.textLineStackedPer": "100% Alinhado", + "Common.define.chartData.textLineStackedPerMarker": "Alinhado com 100%", + "Common.define.chartData.textPie": "Tarte", + "Common.define.chartData.textPie3d": "Tarte 3-D", + "Common.define.chartData.textPoint": "XY (gráfico de dispersão)", + "Common.define.chartData.textScatter": "Dispersão", + "Common.define.chartData.textScatterLine": "Dispersão com Linhas Retas", + "Common.define.chartData.textScatterLineMarker": "Dispersão com Linhas e Marcadores Retos", + "Common.define.chartData.textScatterSmooth": "Dispersão com Linhas Suaves", + "Common.define.chartData.textScatterSmoothMarker": "Dispersão com Linhas Suaves e Marcadores", + "Common.define.chartData.textSparks": "Sparklines", + "Common.define.chartData.textStock": "Gráfico de ações", + "Common.define.chartData.textSurface": "Superfície", + "Common.define.chartData.textWinLossSpark": "Ganho/Perda", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "Nenhum formato definido", + "Common.define.conditionalData.text1Above": "1 acima do desv. padr. ", + "Common.define.conditionalData.text1Below": "1 abaixo do desv. padr.", + "Common.define.conditionalData.text2Above": "2 desv. padr. acima", + "Common.define.conditionalData.text2Below": "2 abaixo do desv. padr.", + "Common.define.conditionalData.text3Above": "3 acima do desv. padr. ", + "Common.define.conditionalData.text3Below": "3 abaixo do desv. padr.", + "Common.define.conditionalData.textAbove": "Acima", + "Common.define.conditionalData.textAverage": "Média", + "Common.define.conditionalData.textBegins": "Começa com", + "Common.define.conditionalData.textBelow": "Abaixo", + "Common.define.conditionalData.textBetween": "Entre", + "Common.define.conditionalData.textBlank": "Branco", + "Common.define.conditionalData.textBlanks": "Contém espaços em branco", + "Common.define.conditionalData.textBottom": "Inferior", + "Common.define.conditionalData.textContains": "Contém", + "Common.define.conditionalData.textDataBar": "Barra de dados", + "Common.define.conditionalData.textDate": "Data", + "Common.define.conditionalData.textDuplicate": "Duplicar", + "Common.define.conditionalData.textEnds": "termina com", + "Common.define.conditionalData.textEqAbove": "Igual ou maior", + "Common.define.conditionalData.textEqBelow": "Igual ou menor", + "Common.define.conditionalData.textEqual": "Igual a", + "Common.define.conditionalData.textError": "Erro", + "Common.define.conditionalData.textErrors": "Contém erros", + "Common.define.conditionalData.textFormula": "Fórmula", + "Common.define.conditionalData.textGreater": "Superior a", + "Common.define.conditionalData.textGreaterEq": "Superior a ou igual a", + "Common.define.conditionalData.textIconSets": "Conjuntos de ícones", + "Common.define.conditionalData.textLast7days": "Nos últimos 7 dias", + "Common.define.conditionalData.textLastMonth": "último mês", + "Common.define.conditionalData.textLastWeek": "A semana passada", + "Common.define.conditionalData.textLess": "Inferior a", + "Common.define.conditionalData.textLessEq": "Inferior a ou igual a", + "Common.define.conditionalData.textNextMonth": "Próximo Mês", + "Common.define.conditionalData.textNextWeek": "Próxima semana", + "Common.define.conditionalData.textNotBetween": "Não está entre", + "Common.define.conditionalData.textNotBlanks": "Não contém células em branco", + "Common.define.conditionalData.textNotContains": "não contém", + "Common.define.conditionalData.textNotEqual": "Não igual a", + "Common.define.conditionalData.textNotErrors": "Não contem erros", + "Common.define.conditionalData.textText": "Тexto", + "Common.define.conditionalData.textThisMonth": "Este mês", + "Common.define.conditionalData.textThisWeek": "Esta semana", + "Common.define.conditionalData.textToday": "Hoje", + "Common.define.conditionalData.textTomorrow": "Amanhã", + "Common.define.conditionalData.textTop": "Parte superior", + "Common.define.conditionalData.textUnique": "Único", + "Common.define.conditionalData.textValue": "Valor é", + "Common.define.conditionalData.textYesterday": "Ontem", + "Common.Translation.warnFileLocked": "O ficheiro está a ser editado por outra aplicação. Pode continuar a trabalhar mas terá que guardar uma cópia.", + "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", + "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", + "Common.UI.ButtonColored.textAutoColor": "Automático", + "Common.UI.ButtonColored.textNewColor": "Adicionar nova cor personalizada", + "Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas", + "Common.UI.ComboDataView.emptyComboText": "Sem estilos", + "Common.UI.ExtendedColorDialog.addButtonText": "Adicionar", + "Common.UI.ExtendedColorDialog.textCurrent": "Atual", + "Common.UI.ExtendedColorDialog.textHexErr": "O valor inserido não está correto.
    Introduza um valor entre 000000 e FFFFFF.", + "Common.UI.ExtendedColorDialog.textNew": "Novo", + "Common.UI.ExtendedColorDialog.textRGBErr": "O valor inserido não está correto.
    Introduza um valor numérico entre 0 e 255.", + "Common.UI.HSBColorPicker.textNoColor": "Sem cor", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ocultar palavra-passe", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Mostrar palavra-passe", + "Common.UI.SearchDialog.textHighlight": "Destacar resultados", + "Common.UI.SearchDialog.textMatchCase": "Diferenciar maiúsculas de minúsculas", + "Common.UI.SearchDialog.textReplaceDef": "Inserir o texto de substituição", + "Common.UI.SearchDialog.textSearchStart": "Insira seu texto aqui", + "Common.UI.SearchDialog.textTitle": "Localizar e Substituir", + "Common.UI.SearchDialog.textTitle2": "Localizar", + "Common.UI.SearchDialog.textWholeWords": "Palavras inteiras apenas", + "Common.UI.SearchDialog.txtBtnHideReplace": "Ocultar substituição", + "Common.UI.SearchDialog.txtBtnReplace": "Substituir", + "Common.UI.SearchDialog.txtBtnReplaceAll": "Substituir tudo", + "Common.UI.SynchronizeTip.textDontShow": "Não exibir esta mensagem novamente", + "Common.UI.SynchronizeTip.textSynchronize": "O documento foi alterado por outro utilizador.
    Clique para guardar as suas alterações e recarregar o documento.", + "Common.UI.ThemeColorPalette.textStandartColors": "Cores padrão", + "Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema", + "Common.UI.Themes.txtThemeClassicLight": "Clássico claro", + "Common.UI.Themes.txtThemeDark": "Escuro", + "Common.UI.Themes.txtThemeLight": "Claro", + "Common.UI.Window.cancelButtonText": "Cancelar", + "Common.UI.Window.closeButtonText": "Fechar", + "Common.UI.Window.noButtonText": "Não", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Confirmação", + "Common.UI.Window.textDontShow": "Não exibir esta mensagem novamente", + "Common.UI.Window.textError": "Erro", + "Common.UI.Window.textInformation": "Informações", + "Common.UI.Window.textWarning": "Aviso", + "Common.UI.Window.yesButtonText": "Sim", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "endereço:", + "Common.Views.About.txtLicensee": "LICENÇA", + "Common.Views.About.txtLicensor": "LICENCIANTE", + "Common.Views.About.txtMail": "e-mail:", + "Common.Views.About.txtPoweredBy": "Desenvolvido por", + "Common.Views.About.txtTel": "tel.:", + "Common.Views.About.txtVersion": "Versão", + "Common.Views.AutoCorrectDialog.textAdd": "Adicionar", + "Common.Views.AutoCorrectDialog.textApplyAsWork": "Aplicar ao trabalhar", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correção automática", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Formato automático ao escrever", + "Common.Views.AutoCorrectDialog.textBy": "Por", + "Common.Views.AutoCorrectDialog.textDelete": "Eliminar", + "Common.Views.AutoCorrectDialog.textFLSentence": "Capitalizar a primeira letra das frases", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e locais de rede com hiperligações", + "Common.Views.AutoCorrectDialog.textMathCorrect": " Correção automática de matemática", + "Common.Views.AutoCorrectDialog.textNewRowCol": "Incluir novas linhas e colunas na tabela", + "Common.Views.AutoCorrectDialog.textRecognized": "Funções Reconhecidas", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "As seguintes expressões são expressões matemáticas reconhecidas. Não serão colocadas automaticamente em itálico.", + "Common.Views.AutoCorrectDialog.textReplace": "Substituir", + "Common.Views.AutoCorrectDialog.textReplaceText": "Substituir à medida que digita", + "Common.Views.AutoCorrectDialog.textReplaceType": "Substitua o texto à medida que digita", + "Common.Views.AutoCorrectDialog.textReset": "Redefinir", + "Common.Views.AutoCorrectDialog.textResetAll": "Repor para a predefinição", + "Common.Views.AutoCorrectDialog.textRestore": "Restaurar", + "Common.Views.AutoCorrectDialog.textTitle": "Correção automática", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "As funções reconhecidas devem conter apenas as letras de A a Z, maiúsculas ou minúsculas.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Qualquer expressão que tenha adicionado será removida e as expressões removidas serão restauradas. Quer continuar?", + "Common.Views.AutoCorrectDialog.warnReplace": "A correção automática para %1 já existe. Quer substituí-la?", + "Common.Views.AutoCorrectDialog.warnReset": "Qualquer correção automática que tenha adicionado será removida e as alterações serão restauradas aos seus valores originais. Quer continuar?", + "Common.Views.AutoCorrectDialog.warnRestore": "A correção automática para %1 já existe. Quer substituí-la?", + "Common.Views.Chat.textSend": "Enviar", + "Common.Views.Comments.mniAuthorAsc": "Autor de A a Z", + "Common.Views.Comments.mniAuthorDesc": "Autor Z a A", + "Common.Views.Comments.mniDateAsc": "Mais antigo", + "Common.Views.Comments.mniDateDesc": "Novidades", + "Common.Views.Comments.mniFilterGroups": "Filtrar por Grupo", + "Common.Views.Comments.mniPositionAsc": "De cima", + "Common.Views.Comments.mniPositionDesc": "Do fundo", + "Common.Views.Comments.textAdd": "Adicionar", + "Common.Views.Comments.textAddComment": "Adicionar", + "Common.Views.Comments.textAddCommentToDoc": "Adicionar comentário ao documento", + "Common.Views.Comments.textAddReply": "Adicionar resposta", + "Common.Views.Comments.textAll": "Todos", + "Common.Views.Comments.textAnonym": "Visitante", + "Common.Views.Comments.textCancel": "Cancelar", + "Common.Views.Comments.textClose": "Fechar", + "Common.Views.Comments.textClosePanel": "Fechar comentários", + "Common.Views.Comments.textComments": "Comentários", + "Common.Views.Comments.textEdit": "Editar", + "Common.Views.Comments.textEnterCommentHint": "Inserir seu comentário aqui", + "Common.Views.Comments.textHintAddComment": "Adicionar comentário", + "Common.Views.Comments.textOpenAgain": "Abrir novamente", + "Common.Views.Comments.textReply": "Responder", + "Common.Views.Comments.textResolve": "Resolver", + "Common.Views.Comments.textResolved": "Resolvido", + "Common.Views.Comments.textSort": "Ordenar comentários", + "Common.Views.Comments.textViewResolved": "Não tem permissão para reabrir o comentário", + "Common.Views.CopyWarningDialog.textDontShow": "Não exibir esta mensagem novamente", + "Common.Views.CopyWarningDialog.textMsg": "As ações copiar, cortar e colar através dos botões da barra de ferramentas ou através do menu de contexto apenas serão executadas neste separador.

    Para copiar ou colar de outras aplicações deve utilizar estas teclas de atalho:", + "Common.Views.CopyWarningDialog.textTitle": "Ações copiar, cortar e colar", + "Common.Views.CopyWarningDialog.textToCopy": "para copiar", + "Common.Views.CopyWarningDialog.textToCut": "para cortar", + "Common.Views.CopyWarningDialog.textToPaste": "para Colar", + "Common.Views.DocumentAccessDialog.textLoading": "Carregando ...", + "Common.Views.DocumentAccessDialog.textTitle": "Definições de partilha", + "Common.Views.EditNameDialog.textLabel": "Etiqueta:", + "Common.Views.EditNameDialog.textLabelError": "Etiqueta não deve estar em branco.", + "Common.Views.Header.labelCoUsersDescr": "Utilizadores a editar o ficheiro:", + "Common.Views.Header.textAddFavorite": "Marcar como favorito", + "Common.Views.Header.textAdvSettings": "Definições avançadas", + "Common.Views.Header.textBack": "Abrir localização", + "Common.Views.Header.textCompactView": "Ocultar barra de ferramentas", + "Common.Views.Header.textHideLines": "Ocultar réguas", + "Common.Views.Header.textHideStatusBar": "Combinar as barras da folha e de estado", + "Common.Views.Header.textRemoveFavorite": "Remover dos favoritos", + "Common.Views.Header.textSaveBegin": "Salvando...", + "Common.Views.Header.textSaveChanged": "Modificado", + "Common.Views.Header.textSaveEnd": "Todas as alterações foram guardadas", + "Common.Views.Header.textSaveExpander": "Todas as alterações foram guardadas", + "Common.Views.Header.textZoom": "Ampliação", + "Common.Views.Header.tipAccessRights": "Gerir direitos de acesso ao documento", + "Common.Views.Header.tipDownload": "Descarregar ficheiro", + "Common.Views.Header.tipGoEdit": "Editar ficheiro atual", + "Common.Views.Header.tipPrint": "Imprimir ficheiro", + "Common.Views.Header.tipRedo": "Refazer", + "Common.Views.Header.tipSave": "Salvar", + "Common.Views.Header.tipUndo": "Desfazer", + "Common.Views.Header.tipViewSettings": "Definições de visualização", + "Common.Views.Header.tipViewUsers": "Ver utilizadores e gerir direitos de acesso", + "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", + "Common.Views.Header.txtRename": "Renomear", + "Common.Views.History.textCloseHistory": "Fechar histórico", + "Common.Views.History.textHide": "Recolher", + "Common.Views.History.textHideAll": "Ocultar alterações detalhadas", + "Common.Views.History.textRestore": "Restaurar", + "Common.Views.History.textShow": "Expandir", + "Common.Views.History.textShowAll": "Mostrar alterações detalhadas", + "Common.Views.History.textVer": "ver.", + "Common.Views.ImageFromUrlDialog.textUrl": "Colar URL de uma imagem:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "Common.Views.ListSettingsDialog.textBulleted": "Com Marcas de Lista", + "Common.Views.ListSettingsDialog.textNumbering": "Numerado", + "Common.Views.ListSettingsDialog.tipChange": "Alterar lista", + "Common.Views.ListSettingsDialog.txtBullet": "Marcador", + "Common.Views.ListSettingsDialog.txtColor": "Cor", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nova marca", + "Common.Views.ListSettingsDialog.txtNone": "Nenhum", + "Common.Views.ListSettingsDialog.txtOfText": "% do texto", + "Common.Views.ListSettingsDialog.txtSize": "Tamanho", + "Common.Views.ListSettingsDialog.txtStart": "Iniciar em", + "Common.Views.ListSettingsDialog.txtSymbol": "Símbolo", + "Common.Views.ListSettingsDialog.txtTitle": "Definições da lista", + "Common.Views.ListSettingsDialog.txtType": "Tipo", + "Common.Views.OpenDialog.closeButtonText": "Fechar ficheiro", + "Common.Views.OpenDialog.textInvalidRange": "Intervalo de células inválido", + "Common.Views.OpenDialog.textSelectData": "Selecionar dados", + "Common.Views.OpenDialog.txtAdvanced": "Avançado", + "Common.Views.OpenDialog.txtColon": "Dois pontos", + "Common.Views.OpenDialog.txtComma": "Vírgula", + "Common.Views.OpenDialog.txtDelimiter": "Delimiter", + "Common.Views.OpenDialog.txtDestData": "Escolher onde colocar os dados", + "Common.Views.OpenDialog.txtEmpty": "Este campo é obrigatório", + "Common.Views.OpenDialog.txtEncoding": "Codificação", + "Common.Views.OpenDialog.txtIncorrectPwd": "Palavra-passe inválida.", + "Common.Views.OpenDialog.txtOpenFile": "Introduza a palavra-passe para abrir o ficheiro", + "Common.Views.OpenDialog.txtOther": "Outro", + "Common.Views.OpenDialog.txtPassword": "Palavra-passe", + "Common.Views.OpenDialog.txtPreview": "Pré-visualizar", + "Common.Views.OpenDialog.txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta.", + "Common.Views.OpenDialog.txtSemicolon": "Ponto e vírgula", + "Common.Views.OpenDialog.txtSpace": "Espaço", + "Common.Views.OpenDialog.txtTab": "Tab", + "Common.Views.OpenDialog.txtTitle": "Escolher opções %1", + "Common.Views.OpenDialog.txtTitleProtected": "Ficheiro protegido", + "Common.Views.PasswordDialog.txtDescription": "Defina uma palavra-passe para proteger este documento", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Disparidade nas palavras-passe introduzidas", + "Common.Views.PasswordDialog.txtPassword": "Palavra-passe", + "Common.Views.PasswordDialog.txtRepeat": "Repetição de palavra-passe", + "Common.Views.PasswordDialog.txtTitle": "Definir palavra-passe", + "Common.Views.PasswordDialog.txtWarning": "Aviso: Se perder ou esquecer a palavra-passe, não será possível recuperá-la. Guarde-a num local seguro.", + "Common.Views.PluginDlg.textLoading": "Carregamento", + "Common.Views.Plugins.groupCaption": "Plugins", + "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textLoading": "Carregamento", + "Common.Views.Plugins.textStart": "Iniciar", + "Common.Views.Plugins.textStop": "Parar", + "Common.Views.Protection.hintAddPwd": "Cifrar com palavra-passe", + "Common.Views.Protection.hintPwd": "Alterar ou eliminar palavra-passe", + "Common.Views.Protection.hintSignature": "Adicionar assinatura digital ou linha de assinatura", + "Common.Views.Protection.txtAddPwd": "Adicionar palavra-passe", + "Common.Views.Protection.txtChangePwd": "Alterar palavra-passe", + "Common.Views.Protection.txtDeletePwd": "Eliminar palavra-passe", + "Common.Views.Protection.txtEncrypt": "Encriptar", + "Common.Views.Protection.txtInvisibleSignature": "Adicionar assinatura digital", + "Common.Views.Protection.txtSignature": "Assinatura", + "Common.Views.Protection.txtSignatureLine": "Adicionar linha de assinatura", + "Common.Views.RenameDialog.textName": "Nome do ficheiro", + "Common.Views.RenameDialog.txtInvalidName": "O nome do ficheiro não pode ter qualquer um dos seguintes caracteres:", + "Common.Views.ReviewChanges.hintNext": "Para a próxima alteração", + "Common.Views.ReviewChanges.hintPrev": "Para a alteração anterior", + "Common.Views.ReviewChanges.strFast": "Rápido", + "Common.Views.ReviewChanges.strFastDesc": "Edição em tempo real. Todas as alterações foram guardadas.", + "Common.Views.ReviewChanges.strStrict": "Estrito", + "Common.Views.ReviewChanges.strStrictDesc": "Utilize o botão 'Guardar' para sincronizar as alterações efetuadas ao documento.", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Aceitar alteração atual", + "Common.Views.ReviewChanges.tipCoAuthMode": "Definir modo de coedição", + "Common.Views.ReviewChanges.tipCommentRem": "Remover comentários", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Remover comentários atuais", + "Common.Views.ReviewChanges.tipCommentResolve": "Resolver comentários", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resolver comentários atuais", + "Common.Views.ReviewChanges.tipHistory": "Mostrar histórico de versão", + "Common.Views.ReviewChanges.tipRejectCurrent": "Rejeitar alterações atuais", + "Common.Views.ReviewChanges.tipReview": "Rastreio de alterações", + "Common.Views.ReviewChanges.tipReviewView": "Selecione o modo em que pretende que as alterações sejam apresentadas", + "Common.Views.ReviewChanges.tipSetDocLang": "Definir idioma do documento", + "Common.Views.ReviewChanges.tipSetSpelling": "Verificação ortográfica", + "Common.Views.ReviewChanges.tipSharing": "Gerir direitos de acesso ao documento", + "Common.Views.ReviewChanges.txtAccept": "Aceitar", + "Common.Views.ReviewChanges.txtAcceptAll": "Aceitar todas as alterações", + "Common.Views.ReviewChanges.txtAcceptChanges": "Aceitar alterações", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Aceitar alteração atual", + "Common.Views.ReviewChanges.txtChat": "Gráfico", + "Common.Views.ReviewChanges.txtClose": "Fechar", + "Common.Views.ReviewChanges.txtCoAuthMode": "Modo de co-edição", + "Common.Views.ReviewChanges.txtCommentRemAll": "Remover todos os comentários", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remover comentários atuais", + "Common.Views.ReviewChanges.txtCommentRemMy": "Remover os meus comentários", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remover os meus comentários atuais", + "Common.Views.ReviewChanges.txtCommentRemove": "Remover", + "Common.Views.ReviewChanges.txtCommentResolve": "Resolver", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolver todos os comentários", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolver comentários atuais", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolver os meus comentários", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolver os meus comentários atuais", + "Common.Views.ReviewChanges.txtDocLang": "Língua", + "Common.Views.ReviewChanges.txtFinal": "Todas as alterações aceites (Pré-visualizar)", + "Common.Views.ReviewChanges.txtFinalCap": "Final", + "Common.Views.ReviewChanges.txtHistory": "Histórico da versão", + "Common.Views.ReviewChanges.txtMarkup": "Todas as alterações (Editar)", + "Common.Views.ReviewChanges.txtMarkupCap": "Marcação", + "Common.Views.ReviewChanges.txtNext": "Próximo", + "Common.Views.ReviewChanges.txtOriginal": "Todas as alterações recusadas (Pré-visualizar)", + "Common.Views.ReviewChanges.txtOriginalCap": "Original", + "Common.Views.ReviewChanges.txtPrev": "Anterior", + "Common.Views.ReviewChanges.txtReject": "Rejeitar", + "Common.Views.ReviewChanges.txtRejectAll": "Rejeitar todas as alterações", + "Common.Views.ReviewChanges.txtRejectChanges": "Rejeitar alterações", + "Common.Views.ReviewChanges.txtRejectCurrent": "Rejeitar alterações atuais", + "Common.Views.ReviewChanges.txtSharing": "Partilhar", + "Common.Views.ReviewChanges.txtSpelling": "Verificação ortográfica", + "Common.Views.ReviewChanges.txtTurnon": "Rastreio de alterações", + "Common.Views.ReviewChanges.txtView": "Modo de exibição", + "Common.Views.ReviewPopover.textAdd": "Adicionar", + "Common.Views.ReviewPopover.textAddReply": "Adicionar resposta", + "Common.Views.ReviewPopover.textCancel": "Cancelar", + "Common.Views.ReviewPopover.textClose": "Fechar", + "Common.Views.ReviewPopover.textEdit": "Ok", + "Common.Views.ReviewPopover.textMention": "+menção disponibiliza o acesso ao documento e envia um e-mail ao utilizador", + "Common.Views.ReviewPopover.textMentionNotify": "+menção notifica o utilizador por e-mail", + "Common.Views.ReviewPopover.textOpenAgain": "Abrir novamente", + "Common.Views.ReviewPopover.textReply": "Responder", + "Common.Views.ReviewPopover.textResolve": "Resolver", + "Common.Views.ReviewPopover.textViewResolved": "Não tem permissão para reabrir o comentário", + "Common.Views.ReviewPopover.txtDeleteTip": "Eliminar", + "Common.Views.ReviewPopover.txtEditTip": "Editar", + "Common.Views.SaveAsDlg.textLoading": "Carregamento", + "Common.Views.SaveAsDlg.textTitle": "Pasta para guardar", + "Common.Views.SelectFileDlg.textLoading": "Carregamento", + "Common.Views.SelectFileDlg.textTitle": "Selecionar fonte de dados", + "Common.Views.SignDialog.textBold": "Negrito", + "Common.Views.SignDialog.textCertificate": "Certificado", + "Common.Views.SignDialog.textChange": "Alterar", + "Common.Views.SignDialog.textInputName": "Inserir nome do assinante", + "Common.Views.SignDialog.textItalic": "Itálico", + "Common.Views.SignDialog.textNameError": "O nome do assinante não pode estar vazio", + "Common.Views.SignDialog.textPurpose": "Objetivo para assinar este documento", + "Common.Views.SignDialog.textSelect": "Selecionar", + "Common.Views.SignDialog.textSelectImage": "Selecionar imagem", + "Common.Views.SignDialog.textSignature": "A assinatura parece ser", + "Common.Views.SignDialog.textTitle": "Assinar o documento", + "Common.Views.SignDialog.textUseImage": "ou clique \"Selecionar imagem\" para a utilizar como assinatura", + "Common.Views.SignDialog.textValid": "Válida de %1 até %2", + "Common.Views.SignDialog.tipFontName": "Nome do tipo de letra", + "Common.Views.SignDialog.tipFontSize": "Tamanho do tipo de letra", + "Common.Views.SignSettingsDialog.textAllowComment": "Permitir ao signatário inserir comentários no diálogo de assinatura", + "Common.Views.SignSettingsDialog.textInfo": "Informação sobre o Assinante", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", + "Common.Views.SignSettingsDialog.textInfoName": "Nome", + "Common.Views.SignSettingsDialog.textInfoTitle": "Título do Assinante", + "Common.Views.SignSettingsDialog.textInstructions": "Instruções para o assinante", + "Common.Views.SignSettingsDialog.textShowDate": "Mostrar data na linha de assinatura", + "Common.Views.SignSettingsDialog.textTitle": "Definições de Assinatura", + "Common.Views.SignSettingsDialog.txtEmpty": "Este campo é obrigatório", + "Common.Views.SymbolTableDialog.textCharacter": "Caractere", + "Common.Views.SymbolTableDialog.textCode": "Valor Unicode HEX", + "Common.Views.SymbolTableDialog.textCopyright": "Assinatura Copyright", + "Common.Views.SymbolTableDialog.textDCQuote": "Aspas Duplas de Fechamento", + "Common.Views.SymbolTableDialog.textDOQuote": "Aspas de abertura", + "Common.Views.SymbolTableDialog.textEllipsis": "Elipse horizontal", + "Common.Views.SymbolTableDialog.textEmDash": "Travessão", + "Common.Views.SymbolTableDialog.textEmSpace": "Espaço", + "Common.Views.SymbolTableDialog.textEnDash": "Travessão", + "Common.Views.SymbolTableDialog.textEnSpace": "Espaço", + "Common.Views.SymbolTableDialog.textFont": "Tipo de letra", + "Common.Views.SymbolTableDialog.textNBHyphen": "Hífen inseparável", + "Common.Views.SymbolTableDialog.textNBSpace": "Espaço sem interrupção", + "Common.Views.SymbolTableDialog.textPilcrow": "Sinal de antígrafo", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 de espaço (Em)", + "Common.Views.SymbolTableDialog.textRange": "Intervalo", + "Common.Views.SymbolTableDialog.textRecent": "Símbolos usados recentemente", + "Common.Views.SymbolTableDialog.textRegistered": "Sinal Registado", + "Common.Views.SymbolTableDialog.textSCQuote": "Aspas de Fechamento", + "Common.Views.SymbolTableDialog.textSection": "Sinal de secção", + "Common.Views.SymbolTableDialog.textShortcut": "Tecla de atalho", + "Common.Views.SymbolTableDialog.textSHyphen": "Hífen virtual", + "Common.Views.SymbolTableDialog.textSOQuote": "Apóstrofo de abertura", + "Common.Views.SymbolTableDialog.textSpecial": "Caracteres especiais", + "Common.Views.SymbolTableDialog.textSymbols": "Símbolos", + "Common.Views.SymbolTableDialog.textTitle": "Símbolo", + "Common.Views.SymbolTableDialog.textTradeMark": "Símbolo de Marca Registada.", + "Common.Views.UserNameDialog.textDontShow": "Não perguntar novamente", + "Common.Views.UserNameDialog.textLabel": "Etiqueta:", + "Common.Views.UserNameDialog.textLabelError": "Etiqueta não deve estar em branco.", + "SSE.Controllers.DataTab.textColumns": "Colunas", + "SSE.Controllers.DataTab.textEmptyUrl": "Precisa de especificar o URL.", + "SSE.Controllers.DataTab.textRows": "Linhas", + "SSE.Controllers.DataTab.textWizard": "Texto para Colunas", + "SSE.Controllers.DataTab.txtDataValidation": "Validação dos dados", + "SSE.Controllers.DataTab.txtExpand": "Expandir", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Os dados adjacentes à seleção não serão removidos. Deseja expandir a seleção para incluir os dados adjacentes ou continuar com a ordenação apenas das células atualmente selecionadas?", + "SSE.Controllers.DataTab.txtExtendDataValidation": "A seleção contém algumas células sem definições de Validação de dados.
    Deseja estender a validação de dados a estas células?", + "SSE.Controllers.DataTab.txtImportWizard": "Wizard de Importação de Texto", + "SSE.Controllers.DataTab.txtRemDuplicates": "Remover duplicados", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "A seleção contém mais do que um tipo de validação.
    Eliminar as definições atuais e continuar?", + "SSE.Controllers.DataTab.txtRemSelected": "Remover nos Selecionados", + "SSE.Controllers.DataTab.txtUrlTitle": "Colar um URL de dados", + "SSE.Controllers.DocumentHolder.alignmentText": "Alinhamento", + "SSE.Controllers.DocumentHolder.centerText": "Centro", + "SSE.Controllers.DocumentHolder.deleteColumnText": "Eliminar coluna", + "SSE.Controllers.DocumentHolder.deleteRowText": "Excluir linha", + "SSE.Controllers.DocumentHolder.deleteText": "Eliminar", + "SSE.Controllers.DocumentHolder.errorInvalidLink": "A referência da ligação não existe. Deve corrigir ou eliminar a ligação.", + "SSE.Controllers.DocumentHolder.guestText": "Visitante", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Coluna esquerda", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "Coluna direita", + "SSE.Controllers.DocumentHolder.insertRowAboveText": "Linha acima", + "SSE.Controllers.DocumentHolder.insertRowBelowText": "Linha abaixo", + "SSE.Controllers.DocumentHolder.insertText": "Inserir", + "SSE.Controllers.DocumentHolder.leftText": "Esquerda", + "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Aviso", + "SSE.Controllers.DocumentHolder.rightText": "Direita", + "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Opções de correção automática", + "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Largura da coluna {0} símbolos ({1} pixels)", + "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Altura da linha {0} pontos ({1} pixels)", + "SSE.Controllers.DocumentHolder.textCtrlClick": "Clique na ligação para a abrir ou clique e prima o botão do rato para selecionar a célula.", + "SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Left", + "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Colar especial", + "SSE.Controllers.DocumentHolder.textStopExpand": "Parar de expandir automaticamente as tabelas", + "SSE.Controllers.DocumentHolder.textSym": "Sim.", + "SSE.Controllers.DocumentHolder.tipIsLocked": "Este elemento está a ser editado por outro utilizador.", + "SSE.Controllers.DocumentHolder.txtAboveAve": "Abaixo da média", + "SSE.Controllers.DocumentHolder.txtAddBottom": "Adicionar contorno inferior", + "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Adicionar barra de fração", + "SSE.Controllers.DocumentHolder.txtAddHor": "Adicionar linha horizontal", + "SSE.Controllers.DocumentHolder.txtAddLB": "Adicionar linha inferior esquerda", + "SSE.Controllers.DocumentHolder.txtAddLeft": "Adicionar contorno esquerdo", + "SSE.Controllers.DocumentHolder.txtAddLT": "Adicionar linha superior esquerda", + "SSE.Controllers.DocumentHolder.txtAddRight": "Adicionar contorno direito", + "SSE.Controllers.DocumentHolder.txtAddTop": "Adicionar contorno superior", + "SSE.Controllers.DocumentHolder.txtAddVer": "Adicionar linha vertical", + "SSE.Controllers.DocumentHolder.txtAlignToChar": "Alinhar ao carácter", + "SSE.Controllers.DocumentHolder.txtAll": "(Tudo)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Retorna todo o conteúdo da tabela ou colunas especificadas da tabela, incluindo os cabeçalhos de coluna, dados e linhas totais", + "SSE.Controllers.DocumentHolder.txtAnd": "e", + "SSE.Controllers.DocumentHolder.txtBegins": "Começa com", + "SSE.Controllers.DocumentHolder.txtBelowAve": "Abaixo da média", + "SSE.Controllers.DocumentHolder.txtBlanks": "(Vazios)", + "SSE.Controllers.DocumentHolder.txtBorderProps": "Propriedades do contorno", + "SSE.Controllers.DocumentHolder.txtBottom": "Baixo", + "SSE.Controllers.DocumentHolder.txtColumn": "Coluna", + "SSE.Controllers.DocumentHolder.txtColumnAlign": "Alinhamento de colunas", + "SSE.Controllers.DocumentHolder.txtContains": "Contém", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Devolve as células de dados da tabela ou as colunas da tabela especificadas", + "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Diminuir tamanho do argumento", + "SSE.Controllers.DocumentHolder.txtDeleteArg": "Eliminar argumento", + "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Eliminar quebra manual", + "SSE.Controllers.DocumentHolder.txtDeleteChars": "Eliminar caracteres anexos ", + "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Eliminar separadores e caracteres anexos", + "SSE.Controllers.DocumentHolder.txtDeleteEq": "Eliminar equação", + "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Eliminar carácter", + "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Eliminar radical", + "SSE.Controllers.DocumentHolder.txtEnds": "termina com", + "SSE.Controllers.DocumentHolder.txtEquals": "igual", + "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Igual à cor da célula", + "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Igual à cor do tipo de letra", + "SSE.Controllers.DocumentHolder.txtExpand": "Expandir e Ordenar", + "SSE.Controllers.DocumentHolder.txtExpandSort": "Os dados adjacentes à seleção não serão classificados. Deseja expandir a seleção para incluir os dados adjacentes ou continuar com a ordenação apenas das células atualmente selecionadas?", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "Baixo", + "SSE.Controllers.DocumentHolder.txtFilterTop": "Parte superior", + "SSE.Controllers.DocumentHolder.txtFractionLinear": "Alterar para fração linear", + "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Alterar para fração inclinada", + "SSE.Controllers.DocumentHolder.txtFractionStacked": "Alterar para fração empilhada", + "SSE.Controllers.DocumentHolder.txtGreater": "Superior a", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Superior a ou igual a", + "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Caractere sobre texto", + "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Carácter sob texto", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Devolve os cabeçalhos das colunas para a tabela ou colunas de tabela especificadas", + "SSE.Controllers.DocumentHolder.txtHeight": "Altura", + "SSE.Controllers.DocumentHolder.txtHideBottom": "Ocultar borda inferior", + "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Ocultar limite inferior", + "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Ocultar o parêntesis de fecho", + "SSE.Controllers.DocumentHolder.txtHideDegree": "Ocultar grau", + "SSE.Controllers.DocumentHolder.txtHideHor": "Ocultar linha horizontal", + "SSE.Controllers.DocumentHolder.txtHideLB": "Ocultar linha inferior esquerda", + "SSE.Controllers.DocumentHolder.txtHideLeft": "Ocultar borda esquerda", + "SSE.Controllers.DocumentHolder.txtHideLT": "Ocultar linha superior esquerda", + "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Ocultar parêntese de abertura", + "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Ocultar espaço reservado", + "SSE.Controllers.DocumentHolder.txtHideRight": "Ocultar borda direita", + "SSE.Controllers.DocumentHolder.txtHideTop": "Ocultar contorno superior", + "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Ocultar limite superior", + "SSE.Controllers.DocumentHolder.txtHideVer": "Ocultar linha vertical", + "SSE.Controllers.DocumentHolder.txtImportWizard": "Wizard de Importação de Texto", + "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Aumentar tamanho do argumento", + "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Inserir argumento após", + "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Inserir argumento antes", + "SSE.Controllers.DocumentHolder.txtInsertBreak": "Inserir quebra manual", + "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Inserir equação a seguir", + "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Inserir equação à frente", + "SSE.Controllers.DocumentHolder.txtItems": "Itens", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Manter apenas texto", + "SSE.Controllers.DocumentHolder.txtLess": "Inferior a", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Inferior a ou igual a", + "SSE.Controllers.DocumentHolder.txtLimitChange": "Alterar localização de limites", + "SSE.Controllers.DocumentHolder.txtLimitOver": "Limite sobre o texto", + "SSE.Controllers.DocumentHolder.txtLimitUnder": "Limite sob o texto", + "SSE.Controllers.DocumentHolder.txtLockSort": "Os dados foram encontrados ao lado da sua seleção, mas não tem permissões suficientes para alterar essas células.
    Deseja continuar com a seleção atual?", + "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Combinar parênteses com a altura do argumento", + "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Alinhamento de matriz", + "SSE.Controllers.DocumentHolder.txtNoChoices": "Não há escolhas para preencher a célula.
    Apenas os valores de texto da coluna podem ser selecionados para substituição.", + "SSE.Controllers.DocumentHolder.txtNotBegins": "não começa com", + "SSE.Controllers.DocumentHolder.txtNotContains": "não contém", + "SSE.Controllers.DocumentHolder.txtNotEnds": "não termina com", + "SSE.Controllers.DocumentHolder.txtNotEquals": "não é igual a", + "SSE.Controllers.DocumentHolder.txtOr": "Ou", + "SSE.Controllers.DocumentHolder.txtOverbar": "Barra por cima do texto", + "SSE.Controllers.DocumentHolder.txtPaste": "Colar", + "SSE.Controllers.DocumentHolder.txtPasteBorders": "Formula sem limites", + "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Fórmula + largura da coluna", + "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Formatação de destino", + "SSE.Controllers.DocumentHolder.txtPasteFormat": "Colar apenas a formatação", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Fórmula + formato dos números", + "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Colar apenas a fórmula", + "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Fórmula + toda a formatação", + "SSE.Controllers.DocumentHolder.txtPasteLink": "Colar ligação", + "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Imagem vinculada", + "SSE.Controllers.DocumentHolder.txtPasteMerge": "Intercalar Formatação Condicional", + "SSE.Controllers.DocumentHolder.txtPastePicture": "Imagem", + "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Formatação da origem", + "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transpor", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Valor + toda a formatação", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Valor + formato numérico", + "SSE.Controllers.DocumentHolder.txtPasteValues": "Colar apenas os valores", + "SSE.Controllers.DocumentHolder.txtPercent": "Percentagem", + "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Refazer a Expansão Automática da Tabela", + "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Remover barra de fração", + "SSE.Controllers.DocumentHolder.txtRemLimit": "Remover limite", + "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Remover caractere destacado", + "SSE.Controllers.DocumentHolder.txtRemoveBar": "Remover barra", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Quer remover esta assinatura?
    Isto não pode ser anulado.", + "SSE.Controllers.DocumentHolder.txtRemScripts": "Remover scripts", + "SSE.Controllers.DocumentHolder.txtRemSubscript": "Remover subscrito", + "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Remover sobrescrito", + "SSE.Controllers.DocumentHolder.txtRowHeight": "Altura da Linha", + "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Scripts após o texto", + "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Scripts antes do texto", + "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Mostrar limite inferior", + "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Mostrar colchetes de fechamento", + "SSE.Controllers.DocumentHolder.txtShowDegree": "Exibir grau", + "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Mostrar chaveta de abertura", + "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Exibir espaço reservado", + "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Exibir limite superior", + "SSE.Controllers.DocumentHolder.txtSorting": "A Ordenar", + "SSE.Controllers.DocumentHolder.txtSortSelected": "Ordenar o que está selecionado", + "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Esticar colchetes", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Escolher apenas esta linha de uma coluna específica", + "SSE.Controllers.DocumentHolder.txtTop": "Parte superior", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Devolve o total de linhas para a tabela ou coluna da tabela especificada", + "SSE.Controllers.DocumentHolder.txtUnderbar": "Barra por baixo do texto", + "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Anular a Expansão Automática da Tabela", + "SSE.Controllers.DocumentHolder.txtUseTextImport": "Utilizar Assistente de Importação de Texto", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "Clicar nesta ligação pode ser prejudicial ao seu dispositivo e dados.
    Deseja continuar?", + "SSE.Controllers.DocumentHolder.txtWidth": "Largura", + "SSE.Controllers.FormulaDialog.sCategoryAll": "Todas", + "SSE.Controllers.FormulaDialog.sCategoryCube": "Cubo", + "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Base de dados", + "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Data e Hora", + "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Engenharia", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financeiras", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "Informação", + "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 últimos utilizados", + "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logical", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Procura e referência", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Matemática e trigonometria", + "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Estatísticas", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Texto e Dados", + "SSE.Controllers.LeftMenu.newDocumentTitle": "Planilha sem nome", + "SSE.Controllers.LeftMenu.textByColumns": "Por colunas", + "SSE.Controllers.LeftMenu.textByRows": "Por linhas", + "SSE.Controllers.LeftMenu.textFormulas": "Fórmulas", + "SSE.Controllers.LeftMenu.textItemEntireCell": "Inserir conteúdo da célula", + "SSE.Controllers.LeftMenu.textLoadHistory": "A carregar o histórico de versões...", + "SSE.Controllers.LeftMenu.textLookin": "Olhar em", + "SSE.Controllers.LeftMenu.textNoTextFound": "Não foi possível localizar os dados procurados. Por favor ajuste as opções de pesquisa.", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", + "SSE.Controllers.LeftMenu.textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", + "SSE.Controllers.LeftMenu.textSearch": "Pesquisa", + "SSE.Controllers.LeftMenu.textSheet": "Folha", + "SSE.Controllers.LeftMenu.textValues": "Valores", + "SSE.Controllers.LeftMenu.textWarning": "Aviso", + "SSE.Controllers.LeftMenu.textWithin": "Dentro", + "SSE.Controllers.LeftMenu.textWorkbook": "Pasta de trabalho", + "SSE.Controllers.LeftMenu.txtUntitled": "Sem título", + "SSE.Controllers.LeftMenu.warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos exceto o texto serão perdidos.
    Você tem certeza que quer continuar?", + "SSE.Controllers.Main.confirmMoveCellRange": "O intervalo de célula de destino pode conter dados. Continuar a operação?", + "SSE.Controllers.Main.confirmPutMergeRange": "Os dados de origem continham células unidas.
    Elas não estavam unidas antes de serem coladas na tabela.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "As fórmulas na linha de cabeçalho serão removidas e convertidas para texto estático.
    Deseja continuar?", + "SSE.Controllers.Main.convertationTimeoutText": "Excedeu o tempo limite de conversão.", + "SSE.Controllers.Main.criticalErrorExtText": "Prima \"OK\" para voltar para a lista de documentos.", + "SSE.Controllers.Main.criticalErrorTitle": "Erro", + "SSE.Controllers.Main.downloadErrorText": "Falha ao descarregar.", + "SSE.Controllers.Main.downloadTextText": "A descarregar folha de cálculo...", + "SSE.Controllers.Main.downloadTitleText": "Descarregar folha de cálculo", + "SSE.Controllers.Main.errNoDuplicates": "Nenhum valor duplicado foi encontrado.", + "SSE.Controllers.Main.errorAccessDeny": "Está a tentar executar uma ação para a qual não tem permissões.
    Por favor contacte o administrador do servidor de documentos.", + "SSE.Controllers.Main.errorArgsRange": "Existe um erro na fórmula.
    Utilizou um argumento inválido.", + "SSE.Controllers.Main.errorAutoFilterChange": "A operação não é permitida, uma vez que ela está tentando deslocar células na tabela em sua planilha.", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "A operação não pode ser executada porque não é possível mover apenas uma parte da tabela.
    Selecione outro intervalo de dados para que possa mover toda a tabela e tente novamente.", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Não foi possível concluir a operação para o intervalo de células selecionado.
    Selecione um intervalo de dados diferente e tente novamente.", + "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": "URL inválido", + "SSE.Controllers.Main.errorCannotUngroup": "Não foi possível desagrupar. Para começar um contorno do gráfico, selecione as linhas ou colunas e agrupe-as.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Não se pode utilizar este comando numa folha protegida. Para utilizar este comando, desproteja a folha.
    Poderá ser-lhe solicitado que introduza uma palavra-passe.", + "SSE.Controllers.Main.errorChangeArray": "Não se pode alterar parte de uma matriz.", + "SSE.Controllers.Main.errorChangeFilteredRange": "Isto irá alterar um intervalo filtrado na sua folha de cálculo.
    Para completar esta tarefa, por favor remova os filtros automáticos.", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "A célula ou gráfico que está a tentar mudar está numa folha protegida.
    Para fazer uma mudança, desbloqueia a folha. Poderá ser-lhe solicitado que introduza uma palavra-passe.", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão com servidor perdida. O documento não pode ser editado neste momento.", + "SSE.Controllers.Main.errorConnectToServer": "Não foi possível guardar o documento. Verifique a sua ligação de rede ou contacte o administrador.
    Ao clicar em 'OK', surgirá uma caixa de diálogo para descarregar o documento.", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Este comando não pode ser utilizado com várias seleções.
    Selecionar uma única gama e tentar novamente.", + "SSE.Controllers.Main.errorCountArg": "Existe um erro na fórmula.
    Utilizou um número de argumentos inválido.", + "SSE.Controllers.Main.errorCountArgExceed": "Um erro na fórmula inserida.
    Número de argumentos está excedido.", + "SSE.Controllers.Main.errorCreateDefName": "Os intervalos nomeados existentes não podem ser criados e os novos também não podem ser editados porque alguns deles estão a ser editados.", + "SSE.Controllers.Main.errorDatabaseConnection": "Erro externo.
    Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.", + "SSE.Controllers.Main.errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", + "SSE.Controllers.Main.errorDataRange": "Intervalo de dados inválido.", + "SSE.Controllers.Main.errorDataValidate": "O valor introduzido não é válido.
    Um utilizador restringiu os valores que podem ser utilizados neste campo.", + "SSE.Controllers.Main.errorDefaultMessage": "Código do erro: %1", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Está a tentar apagar uma coluna que contém uma célula protegida. As células protegidas não podem ser apagadas enquanto a folha de cálculo estiver protegida.
    Para apagar uma célula bloqueada, desproteja a folha. É possível ter que introduzir uma palavra-passe.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Está a tentar apagar uma linha que contém uma célula protegida. As células protegidas não podem ser apagadas enquanto a folha de cálculo estiver protegida.
    Para apagar uma célula bloqueada, desproteja a folha. É possível ter que introduzir uma palavra-passe.", + "SSE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro ao trabalhar no documento.
    Utilize a opção 'Descarregar como...' para guardar uma cópia do ficheiro no seu computador.", + "SSE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro ao trabalhar no documento.
    Utilize a opção 'Guardar como...' para guardar uma cópia do ficheiro no seu computador.", + "SSE.Controllers.Main.errorEditView": "A vista de folha existente não pode ser editada e as novas também não podem ser editadas porque algumas delas estão a ser editadas.", + "SSE.Controllers.Main.errorEmailClient": "Não foi possível encontrar nenhum cliente de e-mail.", + "SSE.Controllers.Main.errorFilePassProtect": "O ficheiro está protegido por palavra-passe e não pode ser aberto.", + "SSE.Controllers.Main.errorFileRequest": "Erro externo.
    Erro ao pedir o ficheiro. Se o erro se mantiver, deve contactar o suporte.", + "SSE.Controllers.Main.errorFileSizeExceed": "O tamanho do ficheiro excede o limite do servidor.
    Contacte o administrador do servidor de documentos para mais detalhes.", + "SSE.Controllers.Main.errorFileVKey": "Erro externo.
    Chave de segurança inválida. Se este erro se mantiver, deve contactar o suporte.", + "SSE.Controllers.Main.errorFillRange": "Não foi possível preencher o intervalo de células.
    Todas as células unidas têm que ter o mesmo tamanho.", + "SSE.Controllers.Main.errorForceSave": "Ocorreu um erro ao guardar o ficheiro. Utilize a opção 'Descarregar' para guardar o ficheiro no seu computador e tentar mais tarde.", + "SSE.Controllers.Main.errorFormulaName": "Existe um erro na fórmula.
    Utilizou um nome de fórmula inválido.", + "SSE.Controllers.Main.errorFormulaParsing": "Erro interno ao analisar a fórmula.", + "SSE.Controllers.Main.errorFrmlMaxLength": "O comprimento da sua fórmula excede o limite de 8192 caracteres.
    Por favor, edite-a e tente novamente.", + "SSE.Controllers.Main.errorFrmlMaxReference": "Não pode inserir esta fórmula porque possui demasiados valores,
    referências de célula, e/ou nomes.", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "Os valores de texto em fórmulas estão limitados a 255 caracteres.
    Utilize a função CONCATENATE ou o operador de concatenação (&).", + "SSE.Controllers.Main.errorFrmlWrongReferences": "A função refere-se a uma folha que não existe.
    Por favor, verifique os dados e tente novamente.", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "Não foi possível completar a operação para o intervalo de células selecionado.
    Selecionou um intervalo de uma forma que a primeira linha da tabela estava na mesma linha
    então a tabela que criou sobrepôs-se à atual.", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Não foi possível completar a operação para o intervalo de células selecionado. Selecione um intervalo que não inclua outras tabelas.", + "SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "SSE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", + "SSE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", + "SSE.Controllers.Main.errorLabledColumnsPivot": "Para criar uma tabela dinâmica, deve utilizar dados organizados em lista e com cabeçalho de colunas.", + "SSE.Controllers.Main.errorLoadingFont": "Tipos de letra não carregados.
    Por favor contacte o administrador do servidor de documentos.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "A referência para a localização ou intervalo de dados não é válida.", + "SSE.Controllers.Main.errorLockedAll": "Não foi possível efetuar a ação porque a folha está bloqueada por outro utilizador.", + "SSE.Controllers.Main.errorLockedCellPivot": "Não pode alterar dados dentro de uma tabela dinâmica.", + "SSE.Controllers.Main.errorLockedWorksheetRename": "Não foi possível alterar o nome da folha porque o nome está a ser alterado por outro utilizador.", + "SSE.Controllers.Main.errorMaxPoints": "O número máximo de pontos em série, por gráfico, é 4096.", + "SSE.Controllers.Main.errorMoveRange": "Não é possível alterar parte de uma célula mesclada", + "SSE.Controllers.Main.errorMoveSlicerError": "As segmentações de dados não podem ser copiadas de um livro para outro.
    Tente de novo selecionando a tabela inteira tal como as segmentações de dados.", + "SSE.Controllers.Main.errorMultiCellFormula": "Intervalo de fórmulas multi-célula não são permitidas em tabelas.", + "SSE.Controllers.Main.errorNoDataToParse": "Nenhum dado foi selecionado para análise.", + "SSE.Controllers.Main.errorOpenWarning": "Uma das fórmulas excede o limite de 8192 caracteres.
    A fórmula foi removida.", + "SSE.Controllers.Main.errorOperandExpected": "Operando esperado", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "A palavra-passe que introduziu não está correta.
    Verifique se a tecla CAPS LOCK está desligada e não se esqueça de utilizar a capitalização correta.", + "SSE.Controllers.Main.errorPasteMaxRange": "Disparidade nas áreas copiar e colar.
    Deve selecionar áreas com o mesmo tamanho ou então clique na primeira célula de uma linha para colar as células copiadas.", + "SSE.Controllers.Main.errorPasteMultiSelect": "Esta ação não pode ser feita com uma seleção de múltiplos intervalos.
    Selecionar uma única gama e tentar novamente.", + "SSE.Controllers.Main.errorPasteSlicerError": "As segmentações de dados não podem ser copiadas de um livro para outro.", + "SSE.Controllers.Main.errorPivotGroup": "Não foi possível agrupar essa seleção.", + "SSE.Controllers.Main.errorPivotOverlap": "O relatório da tabela dinâmica não se pode sobrepor a uma tabela.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "O relatório da Tabela Pivot foi guardado sem os dados subjacentes.
    Utilize o botão 'Atualizar' para atualizar o relatório.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Infelizmente, não é possível imprimir mais do que 1500 páginas de uma vez na atual versão do programa.
    Esta restrição será removida em versões futuras.", + "SSE.Controllers.Main.errorProcessSaveResult": "Salvamento falhou", + "SSE.Controllers.Main.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", + "SSE.Controllers.Main.errorSessionAbsolute": "A sessão de edição expirou. Tente recarregar a página.", + "SSE.Controllers.Main.errorSessionIdle": "Este documento não foi editado durante muito tempo. Tente recarregar a página.", + "SSE.Controllers.Main.errorSessionToken": "A ligação ao servidor foi interrompida. Tente recarregar a página.", + "SSE.Controllers.Main.errorSetPassword": "Não foi possível definir a palavra-passe.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "A referência de localização não é válida porque as células não estão todas na mesma coluna ou linha.
    Selecione as células que estejam todas numa única coluna ou linha.", + "SSE.Controllers.Main.errorStockChart": "Ordem de linha inválida. Para criar um gráfico de cotações, coloque os dados na folha pela seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "SSE.Controllers.Main.errorToken": "O token do documento não está correctamente formado.
    Por favor contacte o seu administrador do Servidor de Documentos.", + "SSE.Controllers.Main.errorTokenExpire": "O token de segurança do documento expirou.
    Entre em contato com o administrador do Servidor de Documentos.", + "SSE.Controllers.Main.errorUnexpectedGuid": "Erro externo.
    GUID inesperado. Entre em contato com o suporte caso o erro persista.", + "SSE.Controllers.Main.errorUpdateVersion": "A versão do ficheiro foi alterada. A página será recarregada.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.
    Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", + "SSE.Controllers.Main.errorUserDrop": "De momento, não é possível aceder ao ficheiro.", + "SSE.Controllers.Main.errorUsersExceed": "Excedeu o número máximo de utilizadores permitidos pelo seu plano", + "SSE.Controllers.Main.errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas
    não o conseguirá descarregar até que a ligação seja restaurada e a página recarregada.", + "SSE.Controllers.Main.errorWrongBracketsCount": "Um erro na fórmula inserida.
    Número errado de parênteses está sendo usado.", + "SSE.Controllers.Main.errorWrongOperator": "Um erro na fórmula inserida.
    Operador errado está sendo usado.", + "SSE.Controllers.Main.errorWrongPassword": "A palavra-passe que introduziu não está correta.", + "SSE.Controllers.Main.errRemDuplicates": "Duplicar valores encontrados e apagados; {0}, valores únicos restantes: {1}.", + "SSE.Controllers.Main.leavePageText": "Este documento tem alterações não guardadas. Clique 'Ficar na página' para que o documento seja guardado automaticamente. Clique 'Sair da página' para rejeitar todas as alterações.", + "SSE.Controllers.Main.leavePageTextOnClose": "Todas as alterações não guardadas nesta folha de cálculo serão perdidas.
    Clique \"Cancelar\" e depois \"Guardar\" para as guardar. Clique \"OK\" para descartar todas as alterações não guardadas.", + "SSE.Controllers.Main.loadFontsTextText": "Carregando dados...", + "SSE.Controllers.Main.loadFontsTitleText": "Carregando dados", + "SSE.Controllers.Main.loadFontTextText": "Carregando dados...", + "SSE.Controllers.Main.loadFontTitleText": "Carregando dados", + "SSE.Controllers.Main.loadImagesTextText": "A carregar imagens...", + "SSE.Controllers.Main.loadImagesTitleText": "A carregar imagens", + "SSE.Controllers.Main.loadImageTextText": "A carregar imagem...", + "SSE.Controllers.Main.loadImageTitleText": "A carregar imagem", + "SSE.Controllers.Main.loadingDocumentTitleText": "Carregando planilha", + "SSE.Controllers.Main.notcriticalErrorTitle": "Aviso", + "SSE.Controllers.Main.openErrorText": "Ocorreu um erro ao abrir o ficheiro.", + "SSE.Controllers.Main.openTextText": "Abrindo planilha...", + "SSE.Controllers.Main.openTitleText": "Abrindo planilha", + "SSE.Controllers.Main.pastInMergeAreaError": "Não é possível alterar parte de uma célula mesclada", + "SSE.Controllers.Main.printTextText": "Imprimir planilha...", + "SSE.Controllers.Main.printTitleText": "Imprimir planilha", + "SSE.Controllers.Main.reloadButtonText": "Recarregar página", + "SSE.Controllers.Main.requestEditFailedMessageText": "Alguém está editando este documento neste momento. Tente novamente mais tarde.", + "SSE.Controllers.Main.requestEditFailedTitleText": "Acesso negado", + "SSE.Controllers.Main.saveErrorText": "Ocorreu um erro ao guardar o ficheiro.", + "SSE.Controllers.Main.saveErrorTextDesktop": "Este ficheiro não pode ser guardado ou criado.
    Os motivos podem ser:
    1. O ficheiro é apenas de leitura.
    2. O ficheiro está a ser editado por outro utilizador.
    3. O disco está cheio ou danificado.", + "SSE.Controllers.Main.saveTextText": "Salvando planilha...", + "SSE.Controllers.Main.saveTitleText": "Salvando planilha", + "SSE.Controllers.Main.scriptLoadError": "A ligação está muito lenta e alguns dos componentes não foram carregados. Tente recarregar a página.", + "SSE.Controllers.Main.textAnonymous": "Anônimo", + "SSE.Controllers.Main.textApplyAll": "Aplicar a todas as equações", + "SSE.Controllers.Main.textBuyNow": "Visitar website", + "SSE.Controllers.Main.textChangesSaved": "Todas as alterações foram salvas", + "SSE.Controllers.Main.textClose": "Fechar", + "SSE.Controllers.Main.textCloseTip": "Clique para fechar a dica", + "SSE.Controllers.Main.textConfirm": "Confirmação", + "SSE.Controllers.Main.textContactUs": "Contacte a equipa comercial", + "SSE.Controllers.Main.textConvertEquation": "Esta equação foi criada com uma versão anterior da aplicação e já não é suportada. Para a editar, tem que converter a equação para o formato Office Math ML.
    Converter agora?", + "SSE.Controllers.Main.textCustomLoader": "Tenha em conta de que, de acordo com os termos da licença, não tem permissões para alterar o carregador.
    Por favor contacte a equipa comercial.", + "SSE.Controllers.Main.textDisconnect": "A ligação está perdida", + "SSE.Controllers.Main.textFillOtherRows": "Preencher outras linhas", + "SSE.Controllers.Main.textFormulaFilledAllRows": "As linhas preenchidas pela fórmula{0} têm dados. O preenchimento das outras linhas vazias pode demorar alguns minutos.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "As primeiras {0} linhas foram preenchidas pela fórmula. O preenchimento das outras linhas vazias pode demorar alguns minutos.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Apenas as primeiras {0} linhas foram preenchidas pela fórmula por razões de poupança de memória. Existem outras {1} linhas nesta folha. Pode preenchê-las manualmente.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Apenas as primeiras {0} linhas foram preenchidas pela fórmula por razões de poupança de memória. As outras linhas nesta folha não têm dados.", + "SSE.Controllers.Main.textGuest": "Visitante", + "SSE.Controllers.Main.textHasMacros": "O ficheiro contém macros automáticas.
    Deseja executar as macros?", + "SSE.Controllers.Main.textLearnMore": "Saiba mais", + "SSE.Controllers.Main.textLoadingDocument": "Carregando planilha", + "SSE.Controllers.Main.textLongName": "Introduza um nome com menos de 128 caracteres.", + "SSE.Controllers.Main.textNeedSynchronize": "Você tem atualizações", + "SSE.Controllers.Main.textNo": "Não", + "SSE.Controllers.Main.textNoLicenseTitle": "Atingiu o limite da licença", + "SSE.Controllers.Main.textPaidFeature": "Funcionalidade paga", + "SSE.Controllers.Main.textPleaseWait": "A operação pode demorar mais tempo do que o esperado. Aguarde...", + "SSE.Controllers.Main.textReconnect": "A ligação foi reposta", + "SSE.Controllers.Main.textRemember": "Memorizar a minha escolha", + "SSE.Controllers.Main.textRenameError": "O nome de utilizador não pode estar em branco.", + "SSE.Controllers.Main.textRenameLabel": "Introduza um nome a ser usado para colaboração", + "SSE.Controllers.Main.textShape": "Forma", + "SSE.Controllers.Main.textStrict": "Modo estrito", + "SSE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer foram desativadas para se poder co-editar o documento.
    Clique no botão 'Modo estrito' para ativar este modo de edição e editar o ficheiro sem ser incomodado por outros utilizadores enviando apenas as suas alterações assim que terminar e guardar. Pode alternar entre modos de co-edição através das definições avançadas.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.", + "SSE.Controllers.Main.textYes": "Sim", + "SSE.Controllers.Main.titleLicenseExp": "Licença expirada", + "SSE.Controllers.Main.titleServerVersion": "Editor atualizado", + "SSE.Controllers.Main.txtAccent": "Destaque", + "SSE.Controllers.Main.txtAll": "(Tudo)", + "SSE.Controllers.Main.txtArt": "Your text here", + "SSE.Controllers.Main.txtBasicShapes": "Formas básicas", + "SSE.Controllers.Main.txtBlank": "(vazio)", + "SSE.Controllers.Main.txtButtons": "Botões", + "SSE.Controllers.Main.txtByField": "%1 de %2", + "SSE.Controllers.Main.txtCallouts": "Textos explicativos", + "SSE.Controllers.Main.txtCharts": "Gráficos", + "SSE.Controllers.Main.txtClearFilter": "Limpar filtro", + "SSE.Controllers.Main.txtColLbls": "Etiquetas da coluna", + "SSE.Controllers.Main.txtColumn": "Coluna", + "SSE.Controllers.Main.txtConfidential": "Confidencial", + "SSE.Controllers.Main.txtDate": "Data", + "SSE.Controllers.Main.txtDays": "Dias", + "SSE.Controllers.Main.txtDiagramTitle": "Título do diagrama", + "SSE.Controllers.Main.txtEditingMode": "Definir modo de edição...", + "SSE.Controllers.Main.txtErrorLoadHistory": "Falha ao carregar histórico", + "SSE.Controllers.Main.txtFiguredArrows": "Setas figuradas", + "SSE.Controllers.Main.txtFile": "Ficheiro", + "SSE.Controllers.Main.txtGrandTotal": "Total Geral", + "SSE.Controllers.Main.txtGroup": "Grupo", + "SSE.Controllers.Main.txtHours": "Horas", + "SSE.Controllers.Main.txtLines": "Linhas", + "SSE.Controllers.Main.txtMath": "Matemática", + "SSE.Controllers.Main.txtMinutes": "minutos", + "SSE.Controllers.Main.txtMonths": "Meses", + "SSE.Controllers.Main.txtMultiSelect": "Selecionar-Múltiplo (Alt+S)", + "SSE.Controllers.Main.txtOr": "%1 ou %2", + "SSE.Controllers.Main.txtPage": "Página", + "SSE.Controllers.Main.txtPageOf": "Página %1 de %2", + "SSE.Controllers.Main.txtPages": "Páginas", + "SSE.Controllers.Main.txtPreparedBy": "Elaborado por", + "SSE.Controllers.Main.txtPrintArea": "Área_de_Impressão", + "SSE.Controllers.Main.txtQuarter": "Quart.", + "SSE.Controllers.Main.txtQuarters": "Quartos", + "SSE.Controllers.Main.txtRectangles": "Retângulos", + "SSE.Controllers.Main.txtRow": "Linha", + "SSE.Controllers.Main.txtRowLbls": "Etiquetas das Linhas", + "SSE.Controllers.Main.txtSeconds": "Segundos", + "SSE.Controllers.Main.txtSeries": "Série", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Chamada da linha 1 (contorno e barra de destaque)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Chamada da linha 2 (contorno e barra de destaque)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Chamada da linha 3 (contorno e barra de destaque)", + "SSE.Controllers.Main.txtShape_accentCallout1": "Chamada da linha 1 (barra de destaque)", + "SSE.Controllers.Main.txtShape_accentCallout2": "Chamada da linha 2 (barra de destaque)", + "SSE.Controllers.Main.txtShape_accentCallout3": "Chamada da linha 3 (barra de destaque)", + "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Botão Recuar ou Anterior", + "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Botão de início", + "SSE.Controllers.Main.txtShape_actionButtonBlank": "Botão vazio", + "SSE.Controllers.Main.txtShape_actionButtonDocument": "Botão Documento", + "SSE.Controllers.Main.txtShape_actionButtonEnd": "Botão Final", + "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Botões Recuar e/ou Avançar", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "Botão Ajuda", + "SSE.Controllers.Main.txtShape_actionButtonHome": "Botão Base", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "Botão Informação", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "Botão Filme", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "Botão de Voltar", + "SSE.Controllers.Main.txtShape_actionButtonSound": "Botão Som", + "SSE.Controllers.Main.txtShape_arc": "Arco", + "SSE.Controllers.Main.txtShape_bentArrow": "Seta curvada", + "SSE.Controllers.Main.txtShape_bentConnector5": "Conector angular", + "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Conector de seta angular", + "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Conector de seta dupla angulada", + "SSE.Controllers.Main.txtShape_bentUpArrow": "Seta para cima dobrada", + "SSE.Controllers.Main.txtShape_bevel": "Bisel", + "SSE.Controllers.Main.txtShape_blockArc": "Arco de bloco", + "SSE.Controllers.Main.txtShape_borderCallout1": "Chamada da linha 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "Chamada da linha 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "Chamada da linha 3", + "SSE.Controllers.Main.txtShape_bracePair": "Chaveta dupla", + "SSE.Controllers.Main.txtShape_callout1": "Chamada da linha 1 (sem contorno)", + "SSE.Controllers.Main.txtShape_callout2": "Chamada da linha 2 (sem contorno)", + "SSE.Controllers.Main.txtShape_callout3": "Chamada da linha 3 (sem contorno)", + "SSE.Controllers.Main.txtShape_can": "Pode", + "SSE.Controllers.Main.txtShape_chevron": "Divisa", + "SSE.Controllers.Main.txtShape_chord": "Acorde", + "SSE.Controllers.Main.txtShape_circularArrow": "Seta circular", + "SSE.Controllers.Main.txtShape_cloud": "Nuvem", + "SSE.Controllers.Main.txtShape_cloudCallout": "Texto explicativo na nuvem", + "SSE.Controllers.Main.txtShape_corner": "Canto", + "SSE.Controllers.Main.txtShape_cube": "Cubo", + "SSE.Controllers.Main.txtShape_curvedConnector3": "Conector curvado", + "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Conector de seta curvada", + "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Conector de seta dupla curvado", + "SSE.Controllers.Main.txtShape_curvedDownArrow": "Seta curvada para baixo", + "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Seta curvada para a esquerda", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "Seta curvava para a direita", + "SSE.Controllers.Main.txtShape_curvedUpArrow": "Seta curvada para cima", + "SSE.Controllers.Main.txtShape_decagon": "Decágono", + "SSE.Controllers.Main.txtShape_diagStripe": "Faixa diagonal", + "SSE.Controllers.Main.txtShape_diamond": "Diamante", + "SSE.Controllers.Main.txtShape_dodecagon": "Dodecágono", + "SSE.Controllers.Main.txtShape_donut": "Dónute", + "SSE.Controllers.Main.txtShape_doubleWave": "Ondulado Duplo", + "SSE.Controllers.Main.txtShape_downArrow": "Seta para baixo", + "SSE.Controllers.Main.txtShape_downArrowCallout": "Chamada com seta para baixo", + "SSE.Controllers.Main.txtShape_ellipse": "Elipse", + "SSE.Controllers.Main.txtShape_ellipseRibbon": "Faixa curvada para baixo", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Faixa curvada para cima", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Fluxograma: Processo alternativo", + "SSE.Controllers.Main.txtShape_flowChartCollate": "Fluxograma: Agrupar", + "SSE.Controllers.Main.txtShape_flowChartConnector": "Fluxograma: Conector", + "SSE.Controllers.Main.txtShape_flowChartDecision": "Fluxograma: Decisão", + "SSE.Controllers.Main.txtShape_flowChartDelay": "Fluxograma: Atraso", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "Fluxograma: Exibir", + "SSE.Controllers.Main.txtShape_flowChartDocument": "Fluxograma: Documento", + "SSE.Controllers.Main.txtShape_flowChartExtract": "Fluxograma: Extrair", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Fluxograma: Dados", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Fluxograma: Armazenamento interno", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Fluxograma: Disco magnético", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Fluxograma: Armazenamento de acesso direto", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Fluxograma: Armazenamento de acesso sequencial", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "Fluxograma: Entrada manual", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Fluxograma: Operação manual", + "SSE.Controllers.Main.txtShape_flowChartMerge": "Fluxograma: Unir", + "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Fluxograma: Vários documentos", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Fluxograma: Conector fora da página", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Fluxograma: Dados armazenados", + "SSE.Controllers.Main.txtShape_flowChartOr": "Fluxograma: Ou", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Fluxograma: Processo predefinido", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "Fluxograma: Preparação", + "SSE.Controllers.Main.txtShape_flowChartProcess": "Fluxograma: Processo", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Fluxograma: Cartão", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Fluxograma: Fita perfurada", + "SSE.Controllers.Main.txtShape_flowChartSort": "Fluxograma: Ordenar", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Fluxograma: Junção de Soma", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "Fluxograma: Exterminador", + "SSE.Controllers.Main.txtShape_foldedCorner": "Canto dobrado", + "SSE.Controllers.Main.txtShape_frame": "Moldura", + "SSE.Controllers.Main.txtShape_halfFrame": "Meia moldura", + "SSE.Controllers.Main.txtShape_heart": "Coração", + "SSE.Controllers.Main.txtShape_heptagon": "Heptágono", + "SSE.Controllers.Main.txtShape_hexagon": "Hexágono", + "SSE.Controllers.Main.txtShape_homePlate": "Pentágono", + "SSE.Controllers.Main.txtShape_horizontalScroll": "Deslocação horizontal", + "SSE.Controllers.Main.txtShape_irregularSeal1": "Explosão 1", + "SSE.Controllers.Main.txtShape_irregularSeal2": "Explosão 2", + "SSE.Controllers.Main.txtShape_leftArrow": "Seta para esquerda", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "Chamada com seta para a esquerda", + "SSE.Controllers.Main.txtShape_leftBrace": "Chaveta esquerda", + "SSE.Controllers.Main.txtShape_leftBracket": "Parêntese esquerdo", + "SSE.Controllers.Main.txtShape_leftRightArrow": "Seta para a esquerda e para a direita", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Chamada com seta para a esquerda e direita", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Seta para cima, para a direita e para a esquerda", + "SSE.Controllers.Main.txtShape_leftUpArrow": "Seta para a esquerda e para cima", + "SSE.Controllers.Main.txtShape_lightningBolt": "Relâmpago", + "SSE.Controllers.Main.txtShape_line": "Linha", + "SSE.Controllers.Main.txtShape_lineWithArrow": "Seta", + "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Seta dupla", + "SSE.Controllers.Main.txtShape_mathDivide": "Divisão", + "SSE.Controllers.Main.txtShape_mathEqual": "Igual", + "SSE.Controllers.Main.txtShape_mathMinus": "Menos", + "SSE.Controllers.Main.txtShape_mathMultiply": "Multiplicar", + "SSE.Controllers.Main.txtShape_mathNotEqual": "Não é igual", + "SSE.Controllers.Main.txtShape_mathPlus": "Mais", + "SSE.Controllers.Main.txtShape_moon": "Lua", + "SSE.Controllers.Main.txtShape_noSmoking": "Símbolo \"Não\"", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "Seta entalhada para a direita", + "SSE.Controllers.Main.txtShape_octagon": "Octógono", + "SSE.Controllers.Main.txtShape_parallelogram": "Paralelograma", + "SSE.Controllers.Main.txtShape_pentagon": "Pentágono", + "SSE.Controllers.Main.txtShape_pie": "Tarte", + "SSE.Controllers.Main.txtShape_plaque": "Assinar", + "SSE.Controllers.Main.txtShape_plus": "Mais", + "SSE.Controllers.Main.txtShape_polyline1": "Rabisco", + "SSE.Controllers.Main.txtShape_polyline2": "Forma livre", + "SSE.Controllers.Main.txtShape_quadArrow": "Seta cruzada", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "Chamada com seta cruzada", + "SSE.Controllers.Main.txtShape_rect": "Retângulo", + "SSE.Controllers.Main.txtShape_ribbon": "Faixa para baixo", + "SSE.Controllers.Main.txtShape_ribbon2": "Faixa para cima", + "SSE.Controllers.Main.txtShape_rightArrow": "Seta para direita", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "Chamada com seta para a direita", + "SSE.Controllers.Main.txtShape_rightBrace": "Chaveta à Direita", + "SSE.Controllers.Main.txtShape_rightBracket": "Parêntese direito", + "SSE.Controllers.Main.txtShape_round1Rect": "Retângulo de Apenas Um Canto Redondo", + "SSE.Controllers.Main.txtShape_round2DiagRect": "Retângulo Diagonal Redondo", + "SSE.Controllers.Main.txtShape_round2SameRect": "Retângulo do Mesmo Lado Redondo", + "SSE.Controllers.Main.txtShape_roundRect": "Retângulo de Cantos Redondos", + "SSE.Controllers.Main.txtShape_rtTriangle": "Triângulo à Direita", + "SSE.Controllers.Main.txtShape_smileyFace": "Sorriso", + "SSE.Controllers.Main.txtShape_snip1Rect": "Retângulo de Canto Cortado", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "Retângulo de Cantos Diagonais Cortados", + "SSE.Controllers.Main.txtShape_snip2SameRect": "Retângulo de Cantos Cortados No Mesmo Lado", + "SSE.Controllers.Main.txtShape_snipRoundRect": "Retângulo Com Canto Arredondado e Canto Cortado", + "SSE.Controllers.Main.txtShape_spline": "Curva", + "SSE.Controllers.Main.txtShape_star10": "Estrela de 10 pontos", + "SSE.Controllers.Main.txtShape_star12": "Estrela de 12 pontos", + "SSE.Controllers.Main.txtShape_star16": "Estrela de 16 pontos", + "SSE.Controllers.Main.txtShape_star24": "Estrela de 24 pontos", + "SSE.Controllers.Main.txtShape_star32": "Estrela de 32 pontos", + "SSE.Controllers.Main.txtShape_star4": "Estrela de 4 pontos", + "SSE.Controllers.Main.txtShape_star5": "Estrela de 5 pontos", + "SSE.Controllers.Main.txtShape_star6": "Estrela de 6 pontos", + "SSE.Controllers.Main.txtShape_star7": "Estrela de 7 pontos", + "SSE.Controllers.Main.txtShape_star8": "Estrela de 8 pontos", + "SSE.Controllers.Main.txtShape_stripedRightArrow": "Seta riscada para a direita", + "SSE.Controllers.Main.txtShape_sun": "Sol", + "SSE.Controllers.Main.txtShape_teardrop": "Lágrima", + "SSE.Controllers.Main.txtShape_textRect": "Caixa de texto", + "SSE.Controllers.Main.txtShape_trapezoid": "Trapézio", + "SSE.Controllers.Main.txtShape_triangle": "Triângulo", + "SSE.Controllers.Main.txtShape_upArrow": "Seta para cima", + "SSE.Controllers.Main.txtShape_upArrowCallout": "Chamada com seta para cima", + "SSE.Controllers.Main.txtShape_upDownArrow": "Seta para cima e para baixo", + "SSE.Controllers.Main.txtShape_uturnArrow": "Seta em forma de U", + "SSE.Controllers.Main.txtShape_verticalScroll": "Deslocação vertical", + "SSE.Controllers.Main.txtShape_wave": "Onda", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Chamada oval", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Chamada retangular", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Chamada retangular arredondada", + "SSE.Controllers.Main.txtStarsRibbons": "Estrelas e arco-íris", + "SSE.Controllers.Main.txtStyle_Bad": "Mau", + "SSE.Controllers.Main.txtStyle_Calculation": "Cálculos", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Verifique a célula", + "SSE.Controllers.Main.txtStyle_Comma": "Vírgula", + "SSE.Controllers.Main.txtStyle_Currency": "Moeda", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Texto explicativo", + "SSE.Controllers.Main.txtStyle_Good": "Bom", + "SSE.Controllers.Main.txtStyle_Heading_1": "Título 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Título 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Título 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Título 4", + "SSE.Controllers.Main.txtStyle_Input": "Introdução", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Célula vinculada", + "SSE.Controllers.Main.txtStyle_Neutral": "Neutro", + "SSE.Controllers.Main.txtStyle_Normal": "Normal", + "SSE.Controllers.Main.txtStyle_Note": "Nota", + "SSE.Controllers.Main.txtStyle_Output": "Saída", + "SSE.Controllers.Main.txtStyle_Percent": "Percentagem", + "SSE.Controllers.Main.txtStyle_Title": "Título", + "SSE.Controllers.Main.txtStyle_Total": "Total", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Texto de aviso", + "SSE.Controllers.Main.txtTab": "Tab", + "SSE.Controllers.Main.txtTable": "Tabela", + "SSE.Controllers.Main.txtTime": "Hora", + "SSE.Controllers.Main.txtUnlock": "Desbloquear", + "SSE.Controllers.Main.txtUnlockRange": "Desbloquear Intervalo", + "SSE.Controllers.Main.txtUnlockRangeDescription": "Introduza a palavra-passe para alterar este intervalo:", + "SSE.Controllers.Main.txtUnlockRangeWarning": "O intervalo que está a tentar alterar está protegido por uma palavra-passe.", + "SSE.Controllers.Main.txtValues": "Valores", + "SSE.Controllers.Main.txtXAxis": "Eixo X", + "SSE.Controllers.Main.txtYAxis": "Eixo Y", + "SSE.Controllers.Main.txtYears": "Anos", + "SSE.Controllers.Main.unknownErrorText": "Erro desconhecido.", + "SSE.Controllers.Main.unsupportedBrowserErrorText": "Seu navegador não é suportado.", + "SSE.Controllers.Main.uploadDocExtMessage": "Formato de documento desconhecido.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Nenhum documento foi carregado.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Excedeu o limite de tamanho para o documento.", + "SSE.Controllers.Main.uploadImageExtMessage": "Formato desconhecido.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Nenhuma imagem carregada.", + "SSE.Controllers.Main.uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB.", + "SSE.Controllers.Main.uploadImageTextText": "A enviar imagem...", + "SSE.Controllers.Main.uploadImageTitleText": "A enviar imagem", + "SSE.Controllers.Main.waitText": "Por favor, aguarde...", + "SSE.Controllers.Main.warnBrowserIE9": "A aplicação não funciona corretamente com IE9. Deve utilizar IE10 ou superior", + "SSE.Controllers.Main.warnBrowserZoom": "A definição 'zoom' do seu navegador não é totalmente suportada. Prima Ctrl+0 para repor o valor padrão.", + "SSE.Controllers.Main.warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
    Contacte o administrador para obter mais detalhes.", + "SSE.Controllers.Main.warnLicenseExp": "A sua licença expirou.
    Deve atualizar a licença e recarregar a página.", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licença expirada.
    Não pode editar o documento.
    Por favor contacte o administrador de sistemas.", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Tem que renovar a sua licença.
    A edição de documentos está limitada.
    Contacte o administrador de sistemas para obter acesso completo.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", + "SSE.Controllers.Main.warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
    Contacte a equipa comercial %1 para saber mais sobre os termos de licenciamento.", + "SSE.Controllers.Main.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", + "SSE.Controllers.Main.warnProcessRightsChange": "Você não tem permissões para editar o ficheiro.", + "SSE.Controllers.Print.strAllSheets": "Todas as folhas", + "SSE.Controllers.Print.textFirstCol": "Primeira coluna", + "SSE.Controllers.Print.textFirstRow": "Primeira linha", + "SSE.Controllers.Print.textFrozenCols": "Colunas fixadas", + "SSE.Controllers.Print.textFrozenRows": "Linhas fixadas", + "SSE.Controllers.Print.textInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Controllers.Print.textNoRepeat": "Não repetir", + "SSE.Controllers.Print.textRepeat": "Repetir…", + "SSE.Controllers.Print.textSelectRange": "Selecionar intervalo", + "SSE.Controllers.Print.textWarning": "Aviso", + "SSE.Controllers.Print.txtCustom": "Personalizado", + "SSE.Controllers.Print.warnCheckMargings": "Margens estão incorretas", + "SSE.Controllers.Statusbar.errorLastSheet": "Pasta de trabalho deve ter no mínimo uma planilha visível.", + "SSE.Controllers.Statusbar.errorRemoveSheet": "Não é possível excluir uma planilha.", + "SSE.Controllers.Statusbar.strSheet": "Folha", + "SSE.Controllers.Statusbar.textDisconnect": "Sem Ligação
    A tentar ligar. Por favor, verifique as definições de ligação.", + "SSE.Controllers.Statusbar.textSheetViewTip": "Está em modo de Vista de Folha. Os filtros e a classificação são visíveis apenas para si e para aqueles que ainda se encontram nesta vista.", + "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Está em modo de Vista de Folha. Os filtros são visíveis apenas para si e para aqueles que ainda se encontram nesta vista.", + "SSE.Controllers.Statusbar.warnDeleteSheet": "A planilha deve conter dados. Você tem certeza de que deseja continuar?", + "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", + "SSE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
    The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
    Do you want to continue?", + "SSE.Controllers.Toolbar.errorComboSeries": "Para criar um gráfico de combinação, selecione pelo menos duas séries de dados.", + "SSE.Controllers.Toolbar.errorMaxRows": "ERRO! O número máximo de séries de dados, por gráfico, é 255.", + "SSE.Controllers.Toolbar.errorStockChart": "Ordem de linha inválida. Para criar um gráfico de cotações, coloque os dados na folha pela seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "SSE.Controllers.Toolbar.textAccent": "Destaques", + "SSE.Controllers.Toolbar.textBracket": "Parênteses", + "SSE.Controllers.Toolbar.textDirectional": "Direcional", + "SSE.Controllers.Toolbar.textFontSizeErr": "O valor inserido não está correto.
    Introduza um valor numérico entre 1 e 409.", + "SSE.Controllers.Toolbar.textFraction": "Frações", + "SSE.Controllers.Toolbar.textFunction": "Funções", + "SSE.Controllers.Toolbar.textIndicator": "Indicadores", + "SSE.Controllers.Toolbar.textInsert": "Inserir", + "SSE.Controllers.Toolbar.textIntegral": "Inteiros", + "SSE.Controllers.Toolbar.textLargeOperator": "Grandes operadores", + "SSE.Controllers.Toolbar.textLimitAndLog": "Limites e logaritmos", + "SSE.Controllers.Toolbar.textLongOperation": "Operação longa", + "SSE.Controllers.Toolbar.textMatrix": "Matrizes", + "SSE.Controllers.Toolbar.textOperator": "Operadores", + "SSE.Controllers.Toolbar.textPivot": "Tabela dinâmica", + "SSE.Controllers.Toolbar.textRadical": "Radicais", + "SSE.Controllers.Toolbar.textRating": "Classificações", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Utilizado recentemente", + "SSE.Controllers.Toolbar.textScript": "Scripts", + "SSE.Controllers.Toolbar.textShapes": "Formas", + "SSE.Controllers.Toolbar.textSymbols": "Símbolos", + "SSE.Controllers.Toolbar.textWarning": "Aviso", + "SSE.Controllers.Toolbar.txtAccent_Accent": "Agudo", + "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Seta para direita-esquerda acima", + "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Seta adiante para cima", + "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Seta para direita acima", + "SSE.Controllers.Toolbar.txtAccent_Bar": "Barra", + "SSE.Controllers.Toolbar.txtAccent_BarBot": "Barra inferior", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "Barra superior", + "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula embalada (com Placeholder)", + "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula embalada (Exemplo)", + "SSE.Controllers.Toolbar.txtAccent_Check": "Verificar", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Chave Inferior", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Chave Superior", + "SSE.Controllers.Toolbar.txtAccent_Custom_1": "Vetor A", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC com barra superior ", + "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y com barra superior", + "SSE.Controllers.Toolbar.txtAccent_DDDot": "Ponto triplo", + "SSE.Controllers.Toolbar.txtAccent_DDot": "Ponto duplo", + "SSE.Controllers.Toolbar.txtAccent_Dot": "Ponto", + "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Barra superior dupla", + "SSE.Controllers.Toolbar.txtAccent_Grave": "Grave", + "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Agrupamento de caracteres abaixo", + "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Agrupamento de caracteres acima", + "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Arpão adiante para cima", + "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Arpão para direita acima", + "SSE.Controllers.Toolbar.txtAccent_Hat": "Acento circunflexo", + "SSE.Controllers.Toolbar.txtAccent_Smile": "Breve", + "SSE.Controllers.Toolbar.txtAccent_Tilde": "Til", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Parênteses com separadores", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Parênteses com separadores", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Parênteses com separadores", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (Duas Condições)", + "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Casos (Três Condições)", + "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Objeto Empilhado", + "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Objeto Empilhado", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Exemplo de casos", + "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficiente binominal", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficiente binominal", + "SSE.Controllers.Toolbar.txtBracket_Line": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_Round": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parênteses com separadores", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_Square": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Parênteses", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Colchete Simples", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Colchete Simples", + "SSE.Controllers.Toolbar.txtDeleteCells": "Eliminar células", + "SSE.Controllers.Toolbar.txtExpand": "Expandir e Ordenar", + "SSE.Controllers.Toolbar.txtExpandSort": "Os dados adjacentes à seleção não serão classificados. Deseja expandir a seleção para incluir os dados adjacentes ou continuar com a ordenação apenas das células atualmente selecionadas?", + "SSE.Controllers.Toolbar.txtFractionDiagonal": "Fração inclinada", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Diferencial", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Diferencial", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Diferencial", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Diferencial", + "SSE.Controllers.Toolbar.txtFractionHorizontal": "Fração linear", + "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi sobre 2", + "SSE.Controllers.Toolbar.txtFractionSmall": "Fração pequena", + "SSE.Controllers.Toolbar.txtFractionVertical": "Fração Empilhada", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Função cosseno inverso", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Função cosseno inverso hiperbólico", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Função cotangente inversa", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Função cotangente inversa hiperbólica", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Função cossecante inversa", + "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Função cossecante inversa hiperbólica", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Função secante inversa", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Função secante inversa hiperbólica", + "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Função seno inverso", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Função seno inverso hiperbólico", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Função tangente inversa", + "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Função tangente inversa hiperbólica", + "SSE.Controllers.Toolbar.txtFunction_Cos": "Função cosseno", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "Função cosseno hiperbólico", + "SSE.Controllers.Toolbar.txtFunction_Cot": "Função cotangente", + "SSE.Controllers.Toolbar.txtFunction_Coth": "Função cotangente hiperbólica", + "SSE.Controllers.Toolbar.txtFunction_Csc": "Função cossecante", + "SSE.Controllers.Toolbar.txtFunction_Csch": "Função co-secante hiperbólica", + "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Teta seno", + "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Fórmula da tangente", + "SSE.Controllers.Toolbar.txtFunction_Sec": "Função secante", + "SSE.Controllers.Toolbar.txtFunction_Sech": "Função secante hiperbólica", + "SSE.Controllers.Toolbar.txtFunction_Sin": "Função de seno", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "Função seno hiperbólico", + "SSE.Controllers.Toolbar.txtFunction_Tan": "Função da tangente", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "Função tangente hiperbólica", + "SSE.Controllers.Toolbar.txtInsertCells": "Inserir células", + "SSE.Controllers.Toolbar.txtIntegral": "Inteiro", + "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Teta diferencial", + "SSE.Controllers.Toolbar.txtIntegral_dx": "Diferencial x", + "SSE.Controllers.Toolbar.txtIntegral_dy": "Diferencial y", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Inteiro", + "SSE.Controllers.Toolbar.txtIntegralDouble": "Inteiro duplo", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Inteiro duplo", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Inteiro duplo", + "SSE.Controllers.Toolbar.txtIntegralOriented": "Contorno integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contorno integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integral de Superfície", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integral de Superfície", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integral de Superfície", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contorno integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integral de Volume", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integral de Volume", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integral de Volume", + "SSE.Controllers.Toolbar.txtIntegralSubSup": "Inteiro", + "SSE.Controllers.Toolbar.txtIntegralTriple": "Inteiro triplo", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Inteiro triplo", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Inteiro triplo", + "SSE.Controllers.Toolbar.txtInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Triangular", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Triangular", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Triangular", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Triangular", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Triangular", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coproduto", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coproduto", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coproduto", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coproduto", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coproduto", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Somatório", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Somatório", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Somatório", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produto", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "União", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Interseção", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Interseção", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Interseção", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Interseção", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Interseção", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Produto", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produto", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produto", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produto", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produto", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Somatório", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Somatório", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Somatório", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Somatório", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Somatório", + "SSE.Controllers.Toolbar.txtLargeOperator_Union": "União", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "União", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "União", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "União", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "União", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemplo limite", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemplo máximo", + "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limite", + "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Logaritmo natural", + "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logaritmo", + "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmo", + "SSE.Controllers.Toolbar.txtLimitLog_Max": "Máximo", + "SSE.Controllers.Toolbar.txtLimitLog_Min": "Mínimo", + "SSE.Controllers.Toolbar.txtLockSort": "Os dados foram encontrados ao lado da sua seleção, mas não tem permissões suficientes para alterar essas células.
    Deseja continuar com a seleção atual?", + "SSE.Controllers.Toolbar.txtMatrix_1_2": "Matriz vazia 1x2", + "SSE.Controllers.Toolbar.txtMatrix_1_3": "Matriz vazia 1x3", + "SSE.Controllers.Toolbar.txtMatrix_2_1": "Matriz vazia 2x1", + "SSE.Controllers.Toolbar.txtMatrix_2_2": "Matriz vazia 2x2", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matriz vazia com parênteses", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matriz vazia com parênteses", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matriz vazia com parênteses", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matriz vazia com parênteses", + "SSE.Controllers.Toolbar.txtMatrix_2_3": "Matriz vazia 2x3", + "SSE.Controllers.Toolbar.txtMatrix_3_1": "Matriz vazia 3x1", + "SSE.Controllers.Toolbar.txtMatrix_3_2": "Matriz vazia 3x2", + "SSE.Controllers.Toolbar.txtMatrix_3_3": "Matriz vazia 3x3", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Pontos da linha base", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Pontos de linha média", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Pontos diagonais", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Pontos verticais", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matriz dispersa", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matriz dispersa", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "Matriz de identidade 2x2", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matriz de identidade 3x3", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "Matriz de identidade 3x3", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matriz de identidade 3x3", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Seta para direita esquerda abaixo", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Seta para direita-esquerda acima", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Seta adiante para baixo", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Seta adiante para cima", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Seta para direita abaixo", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Seta para direita acima", + "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Dois-pontos-Sinal de Igual", + "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Resultados", + "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Resultados de Delta", + "SSE.Controllers.Toolbar.txtOperator_Definition": "Igual a por definição", + "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta igual a", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Seta para direita esquerda abaixo", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Seta para direita-esquerda acima", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Seta adiante para baixo", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Seta adiante para cima", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Seta para direita abaixo", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Seta para direita acima", + "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Sinal de Igual-Sinal de Igual", + "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Sinal de Menos-Sinal de Igual", + "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Sinal de Mais-Sinal de Igual", + "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Medido por", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Raiz quadrada com grau", + "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Raiz cúbica", + "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Radical com grau", + "SSE.Controllers.Toolbar.txtRadicalSqrt": "Raiz quadrada", + "SSE.Controllers.Toolbar.txtScriptCustom_1": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_3": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "SSE.Controllers.Toolbar.txtScriptSub": "Subscrito", + "SSE.Controllers.Toolbar.txtScriptSubSup": "Subscrito-Sobrescrito", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Subscrito-Sobrescrito Esquerdo", + "SSE.Controllers.Toolbar.txtScriptSup": "Sobrescrito", + "SSE.Controllers.Toolbar.txtSorting": "A Ordenar", + "SSE.Controllers.Toolbar.txtSortSelected": "Ordenar o que está selecionado", + "SSE.Controllers.Toolbar.txtSymbol_about": "Aproximadamente", + "SSE.Controllers.Toolbar.txtSymbol_additional": "Complemento", + "SSE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "SSE.Controllers.Toolbar.txtSymbol_approx": "Quase igual a", + "SSE.Controllers.Toolbar.txtSymbol_ast": "Operador de asterisco", + "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "SSE.Controllers.Toolbar.txtSymbol_beth": "Aposta", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "Operador de marcador", + "SSE.Controllers.Toolbar.txtSymbol_cap": "Interseção", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Raiz cúbica", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "Reticências horizontais de linha média", + "SSE.Controllers.Toolbar.txtSymbol_celsius": "Graus Celsius", + "SSE.Controllers.Toolbar.txtSymbol_chi": "Ki", + "SSE.Controllers.Toolbar.txtSymbol_cong": "Aproximadamente igual a", + "SSE.Controllers.Toolbar.txtSymbol_cup": "União", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "Reticências diagonal para baixo à direita", + "SSE.Controllers.Toolbar.txtSymbol_degree": "Graus", + "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "SSE.Controllers.Toolbar.txtSymbol_div": "Sinal de divisão", + "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Seta para baixo", + "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Conjunto vazio", + "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsílon", + "SSE.Controllers.Toolbar.txtSymbol_equals": "Igual", + "SSE.Controllers.Toolbar.txtSymbol_equiv": "Idêntico a", + "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "SSE.Controllers.Toolbar.txtSymbol_exists": "Existe", + "SSE.Controllers.Toolbar.txtSymbol_factorial": "Fatorial", + "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus Fahrenheit", + "SSE.Controllers.Toolbar.txtSymbol_forall": "Para todos", + "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gama", + "SSE.Controllers.Toolbar.txtSymbol_geq": "Superior a ou igual a", + "SSE.Controllers.Toolbar.txtSymbol_gg": "Muito superior a", + "SSE.Controllers.Toolbar.txtSymbol_greater": "Superior a", + "SSE.Controllers.Toolbar.txtSymbol_in": "Elemento de", + "SSE.Controllers.Toolbar.txtSymbol_inc": "Incremento", + "SSE.Controllers.Toolbar.txtSymbol_infinity": "Infinidade", + "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "SSE.Controllers.Toolbar.txtSymbol_kappa": "Capa", + "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Seta para esquerda", + "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Seta esquerda-direita", + "SSE.Controllers.Toolbar.txtSymbol_leq": "Inferior a ou igual a", + "SSE.Controllers.Toolbar.txtSymbol_less": "Inferior a", + "SSE.Controllers.Toolbar.txtSymbol_ll": "Muito inferior a", + "SSE.Controllers.Toolbar.txtSymbol_minus": "Menos", + "SSE.Controllers.Toolbar.txtSymbol_mp": "Sinal de Menos-Sinal de Mais", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "SSE.Controllers.Toolbar.txtSymbol_neq": "Não igual a", + "SSE.Controllers.Toolbar.txtSymbol_ni": "Contém como membro", + "SSE.Controllers.Toolbar.txtSymbol_not": "Não entrar", + "SSE.Controllers.Toolbar.txtSymbol_notexists": "Não existe", + "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "SSE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "SSE.Controllers.Toolbar.txtSymbol_omega": "Ômega", + "SSE.Controllers.Toolbar.txtSymbol_partial": "Diferencial parcial", + "SSE.Controllers.Toolbar.txtSymbol_percent": "Percentagem", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Fi", + "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "SSE.Controllers.Toolbar.txtSymbol_plus": "Mais", + "SSE.Controllers.Toolbar.txtSymbol_pm": "Sinal de Menos-Sinal de Igual", + "SSE.Controllers.Toolbar.txtSymbol_propto": "Proporcional a", + "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Quarta raiz", + "SSE.Controllers.Toolbar.txtSymbol_qed": "Fim da prova", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Reticências diagonal direitas para cima", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Rô", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Seta para direita", + "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Sinal de Radical", + "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "SSE.Controllers.Toolbar.txtSymbol_therefore": "Portanto", + "SSE.Controllers.Toolbar.txtSymbol_theta": "Teta", + "SSE.Controllers.Toolbar.txtSymbol_times": "Sinal de multiplicação", + "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Seta para cima", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Ípsilon", + "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Variante de Epsílon", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Variante de fi", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Variante de Pi", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Variante de Rô", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Variante de Sigma", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Variante de Teta", + "SSE.Controllers.Toolbar.txtSymbol_vdots": "Reticências verticais", + "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Estilo de Tabela Escuro", + "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Estilo de Tabela Claro", + "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Estilo de Tabela Médio", + "SSE.Controllers.Toolbar.warnLongOperation": "A operação que está prestes a realizar pode levar muito tempo a concluir.
    Tem a certeza de que quer continuar?", + "SSE.Controllers.Toolbar.warnMergeLostData": "Apenas os dados da célula superior esquerda permanecerão na célula unida.
    Tem a certeza de que deseja continuar? ", + "SSE.Controllers.Viewport.textFreezePanes": "Fixar painéis", + "SSE.Controllers.Viewport.textFreezePanesShadow": "Mostrar sombra dos painéis fixados", + "SSE.Controllers.Viewport.textHideFBar": "Ocultar barra de fórmulas", + "SSE.Controllers.Viewport.textHideGridlines": "Ocultar linhas da grelha", + "SSE.Controllers.Viewport.textHideHeadings": "Ocultar títulos", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separador decimal", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separador de milhares", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "Definições utilizadas para reconhecimento numérico", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Qualificador de texto", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Definições avançadas", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(nenhum)", + "SSE.Views.AutoFilterDialog.btnCustomFilter": "Personalizar filtro", + "SSE.Views.AutoFilterDialog.textAddSelection": "Adicionar seleção atual ao filtro", + "SSE.Views.AutoFilterDialog.textEmptyItem": "{Brancos}", + "SSE.Views.AutoFilterDialog.textSelectAll": "Selecionar todos", + "SSE.Views.AutoFilterDialog.textSelectAllResults": "Selecionar todos os resultados", + "SSE.Views.AutoFilterDialog.textWarning": "Aviso", + "SSE.Views.AutoFilterDialog.txtAboveAve": "Acima da média", + "SSE.Views.AutoFilterDialog.txtBegins": "Começa com...", + "SSE.Views.AutoFilterDialog.txtBelowAve": "Abaixo da média", + "SSE.Views.AutoFilterDialog.txtBetween": "Entre...", + "SSE.Views.AutoFilterDialog.txtClear": "Limpar", + "SSE.Views.AutoFilterDialog.txtContains": "Contém...", + "SSE.Views.AutoFilterDialog.txtEmpty": "Inserir filtro de célula", + "SSE.Views.AutoFilterDialog.txtEnds": "Termina em…", + "SSE.Views.AutoFilterDialog.txtEquals": "É Igual…", + "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Filtrar pela cor da célula", + "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filtrar pela cor do tipo de letra", + "SSE.Views.AutoFilterDialog.txtGreater": "Maior do que…", + "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Maior ou igual a…", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Filtro de Etiqueta", + "SSE.Views.AutoFilterDialog.txtLess": "Menor que…", + "SSE.Views.AutoFilterDialog.txtLessEquals": "Menor que ou igual a…", + "SSE.Views.AutoFilterDialog.txtNotBegins": "Não começa com…", + "SSE.Views.AutoFilterDialog.txtNotBetween": "Não está entre...", + "SSE.Views.AutoFilterDialog.txtNotContains": "Não contem…", + "SSE.Views.AutoFilterDialog.txtNotEnds": "Não acaba com…", + "SSE.Views.AutoFilterDialog.txtNotEquals": "Não é igual a…", + "SSE.Views.AutoFilterDialog.txtNumFilter": "Numerar filtro", + "SSE.Views.AutoFilterDialog.txtReapply": "Aplicar", + "SSE.Views.AutoFilterDialog.txtSortCellColor": "Ordenar pela cor da célula", + "SSE.Views.AutoFilterDialog.txtSortFontColor": "Ordenar pela cor do tipo de letra", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Ordenar do Maior para o Menor", + "SSE.Views.AutoFilterDialog.txtSortLow2High": "Ordenar do Menor para o Maior", + "SSE.Views.AutoFilterDialog.txtSortOption": "Mais opções de ordenação…", + "SSE.Views.AutoFilterDialog.txtTextFilter": "Filtro de texto", + "SSE.Views.AutoFilterDialog.txtTitle": "Filtro", + "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Filtro de Valor", + "SSE.Views.AutoFilterDialog.warnFilterError": "É necessário pelo menos um campo na área de Valores para aplicar um filtro de valores.", + "SSE.Views.AutoFilterDialog.warnNoSelected": "Você deve escolher no mínimo um valor", + "SSE.Views.CellEditor.textManager": "Manager", + "SSE.Views.CellEditor.tipFormula": "Inserir função", + "SSE.Views.CellRangeDialog.errorMaxRows": "ERRO! O número máximo de séries de dados, por gráfico, é 255.", + "SSE.Views.CellRangeDialog.errorStockChart": "Ordem de linha inválida. Para criar um gráfico de cotações, coloque os dados na folha pela seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "SSE.Views.CellRangeDialog.txtEmpty": "Este campo é obrigatório", + "SSE.Views.CellRangeDialog.txtInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Views.CellRangeDialog.txtTitle": "Selecionar intervalo de dados", + "SSE.Views.CellSettings.strShrink": "Diminuir para ajustar", + "SSE.Views.CellSettings.strWrap": "Moldar texto", + "SSE.Views.CellSettings.textAngle": "Ângulo", + "SSE.Views.CellSettings.textBackColor": "Cor de fundo", + "SSE.Views.CellSettings.textBackground": "Cor do plano de fundo", + "SSE.Views.CellSettings.textBorderColor": "Cor", + "SSE.Views.CellSettings.textBorders": "Estilo do contorno", + "SSE.Views.CellSettings.textClearRule": "Limpar regras", + "SSE.Views.CellSettings.textColor": "Cor de preenchimento", + "SSE.Views.CellSettings.textColorScales": "Escalas de cores", + "SSE.Views.CellSettings.textCondFormat": "Formatação condicional", + "SSE.Views.CellSettings.textControl": "Controlo de Texto", + "SSE.Views.CellSettings.textDataBars": "Barras de dados", + "SSE.Views.CellSettings.textDirection": "Direção", + "SSE.Views.CellSettings.textFill": "Preencher", + "SSE.Views.CellSettings.textForeground": "Cor principal", + "SSE.Views.CellSettings.textGradient": "Gradiente", + "SSE.Views.CellSettings.textGradientColor": "Cor", + "SSE.Views.CellSettings.textGradientFill": "Preenchimento gradiente", + "SSE.Views.CellSettings.textIndent": "Indentar", + "SSE.Views.CellSettings.textItems": "Itens", + "SSE.Views.CellSettings.textLinear": "Linear", + "SSE.Views.CellSettings.textManageRule": "Gerir Regras", + "SSE.Views.CellSettings.textNewRule": "Nova Regra", + "SSE.Views.CellSettings.textNoFill": "Sem preenchimento", + "SSE.Views.CellSettings.textOrientation": "Orientação do texto", + "SSE.Views.CellSettings.textPattern": "Padrão", + "SSE.Views.CellSettings.textPatternFill": "Padrão", + "SSE.Views.CellSettings.textPosition": "Posição", + "SSE.Views.CellSettings.textRadial": "Radial", + "SSE.Views.CellSettings.textSelectBorders": "Selecione os contornos aos quais pretende aplicar o estilo escolhido", + "SSE.Views.CellSettings.textSelection": "Da seleção atual", + "SSE.Views.CellSettings.textThisPivot": "A partir deste pivot", + "SSE.Views.CellSettings.textThisSheet": "A partir desta folha de cálculo", + "SSE.Views.CellSettings.textThisTable": "A partir deste pivot", + "SSE.Views.CellSettings.tipAddGradientPoint": "Adicionar ponto de gradiente", + "SSE.Views.CellSettings.tipAll": "Definir borda externa e todas as linhas internas", + "SSE.Views.CellSettings.tipBottom": "Definir apenas borda inferior externa", + "SSE.Views.CellSettings.tipDiagD": "Definir Limite Diagonal Inferior", + "SSE.Views.CellSettings.tipDiagU": "Definir Limite Diagonal Superior", + "SSE.Views.CellSettings.tipInner": "Definir apenas linhas internas", + "SSE.Views.CellSettings.tipInnerHor": "Definir apenas linhas internas horizontais", + "SSE.Views.CellSettings.tipInnerVert": "Definir apenas linhas internas verticais", + "SSE.Views.CellSettings.tipLeft": "Definir apenas borda esquerda externa", + "SSE.Views.CellSettings.tipNone": "Definir sem bordas", + "SSE.Views.CellSettings.tipOuter": "Definir apenas borda externa", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "Remover Ponto de Gradiente", + "SSE.Views.CellSettings.tipRight": "Definir apenas borda direita externa", + "SSE.Views.CellSettings.tipTop": "Definir apenas borda superior externa", + "SSE.Views.ChartDataDialog.errorInFormula": "Há um erro na fórmula que introduziu.", + "SSE.Views.ChartDataDialog.errorInvalidReference": "A referência não é válida. A referência tem de ser uma folha de cálculo aberta.", + "SSE.Views.ChartDataDialog.errorMaxPoints": "O número máximo de pontos em série, por gráfico, é 4096.", + "SSE.Views.ChartDataDialog.errorMaxRows": "O número máximo de séries de dados, por gráfico, é 255.", + "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "Referência inválida. As referências para títulos, valores, tamanhos e etiquetas de dados tem que ser apenas uma célula, linha ou coluna.", + "SSE.Views.ChartDataDialog.errorNoValues": "Para criar um gráfico, a série utilizada tem que ter, pelo menos, um valor.", + "SSE.Views.ChartDataDialog.errorStockChart": "Ordem de linha inválida. Para criar um gráfico de cotações, coloque os dados na folha pela seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "SSE.Views.ChartDataDialog.textAdd": "Adicionar", + "SSE.Views.ChartDataDialog.textCategory": "Rótulos de Eixo (Categoria) Horizontais", + "SSE.Views.ChartDataDialog.textData": "Intervalo da tabela de dados", + "SSE.Views.ChartDataDialog.textDelete": "Remover", + "SSE.Views.ChartDataDialog.textDown": "Para baixo", + "SSE.Views.ChartDataDialog.textEdit": "Editar", + "SSE.Views.ChartDataDialog.textInvalidRange": "Intervalo de células inválido", + "SSE.Views.ChartDataDialog.textSelectData": "Selecionar dados", + "SSE.Views.ChartDataDialog.textSeries": "Entradas da legenda (Série)", + "SSE.Views.ChartDataDialog.textSwitch": "Trocar Linha/Coluna", + "SSE.Views.ChartDataDialog.textTitle": "Tabela de dados", + "SSE.Views.ChartDataDialog.textUp": "Para cima", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "Há um erro na fórmula que introduziu.", + "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "A referência não é válida. A referência tem de ser uma folha de cálculo aberta.", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "O número máximo de pontos em série, por gráfico, é 4096.", + "SSE.Views.ChartDataRangeDialog.errorMaxRows": "O número máximo de séries de dados, por gráfico, é 255.", + "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "Referência inválida. As referências para títulos, valores, tamanhos e etiquetas de dados tem que ser apenas uma célula, linha ou coluna.", + "SSE.Views.ChartDataRangeDialog.errorNoValues": "Para criar uma tabela dinâmica, a série utilizada tem que ter, pelo menos, um valor.", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "Ordem de linha inválida. Para criar um gráfico de cotações, coloque os dados na folha pela seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "SSE.Views.ChartDataRangeDialog.textInvalidRange": "Intervalo de células inválido", + "SSE.Views.ChartDataRangeDialog.textSelectData": "Selecionar dados", + "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Intervalo do rótulo do eixo", + "SSE.Views.ChartDataRangeDialog.txtChoose": "Escolher intervalo", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Nome da série", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Etiqueta dos eixos", + "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Editar série", + "SSE.Views.ChartDataRangeDialog.txtValues": "Valores", + "SSE.Views.ChartDataRangeDialog.txtXValues": "Valores do X", + "SSE.Views.ChartDataRangeDialog.txtYValues": "Valores do Y", + "SSE.Views.ChartSettings.strLineWeight": "Espessura da linha", + "SSE.Views.ChartSettings.strSparkColor": "Cor", + "SSE.Views.ChartSettings.strTemplate": "Modelo", + "SSE.Views.ChartSettings.textAdvanced": "Mostrar definições avançadas", + "SSE.Views.ChartSettings.textBorderSizeErr": "O valor inserido não está correto.
    Introduza um valor entre 0 pt e 1584 pt.", + "SSE.Views.ChartSettings.textChangeType": "Alterar tipo", + "SSE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico", + "SSE.Views.ChartSettings.textEditData": "Editar dados", + "SSE.Views.ChartSettings.textFirstPoint": "Primeiro Ponto", + "SSE.Views.ChartSettings.textHeight": "Altura", + "SSE.Views.ChartSettings.textHighPoint": "Ponto Alto", + "SSE.Views.ChartSettings.textKeepRatio": "Proporções constantes", + "SSE.Views.ChartSettings.textLastPoint": "Último ponto", + "SSE.Views.ChartSettings.textLowPoint": "Ponto Baixo", + "SSE.Views.ChartSettings.textMarkers": "Marcadores", + "SSE.Views.ChartSettings.textNegativePoint": "Ponto Negativo", + "SSE.Views.ChartSettings.textRanges": "Intervalo de dados", + "SSE.Views.ChartSettings.textSelectData": "Selecionar dados", + "SSE.Views.ChartSettings.textShow": "Mostrar", + "SSE.Views.ChartSettings.textSize": "Tamanho", + "SSE.Views.ChartSettings.textStyle": "Estilo", + "SSE.Views.ChartSettings.textType": "Tipo", + "SSE.Views.ChartSettings.textWidth": "Largura", + "SSE.Views.ChartSettingsDlg.errorMaxPoints": "O número máximo de pontos em série, por gráfico, é 4096.", + "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERRO! O número máximo de séries de dados, por gráfico, é 255.", + "SSE.Views.ChartSettingsDlg.errorStockChart": "Ordem de linha inválida. Para criar um gráfico de cotações, coloque os dados na folha pela seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "SSE.Views.ChartSettingsDlg.textAbsolute": "Não mover ou redimensionar com células", + "SSE.Views.ChartSettingsDlg.textAlt": "Texto alternativo", + "SSE.Views.ChartSettingsDlg.textAltDescription": "Descrição", + "SSE.Views.ChartSettingsDlg.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", + "SSE.Views.ChartSettingsDlg.textAltTitle": "Título", + "SSE.Views.ChartSettingsDlg.textAuto": "Automático", + "SSE.Views.ChartSettingsDlg.textAutoEach": "Automático para cada", + "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Eixos cruzam", + "SSE.Views.ChartSettingsDlg.textAxisOptions": "Opções de eixo", + "SSE.Views.ChartSettingsDlg.textAxisPos": "Posição de eixos", + "SSE.Views.ChartSettingsDlg.textAxisSettings": "Definições de eixo", + "SSE.Views.ChartSettingsDlg.textAxisTitle": "Título", + "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre marcas de escala", + "SSE.Views.ChartSettingsDlg.textBillions": "Bilhões", + "SSE.Views.ChartSettingsDlg.textBottom": "Baixo", + "SSE.Views.ChartSettingsDlg.textCategoryName": "Nome da categoria", + "SSE.Views.ChartSettingsDlg.textCenter": "Centro", + "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementos do gráfico e
    Legenda do gráfico", + "SSE.Views.ChartSettingsDlg.textChartTitle": "Título do gráfico", + "SSE.Views.ChartSettingsDlg.textCross": "Cruz", + "SSE.Views.ChartSettingsDlg.textCustom": "Personalizar", + "SSE.Views.ChartSettingsDlg.textDataColumns": "em colunas", + "SSE.Views.ChartSettingsDlg.textDataLabels": "Rótulos de dados", + "SSE.Views.ChartSettingsDlg.textDataRange": "Intervalo de dados", + "SSE.Views.ChartSettingsDlg.textDataRows": "em linhas", + "SSE.Views.ChartSettingsDlg.textDataSeries": "Série de dados", + "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Exibir legenda", + "SSE.Views.ChartSettingsDlg.textEmptyCells": "Células vazias e ocultas", + "SSE.Views.ChartSettingsDlg.textEmptyLine": "Ligar pontos de dados com linha", + "SSE.Views.ChartSettingsDlg.textFit": "Ajustar à largura", + "SSE.Views.ChartSettingsDlg.textFixed": "Corrigido", + "SSE.Views.ChartSettingsDlg.textFormat": "Formato da Etiqueta", + "SSE.Views.ChartSettingsDlg.textGaps": "Espaços", + "SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines", + "SSE.Views.ChartSettingsDlg.textGroup": "Agrupar Sparkline", + "SSE.Views.ChartSettingsDlg.textHide": "Ocultar", + "SSE.Views.ChartSettingsDlg.textHideAxis": "Ocultar eixo", + "SSE.Views.ChartSettingsDlg.textHigh": "Alto", + "SSE.Views.ChartSettingsDlg.textHorAxis": "Eixo horizontal", + "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Eixo Secundário Horizontal", + "SSE.Views.ChartSettingsDlg.textHorGrid": "Grades de linha horizontais", + "SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal", + "SSE.Views.ChartSettingsDlg.textHorTitle": "Título do eixo horizontal", + "SSE.Views.ChartSettingsDlg.textHundredMil": "100.000.000 ", + "SSE.Views.ChartSettingsDlg.textHundreds": "Centenas", + "SSE.Views.ChartSettingsDlg.textHundredThousands": "100.000 ", + "SSE.Views.ChartSettingsDlg.textIn": "Em", + "SSE.Views.ChartSettingsDlg.textInnerBottom": "Parte inferior interna", + "SSE.Views.ChartSettingsDlg.textInnerTop": "Parte superior interna", + "SSE.Views.ChartSettingsDlg.textInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Views.ChartSettingsDlg.textLabelDist": "Distância da etiqueta de eixos", + "SSE.Views.ChartSettingsDlg.textLabelInterval": "Intervalo entre Etiquetas", + "SSE.Views.ChartSettingsDlg.textLabelOptions": "Opções de etiqueta", + "SSE.Views.ChartSettingsDlg.textLabelPos": "Posição da etiqueta", + "SSE.Views.ChartSettingsDlg.textLayout": "Disposição", + "SSE.Views.ChartSettingsDlg.textLeft": "Esquerda", + "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Sobreposição esquerda", + "SSE.Views.ChartSettingsDlg.textLegendBottom": "Inferior", + "SSE.Views.ChartSettingsDlg.textLegendLeft": "Esquerda", + "SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda", + "SSE.Views.ChartSettingsDlg.textLegendRight": "Direita", + "SSE.Views.ChartSettingsDlg.textLegendTop": "Parte superior", + "SSE.Views.ChartSettingsDlg.textLines": "Linhas", + "SSE.Views.ChartSettingsDlg.textLocationRange": "Intervalo de localização", + "SSE.Views.ChartSettingsDlg.textLow": "Baixo", + "SSE.Views.ChartSettingsDlg.textMajor": "Maior", + "SSE.Views.ChartSettingsDlg.textMajorMinor": "Maior e Menor", + "SSE.Views.ChartSettingsDlg.textMajorType": "Tipo principal", + "SSE.Views.ChartSettingsDlg.textManual": "Manual", + "SSE.Views.ChartSettingsDlg.textMarkers": "Marcadores", + "SSE.Views.ChartSettingsDlg.textMarksInterval": "Intervalo entre Marcas", + "SSE.Views.ChartSettingsDlg.textMaxValue": "Valor máximo", + "SSE.Views.ChartSettingsDlg.textMillions": "Milhões", + "SSE.Views.ChartSettingsDlg.textMinor": "Menor", + "SSE.Views.ChartSettingsDlg.textMinorType": "Tipo menor", + "SSE.Views.ChartSettingsDlg.textMinValue": "Valor mínimo", + "SSE.Views.ChartSettingsDlg.textNextToAxis": "Próximo ao eixo", + "SSE.Views.ChartSettingsDlg.textNone": "Nenhum", + "SSE.Views.ChartSettingsDlg.textNoOverlay": "Sem sobreposição", + "SSE.Views.ChartSettingsDlg.textOneCell": "Mover mas não redimensionar células", + "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Nas marcas de escala", + "SSE.Views.ChartSettingsDlg.textOut": "Fora", + "SSE.Views.ChartSettingsDlg.textOuterTop": "Fora do topo", + "SSE.Views.ChartSettingsDlg.textOverlay": "Sobreposição", + "SSE.Views.ChartSettingsDlg.textReverse": "Valores na ordem reversa", + "SSE.Views.ChartSettingsDlg.textReverseOrder": "Ordem Inversa", + "SSE.Views.ChartSettingsDlg.textRight": "Direita", + "SSE.Views.ChartSettingsDlg.textRightOverlay": "Sobreposição direita", + "SSE.Views.ChartSettingsDlg.textRotated": "Girado", + "SSE.Views.ChartSettingsDlg.textSameAll": "O mesmo para Todos", + "SSE.Views.ChartSettingsDlg.textSelectData": "Selecionar dados", + "SSE.Views.ChartSettingsDlg.textSeparator": "Separador de rótulos de dados", + "SSE.Views.ChartSettingsDlg.textSeriesName": "Nome da série", + "SSE.Views.ChartSettingsDlg.textShow": "Mostrar", + "SSE.Views.ChartSettingsDlg.textShowAxis": "Exibir eixo", + "SSE.Views.ChartSettingsDlg.textShowBorders": "Exibir bordas do gráfico", + "SSE.Views.ChartSettingsDlg.textShowData": "Mostrar dados nas linhas e colunas ocultas", + "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Mostrar células vazias como", + "SSE.Views.ChartSettingsDlg.textShowGrid": "Linhas de grade", + "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Mostrar Eixo", + "SSE.Views.ChartSettingsDlg.textShowValues": "Exibir valores do gráfico", + "SSE.Views.ChartSettingsDlg.textSingle": "Sparkline Única", + "SSE.Views.ChartSettingsDlg.textSmooth": "Suave", + "SSE.Views.ChartSettingsDlg.textSnap": "Alinhamento de células", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "Intervalos de Sparkline", + "SSE.Views.ChartSettingsDlg.textStraight": "Reto", + "SSE.Views.ChartSettingsDlg.textStyle": "Estilo", + "SSE.Views.ChartSettingsDlg.textTenMillions": "10.000.000 ", + "SSE.Views.ChartSettingsDlg.textTenThousands": "10.000 ", + "SSE.Views.ChartSettingsDlg.textThousands": "Milhares", + "SSE.Views.ChartSettingsDlg.textTickOptions": "Opções de escala", + "SSE.Views.ChartSettingsDlg.textTitle": "Gráfico - Definições avançadas", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Definições avançadas", + "SSE.Views.ChartSettingsDlg.textTop": "Parte superior", + "SSE.Views.ChartSettingsDlg.textTrillions": "Trilhões", + "SSE.Views.ChartSettingsDlg.textTwoCell": "Mover e redimensionar com células", + "SSE.Views.ChartSettingsDlg.textType": "Tipo", + "SSE.Views.ChartSettingsDlg.textTypeData": "Tipo e Dados", + "SSE.Views.ChartSettingsDlg.textTypeStyle": "Tipo, Estilo e
    Intervalo de dados do Gráfico", + "SSE.Views.ChartSettingsDlg.textUnits": "Exibir unidades", + "SSE.Views.ChartSettingsDlg.textValue": "Valor", + "SSE.Views.ChartSettingsDlg.textVertAxis": "Eixo vertical", + "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Eixo Secundário Vertical", + "SSE.Views.ChartSettingsDlg.textVertGrid": "Linhas de grade verticais", + "SSE.Views.ChartSettingsDlg.textVertTitle": "Título do eixo vertical", + "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Título do eixo X", + "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Título do eixo Y", + "SSE.Views.ChartSettingsDlg.textZero": "Zero", + "SSE.Views.ChartSettingsDlg.txtEmpty": "Este campo é obrigatório", + "SSE.Views.ChartTypeDialog.errorComboSeries": "Para criar um gráfico de combinação, selecione pelo menos duas séries de dados.", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "O tipo de gráfico selecionado requer o eixo secundário que um gráfico existente está a utilizar. Selecione outro tipo de gráfico.", + "SSE.Views.ChartTypeDialog.textSecondary": "Eixo Secundário", + "SSE.Views.ChartTypeDialog.textSeries": "Série", + "SSE.Views.ChartTypeDialog.textStyle": "Estilo", + "SSE.Views.ChartTypeDialog.textTitle": "Tipo de tabela de dados", + "SSE.Views.ChartTypeDialog.textType": "Tipo", + "SSE.Views.CreatePivotDialog.textDataRange": "Intervalo de dados de origem", + "SSE.Views.CreatePivotDialog.textDestination": "Escolha o local para colocar a tabela", + "SSE.Views.CreatePivotDialog.textExist": "Folha de cálculo existente", + "SSE.Views.CreatePivotDialog.textInvalidRange": "Intervalo de células inválido", + "SSE.Views.CreatePivotDialog.textNew": "Nova Folha de Cálculo", + "SSE.Views.CreatePivotDialog.textSelectData": "Selecionar dados", + "SSE.Views.CreatePivotDialog.textTitle": "Criar tabela dinâmica", + "SSE.Views.CreatePivotDialog.txtEmpty": "Este campo é obrigatório", + "SSE.Views.CreateSparklineDialog.textDataRange": "Intervalo de dados de origem", + "SSE.Views.CreateSparklineDialog.textDestination": "Escolher, onde colocar as sparklines", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Intervalo de células inválido", + "SSE.Views.CreateSparklineDialog.textSelectData": "Selecionar dados", + "SSE.Views.CreateSparklineDialog.textTitle": "Criar Sparklines", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Este campo é obrigatório", + "SSE.Views.DataTab.capBtnGroup": "Grupo", + "SSE.Views.DataTab.capBtnTextCustomSort": "Ordenação Personalizada", + "SSE.Views.DataTab.capBtnTextDataValidation": "Validação dos dados", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Remover duplicados", + "SSE.Views.DataTab.capBtnTextToCol": "Texto para Colunas", + "SSE.Views.DataTab.capBtnUngroup": "Desagrupar", + "SSE.Views.DataTab.capDataFromText": "Obter dados", + "SSE.Views.DataTab.mniFromFile": "De um TXT/CSV local", + "SSE.Views.DataTab.mniFromUrl": "Do endereço da web TXT/CSV", + "SSE.Views.DataTab.textBelow": "Linhas de resumo por baixo do detalhe", + "SSE.Views.DataTab.textClear": "Limpar Contorno do Gráfico", + "SSE.Views.DataTab.textColumns": "Desagrupar Colunas", + "SSE.Views.DataTab.textGroupColumns": "Agrupar colunas", + "SSE.Views.DataTab.textGroupRows": "Agrupar linhas", + "SSE.Views.DataTab.textRightOf": "Colunas de resumo à direita do detalhe", + "SSE.Views.DataTab.textRows": "Desagrupar linhas", + "SSE.Views.DataTab.tipCustomSort": "Ordenação Personalizada", + "SSE.Views.DataTab.tipDataFromText": "Obter dados a partir de um ficheiro de texto/CSV", + "SSE.Views.DataTab.tipDataValidation": "Validação dos dados", + "SSE.Views.DataTab.tipGroup": "Agrupar intervalo de células", + "SSE.Views.DataTab.tipRemDuplicates": "Remover linhas duplicadas na folha", + "SSE.Views.DataTab.tipToColumns": "Separar o texto da célula em colunas", + "SSE.Views.DataTab.tipUngroup": "Desagrupar intervalo de células", + "SSE.Views.DataValidationDialog.errorFormula": "O valor atual corresponde a um erro. Quer continuar?", + "SSE.Views.DataValidationDialog.errorInvalid": "O valor que introduziu para o campo \"{0}\" é inválido.", + "SSE.Views.DataValidationDialog.errorInvalidDate": "A data que introduziu para o campo \"{0}\" é inválido.", + "SSE.Views.DataValidationDialog.errorInvalidList": "A origem da lista deve ser uma lista delimitada, ou uma referência a uma única linha ou coluna.", + "SSE.Views.DataValidationDialog.errorInvalidTime": "O tempo que introduziu para o campo \"{0}\" é inválido.", + "SSE.Views.DataValidationDialog.errorMinGreaterMax": "O campo \"{1}\" deve ser maior ou igual ao campo \"{0}\".", + "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "Deve introduzir um valor tanto no campo \"{0}\" como no campo \"{1}\".", + "SSE.Views.DataValidationDialog.errorMustEnterValue": "Tem de introduzir um valor no campo \"{0}\".", + "SSE.Views.DataValidationDialog.errorNamedRange": "O intervalo com nome que especificou não foi encontrado.", + "SSE.Views.DataValidationDialog.errorNegativeTextLength": "Os valores negativos não podem ser utilizados em condições \"{0}\".", + "SSE.Views.DataValidationDialog.errorNotNumeric": "O campo \"{0}\" deve ser um valor numérico, expressão numérica, ou referir-se a uma célula contendo um valor numérico.", + "SSE.Views.DataValidationDialog.strError": "Alerta de Erro", + "SSE.Views.DataValidationDialog.strInput": "Mensagem de Entrada", + "SSE.Views.DataValidationDialog.strSettings": "Configurações", + "SSE.Views.DataValidationDialog.textAlert": "Alerta", + "SSE.Views.DataValidationDialog.textAllow": "Permitir", + "SSE.Views.DataValidationDialog.textApply": "Aplicar estas alterações a todas células com as mesmas definições", + "SSE.Views.DataValidationDialog.textCellSelected": "Quando a célula é selecionada, mostrar esta mensagem de entrada", + "SSE.Views.DataValidationDialog.textCompare": "Comparar com", + "SSE.Views.DataValidationDialog.textData": "Data", + "SSE.Views.DataValidationDialog.textEndDate": "Data de conclusão", + "SSE.Views.DataValidationDialog.textEndTime": "Hora de fim", + "SSE.Views.DataValidationDialog.textError": "Mensagem de Erro", + "SSE.Views.DataValidationDialog.textFormula": "Fórmula", + "SSE.Views.DataValidationDialog.textIgnore": "Ignorar Em Branco", + "SSE.Views.DataValidationDialog.textInput": "Mensagem de Entrada", + "SSE.Views.DataValidationDialog.textMax": "Máximo", + "SSE.Views.DataValidationDialog.textMessage": "Mensagem", + "SSE.Views.DataValidationDialog.textMin": "Mínimo", + "SSE.Views.DataValidationDialog.textSelectData": "Selecionar dados", + "SSE.Views.DataValidationDialog.textShowDropDown": "Mostrar uma lista pendente na célula", + "SSE.Views.DataValidationDialog.textShowError": "Mostrar alerta de erro após a introdução de dados inválidos", + "SSE.Views.DataValidationDialog.textShowInput": "Mostrar mensagem de entrada quando a célula é selecionada", + "SSE.Views.DataValidationDialog.textSource": "Origem", + "SSE.Views.DataValidationDialog.textStartDate": "Data de início", + "SSE.Views.DataValidationDialog.textStartTime": "Hora de Início", + "SSE.Views.DataValidationDialog.textStop": "Parar", + "SSE.Views.DataValidationDialog.textStyle": "Estilo", + "SSE.Views.DataValidationDialog.textTitle": "Título", + "SSE.Views.DataValidationDialog.textUserEnters": "Quando o utilizador introduz dados inválidos, mostrar este alerta de erro", + "SSE.Views.DataValidationDialog.txtAny": "Qualquer valor", + "SSE.Views.DataValidationDialog.txtBetween": "entre", + "SSE.Views.DataValidationDialog.txtDate": "Data", + "SSE.Views.DataValidationDialog.txtDecimal": "Decimal", + "SSE.Views.DataValidationDialog.txtElTime": "Tempo decorrido", + "SSE.Views.DataValidationDialog.txtEndDate": "Data de conclusão", + "SSE.Views.DataValidationDialog.txtEndTime": "Hora de fim", + "SSE.Views.DataValidationDialog.txtEqual": "igual", + "SSE.Views.DataValidationDialog.txtGreaterThan": "Superior a", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "Superior a ou igual a", + "SSE.Views.DataValidationDialog.txtLength": "Comprimento", + "SSE.Views.DataValidationDialog.txtLessThan": "Inferior a", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "Inferior a ou igual a", + "SSE.Views.DataValidationDialog.txtList": "Lista", + "SSE.Views.DataValidationDialog.txtNotBetween": "Não está entre", + "SSE.Views.DataValidationDialog.txtNotEqual": "não é igual a", + "SSE.Views.DataValidationDialog.txtOther": "Outro", + "SSE.Views.DataValidationDialog.txtStartDate": "Data de início", + "SSE.Views.DataValidationDialog.txtStartTime": "Hora de Início", + "SSE.Views.DataValidationDialog.txtTextLength": "Comprimento do Texto", + "SSE.Views.DataValidationDialog.txtTime": "Tempo", + "SSE.Views.DataValidationDialog.txtWhole": "Número inteiro", + "SSE.Views.DigitalFilterDialog.capAnd": "E", + "SSE.Views.DigitalFilterDialog.capCondition1": "igual", + "SSE.Views.DigitalFilterDialog.capCondition10": "não termina com", + "SSE.Views.DigitalFilterDialog.capCondition11": "contém", + "SSE.Views.DigitalFilterDialog.capCondition12": "não contém", + "SSE.Views.DigitalFilterDialog.capCondition2": "não é igual a", + "SSE.Views.DigitalFilterDialog.capCondition3": "é superior a", + "SSE.Views.DigitalFilterDialog.capCondition4": "é superior ou igual a", + "SSE.Views.DigitalFilterDialog.capCondition5": "é inferior a", + "SSE.Views.DigitalFilterDialog.capCondition6": "é inferior ou igual a", + "SSE.Views.DigitalFilterDialog.capCondition7": "começa com", + "SSE.Views.DigitalFilterDialog.capCondition8": "não começa com", + "SSE.Views.DigitalFilterDialog.capCondition9": "termina com", + "SSE.Views.DigitalFilterDialog.capOr": "Ou", + "SSE.Views.DigitalFilterDialog.textNoFilter": "sem filtro", + "SSE.Views.DigitalFilterDialog.textShowRows": "Exibir células onde", + "SSE.Views.DigitalFilterDialog.textUse1": "Usar ? para apresentar qualquer caractere único", + "SSE.Views.DigitalFilterDialog.textUse2": "Usar * para apresentar qualquer série de caracteres", + "SSE.Views.DigitalFilterDialog.txtTitle": "Personalizar filtro", + "SSE.Views.DocumentHolder.advancedImgText": "Definições avançadas de imagem", + "SSE.Views.DocumentHolder.advancedShapeText": "Definições avançadas de forma", + "SSE.Views.DocumentHolder.advancedSlicerText": "Definições avançadas de 'slicer'", + "SSE.Views.DocumentHolder.bottomCellText": "Alinhar à parte inferior", + "SSE.Views.DocumentHolder.bulletsText": "Marcadores e numeração", + "SSE.Views.DocumentHolder.centerCellText": "Alinhar ao centro", + "SSE.Views.DocumentHolder.chartText": "Definições avançadas de gráfico", + "SSE.Views.DocumentHolder.deleteColumnText": "Coluna", + "SSE.Views.DocumentHolder.deleteRowText": "Linha", + "SSE.Views.DocumentHolder.deleteTableText": "Tabela", + "SSE.Views.DocumentHolder.direct270Text": "Rodar texto para cima", + "SSE.Views.DocumentHolder.direct90Text": "Rotate at 90°", + "SSE.Views.DocumentHolder.directHText": "Horizontal", + "SSE.Views.DocumentHolder.directionText": "Text Direction", + "SSE.Views.DocumentHolder.editChartText": "Editar dados", + "SSE.Views.DocumentHolder.editHyperlinkText": "Editar hiperligação", + "SSE.Views.DocumentHolder.insertColumnLeftText": "Coluna esquerda", + "SSE.Views.DocumentHolder.insertColumnRightText": "Coluna direita", + "SSE.Views.DocumentHolder.insertRowAboveText": "Linha acima", + "SSE.Views.DocumentHolder.insertRowBelowText": "Linha abaixo", + "SSE.Views.DocumentHolder.originalSizeText": "Tamanho real", + "SSE.Views.DocumentHolder.removeHyperlinkText": "Remover hiperligação", + "SSE.Views.DocumentHolder.selectColumnText": "Coluna inteira", + "SSE.Views.DocumentHolder.selectDataText": "Dados da coluna", + "SSE.Views.DocumentHolder.selectRowText": "Linha", + "SSE.Views.DocumentHolder.selectTableText": "Tabela", + "SSE.Views.DocumentHolder.strDelete": "Remover assinatura", + "SSE.Views.DocumentHolder.strDetails": "Detalhes da assinatura", + "SSE.Views.DocumentHolder.strSetup": "Definições de Assinatura", + "SSE.Views.DocumentHolder.strSign": "Assinar", + "SSE.Views.DocumentHolder.textAlign": "Alinhar", + "SSE.Views.DocumentHolder.textArrange": "Dispor", + "SSE.Views.DocumentHolder.textArrangeBack": "Enviar para plano de fundo", + "SSE.Views.DocumentHolder.textArrangeBackward": "Enviar para trás", + "SSE.Views.DocumentHolder.textArrangeForward": "Trazer para frente", + "SSE.Views.DocumentHolder.textArrangeFront": "Trazer para primeiro plano", + "SSE.Views.DocumentHolder.textAverage": "Média", + "SSE.Views.DocumentHolder.textBullets": "Marcadores", + "SSE.Views.DocumentHolder.textCount": "Contagem", + "SSE.Views.DocumentHolder.textCrop": "Recortar", + "SSE.Views.DocumentHolder.textCropFill": "Preencher", + "SSE.Views.DocumentHolder.textCropFit": "Ajustar", + "SSE.Views.DocumentHolder.textEditPoints": "Editar Pontos", + "SSE.Views.DocumentHolder.textEntriesList": "Selecionar da lista suspensa", + "SSE.Views.DocumentHolder.textFlipH": "Virar horizontalmente", + "SSE.Views.DocumentHolder.textFlipV": "Virar verticalmente", + "SSE.Views.DocumentHolder.textFreezePanes": "Fixar painéis", + "SSE.Views.DocumentHolder.textFromFile": "De um ficheiro", + "SSE.Views.DocumentHolder.textFromStorage": "De um armazenamento", + "SSE.Views.DocumentHolder.textFromUrl": "De um URL", + "SSE.Views.DocumentHolder.textListSettings": "Definições da lista", + "SSE.Views.DocumentHolder.textMacro": "Atribuir Macro", + "SSE.Views.DocumentHolder.textMax": "Máx", + "SSE.Views.DocumentHolder.textMin": "Min.", + "SSE.Views.DocumentHolder.textMore": "Mais funções", + "SSE.Views.DocumentHolder.textMoreFormats": "Mais formatos", + "SSE.Views.DocumentHolder.textNone": "Nenhum", + "SSE.Views.DocumentHolder.textNumbering": "Numeração", + "SSE.Views.DocumentHolder.textReplace": "Substituir imagem", + "SSE.Views.DocumentHolder.textRotate": "Rodar", + "SSE.Views.DocumentHolder.textRotate270": "Rodar 90º à esquerda", + "SSE.Views.DocumentHolder.textRotate90": "Rodar 90º à direita", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "Alinhar em baixo", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "Alinhar ao centro", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "Alinhar à esquerda", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Alinhar ao centro", + "SSE.Views.DocumentHolder.textShapeAlignRight": "Alinhar à direita", + "SSE.Views.DocumentHolder.textShapeAlignTop": "Alinhar em cima", + "SSE.Views.DocumentHolder.textStdDev": "Desv.Padr", + "SSE.Views.DocumentHolder.textSum": "Soma", + "SSE.Views.DocumentHolder.textUndo": "Desfazer", + "SSE.Views.DocumentHolder.textUnFreezePanes": "Libertar painéis", + "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Marcadores de setas", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Marcas de verificação", + "SSE.Views.DocumentHolder.tipMarkersDash": "Marcadores de traços", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Marcas de lista redondas vazias", + "SSE.Views.DocumentHolder.tipMarkersStar": "Marcas em estrela", + "SSE.Views.DocumentHolder.topCellText": "Alinhar à parte superior", + "SSE.Views.DocumentHolder.txtAccounting": "Contabilidade", + "SSE.Views.DocumentHolder.txtAddComment": "Adicionar comentário", + "SSE.Views.DocumentHolder.txtAddNamedRange": "Define Name", + "SSE.Views.DocumentHolder.txtArrange": "Dispor", + "SSE.Views.DocumentHolder.txtAscending": "Crescente", + "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Ajuste automático à largura da coluna", + "SSE.Views.DocumentHolder.txtAutoRowHeight": "Ajuste automática à altura da linha", + "SSE.Views.DocumentHolder.txtClear": "Limpar", + "SSE.Views.DocumentHolder.txtClearAll": "Tudo", + "SSE.Views.DocumentHolder.txtClearComments": "Comentários", + "SSE.Views.DocumentHolder.txtClearFormat": "Formato", + "SSE.Views.DocumentHolder.txtClearHyper": "Hiperligações", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Limpar os Grupos Sparkline Selecionados", + "SSE.Views.DocumentHolder.txtClearSparklines": "Limpar Sparklines Selecionados", + "SSE.Views.DocumentHolder.txtClearText": "Texto", + "SSE.Views.DocumentHolder.txtColumn": "Coluna inteira", + "SSE.Views.DocumentHolder.txtColumnWidth": "Largura da coluna", + "SSE.Views.DocumentHolder.txtCondFormat": "Formatação condicional", + "SSE.Views.DocumentHolder.txtCopy": "Copiar", + "SSE.Views.DocumentHolder.txtCurrency": "Moeda", + "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Largura de Coluna Personalizada", + "SSE.Views.DocumentHolder.txtCustomRowHeight": "Altura de Linha Personalizada", + "SSE.Views.DocumentHolder.txtCustomSort": "Ordenação Personalizada", + "SSE.Views.DocumentHolder.txtCut": "Cortar", + "SSE.Views.DocumentHolder.txtDate": "Data", + "SSE.Views.DocumentHolder.txtDelete": "Excluir", + "SSE.Views.DocumentHolder.txtDescending": "Decrescente", + "SSE.Views.DocumentHolder.txtDistribHor": "Distribuir horizontalmente", + "SSE.Views.DocumentHolder.txtDistribVert": "Distribuir verticalmente", + "SSE.Views.DocumentHolder.txtEditComment": "Editar comentário", + "SSE.Views.DocumentHolder.txtFilter": "Filtro", + "SSE.Views.DocumentHolder.txtFilterCellColor": "Filtrar pela cor da célula", + "SSE.Views.DocumentHolder.txtFilterFontColor": "Filtrar pela cor do tipo de letra", + "SSE.Views.DocumentHolder.txtFilterValue": "Filtrar por valor da célula selecionada", + "SSE.Views.DocumentHolder.txtFormula": "Inserir função", + "SSE.Views.DocumentHolder.txtFraction": "Fração", + "SSE.Views.DocumentHolder.txtGeneral": "Geral", + "SSE.Views.DocumentHolder.txtGroup": "Grupo", + "SSE.Views.DocumentHolder.txtHide": "Ocultar", + "SSE.Views.DocumentHolder.txtInsert": "Inserir", + "SSE.Views.DocumentHolder.txtInsHyperlink": "Hiperligação", + "SSE.Views.DocumentHolder.txtNumber": "Número", + "SSE.Views.DocumentHolder.txtNumFormat": "Formato de número", + "SSE.Views.DocumentHolder.txtPaste": "Colar", + "SSE.Views.DocumentHolder.txtPercentage": "Percentagem", + "SSE.Views.DocumentHolder.txtReapply": "Aplicar", + "SSE.Views.DocumentHolder.txtRow": "Linha inteira", + "SSE.Views.DocumentHolder.txtRowHeight": "Altura da linha", + "SSE.Views.DocumentHolder.txtScientific": "Científico", + "SSE.Views.DocumentHolder.txtSelect": "Selecionar", + "SSE.Views.DocumentHolder.txtShiftDown": "Deslocar células para baixo", + "SSE.Views.DocumentHolder.txtShiftLeft": "Deslocar células para a esquerda", + "SSE.Views.DocumentHolder.txtShiftRight": "Deslocar células para a direita", + "SSE.Views.DocumentHolder.txtShiftUp": "Deslocar células para cima", + "SSE.Views.DocumentHolder.txtShow": "Mostrar", + "SSE.Views.DocumentHolder.txtShowComment": "Mostrar Comentário", + "SSE.Views.DocumentHolder.txtSort": "Classificar", + "SSE.Views.DocumentHolder.txtSortCellColor": "Cor da Célula Selecionada Em Cima", + "SSE.Views.DocumentHolder.txtSortFontColor": "Cor do Tipo de Letra Selecionada Em Cima", + "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", + "SSE.Views.DocumentHolder.txtText": "Тexto", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Configurações avançadas de parágrafo", + "SSE.Views.DocumentHolder.txtTime": "Hora", + "SSE.Views.DocumentHolder.txtUngroup": "Desagrupar", + "SSE.Views.DocumentHolder.txtWidth": "Largura", + "SSE.Views.DocumentHolder.vertAlignText": "Alinhamento vertical", + "SSE.Views.FieldSettingsDialog.strLayout": "Disposição", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotais", + "SSE.Views.FieldSettingsDialog.textReport": "Reportar Forma", + "SSE.Views.FieldSettingsDialog.textTitle": "Definições de campo", + "SSE.Views.FieldSettingsDialog.txtAverage": "Média", + "SSE.Views.FieldSettingsDialog.txtBlank": "Inserir Linhas em Branco depois de cada item", + "SSE.Views.FieldSettingsDialog.txtBottom": "Mostrar no fundo do grupo", + "SSE.Views.FieldSettingsDialog.txtCompact": "Compactar", + "SSE.Views.FieldSettingsDialog.txtCount": "Contagem", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Contar números", + "SSE.Views.FieldSettingsDialog.txtCustomName": "Nome personalizado", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Mostrar itens sem dados", + "SSE.Views.FieldSettingsDialog.txtMax": "Máx", + "SSE.Views.FieldSettingsDialog.txtMin": "Min.", + "SSE.Views.FieldSettingsDialog.txtOutline": "Destaque", + "SSE.Views.FieldSettingsDialog.txtProduct": "Produto", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Repetir as etiquetas dos itens em cada linha", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Mostra subtotais", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Nome da origem:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "Desv.Padr", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "Desv.PadrP", + "SSE.Views.FieldSettingsDialog.txtSum": "Soma", + "SSE.Views.FieldSettingsDialog.txtSummarize": "Funções para subtotais", + "SSE.Views.FieldSettingsDialog.txtTabular": "Tabela", + "SSE.Views.FieldSettingsDialog.txtTop": "Mostrar no topo do grupo", + "SSE.Views.FieldSettingsDialog.txtVar": "Var", + "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", + "SSE.Views.FileMenu.btnBackCaption": "Abrir localização", + "SSE.Views.FileMenu.btnCloseMenuCaption": "Fechar menu", + "SSE.Views.FileMenu.btnCreateNewCaption": "Criar novo", + "SSE.Views.FileMenu.btnDownloadCaption": "Descarregar como...", + "SSE.Views.FileMenu.btnExitCaption": "Fechar", + "SSE.Views.FileMenu.btnFileOpenCaption": "Abrir...", + "SSE.Views.FileMenu.btnHelpCaption": "Ajuda...", + "SSE.Views.FileMenu.btnHistoryCaption": "Histórico da versão", + "SSE.Views.FileMenu.btnInfoCaption": "Informações da planilha", + "SSE.Views.FileMenu.btnPrintCaption": "Imprimir", + "SSE.Views.FileMenu.btnProtectCaption": "Proteger", + "SSE.Views.FileMenu.btnRecentFilesCaption": "Abrir recente...", + "SSE.Views.FileMenu.btnRenameCaption": "Renomear...", + "SSE.Views.FileMenu.btnReturnCaption": "Voltar para planilha", + "SSE.Views.FileMenu.btnRightsCaption": "Direitos de Acesso...", + "SSE.Views.FileMenu.btnSaveAsCaption": "Save as", + "SSE.Views.FileMenu.btnSaveCaption": "Salvar", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Guardar cópia como...", + "SSE.Views.FileMenu.btnSettingsCaption": "Definições avançadas...", + "SSE.Views.FileMenu.btnToEditCaption": "Editar planilha", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Folha de Cálculo em branco", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Criar novo", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Adicionar autor", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Adicionar texto", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicação", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", + "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Alterar direitos de acesso", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentário", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Criado", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última modificação por", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última modificação", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Proprietário", + "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Localização", + "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos", + "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", + "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado", + "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Alterar direitos de acesso", + "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Pessoas que têm direitos", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplicar", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Ativar recuperação automática", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Ativar salvamento automático", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing mode", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Outros utilizadores verão as suas alterações de uma vez", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador decimal", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rápido", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Dicas de fonte", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Guardar sempre no servidor (caso contrário, guardar no servidor ao fechar o documento)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Ativar opção comentário ao vivo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Definições de macros", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cortar, copiar e colar", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostrar botão Opções de colagem ao colar conteúdo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Ligar o estilo R1C1", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Definições regionais", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example:", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Aceder à visualização dos comentários resolvidos", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separador", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema da interface", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separador de milhares", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unidade de medida", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Utilizar separadores de acordo com as definições regionais", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Valor de zoom padrão", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "A cada 10 minutos", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "A cada 30 minutos", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "A cada 5 minutos", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "A cada hora", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Recuperação automática", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Salvamento automático", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Desabilitado", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Salvar para servidor", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "A cada minuto", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Estilo de Referência", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Bielorrusso", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Búlgaro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalão", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Modo de cache padrão", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centímetro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Checo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Dinamarquês", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Deutsch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Grego", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Espanhol", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finlandês", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Francês", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Húngaro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonésio", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Polegada", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiano", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japonês", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Coreano", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Comentário ao vivo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "como SO X", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Nativo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norueguês", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Neerlandês", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polaco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Ponto", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Português (Brasil)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Português (Portugal)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romeno", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Ativar tudo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Ativar todas as macros sem notificação", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Eslovaco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Esloveno", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Desativar tudo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Desativar todas as macros sem uma notificação", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Sueco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ucraniano", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamita", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Mostrar notificação", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "como Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinês", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplicar", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Idioma do Dicionário", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorar palavras em MAÍSCULAS", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorar palavras com números", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opções de correção automática...", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Correção", + "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Aviso", + "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Com palavra-passe", + "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteger Folha de Cálculo", + "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Com assinatura", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar planilha", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Se editar este documento, remove as assinaturas.
    Tem a certeza de que deseja continuar?", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "A folha de cálculo está protegida com uma palavra-passe", + "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Esta folha de cálculo precisa de ser assinada.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Assinaturas adicionadas ao documento. Esta folha de cálculo não pode ser editada.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algumas das assinaturas digitais são inválidas ou não puderam ser verificadas. Esta folha de cálculo documento não pode ser editada.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Ver assinaturas", + "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Geral", + "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Definições de página", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Verificação ortográfica", + "SSE.Views.FormatRulesEditDlg.fillColor": "Cor de preenchimento", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Aviso", + "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Escala de cor", + "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Escala de cor", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "Todas as bordas", + "SSE.Views.FormatRulesEditDlg.textAppearance": "Aparência da Barra", + "SSE.Views.FormatRulesEditDlg.textApply": "Aplicar a Intervalo", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Automático", + "SSE.Views.FormatRulesEditDlg.textAxis": "Eixo", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "Direção da Barra", + "SSE.Views.FormatRulesEditDlg.textBold": "Negrito", + "SSE.Views.FormatRulesEditDlg.textBorder": "Borda", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "Cor das bordas", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Estilo de borda", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bordas inferiores", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Não foi possível adicionar a formatação condicional.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Ponto intermédio da célula", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Bordas verticais interiores", + "SSE.Views.FormatRulesEditDlg.textClear": "Limpar", + "SSE.Views.FormatRulesEditDlg.textColor": "Cor do texto", + "SSE.Views.FormatRulesEditDlg.textContext": "Contexto", + "SSE.Views.FormatRulesEditDlg.textCustom": "Personalizado", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Borda inferior diagonal", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Borda superior diagonal", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Introduza uma fórmula válida", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "A fórmula introduzida não devolve um número, uma data, hora ou cadeia.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Introduza um valor.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "O valor que introduziu não é um número, data, hora ou string válido.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "O valor para o {0} deve ser maior do que o valor para o {1}.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Introduza um número entre {0} e {1}.", + "SSE.Views.FormatRulesEditDlg.textFill": "Preencher", + "SSE.Views.FormatRulesEditDlg.textFormat": "Formato", + "SSE.Views.FormatRulesEditDlg.textFormula": "Fórmula", + "SSE.Views.FormatRulesEditDlg.textGradient": "Gradiente", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "quando {0} {1} e", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "quando {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "quando o valor é", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Um ou mais intervalos de dados de ícone estão sobrepostos.
    Ajuste os valores dos intervalos de dados de ícone de forma a que os intervalos não se sobreponham.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Estilo do Ícone", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Bordas interiores", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Intervalo de dados inválido.", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Views.FormatRulesEditDlg.textItalic": "Itálico", + "SSE.Views.FormatRulesEditDlg.textItem": "Item", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Da esquerda para a direita", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Bordas esquerdas", + "SSE.Views.FormatRulesEditDlg.textLongBar": "Barra mais longa", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Máximo", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Ponto máximo", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Bordas horizontais interiores", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Ponto médio", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Mínimo", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Ponto mínimo", + "SSE.Views.FormatRulesEditDlg.textNegative": "Negativo", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Adicionar nova cor personalizada", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Sem bordas", + "SSE.Views.FormatRulesEditDlg.textNone": "Nenhum", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Um ou mais dos valores especificados não é uma percentagem válida.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "O valor especificado {0} não é uma percentagem válida.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Um ou mais dos valores especificados não é um percentil válido.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "O valor especificado {0} não é um percentil válido.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Bordas externas", + "SSE.Views.FormatRulesEditDlg.textPercent": "Percentagem", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentil", + "SSE.Views.FormatRulesEditDlg.textPosition": "Posição", + "SSE.Views.FormatRulesEditDlg.textPositive": "Positivo", + "SSE.Views.FormatRulesEditDlg.textPresets": "Predefinições", + "SSE.Views.FormatRulesEditDlg.textPreview": "Pré-visualizar", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "Não é possível utilizar referências relativas em critérios de formatação condicional para escalas de cor, barras de dados e conjuntos de ícones.", + "SSE.Views.FormatRulesEditDlg.textReverse": "Ordem Inversa de Ícones", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Da Direita para a esquerda", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Bordas direitas", + "SSE.Views.FormatRulesEditDlg.textRule": "Regra", + "SSE.Views.FormatRulesEditDlg.textSameAs": "O mesmo que positivo", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Selecionar dados", + "SSE.Views.FormatRulesEditDlg.textShortBar": "Barra mais curta", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Mostrar apenas a barra", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Mostrar apenas o ícone", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Este tipo de referência não pode ser usado numa fórmula de formatação condicional.
    Altere a referência para uma única célula, ou utilize a referência com uma função de folha de cálculo, tal como =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Sólido", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Rasurado", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Subscrito", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Sobrescrito", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Bordas superiores", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Sublinhado", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Bordas", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Formato de número", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Contabilidade", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Moeda", + "SSE.Views.FormatRulesEditDlg.txtDate": "Data", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Este campo é obrigatório", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Fração", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "Geral", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Sem Ícone", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Número", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentagem", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Científico", + "SSE.Views.FormatRulesEditDlg.txtText": "Тexto", + "SSE.Views.FormatRulesEditDlg.txtTime": "Tempo", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Editar Regra de Formatação", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nova Regra de Formatação", + "SSE.Views.FormatRulesManagerDlg.guestText": "Visitante", + "SSE.Views.FormatRulesManagerDlg.lockText": "Bloqueada", + "SSE.Views.FormatRulesManagerDlg.text1Above": "1 acima da média do desv. padr. ", + "SSE.Views.FormatRulesManagerDlg.text1Below": "1 desv. padr. abaixo da média ", + "SSE.Views.FormatRulesManagerDlg.text2Above": "2 acima da média do desv. padr. ", + "SSE.Views.FormatRulesManagerDlg.text2Below": "2 desv. padr. abaixo da média", + "SSE.Views.FormatRulesManagerDlg.text3Above": "3 acima da média do desv. padr. ", + "SSE.Views.FormatRulesManagerDlg.text3Below": "3 desv. padr. abaixo da média", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Acima da média", + "SSE.Views.FormatRulesManagerDlg.textApply": "Aplicar a", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "O valor da célula começa por", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Abaixo da média", + "SSE.Views.FormatRulesManagerDlg.textBetween": "Está entre {0} e {1}", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Valor da célula", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Escala de cor progressiva", + "SSE.Views.FormatRulesManagerDlg.textContains": "O valor da célula contém", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "A célula contém um valor em branco", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "A célula contém um erro", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Eliminar", + "SSE.Views.FormatRulesManagerDlg.textDown": "Mover regra para baixo", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Duplicar valores", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Editar", + "SSE.Views.FormatRulesManagerDlg.textEnds": "O valor da célula acaba em", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Igual ou maior que a média", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Igual ou menor que a média", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Formato", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Conjunto de ícones", + "SSE.Views.FormatRulesManagerDlg.textNew": "Novo", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "Não está entre {0} e {1}", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "O valor da célula não contém", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "A célula não contém um valor branco", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "A célula não tem nenhum erro", + "SSE.Views.FormatRulesManagerDlg.textRules": "Regras", + "SSE.Views.FormatRulesManagerDlg.textScope": "Mostrar regras de formatação para", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Selecionar dados", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Seleção Atual", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Este pivô", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Esta folha de cálculo", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "Esta tabela", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Valores únicos", + "SSE.Views.FormatRulesManagerDlg.textUp": "Mover regra para cima", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Este elemento está sendo editado por outro usuário.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Formatação condicional", + "SSE.Views.FormatSettingsDialog.textCategory": "Categoria", + "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", + "SSE.Views.FormatSettingsDialog.textFormat": "Formato", + "SSE.Views.FormatSettingsDialog.textLinked": "Ligado à origem", + "SSE.Views.FormatSettingsDialog.textSeparator": "Usar o separador 1000", + "SSE.Views.FormatSettingsDialog.textSymbols": "Símbolos", + "SSE.Views.FormatSettingsDialog.textTitle": "Formato de número", + "SSE.Views.FormatSettingsDialog.txtAccounting": "Contabilidade", + "SSE.Views.FormatSettingsDialog.txtAs10": "Como décimas (5/10)", + "SSE.Views.FormatSettingsDialog.txtAs100": "Como centenas (50/100)", + "SSE.Views.FormatSettingsDialog.txtAs16": "Como 16 avos (8/16)", + "SSE.Views.FormatSettingsDialog.txtAs2": "Como meias (1/2)", + "SSE.Views.FormatSettingsDialog.txtAs4": "Como quartos (2/4)", + "SSE.Views.FormatSettingsDialog.txtAs8": "Como oitavos (4/8)", + "SSE.Views.FormatSettingsDialog.txtCurrency": "Moeda", + "SSE.Views.FormatSettingsDialog.txtCustom": "Personalizado", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Por favor, introduza cuidadosamente o formato do número personalizado. O Editor de Folhas de Cálculo não verifica os formatos personalizados para aferir possíveis erros que possam afetar o ficheiro xlsx.", + "SSE.Views.FormatSettingsDialog.txtDate": "Data", + "SSE.Views.FormatSettingsDialog.txtFraction": "Fração", + "SSE.Views.FormatSettingsDialog.txtGeneral": "Geral", + "SSE.Views.FormatSettingsDialog.txtNone": "Nenhum", + "SSE.Views.FormatSettingsDialog.txtNumber": "Número", + "SSE.Views.FormatSettingsDialog.txtPercentage": "Percentagem", + "SSE.Views.FormatSettingsDialog.txtSample": "Amostra:", + "SSE.Views.FormatSettingsDialog.txtScientific": "Científico", + "SSE.Views.FormatSettingsDialog.txtText": "Тexto", + "SSE.Views.FormatSettingsDialog.txtTime": "Hora", + "SSE.Views.FormatSettingsDialog.txtUpto1": "Até um dígito (1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "Até dois dígitos (12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "Até três dígitos (131/135)", + "SSE.Views.FormulaDialog.sDescription": "Descrição", + "SSE.Views.FormulaDialog.textGroupDescription": "Selecionar grupo de função", + "SSE.Views.FormulaDialog.textListDescription": "Selecionar função", + "SSE.Views.FormulaDialog.txtRecommended": "Recomendado", + "SSE.Views.FormulaDialog.txtSearch": "Pesquisa", + "SSE.Views.FormulaDialog.txtTitle": "Inserir função", + "SSE.Views.FormulaTab.textAutomatic": "Automático", + "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Calcular folha completa", + "SSE.Views.FormulaTab.textCalculateWorkbook": "Calcular livro", + "SSE.Views.FormulaTab.textManual": "Manual", + "SSE.Views.FormulaTab.tipCalculate": "Calcular", + "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Calcular livro", + "SSE.Views.FormulaTab.txtAdditional": "Adicional", + "SSE.Views.FormulaTab.txtAutosum": "Soma automática", + "SSE.Views.FormulaTab.txtAutosumTip": "Somatório", + "SSE.Views.FormulaTab.txtCalculation": "Cálculos", + "SSE.Views.FormulaTab.txtFormula": "Função", + "SSE.Views.FormulaTab.txtFormulaTip": "Inserir função", + "SSE.Views.FormulaTab.txtMore": "Mais funções", + "SSE.Views.FormulaTab.txtRecent": "Utilizado recentemente", + "SSE.Views.FormulaWizard.textAny": "qualquer", + "SSE.Views.FormulaWizard.textArgument": "Argumento", + "SSE.Views.FormulaWizard.textFunction": "Função", + "SSE.Views.FormulaWizard.textFunctionRes": "Resultado da Função", + "SSE.Views.FormulaWizard.textHelp": "Ajuda nesta função", + "SSE.Views.FormulaWizard.textLogical": "Logical", + "SSE.Views.FormulaWizard.textNoArgs": "Esta função não tem argumentos", + "SSE.Views.FormulaWizard.textNumber": "Número", + "SSE.Views.FormulaWizard.textRef": "Referência", + "SSE.Views.FormulaWizard.textText": "Тexto", + "SSE.Views.FormulaWizard.textTitle": "Argumentos da Função", + "SSE.Views.FormulaWizard.textValue": "Resultado da fórmula", + "SSE.Views.HeaderFooterDialog.textAlign": "Alinhas com as margens da página", + "SSE.Views.HeaderFooterDialog.textAll": "Todas as páginas", + "SSE.Views.HeaderFooterDialog.textBold": "Negrito", + "SSE.Views.HeaderFooterDialog.textCenter": "Centro", + "SSE.Views.HeaderFooterDialog.textColor": "Cor do texto", + "SSE.Views.HeaderFooterDialog.textDate": "Data", + "SSE.Views.HeaderFooterDialog.textDiffFirst": "Primeira página diferente", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "Páginas pares e ímpares diferentes", + "SSE.Views.HeaderFooterDialog.textEven": "Página par", + "SSE.Views.HeaderFooterDialog.textFileName": "Nome do ficheiro", + "SSE.Views.HeaderFooterDialog.textFirst": "Primeira página", + "SSE.Views.HeaderFooterDialog.textFooter": "Rodapé", + "SSE.Views.HeaderFooterDialog.textHeader": "Cabeçalho", + "SSE.Views.HeaderFooterDialog.textInsert": "Inserir", + "SSE.Views.HeaderFooterDialog.textItalic": "Itálico", + "SSE.Views.HeaderFooterDialog.textLeft": "Esquerda", + "SSE.Views.HeaderFooterDialog.textMaxError": "A cadeia de texto que introduziu é demasiado longa. Reduza o número de caracteres utilizados.", + "SSE.Views.HeaderFooterDialog.textNewColor": "Adicionar nova cor personalizada", + "SSE.Views.HeaderFooterDialog.textOdd": "Página ímpar", + "SSE.Views.HeaderFooterDialog.textPageCount": "Número de páginas", + "SSE.Views.HeaderFooterDialog.textPageNum": "Número de página", + "SSE.Views.HeaderFooterDialog.textPresets": "Predefinições", + "SSE.Views.HeaderFooterDialog.textRight": "Direita", + "SSE.Views.HeaderFooterDialog.textScale": "Ajustar ao documento", + "SSE.Views.HeaderFooterDialog.textSheet": "Nome da folha", + "SSE.Views.HeaderFooterDialog.textStrikeout": "Rasurado", + "SSE.Views.HeaderFooterDialog.textSubscript": "Subscrito", + "SSE.Views.HeaderFooterDialog.textSuperscript": "Sobrescrito", + "SSE.Views.HeaderFooterDialog.textTime": "Hora", + "SSE.Views.HeaderFooterDialog.textTitle": "Definições de cabeçalho/rodapé", + "SSE.Views.HeaderFooterDialog.textUnderline": "Sublinhado", + "SSE.Views.HeaderFooterDialog.tipFontName": "Tipo de letra", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Tamanho do tipo de letra", + "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Exibir", + "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Ligação a", + "SSE.Views.HyperlinkSettingsDialog.strRange": "Intervalo", + "SSE.Views.HyperlinkSettingsDialog.strSheet": "Folha", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copiar", + "SSE.Views.HyperlinkSettingsDialog.textDefault": "Intervalo selecionado", + "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Inserir legenda aqui", + "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Introduzir ligação aqui", + "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Inserir dica de ferramenta aqui", + "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Ligação externa", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Obter ligação", + "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Intervalo de dados interno", + "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Nomes definidos", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Selecionar dados", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "Folhas", + "SSE.Views.HyperlinkSettingsDialog.textTipText": "Texto de dica de tela:", + "SSE.Views.HyperlinkSettingsDialog.textTitle": "Definições de hiperligação", + "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Este campo é obrigatório", + "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Este campo está limitado a 2083 caracteres", + "SSE.Views.ImageSettings.textAdvanced": "Mostrar definições avançadas", + "SSE.Views.ImageSettings.textCrop": "Recortar", + "SSE.Views.ImageSettings.textCropFill": "Preencher", + "SSE.Views.ImageSettings.textCropFit": "Ajustar", + "SSE.Views.ImageSettings.textCropToShape": "Recortar com Forma", + "SSE.Views.ImageSettings.textEdit": "Editar", + "SSE.Views.ImageSettings.textEditObject": "Editar objeto", + "SSE.Views.ImageSettings.textFlip": "Virar", + "SSE.Views.ImageSettings.textFromFile": "De um ficheiro", + "SSE.Views.ImageSettings.textFromStorage": "De um armazenamento", + "SSE.Views.ImageSettings.textFromUrl": "De um URL", + "SSE.Views.ImageSettings.textHeight": "Altura", + "SSE.Views.ImageSettings.textHint270": "Rodar 90º à esquerda", + "SSE.Views.ImageSettings.textHint90": "Rodar 90º à direita", + "SSE.Views.ImageSettings.textHintFlipH": "Virar horizontalmente", + "SSE.Views.ImageSettings.textHintFlipV": "Virar verticalmente", + "SSE.Views.ImageSettings.textInsert": "Substituir imagem", + "SSE.Views.ImageSettings.textKeepRatio": "Proporções constantes", + "SSE.Views.ImageSettings.textOriginalSize": "Tamanho real", + "SSE.Views.ImageSettings.textRecentlyUsed": "Utilizado recentemente", + "SSE.Views.ImageSettings.textRotate90": "Rodar 90°", + "SSE.Views.ImageSettings.textRotation": "Rotação", + "SSE.Views.ImageSettings.textSize": "Tamanho", + "SSE.Views.ImageSettings.textWidth": "Largura", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Não mover ou redimensionar com células", + "SSE.Views.ImageSettingsAdvanced.textAlt": "Texto alternativo", + "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Descrição", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", + "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Título", + "SSE.Views.ImageSettingsAdvanced.textAngle": "Ângulo", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "Invertido", + "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalmente", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "Mover mas não redimensionar células", + "SSE.Views.ImageSettingsAdvanced.textRotation": "Rotação", + "SSE.Views.ImageSettingsAdvanced.textSnap": "Alinhamento de células", + "SSE.Views.ImageSettingsAdvanced.textTitle": "Imagem - Definições avançadas", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Mover e redimensionar com células", + "SSE.Views.ImageSettingsAdvanced.textVertically": "Verticalmente", + "SSE.Views.LeftMenu.tipAbout": "Sobre", + "SSE.Views.LeftMenu.tipChat": "Gráfico", + "SSE.Views.LeftMenu.tipComments": "Comentários", + "SSE.Views.LeftMenu.tipFile": "Ficheiro", + "SSE.Views.LeftMenu.tipPlugins": "Plugins", + "SSE.Views.LeftMenu.tipSearch": "Pesquisa", + "SSE.Views.LeftMenu.tipSpellcheck": "Verificação ortográfica", + "SSE.Views.LeftMenu.tipSupport": "Feedback e Suporte", + "SSE.Views.LeftMenu.txtDeveloper": "MODO DE DESENVOLVEDOR", + "SSE.Views.LeftMenu.txtLimit": "Limitar o acesso", + "SSE.Views.LeftMenu.txtTrial": "MODO DE TESTE", + "SSE.Views.LeftMenu.txtTrialDev": "Versão de Avaliação do Modo de Programador", + "SSE.Views.MacroDialog.textMacro": "Nome da Macro", + "SSE.Views.MacroDialog.textTitle": "Atribuir Macro", + "SSE.Views.MainSettingsPrint.okButtonText": "Salvar", + "SSE.Views.MainSettingsPrint.strBottom": "Inferior", + "SSE.Views.MainSettingsPrint.strLandscape": "Paisagem", + "SSE.Views.MainSettingsPrint.strLeft": "Esquerda", + "SSE.Views.MainSettingsPrint.strMargins": "Margens", + "SSE.Views.MainSettingsPrint.strPortrait": "Retrato", + "SSE.Views.MainSettingsPrint.strPrint": "Imprimir", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Imprimir títulos", + "SSE.Views.MainSettingsPrint.strRight": "Direita", + "SSE.Views.MainSettingsPrint.strTop": "Parte superior", + "SSE.Views.MainSettingsPrint.textActualSize": "Tamanho real", + "SSE.Views.MainSettingsPrint.textCustom": "Personalizado", + "SSE.Views.MainSettingsPrint.textCustomOptions": "Opções de Personalização", + "SSE.Views.MainSettingsPrint.textFitCols": "Ajustar colunas a uma página", + "SSE.Views.MainSettingsPrint.textFitPage": "Ajustar folha a uma página", + "SSE.Views.MainSettingsPrint.textFitRows": "Ajustar linhas a uma página", + "SSE.Views.MainSettingsPrint.textPageOrientation": "Orientação da página", + "SSE.Views.MainSettingsPrint.textPageScaling": "A ajustar", + "SSE.Views.MainSettingsPrint.textPageSize": "Tamanho da página", + "SSE.Views.MainSettingsPrint.textPrintGrid": "Imprimir linhas de grade", + "SSE.Views.MainSettingsPrint.textPrintHeadings": "Imprimir cabeçalho de linhas e de colunas", + "SSE.Views.MainSettingsPrint.textRepeat": "Repetir…", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "Repetir colunas à esquerda", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Repetir linhas no topo", + "SSE.Views.MainSettingsPrint.textSettings": "Definições para", + "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Os intervalos nomeados existentes não podem ser criados e os novos também não
    podem ser editados porque alguns deles estão a ser editados.", + "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Defined name", + "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Aviso", + "SSE.Views.NamedRangeEditDlg.strWorkbook": "Workbook", + "SSE.Views.NamedRangeEditDlg.textDataRange": "Intervalo de dados", + "SSE.Views.NamedRangeEditDlg.textExistName": "ERROR! Range with such a name already exists", + "SSE.Views.NamedRangeEditDlg.textInvalidName": "ERROR! Invalid range name", + "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ERROR! Invalid cell range", + "SSE.Views.NamedRangeEditDlg.textIsLocked": "ERRO! Este elemento está a ser editado por outro utilizador.", + "SSE.Views.NamedRangeEditDlg.textName": "Nome", + "SSE.Views.NamedRangeEditDlg.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.", + "SSE.Views.NamedRangeEditDlg.textScope": "Scope", + "SSE.Views.NamedRangeEditDlg.textSelectData": "Selecionar dados", + "SSE.Views.NamedRangeEditDlg.txtEmpty": "Este campo é obrigatório", + "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name", + "SSE.Views.NamedRangeEditDlg.txtTitleNew": "New Name", + "SSE.Views.NamedRangePasteDlg.textNames": "Named Ranges", + "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name", + "SSE.Views.NameManagerDlg.closeButtonText": "Fechar", + "SSE.Views.NameManagerDlg.guestText": "Visitante", + "SSE.Views.NameManagerDlg.lockText": "Bloqueada", + "SSE.Views.NameManagerDlg.textDataRange": "Intervalo de dados", + "SSE.Views.NameManagerDlg.textDelete": "Eliminar", + "SSE.Views.NameManagerDlg.textEdit": "Editar", + "SSE.Views.NameManagerDlg.textEmpty": "Ainda não existem intervalos nomeados.
    Tem que criar, pelo menos, um intervalo nomeado para poder aparecer neste campo.", + "SSE.Views.NameManagerDlg.textFilter": "Filtro", + "SSE.Views.NameManagerDlg.textFilterAll": "Tudo", + "SSE.Views.NameManagerDlg.textFilterDefNames": "Defined names", + "SSE.Views.NameManagerDlg.textFilterSheet": "Names Scoped to Sheet", + "SSE.Views.NameManagerDlg.textFilterTableNames": "Nomes de tabela", + "SSE.Views.NameManagerDlg.textFilterWorkbook": "Names Scoped to Workbook", + "SSE.Views.NameManagerDlg.textNew": "Novo", + "SSE.Views.NameManagerDlg.textnoNames": "No named ranges matching your filter could be found.", + "SSE.Views.NameManagerDlg.textRanges": "Named Ranges", + "SSE.Views.NameManagerDlg.textScope": "Scope", + "SSE.Views.NameManagerDlg.textWorkbook": "Workbook", + "SSE.Views.NameManagerDlg.tipIsLocked": "Este elemento está a ser editado por outro utilizador.", + "SSE.Views.NameManagerDlg.txtTitle": "Name Manager", + "SSE.Views.NameManagerDlg.warnDelete": "Tem a certeza que quer apagar o nome{0}?", + "SSE.Views.PageMarginsDialog.textBottom": "Baixo", + "SSE.Views.PageMarginsDialog.textLeft": "Esquerda", + "SSE.Views.PageMarginsDialog.textRight": "Direita", + "SSE.Views.PageMarginsDialog.textTitle": "Margens", + "SSE.Views.PageMarginsDialog.textTop": "Parte superior", + "SSE.Views.ParagraphSettings.strLineHeight": "Espaçamento de linha", + "SSE.Views.ParagraphSettings.strParagraphSpacing": "Espaçamento", + "SSE.Views.ParagraphSettings.strSpacingAfter": "Depois", + "SSE.Views.ParagraphSettings.strSpacingBefore": "Antes", + "SSE.Views.ParagraphSettings.textAdvanced": "Mostrar definições avançadas", + "SSE.Views.ParagraphSettings.textAt": "Em", + "SSE.Views.ParagraphSettings.textAtLeast": "Pelo menos", + "SSE.Views.ParagraphSettings.textAuto": "Múltiplo", + "SSE.Views.ParagraphSettings.textExact": "Exatamente", + "SSE.Views.ParagraphSettings.txtAutoText": "Automático", + "SSE.Views.ParagraphSettingsAdvanced.noTabs": "Os separadores especificados aparecerão neste campo", + "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Todas maiúsculas", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Tachado duplo", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Recuos", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Esquerda", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Espaçamento entre linhas", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Direita", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Depois", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Antes", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Por", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Fonte", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Avanços e espaçamento", + "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versalete", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaçamento", + "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Taxado", + "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscrito", + "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Sobrescrito", + "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Aba", + "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alinhamento", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiplo", + "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaçamento entre caracteres", + "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Aba padrão", + "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Efeitos", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "Exatamente", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primeira linha", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Suspensão", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Justificado", + "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nenhum)", + "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Remover", + "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remover todos", + "SSE.Views.ParagraphSettingsAdvanced.textSet": "Especificar", + "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centro", + "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Esquerda", + "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posição da aba", + "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Direita", + "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Parágrafo - Definições avançadas", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "igual", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "não termina com", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "Contém", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "não contém", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "entre", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "Não está entre", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "não é igual a", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "é superior a", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "é superior ou igual a", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "é inferior a", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "é inferior ou igual a", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "começa com", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "não começa com", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "termina com", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Mostrar itens para os quais a etiqueta:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Mostrar itens para os quais:", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Usar ? para apresentar qualquer caractere único", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Utilize * para mostrar qualquer série de caracteres", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "e", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filtro de Etiqueta", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Filtro de Valor", + "SSE.Views.PivotGroupDialog.textAuto": "Auto", + "SSE.Views.PivotGroupDialog.textBy": "Por", + "SSE.Views.PivotGroupDialog.textDays": "Dias", + "SSE.Views.PivotGroupDialog.textEnd": "A terminar em", + "SSE.Views.PivotGroupDialog.textError": "Este campo tem de ser um valor numérico", + "SSE.Views.PivotGroupDialog.textGreaterError": "O número final tem de ser maior que o número inicial.", + "SSE.Views.PivotGroupDialog.textHour": "Horas", + "SSE.Views.PivotGroupDialog.textMin": "Minutos", + "SSE.Views.PivotGroupDialog.textMonth": "Meses", + "SSE.Views.PivotGroupDialog.textNumDays": "Número de dias", + "SSE.Views.PivotGroupDialog.textQuart": "Quartos", + "SSE.Views.PivotGroupDialog.textSec": "Segundos", + "SSE.Views.PivotGroupDialog.textStart": "A partir das", + "SSE.Views.PivotGroupDialog.textYear": "Anos", + "SSE.Views.PivotGroupDialog.txtTitle": "A agrupar", + "SSE.Views.PivotSettings.textAdvanced": "Mostrar definições avançadas", + "SSE.Views.PivotSettings.textColumns": "Colunas", + "SSE.Views.PivotSettings.textFields": "Selecionar Campos", + "SSE.Views.PivotSettings.textFilters": "Filtros", + "SSE.Views.PivotSettings.textRows": "Linhas", + "SSE.Views.PivotSettings.textValues": "Valores", + "SSE.Views.PivotSettings.txtAddColumn": "Adicionar a colunas", + "SSE.Views.PivotSettings.txtAddFilter": "Adicionar a Filtros", + "SSE.Views.PivotSettings.txtAddRow": "Adicionar a linhas", + "SSE.Views.PivotSettings.txtAddValues": "Adicionar a valores", + "SSE.Views.PivotSettings.txtFieldSettings": "Definições de campo", + "SSE.Views.PivotSettings.txtMoveBegin": "Mover para o Início", + "SSE.Views.PivotSettings.txtMoveColumn": "Mover para as Colunas", + "SSE.Views.PivotSettings.txtMoveDown": "Mover para baixo", + "SSE.Views.PivotSettings.txtMoveEnd": "Mover para o Fim", + "SSE.Views.PivotSettings.txtMoveFilter": "Mover para os Filtros", + "SSE.Views.PivotSettings.txtMoveRow": "Mover para as Linhas", + "SSE.Views.PivotSettings.txtMoveUp": "Mover para cima", + "SSE.Views.PivotSettings.txtMoveValues": "Mover para Valores", + "SSE.Views.PivotSettings.txtRemove": "Remover Campo", + "SSE.Views.PivotSettingsAdvanced.strLayout": "Nome e disposição", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Texto alternativo", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Descrição", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação do objeto visual, que será lida às pessoas com deficiências visuais ou cognitivas para as ajudar a compreender melhor a informação que existe na imagem, forma automática, gráfico ou tabela.", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Título", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "Intervalo de dados", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "Fonte de dados", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Mostrar campos na área de filtros de relatórios", + "SSE.Views.PivotSettingsAdvanced.textDown": "Abaixo, depois por cima", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Totais Gerais", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "Cabeçalhos de Campos", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Views.PivotSettingsAdvanced.textOver": "De cima para Baixo", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Selecionar dados", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Mostrar para colunas", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Mostrar cabeçalhos dos campos para linhas e colunas", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Mostrar para linhas", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Tabela dinâmica - Definições avançadas", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Reportar campos de filtro do relatório por coluna", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Reportar campos de filtro do relatório por linha", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Este campo é obrigatório", + "SSE.Views.PivotSettingsAdvanced.txtName": "Nome", + "SSE.Views.PivotTable.capBlankRows": "Linha vazias", + "SSE.Views.PivotTable.capGrandTotals": "Totais Gerais", + "SSE.Views.PivotTable.capLayout": "Disposição do relatório", + "SSE.Views.PivotTable.capSubtotals": "Subtotais", + "SSE.Views.PivotTable.mniBottomSubtotals": "Mostrar todos os Subtotais no Fundo do Grupo", + "SSE.Views.PivotTable.mniInsertBlankLine": "Inserir Linha em Branco depois de Cada Item", + "SSE.Views.PivotTable.mniLayoutCompact": "Mostrar em Formato Compacto", + "SSE.Views.PivotTable.mniLayoutNoRepeat": "Não Repetir Todos os Rótulos dos Itens", + "SSE.Views.PivotTable.mniLayoutOutline": "Mostrar em Formato de Destaques", + "SSE.Views.PivotTable.mniLayoutRepeat": "Repetir Todas as Etiquetas de Item", + "SSE.Views.PivotTable.mniLayoutTabular": "Mostrar em Formato Tabular", + "SSE.Views.PivotTable.mniNoSubtotals": "Não Mostrar Subtotais", + "SSE.Views.PivotTable.mniOffTotals": "Ativado para Linhas e Colunas", + "SSE.Views.PivotTable.mniOnColumnsTotals": "Ativado apenas para Colunas", + "SSE.Views.PivotTable.mniOnRowsTotals": "Ativado apenas para Linhas ", + "SSE.Views.PivotTable.mniOnTotals": "Ativado para Linhas e Colunas", + "SSE.Views.PivotTable.mniRemoveBlankLine": "Remover a Linha Branca a Seguir a Cada Item", + "SSE.Views.PivotTable.mniTopSubtotals": "Mostrar todos os Subtotais no Topo do Grupo", + "SSE.Views.PivotTable.textColBanded": "Colunas em bandas", + "SSE.Views.PivotTable.textColHeader": "Cabeçalhos de coluna", + "SSE.Views.PivotTable.textRowBanded": "Linhas em bandas", + "SSE.Views.PivotTable.textRowHeader": "Cabeçalhos das Linhas", + "SSE.Views.PivotTable.tipCreatePivot": "Inserir tabela dinâmica", + "SSE.Views.PivotTable.tipGrandTotals": "Mostrar ou esconder os totais gerais", + "SSE.Views.PivotTable.tipRefresh": "Atualizar informação da origem de dados", + "SSE.Views.PivotTable.tipSelect": "Selecionar toda a tabela dinâmica", + "SSE.Views.PivotTable.tipSubtotals": "Mostrar ou esconder subtotais", + "SSE.Views.PivotTable.txtCreate": "Inserir tabela", + "SSE.Views.PivotTable.txtPivotTable": "Tabela dinâmica", + "SSE.Views.PivotTable.txtRefresh": "Atualizar", + "SSE.Views.PivotTable.txtSelect": "Selecionar", + "SSE.Views.PrintSettings.btnDownload": "Guardar e Descarregar", + "SSE.Views.PrintSettings.btnPrint": "Salvar e Imprimir", + "SSE.Views.PrintSettings.strBottom": "Inferior", + "SSE.Views.PrintSettings.strLandscape": "Paisagem", + "SSE.Views.PrintSettings.strLeft": "Esquerda", + "SSE.Views.PrintSettings.strMargins": "Margens", + "SSE.Views.PrintSettings.strPortrait": "Retrato", + "SSE.Views.PrintSettings.strPrint": "Imprimir", + "SSE.Views.PrintSettings.strPrintTitles": "Imprimir títulos", + "SSE.Views.PrintSettings.strRight": "Direita", + "SSE.Views.PrintSettings.strShow": "Mostrar", + "SSE.Views.PrintSettings.strTop": "Parte superior", + "SSE.Views.PrintSettings.textActualSize": "Tamanho real", + "SSE.Views.PrintSettings.textAllSheets": "Todas as folhas", + "SSE.Views.PrintSettings.textCurrentSheet": "Folha atual", + "SSE.Views.PrintSettings.textCustom": "Personalizado", + "SSE.Views.PrintSettings.textCustomOptions": "Opções de Personalização", + "SSE.Views.PrintSettings.textFitCols": "Ajustar colunas a uma página", + "SSE.Views.PrintSettings.textFitPage": "Ajustar folha a uma página", + "SSE.Views.PrintSettings.textFitRows": "Ajustar linhas a uma página", + "SSE.Views.PrintSettings.textHideDetails": "Ocultar detalhes", + "SSE.Views.PrintSettings.textIgnore": "Ignorar Área de Impressão", + "SSE.Views.PrintSettings.textLayout": "Disposição", + "SSE.Views.PrintSettings.textPageOrientation": "Orientação da página", + "SSE.Views.PrintSettings.textPageScaling": "A ajustar", + "SSE.Views.PrintSettings.textPageSize": "Tamanho da página", + "SSE.Views.PrintSettings.textPrintGrid": "Imprimir linhas de grade", + "SSE.Views.PrintSettings.textPrintHeadings": "Imprimir cabeçalho de linhas e de colunas", + "SSE.Views.PrintSettings.textPrintRange": "Imprimir intervalo", + "SSE.Views.PrintSettings.textRange": "Intervalo", + "SSE.Views.PrintSettings.textRepeat": "Repetir…", + "SSE.Views.PrintSettings.textRepeatLeft": "Repetir colunas à esquerda", + "SSE.Views.PrintSettings.textRepeatTop": "Repetir linhas no topo", + "SSE.Views.PrintSettings.textSelection": "Seleção", + "SSE.Views.PrintSettings.textSettings": "Definições de folha", + "SSE.Views.PrintSettings.textShowDetails": "Exibir detalhes", + "SSE.Views.PrintSettings.textShowGrid": "Mostrar Linhas de Grelha", + "SSE.Views.PrintSettings.textShowHeadings": "Mostrar cabeçalho de linhas e de colunas", + "SSE.Views.PrintSettings.textTitle": "Definições de impressão", + "SSE.Views.PrintSettings.textTitlePDF": "Definições de PDF", + "SSE.Views.PrintTitlesDialog.textFirstCol": "Primeira coluna", + "SSE.Views.PrintTitlesDialog.textFirstRow": "Primeira linha", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Colunas fixadas", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Linhas fixadas", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Views.PrintTitlesDialog.textLeft": "Repetir colunas à esquerda", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "Não repetir", + "SSE.Views.PrintTitlesDialog.textRepeat": "Repetir…", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Selecionar intervalo", + "SSE.Views.PrintTitlesDialog.textTitle": "Imprimir títulos", + "SSE.Views.PrintTitlesDialog.textTop": "Repetir linhas no topo", + "SSE.Views.PrintWithPreview.txtActualSize": "Tamanho real", + "SSE.Views.PrintWithPreview.txtAllSheets": "Todas as folhas", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Aplicar a todas as folhas", + "SSE.Views.PrintWithPreview.txtBottom": "Baixo", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Folha atual", + "SSE.Views.PrintWithPreview.txtCustom": "Personalizado", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Opções de Personalização", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Não há nada para imprimir porque a tabela está vazia.", + "SSE.Views.PrintWithPreview.txtFitCols": "Ajustar colunas a uma página", + "SSE.Views.PrintWithPreview.txtFitPage": "Ajustar folha a uma página", + "SSE.Views.PrintWithPreview.txtFitRows": "Ajustar linhas a uma página", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Linhas de Grelha e cabeçalhos", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Definições de cabeçalho/rodapé", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignorar Área de Impressão", + "SSE.Views.PrintWithPreview.txtLandscape": "Paisagem", + "SSE.Views.PrintWithPreview.txtLeft": "Esquerda", + "SSE.Views.PrintWithPreview.txtMargins": "Margens", + "SSE.Views.PrintWithPreview.txtOf": "de {0}", + "SSE.Views.PrintWithPreview.txtPage": "Página", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Número da página inválido", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientação da página", + "SSE.Views.PrintWithPreview.txtPageSize": "Tamanho da página", + "SSE.Views.PrintWithPreview.txtPortrait": "Retrato", + "SSE.Views.PrintWithPreview.txtPrint": "Imprimir", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Imprimir linhas de grade", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Imprimir cabeçalho de linhas e de colunas", + "SSE.Views.PrintWithPreview.txtPrintRange": "Imprimir intervalo", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Imprimir títulos", + "SSE.Views.PrintWithPreview.txtRepeat": "Repetir…", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Repetir colunas à esquerda", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Repetir linhas no topo", + "SSE.Views.PrintWithPreview.txtRight": "Direita", + "SSE.Views.PrintWithPreview.txtSave": "Salvar", + "SSE.Views.PrintWithPreview.txtScaling": "A ajustar", + "SSE.Views.PrintWithPreview.txtSelection": "Seleção", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Definições da folha de cálculo", + "SSE.Views.PrintWithPreview.txtSheet": "Folha: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Parte superior", + "SSE.Views.ProtectDialog.textExistName": "ERRO! Um intervalo com esse título já existe", + "SSE.Views.ProtectDialog.textInvalidName": "O título do intervalo tem de começar com uma letra e só pode conter letras, números, e espaços.", + "SSE.Views.ProtectDialog.textInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Views.ProtectDialog.textSelectData": "Selecionar dados", + "SSE.Views.ProtectDialog.txtAllow": "Permitir que todos os utilizadores utilizam esta folha de cálculo para", + "SSE.Views.ProtectDialog.txtAutofilter": "Utilizar filtro automático", + "SSE.Views.ProtectDialog.txtDelCols": "Apagar colunas", + "SSE.Views.ProtectDialog.txtDelRows": "Apagar linhas", + "SSE.Views.ProtectDialog.txtEmpty": "Este campo é obrigatório", + "SSE.Views.ProtectDialog.txtFormatCells": "Formatar células", + "SSE.Views.ProtectDialog.txtFormatCols": "Formatar colunas", + "SSE.Views.ProtectDialog.txtFormatRows": "Formatar linhas", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "A palavra-passe de confirmação não é idêntica", + "SSE.Views.ProtectDialog.txtInsCols": "Inserir colunas", + "SSE.Views.ProtectDialog.txtInsHyper": "Inserir hiperligação", + "SSE.Views.ProtectDialog.txtInsRows": "Inserir Linhas", + "SSE.Views.ProtectDialog.txtObjs": "Editar objetos", + "SSE.Views.ProtectDialog.txtOptional": "Opcional", + "SSE.Views.ProtectDialog.txtPassword": "Senha", + "SSE.Views.ProtectDialog.txtPivot": "Usar Tabela e Gráfico Dinâmico", + "SSE.Views.ProtectDialog.txtProtect": "Proteger", + "SSE.Views.ProtectDialog.txtRange": "Intervalo", + "SSE.Views.ProtectDialog.txtRangeName": "Título", + "SSE.Views.ProtectDialog.txtRepeat": "Repetição de palavra-passe", + "SSE.Views.ProtectDialog.txtScen": "Editar cenários", + "SSE.Views.ProtectDialog.txtSelLocked": "Selecionar células bloqueadas", + "SSE.Views.ProtectDialog.txtSelUnLocked": "Selecionar células desbloqueadas", + "SSE.Views.ProtectDialog.txtSheetDescription": "Impeça alterações indesejadas feitas por outros ao limitar a permissão para editar.", + "SSE.Views.ProtectDialog.txtSheetTitle": "Proteger folha", + "SSE.Views.ProtectDialog.txtSort": "Classificar", + "SSE.Views.ProtectDialog.txtWarning": "Aviso: Se perder ou esquecer a palavra-passe, não será possível recuperá-la. Guarde-a num local seguro.", + "SSE.Views.ProtectDialog.txtWBDescription": "Para impedir que outros utilizadores vejam folhas de cálculo ocultas, adicionar, mover, apagar, ou esconder folhas de trabalho e renomear folhas de cálculo, pode proteger a estrutura da sua folha de cálculo com uma palavra-passe.", + "SSE.Views.ProtectDialog.txtWBTitle": "Proteger a Estrutura do Livro", + "SSE.Views.ProtectRangesDlg.guestText": "Visitante", + "SSE.Views.ProtectRangesDlg.lockText": "Bloqueada", + "SSE.Views.ProtectRangesDlg.textDelete": "Eliminar", + "SSE.Views.ProtectRangesDlg.textEdit": "Editar", + "SSE.Views.ProtectRangesDlg.textEmpty": "Não é permitido editar nenhum intervalo.", + "SSE.Views.ProtectRangesDlg.textNew": "Novo", + "SSE.Views.ProtectRangesDlg.textProtect": "Proteger folha", + "SSE.Views.ProtectRangesDlg.textPwd": "Senha", + "SSE.Views.ProtectRangesDlg.textRange": "Intervalo", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "Os intervalos são desbloqueados através de uma palavra-passe quando a folha de cálculo está protegida (isto apenas funciona para células bloqueadas)", + "SSE.Views.ProtectRangesDlg.textTitle": "Título", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "Este elemento está sendo editado por outro usuário.", + "SSE.Views.ProtectRangesDlg.txtEditRange": "Editar Intervalo", + "SSE.Views.ProtectRangesDlg.txtNewRange": "Novo Intervalo", + "SSE.Views.ProtectRangesDlg.txtNo": "Não", + "SSE.Views.ProtectRangesDlg.txtTitle": "Permitir que os Utilizadores Editem Intervalos", + "SSE.Views.ProtectRangesDlg.txtYes": "Sim", + "SSE.Views.ProtectRangesDlg.warnDelete": "Tem a certeza que quer apagar o nome{0}?", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Colunas", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "Para eliminar valores duplicados, selecione uma ou mais colunas que contenham duplicados.", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Os meus dados têm cabeçalhos", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Selecionar todos", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Remover duplicados", + "SSE.Views.RightMenu.txtCellSettings": "Definições de célula", + "SSE.Views.RightMenu.txtChartSettings": "Definições de gráfico", + "SSE.Views.RightMenu.txtImageSettings": "Definições de imagem", + "SSE.Views.RightMenu.txtParagraphSettings": "Configurações do parágrafo", + "SSE.Views.RightMenu.txtPivotSettings": "Definições de tabela dinâmica", + "SSE.Views.RightMenu.txtSettings": "Definições comuns", + "SSE.Views.RightMenu.txtShapeSettings": "Definições de forma", + "SSE.Views.RightMenu.txtSignatureSettings": "Definições de assinatura", + "SSE.Views.RightMenu.txtSlicerSettings": "Definições de 'slicer'", + "SSE.Views.RightMenu.txtSparklineSettings": "Definições avançadas de 'sparkline'", + "SSE.Views.RightMenu.txtTableSettings": "Definições de tabela", + "SSE.Views.RightMenu.txtTextArtSettings": "Definições de texto artístico", + "SSE.Views.ScaleDialog.textAuto": "Automático", + "SSE.Views.ScaleDialog.textError": "O valor introduzido não está correto.", + "SSE.Views.ScaleDialog.textFewPages": "páginas", + "SSE.Views.ScaleDialog.textFitTo": "Ajustar a", + "SSE.Views.ScaleDialog.textHeight": "Altura", + "SSE.Views.ScaleDialog.textManyPages": "páginas", + "SSE.Views.ScaleDialog.textOnePage": "página", + "SSE.Views.ScaleDialog.textScaleTo": "Ajustar Para", + "SSE.Views.ScaleDialog.textTitle": "Definições de escala", + "SSE.Views.ScaleDialog.textWidth": "Largura", + "SSE.Views.SetValueDialog.txtMaxText": "O valor máximo para este campo é {0}", + "SSE.Views.SetValueDialog.txtMinText": "O valor mínimo para este campo é {0}", + "SSE.Views.ShapeSettings.strBackground": "Cor de fundo", + "SSE.Views.ShapeSettings.strChange": "Alterar forma automática", + "SSE.Views.ShapeSettings.strColor": "Cor", + "SSE.Views.ShapeSettings.strFill": "Preencher", + "SSE.Views.ShapeSettings.strForeground": "Cor principal", + "SSE.Views.ShapeSettings.strPattern": "Padrão", + "SSE.Views.ShapeSettings.strShadow": "Mostrar sombra", + "SSE.Views.ShapeSettings.strSize": "Tamanho", + "SSE.Views.ShapeSettings.strStroke": "Linha", + "SSE.Views.ShapeSettings.strTransparency": "Opacidade", + "SSE.Views.ShapeSettings.strType": "Tipo", + "SSE.Views.ShapeSettings.textAdvanced": "Mostrar definições avançadas", + "SSE.Views.ShapeSettings.textAngle": "Ângulo", + "SSE.Views.ShapeSettings.textBorderSizeErr": "O valor inserido não está correto.
    Introduza um valor entre 0 pt e 1584 pt.", + "SSE.Views.ShapeSettings.textColor": "Cor de preenchimento", + "SSE.Views.ShapeSettings.textDirection": "Direção", + "SSE.Views.ShapeSettings.textEmptyPattern": "Sem padrão", + "SSE.Views.ShapeSettings.textFlip": "Virar", + "SSE.Views.ShapeSettings.textFromFile": "De um ficheiro", + "SSE.Views.ShapeSettings.textFromStorage": "De um armazenamento", + "SSE.Views.ShapeSettings.textFromUrl": "De um URL", + "SSE.Views.ShapeSettings.textGradient": "Ponto de gradiente", + "SSE.Views.ShapeSettings.textGradientFill": "Preenchimento gradiente", + "SSE.Views.ShapeSettings.textHint270": "Rodar 90º à esquerda", + "SSE.Views.ShapeSettings.textHint90": "Rodar 90º à direita", + "SSE.Views.ShapeSettings.textHintFlipH": "Virar horizontalmente", + "SSE.Views.ShapeSettings.textHintFlipV": "Virar verticalmente", + "SSE.Views.ShapeSettings.textImageTexture": "Imagem ou Textura", + "SSE.Views.ShapeSettings.textLinear": "Linear", + "SSE.Views.ShapeSettings.textNoFill": "Sem preenchimento", + "SSE.Views.ShapeSettings.textOriginalSize": "Tamanho original", + "SSE.Views.ShapeSettings.textPatternFill": "Padrão", + "SSE.Views.ShapeSettings.textPosition": "Posição", + "SSE.Views.ShapeSettings.textRadial": "Radial", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Utilizado recentemente", + "SSE.Views.ShapeSettings.textRotate90": "Rodar 90°", + "SSE.Views.ShapeSettings.textRotation": "Rotação", + "SSE.Views.ShapeSettings.textSelectImage": "Selecionar imagem", + "SSE.Views.ShapeSettings.textSelectTexture": "Selecionar", + "SSE.Views.ShapeSettings.textStretch": "Alongar", + "SSE.Views.ShapeSettings.textStyle": "Estilo", + "SSE.Views.ShapeSettings.textTexture": "De uma textura", + "SSE.Views.ShapeSettings.textTile": "Lado a lado", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "Adicionar ponto de gradiente", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Remover Ponto de Gradiente", + "SSE.Views.ShapeSettings.txtBrownPaper": "Papel pardo", + "SSE.Views.ShapeSettings.txtCanvas": "Canvas", + "SSE.Views.ShapeSettings.txtCarton": "Papelão", + "SSE.Views.ShapeSettings.txtDarkFabric": "Tecido escuro", + "SSE.Views.ShapeSettings.txtGrain": "Granulação", + "SSE.Views.ShapeSettings.txtGranite": "Granito", + "SSE.Views.ShapeSettings.txtGreyPaper": "Papel cinza", + "SSE.Views.ShapeSettings.txtKnit": "Encontro", + "SSE.Views.ShapeSettings.txtLeather": "Couro", + "SSE.Views.ShapeSettings.txtNoBorders": "Sem linha", + "SSE.Views.ShapeSettings.txtPapyrus": "Papiro", + "SSE.Views.ShapeSettings.txtWood": "Madeira", + "SSE.Views.ShapeSettingsAdvanced.strColumns": "Colunas", + "SSE.Views.ShapeSettingsAdvanced.strMargins": "Preenchimento de texto", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Não mover ou redimensionar com células", + "SSE.Views.ShapeSettingsAdvanced.textAlt": "Texto alternativo", + "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Descrição", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação visual do objeto, que será lida para as pessoas com deficiências visuais ou cognitivas para ajudá-las a entender melhor que informação, forma automática, gráfico ou tabela existe na imagem.", + "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Título", + "SSE.Views.ShapeSettingsAdvanced.textAngle": "Ângulo", + "SSE.Views.ShapeSettingsAdvanced.textArrows": "Setas", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "Ajuste automático", + "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Tamanho inicial", + "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estilo inicial", + "SSE.Views.ShapeSettingsAdvanced.textBevel": "Bisel", + "SSE.Views.ShapeSettingsAdvanced.textBottom": "Inferior", + "SSE.Views.ShapeSettingsAdvanced.textCapType": "Tipo de letra", + "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Número de colunas", + "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Tamanho final", + "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Estilo final", + "SSE.Views.ShapeSettingsAdvanced.textFlat": "Plano", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Invertido", + "SSE.Views.ShapeSettingsAdvanced.textHeight": "Altura", + "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalmente", + "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Tipo de junção", + "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporções constantes", + "SSE.Views.ShapeSettingsAdvanced.textLeft": "Esquerda", + "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Estilo de linha", + "SSE.Views.ShapeSettingsAdvanced.textMiter": "Malhete", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Mover mas não redimensionar células", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Permitir que o texto ultrapasse os limites da forma", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Redimensionar forma para se ajustar ao texto", + "SSE.Views.ShapeSettingsAdvanced.textRight": "Direita", + "SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotação", + "SSE.Views.ShapeSettingsAdvanced.textRound": "Rodada", + "SSE.Views.ShapeSettingsAdvanced.textSize": "Tamanho", + "SSE.Views.ShapeSettingsAdvanced.textSnap": "Alinhamento de células", + "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Espaçamento entre colunas", + "SSE.Views.ShapeSettingsAdvanced.textSquare": "Quadrado", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Caixa de texto", + "SSE.Views.ShapeSettingsAdvanced.textTitle": "Forma - Definições avançadas", + "SSE.Views.ShapeSettingsAdvanced.textTop": "Parte superior", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Mover e redimensionar com células", + "SSE.Views.ShapeSettingsAdvanced.textVertically": "Verticalmente", + "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Pesos e Setas", + "SSE.Views.ShapeSettingsAdvanced.textWidth": "Largura", + "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Aviso", + "SSE.Views.SignatureSettings.strDelete": "Remover assinatura", + "SSE.Views.SignatureSettings.strDetails": "Detalhes da assinatura", + "SSE.Views.SignatureSettings.strInvalid": "Assinaturas inválidas", + "SSE.Views.SignatureSettings.strRequested": "Assinaturas solicitadas", + "SSE.Views.SignatureSettings.strSetup": "Definições de Assinatura", + "SSE.Views.SignatureSettings.strSign": "Assinar", + "SSE.Views.SignatureSettings.strSignature": "Assinatura", + "SSE.Views.SignatureSettings.strSigner": "Assinante", + "SSE.Views.SignatureSettings.strValid": "Assinaturas válidas", + "SSE.Views.SignatureSettings.txtContinueEditing": "Editar mesmo assim", + "SSE.Views.SignatureSettings.txtEditWarning": "Se editar este documento, remove as assinaturas.
    Tem a certeza de que deseja continuar?", + "SSE.Views.SignatureSettings.txtRemoveWarning": "Quer remover esta assinatura?
    Isto não pode ser anulado.", + "SSE.Views.SignatureSettings.txtRequestedSignatures": "Esta folha de cálculo precisa de ser assinada.", + "SSE.Views.SignatureSettings.txtSigned": "Assinaturas adicionadas ao documento. Esta folha de cálculo não pode ser editada.", + "SSE.Views.SignatureSettings.txtSignedInvalid": "Algumas das assinaturas digitais são inválidas ou não puderam ser verificadas. Esta folha de cálculo documento não pode ser editada.", + "SSE.Views.SlicerAddDialog.textColumns": "Colunas", + "SSE.Views.SlicerAddDialog.txtTitle": "Inserir segmentaçãoes de dados", + "SSE.Views.SlicerSettings.strHideNoData": "Ocultar itens sem dados", + "SSE.Views.SlicerSettings.strIndNoData": "Indicar visualmente itens sem dados", + "SSE.Views.SlicerSettings.strShowDel": "Mostrar itens eliminados da origem de dados", + "SSE.Views.SlicerSettings.strShowNoData": "Mostrar itens sem dados no fim", + "SSE.Views.SlicerSettings.strSorting": "A Ordenar e a Filtrar", + "SSE.Views.SlicerSettings.textAdvanced": "Mostrar definições avançadas", + "SSE.Views.SlicerSettings.textAsc": "Ascendente", + "SSE.Views.SlicerSettings.textAZ": "A -> Z", + "SSE.Views.SlicerSettings.textButtons": "Botões", + "SSE.Views.SlicerSettings.textColumns": "Colunas", + "SSE.Views.SlicerSettings.textDesc": "Decrescente", + "SSE.Views.SlicerSettings.textHeight": "Altura", + "SSE.Views.SlicerSettings.textHor": "Horizontal", + "SSE.Views.SlicerSettings.textKeepRatio": "Proporções constantes", + "SSE.Views.SlicerSettings.textLargeSmall": "Do maior para o mais pequeno", + "SSE.Views.SlicerSettings.textLock": "Desativar redimensionamento ou movimentações", + "SSE.Views.SlicerSettings.textNewOld": "Do mais recente para o mais antigo", + "SSE.Views.SlicerSettings.textOldNew": "Do mais antigo para o mais recente", + "SSE.Views.SlicerSettings.textPosition": "Posição", + "SSE.Views.SlicerSettings.textSize": "Tamanho", + "SSE.Views.SlicerSettings.textSmallLarge": "Do menor para o maior", + "SSE.Views.SlicerSettings.textStyle": "Estilo", + "SSE.Views.SlicerSettings.textVert": "Vertical", + "SSE.Views.SlicerSettings.textWidth": "Largura", + "SSE.Views.SlicerSettings.textZA": "Z -> A ", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Botões", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Colunas", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Altura", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Ocultar itens sem dados", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Indicar visualmente itens sem dados", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Referências", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Mostrar itens eliminados da origem de dados", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Mostrar cabeçalho", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Mostrar itens sem dados no fim", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Tamanho", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "A Ordenar e a Filtrar", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Estilo", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Estilo e tamanho", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Largura", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Não mover ou redimensionar com células", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Texto alternativo", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Descrição", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação do objeto visual, que será lida às pessoas com deficiências visuais ou cognitivas para as ajudar a compreender melhor a informação que existe na imagem, forma automática, gráfico ou tabela.", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Título", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Ascendente", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A -> Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "Decrescente", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Nome para usar nas fórmulas", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "Cabeçalho", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Proporções constantes", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "Do maior para o mais pequeno", + "SSE.Views.SlicerSettingsAdvanced.textName": "Nome", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "Do mais recente para o mais antigo", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "Do mais antigo para o mais recente", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Mover mas não redimensionar células", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "Do menor para o maior", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "Alinhamento de células", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Classificar", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Nome da origem", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Sclicer - Definições avançadas", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Mover e redimensionar com células", + "SSE.Views.SlicerSettingsAdvanced.textZA": "Z -> A ", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Este campo é obrigatório", + "SSE.Views.SortDialog.errorEmpty": "Todos os critérios de ordenação têm de ter uma coluna ou linha especificada.", + "SSE.Views.SortDialog.errorMoreOneCol": "Selecionou mais do que uma coluna.", + "SSE.Views.SortDialog.errorMoreOneRow": "Selecionou mais do que uma linha.", + "SSE.Views.SortDialog.errorNotOriginalCol": "A coluna que selecionou não está no intervalo que selecionou originalmente.", + "SSE.Views.SortDialog.errorNotOriginalRow": "A linha selecionada não se encontra no intervalo original selecionado.", + "SSE.Views.SortDialog.errorSameColumnColor": "%1 está a ser ordenada pela mesma cor mais do que uma vez.
    Elimine o critério duplicado e tente novamente.", + "SSE.Views.SortDialog.errorSameColumnValue": "%1 está a ser ordenado mais do que uma vez por valores.
    Elimine os critérios duplicados e tente novamente.", + "SSE.Views.SortDialog.textAdd": "Adicionar nível", + "SSE.Views.SortDialog.textAsc": "Ascendente", + "SSE.Views.SortDialog.textAuto": "Automático", + "SSE.Views.SortDialog.textAZ": "A -> Z", + "SSE.Views.SortDialog.textBelow": "Abaixo", + "SSE.Views.SortDialog.textCellColor": "Cor da célula", + "SSE.Views.SortDialog.textColumn": "Coluna", + "SSE.Views.SortDialog.textCopy": "Copiar nível", + "SSE.Views.SortDialog.textDelete": "Apagar nível", + "SSE.Views.SortDialog.textDesc": "Decrescente", + "SSE.Views.SortDialog.textDown": "Mover para nível mais baixo", + "SSE.Views.SortDialog.textFontColor": "Cor do tipo de letra", + "SSE.Views.SortDialog.textLeft": "Esquerda", + "SSE.Views.SortDialog.textMoreCols": "(Mais colunas...)", + "SSE.Views.SortDialog.textMoreRows": "(Mais linhas...)", + "SSE.Views.SortDialog.textNone": "Nenhum", + "SSE.Views.SortDialog.textOptions": "Opções", + "SSE.Views.SortDialog.textOrder": "Ordenar", + "SSE.Views.SortDialog.textRight": "Direita", + "SSE.Views.SortDialog.textRow": "Linha", + "SSE.Views.SortDialog.textSort": "Ordenar ligado", + "SSE.Views.SortDialog.textSortBy": "Ordenar por", + "SSE.Views.SortDialog.textThenBy": "Depois por", + "SSE.Views.SortDialog.textTop": "Parte superior", + "SSE.Views.SortDialog.textUp": "Mover para nível mais alto", + "SSE.Views.SortDialog.textValues": "Valores", + "SSE.Views.SortDialog.textZA": "Z -> A ", + "SSE.Views.SortDialog.txtInvalidRange": "Intervalo de células inválido.", + "SSE.Views.SortDialog.txtTitle": "Classificar", + "SSE.Views.SortFilterDialog.textAsc": "Ascendente (A->Z) por", + "SSE.Views.SortFilterDialog.textDesc": "Descendente (Z a A) por", + "SSE.Views.SortFilterDialog.txtTitle": "Classificar", + "SSE.Views.SortOptionsDialog.textCase": "Diferenciar maiúsculas de minúsculas", + "SSE.Views.SortOptionsDialog.textHeaders": "Os meus dados têm cabeçalhos", + "SSE.Views.SortOptionsDialog.textLeftRight": "Ordenar da esquerda para a direita", + "SSE.Views.SortOptionsDialog.textOrientation": "Orientação", + "SSE.Views.SortOptionsDialog.textTitle": "Opções de Ordenação", + "SSE.Views.SortOptionsDialog.textTopBottom": "Ordenar de cima para baixo", + "SSE.Views.SpecialPasteDialog.textAdd": "Adicionar", + "SSE.Views.SpecialPasteDialog.textAll": "Tudo", + "SSE.Views.SpecialPasteDialog.textBlanks": "Ignorar células em branco", + "SSE.Views.SpecialPasteDialog.textColWidth": "Larguras da coluna", + "SSE.Views.SpecialPasteDialog.textComments": "Comentários", + "SSE.Views.SpecialPasteDialog.textDiv": "Dividir", + "SSE.Views.SpecialPasteDialog.textFFormat": "Fórmulas e Formatação", + "SSE.Views.SpecialPasteDialog.textFNFormat": "Formulas e Formatos Numéricos", + "SSE.Views.SpecialPasteDialog.textFormats": "Formatos", + "SSE.Views.SpecialPasteDialog.textFormulas": "Fórmulas", + "SSE.Views.SpecialPasteDialog.textFWidth": "Largura das Fórmulas e Colunas", + "SSE.Views.SpecialPasteDialog.textMult": "Multiplicar", + "SSE.Views.SpecialPasteDialog.textNone": "Nenhum", + "SSE.Views.SpecialPasteDialog.textOperation": "Operação", + "SSE.Views.SpecialPasteDialog.textPaste": "Colar", + "SSE.Views.SpecialPasteDialog.textSub": "Subtrair", + "SSE.Views.SpecialPasteDialog.textTitle": "Colar especial", + "SSE.Views.SpecialPasteDialog.textTranspose": "Transpor", + "SSE.Views.SpecialPasteDialog.textValues": "Valores", + "SSE.Views.SpecialPasteDialog.textVFormat": "Valores e formatação", + "SSE.Views.SpecialPasteDialog.textVNFormat": "Valores e formatos numéricos", + "SSE.Views.SpecialPasteDialog.textWBorders": "Tudo exceto contornos", + "SSE.Views.Spellcheck.noSuggestions": "Sem sugestões ortográficas", + "SSE.Views.Spellcheck.textChange": "Alterar", + "SSE.Views.Spellcheck.textChangeAll": "Alterar Todos", + "SSE.Views.Spellcheck.textIgnore": "Ignorar", + "SSE.Views.Spellcheck.textIgnoreAll": "Ignorar tudo", + "SSE.Views.Spellcheck.txtAddToDictionary": "Adicionar ao dicionário", + "SSE.Views.Spellcheck.txtComplete": "A verificação ortográfica foi concluída", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "Idioma do Dicionário", + "SSE.Views.Spellcheck.txtNextTip": "Ir para a próxima palavra", + "SSE.Views.Spellcheck.txtSpelling": "Ortografia", + "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copiar para o final)", + "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Mover para fim)", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Copiar antes da folha", + "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Mover antes da folha", + "SSE.Views.Statusbar.filteredRecordsText": "Filtrados {0} de {1} registos", + "SSE.Views.Statusbar.filteredText": "Modo de filtro", + "SSE.Views.Statusbar.itemAverage": "Média", + "SSE.Views.Statusbar.itemCopy": "Copiar", + "SSE.Views.Statusbar.itemCount": "Contagem", + "SSE.Views.Statusbar.itemDelete": "Excluir", + "SSE.Views.Statusbar.itemHidden": "Oculto", + "SSE.Views.Statusbar.itemHide": "Ocultar", + "SSE.Views.Statusbar.itemInsert": "Inserir", + "SSE.Views.Statusbar.itemMaximum": "Máximo", + "SSE.Views.Statusbar.itemMinimum": "Mínimo", + "SSE.Views.Statusbar.itemMove": "Mover", + "SSE.Views.Statusbar.itemProtect": "Proteger", + "SSE.Views.Statusbar.itemRename": "Renomear", + "SSE.Views.Statusbar.itemStatus": "A guardar estado", + "SSE.Views.Statusbar.itemSum": "Soma", + "SSE.Views.Statusbar.itemTabColor": "Cor do separador", + "SSE.Views.Statusbar.itemUnProtect": "Desproteger", + "SSE.Views.Statusbar.RenameDialog.errNameExists": "Planilha com este nome já existe.", + "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Um nome de folha não pode conter os seguintes caracteres: \\/*?[]:", + "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nome da folha", + "SSE.Views.Statusbar.selectAllSheets": "Selecionar Todas as Folhas de Cálculo", + "SSE.Views.Statusbar.sheetIndexText": "Folha {0} de {1}", + "SSE.Views.Statusbar.textAverage": "Média", + "SSE.Views.Statusbar.textCount": "Contar", + "SSE.Views.Statusbar.textMax": "Máx", + "SSE.Views.Statusbar.textMin": "Min.", + "SSE.Views.Statusbar.textNewColor": "Adicionar nova cor personalizada", + "SSE.Views.Statusbar.textNoColor": "Sem cor", + "SSE.Views.Statusbar.textSum": "SOMA", + "SSE.Views.Statusbar.tipAddTab": "Adicionar planilha", + "SSE.Views.Statusbar.tipFirst": "Ir para a primeira folha", + "SSE.Views.Statusbar.tipLast": "Ir para a última folha", + "SSE.Views.Statusbar.tipListOfSheets": "Lista de folhas", + "SSE.Views.Statusbar.tipNext": "Ir para a folha à direita", + "SSE.Views.Statusbar.tipPrev": "Ir para a folha à esquerda", + "SSE.Views.Statusbar.tipZoomFactor": "Ampliação", + "SSE.Views.Statusbar.tipZoomIn": "Ampliar", + "SSE.Views.Statusbar.tipZoomOut": "Reduzir", + "SSE.Views.Statusbar.ungroupSheets": "Desagrupar Folhas", + "SSE.Views.Statusbar.zoomText": "Zoom {0}%", + "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Não foi possível concluir a operação para o intervalo de células selecionado.
    Selecione um intervalo de dados diferente e tente novamente.", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Não foi possível completar a operação para o intervalo de células selecionado.
    Selecionou um intervalo de uma forma que a primeira linha da tabela estava na mesma linha
    então a tabela que criou sobrepôs-se à atual.", + "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Não foi possível completar a operação para o intervalo de células selecionado.
    Selecione um intervalo que não inclua outras tabelas.", + "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Intervalo de fórmulas multi-célula não são permitidas em tabelas.", + "SSE.Views.TableOptionsDialog.txtEmpty": "Este campo é obrigatório", + "SSE.Views.TableOptionsDialog.txtFormat": "Criar tabela", + "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERRO! Intervalo de células inválido", + "SSE.Views.TableOptionsDialog.txtNote": "Os cabeçalhos devem permanecer na mesma linha, e o intervalo da tabela resultante deve sobrepor-se ao intervalo da tabela original.", + "SSE.Views.TableOptionsDialog.txtTitle": "Titulo", + "SSE.Views.TableSettings.deleteColumnText": "Eliminar coluna", + "SSE.Views.TableSettings.deleteRowText": "Excluir linha", + "SSE.Views.TableSettings.deleteTableText": "Eliminar tabela", + "SSE.Views.TableSettings.insertColumnLeftText": "Inserir coluna à esquerda", + "SSE.Views.TableSettings.insertColumnRightText": "Inserir coluna à direita", + "SSE.Views.TableSettings.insertRowAboveText": "Inserir linha acima", + "SSE.Views.TableSettings.insertRowBelowText": "Inserir linha abaixo", + "SSE.Views.TableSettings.notcriticalErrorTitle": "Aviso", + "SSE.Views.TableSettings.selectColumnText": "Selecionar Dados das Colunas", + "SSE.Views.TableSettings.selectDataText": "Selecionar Dados das Colunas", + "SSE.Views.TableSettings.selectRowText": "Selecionar linha", + "SSE.Views.TableSettings.selectTableText": "Selecionar tabela", + "SSE.Views.TableSettings.textActions": "Ações de tabela", + "SSE.Views.TableSettings.textAdvanced": "Mostrar definições avançadas", + "SSE.Views.TableSettings.textBanded": "Bandas", + "SSE.Views.TableSettings.textColumns": "Colunas", + "SSE.Views.TableSettings.textConvertRange": "Converter para intervalo", + "SSE.Views.TableSettings.textEdit": "Linhas e Colunas", + "SSE.Views.TableSettings.textEmptyTemplate": "Sem modelos", + "SSE.Views.TableSettings.textExistName": "ERRO! Já existe um intervalo com este nome", + "SSE.Views.TableSettings.textFilter": "Botão Filtro", + "SSE.Views.TableSettings.textFirst": "Primeiro", + "SSE.Views.TableSettings.textHeader": "Cabeçalho", + "SSE.Views.TableSettings.textInvalidName": "ERRO! Nome inválido", + "SSE.Views.TableSettings.textIsLocked": "Este elemento está a ser editado por outro utilizador.", + "SSE.Views.TableSettings.textLast": "Última", + "SSE.Views.TableSettings.textLongOperation": "Operação longa", + "SSE.Views.TableSettings.textPivot": "Inserir tabela dinâmica", + "SSE.Views.TableSettings.textRemDuplicates": "Remover duplicados", + "SSE.Views.TableSettings.textReservedName": "O nome que está a tentar usar já está referenciado em fórmulas celulares. Por favor, use algum outro nome.", + "SSE.Views.TableSettings.textResize": "Redimensionar tabela", + "SSE.Views.TableSettings.textRows": "Linhas", + "SSE.Views.TableSettings.textSelectData": "Selecionar dados", + "SSE.Views.TableSettings.textSlicer": "Inserir segmentação de dados", + "SSE.Views.TableSettings.textTableName": "Nome da tabela", + "SSE.Views.TableSettings.textTemplate": "Selecionar de um modelo", + "SSE.Views.TableSettings.textTotal": "Total", + "SSE.Views.TableSettings.warnLongOperation": "A operação que está prestes a realizar pode levar muito tempo a concluir.
    Tem a certeza de que quer continuar?", + "SSE.Views.TableSettingsAdvanced.textAlt": "Texto alternativo", + "SSE.Views.TableSettingsAdvanced.textAltDescription": "Descrição", + "SSE.Views.TableSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação do objeto visual, que será lida às pessoas com deficiências visuais ou cognitivas para as ajudar a compreender melhor a informação que existe na imagem, forma automática, gráfico ou tabela.", + "SSE.Views.TableSettingsAdvanced.textAltTitle": "Título", + "SSE.Views.TableSettingsAdvanced.textTitle": "Tabela - Definições avançadas", + "SSE.Views.TextArtSettings.strBackground": "Cor de fundo", + "SSE.Views.TextArtSettings.strColor": "Cor", + "SSE.Views.TextArtSettings.strFill": "Fill", + "SSE.Views.TextArtSettings.strForeground": "Cor principal", + "SSE.Views.TextArtSettings.strPattern": "Padrão", + "SSE.Views.TextArtSettings.strSize": "Tamanho", + "SSE.Views.TextArtSettings.strStroke": "Linha", + "SSE.Views.TextArtSettings.strTransparency": "Opacidade", + "SSE.Views.TextArtSettings.strType": "Tipo", + "SSE.Views.TextArtSettings.textAngle": "Ângulo", + "SSE.Views.TextArtSettings.textBorderSizeErr": "O valor inserido não está correto.
    Introduza um valor entre 0 pt e 1584 pt.", + "SSE.Views.TextArtSettings.textColor": "Cor de preenchimento", + "SSE.Views.TextArtSettings.textDirection": "Direção", + "SSE.Views.TextArtSettings.textEmptyPattern": "No Pattern", + "SSE.Views.TextArtSettings.textFromFile": "De um ficheiro", + "SSE.Views.TextArtSettings.textFromUrl": "De um URL", + "SSE.Views.TextArtSettings.textGradient": "Ponto de gradiente", + "SSE.Views.TextArtSettings.textGradientFill": "Preenchimento gradiente", + "SSE.Views.TextArtSettings.textImageTexture": "Picture or Texture", + "SSE.Views.TextArtSettings.textLinear": "Linear", + "SSE.Views.TextArtSettings.textNoFill": "No Fill", + "SSE.Views.TextArtSettings.textPatternFill": "Padrão", + "SSE.Views.TextArtSettings.textPosition": "Posição", + "SSE.Views.TextArtSettings.textRadial": "Radial", + "SSE.Views.TextArtSettings.textSelectTexture": "Selecionar", + "SSE.Views.TextArtSettings.textStretch": "Alongar", + "SSE.Views.TextArtSettings.textStyle": "Estilo", + "SSE.Views.TextArtSettings.textTemplate": "Modelo", + "SSE.Views.TextArtSettings.textTexture": "De uma textura", + "SSE.Views.TextArtSettings.textTile": "Lado a lado", + "SSE.Views.TextArtSettings.textTransform": "Transform", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "Adicionar ponto de gradiente", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Remover Ponto de Gradiente", + "SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", + "SSE.Views.TextArtSettings.txtCanvas": "Canvas", + "SSE.Views.TextArtSettings.txtCarton": "Carton", + "SSE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric", + "SSE.Views.TextArtSettings.txtGrain": "Grain", + "SSE.Views.TextArtSettings.txtGranite": "Granite", + "SSE.Views.TextArtSettings.txtGreyPaper": "Gray Paper", + "SSE.Views.TextArtSettings.txtKnit": "Knit", + "SSE.Views.TextArtSettings.txtLeather": "Leather", + "SSE.Views.TextArtSettings.txtNoBorders": "No Line", + "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", + "SSE.Views.TextArtSettings.txtWood": "Wood", + "SSE.Views.Toolbar.capBtnAddComment": "Adicionar comentário", + "SSE.Views.Toolbar.capBtnColorSchemas": "Esquema de cores", + "SSE.Views.Toolbar.capBtnComment": "Comentário", + "SSE.Views.Toolbar.capBtnInsHeader": "Cabeçalho/rodapé", + "SSE.Views.Toolbar.capBtnInsSlicer": "Segmentação de dados", + "SSE.Views.Toolbar.capBtnInsSymbol": "Símbolo", + "SSE.Views.Toolbar.capBtnMargins": "Margens", + "SSE.Views.Toolbar.capBtnPageOrient": "Orientação", + "SSE.Views.Toolbar.capBtnPageSize": "Tamanho", + "SSE.Views.Toolbar.capBtnPrintArea": "Área de Impressão", + "SSE.Views.Toolbar.capBtnPrintTitles": "Imprimir títulos", + "SSE.Views.Toolbar.capBtnScale": "Ajustar Tamanho", + "SSE.Views.Toolbar.capImgAlign": "Alinhar", + "SSE.Views.Toolbar.capImgBackward": "Enviar para trás", + "SSE.Views.Toolbar.capImgForward": "Trazer para a frente", + "SSE.Views.Toolbar.capImgGroup": "Grupo", + "SSE.Views.Toolbar.capInsertChart": "Gráfico", + "SSE.Views.Toolbar.capInsertEquation": "Equação", + "SSE.Views.Toolbar.capInsertHyperlink": "Hiperligação", + "SSE.Views.Toolbar.capInsertImage": "Imagem", + "SSE.Views.Toolbar.capInsertShape": "Forma", + "SSE.Views.Toolbar.capInsertSpark": "Sparkline", + "SSE.Views.Toolbar.capInsertTable": "Tabela", + "SSE.Views.Toolbar.capInsertText": "Caixa de texto", + "SSE.Views.Toolbar.mniImageFromFile": "Imagem de um ficheiro", + "SSE.Views.Toolbar.mniImageFromStorage": "Imagem de um armazenamento", + "SSE.Views.Toolbar.mniImageFromUrl": "Imagem de um URL", + "SSE.Views.Toolbar.textAddPrintArea": "Adicionar à área de impressão", + "SSE.Views.Toolbar.textAlignBottom": "Alinhar à parte inferior", + "SSE.Views.Toolbar.textAlignCenter": "Alinhar ao centro", + "SSE.Views.Toolbar.textAlignJust": "Justificado", + "SSE.Views.Toolbar.textAlignLeft": "Alinhar à esquerda", + "SSE.Views.Toolbar.textAlignMiddle": "Alinhar ao meio", + "SSE.Views.Toolbar.textAlignRight": "Alinhar à direita", + "SSE.Views.Toolbar.textAlignTop": "Alinhar à parte superior", + "SSE.Views.Toolbar.textAllBorders": "Todas as bordas", + "SSE.Views.Toolbar.textAuto": "Automático", + "SSE.Views.Toolbar.textAutoColor": "Automático", + "SSE.Views.Toolbar.textBold": "Negrito", + "SSE.Views.Toolbar.textBordersColor": "Cor do contorno", + "SSE.Views.Toolbar.textBordersStyle": "Estilo do contorno", + "SSE.Views.Toolbar.textBottom": "Baixo:", + "SSE.Views.Toolbar.textBottomBorders": "Bordas inferiores", + "SSE.Views.Toolbar.textCenterBorders": "Bordas verticais interiores", + "SSE.Views.Toolbar.textClearPrintArea": "Limpar Área de Impressão", + "SSE.Views.Toolbar.textClearRule": "Limpar regras", + "SSE.Views.Toolbar.textClockwise": "Ângulo para a direita", + "SSE.Views.Toolbar.textColorScales": "Escalas de cores", + "SSE.Views.Toolbar.textCounterCw": "Ângulo para a esquerda", + "SSE.Views.Toolbar.textDataBars": "Barras de dados", + "SSE.Views.Toolbar.textDelLeft": "Deslocar células para a esquerda", + "SSE.Views.Toolbar.textDelUp": "Deslocar células para cima", + "SSE.Views.Toolbar.textDiagDownBorder": "Borda inferior diagonal", + "SSE.Views.Toolbar.textDiagUpBorder": "Borda superior diagonal", + "SSE.Views.Toolbar.textEntireCol": "Coluna inteira", + "SSE.Views.Toolbar.textEntireRow": "Linha inteira", + "SSE.Views.Toolbar.textFewPages": "páginas", + "SSE.Views.Toolbar.textHeight": "Altura", + "SSE.Views.Toolbar.textHorizontal": "Texto horizontal", + "SSE.Views.Toolbar.textInsDown": "Deslocar células para baixo", + "SSE.Views.Toolbar.textInsideBorders": "Bordas interiores", + "SSE.Views.Toolbar.textInsRight": "Deslocar células para a direita", + "SSE.Views.Toolbar.textItalic": "Itálico", + "SSE.Views.Toolbar.textItems": "Itens", + "SSE.Views.Toolbar.textLandscape": "Paisagem", + "SSE.Views.Toolbar.textLeft": "Esquerda:", + "SSE.Views.Toolbar.textLeftBorders": "Bordas esquerdas", + "SSE.Views.Toolbar.textManageRule": "Gerir Regras", + "SSE.Views.Toolbar.textManyPages": "páginas", + "SSE.Views.Toolbar.textMarginsLast": "Última personalizada", + "SSE.Views.Toolbar.textMarginsNarrow": "Estreita", + "SSE.Views.Toolbar.textMarginsNormal": "Normal", + "SSE.Views.Toolbar.textMarginsWide": "Amplo", + "SSE.Views.Toolbar.textMiddleBorders": "Bordas horizontais interiores", + "SSE.Views.Toolbar.textMoreFormats": "Mais formatos", + "SSE.Views.Toolbar.textMorePages": "Mais páginas", + "SSE.Views.Toolbar.textNewColor": "Adicionar nova cor personalizada", + "SSE.Views.Toolbar.textNewRule": "Nova Regra", + "SSE.Views.Toolbar.textNoBorders": "Sem bordas", + "SSE.Views.Toolbar.textOnePage": "página", + "SSE.Views.Toolbar.textOutBorders": "Bordas externas", + "SSE.Views.Toolbar.textPageMarginsCustom": "Margens personalizadas", + "SSE.Views.Toolbar.textPortrait": "Retrato", + "SSE.Views.Toolbar.textPrint": "Imprimir", + "SSE.Views.Toolbar.textPrintGridlines": "Imprimir linhas de grade", + "SSE.Views.Toolbar.textPrintHeadings": "Imprimir Cabeçalhos", + "SSE.Views.Toolbar.textPrintOptions": "Definições de impressão", + "SSE.Views.Toolbar.textRight": "Direita:", + "SSE.Views.Toolbar.textRightBorders": "Bordas direitas", + "SSE.Views.Toolbar.textRotateDown": "Girar Texto para Baixo", + "SSE.Views.Toolbar.textRotateUp": "Girar Texto para Cima", + "SSE.Views.Toolbar.textScale": "Redimensionar", + "SSE.Views.Toolbar.textScaleCustom": "Personalizado", + "SSE.Views.Toolbar.textSelection": "Da seleção atual", + "SSE.Views.Toolbar.textSetPrintArea": "Definir Área de Impressão", + "SSE.Views.Toolbar.textStrikeout": "Rasurado", + "SSE.Views.Toolbar.textSubscript": "Subscrito", + "SSE.Views.Toolbar.textSubSuperscript": "Subscrito/Sobrescrito", + "SSE.Views.Toolbar.textSuperscript": "Sobrescrito", + "SSE.Views.Toolbar.textTabCollaboration": "Colaboração", + "SSE.Views.Toolbar.textTabData": "Data", + "SSE.Views.Toolbar.textTabFile": "Ficheiro", + "SSE.Views.Toolbar.textTabFormula": "Fórmula", + "SSE.Views.Toolbar.textTabHome": "Base", + "SSE.Views.Toolbar.textTabInsert": "Inserir", + "SSE.Views.Toolbar.textTabLayout": "Disposição", + "SSE.Views.Toolbar.textTabProtect": "Proteção", + "SSE.Views.Toolbar.textTabView": "Ver", + "SSE.Views.Toolbar.textThisPivot": "A partir deste pivot", + "SSE.Views.Toolbar.textThisSheet": "A partir desta folha de cálculo", + "SSE.Views.Toolbar.textThisTable": "A partir deste pivot", + "SSE.Views.Toolbar.textTop": "Parte superior:", + "SSE.Views.Toolbar.textTopBorders": "Bordas superiores", + "SSE.Views.Toolbar.textUnderline": "Sublinhado", + "SSE.Views.Toolbar.textVertical": "Texto vertical", + "SSE.Views.Toolbar.textWidth": "Largura", + "SSE.Views.Toolbar.textZoom": "Zoom", + "SSE.Views.Toolbar.tipAlignBottom": "Alinhar à parte inferior", + "SSE.Views.Toolbar.tipAlignCenter": "Alinhar ao centro", + "SSE.Views.Toolbar.tipAlignJust": "Justificado", + "SSE.Views.Toolbar.tipAlignLeft": "Alinhar à esquerda", + "SSE.Views.Toolbar.tipAlignMiddle": "Alinhar ao meio", + "SSE.Views.Toolbar.tipAlignRight": "Alinhar à direita", + "SSE.Views.Toolbar.tipAlignTop": "Alinhar à parte superior", + "SSE.Views.Toolbar.tipAutofilter": "Classificar e Filtrar", + "SSE.Views.Toolbar.tipBack": "Voltar", + "SSE.Views.Toolbar.tipBorders": "Bordas", + "SSE.Views.Toolbar.tipCellStyle": "Estilo da célula", + "SSE.Views.Toolbar.tipChangeChart": "Alterar tipo de gráfico", + "SSE.Views.Toolbar.tipClearStyle": "Limpar", + "SSE.Views.Toolbar.tipColorSchemas": "Alterar esquema de cor", + "SSE.Views.Toolbar.tipCondFormat": "Formatação condicional", + "SSE.Views.Toolbar.tipCopy": "Copiar", + "SSE.Views.Toolbar.tipCopyStyle": "Copiar estilo", + "SSE.Views.Toolbar.tipDecDecimal": "Diminuir casas decimais", + "SSE.Views.Toolbar.tipDecFont": "Diminuir tamanho do tipo de letra", + "SSE.Views.Toolbar.tipDeleteOpt": "Excluir células", + "SSE.Views.Toolbar.tipDigStyleAccounting": "Estilo contabilidade", + "SSE.Views.Toolbar.tipDigStyleCurrency": "Estilo da moeda", + "SSE.Views.Toolbar.tipDigStylePercent": "Estilo de porcentagem", + "SSE.Views.Toolbar.tipEditChart": "Editar gráfico", + "SSE.Views.Toolbar.tipEditChartData": "Selecionar dados", + "SSE.Views.Toolbar.tipEditChartType": "Alterar tipo de gráfico", + "SSE.Views.Toolbar.tipEditHeader": "Editar cabeçalho e rodapé", + "SSE.Views.Toolbar.tipFontColor": "Cor do tipo de letra", + "SSE.Views.Toolbar.tipFontName": "Nome da fonte", + "SSE.Views.Toolbar.tipFontSize": "Tamanho do tipo de letra", + "SSE.Views.Toolbar.tipImgAlign": "Alinhar objetos", + "SSE.Views.Toolbar.tipImgGroup": "Agrupar objetos", + "SSE.Views.Toolbar.tipIncDecimal": "Aumentar números decimais", + "SSE.Views.Toolbar.tipIncFont": "Aumentar tamanho do tipo de letra", + "SSE.Views.Toolbar.tipInsertChart": "Inserir gráfico", + "SSE.Views.Toolbar.tipInsertChartSpark": "Inserir gráfico", + "SSE.Views.Toolbar.tipInsertEquation": "Inserir equação", + "SSE.Views.Toolbar.tipInsertHyperlink": "Adicionar hiperligação", + "SSE.Views.Toolbar.tipInsertImage": "Inserir imagem", + "SSE.Views.Toolbar.tipInsertOpt": "Inserir células", + "SSE.Views.Toolbar.tipInsertShape": "Inserir forma automática", + "SSE.Views.Toolbar.tipInsertSlicer": "Inserir segmentação de dados", + "SSE.Views.Toolbar.tipInsertSpark": "Inserir sparkline", + "SSE.Views.Toolbar.tipInsertSymbol": "Inserir símbolo", + "SSE.Views.Toolbar.tipInsertTable": "Inserir tabela", + "SSE.Views.Toolbar.tipInsertText": "Inserir caixa de texto", + "SSE.Views.Toolbar.tipInsertTextart": "Inserir arte de texto", + "SSE.Views.Toolbar.tipMerge": "Mesclar", + "SSE.Views.Toolbar.tipNone": "Nenhum", + "SSE.Views.Toolbar.tipNumFormat": "Formato de número", + "SSE.Views.Toolbar.tipPageMargins": "Margens da página", + "SSE.Views.Toolbar.tipPageOrient": "Orientação da página", + "SSE.Views.Toolbar.tipPageSize": "Tamanho da página", + "SSE.Views.Toolbar.tipPaste": "Colar", + "SSE.Views.Toolbar.tipPrColor": "Cor de preenchimento", + "SSE.Views.Toolbar.tipPrint": "Imprimir", + "SSE.Views.Toolbar.tipPrintArea": "Área de Impressão", + "SSE.Views.Toolbar.tipPrintTitles": "Imprimir títulos", + "SSE.Views.Toolbar.tipRedo": "Refazer", + "SSE.Views.Toolbar.tipSave": "Salvar", + "SSE.Views.Toolbar.tipSaveCoauth": "Guarde as suas alterações para que os outros utilizadores as possam ver.", + "SSE.Views.Toolbar.tipScale": "Ajustar Tamanho", + "SSE.Views.Toolbar.tipSendBackward": "Enviar para trás", + "SSE.Views.Toolbar.tipSendForward": "Trazer para a frente", + "SSE.Views.Toolbar.tipSynchronize": "O documento foi alterado por outro utilizador. Clique para guardar as suas alterações e recarregar o documento.", + "SSE.Views.Toolbar.tipTextOrientation": "Orientação", + "SSE.Views.Toolbar.tipUndo": "Desfazer", + "SSE.Views.Toolbar.tipWrap": "Moldar texto", + "SSE.Views.Toolbar.txtAccounting": "Contabilidade", + "SSE.Views.Toolbar.txtAdditional": "Adicional", + "SSE.Views.Toolbar.txtAscending": "Crescente", + "SSE.Views.Toolbar.txtAutosumTip": "Somatório", + "SSE.Views.Toolbar.txtClearAll": "Tudo", + "SSE.Views.Toolbar.txtClearComments": "Comentários", + "SSE.Views.Toolbar.txtClearFilter": "Limpar filtro", + "SSE.Views.Toolbar.txtClearFormat": "Formato", + "SSE.Views.Toolbar.txtClearFormula": "Função", + "SSE.Views.Toolbar.txtClearHyper": "Hiperligações", + "SSE.Views.Toolbar.txtClearText": "Texto", + "SSE.Views.Toolbar.txtCurrency": "Moeda", + "SSE.Views.Toolbar.txtCustom": "Personalizar", + "SSE.Views.Toolbar.txtDate": "Data", + "SSE.Views.Toolbar.txtDateTime": "Data e Hora", + "SSE.Views.Toolbar.txtDescending": "Decrescente", + "SSE.Views.Toolbar.txtDollar": "$ Dólar", + "SSE.Views.Toolbar.txtEuro": "€ Euro", + "SSE.Views.Toolbar.txtExp": "Exponencial", + "SSE.Views.Toolbar.txtFilter": "Filtro", + "SSE.Views.Toolbar.txtFormula": "Inserir função", + "SSE.Views.Toolbar.txtFraction": "Fração", + "SSE.Views.Toolbar.txtFranc": "Franco suíço CHF", + "SSE.Views.Toolbar.txtGeneral": "Geral", + "SSE.Views.Toolbar.txtInteger": "Inteiro", + "SSE.Views.Toolbar.txtManageRange": "Name manager", + "SSE.Views.Toolbar.txtMergeAcross": "Mesclar através", + "SSE.Views.Toolbar.txtMergeCells": "Mesclar células", + "SSE.Views.Toolbar.txtMergeCenter": "Mesclar e Centrar", + "SSE.Views.Toolbar.txtNamedRange": "Named Ranges", + "SSE.Views.Toolbar.txtNewRange": "New name", + "SSE.Views.Toolbar.txtNoBorders": "Sem bordas", + "SSE.Views.Toolbar.txtNumber": "Número", + "SSE.Views.Toolbar.txtPasteRange": "Paste name", + "SSE.Views.Toolbar.txtPercentage": "Porcentagem", + "SSE.Views.Toolbar.txtPound": "£ Libra", + "SSE.Views.Toolbar.txtRouble": "₽ Rouble", + "SSE.Views.Toolbar.txtScheme1": "Office", + "SSE.Views.Toolbar.txtScheme10": "Mediana", + "SSE.Views.Toolbar.txtScheme11": "Metro", + "SSE.Views.Toolbar.txtScheme12": "Módulo", + "SSE.Views.Toolbar.txtScheme13": "Opulento", + "SSE.Views.Toolbar.txtScheme14": "Balcão envidraçado", + "SSE.Views.Toolbar.txtScheme15": "Origem", + "SSE.Views.Toolbar.txtScheme16": "Papel", + "SSE.Views.Toolbar.txtScheme17": "Solstício", + "SSE.Views.Toolbar.txtScheme18": "Técnica", + "SSE.Views.Toolbar.txtScheme19": "Viagem", + "SSE.Views.Toolbar.txtScheme2": "Escala de cinza", + "SSE.Views.Toolbar.txtScheme20": "Urbano", + "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "Novo Escritório", + "SSE.Views.Toolbar.txtScheme3": "Ápice", + "SSE.Views.Toolbar.txtScheme4": "Aspecto", + "SSE.Views.Toolbar.txtScheme5": "Cívico", + "SSE.Views.Toolbar.txtScheme6": "Concurso", + "SSE.Views.Toolbar.txtScheme7": "Patrimônio Líquido", + "SSE.Views.Toolbar.txtScheme8": "Fluxo", + "SSE.Views.Toolbar.txtScheme9": "Fundição", + "SSE.Views.Toolbar.txtScientific": "Científico", + "SSE.Views.Toolbar.txtSearch": "Pesquisa", + "SSE.Views.Toolbar.txtSort": "Classificar", + "SSE.Views.Toolbar.txtSortAZ": "Classificar do menor para o maior", + "SSE.Views.Toolbar.txtSortZA": "Classificar do maior para o menor", + "SSE.Views.Toolbar.txtSpecial": "Especial", + "SSE.Views.Toolbar.txtTableTemplate": "Formatar como modelo de tabela", + "SSE.Views.Toolbar.txtText": "Texto", + "SSE.Views.Toolbar.txtTime": "Hora", + "SSE.Views.Toolbar.txtUnmerge": "Desfaz a mesclagem de células", + "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Top10FilterDialog.textType": "Mostrar", + "SSE.Views.Top10FilterDialog.txtBottom": "Baixo", + "SSE.Views.Top10FilterDialog.txtBy": "por", + "SSE.Views.Top10FilterDialog.txtItems": "Item", + "SSE.Views.Top10FilterDialog.txtPercent": "Percentagem", + "SSE.Views.Top10FilterDialog.txtSum": "Soma", + "SSE.Views.Top10FilterDialog.txtTitle": "Filtro automático dos 10 Mais", + "SSE.Views.Top10FilterDialog.txtTop": "Parte superior", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Filtro Top 10", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Definições de campo de valor", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Média", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Campo base", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Item base", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 de %2", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "Contagem", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Contar números", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Nome personalizado", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "A Diferença em Relação a", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Índice", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Máx", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min.", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Sem cálculos", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Percentagem de", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Diferença de Percentagem em Relação a", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percentagem da Coluna", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Percentagem do Total", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percentagem da Linha", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produto", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Total Corrente Em", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Mostrar valores como", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Nome da origem:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "Desv.Padr", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "Desv.PadrP", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Soma", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Sumarizar valor do campo por", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", + "SSE.Views.ViewManagerDlg.closeButtonText": "Fechar", + "SSE.Views.ViewManagerDlg.guestText": "Visitante", + "SSE.Views.ViewManagerDlg.lockText": "Bloqueada", + "SSE.Views.ViewManagerDlg.textDelete": "Eliminar", + "SSE.Views.ViewManagerDlg.textDuplicate": "Duplicar", + "SSE.Views.ViewManagerDlg.textEmpty": "Ainda não criou qualquer vista", + "SSE.Views.ViewManagerDlg.textGoTo": "Ir para a vista", + "SSE.Views.ViewManagerDlg.textLongName": "Introduza um nome com menos de 128 caracteres.", + "SSE.Views.ViewManagerDlg.textNew": "Novo", + "SSE.Views.ViewManagerDlg.textRename": "Renomear", + "SSE.Views.ViewManagerDlg.textRenameError": "O nome da vista não pode estar vazio.", + "SSE.Views.ViewManagerDlg.textRenameLabel": "Renomear vista", + "SSE.Views.ViewManagerDlg.textViews": "Vistas de folhas", + "SSE.Views.ViewManagerDlg.tipIsLocked": "Este elemento está a ser editado por outro utilizador.", + "SSE.Views.ViewManagerDlg.txtTitle": "Mostrar gestor de vistas", + "SSE.Views.ViewManagerDlg.warnDeleteView": "Está a tentar eliminar a vista atualmente ativa: %1.
    Fechar vista e eliminar?", + "SSE.Views.ViewTab.capBtnFreeze": "Fixar painéis", + "SSE.Views.ViewTab.capBtnSheetView": "Vista de folha", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Mostrar sempre a barra de ferramentas", + "SSE.Views.ViewTab.textClose": "Fechar", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combinar as barras da folha e de estado", + "SSE.Views.ViewTab.textCreate": "Novo", + "SSE.Views.ViewTab.textDefault": "Padrão", + "SSE.Views.ViewTab.textFormula": "Barra de Fórmulas", + "SSE.Views.ViewTab.textFreezeCol": "Fixar a Primeira Coluna", + "SSE.Views.ViewTab.textFreezeRow": "Fixar a Primeira Linha", + "SSE.Views.ViewTab.textGridlines": "Linhas da grelha", + "SSE.Views.ViewTab.textHeadings": "Títulos", + "SSE.Views.ViewTab.textInterfaceTheme": "Tema da interface", + "SSE.Views.ViewTab.textManager": "Gestor de vistas", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostrar sombra dos painéis fixados", + "SSE.Views.ViewTab.textUnFreeze": "Libertar painéis", + "SSE.Views.ViewTab.textZeros": "Mostrar zeros", + "SSE.Views.ViewTab.textZoom": "Zoom", + "SSE.Views.ViewTab.tipClose": "Fechar vista de folha", + "SSE.Views.ViewTab.tipCreate": "Criar vista de folha", + "SSE.Views.ViewTab.tipFreeze": "Fixar painéis", + "SSE.Views.ViewTab.tipSheetView": "Vista de folha", + "SSE.Views.WBProtection.hintAllowRanges": "Permitir editar intervalos", + "SSE.Views.WBProtection.hintProtectSheet": "Proteger folha", + "SSE.Views.WBProtection.hintProtectWB": "Proteger livro", + "SSE.Views.WBProtection.txtAllowRanges": "Permitir editar intervalos", + "SSE.Views.WBProtection.txtHiddenFormula": "Fórmulas Ocultas", + "SSE.Views.WBProtection.txtLockedCell": "Célula Bloqueada", + "SSE.Views.WBProtection.txtLockedShape": "Forma bloqueada", + "SSE.Views.WBProtection.txtLockedText": "Bloquear Texto", + "SSE.Views.WBProtection.txtProtectSheet": "Proteger folha", + "SSE.Views.WBProtection.txtProtectWB": "Proteger livro", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "Introduza uma palavra-passe para desbloquear a folha", + "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desproteger Folha", + "SSE.Views.WBProtection.txtWBUnlockDescription": "Introduza uma palavra-passe para desbloquear o livro", + "SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger Livro" +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index 7d75b0e41..89b8fef89 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnView": "Aberto para visualização", "Common.UI.ButtonColored.textAutoColor": "Automático", - "Common.UI.ButtonColored.textNewColor": "Adicionar nova cor personalizada", + "Common.UI.ButtonColored.textNewColor": "Nova cor personalizada", "Common.UI.ComboBorderSize.txtNoBorders": "Sem bordas", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sem bordas", "Common.UI.ComboDataView.emptyComboText": "Sem estilos", @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "Desfazer", "SSE.Views.DocumentHolder.textUnFreezePanes": "Descongelar painéis", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Balas de flecha", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Marcas de verificação", + "SSE.Views.DocumentHolder.tipMarkersDash": "Marcadores de roteiro", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Vinhetas rômbicas cheias", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Balas redondas cheias", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Balas quadradas cheias", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Balas redondas ocas", + "SSE.Views.DocumentHolder.tipMarkersStar": "Balas de estrelas", "SSE.Views.DocumentHolder.topCellText": "Alinhar à parte superior", "SSE.Views.DocumentHolder.txtAccounting": "Contabilidade", "SSE.Views.DocumentHolder.txtAddComment": "Adicionar comentário", @@ -2211,7 +2219,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Mínimo", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Ponto mínimo", "SSE.Views.FormatRulesEditDlg.textNegative": "Negativo", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Adicionar nova cor personalizada", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Nova cor personalizada", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Sem bordas", "SSE.Views.FormatRulesEditDlg.textNone": "Nenhum", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Um ou mais dos valores especificados não é uma porcentagem válida.", @@ -2380,7 +2388,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Itálico", "SSE.Views.HeaderFooterDialog.textLeft": "Esquerdo", "SSE.Views.HeaderFooterDialog.textMaxError": "A sequência de texto que você inseriu é muito longa. Reduza o número de caracteres usados.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Adicionar nova cor personalizada", + "SSE.Views.HeaderFooterDialog.textNewColor": "Nova cor personalizada", "SSE.Views.HeaderFooterDialog.textOdd": "Página ímpar", "SSE.Views.HeaderFooterDialog.textPageCount": "Número de páginas", "SSE.Views.HeaderFooterDialog.textPageNum": "Número da página", @@ -3154,7 +3162,7 @@ "SSE.Views.Statusbar.textCount": "Contar", "SSE.Views.Statusbar.textMax": "Máx", "SSE.Views.Statusbar.textMin": "Min", - "SSE.Views.Statusbar.textNewColor": "Adicionar nova cor personalizada", + "SSE.Views.Statusbar.textNewColor": "Nova cor personalizada", "SSE.Views.Statusbar.textNoColor": "Sem cor", "SSE.Views.Statusbar.textSum": "Soma", "SSE.Views.Statusbar.tipAddTab": "Adicionar planilha", @@ -3341,7 +3349,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Bordas horizontais interiores", "SSE.Views.Toolbar.textMoreFormats": "Mais formatos", "SSE.Views.Toolbar.textMorePages": "Mais páginas", - "SSE.Views.Toolbar.textNewColor": "Adicionar nova cor personalizada", + "SSE.Views.Toolbar.textNewColor": "Nova cor personalizada", "SSE.Views.Toolbar.textNewRule": "Nova regra", "SSE.Views.Toolbar.textNoBorders": "Sem bordas", "SSE.Views.Toolbar.textOnePage": "página", @@ -3429,14 +3437,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Inserir tabela", "SSE.Views.Toolbar.tipInsertText": "Inserir caixa de texto", "SSE.Views.Toolbar.tipInsertTextart": "Inserir arte de texto", - "SSE.Views.Toolbar.tipMarkersArrow": "balas de flecha", - "SSE.Views.Toolbar.tipMarkersCheckmark": "marcas de verificação", - "SSE.Views.Toolbar.tipMarkersDash": "marcadores de roteiro", - "SSE.Views.Toolbar.tipMarkersFRhombus": "vinhetas rômbicas cheias", - "SSE.Views.Toolbar.tipMarkersFRound": "balas redondas cheias", - "SSE.Views.Toolbar.tipMarkersFSquare": "balas quadradas cheias", - "SSE.Views.Toolbar.tipMarkersHRound": "balas redondas ocas", - "SSE.Views.Toolbar.tipMarkersStar": "balas de estrelas", "SSE.Views.Toolbar.tipMerge": "Mesclar e centralizar", "SSE.Views.Toolbar.tipNone": "Nenhum", "SSE.Views.Toolbar.tipNumFormat": "Formato de número", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index 067f040c9..cdd1762f5 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", "Common.UI.ButtonColored.textAutoColor": "Automat", - "Common.UI.ButtonColored.textNewColor": "Adăugarea unei culori particularizate noi", + "Common.UI.ButtonColored.textNewColor": "Сuloare particularizată", "Common.UI.ComboBorderSize.txtNoBorders": "Fără borduri", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Fără borduri", "Common.UI.ComboDataView.emptyComboText": "Fără stiluri", @@ -202,6 +202,7 @@ "Common.Views.Comments.textResolved": "Rezolvat", "Common.Views.Comments.textSort": "Sortare comentarii", "Common.Views.Comments.textViewResolved": "Dvs. nu aveți permisiunea de a redeschide comentariu", + "Common.Views.Comments.txtEmpty": "Nu există niciun comentariu.", "Common.Views.CopyWarningDialog.textDontShow": "Nu afișa acest mesaj din nou", "Common.Views.CopyWarningDialog.textMsg": "Operațiuni de copiere, decupare și lipire din bară de instrumente sau meniul contextual al editorului se execută numai în editorul.

    Pentru copiere și lipire din sau în aplicații exterioare folosiți următoarele combinații de taste:", "Common.Views.CopyWarningDialog.textTitle": "Comenzile de copiere, decupare și lipire", @@ -1920,6 +1921,14 @@ "SSE.Views.DocumentHolder.textUndo": "Anulează", "SSE.Views.DocumentHolder.textUnFreezePanes": "Dezghețare panouri", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Marcatori săgeată", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Marcatori simbol de bifare", + "SSE.Views.DocumentHolder.tipMarkersDash": "Marcatori cu o liniuță", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Marcatori romb umplut", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Marcatori cerc umplut", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Marcatori pătrat umplut", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Marcatori cerc gol ", + "SSE.Views.DocumentHolder.tipMarkersStar": "Marcatori stele", "SSE.Views.DocumentHolder.topCellText": "Aliniere sus", "SSE.Views.DocumentHolder.txtAccounting": "Contabilitate", "SSE.Views.DocumentHolder.txtAddComment": "Adaugă comentariu", @@ -2018,7 +2027,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "Închidere meniu", "SSE.Views.FileMenu.btnCreateNewCaption": "Crearea unui document nou", "SSE.Views.FileMenu.btnDownloadCaption": "Descărcare ca...", - "SSE.Views.FileMenu.btnExitCaption": "Ieșire", + "SSE.Views.FileMenu.btnExitCaption": "Închidere", "SSE.Views.FileMenu.btnFileOpenCaption": "Deschidere...", "SSE.Views.FileMenu.btnHelpCaption": "Asistență...", "SSE.Views.FileMenu.btnHistoryCaption": "Istoricul versiune", @@ -2211,7 +2220,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Minim", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Punct minim", "SSE.Views.FormatRulesEditDlg.textNegative": "Negativ", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Adăugarea unei culori particularizate noi", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Сuloare particularizată", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Fără borduri", "SSE.Views.FormatRulesEditDlg.textNone": "Niciunul", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Una sau mai multe valori specificate sunt valorile procentuale nevalide", @@ -3429,14 +3438,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Inserare tabel", "SSE.Views.Toolbar.tipInsertText": "Inserare casetă text", "SSE.Views.Toolbar.tipInsertTextart": "Inserare TextArt", - "SSE.Views.Toolbar.tipMarkersArrow": "Listă cu marcatori săgeată", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Listă cu marcatori simbol de bifare", - "SSE.Views.Toolbar.tipMarkersDash": "Listă cu marcatori cu o liniuță", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Listă cu marcatori romb umplut", - "SSE.Views.Toolbar.tipMarkersFRound": "Listă cu marcatori cerc umplut", - "SSE.Views.Toolbar.tipMarkersFSquare": "Listă cu marcatori pătrat umplut", - "SSE.Views.Toolbar.tipMarkersHRound": "Listă cu marcatori cerc gol ", - "SSE.Views.Toolbar.tipMarkersStar": "Listă cu marcatori stele", "SSE.Views.Toolbar.tipMerge": "Îmbinare și centrare", "SSE.Views.Toolbar.tipNone": "Niciuna", "SSE.Views.Toolbar.tipNumFormat": "Formatul de număr", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index f2712e4e4..6927ec7e5 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -202,6 +202,7 @@ "Common.Views.Comments.textResolved": "Решено", "Common.Views.Comments.textSort": "Сортировать комментарии", "Common.Views.Comments.textViewResolved": "У вас нет прав для повторного открытия комментария", + "Common.Views.Comments.txtEmpty": "На листе нет комментариев.", "Common.Views.CopyWarningDialog.textDontShow": "Больше не показывать это сообщение", "Common.Views.CopyWarningDialog.textMsg": "Операции копирования, вырезания и вставки можно выполнить с помощью кнопок на панели инструментов и команд контекстного меню только в этой вкладке редактора.

    Для копирования в другие приложения и вставки из них используйте следующие сочетания клавиш:", "Common.Views.CopyWarningDialog.textTitle": "Операции копирования, вырезания и вставки", @@ -631,7 +632,7 @@ "SSE.Controllers.LeftMenu.textWithin": "Искать", "SSE.Controllers.LeftMenu.textWorkbook": "В книге", "SSE.Controllers.LeftMenu.txtUntitled": "Без имени", - "SSE.Controllers.LeftMenu.warnDownloadAs": "Если Вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
    Вы действительно хотите продолжить?", + "SSE.Controllers.LeftMenu.warnDownloadAs": "Если Вы продолжите сохранение в этот формат, вcя функциональность, кроме текста, будет потеряна.
    Вы действительно хотите продолжить?", "SSE.Controllers.Main.confirmMoveCellRange": "Конечный диапазон ячеек может содержать данные. Продолжить операцию?", "SSE.Controllers.Main.confirmPutMergeRange": "Исходные данные содержали объединенные ячейки.
    Перед вставкой этих ячеек в таблицу объединение было отменено.", "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Формулы в строке заголовка будут удалены и преобразованы в статический текст.
    Вы хотите продолжить?", @@ -1920,6 +1921,14 @@ "SSE.Views.DocumentHolder.textUndo": "Отменить", "SSE.Views.DocumentHolder.textUnFreezePanes": "Снять закрепление областей", "SSE.Views.DocumentHolder.textVar": "Дисп", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Маркеры-стрелки", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Маркеры-галочки", + "SSE.Views.DocumentHolder.tipMarkersDash": "Маркеры-тире", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Заполненные ромбовидные маркеры", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Заполненные круглые маркеры", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Заполненные квадратные маркеры", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Пустые круглые маркеры", + "SSE.Views.DocumentHolder.tipMarkersStar": "Маркеры-звездочки", "SSE.Views.DocumentHolder.topCellText": "По верхнему краю", "SSE.Views.DocumentHolder.txtAccounting": "Финансовый", "SSE.Views.DocumentHolder.txtAddComment": "Добавить комментарий", @@ -2018,7 +2027,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "Закрыть меню", "SSE.Views.FileMenu.btnCreateNewCaption": "Создать новую", "SSE.Views.FileMenu.btnDownloadCaption": "Скачать как...", - "SSE.Views.FileMenu.btnExitCaption": "Выйти", + "SSE.Views.FileMenu.btnExitCaption": "Закрыть", "SSE.Views.FileMenu.btnFileOpenCaption": "Открыть...", "SSE.Views.FileMenu.btnHelpCaption": "Справка...", "SSE.Views.FileMenu.btnHistoryCaption": "История версий", @@ -3429,14 +3438,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Вставить таблицу", "SSE.Views.Toolbar.tipInsertText": "Вставить надпись", "SSE.Views.Toolbar.tipInsertTextart": "Вставить объект Text Art", - "SSE.Views.Toolbar.tipMarkersArrow": "Маркеры-стрелки", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Маркеры-галочки", - "SSE.Views.Toolbar.tipMarkersDash": "Маркеры-тире", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Заполненные ромбовидные маркеры", - "SSE.Views.Toolbar.tipMarkersFRound": "Заполненные круглые маркеры", - "SSE.Views.Toolbar.tipMarkersFSquare": "Заполненные квадратные маркеры", - "SSE.Views.Toolbar.tipMarkersHRound": "Пустые круглые маркеры", - "SSE.Views.Toolbar.tipMarkersStar": "Маркеры-звездочки", "SSE.Views.Toolbar.tipMerge": "Объединить и поместить в центре", "SSE.Views.Toolbar.tipNone": "Нет", "SSE.Views.Toolbar.tipNumFormat": "Числовой формат", diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json index ac23ec016..1c53a0bac 100644 --- a/apps/spreadsheeteditor/main/locale/sk.json +++ b/apps/spreadsheeteditor/main/locale/sk.json @@ -2,23 +2,109 @@ "cancelButtonText": "Zrušiť", "Common.Controllers.Chat.notcriticalErrorTitle": "Upozornenie", "Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu", + "Common.Controllers.History.notcriticalErrorTitle": "Upozornenie", "Common.define.chartData.textArea": "Plošný graf", + "Common.define.chartData.textAreaStacked": "Skladaná oblasť", + "Common.define.chartData.textAreaStackedPer": "100% stohovaná oblasť", "Common.define.chartData.textBar": "Pruhový graf", + "Common.define.chartData.textBarNormal": "Klastrovaný stĺpec", + "Common.define.chartData.textBarNormal3d": "3-D klastrovaný stĺpec", "Common.define.chartData.textBarNormal3dPerspective": "3D stĺpec", + "Common.define.chartData.textBarStacked": "Skladaný stĺpec", + "Common.define.chartData.textBarStacked3d": "3-D stohovaný stĺpec", + "Common.define.chartData.textBarStackedPer": "100% stohovaný stĺpec", + "Common.define.chartData.textBarStackedPer3d": "3-D 100% stohovaný stĺpec", "Common.define.chartData.textCharts": "Grafy", "Common.define.chartData.textColumn": "Stĺpec", "Common.define.chartData.textColumnSpark": "Stĺpec", + "Common.define.chartData.textCombo": "Kombo", + "Common.define.chartData.textComboAreaBar": "Skladaná oblasť - zoskupené", + "Common.define.chartData.textComboBarLine": "Zoskupený stĺpec - riadok", + "Common.define.chartData.textComboBarLineSecondary": "Zoskupený stĺpec - čiara na sekundárnej osi", + "Common.define.chartData.textComboCustom": "Vlastná kombinácia", + "Common.define.chartData.textDoughnut": "Šiška", + "Common.define.chartData.textHBarNormal": "Zoskupená lišta", + "Common.define.chartData.textHBarNormal3d": "3-D zoskupená lišta", + "Common.define.chartData.textHBarStacked": "Skladaný bar", "Common.define.chartData.textHBarStacked3d": "3-D zoskupená lišta", + "Common.define.chartData.textHBarStackedPer": "100% stohovaná lišta", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% stohovaná lišta", "Common.define.chartData.textLine": "Čiara/líniový graf", "Common.define.chartData.textLine3d": "3-D línia", + "Common.define.chartData.textLineMarker": "Líniový so značkami", "Common.define.chartData.textLineSpark": "Čiara", + "Common.define.chartData.textLineStacked": "Skladaná linka", + "Common.define.chartData.textLineStackedMarker": "Skladaná linka so značkami", + "Common.define.chartData.textLineStackedPer": "100% stohovaná čiara", + "Common.define.chartData.textLineStackedPerMarker": "100% stohovaná línia so značkami", "Common.define.chartData.textPie": "Koláčový graf", "Common.define.chartData.textPie3d": "3-D koláč", "Common.define.chartData.textPoint": "Bodový graf", - "Common.define.chartData.textSparks": "Sparklines", + "Common.define.chartData.textScatter": "Bodový", + "Common.define.chartData.textScatterLine": "Bodový s rovnými linkami", + "Common.define.chartData.textScatterLineMarker": "Bodový s rovnými linkami a značkami", + "Common.define.chartData.textScatterSmooth": "Bodový s vyhladenými linkami", + "Common.define.chartData.textScatterSmoothMarker": "Bodový s vyhladenými linkami a značkami", + "Common.define.chartData.textSparks": "Mikro-grafy", "Common.define.chartData.textStock": "Akcie/burzový graf", "Common.define.chartData.textSurface": "Povrch", "Common.define.chartData.textWinLossSpark": "Zisk/strata", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "Žiaden formát nie je nastavený", + "Common.define.conditionalData.text1Above": "Na 1 štandardnú odchýlku vyššie", + "Common.define.conditionalData.text1Below": "Na 1 štandardnú odchýlku nižšie", + "Common.define.conditionalData.text2Above": "2 Smerodajná odchýlka nad", + "Common.define.conditionalData.text2Below": "2 Smerodajná odchýlka pod", + "Common.define.conditionalData.text3Above": "3 Smerodajná odchýlka nad", + "Common.define.conditionalData.text3Below": "3 Smerodajná odchýlka pod", + "Common.define.conditionalData.textAbove": "Nad", + "Common.define.conditionalData.textAverage": "Priemerne", + "Common.define.conditionalData.textBegins": "Začať s", + "Common.define.conditionalData.textBelow": "Pod", + "Common.define.conditionalData.textBetween": "Medzi", + "Common.define.conditionalData.textBlank": "Prázdny", + "Common.define.conditionalData.textBlanks": "Obsahuje prázdne bunky", + "Common.define.conditionalData.textBottom": "Dole", + "Common.define.conditionalData.textContains": "Obsahuje", + "Common.define.conditionalData.textDataBar": "Dátový riadok", + "Common.define.conditionalData.textDate": "Dátum", + "Common.define.conditionalData.textDuplicate": "Duplikát", + "Common.define.conditionalData.textEnds": "Končí s", + "Common.define.conditionalData.textEqAbove": "Väčšie alebo rovné", + "Common.define.conditionalData.textEqBelow": "Rovné alebo menšie", + "Common.define.conditionalData.textEqual": "Rovná sa", + "Common.define.conditionalData.textError": "Chyba", + "Common.define.conditionalData.textErrors": "Obsahuje chyby", + "Common.define.conditionalData.textFormula": "Vzorec", + "Common.define.conditionalData.textGreater": "Väčšie ako", + "Common.define.conditionalData.textGreaterEq": "Väčšie alebo rovná sa", + "Common.define.conditionalData.textIconSets": "Sady ikon", + "Common.define.conditionalData.textLast7days": "V uplynulých 7 dňoch", + "Common.define.conditionalData.textLastMonth": "posledný mesiac", + "Common.define.conditionalData.textLastWeek": "Posledný týždeň", + "Common.define.conditionalData.textLess": "Menej ako", + "Common.define.conditionalData.textLessEq": "Menej alebo rovná sa", + "Common.define.conditionalData.textNextMonth": "Ďalší mesiac", + "Common.define.conditionalData.textNextWeek": "Ďalší týždeň", + "Common.define.conditionalData.textNotBetween": "Nie medzi", + "Common.define.conditionalData.textNotBlanks": "Neobsahuje prázdne komôrky", + "Common.define.conditionalData.textNotContains": "Neobsahuje", + "Common.define.conditionalData.textNotEqual": "Nerovná sa", + "Common.define.conditionalData.textNotErrors": "Neobsahuje chyby", + "Common.define.conditionalData.textText": "Text", + "Common.define.conditionalData.textThisMonth": "Tento mesiac", + "Common.define.conditionalData.textThisWeek": "Tento týždeň ", + "Common.define.conditionalData.textToday": "Dnes", + "Common.define.conditionalData.textTomorrow": "Zajtra", + "Common.define.conditionalData.textTop": "Hore", + "Common.define.conditionalData.textUnique": "Unikátne", + "Common.define.conditionalData.textValue": "Hodnota je", + "Common.define.conditionalData.textYesterday": "Včera", + "Common.Translation.warnFileLocked": "Súbor je upravovaný v inej aplikácií. Môžete pokračovať v úpravách a uložiť ho ako kópiu.", + "Common.Translation.warnFileLockedBtnEdit": "Vytvoriť kópiu", + "Common.Translation.warnFileLockedBtnView": "Otvoriť pre náhľad", + "Common.UI.ButtonColored.textAutoColor": "Automaticky", + "Common.UI.ButtonColored.textNewColor": "Pridať novú vlastnú farbu", "Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania", "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly", @@ -28,6 +114,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Nový", "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota je nesprávna.
    Prosím, zadajte číselnú hodnotu medzi 0 a 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez farby", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Skrýt heslo", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Zobraziť heslo", "Common.UI.SearchDialog.textHighlight": "Zvýrazniť výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovať veľkosť písmen", "Common.UI.SearchDialog.textReplaceDef": "Zadať náhradný text", @@ -42,6 +130,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Dokument bol zmenený ďalším používateľom.
    Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.", "Common.UI.ThemeColorPalette.textStandartColors": "Štandardné farby", "Common.UI.ThemeColorPalette.textThemeColors": "Farebné témy", + "Common.UI.Themes.txtThemeClassicLight": "Štandardná svetlosť", + "Common.UI.Themes.txtThemeDark": "Tmavý", + "Common.UI.Themes.txtThemeLight": "Svetlý", "Common.UI.Window.cancelButtonText": "Zrušiť", "Common.UI.Window.closeButtonText": "Zatvoriť", "Common.UI.Window.noButtonText": "Nie", @@ -63,19 +154,44 @@ "Common.Views.About.txtVersion": "Verzia", "Common.Views.AutoCorrectDialog.textAdd": "Pridať", "Common.Views.AutoCorrectDialog.textApplyAsWork": "Použite počas práce", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Automatická oprava", "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformátovať počas písania", "Common.Views.AutoCorrectDialog.textBy": "Od", + "Common.Views.AutoCorrectDialog.textDelete": "Odstrániť", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internetové a sieťové prístupy s hypertextovými odkazmi", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autokorekcia pre matematiku", + "Common.Views.AutoCorrectDialog.textNewRowCol": "Zahrnúť nové riadky a stĺpce v tabuľke", + "Common.Views.AutoCorrectDialog.textRecognized": "Uznané funkcie", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Nasledujúce výrazy sú rozpoznané ako matematické funkcie. Nebudú aplikované pravidlá týkajúce sa veľkých a malých písmen.", + "Common.Views.AutoCorrectDialog.textReplace": "Nahradiť", + "Common.Views.AutoCorrectDialog.textReplaceText": "Nahrádzať počas písania", + "Common.Views.AutoCorrectDialog.textReplaceType": "Nahrádzať text počas písania", + "Common.Views.AutoCorrectDialog.textReset": "Obnoviť", + "Common.Views.AutoCorrectDialog.textResetAll": "Obnoviť pôvodné nastavenia", + "Common.Views.AutoCorrectDialog.textRestore": "Obnoviť", "Common.Views.AutoCorrectDialog.textTitle": "Automatická oprava", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Uznané funkcie musia obsahovať iba písmená A až Z, horný index alebo dolný index.", "Common.Views.AutoCorrectDialog.textWarnResetRec": "Akýkoľvek vami pridaný výraz bude odstránený a tie, ktoré ste odstránili budú prinavrátené späť. Chcete pokračovať?", + "Common.Views.AutoCorrectDialog.warnReplace": "Samooprava pre %1 už existuje. Chcete ju nahradiť?", "Common.Views.AutoCorrectDialog.warnReset": "Akákoľvek automatická oprava bude odstránená a zmeny budú vrátené na pôvodné hodnoty. Chcete pokračovať?", + "Common.Views.AutoCorrectDialog.warnRestore": "Samooprava pre %1 bude resetovaná na pôvodnú hodnotu. Chcete pokračovať?", "Common.Views.Chat.textSend": "Poslať", + "Common.Views.Comments.mniAuthorAsc": "Autor A až Z", + "Common.Views.Comments.mniAuthorDesc": "Autor Z až A", + "Common.Views.Comments.mniDateAsc": "Najstarší", + "Common.Views.Comments.mniDateDesc": "Najnovší", + "Common.Views.Comments.mniFilterGroups": "Filtrovať podľa skupiny", + "Common.Views.Comments.mniPositionAsc": "Zhora ", + "Common.Views.Comments.mniPositionDesc": "Zdola", "Common.Views.Comments.textAdd": "Pridať", "Common.Views.Comments.textAddComment": "Pridať komentár", "Common.Views.Comments.textAddCommentToDoc": "Pridať komentár k dokumentu", "Common.Views.Comments.textAddReply": "Pridať odpoveď", + "Common.Views.Comments.textAll": "Všetko", "Common.Views.Comments.textAnonym": "Návštevník", "Common.Views.Comments.textCancel": "Zrušiť", "Common.Views.Comments.textClose": "Zatvoriť", + "Common.Views.Comments.textClosePanel": "Zavrieť komentáre", "Common.Views.Comments.textComments": "Komentáre", "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "Zadať svoj komentár tu", @@ -84,6 +200,8 @@ "Common.Views.Comments.textReply": "Odpoveď", "Common.Views.Comments.textResolve": "Vyriešiť", "Common.Views.Comments.textResolved": "Vyriešené", + "Common.Views.Comments.textSort": "Triediť komentáre", + "Common.Views.Comments.textViewResolved": "Nemáte povolenie pre opätovné otvorenie komentáru", "Common.Views.CopyWarningDialog.textDontShow": "Už nezobrazovať túto správu", "Common.Views.CopyWarningDialog.textMsg": "Kopírovať, vystrihovať a priliepať pomocou tlačidiel panela nástrojov editora a kontextovej ponuky sa vykonajú iba v rámci tejto karty editora.

    Ak chcete kopírovať alebo priliepať do alebo z aplikácií mimo editora, použite nasledujúce klávesové skratky: ", "Common.Views.CopyWarningDialog.textTitle": "Akcia kopírovať, vystrihnúť a prilepiť", @@ -92,12 +210,16 @@ "Common.Views.CopyWarningDialog.textToPaste": "pre vloženie", "Common.Views.DocumentAccessDialog.textLoading": "Načítava.....", "Common.Views.DocumentAccessDialog.textTitle": "Nastavenie zdieľania", - "Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.", + "Common.Views.EditNameDialog.textLabel": "Štítok:", + "Common.Views.EditNameDialog.textLabelError": "Etiketa nesmie byť prázdna.", + "Common.Views.Header.labelCoUsersDescr": "Používatelia, ktorí súbor práve upravujú:", + "Common.Views.Header.textAddFavorite": "Označiť ako obľúbené", "Common.Views.Header.textAdvSettings": "Pokročilé nastavenia", - "Common.Views.Header.textBack": "Prejsť do Dokumentov", + "Common.Views.Header.textBack": "Otvoriť umiestnenie súboru", "Common.Views.Header.textCompactView": "Skryť panel s nástrojmi", "Common.Views.Header.textHideLines": "Skryť pravítka", - "Common.Views.Header.textHideStatusBar": "Schovať stavový riadok", + "Common.Views.Header.textHideStatusBar": "Skombinovať list a stavový riadok", + "Common.Views.Header.textRemoveFavorite": "Odstrániť z obľúbených", "Common.Views.Header.textSaveBegin": "Ukladanie...", "Common.Views.Header.textSaveChanged": "Modifikovaný", "Common.Views.Header.textSaveEnd": "Všetky zmeny boli uložené", @@ -110,39 +232,59 @@ "Common.Views.Header.tipRedo": "Znova", "Common.Views.Header.tipSave": "Uložiť", "Common.Views.Header.tipUndo": "Krok späť", + "Common.Views.Header.tipUndock": "Oddeliť do samostatného okna", "Common.Views.Header.tipViewSettings": "Zobraziť nastavenia", "Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom", "Common.Views.Header.txtAccessRights": "Zmeniť prístupové práva", "Common.Views.Header.txtRename": "Premenovať", + "Common.Views.History.textCloseHistory": "Zatvoriť históriu", + "Common.Views.History.textHide": "Stiahnuť/zbaliť/zvinúť", + "Common.Views.History.textHideAll": "Skryť podrobné zmeny", + "Common.Views.History.textRestore": "Obnoviť", + "Common.Views.History.textShow": "Expandovať/rozšíriť", + "Common.Views.History.textShowAll": "Zobraziť detailné zmeny", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Vložte URL adresu obrázka:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", "Common.Views.ListSettingsDialog.textBulleted": "S odrážkami", + "Common.Views.ListSettingsDialog.textNumbering": "Číslovaný", "Common.Views.ListSettingsDialog.tipChange": "Zmeniť odrážku", "Common.Views.ListSettingsDialog.txtBullet": "Odrážka", "Common.Views.ListSettingsDialog.txtColor": "Farba", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nová odrážka", "Common.Views.ListSettingsDialog.txtNone": "žiadny", "Common.Views.ListSettingsDialog.txtOfText": "% textu", "Common.Views.ListSettingsDialog.txtSize": "Veľkosť", + "Common.Views.ListSettingsDialog.txtStart": "Začať na", "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", + "Common.Views.ListSettingsDialog.txtTitle": "Nastavenia zoznamu", "Common.Views.ListSettingsDialog.txtType": "Typ", "Common.Views.OpenDialog.closeButtonText": "Zatvoriť súbor", + "Common.Views.OpenDialog.textInvalidRange": "Neplatný rozsah buniek", + "Common.Views.OpenDialog.textSelectData": "Vybrať údaje", "Common.Views.OpenDialog.txtAdvanced": "Pokročilé", "Common.Views.OpenDialog.txtColon": "Dvojbodka ", "Common.Views.OpenDialog.txtComma": "Čiarka", "Common.Views.OpenDialog.txtDelimiter": "Oddeľovač", + "Common.Views.OpenDialog.txtDestData": "Zvoľte kam umiestniť dáta", + "Common.Views.OpenDialog.txtEmpty": "Toto pole sa vyžaduje", "Common.Views.OpenDialog.txtEncoding": "Kódovanie", "Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.", "Common.Views.OpenDialog.txtOpenFile": "Zadajte heslo na otvorenie súboru", "Common.Views.OpenDialog.txtOther": "Ostatné", "Common.Views.OpenDialog.txtPassword": "Heslo", "Common.Views.OpenDialog.txtPreview": "Náhľad", + "Common.Views.OpenDialog.txtProtected": "Po zadaní hesla a otvorení súboru bude súčasné heslo k súboru resetované.", + "Common.Views.OpenDialog.txtSemicolon": "Bodkočiarka", "Common.Views.OpenDialog.txtSpace": "Priestor", "Common.Views.OpenDialog.txtTab": "Tabulátor", "Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností", "Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor", + "Common.Views.PasswordDialog.txtDescription": "Nastaviť heslo na ochranu tohto dokumentu", "Common.Views.PasswordDialog.txtIncorrectPwd": "Heslá sa nezhodujú", "Common.Views.PasswordDialog.txtPassword": "Heslo", + "Common.Views.PasswordDialog.txtRepeat": "Zopakujte heslo", "Common.Views.PasswordDialog.txtTitle": "Nastaviť heslo", "Common.Views.PasswordDialog.txtWarning": "Upozornenie: Ak stratíte alebo zabudnete heslo, nemožno ho obnoviť. Uschovajte ho na bezpečnom mieste.", "Common.Views.PluginDlg.textLoading": "Nahrávanie", @@ -159,16 +301,28 @@ "Common.Views.Protection.txtDeletePwd": "Odstrániť heslo", "Common.Views.Protection.txtEncrypt": "Šifrovať", "Common.Views.Protection.txtInvisibleSignature": "Pridajte digitálny podpis", + "Common.Views.Protection.txtSignature": "Podpis", "Common.Views.Protection.txtSignatureLine": "Pridať riadok na podpis", "Common.Views.RenameDialog.textName": "Názov súboru", "Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:", "Common.Views.ReviewChanges.hintNext": "K ďalšej zmene", + "Common.Views.ReviewChanges.hintPrev": "K predošlej zmene", "Common.Views.ReviewChanges.strFast": "Rýchly", + "Common.Views.ReviewChanges.strFastDesc": "Spoločné úpravy v reálnom čase. Všetky zmeny sú ukladané automaticky.", "Common.Views.ReviewChanges.strStrict": "Prísny", + "Common.Views.ReviewChanges.strStrictDesc": "Pre synchronizáciu zmien, ktoré ste urobili vy a ostatný, použite tlačítko \"Uložiť\".", "Common.Views.ReviewChanges.tipAcceptCurrent": "Akceptovať aktuálnu zmenu", + "Common.Views.ReviewChanges.tipCoAuthMode": "Nastaviť mód spoločných úprav", + "Common.Views.ReviewChanges.tipCommentRem": "Odstrániť komentáre", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Odstrániť aktuálne komentáre", + "Common.Views.ReviewChanges.tipCommentResolve": "Vyriešiť komentáre", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Vyriešiť aktuálne komentáre", + "Common.Views.ReviewChanges.tipHistory": "Zobraziť históriu verzií", "Common.Views.ReviewChanges.tipRejectCurrent": "Odmietnuť aktuálnu zmenu", "Common.Views.ReviewChanges.tipReview": "Sledovať zmeny", "Common.Views.ReviewChanges.tipReviewView": "Vyberte režim, v ktorom chcete zobraziť zmeny", + "Common.Views.ReviewChanges.tipSetDocLang": "Nastaviť jazyk dokumentu", + "Common.Views.ReviewChanges.tipSetSpelling": "Kontrola pravopisu", "Common.Views.ReviewChanges.tipSharing": "Spravovať prístupové práva k dokumentom", "Common.Views.ReviewChanges.txtAccept": "Prijať", "Common.Views.ReviewChanges.txtAcceptAll": "Akceptovať všetky zmeny", @@ -177,7 +331,16 @@ "Common.Views.ReviewChanges.txtChat": "Rozhovor", "Common.Views.ReviewChanges.txtClose": "Zatvoriť", "Common.Views.ReviewChanges.txtCoAuthMode": "Režim spoločnej úpravy", + "Common.Views.ReviewChanges.txtCommentRemAll": "Odstrániť všetky komentáre", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Odstrániť aktuálne komentáre", + "Common.Views.ReviewChanges.txtCommentRemMy": "Odstrániť moje komentáre", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Odstrániť moje aktuálne komentáre", "Common.Views.ReviewChanges.txtCommentRemove": "Odstrániť", + "Common.Views.ReviewChanges.txtCommentResolve": "Vyriešiť", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Vyriešiť všetky komentáre", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Vyriešiť aktuálne komentáre", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Vyriešiť moje komentáre", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Vyriešiť moje aktuálne komentáre", "Common.Views.ReviewChanges.txtDocLang": "Jazyk", "Common.Views.ReviewChanges.txtFinal": "Všetky zmeny prijaté (ukážka)", "Common.Views.ReviewChanges.txtFinalCap": "Posledný", @@ -192,6 +355,8 @@ "Common.Views.ReviewChanges.txtRejectAll": "Odmietnuť všetky zmeny", "Common.Views.ReviewChanges.txtRejectChanges": "Odmietnuť zmeny", "Common.Views.ReviewChanges.txtRejectCurrent": "Odmietnuť aktuálnu zmenu", + "Common.Views.ReviewChanges.txtSharing": "Zdieľanie", + "Common.Views.ReviewChanges.txtSpelling": "Kontrola pravopisu", "Common.Views.ReviewChanges.txtTurnon": "Sledovať zmeny", "Common.Views.ReviewChanges.txtView": "Režim zobrazenia", "Common.Views.ReviewPopover.textAdd": "Pridať", @@ -203,36 +368,81 @@ "Common.Views.ReviewPopover.textMentionNotify": "+zmienka upovedomí užívateľa mailom", "Common.Views.ReviewPopover.textOpenAgain": "Znova otvoriť", "Common.Views.ReviewPopover.textReply": "Odpovedať", + "Common.Views.ReviewPopover.textResolve": "Vyriešiť", + "Common.Views.ReviewPopover.textViewResolved": "Nemáte povolenie pre opätovné otvorenie komentáru", + "Common.Views.ReviewPopover.txtDeleteTip": "Odstrániť", + "Common.Views.ReviewPopover.txtEditTip": "Upraviť", "Common.Views.SaveAsDlg.textLoading": "Načítavanie", "Common.Views.SaveAsDlg.textTitle": "Priečinok na uloženie", "Common.Views.SelectFileDlg.textLoading": "Načítavanie", + "Common.Views.SelectFileDlg.textTitle": "Vybrať zdroj údajov", "Common.Views.SignDialog.textBold": "Tučné", "Common.Views.SignDialog.textCertificate": "Certifikát", "Common.Views.SignDialog.textChange": "Zmeniť", "Common.Views.SignDialog.textInputName": "Zadať meno signatára", "Common.Views.SignDialog.textItalic": "Kurzíva", + "Common.Views.SignDialog.textNameError": "Meno podpisovateľa nesmie byť prázdne. ", "Common.Views.SignDialog.textPurpose": "Účel podpisovania tohto dokumentu", "Common.Views.SignDialog.textSelect": "Vybrať", "Common.Views.SignDialog.textSelectImage": "Vybrať obrázok", + "Common.Views.SignDialog.textSignature": "Podpis vyzerá ako", + "Common.Views.SignDialog.textTitle": "Podpísať dokument", "Common.Views.SignDialog.textUseImage": "alebo kliknite na položku 'Vybrať obrázok' ak chcete použiť obrázok ako podpis", "Common.Views.SignDialog.textValid": "Platný od %1 do %2", "Common.Views.SignDialog.tipFontName": "Názov písma", "Common.Views.SignDialog.tipFontSize": "Veľkosť písma", "Common.Views.SignSettingsDialog.textAllowComment": "Povoliť podpisujúcemu pridať komentár do podpisového dialógu", + "Common.Views.SignSettingsDialog.textInfo": "Informácie o signatárovi", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Meno", + "Common.Views.SignSettingsDialog.textInfoTitle": "Názov signatára", "Common.Views.SignSettingsDialog.textInstructions": "Pokyny pre signatára", + "Common.Views.SignSettingsDialog.textShowDate": "Zobraziť dátum podpisu v riadku podpisu", + "Common.Views.SignSettingsDialog.textTitle": "Nastavenia podpisu", + "Common.Views.SignSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", "Common.Views.SymbolTableDialog.textCharacter": "Symbol", + "Common.Views.SymbolTableDialog.textCode": "Hodnota unicode HEX ", + "Common.Views.SymbolTableDialog.textCopyright": "Znak autorských práv", "Common.Views.SymbolTableDialog.textDCQuote": "Uzatvárajúca úvodzovka", + "Common.Views.SymbolTableDialog.textDOQuote": "Úvodná dvojitá úvodzovka", + "Common.Views.SymbolTableDialog.textEllipsis": "Horizontálna elipsa", + "Common.Views.SymbolTableDialog.textEmDash": "Dlhá pomlčka", + "Common.Views.SymbolTableDialog.textEmSpace": "Dlhá medzera", + "Common.Views.SymbolTableDialog.textEnDash": "Krátka pomlčka", + "Common.Views.SymbolTableDialog.textEnSpace": "Krátka medzera", "Common.Views.SymbolTableDialog.textFont": "Písmo", + "Common.Views.SymbolTableDialog.textNBHyphen": "Pevná pomlčka", + "Common.Views.SymbolTableDialog.textNBSpace": "Nezalomiteľná medzera", + "Common.Views.SymbolTableDialog.textPilcrow": "Typografický znak odstavca", "Common.Views.SymbolTableDialog.textQEmSpace": "Medzera 1/4 Em", "Common.Views.SymbolTableDialog.textRange": "Rozsah", + "Common.Views.SymbolTableDialog.textRecent": "Nedávno použité symboly", + "Common.Views.SymbolTableDialog.textRegistered": "Registrovaná značka", "Common.Views.SymbolTableDialog.textSCQuote": "Uzatvárajúca úvodzovka", + "Common.Views.SymbolTableDialog.textSection": "Paragraf", + "Common.Views.SymbolTableDialog.textShortcut": "Klávesová skratka", + "Common.Views.SymbolTableDialog.textSHyphen": "Mäkký spojovník", + "Common.Views.SymbolTableDialog.textSOQuote": "Úvodná jednoduchá úvodzovka", + "Common.Views.SymbolTableDialog.textSpecial": "Špeciálne znaky", "Common.Views.SymbolTableDialog.textSymbols": "Symboly", "Common.Views.SymbolTableDialog.textTitle": "Symbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Symbol ochrannej známky", + "Common.Views.UserNameDialog.textDontShow": "Nepýtať sa ma znova", + "Common.Views.UserNameDialog.textLabel": "Štítok:", + "Common.Views.UserNameDialog.textLabelError": "Etiketa nesmie byť prázdna.", "SSE.Controllers.DataTab.textColumns": "Stĺpce", + "SSE.Controllers.DataTab.textEmptyUrl": "Musíte špecifikovať adresu URL.", "SSE.Controllers.DataTab.textRows": "Riadky", + "SSE.Controllers.DataTab.textWizard": "Text na stĺpec", + "SSE.Controllers.DataTab.txtDataValidation": "Overenie dát", "SSE.Controllers.DataTab.txtExpand": "Expandovať/rozšíriť", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Údaje vedľa výberu sa neodstránia. Chcete rozšíriť výber tak, aby zahŕňal susediace údaje, alebo chcete pokračovať len s aktuálne vybratými bunkami?", + "SSE.Controllers.DataTab.txtExtendDataValidation": "Výber obsahuje niektoré bunky bez nastavení overenia údajov.
    Chcete rozšíriť overenie údajov na tieto bunky?", + "SSE.Controllers.DataTab.txtImportWizard": "Sprievodca importom textu", + "SSE.Controllers.DataTab.txtRemDuplicates": "Odobrať duplicity", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "Výber obsahuje viac ako jeden typ overenia.
    Vymazať aktuálne nastavenia a pokračovať?", + "SSE.Controllers.DataTab.txtRemSelected": "Odstrániť vybrané", + "SSE.Controllers.DataTab.txtUrlTitle": "Vložiť adresu domény URL", "SSE.Controllers.DocumentHolder.alignmentText": "Zarovnanie", "SSE.Controllers.DocumentHolder.centerText": "Stred", "SSE.Controllers.DocumentHolder.deleteColumnText": "Odstrániť stĺpec", @@ -251,9 +461,11 @@ "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Možnosti autokorekcie", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Šírka stĺpca {0} symboly ({1} pixely)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Výška riadku {0} bodov ({1} pixelov)", - "SSE.Controllers.DocumentHolder.textCtrlClick": "Stlačte CTRL a kliknite na odkaz", + "SSE.Controllers.DocumentHolder.textCtrlClick": "Kliknutím na odkaz ho otvoríte alebo kliknutím a podržaním tlačidla myši vyberte bunku.", "SSE.Controllers.DocumentHolder.textInsertLeft": "Vložiť vľavo", "SSE.Controllers.DocumentHolder.textInsertTop": "Vložiť hore", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Špeciálne prilepiť", + "SSE.Controllers.DocumentHolder.textStopExpand": "Zastaviť automatické rozširovanie tabuliek", "SSE.Controllers.DocumentHolder.textSym": "sym", "SSE.Controllers.DocumentHolder.tipIsLocked": "Tento prvok upravuje iný používateľ.", "SSE.Controllers.DocumentHolder.txtAboveAve": "Nadpriemer", @@ -268,6 +480,7 @@ "SSE.Controllers.DocumentHolder.txtAddVer": "Pridať zvislú čiaru", "SSE.Controllers.DocumentHolder.txtAlignToChar": "Zarovnať na znak", "SSE.Controllers.DocumentHolder.txtAll": "(všetko)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "Vráti celý obsah tabuľky alebo zadaných stĺpcov tabuľky vrátane hlavičiek stĺpcov, údajov a riadkov celkového počtu", "SSE.Controllers.DocumentHolder.txtAnd": "a", "SSE.Controllers.DocumentHolder.txtBegins": "Začať s", "SSE.Controllers.DocumentHolder.txtBelowAve": "Podpriemerný", @@ -277,6 +490,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Stĺpec", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Zarovnanie stĺpcov", "SSE.Controllers.DocumentHolder.txtContains": "Obsahuje", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "Vráti dátové bunky tabuľky alebo zadané stĺpce tabuľky", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Zmenšiť veľkosť obsahu", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Odstrániť obsah", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Odstrániť manuálny rozdeľovač", @@ -287,6 +501,8 @@ "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Odstrániť odmocninu", "SSE.Controllers.DocumentHolder.txtEnds": "Končí na", "SSE.Controllers.DocumentHolder.txtEquals": "rovná se", + "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Zhodné s farbou bunky", + "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Zhodné s farbou písma", "SSE.Controllers.DocumentHolder.txtExpand": "Rozbaliť a zoradiť", "SSE.Controllers.DocumentHolder.txtExpandSort": "Údaje vedľa výberu nebudú zoradené. Chcete rozšíriť výber tak, aby zahŕňal priľahlé údaje, alebo pokračovať v triedení len vybraných buniek?", "SSE.Controllers.DocumentHolder.txtFilterBottom": "Dole", @@ -298,6 +514,7 @@ "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Väčšie alebo rovná sa", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Zadať nad text", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Zadať pod text", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Vráti hlavičky stĺpcov pre tabuľku alebo určené stĺpce tabuľky", "SSE.Controllers.DocumentHolder.txtHeight": "Výška", "SSE.Controllers.DocumentHolder.txtHideBottom": "Skryť spodné orámovanie", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Skryť dolné ohraničenie", @@ -313,6 +530,7 @@ "SSE.Controllers.DocumentHolder.txtHideTop": "Skryť horné orámovanie", "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Skryť horné ohraničenie", "SSE.Controllers.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru", + "SSE.Controllers.DocumentHolder.txtImportWizard": "Sprievodca importom textu", "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Zväčšiť veľkosť obsahu/argumentu", "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Vložiť argument/obsah po", "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred", @@ -326,9 +544,11 @@ "SSE.Controllers.DocumentHolder.txtLimitChange": "Zmeniť polohu obmedzenia", "SSE.Controllers.DocumentHolder.txtLimitOver": "Limita nad textom", "SSE.Controllers.DocumentHolder.txtLimitUnder": "Limita pod textom", + "SSE.Controllers.DocumentHolder.txtLockSort": "Blízko vášho výberu existujú dáta, nemáte však dostatočné oprávnenia k úprave týchto buniek.
    Chcete pokračovať s aktuálnym výberom? ", "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Prispôsobenie zátvoriek k výške obsahu", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Zarovnanie matice", "SSE.Controllers.DocumentHolder.txtNoChoices": "Neexistujú žiadne možnosti na vyplnenie bunky.
    Len hodnoty textu zo stĺpca môžu byť vybrané na výmenu.", + "SSE.Controllers.DocumentHolder.txtNotBegins": "Nezačína s", "SSE.Controllers.DocumentHolder.txtNotContains": "Neobsahuje", "SSE.Controllers.DocumentHolder.txtNotEnds": "Nekončí s", "SSE.Controllers.DocumentHolder.txtNotEquals": "nerovná sa", @@ -352,10 +572,12 @@ "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Hodnota + formát čísla", "SSE.Controllers.DocumentHolder.txtPasteValues": "Vložiť iba hodnotu", "SSE.Controllers.DocumentHolder.txtPercent": "Percento", + "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Znovu automaticky zväčšiť tabuľku", "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", "SSE.Controllers.DocumentHolder.txtRemLimit": "Odstrániť limitu", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Odstrániť znak akcentu", "SSE.Controllers.DocumentHolder.txtRemoveBar": "Odstrániť vodorovnú čiaru", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Chcete odstrániť tento podpis?
    Tento krok je nezvratný.", "SSE.Controllers.DocumentHolder.txtRemScripts": "Odstrániť skripty", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Odstrániť dolný index", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Odstrániť horný index", @@ -371,8 +593,13 @@ "SSE.Controllers.DocumentHolder.txtSorting": "Zoraďovanie", "SSE.Controllers.DocumentHolder.txtSortSelected": "Zoradiť vybrané", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Zložená zátvorka", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "Zadajte iba tento riadok špecifikovaného stĺpca", "SSE.Controllers.DocumentHolder.txtTop": "Hore", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Vráti celkový počet riadkov pre tabuľku alebo zadané stĺpce tabuľky", "SSE.Controllers.DocumentHolder.txtUnderbar": "Čiara pod textom", + "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Vrátiť späť automatické rozbalenie tabuľky", + "SSE.Controllers.DocumentHolder.txtUseTextImport": "Použite sprievodcu importom textu", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "Kliknutie na tento odkaz môže byť škodlivé pre Vaše zariadenie a Vaše dáta.
    Ste si istý, že chcete pokračovať?", "SSE.Controllers.DocumentHolder.txtWidth": "Šírka", "SSE.Controllers.FormulaDialog.sCategoryAll": "Všetko", "SSE.Controllers.FormulaDialog.sCategoryCube": "Kocka", @@ -385,12 +612,14 @@ "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logické", "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Vyhľadávanie a referencie", "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Matematika a trigonometria", + "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Štatistické", "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Text a dáta", "SSE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaný zošit", "SSE.Controllers.LeftMenu.textByColumns": "Podľa stĺpcov", "SSE.Controllers.LeftMenu.textByRows": "Podľa riadkov", "SSE.Controllers.LeftMenu.textFormulas": "Vzorce", "SSE.Controllers.LeftMenu.textItemEntireCell": "Celý obsah buniek", + "SSE.Controllers.LeftMenu.textLoadHistory": "Načítavanie histórie verzií ...", "SSE.Controllers.LeftMenu.textLookin": "Prezrieť ", "SSE.Controllers.LeftMenu.textNoTextFound": "Dáta, ktoré ste hľadali, sa nenašli. Prosím, upravte možnosti vyhľadávania.", "SSE.Controllers.LeftMenu.textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.", @@ -405,12 +634,14 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
    Ste si istý, že chcete pokračovať?", "SSE.Controllers.Main.confirmMoveCellRange": "Rozsah cieľových buniek môže obsahovať údaje. Pokračovať v operácii?", "SSE.Controllers.Main.confirmPutMergeRange": "Zdrojové dáta obsahovali zlúčené bunky.
    Predtým, ako boli vložené do tabuľky, boli rozpojené.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Vzorce v riadku hlavičky budú odstránené a skonvertované na statický text.
    Chcete pokračovať?", "SSE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", "SSE.Controllers.Main.criticalErrorExtText": "Stlačte \"OK\" pre návrat do zoznamu dokumentov.", "SSE.Controllers.Main.criticalErrorTitle": "Chyba", "SSE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.", "SSE.Controllers.Main.downloadTextText": "Načítavanie tabuľky...", "SSE.Controllers.Main.downloadTitleText": "Načítavanie tabuľky", + "SSE.Controllers.Main.errNoDuplicates": "Duplicitné hodnoty neboli nájdené", "SSE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
    Prosím, kontaktujte svojho správcu dokumentového servera. ", "SSE.Controllers.Main.errorArgsRange": "Chyba v zadanom vzorci.
    Používa sa nesprávny rozsah argumentov.", "SSE.Controllers.Main.errorAutoFilterChange": "Operácia nie je povolená, pretože sa pokúša posunúť bunky do tabuľky na pracovnom hárku.", @@ -419,7 +650,10 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operáciu nemožno vykonať, pretože oblasť obsahuje filtrované bunky.
    Odkryte filtrované prvky a skúste to znova.", "SSE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", "SSE.Controllers.Main.errorCannotUngroup": "Nemožno zrušiť zoskupenie. Pre začatie náčrtu, vyberte podrobné riadky alebo stĺpce a zoskupte ich.", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "Tento príkaz nemožno použiť na zabezpečený list. Pre použitie príkazu, zrušte zabezpečenie listu.
    Môže byť vyžadované heslo. ", "SSE.Controllers.Main.errorChangeArray": "Nie je možné meniť časť poľa.", + "SSE.Controllers.Main.errorChangeFilteredRange": "Týmto sa zmení filtrovaný rozsah vo vašom hárku.
    Ak chcete dokončiť túto úlohu, odstráňte automatické filtre.", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Bunka, alebo graf, ktorý sa pokúšate zmeniť je na zabezpečenom liste. Pre uskutočnenie zmien, vypnite zabezpečenie listu. Môže byť vyžadované heslo.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.", "SSE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
    Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Tento príkaz sa nedá použiť s viacerými výbermi.
    Vyberte jeden rozsah a skúste to znova.", @@ -429,47 +663,74 @@ "SSE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
    Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ", "SSE.Controllers.Main.errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.", "SSE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", + "SSE.Controllers.Main.errorDataValidate": "Hodnota, ktorú ste zadali, nie je platná.
    Používateľ má obmedzené hodnoty, ktoré je možné zadať do tejto bunky.", "SSE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "Pokúšate sa zmazať stĺpec, ktorý obsahuje uzamknutú bunku. Uzamknuté bunky nemôžu byť zmazané, pokiaľ je list zabezpečený.
    Pre odstránenie uzamknutej bunky, vypnite zabezpečenie listu. Môže byť vyžadované heslo.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "Pokúšate sa zmazať riadok, ktorý obsahuje uzamknuté bunky. Uzamknuté bunky môžu byť zmazané, pokiaľ je list zabezpečený.
    Pre odstránenie uzamknutia bunky, vypnite zabezpečenie listu. Môže byť vyžadované heslo.", "SSE.Controllers.Main.errorEditingDownloadas": "Pri práci s dokumentom došlo k chybe.
    Použite voľbu \"Stiahnuť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", "SSE.Controllers.Main.errorEditingSaveas": "Pri práci s dokumentom došlo k chybe.
    Použite voľbu \"Uložiť ako...\" a uložte si záložnú kópiu súboru na svoj počítač.", + "SSE.Controllers.Main.errorEditView": "Existujúce zobrazenie hárka nie je možné upravovať a nové nemožno momentálne vytvárať, pretože niektoré z nich sa upravujú.", + "SSE.Controllers.Main.errorEmailClient": "Nenašiel sa žiadny emailový klient.", "SSE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", "SSE.Controllers.Main.errorFileRequest": "Externá chyba.
    Chyba požiadavky súboru. Ak chyba pretrváva, kontaktujte podporu.", + "SSE.Controllers.Main.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
    Kontaktujte prosím vášho správcu dokumentového servera o ďalšie podrobnosti.", "SSE.Controllers.Main.errorFileVKey": "Externá chyba.
    Nesprávny bezpečnostný kľúč. Ak chyba pretrváva, kontaktujte podporu.", "SSE.Controllers.Main.errorFillRange": "Nepodarilo sa vyplniť vybraný rozsah buniek.
    Všetky zlúčené bunky musia mať rovnakú veľkosť.", "SSE.Controllers.Main.errorForceSave": "Pri ukladaní súboru sa vyskytla chyba. Ak chcete súbor uložiť na pevný disk počítača, použite možnosť 'Prevziať ako' alebo to skúste znova neskôr.", "SSE.Controllers.Main.errorFormulaName": "Chyba v zadanom vzorci.
    Používa sa nesprávny názov vzorca.", "SSE.Controllers.Main.errorFormulaParsing": "Interná chyba pri analýze vzorca.", + "SSE.Controllers.Main.errorFrmlMaxLength": "Dĺžka vášho vzorca presahuje limit 8192 znakov.
    Upravte ho a skúste to znova.", + "SSE.Controllers.Main.errorFrmlMaxReference": "Vzorec nemôžete vložiť, pretože má priveľa hodnôt,
    odkazov na bunky, a/alebo názvov.", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "Textové hodnoty vo vzorcoch sú obmedzené na 255 znakov.
    Použite operáciu CONCATENATE alebo operátor zreťazenia (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcia sa týka listu, ktorý neexistuje.
    Skontrolujte prosím údaje a skúste to znova.", "SSE.Controllers.Main.errorFTChangeTableRangeError": "Operácia sa nedala dokončiť pre zvolený rozsah buniek.
    Vyberte rozsah tak, aby prvý riadok tabuľky bol na rovnakom riadku
    a výsledná tabuľka sa prekrývala s aktuálnou.", "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Operácia sa nedala dokončiť pre zvolený rozsah buniek.
    Zvoľte rozsah, ktorý nezahŕňa iné tabuľky.", "SSE.Controllers.Main.errorInvalidRef": "Zadajte správny názov pre výber alebo platný odkaz, na ktorý chcete prejsť.", "SSE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", "SSE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", + "SSE.Controllers.Main.errorLabledColumnsPivot": "Ak chcete vytvoriť kontingenčnú tabuľku, použite údaje, ktoré sú usporiadané ako zoznam s označenými stĺpcami.", + "SSE.Controllers.Main.errorLoadingFont": "Fonty sa nenahrali.
    Kontaktujte prosím svojho administrátora Servera dokumentov.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Odkaz na umiestnenie alebo rozsah údajov nie je platný.", "SSE.Controllers.Main.errorLockedAll": "Operáciu nemožno vykonať, pretože list bol zamknutý iným používateľom.", "SSE.Controllers.Main.errorLockedCellPivot": "Nemôžete meniť údaje v kontingenčnej tabuľke.", "SSE.Controllers.Main.errorLockedWorksheetRename": "List nemôže byť momentálne premenovaný, pretože je premenovaný iným používateľom", + "SSE.Controllers.Main.errorMaxPoints": "Maximálny počet bodov v sérii na jeden graf je 4096.", "SSE.Controllers.Main.errorMoveRange": "Nie je možné zmeniť časť zlúčenej bunky", + "SSE.Controllers.Main.errorMoveSlicerError": "Prierezy tabuľky nemôžou byť skopírované z jedného zošitu do druhého.
    Akciu opakujte vybraním celej tabuľky vrátane prierezov.", "SSE.Controllers.Main.errorMultiCellFormula": "V tabuľkách nie sú dovolené vzorce pre pole s viacerými bunkami", - "SSE.Controllers.Main.errorOpenWarning": "Dĺžka jedného zo vzorcov v súbore prekročila
    povolený počet znakov a bola odstránená.", + "SSE.Controllers.Main.errorNoDataToParse": "Neboli vybrané žiadne dáta pre spracovanie.", + "SSE.Controllers.Main.errorOpenWarning": "Jeden zo vzorcov súboru prekračuje limit 8192 znakov.
    Vzorec bol odstránený.", "SSE.Controllers.Main.errorOperandExpected": "Zadaná funkcia syntax nie je správna. Skontrolujte prosím, či chýba jedna zo zátvoriek-'(' alebo ')'.", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "Zadané heslo nie je správne.
    Skontrolujte, že máte vypnutý CAPS LOCK a správnu veľkosť písmen.", "SSE.Controllers.Main.errorPasteMaxRange": "Oblasť kopírovania a prilepovania sa nezhoduje.
    Prosím, vyberte oblasť s rovnakou veľkosťou alebo kliknite na prvú bunku v rade a vložte skopírované bunky.", + "SSE.Controllers.Main.errorPasteMultiSelect": "Túto akciu nemožno vykonať s výberom viacerých rozsahov.
    Vyberte jeden rozsah a skúste to znova.", + "SSE.Controllers.Main.errorPasteSlicerError": "Prierezy tabuľky nemôžu byť skopírované z jedného zošitu do druhého.", + "SSE.Controllers.Main.errorPivotGroup": "Vybrané objekty nie je možné zlúčiť", + "SSE.Controllers.Main.errorPivotOverlap": "Výstup z kontingenčnej tabuľky nesmie prekrývať tabuľku.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "Prehľad kontingenčnej tabuľky bol uložený bez základných údajov.
    Na aktualizáciu prehľadu použite tlačidlo „Obnoviť“.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Bohužiaľ, nie je možné v aktuálnej verzii programu vytlačiť viac ako 1500 strán naraz.
    Toto obmedzenie bude odstránené v najbližších vydaniach.", "SSE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo", "SSE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", "SSE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.", "SSE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.", "SSE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", + "SSE.Controllers.Main.errorSetPassword": "Heslo nemohlo byť použité", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Umiestnenie odkazu je chybné, pretože bunky nie sú na rovnakom riadku ale stĺpci.
    Vyberte bunky na rovnakom riadku alebo stĺpci.", "SSE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    začiatočná cena, max cena, min cena, konečná cena.", "SSE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
    Prosím, kontaktujte svojho správcu dokumentového servera. ", "SSE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
    Prosím, kontaktujte svojho správcu dokumentového servera. ", "SSE.Controllers.Main.errorUnexpectedGuid": "Externá chyba.
    Neočakávaná GUID. Ak chyba pretrváva, kontaktujte podporu.", "SSE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internetové pripojenie bolo obnovené a verzia súboru bola zmenená.
    Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", "SSE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", "SSE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", - "SSE.Controllers.Main.errorViewerDisconnect": "Spojenie so serverom je prerušené. Dokument môžete zobraziť,
    ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.", + "SSE.Controllers.Main.errorViewerDisconnect": "Spojenie so serverom je prerušené. Dokument môžete zobraziť,
    ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví a stránka sa znovu nenačíta.", "SSE.Controllers.Main.errorWrongBracketsCount": "Chyba v zadanom vzorci.
    Používa sa nesprávny počet zátvoriek.", "SSE.Controllers.Main.errorWrongOperator": "Chyba v zadanom vzorci. Používa sa nesprávny operátor.
    Prosím, opravte chybu.", + "SSE.Controllers.Main.errorWrongPassword": "Zadané heslo nie je správne.", + "SSE.Controllers.Main.errRemDuplicates": "Boli nájdené a zmazané duplicitné hodnoty: {0}, ostáva neopakujúcich sa hodnôt: {1}.", "SSE.Controllers.Main.leavePageText": "V tejto tabuľke máte neuložené zmeny. Kliknite na položku 'Zostať na tejto stránke' a následne na položku 'Uložiť' aby ste uložili zmeny. Kliknutím na položku 'Opustiť túto stránku' odstránite všetky neuložené zmeny.", + "SSE.Controllers.Main.leavePageTextOnClose": "Všetky neuložené zmeny v tomto zošite budú stratené.
    Pokiaľ ich chcete uložiť, kliknite na \"Storno\" a potom \"Uložiť\". Pokiaľ chcete všetky neuložené zmeny zahodiť, kliknite na \"OK\".", "SSE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", "SSE.Controllers.Main.loadFontsTitleText": "Načítavanie dát", "SSE.Controllers.Main.loadFontTextText": "Načítavanie dát...", @@ -480,7 +741,7 @@ "SSE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku", "SSE.Controllers.Main.loadingDocumentTitleText": "Načítanie zošitu", "SSE.Controllers.Main.notcriticalErrorTitle": "Upozornenie", - "SSE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba", + "SSE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba.", "SSE.Controllers.Main.openTextText": "Otváranie zošitu...", "SSE.Controllers.Main.openTitleText": "Otváranie zošitu", "SSE.Controllers.Main.pastInMergeAreaError": "Nie je možné zmeniť časť zlúčenej bunky", @@ -489,25 +750,45 @@ "SSE.Controllers.Main.reloadButtonText": "Obnoviť stránku", "SSE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.", "SSE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý", - "SSE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", + "SSE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba.", + "SSE.Controllers.Main.saveErrorTextDesktop": "Súbor nemohol byť uložený, alebo vytvorený
    Možné dôvody:
    1.Súbor je možne použiť iba na čítanie.
    2. Súbor je editovaný iným užívateľom.
    3.Úložisko je plné, alebo poškodené.", "SSE.Controllers.Main.saveTextText": "Ukladanie zošitu...", "SSE.Controllers.Main.saveTitleText": "Ukladanie zošitu", "SSE.Controllers.Main.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", "SSE.Controllers.Main.textAnonymous": "Anonymný", + "SSE.Controllers.Main.textApplyAll": "Použiť na všetky rovnice", "SSE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", + "SSE.Controllers.Main.textChangesSaved": "Všetky zmeny boli uložené", "SSE.Controllers.Main.textClose": "Zatvoriť", "SSE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip", "SSE.Controllers.Main.textConfirm": "Potvrdenie", "SSE.Controllers.Main.textContactUs": "Kontaktujte predajcu", + "SSE.Controllers.Main.textConvertEquation": "Táto rovnica bola vytvorená starou verziou editora rovníc, ktorá už nie je podporovaná. Pre jej upravenie, preveďte rovnicu do formátu Office Math ML.
    Previesť teraz?", + "SSE.Controllers.Main.textCustomLoader": "Majte na pamäti, že podľa podmienok licencie nie ste oprávnený meniť načítač.
    Pre získanie ponuky sa obráťte na naše obchodné oddelenie.", + "SSE.Controllers.Main.textDisconnect": "Spojenie sa stratilo", + "SSE.Controllers.Main.textFillOtherRows": "Vyplniť ostatné riadky", + "SSE.Controllers.Main.textFormulaFilledAllRows": "Vzorec zadaný v {0} riadkoch obsahuje dáta. Doplnenie dát do ostatných riadkov, môže trvať niekoľko minút.", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "Vzorec vyplnil prvých {0} riadkov. Vyplnenie ďalších prázdnych riadkov môže trvať niekoľko minút.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "Vzorec vyplnený iba v prvých {0} riadkoch obsahuje údaje z dôvodu šetrenia pamäte. V tomto hárku je ďalších {1} riadkov s údajmi. Môžete ich vyplniť ručne.", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "Vzorec vyplnil iba prvých {0} riadkov, z dôvodu ušetrenia pamäte. Ostatné riadky v tomto hárku neobsahujú údaje.", + "SSE.Controllers.Main.textGuest": "Hosť", + "SSE.Controllers.Main.textHasMacros": "Súbor obsahuje automatické makrá.
    Chcete spustiť makrá?", + "SSE.Controllers.Main.textLearnMore": "Zistiť viac", "SSE.Controllers.Main.textLoadingDocument": "Načítanie zošitu", + "SSE.Controllers.Main.textLongName": "Vložte meno, ktorého dĺžka je menej ako 128 znakov.", + "SSE.Controllers.Main.textNeedSynchronize": "Máte aktualizácie", "SSE.Controllers.Main.textNo": "Nie", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE obmedzenie pripojenia", + "SSE.Controllers.Main.textNoLicenseTitle": "Bol dosiahnutý limit licencie", "SSE.Controllers.Main.textPaidFeature": "Platená funkcia", "SSE.Controllers.Main.textPleaseWait": "Operácia môže trvať dlhšie, než sa očakávalo. Prosím čakajte...", - "SSE.Controllers.Main.textRemember": "Pamätať si moju voľbu", + "SSE.Controllers.Main.textReconnect": "Spojenie sa obnovilo", + "SSE.Controllers.Main.textRemember": "Zapamätaj si moju voľbu pre všetky súbory", + "SSE.Controllers.Main.textRenameError": "Meno užívateľa nesmie byť prázdne.", + "SSE.Controllers.Main.textRenameLabel": "Zadajte meno, ktoré sa bude používať pre spoluprácu", "SSE.Controllers.Main.textShape": "Tvar", "SSE.Controllers.Main.textStrict": "Prísny režim", "SSE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.
    Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali Vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "Funkcia Späť/Znova sú vypnuté pre rýchli režim spolupráce. ", "SSE.Controllers.Main.textYes": "Áno", "SSE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", "SSE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", @@ -525,46 +806,143 @@ "SSE.Controllers.Main.txtColumn": "Stĺpec", "SSE.Controllers.Main.txtConfidential": "Dôverné", "SSE.Controllers.Main.txtDate": "Dátum", + "SSE.Controllers.Main.txtDays": "Dni", "SSE.Controllers.Main.txtDiagramTitle": "Názov grafu", "SSE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav...", + "SSE.Controllers.Main.txtErrorLoadHistory": "Načítavanie histórie zlyhalo", "SSE.Controllers.Main.txtFiguredArrows": "Šipky", "SSE.Controllers.Main.txtFile": "Súbor", + "SSE.Controllers.Main.txtGrandTotal": "Celkový súčet", + "SSE.Controllers.Main.txtGroup": "Skupina", + "SSE.Controllers.Main.txtHours": "Hodiny", "SSE.Controllers.Main.txtLines": "Čiary", "SSE.Controllers.Main.txtMath": "Matematika", + "SSE.Controllers.Main.txtMinutes": "Minúty", + "SSE.Controllers.Main.txtMonths": "Mesiace", + "SSE.Controllers.Main.txtMultiSelect": "Viacnásobný výber (Alt+S)", "SSE.Controllers.Main.txtOr": "%1 alebo %2", "SSE.Controllers.Main.txtPage": "Stránka", "SSE.Controllers.Main.txtPageOf": "Stránka %1 z %2", "SSE.Controllers.Main.txtPages": "Strany", + "SSE.Controllers.Main.txtPreparedBy": "Pripravil(a)", + "SSE.Controllers.Main.txtPrintArea": "Oblasť_tlače", + "SSE.Controllers.Main.txtQuarter": "Štvrtina", + "SSE.Controllers.Main.txtQuarters": "Štvrtiny", "SSE.Controllers.Main.txtRectangles": "Obdĺžniky", "SSE.Controllers.Main.txtRow": "Riadok", + "SSE.Controllers.Main.txtRowLbls": "Štítky riadku", + "SSE.Controllers.Main.txtSeconds": "Sekundy", "SSE.Controllers.Main.txtSeries": "Rady", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Bublina s čiarou 1 (ohraničenie a akcentový pruh)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Bublina s čiarou 2 (ohraničenie a zvýraznenie)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Bublina s čiarou 3 (Ohraničenie a zvýraznenie)", + "SSE.Controllers.Main.txtShape_accentCallout1": "Bublina s čiarou 1 (Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout2": "Bublina s čiarou 2 (zvýraznenie)", + "SSE.Controllers.Main.txtShape_accentCallout3": "Bublina s čiarou 3 (zvýraznená)", "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tlačítko Späť alebo Predchádzajúce", "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Tlačítko Začiatok", "SSE.Controllers.Main.txtShape_actionButtonBlank": "Prázdne tlačítko", "SSE.Controllers.Main.txtShape_actionButtonDocument": "Tlačítko Dokument", "SSE.Controllers.Main.txtShape_actionButtonEnd": "Tlačítko Koniec", + "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Tlačítko vpred alebo ďalej", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "Tlačítko Nápoveda", + "SSE.Controllers.Main.txtShape_actionButtonHome": "Tlačítko Domov", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "Tlačítko Informácia", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "Tlačítko Film", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "Tlačítko Návrat", + "SSE.Controllers.Main.txtShape_actionButtonSound": "Tlačítko Zvuk", "SSE.Controllers.Main.txtShape_arc": "Oblúk", "SSE.Controllers.Main.txtShape_bentArrow": "Ohnutá šípka", + "SSE.Controllers.Main.txtShape_bentConnector5": "Kolenový konektor", + "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Kolenový konektor so šípkou", + "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Kolenový dvojšípkový konektor", "SSE.Controllers.Main.txtShape_bentUpArrow": "Šípka ohnutá hore", "SSE.Controllers.Main.txtShape_bevel": "Skosenie", "SSE.Controllers.Main.txtShape_blockArc": "Časť kruhu", + "SSE.Controllers.Main.txtShape_borderCallout1": "Bublina s čiarou 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "Bublina s čiarou 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "Bublina s čiarou 3", "SSE.Controllers.Main.txtShape_bracePair": "Dvojitá zátvorka", + "SSE.Controllers.Main.txtShape_callout1": "Bublina s čiarou 1 (bez ohraničenia)", + "SSE.Controllers.Main.txtShape_callout2": "Bublina s čiarou 2 (bez orámovania)", + "SSE.Controllers.Main.txtShape_callout3": "Bublina s čiarou 3 (bez orámovania)", "SSE.Controllers.Main.txtShape_can": "Môže", "SSE.Controllers.Main.txtShape_chevron": "Chevron", + "SSE.Controllers.Main.txtShape_chord": "Akord", "SSE.Controllers.Main.txtShape_circularArrow": "okrúhla šípka", "SSE.Controllers.Main.txtShape_cloud": "Cloud", + "SSE.Controllers.Main.txtShape_cloudCallout": "Upozornenie na cloud", "SSE.Controllers.Main.txtShape_corner": "Roh", "SSE.Controllers.Main.txtShape_cube": "Kocka", + "SSE.Controllers.Main.txtShape_curvedConnector3": "Zakrivený konektor", + "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Konektor v tvare zakrivenej šípky", + "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Konektor v tvare zakrivenej dvojitej šípky", + "SSE.Controllers.Main.txtShape_curvedDownArrow": "Šípka zahnutá nadol", + "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Šípka zahnutá doľava", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "Šípka zahnutá doprava", + "SSE.Controllers.Main.txtShape_curvedUpArrow": "Šípka zahnutá nahor", "SSE.Controllers.Main.txtShape_decagon": "Desaťuhoľník", + "SSE.Controllers.Main.txtShape_diagStripe": "Priečny prúžok", + "SSE.Controllers.Main.txtShape_diamond": "Diamant", + "SSE.Controllers.Main.txtShape_dodecagon": "Dvanásťuhoľník", + "SSE.Controllers.Main.txtShape_donut": "Šiška", "SSE.Controllers.Main.txtShape_doubleWave": "Dvojitá vlnovka", "SSE.Controllers.Main.txtShape_downArrow": "Šípka dole", + "SSE.Controllers.Main.txtShape_downArrowCallout": "Vyvolanie šípky nadol", + "SSE.Controllers.Main.txtShape_ellipse": "Elipsa", + "SSE.Controllers.Main.txtShape_ellipseRibbon": "Pruh zahnutý nadol", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Pruh zahnutý nahor", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Vývojový diagram: Vystriedať proces", + "SSE.Controllers.Main.txtShape_flowChartCollate": "Vývojový diagram: Collate", + "SSE.Controllers.Main.txtShape_flowChartConnector": "Vývojový diagram: Konektor", + "SSE.Controllers.Main.txtShape_flowChartDecision": "Vývojový diagram: Rozhodnutie", + "SSE.Controllers.Main.txtShape_flowChartDelay": "Vývojový diagram: Oneskorenie", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "Vývojový diagram: Zobraziť", + "SSE.Controllers.Main.txtShape_flowChartDocument": "Vývojový diagram: Dokument", + "SSE.Controllers.Main.txtShape_flowChartExtract": "Vývojový diagram: Extrahovať", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Vývojový diagram: Dáta", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Vývojový diagram: Interné úložisko", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Vývojový diagram: Magnetický disk", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Vývojový diagram: Úložisko s priamym prístupom", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Vývojový diagram: Úložisko s postupným prístupom", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "Vývojový diagram: ručný vstup", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Vývojový diagram: Manuálna operácia", + "SSE.Controllers.Main.txtShape_flowChartMerge": "Vývojový diagram: Zlúčiť", + "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Vývojový diagram: Viacnásobný dokument", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Vývojový diagram: Spojovací prvok mimo stránky", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Vývojový diagram: Uložené dáta", + "SSE.Controllers.Main.txtShape_flowChartOr": "Vývojový diagram: alebo", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Vývojový diagram: Preddefinovaný proces ", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "Vývojový diagram: Príprava", + "SSE.Controllers.Main.txtShape_flowChartProcess": "Vývojový diagram: proces", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Vývojový diagram: Karta", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Vývojový diagram: Páska s dierkami", + "SSE.Controllers.Main.txtShape_flowChartSort": "Vývojový diagram: Triedenie", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Vývojový diagram: Sumarizačný uzol", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "Vývojový diagram: Terminátor", + "SSE.Controllers.Main.txtShape_foldedCorner": "Prehnutý roh", "SSE.Controllers.Main.txtShape_frame": "Rámček", + "SSE.Controllers.Main.txtShape_halfFrame": "Polovičný rámček", "SSE.Controllers.Main.txtShape_heart": "Srdce", + "SSE.Controllers.Main.txtShape_heptagon": "Päťuholník", + "SSE.Controllers.Main.txtShape_hexagon": "Šesťuholník", + "SSE.Controllers.Main.txtShape_homePlate": "Päťuholník", + "SSE.Controllers.Main.txtShape_horizontalScroll": "Horizontálny posuvník", "SSE.Controllers.Main.txtShape_irregularSeal1": "Výbuch 1", "SSE.Controllers.Main.txtShape_irregularSeal2": "Výbuch 2", "SSE.Controllers.Main.txtShape_leftArrow": "Ľavá šípka", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "Vyvolanie šípky vľavo", + "SSE.Controllers.Main.txtShape_leftBrace": "Ľavá zložená zátvorka", + "SSE.Controllers.Main.txtShape_leftBracket": "Ľavá zátvorka", + "SSE.Controllers.Main.txtShape_leftRightArrow": "Šípka vľavo vpravo", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Vyvolanie šípky vľavo vpravo", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Šípka doľava doprava nahor", + "SSE.Controllers.Main.txtShape_leftUpArrow": "Šípka doľava nahor", + "SSE.Controllers.Main.txtShape_lightningBolt": "Blesk", "SSE.Controllers.Main.txtShape_line": "Čiara", "SSE.Controllers.Main.txtShape_lineWithArrow": "Šípka", + "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Dvojitá šípka", + "SSE.Controllers.Main.txtShape_mathDivide": "Rozdelenie", "SSE.Controllers.Main.txtShape_mathEqual": "Rovná sa", "SSE.Controllers.Main.txtShape_mathMinus": "Mínus", "SSE.Controllers.Main.txtShape_mathMultiply": "Viacnásobný", @@ -572,10 +950,34 @@ "SSE.Controllers.Main.txtShape_mathPlus": "Plus", "SSE.Controllers.Main.txtShape_moon": "Mesiac", "SSE.Controllers.Main.txtShape_noSmoking": "Symbol \"Nie\"", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "Šípka v pravo so zárezom", + "SSE.Controllers.Main.txtShape_octagon": "Osemuholník", "SSE.Controllers.Main.txtShape_parallelogram": "Rovnobežník", + "SSE.Controllers.Main.txtShape_pentagon": "Päťuholník", "SSE.Controllers.Main.txtShape_pie": "Koláčový graf", + "SSE.Controllers.Main.txtShape_plaque": "Podpísať", "SSE.Controllers.Main.txtShape_plus": "Plus", + "SSE.Controllers.Main.txtShape_polyline1": "Čmárať", + "SSE.Controllers.Main.txtShape_polyline2": "Voľná forma", + "SSE.Controllers.Main.txtShape_quadArrow": "Štvorstranná šípka", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "Bublina so štvorstrannou šípkou", + "SSE.Controllers.Main.txtShape_rect": "Obdĺžnik", + "SSE.Controllers.Main.txtShape_ribbon": "Pruh nadol", + "SSE.Controllers.Main.txtShape_ribbon2": "Pásik hore", "SSE.Controllers.Main.txtShape_rightArrow": "Pravá šípka", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "Bublina so šípkou vpravo", + "SSE.Controllers.Main.txtShape_rightBrace": "Pravá svorka", + "SSE.Controllers.Main.txtShape_rightBracket": "Pravá zátvorka", + "SSE.Controllers.Main.txtShape_round1Rect": "Obdĺžnik s jedným oblým rohom", + "SSE.Controllers.Main.txtShape_round2DiagRect": "Obdĺžnik s okrúhlymi protiľahlými rohmi", + "SSE.Controllers.Main.txtShape_round2SameRect": "Obdĺžnik s oblými rohmi na rovnakej strane", + "SSE.Controllers.Main.txtShape_roundRect": "Obdĺžnik s oblými rohmi", + "SSE.Controllers.Main.txtShape_rtTriangle": "Pravý trojuholník", + "SSE.Controllers.Main.txtShape_smileyFace": "Smajlík", + "SSE.Controllers.Main.txtShape_snip1Rect": "Obdĺžnik s jedným odstrihnutým rohom", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "Obdĺžnik s dvoma protiľahlými odstrihnutými rohmi", + "SSE.Controllers.Main.txtShape_snip2SameRect": "Obdĺžnik s dvoma odstrihnutými rohmi na rovnakej strane ", + "SSE.Controllers.Main.txtShape_snipRoundRect": "Obdĺžnik s jedným zaobleným a jedným odstrihnutým rohom hore", "SSE.Controllers.Main.txtShape_spline": "Krivka", "SSE.Controllers.Main.txtShape_star10": "10-cípa hviezda", "SSE.Controllers.Main.txtShape_star12": "12-cípa hviezda", @@ -587,10 +989,21 @@ "SSE.Controllers.Main.txtShape_star6": "6-cípa hviezda", "SSE.Controllers.Main.txtShape_star7": "7-cípa hviezda", "SSE.Controllers.Main.txtShape_star8": "8-cípa hviezda", + "SSE.Controllers.Main.txtShape_stripedRightArrow": "Prúžkovaná šípka vpravo", "SSE.Controllers.Main.txtShape_sun": "Ne", + "SSE.Controllers.Main.txtShape_teardrop": "Slza", "SSE.Controllers.Main.txtShape_textRect": "Textové pole", + "SSE.Controllers.Main.txtShape_trapezoid": "Lichobežník", + "SSE.Controllers.Main.txtShape_triangle": "Trojuholník", "SSE.Controllers.Main.txtShape_upArrow": "Šípka hore", + "SSE.Controllers.Main.txtShape_upArrowCallout": "Bublina so šípkou hore", + "SSE.Controllers.Main.txtShape_upDownArrow": "Šípka hore a dole", + "SSE.Controllers.Main.txtShape_uturnArrow": "Šípka s otočkou", + "SSE.Controllers.Main.txtShape_verticalScroll": "Vertikálne posúvanie", "SSE.Controllers.Main.txtShape_wave": "Vlnka", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oválna bublina", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Obdĺžniková bublina", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Bublina v tvare obdĺžnika so zaoblenými rohmi", "SSE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", "SSE.Controllers.Main.txtStyle_Bad": "Zlý/chybný", "SSE.Controllers.Main.txtStyle_Calculation": "Kalkulácia", @@ -616,42 +1029,66 @@ "SSE.Controllers.Main.txtTab": "Tabulátor", "SSE.Controllers.Main.txtTable": "Tabuľka", "SSE.Controllers.Main.txtTime": "Čas", + "SSE.Controllers.Main.txtUnlock": "Odomknúť", + "SSE.Controllers.Main.txtUnlockRange": "Odomknúť rozsah", + "SSE.Controllers.Main.txtUnlockRangeDescription": "Pokiaľ chcete tento rozsah zmeniť, zadajte heslo:", + "SSE.Controllers.Main.txtUnlockRangeWarning": "Oblasť, ktorú sa pokúšate upraviť je zabezpečená heslom.", "SSE.Controllers.Main.txtValues": "Hodnoty", "SSE.Controllers.Main.txtXAxis": "Os X", "SSE.Controllers.Main.txtYAxis": "Os Y", + "SSE.Controllers.Main.txtYears": "Roky", "SSE.Controllers.Main.unknownErrorText": "Neznáma chyba.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", + "SSE.Controllers.Main.uploadDocExtMessage": "Neznámy formát dokumentu", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Neboli nahraté žiadne dokumenty.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Prekročený limit maximálnej veľkosti dokumentu.", "SSE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maximálny limit veľkosti obrázka bol prekročený.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB.", "SSE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", "SSE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", "SSE.Controllers.Main.waitText": "Prosím čakajte...", "SSE.Controllers.Main.warnBrowserIE9": "Aplikácia má na IE9 slabé schopnosti. Použite IE10 alebo vyššie.", "SSE.Controllers.Main.warnBrowserZoom": "Súčasné nastavenie priblíženia nie je plne podporované prehliadačom. Obnovte štandardné priblíženie stlačením klávesov Ctrl+0.", + "SSE.Controllers.Main.warnLicenseExceeded": "Dosiahli ste limit počtu súbežných spojení %1 editora. Dokument bude otvorený len na náhľad.
    Pre viac podrobností kontaktujte svojho správcu. ", "SSE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
    Prosím, aktualizujte si svoju licenciu a obnovte stránku.", - "SSE.Controllers.Main.warnNoLicense": "Táto verzia aplikácie %1 editors má určité obmedzenia pre súbežné pripojenia k dokumentovému serveru.
    Ak potrebujete viac, zvážte aktualizáciu aktuálnej licencie alebo zakúpenie komerčnej.", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencia vypršala.
    K funkcii úprav dokumentu už nemáte prístup.
    Kontaktujte svojho administrátora, prosím.", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Je potrebné obnoviť licenciu.
    K funkciám úprav dokumentov máte obmedzený prístup.
    Pre získanie úplného prístupu kontaktujte prosím svojho administrátora.", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Dosiahli ste limit %1 editora v režime spolupráce na úpravách. Ohľadne podrobnosti sa obráťte na svojho správcu. ", + "SSE.Controllers.Main.warnNoLicense": "Dosiahli ste limit súběžných pripojení %1 editora. Dokument bude otvorený len na prezeranie.
    Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", + "SSE.Controllers.Main.warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", "SSE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", "SSE.Controllers.Print.strAllSheets": "Všetky listy", "SSE.Controllers.Print.textFirstCol": "Prvý stĺpec", "SSE.Controllers.Print.textFirstRow": "Prvý riadok", + "SSE.Controllers.Print.textFrozenCols": "Ukotvené stĺpce", + "SSE.Controllers.Print.textFrozenRows": "Ukotvené riadky", "SSE.Controllers.Print.textInvalidRange": "CHYBA! Neplatný rozsah buniek", + "SSE.Controllers.Print.textNoRepeat": "Neopakovať", + "SSE.Controllers.Print.textRepeat": "Opakovať...", + "SSE.Controllers.Print.textSelectRange": "Vybrať rozsah", "SSE.Controllers.Print.textWarning": "Upozornenie", "SSE.Controllers.Print.txtCustom": "Vlastný", "SSE.Controllers.Print.warnCheckMargings": "Okraje sú nesprávne", "SSE.Controllers.Statusbar.errorLastSheet": "Pracovný zošit musí mať aspoň jeden viditeľný pracovný list.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Pracovný list sa nedá odstrániť.", "SSE.Controllers.Statusbar.strSheet": "List", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Pracovný list môže obsahovať údaje. Naozaj chcete pokračovať?", + "SSE.Controllers.Statusbar.textDisconnect": "Spojenie sa stratilo
    Pokus o opätovné spojenie. Skontrolujte nastavenie pripojenia. ", + "SSE.Controllers.Statusbar.textSheetViewTip": "Nachádzate sa v režime zobrazenia hárka. Filtre a zoradenie sú viditeľné iba pre vás a tých, ktorí sú stále v tomto zobrazení.", + "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Nachádzate sa v režime zobrazenia hárka. Filtre sú viditeľné iba pre vás a tých, ktorí sú stále v tomto zobrazení.", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Pracovný list môže mať údaje. Vykonať operáciu?", "SSE.Controllers.Statusbar.zoomText": "Priblíženie {0}%", "SSE.Controllers.Toolbar.confirmAddFontName": "Písmo, ktoré chcete uložiť, nie je dostupné na aktuálnom zariadení.
    Štýl textu sa zobrazí pomocou jedného zo systémových písiem, uložené písmo sa použije, keď bude k dispozícii.
    Chcete pokračovať?", + "SSE.Controllers.Toolbar.errorComboSeries": "Pre vytvorenie kombinovaného grafu, zvoľte aspoň dve skupiny dát.", "SSE.Controllers.Toolbar.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255", "SSE.Controllers.Toolbar.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    začiatočná cena, max cena, min cena, konečná cena.", "SSE.Controllers.Toolbar.textAccent": "Akcenty", "SSE.Controllers.Toolbar.textBracket": "Zátvorky", + "SSE.Controllers.Toolbar.textDirectional": "Smerové", "SSE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota je nesprávna.
    Prosím, zadajte číselnú hodnotu medzi 1 a 409.", "SSE.Controllers.Toolbar.textFraction": "Zlomky", "SSE.Controllers.Toolbar.textFunction": "Funkcie", + "SSE.Controllers.Toolbar.textIndicator": "Indikátory", "SSE.Controllers.Toolbar.textInsert": "Vložiť", "SSE.Controllers.Toolbar.textIntegral": "Integrály", "SSE.Controllers.Toolbar.textLargeOperator": "Veľké operátory", @@ -659,8 +1096,12 @@ "SSE.Controllers.Toolbar.textLongOperation": "Dlhá prevádzka", "SSE.Controllers.Toolbar.textMatrix": "Matice", "SSE.Controllers.Toolbar.textOperator": "Operátory", + "SSE.Controllers.Toolbar.textPivot": "Kontingenčná tabuľka", "SSE.Controllers.Toolbar.textRadical": "Odmocniny", + "SSE.Controllers.Toolbar.textRating": "Hodnotenia", + "SSE.Controllers.Toolbar.textRecentlyUsed": "Nedávno použité", "SSE.Controllers.Toolbar.textScript": "Mocniny", + "SSE.Controllers.Toolbar.textShapes": "Tvary", "SSE.Controllers.Toolbar.textSymbols": "Symboly", "SSE.Controllers.Toolbar.textWarning": "Upozornenie", "SSE.Controllers.Toolbar.txtAccent_Accent": "Dĺžeň", @@ -841,6 +1282,7 @@ "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus", "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", "SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "SSE.Controllers.Toolbar.txtLockSort": "Blízko vášho výberu existujú dáta, nemáte však dostatočné oprávnenia k úprave týchto buniek.
    Chcete pokračovať s aktuálnym výberom? ", "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Prázdna matica", "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Prázdna matica", "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Prázdna matica", @@ -986,13 +1428,22 @@ "SSE.Controllers.Toolbar.txtSymbol_vdots": "Vertikálna elipsa/vypustenie", "SSE.Controllers.Toolbar.txtSymbol_xsi": "Ksí ", "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zéta", + "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Štýl tabuľky tmavý", + "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Štýl tabuľky svetlý", + "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Štýl tabuľky stredný", "SSE.Controllers.Toolbar.warnLongOperation": "Operácia, ktorú chcete vykonať, môže trvať pomerne dlhý čas na dokončenie.
    Určite chcete pokračovať?", "SSE.Controllers.Toolbar.warnMergeLostData": "Iba údaje z ľavej hornej bunky zostanú v zlúčenej bunke.
    Ste si istý, že chcete pokračovať?", "SSE.Controllers.Viewport.textFreezePanes": "Ukotviť priečky", + "SSE.Controllers.Viewport.textFreezePanesShadow": "Zobraziť tieň ukotvených priečok", "SSE.Controllers.Viewport.textHideFBar": "Skryť riadok vzorcov", "SSE.Controllers.Viewport.textHideGridlines": "Skryť mriežku", "SSE.Controllers.Viewport.textHideHeadings": "Skryť záhlavia", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Oddeľovač desatinných miest", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Oddeľovač tisícov", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "Nastavenia používané na rozpoznávanie číselných údajov", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "Textový kvalifikátor", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Pokročilé nastavenia", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(žiadne)", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Špeciálny/vlastný filter", "SSE.Views.AutoFilterDialog.textAddSelection": "Pridať aktuálny výber na filtrovanie", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", @@ -1012,9 +1463,11 @@ "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filtrovať podľa farby písma", "SSE.Views.AutoFilterDialog.txtGreater": "Väčšie ako...", "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Väčšie alebo rovná sa...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Filtrovanie štítkov", "SSE.Views.AutoFilterDialog.txtLess": "Menej než...", "SSE.Views.AutoFilterDialog.txtLessEquals": "Menej alebo rovná sa", "SSE.Views.AutoFilterDialog.txtNotBegins": "Nezačína s...", + "SSE.Views.AutoFilterDialog.txtNotBetween": "Nie medzi...", "SSE.Views.AutoFilterDialog.txtNotContains": "Neobsahuje...", "SSE.Views.AutoFilterDialog.txtNotEnds": "Nekončí s...", "SSE.Views.AutoFilterDialog.txtNotEquals": "Nerovná sa ...", @@ -1024,9 +1477,12 @@ "SSE.Views.AutoFilterDialog.txtSortFontColor": "Zoradiť podľa farieb písma", "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Zoradiť od najvyššieho po najnižšie", "SSE.Views.AutoFilterDialog.txtSortLow2High": "Zoradiť od najnižšieho po najvyššie", + "SSE.Views.AutoFilterDialog.txtSortOption": "Ďalšie možné triedenie", "SSE.Views.AutoFilterDialog.txtTextFilter": "Textový filter", "SSE.Views.AutoFilterDialog.txtTitle": "Filter", "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Filter hodnôt", + "SSE.Views.AutoFilterDialog.warnFilterError": "Na použitie filtra hodnôt potrebujete aspoň jedno pole v oblasti Hodnoty.", "SSE.Views.AutoFilterDialog.warnNoSelected": "Musíte vybrať aspoň jednu hodnotu", "SSE.Views.CellEditor.textManager": "Správca názvov", "SSE.Views.CellEditor.tipFormula": "Vložiť funkciu", @@ -1035,38 +1491,97 @@ "SSE.Views.CellRangeDialog.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.CellRangeDialog.txtInvalidRange": "CHYBA! Neplatný rozsah buniek", "SSE.Views.CellRangeDialog.txtTitle": "Vybrať rozsah údajov", + "SSE.Views.CellSettings.strShrink": "Orezať aby sa vošlo", "SSE.Views.CellSettings.strWrap": "Obtekanie textu", "SSE.Views.CellSettings.textAngle": "Uhol", "SSE.Views.CellSettings.textBackColor": "Farba pozadia", "SSE.Views.CellSettings.textBackground": "Farba pozadia", "SSE.Views.CellSettings.textBorderColor": "Farba", "SSE.Views.CellSettings.textBorders": "Štýl orámovania", + "SSE.Views.CellSettings.textClearRule": "Zmazať pravidlá", "SSE.Views.CellSettings.textColor": "Vyplniť farbou", + "SSE.Views.CellSettings.textColorScales": "Farebné škály", + "SSE.Views.CellSettings.textCondFormat": "Podmienené formátovanie", + "SSE.Views.CellSettings.textControl": "Kontrola textu", + "SSE.Views.CellSettings.textDataBars": "Histogramy", "SSE.Views.CellSettings.textDirection": "Smer", "SSE.Views.CellSettings.textFill": "Vyplniť", "SSE.Views.CellSettings.textForeground": "Farba popredia", - "SSE.Views.CellSettings.textGradient": "Prechod", + "SSE.Views.CellSettings.textGradient": "Body prechodu", "SSE.Views.CellSettings.textGradientColor": "Farba", "SSE.Views.CellSettings.textGradientFill": "Výplň prechodom", + "SSE.Views.CellSettings.textIndent": "Odsadiť", + "SSE.Views.CellSettings.textItems": "Položky", "SSE.Views.CellSettings.textLinear": "Lineárny", + "SSE.Views.CellSettings.textManageRule": "Spravovať pravidlá", + "SSE.Views.CellSettings.textNewRule": "Nové pravidlo", "SSE.Views.CellSettings.textNoFill": "Bez výplne", "SSE.Views.CellSettings.textOrientation": "Orientácia textu", "SSE.Views.CellSettings.textPattern": "Vzor", "SSE.Views.CellSettings.textPatternFill": "Vzor", + "SSE.Views.CellSettings.textPosition": "Pozícia", "SSE.Views.CellSettings.textRadial": "Kruhový", + "SSE.Views.CellSettings.textSelectBorders": "Vyberte orámovanie, ktoré chcete zmeniť podľa vyššie uvedeného štýlu", + "SSE.Views.CellSettings.textSelection": "Z aktuálneho výberu", + "SSE.Views.CellSettings.textThisPivot": "Z tejto kontingenčnej tabuľky", + "SSE.Views.CellSettings.textThisSheet": "Z tohto listu", + "SSE.Views.CellSettings.textThisTable": "Z tejto tabuľky", "SSE.Views.CellSettings.tipAddGradientPoint": "Pridať spádový bod", + "SSE.Views.CellSettings.tipAll": "Nastaviť vonkajšie orámovanie a všetky vnútorné čiary", + "SSE.Views.CellSettings.tipBottom": "Nastaviť len spodné vonkajšie orámovanie", + "SSE.Views.CellSettings.tipDiagD": "Nastavte okraj diagonálne nadol", + "SSE.Views.CellSettings.tipDiagU": "Nastavte okraj diagonálne nahor", + "SSE.Views.CellSettings.tipInner": "Nastaviť len vnútorné čiary", + "SSE.Views.CellSettings.tipInnerHor": "Nastaviť iba horizontálne vnútorné čiary", "SSE.Views.CellSettings.tipInnerVert": "Nastaviť len vertikálne vnútorné čiary", + "SSE.Views.CellSettings.tipLeft": "Nastaviť len ľavé vonkajšie orámovanie", + "SSE.Views.CellSettings.tipNone": "Nastaviť bez orámovania", + "SSE.Views.CellSettings.tipOuter": "Nastaviť len vonkajšie orámovanie", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "Odstrániť spádový bod", + "SSE.Views.CellSettings.tipRight": "Nastaviť len pravé vonkajšie orámovanie", + "SSE.Views.CellSettings.tipTop": "Nastaviť len horné vonkajšie orámovanie", + "SSE.Views.ChartDataDialog.errorInFormula": "V zadanom vzorci je chyba.", + "SSE.Views.ChartDataDialog.errorInvalidReference": "Odkaz nie je platný. Odkaz musí byť na otvorený pracovný hárok.", + "SSE.Views.ChartDataDialog.errorMaxPoints": "Maximálny počet bodov v sérii na jeden graf je 4096.", + "SSE.Views.ChartDataDialog.errorMaxRows": "Maximálny počet radov údajov na graf je 255.", + "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "Odkaz nie je platný. Odkazy na názvy, hodnoty, veľkosti alebo označenia údajov musia byť v jednej bunke, riadku alebo stĺpci.", + "SSE.Views.ChartDataDialog.errorNoValues": "Ak chcete vytvoriť graf, postupnosť musí obsahovať aspoň jednu hodnotu.", + "SSE.Views.ChartDataDialog.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    začiatočná cena, max cena, min cena, konečná cena.", "SSE.Views.ChartDataDialog.textAdd": "Pridať", + "SSE.Views.ChartDataDialog.textCategory": "Vodorovné (Kategórie) štítky osi ", "SSE.Views.ChartDataDialog.textData": "Rozsah údajov grafu", + "SSE.Views.ChartDataDialog.textDelete": "Odstrániť", + "SSE.Views.ChartDataDialog.textDown": "Dole", + "SSE.Views.ChartDataDialog.textEdit": "Upraviť", + "SSE.Views.ChartDataDialog.textInvalidRange": "Neplatný rozsah buniek", + "SSE.Views.ChartDataDialog.textSelectData": "Vybrať údaje", + "SSE.Views.ChartDataDialog.textSeries": "Záznamy legendy (Série)", + "SSE.Views.ChartDataDialog.textSwitch": "Prehodiť Riadky/Stĺpce", "SSE.Views.ChartDataDialog.textTitle": "Údaje grafu", + "SSE.Views.ChartDataDialog.textUp": "Hore", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "V zadanom vzorci je chyba.", + "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "Odkaz nie je platný. Odkaz musí byť na otvorený pracovný hárok.", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "Maximálny počet bodov v sérii na jeden graf je 4096.", + "SSE.Views.ChartDataRangeDialog.errorMaxRows": "Maximálny počet radov údajov na graf je 255.", + "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "Odkaz nie je platný. Odkazy na názvy, hodnoty, veľkosti alebo označenia údajov musia byť v jednej bunke, riadku alebo stĺpci.", + "SSE.Views.ChartDataRangeDialog.errorNoValues": "Ak chcete vytvoriť graf, postupnosť musí obsahovať aspoň jednu hodnotu.", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    začiatočná cena, max cena, min cena, konečná cena.", + "SSE.Views.ChartDataRangeDialog.textInvalidRange": "Neplatný rozsah buniek", + "SSE.Views.ChartDataRangeDialog.textSelectData": "Vybrať údaje", "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Rozsah osovej značky", "SSE.Views.ChartDataRangeDialog.txtChoose": "Vyber rozsah", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Názvy radov", "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Osové značky", + "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Upraviť série", + "SSE.Views.ChartDataRangeDialog.txtValues": "Hodnoty", + "SSE.Views.ChartDataRangeDialog.txtXValues": "Hodnoty na osi X", + "SSE.Views.ChartDataRangeDialog.txtYValues": "Hodnoty na osi Y", "SSE.Views.ChartSettings.strLineWeight": "Hrúbka čiary", "SSE.Views.ChartSettings.strSparkColor": "Farba", "SSE.Views.ChartSettings.strTemplate": "Šablóna", "SSE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "SSE.Views.ChartSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
    Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.", + "SSE.Views.ChartSettings.textChangeType": "Zmeniť typ", "SSE.Views.ChartSettings.textChartType": "Zmeniť typ grafu", "SSE.Views.ChartSettings.textEditData": "Upraviť údaje a umiestnenie", "SSE.Views.ChartSettings.textFirstPoint": "Prvý bod", @@ -1087,6 +1602,7 @@ "SSE.Views.ChartSettingsDlg.errorMaxPoints": "CHYBA! Najvyšší možný počet bodov za sebou v jednom grafu je 4096.", "SSE.Views.ChartSettingsDlg.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255", "SSE.Views.ChartSettingsDlg.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    začiatočná cena, max cena, min cena, konečná cena.", + "SSE.Views.ChartSettingsDlg.textAbsolute": "Neposúvať alebo nemeniť veľkosť s bunkami", "SSE.Views.ChartSettingsDlg.textAlt": "Alternatívny text", "SSE.Views.ChartSettingsDlg.textAltDescription": "Popis", "SSE.Views.ChartSettingsDlg.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", @@ -1097,6 +1613,7 @@ "SSE.Views.ChartSettingsDlg.textAxisOptions": "Možnosti osi", "SSE.Views.ChartSettingsDlg.textAxisPos": "Umiestnenie osi", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Nastavenia osi", + "SSE.Views.ChartSettingsDlg.textAxisTitle": "Nadpis", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Medzi značkami rozsahu", "SSE.Views.ChartSettingsDlg.textBillions": "Miliardy", "SSE.Views.ChartSettingsDlg.textBottom": "Dole", @@ -1114,12 +1631,15 @@ "SSE.Views.ChartSettingsDlg.textEmptyLine": "Spojiť dátové body s riadkom", "SSE.Views.ChartSettingsDlg.textFit": "Prispôsobiť na šírku", "SSE.Views.ChartSettingsDlg.textFixed": "Fixný/napravený", + "SSE.Views.ChartSettingsDlg.textFormat": "Formát štítkov", "SSE.Views.ChartSettingsDlg.textGaps": "Medzery", "SSE.Views.ChartSettingsDlg.textGridLines": "Mriežky", "SSE.Views.ChartSettingsDlg.textGroup": "Skupina Sparkline", "SSE.Views.ChartSettingsDlg.textHide": "Skryť", + "SSE.Views.ChartSettingsDlg.textHideAxis": "Skryť osi", "SSE.Views.ChartSettingsDlg.textHigh": "Vysoko", "SSE.Views.ChartSettingsDlg.textHorAxis": "Vodorovná os", + "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Pomocná vodorovná os", "SSE.Views.ChartSettingsDlg.textHorizontal": "Vodorovný", "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", "SSE.Views.ChartSettingsDlg.textHundreds": "Stovky", @@ -1157,6 +1677,7 @@ "SSE.Views.ChartSettingsDlg.textNextToAxis": "Vedľa osi", "SSE.Views.ChartSettingsDlg.textNone": "Žiadny", "SSE.Views.ChartSettingsDlg.textNoOverlay": "Žiadne prekrytie", + "SSE.Views.ChartSettingsDlg.textOneCell": "Presúvať ale nemeniť veľkosť spoločne s bunkami", "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Na značkách", "SSE.Views.ChartSettingsDlg.textOut": "Von", "SSE.Views.ChartSettingsDlg.textOuterTop": "Mimo hore", @@ -1190,27 +1711,123 @@ "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Pokročilé nastavenia", "SSE.Views.ChartSettingsDlg.textTop": "Hore", "SSE.Views.ChartSettingsDlg.textTrillions": "Bilióny", + "SSE.Views.ChartSettingsDlg.textTwoCell": "Presúvať a meniť veľkosť spoločne s bunkami", "SSE.Views.ChartSettingsDlg.textType": "Typ", "SSE.Views.ChartSettingsDlg.textTypeData": "Typ a údaje", "SSE.Views.ChartSettingsDlg.textUnits": "Zobrazovacie jednotky", "SSE.Views.ChartSettingsDlg.textValue": "Hodnota", "SSE.Views.ChartSettingsDlg.textVertAxis": "Vertikálna os", + "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Pomocná zvislá os", "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Názov osi X", "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Názov osi Y", "SSE.Views.ChartSettingsDlg.textZero": "Nula", "SSE.Views.ChartSettingsDlg.txtEmpty": "Toto pole sa vyžaduje", + "SSE.Views.ChartTypeDialog.errorComboSeries": "Pre vytvorenie kombinovaného grafu, zvoľte aspoň dve skupiny dát.", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "Vybratý typ grafu vyžaduje sekundárnu os, ktorú používa existujúci graf. Vyberte iný typ grafu.", + "SSE.Views.ChartTypeDialog.textSecondary": "Pomocná os", + "SSE.Views.ChartTypeDialog.textSeries": "Rady", + "SSE.Views.ChartTypeDialog.textStyle": "Štýl", + "SSE.Views.ChartTypeDialog.textTitle": "Typ grafu", + "SSE.Views.ChartTypeDialog.textType": "Typ", + "SSE.Views.CreatePivotDialog.textDataRange": "Rozsah zdrojových dát", "SSE.Views.CreatePivotDialog.textDestination": "Vybrať kam sa tabuľka umiestni", + "SSE.Views.CreatePivotDialog.textExist": "Existujúci list", "SSE.Views.CreatePivotDialog.textInvalidRange": "Neplatný rozsah buniek", + "SSE.Views.CreatePivotDialog.textNew": "Nový pracovný list", + "SSE.Views.CreatePivotDialog.textSelectData": "Vybrať údaje", + "SSE.Views.CreatePivotDialog.textTitle": "Vytvoriť kontingenčnú tabuľku", + "SSE.Views.CreatePivotDialog.txtEmpty": "Toto pole sa vyžaduje", + "SSE.Views.CreateSparklineDialog.textDataRange": "Rozsah zdrojových dát", + "SSE.Views.CreateSparklineDialog.textDestination": "Vyberte, kde umiestniť mikro-graf", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Neplatný rozsah buniek", + "SSE.Views.CreateSparklineDialog.textSelectData": "Vybrať údaje", + "SSE.Views.CreateSparklineDialog.textTitle": "Vytvoriť mikro-graf", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.DataTab.capBtnGroup": "Skupina", + "SSE.Views.DataTab.capBtnTextCustomSort": "Vlastné zoradenie", + "SSE.Views.DataTab.capBtnTextDataValidation": "Overenie dát", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Odobrať duplicity", + "SSE.Views.DataTab.capBtnTextToCol": "Text na stĺpec", "SSE.Views.DataTab.capBtnUngroup": "Oddeliť", + "SSE.Views.DataTab.capDataFromText": "Získať dáta", + "SSE.Views.DataTab.mniFromFile": "Z miestneho TXT/CSV", + "SSE.Views.DataTab.mniFromUrl": "Z webovej adresy TXT/CSV", + "SSE.Views.DataTab.textBelow": "Súhrnné riadky pod detailom", "SSE.Views.DataTab.textClear": "Vyčistiť obrys", + "SSE.Views.DataTab.textColumns": "Zrušte zoskupenie stĺpcov", + "SSE.Views.DataTab.textGroupColumns": "Zoskupiť stĺpce", + "SSE.Views.DataTab.textGroupRows": "Zoskupiť riadky", + "SSE.Views.DataTab.textRightOf": "Súhrnné stĺpce napravo od podrobností", + "SSE.Views.DataTab.textRows": "Zrušte zoskupenie riadkov", + "SSE.Views.DataTab.tipCustomSort": "Vlastné zoradenie", + "SSE.Views.DataTab.tipDataFromText": "Získať dáta z textového/CSV súboru", + "SSE.Views.DataTab.tipDataValidation": "Overenie dát", + "SSE.Views.DataTab.tipGroup": "Zoskupiť rozsah buniek", + "SSE.Views.DataTab.tipRemDuplicates": "Odobrať z listu duplicitné riadky", + "SSE.Views.DataTab.tipToColumns": "Rozdeliť text bunky do stĺpcov", + "SSE.Views.DataTab.tipUngroup": "Oddeliť rozsah buniek", + "SSE.Views.DataValidationDialog.errorFormula": "Hodnota sa momentálne vyhodnotí ako chyba. Chceš pokračovať?", + "SSE.Views.DataValidationDialog.errorInvalid": "Hodnota, ktorú ste zadali do poľa „{0}“, je neplatná.", + "SSE.Views.DataValidationDialog.errorInvalidDate": "Dátum, ktorý ste zadali do poľa \"{0}“, je neplatný.", + "SSE.Views.DataValidationDialog.errorInvalidList": "Dĺžka vášho vzorca presahuje limit 8192 znakov.
    Upravte ho a skúste to znova.", + "SSE.Views.DataValidationDialog.errorInvalidTime": "Čas, ktorý ste zadali do poľa „{0}“, je neplatný.", + "SSE.Views.DataValidationDialog.errorMinGreaterMax": "Hodnota poľa \"{1}\" musí byť větší alebo rovný hodnote poľa \"{0}\".", + "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "Musíte zadať hodnotu do poľa „{0}“ aj do poľa „{1}“.", + "SSE.Views.DataValidationDialog.errorMustEnterValue": "Do poľa „{0}“ musíte zadať hodnotu.", "SSE.Views.DataValidationDialog.errorNamedRange": "Rozsah názvu, aký ste špecifikovali, nemožno nájsť.", + "SSE.Views.DataValidationDialog.errorNegativeTextLength": "V podmienke „{0}“ nie je možné použiť záporné hodnoty.", + "SSE.Views.DataValidationDialog.errorNotNumeric": "Pole „{0}“ musí byť číselná hodnota, číselný výraz alebo musí odkazovať na bunku obsahujúcu číselnú hodnotu.", + "SSE.Views.DataValidationDialog.strError": "Chybové hlásenie", + "SSE.Views.DataValidationDialog.strInput": "Správa pri zadávaní", + "SSE.Views.DataValidationDialog.strSettings": "Nastavenia", "SSE.Views.DataValidationDialog.textAlert": "Upozornenie", "SSE.Views.DataValidationDialog.textAllow": "Povoliť", "SSE.Views.DataValidationDialog.textApply": "Použiť tieto zmeny na všetky ostatné bunky s rovnakými nastaveniami", + "SSE.Views.DataValidationDialog.textCellSelected": "Keď je vybratá bunka, zobrazte túto vstupnú správu", "SSE.Views.DataValidationDialog.textCompare": "Porovnať s ", + "SSE.Views.DataValidationDialog.textData": "Dáta", + "SSE.Views.DataValidationDialog.textEndDate": "Dátum ukončenia", + "SSE.Views.DataValidationDialog.textEndTime": "Čas ukončenia", + "SSE.Views.DataValidationDialog.textError": "Chybové hlásenie", + "SSE.Views.DataValidationDialog.textFormula": "Vzorec", + "SSE.Views.DataValidationDialog.textIgnore": "Ignorovať prázdne bunky", + "SSE.Views.DataValidationDialog.textInput": "Správa pri zadávaní", + "SSE.Views.DataValidationDialog.textMax": "Maximum", + "SSE.Views.DataValidationDialog.textMessage": "Správa", + "SSE.Views.DataValidationDialog.textMin": "Minimum", + "SSE.Views.DataValidationDialog.textSelectData": "Vybrať údaje", + "SSE.Views.DataValidationDialog.textShowDropDown": "Zobraziť rozbaľovací zoznam v bunke", + "SSE.Views.DataValidationDialog.textShowError": "Po zadaní neplatných údajov zobraziť chybové hlásenie", + "SSE.Views.DataValidationDialog.textShowInput": "Keď je vybratá bunka, zobraziť vstupnú správu", + "SSE.Views.DataValidationDialog.textSource": "Zdroj", + "SSE.Views.DataValidationDialog.textStartDate": "Dátum začiatku", + "SSE.Views.DataValidationDialog.textStartTime": "Čas začiatku", + "SSE.Views.DataValidationDialog.textStop": "Stop", + "SSE.Views.DataValidationDialog.textStyle": "Štýl", + "SSE.Views.DataValidationDialog.textTitle": "Nadpis", + "SSE.Views.DataValidationDialog.textUserEnters": "Keď používateľ zadá neplatné údaje, zobraziť toto chybové hlásenie", "SSE.Views.DataValidationDialog.txtAny": "Akákoľvek hodnota", "SSE.Views.DataValidationDialog.txtBetween": "medzi", + "SSE.Views.DataValidationDialog.txtDate": "Dátum", + "SSE.Views.DataValidationDialog.txtDecimal": "Desatinné číslo/desatinný", + "SSE.Views.DataValidationDialog.txtElTime": "Uplynutý čas", + "SSE.Views.DataValidationDialog.txtEndDate": "Dátum ukončenia", + "SSE.Views.DataValidationDialog.txtEndTime": "Čas ukončenia", + "SSE.Views.DataValidationDialog.txtEqual": "rovná sa", + "SSE.Views.DataValidationDialog.txtGreaterThan": "väčšie ako", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "Väčšie alebo rovná sa", + "SSE.Views.DataValidationDialog.txtLength": "Dĺžka", + "SSE.Views.DataValidationDialog.txtLessThan": "Menej ako", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "Menej alebo rovná sa", + "SSE.Views.DataValidationDialog.txtList": "Zoznam", + "SSE.Views.DataValidationDialog.txtNotBetween": "nie medzi", + "SSE.Views.DataValidationDialog.txtNotEqual": "nerovná sa", + "SSE.Views.DataValidationDialog.txtOther": "Ostatné", + "SSE.Views.DataValidationDialog.txtStartDate": "Dátum začiatku", + "SSE.Views.DataValidationDialog.txtStartTime": "Čas začiatku", + "SSE.Views.DataValidationDialog.txtTextLength": "Dĺžka textu", + "SSE.Views.DataValidationDialog.txtTime": "Čas", + "SSE.Views.DataValidationDialog.txtWhole": "Celé číslo", "SSE.Views.DigitalFilterDialog.capAnd": "a", "SSE.Views.DigitalFilterDialog.capCondition1": "rovná se", "SSE.Views.DigitalFilterDialog.capCondition10": "Nekončí s", @@ -1232,6 +1849,7 @@ "SSE.Views.DigitalFilterDialog.txtTitle": "Špeciálny/vlastný filter", "SSE.Views.DocumentHolder.advancedImgText": "Pokročilé nastavenia obrázku", "SSE.Views.DocumentHolder.advancedShapeText": "Pokročilé nastavenia tvaru", + "SSE.Views.DocumentHolder.advancedSlicerText": "Prierez – Rozšírené nastavenia", "SSE.Views.DocumentHolder.bottomCellText": "Zarovnať dole", "SSE.Views.DocumentHolder.bulletsText": "Odrážky a číslovanie", "SSE.Views.DocumentHolder.centerCellText": "Zarovnať na stred", @@ -1255,6 +1873,10 @@ "SSE.Views.DocumentHolder.selectDataText": "Údaje o stĺpcoch", "SSE.Views.DocumentHolder.selectRowText": "Riadok", "SSE.Views.DocumentHolder.selectTableText": "Tabuľka", + "SSE.Views.DocumentHolder.strDelete": "Odstrániť podpis", + "SSE.Views.DocumentHolder.strDetails": "Podrobnosti podpisu", + "SSE.Views.DocumentHolder.strSetup": "Nastavenia podpisu", + "SSE.Views.DocumentHolder.strSign": "Podpísať", "SSE.Views.DocumentHolder.textAlign": "Zarovnať", "SSE.Views.DocumentHolder.textArrange": "Upraviť/usporiadať/zarovnať", "SSE.Views.DocumentHolder.textArrangeBack": "Presunúť do pozadia", @@ -1262,10 +1884,12 @@ "SSE.Views.DocumentHolder.textArrangeForward": "Posunúť vpred", "SSE.Views.DocumentHolder.textArrangeFront": "Premiestniť do popredia", "SSE.Views.DocumentHolder.textAverage": "Priemer", + "SSE.Views.DocumentHolder.textBullets": "Odrážky", "SSE.Views.DocumentHolder.textCount": "Počet", "SSE.Views.DocumentHolder.textCrop": "Orezať", "SSE.Views.DocumentHolder.textCropFill": "Vyplniť", "SSE.Views.DocumentHolder.textCropFit": "Prispôsobiť", + "SSE.Views.DocumentHolder.textEditPoints": "Upraviť body", "SSE.Views.DocumentHolder.textEntriesList": "Vybrať z rolovacieho zoznamu", "SSE.Views.DocumentHolder.textFlipH": "Prevrátiť horizontálne", "SSE.Views.DocumentHolder.textFlipV": "Prevrátiť vertikálne", @@ -1273,21 +1897,37 @@ "SSE.Views.DocumentHolder.textFromFile": "Zo súboru", "SSE.Views.DocumentHolder.textFromStorage": "Z úložiska", "SSE.Views.DocumentHolder.textFromUrl": "Z URL adresy", + "SSE.Views.DocumentHolder.textListSettings": "Nastavenia zoznamu", + "SSE.Views.DocumentHolder.textMacro": "Priradiť makro", "SSE.Views.DocumentHolder.textMax": "Max", "SSE.Views.DocumentHolder.textMin": "Min", + "SSE.Views.DocumentHolder.textMore": "Ďalšie funkcie", "SSE.Views.DocumentHolder.textMoreFormats": "Ďalšie formáty", "SSE.Views.DocumentHolder.textNone": "žiadny", + "SSE.Views.DocumentHolder.textNumbering": "Číslovanie", "SSE.Views.DocumentHolder.textReplace": "Nahradiť obrázok", "SSE.Views.DocumentHolder.textRotate": "Otočiť", + "SSE.Views.DocumentHolder.textRotate270": "Otočiť o 90° doľava", + "SSE.Views.DocumentHolder.textRotate90": "Otočiť o 90° doprava", "SSE.Views.DocumentHolder.textShapeAlignBottom": "Zarovnať dole", "SSE.Views.DocumentHolder.textShapeAlignCenter": "Zarovnať na stred", "SSE.Views.DocumentHolder.textShapeAlignLeft": "Zarovnať doľava", "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Zarovnať na stred", "SSE.Views.DocumentHolder.textShapeAlignRight": "Zarovnať doprava", "SSE.Views.DocumentHolder.textShapeAlignTop": "Zarovnať nahor", + "SSE.Views.DocumentHolder.textStdDev": "Smerodajná odchylka", "SSE.Views.DocumentHolder.textSum": "SÚČET", "SSE.Views.DocumentHolder.textUndo": "Krok späť", "SSE.Views.DocumentHolder.textUnFreezePanes": "Zrušiť priečky", + "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Šípkové odrážky", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Začiarknuteľné odrážky", + "SSE.Views.DocumentHolder.tipMarkersDash": "Pomlčkové odrážky", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Kosoštvorcové odrážky s výplňou", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Vyplnené okrúhle odrážky", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Vyplnené štvorcové odrážky", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Prázdne okrúhle odrážky", + "SSE.Views.DocumentHolder.tipMarkersStar": "Hviezdičkové odrážky", "SSE.Views.DocumentHolder.topCellText": "Zarovnať nahor", "SSE.Views.DocumentHolder.txtAccounting": "Účtovníctvo", "SSE.Views.DocumentHolder.txtAddComment": "Pridať komentár", @@ -1302,14 +1942,16 @@ "SSE.Views.DocumentHolder.txtClearFormat": "Formát", "SSE.Views.DocumentHolder.txtClearHyper": "Hypertextové odkazy", "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Vyčistiť vybrané Sparkline skupiny", - "SSE.Views.DocumentHolder.txtClearSparklines": "Vyčistiť vybrané Sparklines ", + "SSE.Views.DocumentHolder.txtClearSparklines": "Vyčistiť vybrané mikro-grafy", "SSE.Views.DocumentHolder.txtClearText": "Text", "SSE.Views.DocumentHolder.txtColumn": "Celý stĺpec", "SSE.Views.DocumentHolder.txtColumnWidth": "Nastaviť šírku stĺpca", + "SSE.Views.DocumentHolder.txtCondFormat": "Podmienené Formátovanie", "SSE.Views.DocumentHolder.txtCopy": "Kopírovať", "SSE.Views.DocumentHolder.txtCurrency": "Mena", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Špeciálna/vlastná šírka stĺpca", "SSE.Views.DocumentHolder.txtCustomRowHeight": "Špeciálna/vlastná výška riadku", + "SSE.Views.DocumentHolder.txtCustomSort": "Vlastné zoradenie", "SSE.Views.DocumentHolder.txtCut": "Vystrihnúť", "SSE.Views.DocumentHolder.txtDate": "Dátum", "SSE.Views.DocumentHolder.txtDelete": "Vymazať", @@ -1335,6 +1977,7 @@ "SSE.Views.DocumentHolder.txtReapply": "Opäť použiť", "SSE.Views.DocumentHolder.txtRow": "Celý riadok", "SSE.Views.DocumentHolder.txtRowHeight": "Nastaviť výšku riadku", + "SSE.Views.DocumentHolder.txtScientific": "Vedecký", "SSE.Views.DocumentHolder.txtSelect": "Vybrať", "SSE.Views.DocumentHolder.txtShiftDown": "Posunúť bunky dole", "SSE.Views.DocumentHolder.txtShiftLeft": "Posunúť bunky vľavo", @@ -1345,25 +1988,48 @@ "SSE.Views.DocumentHolder.txtSort": "Zoradiť", "SSE.Views.DocumentHolder.txtSortCellColor": "Zvolená farba buniek na vrchu", "SSE.Views.DocumentHolder.txtSortFontColor": "Zvolená farba písma na vrchu", - "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", + "SSE.Views.DocumentHolder.txtSparklines": "Mikro-grafy", "SSE.Views.DocumentHolder.txtText": "Text", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Pokročilé nastavenia textu", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Pokročilé nastavenia odseku", "SSE.Views.DocumentHolder.txtTime": "Čas", "SSE.Views.DocumentHolder.txtUngroup": "Oddeliť", "SSE.Views.DocumentHolder.txtWidth": "Šírka", "SSE.Views.DocumentHolder.vertAlignText": "Vertikálne zarovnanie", "SSE.Views.FieldSettingsDialog.strLayout": "Rozloženie", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Medzisúčty", + "SSE.Views.FieldSettingsDialog.textReport": "Formulár správy", + "SSE.Views.FieldSettingsDialog.textTitle": "Nastavenie poľa", "SSE.Views.FieldSettingsDialog.txtAverage": "Priemer", + "SSE.Views.FieldSettingsDialog.txtBlank": "Vložiť prázdne riadky za kazždú položku", + "SSE.Views.FieldSettingsDialog.txtBottom": "Zobraziť v spodnej časti skupiny", + "SSE.Views.FieldSettingsDialog.txtCompact": "Kompaktný", "SSE.Views.FieldSettingsDialog.txtCount": "Počet", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Spočítať čísla", + "SSE.Views.FieldSettingsDialog.txtCustomName": "Vlastný názov", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Zobraziť položky bez dát", "SSE.Views.FieldSettingsDialog.txtMax": "Max", "SSE.Views.FieldSettingsDialog.txtMin": "Min", + "SSE.Views.FieldSettingsDialog.txtOutline": "Obrys", "SSE.Views.FieldSettingsDialog.txtProduct": "Produkt", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Opakovať štítky položiek na každom riadku", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Zobraziť medzisúčty", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Názov zdroja:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "Smerodajná odchylka", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "Populačná smerodajná odchýlka", "SSE.Views.FieldSettingsDialog.txtSum": "SÚČET", - "SSE.Views.FileMenu.btnBackCaption": "Prejsť do Dokumentov", + "SSE.Views.FieldSettingsDialog.txtSummarize": "Funkcie pre medzisúčty", + "SSE.Views.FieldSettingsDialog.txtTabular": "Tabuľkový", + "SSE.Views.FieldSettingsDialog.txtTop": "Zobraziť v hornej časti skupiny", + "SSE.Views.FieldSettingsDialog.txtVar": "Var", + "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", + "SSE.Views.FileMenu.btnBackCaption": "Otvoriť umiestnenie súboru", "SSE.Views.FileMenu.btnCloseMenuCaption": "Zatvoriť menu", "SSE.Views.FileMenu.btnCreateNewCaption": "Vytvoriť nový", "SSE.Views.FileMenu.btnDownloadCaption": "Stiahnuť ako...", + "SSE.Views.FileMenu.btnExitCaption": "Koniec", + "SSE.Views.FileMenu.btnFileOpenCaption": "Otvoriť...", "SSE.Views.FileMenu.btnHelpCaption": "Pomoc...", + "SSE.Views.FileMenu.btnHistoryCaption": "História verzií", "SSE.Views.FileMenu.btnInfoCaption": "Informácie o zošite...", "SSE.Views.FileMenu.btnPrintCaption": "Tlačiť", "SSE.Views.FileMenu.btnProtectCaption": "Ochrániť", @@ -1373,8 +2039,11 @@ "SSE.Views.FileMenu.btnRightsCaption": "Prístupové práva...", "SSE.Views.FileMenu.btnSaveAsCaption": "Uložiť ako", "SSE.Views.FileMenu.btnSaveCaption": "Uložiť", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Uložiť kópiu ako...", "SSE.Views.FileMenu.btnSettingsCaption": "Pokročilé nastavenia...", "SSE.Views.FileMenu.btnToEditCaption": "Upraviť zošit", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Prázdny zošit", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Vytvoriť nový", "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplikovať", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Pridať autora", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Pridať text", @@ -1388,7 +2057,8 @@ "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Vlastník", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami", - "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov zošitu", + "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Predmet", + "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Nadpis", "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Nahrané", "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmeniť prístupové práva", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami", @@ -1398,18 +2068,26 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Režim spoločnej úpravy", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Oddeľovač desatinných miest", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rýchly", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Náznak typu písma", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Pridaj verziu na úložisko kliknutím na Uložiť alebo Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Jazyk vzorcov", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Príklad: SÚČET; MIN; MAX; POČET", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Zapnúť zobrazovanie komentárov", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Nastavenia makier", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Vystrihni, skopíruj a vlep", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Po vložení obsahu ukázať tlačítko Možnosti vloženia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Zapnúť R1C1 štýl", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Miestne nastavenia", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Príklad:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Zapnúť zobrazenie vyriešených komentárov", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Oddeľovač", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Prísny", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Téma rozhrania", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Oddeľovač tisícov", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Jednotka merania", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Použite oddeľovače na základe miestnych nastavení", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Predvolená hodnota priblíženia", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Každých 10 minút", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Každých 30 minút", @@ -1418,38 +2096,223 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Automatická obnova", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Automatické ukladanie", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Zakázané", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Uložiť na server", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Uložiť dočasnú verziu", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Každú minútu", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Štýl odkazu", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Bielorusky", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulharčina", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Katalánsky", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Prednastavený mód cache", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Čeština", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Dánsko", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Nemčina", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Grécky", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Angličtina", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Španielsky", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Fínčina", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Francúzsky", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Maďarsky", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonézsky ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Palec (miera 2,54 cm)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Talianský", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japonsky", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Kórejsky ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Zobrazenie komentárov", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laoský", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Lotyšský", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "ako OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Pôvodný", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Nórsky", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Holandsky ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Poľština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Bod", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugalsky (Brazília)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugalsky (Portugalsko)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Rumunsky", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Ruština", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Povoliť všetko", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Povoliť všetky makrá bez oznámenia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slovenčina", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Slovinsky ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Zablokovať všetko", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Zablokovať všetky makrá bez upozornenia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Švédsky", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turecky ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ukrajinsky", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamsky ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Ukázať oznámenie", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Zablokovať všetky makrá s upozornením", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ako Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Čínsky", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplikovať", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Jazyk slovníka", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorovať slová písané iba VEĽKÝMI PÍSMENAMI", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorovať slová obsahujúce čísla", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Možnosti automatickej opravy...", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Hľadanie chýb", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Upozornenie", + "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Za pomoci hesla", + "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Zabezpečiť pracovný list", "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Podpis", "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Upraviť zošit", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Upravením budú zo zošitu odobrané podpisy.
    Naozaj chcete pokračovať? ", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Tento tabuľkový procesor je zabezpečený heslom", + "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Túto tabuľku je potrebné podpísať.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Do tabuľky boli pridané platné podpisy. Tabuľka je chránená pred úpravami.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Niektoré digitálne podpisy v tabuľke sú neplatné alebo ich nebolo možné overiť. Tabuľka je chránená pred úpravami.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobraziť podpisy", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Všeobecné", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Nastavenie stránky", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Kontrola pravopisu", + "SSE.Views.FormatRulesEditDlg.fillColor": "Farba pozadia", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Upozornenie", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Farebná škála", "SSE.Views.FormatRulesEditDlg.text3Scales": "3 farebná škála", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "Všetky orámovania", + "SSE.Views.FormatRulesEditDlg.textAppearance": "Vzhľad pruhu", + "SSE.Views.FormatRulesEditDlg.textApply": "Použiť na rozsah", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Automaticky", + "SSE.Views.FormatRulesEditDlg.textAxis": "Os", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "Smer pruhu", + "SSE.Views.FormatRulesEditDlg.textBold": "Tučné", + "SSE.Views.FormatRulesEditDlg.textBorder": "Orámovanie", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "Farba orámovania", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Štýl orámovania", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Spodné orámovanie", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Nie je možné pridať podmienené formátovanie", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Stred bunky", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Vnútorné vertikálne orámovanie", + "SSE.Views.FormatRulesEditDlg.textClear": "Vyčistiť", + "SSE.Views.FormatRulesEditDlg.textColor": "Farba textu", + "SSE.Views.FormatRulesEditDlg.textContext": "Kontext", + "SSE.Views.FormatRulesEditDlg.textCustom": "Vlastný", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Orámovanie diagonálne nadol", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Orámovanie diagonálne nahor", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Zadajte platný vzorec.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "Vzorec, ktorý ste zadali, sa nevyhodnocuje ako číslo, dátum, čas ani reťazec.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Zadajte hodnotu.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "Hodnota, ktorú ste zadali, nie je platným číslom, dátumom, časom alebo reťazcom.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "Hodnota pre {0} musí byť väčšia ako hodnota pre {1}.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Zadajte číslo medzi {0} a {1}.", + "SSE.Views.FormatRulesEditDlg.textFill": "Vyplniť", + "SSE.Views.FormatRulesEditDlg.textFormat": "Formát", + "SSE.Views.FormatRulesEditDlg.textFormula": "Vzorec", + "SSE.Views.FormatRulesEditDlg.textGradient": "Prechod", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "keď {0} {1} a", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "keď {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "Keď hodnota je", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Dochádza k prekrytiu jedného, alebo viacerých rozsahov dát ikon.
    Upravte hodnoty rozsahov dát ikon, aby nedochádzalo k prekrytiu.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Štýl ikony", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Vnútorné orámovanie", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Neplatný rozsah dát.", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "CHYBA! Neplatný rozsah buniek", + "SSE.Views.FormatRulesEditDlg.textItalic": "Kurzíva", + "SSE.Views.FormatRulesEditDlg.textItem": "Položka", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Zľava doprava ", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Orámovanie vľavo", + "SSE.Views.FormatRulesEditDlg.textLongBar": "Najdlhší stĺpec", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Maximum", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maximálny bod", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Vnútorné horizontálne orámovanie", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Stredný bod", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minimálny bod", + "SSE.Views.FormatRulesEditDlg.textNegative": "Negatívne", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Pridať novú vlastnú farbu", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Bez orámovania", + "SSE.Views.FormatRulesEditDlg.textNone": "Žiadny", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Jedna alebo viac hodnôt nie sú platným percentuálnym podielom.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "Zadaná hodnota {0} nie je platným percentom.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Jedna alebo viac hodnôt nie je platným percentilom.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "Zadaná hodnota {0} nie je platným percentilom.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Vonkajšie orámovanie", + "SSE.Views.FormatRulesEditDlg.textPercent": "Percento", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentil", + "SSE.Views.FormatRulesEditDlg.textPosition": "Pozícia", + "SSE.Views.FormatRulesEditDlg.textPositive": "Pozitívne", + "SSE.Views.FormatRulesEditDlg.textPresets": "Prednastavené ", + "SSE.Views.FormatRulesEditDlg.textPreview": "Náhľad", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "V kritériách podmieneného formátovania pre farebné škály, dátové pruhy a sady ikon nemôžete použiť relatívne odkazy.", + "SSE.Views.FormatRulesEditDlg.textReverse": "Obrátené poradie ikon", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Sprava doľava", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Orámovanie vpravo", + "SSE.Views.FormatRulesEditDlg.textRule": "Pravidlo", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Rovnaké ako kladné", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Vybrať údaje", + "SSE.Views.FormatRulesEditDlg.textShortBar": "najkratší stĺpec", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Zobraziť iba stĺpce", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Zobraziť iba ikony", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Tento typ odkazu nemožno použiť vo vzorci podmieneného formátovania.
    Zmeňte odkaz na jednu bunku alebo použite odkaz s funkciou hárka, ako je napríklad =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Pevné", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Preškrtnutie", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Dolný index", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Horný index", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Horné orámovanie", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Podčiarknutie", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Orámovania", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Formát čísla", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Účtovníctvo", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Mena", + "SSE.Views.FormatRulesEditDlg.txtDate": "Dátum", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Toto pole sa vyžaduje", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Zlomok", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "Všeobecný", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Žiadna ikona", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Číslo", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentuálny podiel", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Vedecký", + "SSE.Views.FormatRulesEditDlg.txtText": "Text", + "SSE.Views.FormatRulesEditDlg.txtTime": "Čas", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Upraviť formátovacie pravidlo", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nové formátovacie pravidlo", + "SSE.Views.FormatRulesManagerDlg.guestText": "Hosť", + "SSE.Views.FormatRulesManagerDlg.lockText": "Uzamknutý", + "SSE.Views.FormatRulesManagerDlg.text1Above": "Na 1 štandardnú odchýlku nad priemer", + "SSE.Views.FormatRulesManagerDlg.text1Below": "Na 1 štandardnú odchýlku pod priemer", + "SSE.Views.FormatRulesManagerDlg.text2Above": "2 Smerodajná odchýlka nad priemer", + "SSE.Views.FormatRulesManagerDlg.text2Below": "2 Smerodajná odchýlka pod priemer", + "SSE.Views.FormatRulesManagerDlg.text3Above": "3 Smerodajná odchýlka nad priemer", + "SSE.Views.FormatRulesManagerDlg.text3Below": "3 Smerodajná odchýlka pod priemer", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Nad priemer", + "SSE.Views.FormatRulesManagerDlg.textApply": "Uplatniť na", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Hodnota bunky začína na", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Podpriemerný", + "SSE.Views.FormatRulesManagerDlg.textBetween": "je medzi {0} a {1}", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Hodnota v bunke", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Gradačná farebná škála", + "SSE.Views.FormatRulesManagerDlg.textContains": "Hodnota bunky obsahuje", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Bunka obsahuje prázdnu hodnotu", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "Chybný obsah bunky", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Odstrániť", + "SSE.Views.FormatRulesManagerDlg.textDown": "Presunúť pravidlo dole", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Duplikovať hodnoty", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Upraviť", + "SSE.Views.FormatRulesManagerDlg.textEnds": "Hodnota bunky končí na", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Rovné alebo nadpriemerné", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Rovné alebo podpriemerné", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Formát", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Sada ikon", + "SSE.Views.FormatRulesManagerDlg.textNew": "Nový", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "nie je medzi {0} a {1}", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "Hodnota bunky neobsahuje", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Bunka obsahuje prázdnu hodnotu", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Bunka neobsahuje chybu", + "SSE.Views.FormatRulesManagerDlg.textRules": "Pravidlá", + "SSE.Views.FormatRulesManagerDlg.textScope": "Zobraziť pravidlá formátovania pre", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Vybrať údaje", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Súčasný výber", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Táto kontingenčná tabuľka", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Tento pracovný list", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "Táto tabuľka ", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Unikátne hodnoty", + "SSE.Views.FormatRulesManagerDlg.textUp": "Presunúť pravidlo hore", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Tento prvok upravuje iný používateľ.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Podmienené Formátovanie", "SSE.Views.FormatSettingsDialog.textCategory": "Kategória", "SSE.Views.FormatSettingsDialog.textDecimal": "Desatinné číslo/desatinný", "SSE.Views.FormatSettingsDialog.textFormat": "Formát", + "SSE.Views.FormatSettingsDialog.textLinked": "Odkaz na zdroj", "SSE.Views.FormatSettingsDialog.textSeparator": "Použiť oddeľovač 1000", "SSE.Views.FormatSettingsDialog.textSymbols": "Symboly", "SSE.Views.FormatSettingsDialog.textTitle": "Formát čísla", @@ -1462,6 +2325,7 @@ "SSE.Views.FormatSettingsDialog.txtAs8": "Ako osminy (4/8)", "SSE.Views.FormatSettingsDialog.txtCurrency": "Mena", "SSE.Views.FormatSettingsDialog.txtCustom": "Vlastný", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Zadajte prosím neštandardný číselný formát obozretne. Tabuľkový editor nekontroluje súčtové hodnoty formátu na chyby, ktoré môžu ovplyvniť súbor xlsx.", "SSE.Views.FormatSettingsDialog.txtDate": "Dátum", "SSE.Views.FormatSettingsDialog.txtFraction": "Zlomok", "SSE.Views.FormatSettingsDialog.txtGeneral": "Všeobecné", @@ -1478,6 +2342,8 @@ "SSE.Views.FormulaDialog.sDescription": "Popis", "SSE.Views.FormulaDialog.textGroupDescription": "Vybrať skupinu funkcií", "SSE.Views.FormulaDialog.textListDescription": "Vybrať funkciu", + "SSE.Views.FormulaDialog.txtRecommended": "Odporúčúné", + "SSE.Views.FormulaDialog.txtSearch": "Hľadať", "SSE.Views.FormulaDialog.txtTitle": "Vložiť funkciu", "SSE.Views.FormulaTab.textAutomatic": "Automaticky", "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Vypočítať aktuálny hárok", @@ -1491,9 +2357,20 @@ "SSE.Views.FormulaTab.txtCalculation": "Kalkulácia", "SSE.Views.FormulaTab.txtFormula": "Funkcia", "SSE.Views.FormulaTab.txtFormulaTip": "Vložiť funkciu", + "SSE.Views.FormulaTab.txtMore": "Ďalšie funkcie", + "SSE.Views.FormulaTab.txtRecent": "Nedávno použité", "SSE.Views.FormulaWizard.textAny": "ktorýkoľvek", "SSE.Views.FormulaWizard.textArgument": "Argument", "SSE.Views.FormulaWizard.textFunction": "Funkcia", + "SSE.Views.FormulaWizard.textFunctionRes": "Výsledok fukcie", + "SSE.Views.FormulaWizard.textHelp": "Nápovede k tejto funkcií", + "SSE.Views.FormulaWizard.textLogical": "Logické", + "SSE.Views.FormulaWizard.textNoArgs": "Táto funkcia nemá žiadne argumenty", + "SSE.Views.FormulaWizard.textNumber": "číslo", + "SSE.Views.FormulaWizard.textRef": "odkaz", + "SSE.Views.FormulaWizard.textText": "text", + "SSE.Views.FormulaWizard.textTitle": "Argumenty funkcie", + "SSE.Views.FormulaWizard.textValue": "Výsledok vzorca", "SSE.Views.HeaderFooterDialog.textAlign": "Zarovnať s okrajmi stránky", "SSE.Views.HeaderFooterDialog.textAll": "Všetky stránky", "SSE.Views.HeaderFooterDialog.textBold": "Tučné", @@ -1506,16 +2383,24 @@ "SSE.Views.HeaderFooterDialog.textFileName": "Názov súboru", "SSE.Views.HeaderFooterDialog.textFirst": "Prvá strana", "SSE.Views.HeaderFooterDialog.textFooter": "Päta stránky", + "SSE.Views.HeaderFooterDialog.textHeader": "Hlavička", "SSE.Views.HeaderFooterDialog.textInsert": "Vložiť", "SSE.Views.HeaderFooterDialog.textItalic": "Kurzíva", "SSE.Views.HeaderFooterDialog.textLeft": "Vľavo", + "SSE.Views.HeaderFooterDialog.textMaxError": "Zadaný textový reťazec je príliš dlhý. Znížte počet použitých znakov.", "SSE.Views.HeaderFooterDialog.textNewColor": "Pridať novú vlastnú farbu", "SSE.Views.HeaderFooterDialog.textOdd": "Nepárna strana", "SSE.Views.HeaderFooterDialog.textPageCount": "Počet stránok", "SSE.Views.HeaderFooterDialog.textPageNum": "Číslo strany", + "SSE.Views.HeaderFooterDialog.textPresets": "Prednastavené ", "SSE.Views.HeaderFooterDialog.textRight": "Vpravo", + "SSE.Views.HeaderFooterDialog.textScale": "Škáluj s dokumentom", + "SSE.Views.HeaderFooterDialog.textSheet": "Názov listu", + "SSE.Views.HeaderFooterDialog.textStrikeout": "Preškrtnutie", + "SSE.Views.HeaderFooterDialog.textSubscript": "Dolný index", "SSE.Views.HeaderFooterDialog.textSuperscript": "Horný index", "SSE.Views.HeaderFooterDialog.textTime": "Čas", + "SSE.Views.HeaderFooterDialog.textTitle": "Nastavenie Hlavičky/päty", "SSE.Views.HeaderFooterDialog.textUnderline": "Podčiarknuť", "SSE.Views.HeaderFooterDialog.tipFontName": "Písmo", "SSE.Views.HeaderFooterDialog.tipFontSize": "Veľkosť písma", @@ -1529,17 +2414,22 @@ "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Tu zadajte odkaz", "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tu zadajte popisku", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Získať odkaz", "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Interný rozsah údajov", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "CHYBA! Neplatný rozsah buniek", "SSE.Views.HyperlinkSettingsDialog.textNames": "Definované názvy", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Vybrať údaje", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "Listy", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Popis", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Toto pole je obmedzené na 2083 znakov", "SSE.Views.ImageSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "SSE.Views.ImageSettings.textCrop": "Orezať", "SSE.Views.ImageSettings.textCropFill": "Vyplniť", "SSE.Views.ImageSettings.textCropFit": "Prispôsobiť", + "SSE.Views.ImageSettings.textCropToShape": "Orezať podľa tvaru", "SSE.Views.ImageSettings.textEdit": "Upraviť", "SSE.Views.ImageSettings.textEditObject": "Upraviť objekt", "SSE.Views.ImageSettings.textFlip": "Prevrátiť", @@ -1547,22 +2437,31 @@ "SSE.Views.ImageSettings.textFromStorage": "Z úložiska", "SSE.Views.ImageSettings.textFromUrl": "Z URL adresy ", "SSE.Views.ImageSettings.textHeight": "Výška", + "SSE.Views.ImageSettings.textHint270": "Otočiť o 90° doľava", + "SSE.Views.ImageSettings.textHint90": "Otočiť o 90° doprava", "SSE.Views.ImageSettings.textHintFlipH": "Prevrátiť horizontálne", "SSE.Views.ImageSettings.textHintFlipV": "Prevrátiť vertikálne", "SSE.Views.ImageSettings.textInsert": "Nahradiť obrázok", "SSE.Views.ImageSettings.textKeepRatio": "Konštantné rozmery", "SSE.Views.ImageSettings.textOriginalSize": "Predvolená veľkosť", + "SSE.Views.ImageSettings.textRecentlyUsed": "Nedávno použité", "SSE.Views.ImageSettings.textRotate90": "Otočiť o 90°", + "SSE.Views.ImageSettings.textRotation": "Rotácia", "SSE.Views.ImageSettings.textSize": "Veľkosť", "SSE.Views.ImageSettings.textWidth": "Šírka", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Neposúvať alebo nemeniť veľkosť s bunkami", "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternatívny text", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Popis", "SSE.Views.ImageSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Názov", "SSE.Views.ImageSettingsAdvanced.textAngle": "Uhol", "SSE.Views.ImageSettingsAdvanced.textFlipped": "Prevrátený", + "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontálne", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "Presúvať ale nemeniť veľkosť spoločne s bunkami", + "SSE.Views.ImageSettingsAdvanced.textRotation": "Rotácia", "SSE.Views.ImageSettingsAdvanced.textSnap": "Prichytenie bunky", "SSE.Views.ImageSettingsAdvanced.textTitle": "Obrázok - Pokročilé nastavenia", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Presúvať a meniť veľkosť spoločne s bunkami", "SSE.Views.ImageSettingsAdvanced.textVertically": "Zvisle", "SSE.Views.LeftMenu.tipAbout": "O aplikácii", "SSE.Views.LeftMenu.tipChat": "Rozhovor", @@ -1570,9 +2469,14 @@ "SSE.Views.LeftMenu.tipFile": "Súbor", "SSE.Views.LeftMenu.tipPlugins": "Pluginy", "SSE.Views.LeftMenu.tipSearch": "Hľadať", + "SSE.Views.LeftMenu.tipSpellcheck": "Kontrola pravopisu", "SSE.Views.LeftMenu.tipSupport": "Spätná väzba a podpora", "SSE.Views.LeftMenu.txtDeveloper": "VÝVOJÁRSKY REŽIM", + "SSE.Views.LeftMenu.txtLimit": "Obmedziť prístup", "SSE.Views.LeftMenu.txtTrial": "Skúšobný režim", + "SSE.Views.LeftMenu.txtTrialDev": "Skúšobný vývojársky režim", + "SSE.Views.MacroDialog.textMacro": "Názov makra", + "SSE.Views.MacroDialog.textTitle": "Priradiť makro", "SSE.Views.MainSettingsPrint.okButtonText": "Uložiť", "SSE.Views.MainSettingsPrint.strBottom": "Dole", "SSE.Views.MainSettingsPrint.strLandscape": "Na šírku", @@ -1580,10 +2484,12 @@ "SSE.Views.MainSettingsPrint.strMargins": "Okraje", "SSE.Views.MainSettingsPrint.strPortrait": "Na výšku", "SSE.Views.MainSettingsPrint.strPrint": "Tlačiť", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Tlač názvu", "SSE.Views.MainSettingsPrint.strRight": "Vpravo", "SSE.Views.MainSettingsPrint.strTop": "Hore", "SSE.Views.MainSettingsPrint.textActualSize": "Aktuálna veľkosť", "SSE.Views.MainSettingsPrint.textCustom": "Vlastný", + "SSE.Views.MainSettingsPrint.textCustomOptions": "Vlastné možnosti", "SSE.Views.MainSettingsPrint.textFitCols": "Prispôsobiť všetky stĺpce na jednu stránku", "SSE.Views.MainSettingsPrint.textFitPage": "Prispôsobiť list na jednu stranu", "SSE.Views.MainSettingsPrint.textFitRows": "Prispôsobiť všetky riadky na jednu stránku", @@ -1592,6 +2498,9 @@ "SSE.Views.MainSettingsPrint.textPageSize": "Veľkosť stránky", "SSE.Views.MainSettingsPrint.textPrintGrid": "Vytlačiť mriežky", "SSE.Views.MainSettingsPrint.textPrintHeadings": "Vytlačiť nadpisy riadkov a stĺpcov", + "SSE.Views.MainSettingsPrint.textRepeat": "Opakovať...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "Vľavo opakovať stĺpce", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Opakovať riadky na vrchu", "SSE.Views.MainSettingsPrint.textSettings": "Nastavenie pre", "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Existujúce pomenované rozsahy nemožno upraviť a nové nemôžu byť momentálne vytvorené
    , keďže niektoré z nich sú práve editované.", "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Definovaný názov", @@ -1613,6 +2522,7 @@ "SSE.Views.NamedRangePasteDlg.txtTitle": "Vložiť názov", "SSE.Views.NameManagerDlg.closeButtonText": "Zatvoriť", "SSE.Views.NameManagerDlg.guestText": "Návštevník", + "SSE.Views.NameManagerDlg.lockText": "Uzamknutý", "SSE.Views.NameManagerDlg.textDataRange": "Rozsah údajov", "SSE.Views.NameManagerDlg.textDelete": "Vymazať", "SSE.Views.NameManagerDlg.textEdit": "Upraviť", @@ -1630,6 +2540,7 @@ "SSE.Views.NameManagerDlg.textWorkbook": "Zošit", "SSE.Views.NameManagerDlg.tipIsLocked": "Tento prvok upravuje iný používateľ.", "SSE.Views.NameManagerDlg.txtTitle": "Správca názvov", + "SSE.Views.NameManagerDlg.warnDelete": "Ste si naozaj istý, že chcete názov {0} zmazať?", "SSE.Views.PageMarginsDialog.textBottom": "Dole", "SSE.Views.PageMarginsDialog.textLeft": "Vľavo", "SSE.Views.PageMarginsDialog.textRight": "Vpravo", @@ -1648,15 +2559,18 @@ "SSE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli", "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všetko veľkým", "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Odsadenia", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Riadkovanie", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Za", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Pred", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Špeciálne", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Od", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Písmo", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Odsadenie a umiestnenie", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Zarážky a medzery", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Malé písmená", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Medzery", "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Prečiarknutie", "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Dolný index", "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Horný index", @@ -1668,6 +2582,7 @@ "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty", "SSE.Views.ParagraphSettingsAdvanced.textExact": "presne", "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Prvý riadok", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Závesný", "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Podľa okrajov", "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(žiadne)", "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Odstrániť", @@ -1684,6 +2599,7 @@ "SSE.Views.PivotDigitalFilterDialog.capCondition11": "Obsahuje", "SSE.Views.PivotDigitalFilterDialog.capCondition12": "Neobsahuje", "SSE.Views.PivotDigitalFilterDialog.capCondition13": "medzi", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "nie medzi", "SSE.Views.PivotDigitalFilterDialog.capCondition2": "nerovná sa", "SSE.Views.PivotDigitalFilterDialog.capCondition3": "je väčšie ako", "SSE.Views.PivotDigitalFilterDialog.capCondition4": "je väčšie alebo rovné ", @@ -1692,29 +2608,100 @@ "SSE.Views.PivotDigitalFilterDialog.capCondition7": "Začať s", "SSE.Views.PivotDigitalFilterDialog.capCondition8": "Nezačína s", "SSE.Views.PivotDigitalFilterDialog.capCondition9": "Končí s", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Zobraziť položky, ktorých štítok:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Zobraziť položky pre ktoré:", "SSE.Views.PivotDigitalFilterDialog.textUse1": "Použite ? na zobrazenie akéhokoľvek jedného znaku", "SSE.Views.PivotDigitalFilterDialog.textUse2": "Použite * na zobrazenie ľubovoľnej série znakov", "SSE.Views.PivotDigitalFilterDialog.txtAnd": "a", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filtrovanie štítkov", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Filter hodnôt", + "SSE.Views.PivotGroupDialog.textAuto": "Automaticky", + "SSE.Views.PivotGroupDialog.textBy": "Od", + "SSE.Views.PivotGroupDialog.textDays": "Dni", + "SSE.Views.PivotGroupDialog.textEnd": "Končí na", + "SSE.Views.PivotGroupDialog.textError": "Toto pole musí byť číselná hodnota", + "SSE.Views.PivotGroupDialog.textGreaterError": "Koncové číslo musí byť väčšie ako počiatočné číslo", + "SSE.Views.PivotGroupDialog.textHour": "Hodiny", + "SSE.Views.PivotGroupDialog.textMin": "Minúty", + "SSE.Views.PivotGroupDialog.textMonth": "Mesiace", + "SSE.Views.PivotGroupDialog.textNumDays": "Počet dní", + "SSE.Views.PivotGroupDialog.textQuart": "Štvrtiny", + "SSE.Views.PivotGroupDialog.textSec": "Sekundy", + "SSE.Views.PivotGroupDialog.textStart": "Začínajúci pri", + "SSE.Views.PivotGroupDialog.textYear": "Roky", + "SSE.Views.PivotGroupDialog.txtTitle": "Zoskupovanie", "SSE.Views.PivotSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "SSE.Views.PivotSettings.textColumns": "Stĺpce", + "SSE.Views.PivotSettings.textFields": "Vybrať polia", + "SSE.Views.PivotSettings.textFilters": "Filtre", "SSE.Views.PivotSettings.textRows": "Riadky", "SSE.Views.PivotSettings.textValues": "Hodnoty", "SSE.Views.PivotSettings.txtAddColumn": "Pridať k stĺpcom", "SSE.Views.PivotSettings.txtAddFilter": "Pridať k filtrom", "SSE.Views.PivotSettings.txtAddRow": "Pridať k riadkom", "SSE.Views.PivotSettings.txtAddValues": "Pridať k hodnotám", + "SSE.Views.PivotSettings.txtFieldSettings": "Nastavenie poľa", + "SSE.Views.PivotSettings.txtMoveBegin": "Presunúť na začiatok", + "SSE.Views.PivotSettings.txtMoveColumn": "Presunúť do stĺpcov", + "SSE.Views.PivotSettings.txtMoveDown": "Presunúť dole ", + "SSE.Views.PivotSettings.txtMoveEnd": "Presunúť na koniec", + "SSE.Views.PivotSettings.txtMoveFilter": "Presunúť do filtrov", + "SSE.Views.PivotSettings.txtMoveRow": "Presunúť do riadkov", + "SSE.Views.PivotSettings.txtMoveUp": "Presunúť hore", + "SSE.Views.PivotSettings.txtMoveValues": "Presunúť do hodnôt", + "SSE.Views.PivotSettings.txtRemove": "Odobrať pole", + "SSE.Views.PivotSettingsAdvanced.strLayout": "Názov a rozloženie", "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternatívny text", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Popis", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Názov", "SSE.Views.PivotSettingsAdvanced.textDataRange": "Rozsah údajov", "SSE.Views.PivotSettingsAdvanced.textDataSource": "Dátový zdroj", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Zobraziť pole v oblasti pre záznam filtru", + "SSE.Views.PivotSettingsAdvanced.textDown": "Dole, potom priečne", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Celkové súčty", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "Pole hlavičky ", "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "CHYBA! Neplatný rozsah buniek", + "SSE.Views.PivotSettingsAdvanced.textOver": "Priečne, potom dole", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Vybrať údaje", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Zobraziť pre stĺpce", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Zobraziť hlavičky polí pre riadky a stĺpce", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Zobraziť pre riadky", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Kontingenčná tabuľka - pokročilé", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Prehľad polí filtra podľa stĺpca", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Prehľad polí filtra podľa riadku", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.PivotSettingsAdvanced.txtName": "Meno", "SSE.Views.PivotTable.capBlankRows": "Prázdne riadky", + "SSE.Views.PivotTable.capGrandTotals": "Celkové súčty", + "SSE.Views.PivotTable.capLayout": "Rozloženie hĺásenia", + "SSE.Views.PivotTable.capSubtotals": "Medzisúčty", + "SSE.Views.PivotTable.mniBottomSubtotals": "Zobraziť všetky medzisúčty na konci skupiny", + "SSE.Views.PivotTable.mniInsertBlankLine": "Za každú z položiek vložiť prázdny riadok", + "SSE.Views.PivotTable.mniLayoutCompact": "Zobraziť v kompaktnej forme", + "SSE.Views.PivotTable.mniLayoutNoRepeat": "Neopakovať štítky všetkých položiek", + "SSE.Views.PivotTable.mniLayoutOutline": "Zobraziť ako obrys", + "SSE.Views.PivotTable.mniLayoutRepeat": "Zopakovať všetky štítky položky", + "SSE.Views.PivotTable.mniLayoutTabular": "Zobraziť v podobe tabuľky", + "SSE.Views.PivotTable.mniNoSubtotals": "Nezobrazovať medzisúčty", + "SSE.Views.PivotTable.mniOffTotals": "Vypnuté pre riadky a stĺpce", + "SSE.Views.PivotTable.mniOnColumnsTotals": "Zapnuté iba pre stĺpce", + "SSE.Views.PivotTable.mniOnRowsTotals": "Zapnuté iba pre riadky", + "SSE.Views.PivotTable.mniOnTotals": "Zapnuté iba pre riadky a stĺpce", + "SSE.Views.PivotTable.mniRemoveBlankLine": "Odobrať prázdny riadok za každou z položiek", + "SSE.Views.PivotTable.mniTopSubtotals": "Zobraziť všetky medzisúčty v hornej časti skupiny", "SSE.Views.PivotTable.textColBanded": "Zoskupené stĺpce", "SSE.Views.PivotTable.textColHeader": "Záhlavia stĺpcov", "SSE.Views.PivotTable.textRowBanded": "Zoskupené riadky", + "SSE.Views.PivotTable.textRowHeader": "Hlavičky riadku", + "SSE.Views.PivotTable.tipCreatePivot": "Vložiť Kontingenťnú Tabuľku", + "SSE.Views.PivotTable.tipGrandTotals": "Zobraziť alebo skryť celkové súčty", + "SSE.Views.PivotTable.tipRefresh": "Aktualizovať informácie z dátového zdroja", + "SSE.Views.PivotTable.tipSelect": "Vybrať celú kontingenčnú tabuľku", + "SSE.Views.PivotTable.tipSubtotals": "Zobraziť alebo skryť medzisúčty", "SSE.Views.PivotTable.txtCreate": "Vložiť tabuľku", + "SSE.Views.PivotTable.txtPivotTable": "Kontingenčná tabuľka", + "SSE.Views.PivotTable.txtRefresh": "Znovu načítať", "SSE.Views.PivotTable.txtSelect": "Vybrať", "SSE.Views.PrintSettings.btnDownload": "Uložiť a stiahnuť", "SSE.Views.PrintSettings.btnPrint": "Uložiť a vytlačiť", @@ -1724,6 +2711,7 @@ "SSE.Views.PrintSettings.strMargins": "Okraje", "SSE.Views.PrintSettings.strPortrait": "Na výšku", "SSE.Views.PrintSettings.strPrint": "Tlačiť", + "SSE.Views.PrintSettings.strPrintTitles": "Tlač názvu", "SSE.Views.PrintSettings.strRight": "Vpravo", "SSE.Views.PrintSettings.strShow": "Zobraziť", "SSE.Views.PrintSettings.strTop": "Hore", @@ -1731,10 +2719,12 @@ "SSE.Views.PrintSettings.textAllSheets": "Všetky listy", "SSE.Views.PrintSettings.textCurrentSheet": "Aktuálny list", "SSE.Views.PrintSettings.textCustom": "Vlastný", + "SSE.Views.PrintSettings.textCustomOptions": "Vlastné možnosti", "SSE.Views.PrintSettings.textFitCols": "Prispôsobiť všetky stĺpce na jednu stránku", "SSE.Views.PrintSettings.textFitPage": "Prispôsobiť list na jednu stranu", "SSE.Views.PrintSettings.textFitRows": "Prispôsobiť všetky riadky na jednu stránku", "SSE.Views.PrintSettings.textHideDetails": "Skryť detaily", + "SSE.Views.PrintSettings.textIgnore": "Ignorovať oblasť tlače", "SSE.Views.PrintSettings.textLayout": "Rozloženie", "SSE.Views.PrintSettings.textPageOrientation": "Orientácia stránky", "SSE.Views.PrintSettings.textPageScaling": "Mierka", @@ -1743,29 +2733,142 @@ "SSE.Views.PrintSettings.textPrintHeadings": "Vytlačiť nadpisy riadkov a stĺpcov", "SSE.Views.PrintSettings.textPrintRange": "Rozsah tlače", "SSE.Views.PrintSettings.textRange": "Rozsah", + "SSE.Views.PrintSettings.textRepeat": "Opakovať...", + "SSE.Views.PrintSettings.textRepeatLeft": "Vľavo opakovať stĺpce", + "SSE.Views.PrintSettings.textRepeatTop": "Opakovať riadky na vrchu", "SSE.Views.PrintSettings.textSelection": "Výber", "SSE.Views.PrintSettings.textSettings": "Nastavenie listu", "SSE.Views.PrintSettings.textShowDetails": "Zobraziť detaily", + "SSE.Views.PrintSettings.textShowGrid": "Zobraziť čiary mriežky", + "SSE.Views.PrintSettings.textShowHeadings": "Zobraziť hlavičky riadkov a stĺpcov", "SSE.Views.PrintSettings.textTitle": "Nastavenia tlače", "SSE.Views.PrintSettings.textTitlePDF": "Nastavení pro PDF", "SSE.Views.PrintTitlesDialog.textFirstCol": "Prvý stĺpec", "SSE.Views.PrintTitlesDialog.textFirstRow": "Prvý riadok", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Ukotvené stĺpce", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Ukotvené riadky", "SSE.Views.PrintTitlesDialog.textInvalidRange": "CHYBA! Neplatný rozsah buniek", + "SSE.Views.PrintTitlesDialog.textLeft": "Vľavo opakovať stĺpce", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "Neopakovať", + "SSE.Views.PrintTitlesDialog.textRepeat": "Opakovať...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Vybrať rozsah", + "SSE.Views.PrintTitlesDialog.textTitle": "Tlač názvu", + "SSE.Views.PrintTitlesDialog.textTop": "Opakovať riadky na vrchu", + "SSE.Views.PrintWithPreview.txtActualSize": "Aktuálna veľkosť", + "SSE.Views.PrintWithPreview.txtAllSheets": "Všetky listy", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Použiť na všetky listy", + "SSE.Views.PrintWithPreview.txtBottom": "Dole", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "Aktuálny list", + "SSE.Views.PrintWithPreview.txtCustom": "Vlastný", + "SSE.Views.PrintWithPreview.txtCustomOptions": "Vlastné možnosti", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Nie je čo tlačiť, pretože tabuľka je prázdna", + "SSE.Views.PrintWithPreview.txtFitCols": "Prispôsobiť všetky stĺpce na jednu stránku", + "SSE.Views.PrintWithPreview.txtFitPage": "Prispôsobiť list na jednu stranu", + "SSE.Views.PrintWithPreview.txtFitRows": "Prispôsobiť všetky riadky na jednu stránku", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Mriežky a nadpisy", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Nastavenie Hlavičky/päty", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignorovať oblasť tlače", + "SSE.Views.PrintWithPreview.txtLandscape": "Na šírku", + "SSE.Views.PrintWithPreview.txtLeft": "Vľavo", + "SSE.Views.PrintWithPreview.txtMargins": "Okraje", + "SSE.Views.PrintWithPreview.txtOf": "z {0}", + "SSE.Views.PrintWithPreview.txtPage": "Stránka", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "Číslo stránky je neplatné", + "SSE.Views.PrintWithPreview.txtPageOrientation": "Orientácia stránky", + "SSE.Views.PrintWithPreview.txtPageSize": "Veľkosť stránky", + "SSE.Views.PrintWithPreview.txtPortrait": "Na výšku", + "SSE.Views.PrintWithPreview.txtPrint": "Tlačiť", + "SSE.Views.PrintWithPreview.txtPrintGrid": "Vytlačiť mriežky", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Vytlačiť nadpisy riadkov a stĺpcov", + "SSE.Views.PrintWithPreview.txtPrintRange": "Rozsah tlače", + "SSE.Views.PrintWithPreview.txtPrintTitles": "Tlač názvu", + "SSE.Views.PrintWithPreview.txtRepeat": "Opakovať...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Vľavo opakovať stĺpce", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Opakovať riadky na vrchu", + "SSE.Views.PrintWithPreview.txtRight": "Vpravo", + "SSE.Views.PrintWithPreview.txtSave": "Uložiť", + "SSE.Views.PrintWithPreview.txtScaling": "Škálovanie", + "SSE.Views.PrintWithPreview.txtSelection": "Výber", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Nastavenia listu", + "SSE.Views.PrintWithPreview.txtSheet": "List: {0}", + "SSE.Views.PrintWithPreview.txtTop": "Hore", + "SSE.Views.ProtectDialog.textExistName": "CHYBA! Rozsah s takým názvom úž existuje", + "SSE.Views.ProtectDialog.textInvalidName": "Názov rozsahu musí začínať písmenom a môže obsahovať iba písmená, čísla a medzery.", + "SSE.Views.ProtectDialog.textInvalidRange": "CHYBA! Neplatný rozsah buniek", + "SSE.Views.ProtectDialog.textSelectData": "Vybrať údaje", + "SSE.Views.ProtectDialog.txtAllow": "Umožniť všetkým užívateľom tohto listu", + "SSE.Views.ProtectDialog.txtAutofilter": "Použiť automatické filtrovanie", + "SSE.Views.ProtectDialog.txtDelCols": "Zmazať stĺpce", + "SSE.Views.ProtectDialog.txtDelRows": "Zmazať riadky", + "SSE.Views.ProtectDialog.txtEmpty": "Toto pole sa vyžaduje", + "SSE.Views.ProtectDialog.txtFormatCells": "Formátovanie buniek", + "SSE.Views.ProtectDialog.txtFormatCols": "Formátovať stĺpce", + "SSE.Views.ProtectDialog.txtFormatRows": "Formátovať riadky", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "Heslá sa nezhodujú", + "SSE.Views.ProtectDialog.txtInsCols": "Vložiť stĺpce", + "SSE.Views.ProtectDialog.txtInsHyper": "Vložiť hypertextový odkaz", + "SSE.Views.ProtectDialog.txtInsRows": "Vložiť riadky", + "SSE.Views.ProtectDialog.txtObjs": "Upraviť objekty", + "SSE.Views.ProtectDialog.txtOptional": "voliteľný", + "SSE.Views.ProtectDialog.txtPassword": "Heslo", + "SSE.Views.ProtectDialog.txtPivot": "Použite kontingenčnú tabuľku a kontingenčný graf", + "SSE.Views.ProtectDialog.txtProtect": "Ochrániť", + "SSE.Views.ProtectDialog.txtRange": "Rozsah", + "SSE.Views.ProtectDialog.txtRangeName": "Nadpis", + "SSE.Views.ProtectDialog.txtRepeat": "Zopakujte heslo", + "SSE.Views.ProtectDialog.txtScen": "Upraviť scenáre", + "SSE.Views.ProtectDialog.txtSelLocked": "Vybrať uzamknuté bunky", + "SSE.Views.ProtectDialog.txtSelUnLocked": "Vybrať odomknuté bunky", + "SSE.Views.ProtectDialog.txtSheetDescription": "Pokiaľ chcete zabrániť nechceným zmenám ostatnými, obmedzte ich možnosť upravovať.", + "SSE.Views.ProtectDialog.txtSheetTitle": "Zabezpečiť list", + "SSE.Views.ProtectDialog.txtSort": "Zoradiť", + "SSE.Views.ProtectDialog.txtWarning": "Upozornenie: Ak stratíte alebo zabudnete heslo, nemožno ho obnoviť. Uschovajte ho na bezpečnom mieste.", + "SSE.Views.ProtectDialog.txtWBDescription": "Môžete použiť heslo na zabránenie zobrazenia, pridávania, presúvania, odstránenia, skrytia alebo premenovania súboru inýmí užívateľmi.", + "SSE.Views.ProtectDialog.txtWBTitle": "Zabezpečiť štruktúru zošitu", + "SSE.Views.ProtectRangesDlg.guestText": "Hosť", + "SSE.Views.ProtectRangesDlg.lockText": "Uzamknutý", + "SSE.Views.ProtectRangesDlg.textDelete": "Odstrániť", + "SSE.Views.ProtectRangesDlg.textEdit": "Upraviť", + "SSE.Views.ProtectRangesDlg.textEmpty": "Nie sú povolené žiadne rozsahy pre úpravy.", + "SSE.Views.ProtectRangesDlg.textNew": "Nový", + "SSE.Views.ProtectRangesDlg.textProtect": "Zabezpečiť list", + "SSE.Views.ProtectRangesDlg.textPwd": "Heslo", + "SSE.Views.ProtectRangesDlg.textRange": "Rozsah", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "Rozsahy odomknuté heslom keď je list zabezpečený(toto funguje iba pre uzamknuté bunky)", + "SSE.Views.ProtectRangesDlg.textTitle": "Nadpis", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "Tento prvok upravuje iný používateľ.", + "SSE.Views.ProtectRangesDlg.txtEditRange": "Upraviť rozsah", + "SSE.Views.ProtectRangesDlg.txtNewRange": "Nový rozsah", + "SSE.Views.ProtectRangesDlg.txtNo": "Nie", + "SSE.Views.ProtectRangesDlg.txtTitle": "Umožniť užívateľom upravovať rozsahy", + "SSE.Views.ProtectRangesDlg.txtYes": "Áno", + "SSE.Views.ProtectRangesDlg.warnDelete": "Ste si naozaj istý, že chcete názov {0} zmazať?", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Stĺpce", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "Ak chcete odstrániť duplicitné hodnoty, vyberte jeden alebo viacero stĺpcov, ktoré obsahujú duplikáty.", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Moje dáta majú hlavičku", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Vybrať všetko", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Odobrať duplicity", "SSE.Views.RightMenu.txtCellSettings": "Nastavenia buniek", "SSE.Views.RightMenu.txtChartSettings": "Nastavenia grafu", "SSE.Views.RightMenu.txtImageSettings": "Nastavenie obrázka", - "SSE.Views.RightMenu.txtParagraphSettings": "Nastavenia textu", + "SSE.Views.RightMenu.txtParagraphSettings": "Nastavenia odseku", + "SSE.Views.RightMenu.txtPivotSettings": "Nastavenia kontingenčnej tabuľky", "SSE.Views.RightMenu.txtSettings": "Všeobecné nastavenia", "SSE.Views.RightMenu.txtShapeSettings": "Nastavenia tvaru", + "SSE.Views.RightMenu.txtSignatureSettings": "Nastavenia Podpisu", + "SSE.Views.RightMenu.txtSlicerSettings": "Nastavenie prierezu", "SSE.Views.RightMenu.txtSparklineSettings": "Nastavenia Sparkline ", "SSE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky", "SSE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art", "SSE.Views.ScaleDialog.textAuto": "Automaticky", + "SSE.Views.ScaleDialog.textError": "Zadaná hodnota nie je platná.", "SSE.Views.ScaleDialog.textFewPages": "Strany", + "SSE.Views.ScaleDialog.textFitTo": "Prispôsobiť ku", "SSE.Views.ScaleDialog.textHeight": "Výška", "SSE.Views.ScaleDialog.textManyPages": "Strany", "SSE.Views.ScaleDialog.textOnePage": "Stránka", + "SSE.Views.ScaleDialog.textScaleTo": "Škáluj do", + "SSE.Views.ScaleDialog.textTitle": "Nastavenia škálovania ", "SSE.Views.ScaleDialog.textWidth": "Šírka", "SSE.Views.SetValueDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}", "SSE.Views.SetValueDialog.txtMinText": "Minimálna hodnota pre toto pole je {0}", @@ -1775,8 +2878,9 @@ "SSE.Views.ShapeSettings.strFill": "Vyplniť", "SSE.Views.ShapeSettings.strForeground": "Farba popredia", "SSE.Views.ShapeSettings.strPattern": "Vzor", + "SSE.Views.ShapeSettings.strShadow": "Ukázať tieň", "SSE.Views.ShapeSettings.strSize": "Veľkosť", - "SSE.Views.ShapeSettings.strStroke": "Obrys", + "SSE.Views.ShapeSettings.strStroke": "Čiara/líniový graf", "SSE.Views.ShapeSettings.strTransparency": "Priehľadnosť", "SSE.Views.ShapeSettings.strType": "Typ", "SSE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia", @@ -1789,8 +2893,10 @@ "SSE.Views.ShapeSettings.textFromFile": "Zo súboru", "SSE.Views.ShapeSettings.textFromStorage": "Z úložiska", "SSE.Views.ShapeSettings.textFromUrl": "Z URL adresy ", - "SSE.Views.ShapeSettings.textGradient": "Prechod", + "SSE.Views.ShapeSettings.textGradient": "Body prechodu", "SSE.Views.ShapeSettings.textGradientFill": "Výplň prechodom", + "SSE.Views.ShapeSettings.textHint270": "Otočiť o 90° doľava", + "SSE.Views.ShapeSettings.textHint90": "Otočiť o 90° doprava", "SSE.Views.ShapeSettings.textHintFlipH": "Prevrátiť horizontálne", "SSE.Views.ShapeSettings.textHintFlipV": "Prevrátiť vertikálne", "SSE.Views.ShapeSettings.textImageTexture": "Obrázok alebo textúra", @@ -1798,14 +2904,19 @@ "SSE.Views.ShapeSettings.textNoFill": "Bez výplne", "SSE.Views.ShapeSettings.textOriginalSize": "Pôvodná veľkosť", "SSE.Views.ShapeSettings.textPatternFill": "Vzor", + "SSE.Views.ShapeSettings.textPosition": "Pozícia", "SSE.Views.ShapeSettings.textRadial": "Kruhový/hviezdicovitý", + "SSE.Views.ShapeSettings.textRecentlyUsed": "Nedávno použité", "SSE.Views.ShapeSettings.textRotate90": "Otočiť o 90°", + "SSE.Views.ShapeSettings.textRotation": "Rotácia", + "SSE.Views.ShapeSettings.textSelectImage": "Vybrať obrázok", "SSE.Views.ShapeSettings.textSelectTexture": "Vybrať", "SSE.Views.ShapeSettings.textStretch": "Roztiahnuť", "SSE.Views.ShapeSettings.textStyle": "Štýl", "SSE.Views.ShapeSettings.textTexture": "Z textúry", "SSE.Views.ShapeSettings.textTile": "Dlaždica", "SSE.Views.ShapeSettings.tipAddGradientPoint": "Pridať spádový bod", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Odstrániť prechodový bod", "SSE.Views.ShapeSettings.txtBrownPaper": "Hnedý/baliaci papier", "SSE.Views.ShapeSettings.txtCanvas": "Plátno", "SSE.Views.ShapeSettings.txtCarton": "Kartón", @@ -1820,6 +2931,7 @@ "SSE.Views.ShapeSettings.txtWood": "Drevo", "SSE.Views.ShapeSettingsAdvanced.strColumns": "Stĺpce", "SSE.Views.ShapeSettingsAdvanced.strMargins": "Osadenie textu", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Neposúvať alebo nemeniť veľkosť s bunkami", "SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternatívny text", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Popis", "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", @@ -1838,13 +2950,17 @@ "SSE.Views.ShapeSettingsAdvanced.textFlat": "Plochý", "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Prevrátený", "SSE.Views.ShapeSettingsAdvanced.textHeight": "Výška", + "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontálne", "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia", "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konštantné rozmery", "SSE.Views.ShapeSettingsAdvanced.textLeft": "Vľavo", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Štýl čiary", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Sklon", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Presúvať ale nemeniť veľkosť spoločne s bunkami", "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Povoliť textu presiahnuť tvar", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Zmeniť veľkosť tvaru, aby zodpovedala textu", "SSE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", + "SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotácia", "SSE.Views.ShapeSettingsAdvanced.textRound": "Zaoblené", "SSE.Views.ShapeSettingsAdvanced.textSize": "Veľkosť", "SSE.Views.ShapeSettingsAdvanced.textSnap": "Prichytenie bunky", @@ -1853,13 +2969,34 @@ "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Textové pole", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Tvar - Pokročilé nastavenia", "SSE.Views.ShapeSettingsAdvanced.textTop": "Hore", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Presúvať a meniť veľkosť spoločne s bunkami", "SSE.Views.ShapeSettingsAdvanced.textVertically": "Zvisle", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Šírka", "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Upozornenie", + "SSE.Views.SignatureSettings.strDelete": "Odstrániť podpis", + "SSE.Views.SignatureSettings.strDetails": "Podrobnosti podpisu", "SSE.Views.SignatureSettings.strInvalid": "Neplatné podpisy", + "SSE.Views.SignatureSettings.strRequested": "Vyžadované podpisy", + "SSE.Views.SignatureSettings.strSetup": "Nastavenia podpisu", + "SSE.Views.SignatureSettings.strSign": "Podpísať", + "SSE.Views.SignatureSettings.strSignature": "Podpis", + "SSE.Views.SignatureSettings.strSigner": "Podpisovateľ", "SSE.Views.SignatureSettings.strValid": "Platné podpisy", + "SSE.Views.SignatureSettings.txtContinueEditing": "Aj tak upraviť", + "SSE.Views.SignatureSettings.txtEditWarning": "Upravením budú zo zošitu odobrané podpisy.
    Naozaj chcete pokračovať? ", + "SSE.Views.SignatureSettings.txtRemoveWarning": "Chcete odstrániť tento podpis?
    Tento krok je nezvratný.", + "SSE.Views.SignatureSettings.txtRequestedSignatures": "Túto tabuľku je potrebné podpísať.", + "SSE.Views.SignatureSettings.txtSigned": "Do tabuľky boli pridané platné podpisy. Tabuľka je chránená pred úpravami.", + "SSE.Views.SignatureSettings.txtSignedInvalid": "Niektoré digitálne podpisy v tabuľke sú neplatné alebo ich nebolo možné overiť. Tabuľka je chránená pred úpravami.", "SSE.Views.SlicerAddDialog.textColumns": "Stĺpce", + "SSE.Views.SlicerAddDialog.txtTitle": "Vložiť prierezy", + "SSE.Views.SlicerSettings.strHideNoData": "Skryť položky, ktoré neobsahujú dáta", + "SSE.Views.SlicerSettings.strIndNoData": "Vizuálne označte položky bez údajov", + "SSE.Views.SlicerSettings.strShowDel": "Zobraziť položky odstránené zo zdroja údajov", + "SSE.Views.SlicerSettings.strShowNoData": "Ako posledné zobraziť položky bez dát", + "SSE.Views.SlicerSettings.strSorting": "Triedenie a filtrovanie", + "SSE.Views.SlicerSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "SSE.Views.SlicerSettings.textAsc": "Vzostupne", "SSE.Views.SlicerSettings.textAZ": "A po Z", "SSE.Views.SlicerSettings.textButtons": "Tlačidlá", @@ -1868,29 +3005,62 @@ "SSE.Views.SlicerSettings.textHeight": "Výška", "SSE.Views.SlicerSettings.textHor": "Vodorovný", "SSE.Views.SlicerSettings.textKeepRatio": "Nemenné rozmery", + "SSE.Views.SlicerSettings.textLargeSmall": "od najväčších po najmenších", + "SSE.Views.SlicerSettings.textLock": "Vypnúť možnosť zmeny veľkosti a presunu", + "SSE.Views.SlicerSettings.textNewOld": "od najnovších po najstaršie", + "SSE.Views.SlicerSettings.textOldNew": "od najstaršieho po najnovší", "SSE.Views.SlicerSettings.textPosition": "Pozícia", "SSE.Views.SlicerSettings.textSize": "Veľkosť", + "SSE.Views.SlicerSettings.textSmallLarge": "od najmenších po najväčšie", + "SSE.Views.SlicerSettings.textStyle": "Štýl", "SSE.Views.SlicerSettings.textVert": "Zvislý", "SSE.Views.SlicerSettings.textWidth": "Šírka", "SSE.Views.SlicerSettings.textZA": "Z po A", "SSE.Views.SlicerSettingsAdvanced.strButtons": "Tlačidlá", "SSE.Views.SlicerSettingsAdvanced.strColumns": "Stĺpce", "SSE.Views.SlicerSettingsAdvanced.strHeight": "Výška", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Skryť položky, ktoré neobsahujú dáta", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Vizuálne označte položky bez údajov", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Referencie", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Zobraziť položky odstránené zo zdroja údajov", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Zobraziť hlavičku", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Ako posledné zobraziť položky bez dát", "SSE.Views.SlicerSettingsAdvanced.strSize": "Veľkosť", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Triedenie a filtrovanie", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Štýl", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Štýl a Veľkosť ", "SSE.Views.SlicerSettingsAdvanced.strWidth": "Šírka", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Neposúvať alebo nemeniť veľkosť s bunkami", "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternatívny text", "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Popis", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Názov", "SSE.Views.SlicerSettingsAdvanced.textAsc": "Vzostupne", "SSE.Views.SlicerSettingsAdvanced.textAZ": "A po Z", "SSE.Views.SlicerSettingsAdvanced.textDesc": "Zostupne", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Názov ktorý sa použije vo vzorcoch", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "Hlavička", "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Konštantné rozmery", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "od najväčších po najmenších", "SSE.Views.SlicerSettingsAdvanced.textName": "Názov", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "od najnovších po najstaršie", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "od najstaršieho po najnovší", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Presúvať ale nemeniť veľkosť spoločne s bunkami", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "od najmenších po najväčšie", "SSE.Views.SlicerSettingsAdvanced.textSnap": "Prichytenie bunky", "SSE.Views.SlicerSettingsAdvanced.textSort": "Zoradiť", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Názov zdroja", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Slicer – Rozšírené nastavenia", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Presúvať a meniť veľkosť spoločne s bunkami", "SSE.Views.SlicerSettingsAdvanced.textZA": "Z po A", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.SortDialog.errorEmpty": "Všetky kritériá triedenia musia mať špecifikovaný stĺpec alebo riadok.", + "SSE.Views.SortDialog.errorMoreOneCol": "Je vybratý viac ako jeden stĺpec", + "SSE.Views.SortDialog.errorMoreOneRow": "Je vybratý viac než jeden riadok.", + "SSE.Views.SortDialog.errorNotOriginalCol": "Stĺpec, ktorý ste vybrali, nie je v pôvodne vybratom rozsahu.", + "SSE.Views.SortDialog.errorNotOriginalRow": "Vybratý riadok nie je v pôvodne vybratom rozsahu.", "SSE.Views.SortDialog.errorSameColumnColor": "%1 sa triedi podľa rovnakej farby viac než jeden raz.
    Vymažte duplicitné kritériá triedenia a skúste znova. ", + "SSE.Views.SortDialog.errorSameColumnValue": "%1 je zoradené podľa hodnôt viac než jeden krát.
    Zmažte duplicitné kritérium zoradenia a skúste to znova.", "SSE.Views.SortDialog.textAdd": "Pridať úroveň", "SSE.Views.SortDialog.textAsc": "Vzostupne", "SSE.Views.SortDialog.textAuto": "Automaticky", @@ -1898,7 +3068,10 @@ "SSE.Views.SortDialog.textBelow": "pod", "SSE.Views.SortDialog.textCellColor": "Farba bunky", "SSE.Views.SortDialog.textColumn": "Stĺpec", + "SSE.Views.SortDialog.textCopy": "Skopírovať úroveň", + "SSE.Views.SortDialog.textDelete": "Zmazať úroveň", "SSE.Views.SortDialog.textDesc": "Zostupne", + "SSE.Views.SortDialog.textDown": "Presunúť o stupeň dole", "SSE.Views.SortDialog.textFontColor": "Farba písma", "SSE.Views.SortDialog.textLeft": "Vľavo", "SSE.Views.SortDialog.textMoreCols": "(Viac stĺpcov...)", @@ -1908,36 +3081,59 @@ "SSE.Views.SortDialog.textOrder": "Objednávka", "SSE.Views.SortDialog.textRight": "Vpravo", "SSE.Views.SortDialog.textRow": "Riadok", + "SSE.Views.SortDialog.textSort": "Zoradiť na", "SSE.Views.SortDialog.textSortBy": "Zoradiť podľa", + "SSE.Views.SortDialog.textThenBy": "Následne podľa ", "SSE.Views.SortDialog.textTop": "Hore", + "SSE.Views.SortDialog.textUp": "Presunúť o stupeň hore", "SSE.Views.SortDialog.textValues": "Hodnoty", "SSE.Views.SortDialog.textZA": "Z po A", "SSE.Views.SortDialog.txtInvalidRange": "Neplatný rozsah buněk.", "SSE.Views.SortDialog.txtTitle": "Zoradiť", "SSE.Views.SortFilterDialog.textAsc": "Vzostupne (od A po Z) podľa", + "SSE.Views.SortFilterDialog.textDesc": "Zostupne (od Z do A) podľa", "SSE.Views.SortFilterDialog.txtTitle": "Zoradiť", "SSE.Views.SortOptionsDialog.textCase": "Rozlišovať veľkosť písmen", + "SSE.Views.SortOptionsDialog.textHeaders": "Moje dáta majú hlavičku", + "SSE.Views.SortOptionsDialog.textLeftRight": "Zoradiť zľava doprava", "SSE.Views.SortOptionsDialog.textOrientation": "Orientácia", + "SSE.Views.SortOptionsDialog.textTitle": "Možnosti triedenia", + "SSE.Views.SortOptionsDialog.textTopBottom": "Triediť zhora dole", "SSE.Views.SpecialPasteDialog.textAdd": "Pridať", "SSE.Views.SpecialPasteDialog.textAll": "Všetky", + "SSE.Views.SpecialPasteDialog.textBlanks": "Preskočiť prázdne", "SSE.Views.SpecialPasteDialog.textColWidth": "Šírky stĺpcov", "SSE.Views.SpecialPasteDialog.textComments": "Komentáre", + "SSE.Views.SpecialPasteDialog.textDiv": "Rozdeliť", + "SSE.Views.SpecialPasteDialog.textFFormat": "Vzorce a formátovanie", + "SSE.Views.SpecialPasteDialog.textFNFormat": "Vzorce a formáty čísla", + "SSE.Views.SpecialPasteDialog.textFormats": "Formáty", "SSE.Views.SpecialPasteDialog.textFormulas": "Vzorce", + "SSE.Views.SpecialPasteDialog.textFWidth": "Vzorce a šírky stĺpcov", "SSE.Views.SpecialPasteDialog.textMult": "Viacnásobný", "SSE.Views.SpecialPasteDialog.textNone": "žiadny", "SSE.Views.SpecialPasteDialog.textOperation": "Operácia", "SSE.Views.SpecialPasteDialog.textPaste": "Vložiť", + "SSE.Views.SpecialPasteDialog.textSub": "Odrátať", + "SSE.Views.SpecialPasteDialog.textTitle": "Špeciálne prilepiť", "SSE.Views.SpecialPasteDialog.textTranspose": "Premiestňovať", "SSE.Views.SpecialPasteDialog.textValues": "Hodnoty", + "SSE.Views.SpecialPasteDialog.textVFormat": "Hodnoty a formátovanie", + "SSE.Views.SpecialPasteDialog.textVNFormat": "Formáty hodnôt a čísel", "SSE.Views.SpecialPasteDialog.textWBorders": "Všetko okrem okrajov", + "SSE.Views.Spellcheck.noSuggestions": "Žiadne odporúčania ohľadne pravopisu", "SSE.Views.Spellcheck.textChange": "Zmeniť", "SSE.Views.Spellcheck.textChangeAll": "Zmeniť všetko", "SSE.Views.Spellcheck.textIgnore": "Ignorovať", "SSE.Views.Spellcheck.textIgnoreAll": "Ignorovať všetko", "SSE.Views.Spellcheck.txtAddToDictionary": "Pridať do slovníka", + "SSE.Views.Spellcheck.txtComplete": "Kontrola pravopisu dokončená", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "Jazyk slovníka", + "SSE.Views.Spellcheck.txtNextTip": "Ísť na ďalšie slovo", + "SSE.Views.Spellcheck.txtSpelling": "Hláskovanie", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Kopírovať na koniec)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Presunúť na koniec)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Kopírovať pred list", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Prilepiť pred list", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Presunúť pred list", "SSE.Views.Statusbar.filteredRecordsText": "{0} z {1} filtrovaných záznamov ", "SSE.Views.Statusbar.filteredText": "Režim filtra", @@ -1951,27 +3147,34 @@ "SSE.Views.Statusbar.itemMaximum": "Maximum", "SSE.Views.Statusbar.itemMinimum": "Minimum", "SSE.Views.Statusbar.itemMove": "Premiestniť", + "SSE.Views.Statusbar.itemProtect": "Ochrániť", "SSE.Views.Statusbar.itemRename": "Premenovať", + "SSE.Views.Statusbar.itemStatus": "Status ukladania", "SSE.Views.Statusbar.itemSum": "SÚČET", "SSE.Views.Statusbar.itemTabColor": "Farba tabuľky/záložky", + "SSE.Views.Statusbar.itemUnProtect": "Zrušiť zabezpečenie", "SSE.Views.Statusbar.RenameDialog.errNameExists": "Pracovný list s takýmto názvom už existuje.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Názov hárku nemôže obsahovať nasledujúce znaky: \\/*?[]:", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Názov listu", - "SSE.Views.Statusbar.textAverage": "PRIEMER", - "SSE.Views.Statusbar.textCount": "POČET", + "SSE.Views.Statusbar.selectAllSheets": "Vybrať všetky listy", + "SSE.Views.Statusbar.sheetIndexText": "List {0} z {1}", + "SSE.Views.Statusbar.textAverage": "Priemerne", + "SSE.Views.Statusbar.textCount": "Počítať", "SSE.Views.Statusbar.textMax": "Max", "SSE.Views.Statusbar.textMin": "Min", "SSE.Views.Statusbar.textNewColor": "Pridať novú vlastnú farbu", "SSE.Views.Statusbar.textNoColor": "Bez farby", - "SSE.Views.Statusbar.textSum": "SÚČET", + "SSE.Views.Statusbar.textSum": "Suma", "SSE.Views.Statusbar.tipAddTab": "Pridať pracovný hárok", "SSE.Views.Statusbar.tipFirst": "Prejsť na prvý list", "SSE.Views.Statusbar.tipLast": "Prejsť na posledný list", + "SSE.Views.Statusbar.tipListOfSheets": "Zoznam listov", "SSE.Views.Statusbar.tipNext": "Posunúť zoznam listov vpravo", "SSE.Views.Statusbar.tipPrev": "Posunúť zoznam listov vľavo", "SSE.Views.Statusbar.tipZoomFactor": "Priblíženie", "SSE.Views.Statusbar.tipZoomIn": "Priblížiť", "SSE.Views.Statusbar.tipZoomOut": "Oddialiť", + "SSE.Views.Statusbar.ungroupSheets": "Zrušiť zoskupenie hárkov", "SSE.Views.Statusbar.zoomText": "Priblíženie {0}%", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.
    Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operácia sa nedala dokončiť pre zvolený rozsah buniek.
    Vyberte rozsah tak, aby prvý riadok tabuľky bol na rovnakom riadku
    a výsledná tabuľka sa prekrývala s aktuálnou.", @@ -1980,6 +3183,7 @@ "SSE.Views.TableOptionsDialog.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.TableOptionsDialog.txtFormat": "Vytvoriť tabuľku", "SSE.Views.TableOptionsDialog.txtInvalidRange": "CHYBA! Neplatný rozsah buniek", + "SSE.Views.TableOptionsDialog.txtNote": "Hlavičky musia zostať v rovnakom riadku a výsledný rozsah tabuľky sa musí prekrývať s pôvodným rozsahom tabuľky.", "SSE.Views.TableOptionsDialog.txtTitle": "Názov", "SSE.Views.TableSettings.deleteColumnText": "Odstrániť stĺpec", "SSE.Views.TableSettings.deleteRowText": "Odstrániť riadok", @@ -1993,6 +3197,7 @@ "SSE.Views.TableSettings.selectDataText": "Vybrať údaje stĺpca", "SSE.Views.TableSettings.selectRowText": "Vybrať riadok", "SSE.Views.TableSettings.selectTableText": "Vybrať tabuľku", + "SSE.Views.TableSettings.textActions": "Akcie s tabuľkou", "SSE.Views.TableSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "SSE.Views.TableSettings.textBanded": "Pruhovaný/pásikovaný", "SSE.Views.TableSettings.textColumns": "Stĺpce", @@ -2007,10 +3212,13 @@ "SSE.Views.TableSettings.textIsLocked": "Tento prvok upravuje iný používateľ.", "SSE.Views.TableSettings.textLast": "Posledný", "SSE.Views.TableSettings.textLongOperation": "Dlhá prevádzka", + "SSE.Views.TableSettings.textPivot": "Vložiť kontingenťnú tabuľku", + "SSE.Views.TableSettings.textRemDuplicates": "Odobrať duplicity", "SSE.Views.TableSettings.textReservedName": "Názov, ktorý sa pokúšate použiť, je už uvedený v bunkových vzorcoch. Použite iné meno.", "SSE.Views.TableSettings.textResize": "Zmeniť veľkosť tabuľky", "SSE.Views.TableSettings.textRows": "Riadky", "SSE.Views.TableSettings.textSelectData": "Vybrať údaje", + "SSE.Views.TableSettings.textSlicer": "Vložiť prierez", "SSE.Views.TableSettings.textTableName": "Názov tabuľky", "SSE.Views.TableSettings.textTemplate": "Vybrať zo šablóny", "SSE.Views.TableSettings.textTotal": "Celkovo", @@ -2026,7 +3234,7 @@ "SSE.Views.TextArtSettings.strForeground": "Farba popredia", "SSE.Views.TextArtSettings.strPattern": "Vzor", "SSE.Views.TextArtSettings.strSize": "Veľkosť", - "SSE.Views.TextArtSettings.strStroke": "Obrys", + "SSE.Views.TextArtSettings.strStroke": "Čiara/líniový graf", "SSE.Views.TextArtSettings.strTransparency": "Priehľadnosť", "SSE.Views.TextArtSettings.strType": "Typ", "SSE.Views.TextArtSettings.textAngle": "Uhol", @@ -2036,12 +3244,13 @@ "SSE.Views.TextArtSettings.textEmptyPattern": "Bez vzoru", "SSE.Views.TextArtSettings.textFromFile": "Zo súboru", "SSE.Views.TextArtSettings.textFromUrl": "Z URL adresy ", - "SSE.Views.TextArtSettings.textGradient": "Prechod", + "SSE.Views.TextArtSettings.textGradient": "Body prechodu", "SSE.Views.TextArtSettings.textGradientFill": "Výplň prechodom", "SSE.Views.TextArtSettings.textImageTexture": "Obrázok alebo textúra", "SSE.Views.TextArtSettings.textLinear": "Lineárny/čiarový", "SSE.Views.TextArtSettings.textNoFill": "Bez výplne", "SSE.Views.TextArtSettings.textPatternFill": "Vzor", + "SSE.Views.TextArtSettings.textPosition": "Pozícia", "SSE.Views.TextArtSettings.textRadial": "Kruhový/hviezdicovitý", "SSE.Views.TextArtSettings.textSelectTexture": "Vybrať", "SSE.Views.TextArtSettings.textStretch": "Roztiahnuť", @@ -2051,6 +3260,7 @@ "SSE.Views.TextArtSettings.textTile": "Dlaždica", "SSE.Views.TextArtSettings.textTransform": "Transformovať", "SSE.Views.TextArtSettings.tipAddGradientPoint": "Pridať spádový bod", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Odstrániť prechodový bod", "SSE.Views.TextArtSettings.txtBrownPaper": "Hnedý/baliaci papier", "SSE.Views.TextArtSettings.txtCanvas": "Plátno", "SSE.Views.TextArtSettings.txtCarton": "Kartón", @@ -2064,12 +3274,19 @@ "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Drevo", "SSE.Views.Toolbar.capBtnAddComment": "Pridať komentár", + "SSE.Views.Toolbar.capBtnColorSchemas": "Farebná schéma", "SSE.Views.Toolbar.capBtnComment": "Komentár", + "SSE.Views.Toolbar.capBtnInsHeader": "Hlavička & Päta", + "SSE.Views.Toolbar.capBtnInsSlicer": "Prierez", "SSE.Views.Toolbar.capBtnInsSymbol": "Symbol", "SSE.Views.Toolbar.capBtnMargins": "Okraje", "SSE.Views.Toolbar.capBtnPageOrient": "Orientácia", "SSE.Views.Toolbar.capBtnPageSize": "Veľkosť", + "SSE.Views.Toolbar.capBtnPrintArea": "Oblasť tlače", + "SSE.Views.Toolbar.capBtnPrintTitles": "Tlač názvu", + "SSE.Views.Toolbar.capBtnScale": "Škáluj do rozmeru", "SSE.Views.Toolbar.capImgAlign": "Zarovnať", + "SSE.Views.Toolbar.capImgBackward": "Posunúť späť", "SSE.Views.Toolbar.capImgForward": "Posunúť vpred", "SSE.Views.Toolbar.capImgGroup": "Skupina", "SSE.Views.Toolbar.capInsertChart": "Graf", @@ -2077,9 +3294,11 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Hypertextový odkaz", "SSE.Views.Toolbar.capInsertImage": "Obrázok", "SSE.Views.Toolbar.capInsertShape": "Tvar", + "SSE.Views.Toolbar.capInsertSpark": "Mikro-graf", "SSE.Views.Toolbar.capInsertTable": "Tabuľka", "SSE.Views.Toolbar.capInsertText": "Textové pole", "SSE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru", + "SSE.Views.Toolbar.mniImageFromStorage": "Obrázok z úložiska", "SSE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy", "SSE.Views.Toolbar.textAddPrintArea": "Pridať k oblasti tlačenia", "SSE.Views.Toolbar.textAlignBottom": "Zarovnať dole", @@ -2091,6 +3310,7 @@ "SSE.Views.Toolbar.textAlignTop": "Zarovnať nahor", "SSE.Views.Toolbar.textAllBorders": "Všetky orámovania", "SSE.Views.Toolbar.textAuto": "Automaticky", + "SSE.Views.Toolbar.textAutoColor": "Automaticky", "SSE.Views.Toolbar.textBold": "Tučné", "SSE.Views.Toolbar.textBordersColor": "Farba orámovania", "SSE.Views.Toolbar.textBordersStyle": "Štýl orámovania", @@ -2098,8 +3318,11 @@ "SSE.Views.Toolbar.textBottomBorders": "Spodné orámovanie", "SSE.Views.Toolbar.textCenterBorders": "Vnútorné vertikálne orámovanie", "SSE.Views.Toolbar.textClearPrintArea": "Vyčistiť oblasť tlačenia", + "SSE.Views.Toolbar.textClearRule": "Zmazať pravidlá", "SSE.Views.Toolbar.textClockwise": "Otočiť v smere hodinových ručičiek", + "SSE.Views.Toolbar.textColorScales": "Farebné škály", "SSE.Views.Toolbar.textCounterCw": "Otočiť proti smeru hodinových ručičiek", + "SSE.Views.Toolbar.textDataBars": "Histogramy", "SSE.Views.Toolbar.textDelLeft": "Posunúť bunky vľavo", "SSE.Views.Toolbar.textDelUp": "Posunúť bunky hore", "SSE.Views.Toolbar.textDiagDownBorder": "Orámovanie diagonálne nadol", @@ -2113,9 +3336,11 @@ "SSE.Views.Toolbar.textInsideBorders": "Vnútorné orámovanie", "SSE.Views.Toolbar.textInsRight": "Posunúť bunky vpravo", "SSE.Views.Toolbar.textItalic": "Kurzíva", + "SSE.Views.Toolbar.textItems": "Položky", "SSE.Views.Toolbar.textLandscape": "Na šírku", "SSE.Views.Toolbar.textLeft": "Vľavo:", "SSE.Views.Toolbar.textLeftBorders": "Orámovanie vľavo", + "SSE.Views.Toolbar.textManageRule": "Spravovať pravidlá", "SSE.Views.Toolbar.textManyPages": "Strany", "SSE.Views.Toolbar.textMarginsLast": "Posledná úprava", "SSE.Views.Toolbar.textMarginsNarrow": "Úzky", @@ -2123,20 +3348,29 @@ "SSE.Views.Toolbar.textMarginsWide": "Široký", "SSE.Views.Toolbar.textMiddleBorders": "Vnútorné horizontálne orámovanie", "SSE.Views.Toolbar.textMoreFormats": "Ďalšie formáty", + "SSE.Views.Toolbar.textMorePages": "Ďalšie stránky", "SSE.Views.Toolbar.textNewColor": "Pridať novú vlastnú farbu", + "SSE.Views.Toolbar.textNewRule": "Nové pravidlo", "SSE.Views.Toolbar.textNoBorders": "Bez orámovania", "SSE.Views.Toolbar.textOnePage": "Stránka", "SSE.Views.Toolbar.textOutBorders": "Vonkajšie orámovanie", "SSE.Views.Toolbar.textPageMarginsCustom": "Vlastné okraje", "SSE.Views.Toolbar.textPortrait": "Na výšku", "SSE.Views.Toolbar.textPrint": "Tlačiť", + "SSE.Views.Toolbar.textPrintGridlines": "Vytlačiť mriežky", + "SSE.Views.Toolbar.textPrintHeadings": "Vytlačiť hlavičku", "SSE.Views.Toolbar.textPrintOptions": "Nastavenia tlače", "SSE.Views.Toolbar.textRight": "Vpravo:", "SSE.Views.Toolbar.textRightBorders": "Orámovanie vpravo", "SSE.Views.Toolbar.textRotateDown": "Otočiť text nadol", "SSE.Views.Toolbar.textRotateUp": "Otočiť text nahor", + "SSE.Views.Toolbar.textScale": "Škála", "SSE.Views.Toolbar.textScaleCustom": "Vlastný", + "SSE.Views.Toolbar.textSelection": "Z aktuálneho výberu", + "SSE.Views.Toolbar.textSetPrintArea": "Nastaviť oblasť tlače", + "SSE.Views.Toolbar.textStrikeout": "Preškrtnutie", "SSE.Views.Toolbar.textSubscript": "Dolný index", + "SSE.Views.Toolbar.textSubSuperscript": "Dolný/Horný index", "SSE.Views.Toolbar.textSuperscript": "Horný index", "SSE.Views.Toolbar.textTabCollaboration": "Spolupráca", "SSE.Views.Toolbar.textTabData": "Dáta", @@ -2146,9 +3380,14 @@ "SSE.Views.Toolbar.textTabInsert": "Vložiť", "SSE.Views.Toolbar.textTabLayout": "Rozloženie", "SSE.Views.Toolbar.textTabProtect": "Ochrana", + "SSE.Views.Toolbar.textTabView": "Zobraziť", + "SSE.Views.Toolbar.textThisPivot": "Z tejto kontingenčnej tabuľky", + "SSE.Views.Toolbar.textThisSheet": "Z tohto listu", + "SSE.Views.Toolbar.textThisTable": "Z tejto tabuľky", "SSE.Views.Toolbar.textTop": "Hore:", "SSE.Views.Toolbar.textTopBorders": "Horné orámovanie", "SSE.Views.Toolbar.textUnderline": "Podčiarknuť", + "SSE.Views.Toolbar.textVertical": "Vertikálny text", "SSE.Views.Toolbar.textWidth": "Šírka", "SSE.Views.Toolbar.textZoom": "Priblíženie", "SSE.Views.Toolbar.tipAlignBottom": "Zarovnať dole", @@ -2165,6 +3404,7 @@ "SSE.Views.Toolbar.tipChangeChart": "Zmeniť typ grafu", "SSE.Views.Toolbar.tipClearStyle": "Vyčistiť", "SSE.Views.Toolbar.tipColorSchemas": "Zmeniť farebnú schému", + "SSE.Views.Toolbar.tipCondFormat": "Podmienené formátovanie", "SSE.Views.Toolbar.tipCopy": "Kopírovať", "SSE.Views.Toolbar.tipCopyStyle": "Kopírovať štýl", "SSE.Views.Toolbar.tipDecDecimal": "Znížiť počet desatinných miest", @@ -2174,11 +3414,14 @@ "SSE.Views.Toolbar.tipDigStyleCurrency": "Formát/štýl meny", "SSE.Views.Toolbar.tipDigStylePercent": "Štýl percent", "SSE.Views.Toolbar.tipEditChart": "Upraviť graf", + "SSE.Views.Toolbar.tipEditChartData": "Vybrať údaje", + "SSE.Views.Toolbar.tipEditChartType": "Zmeniť typ grafu", "SSE.Views.Toolbar.tipEditHeader": "Upraviť hlavičku alebo pätu", "SSE.Views.Toolbar.tipFontColor": "Farba písma", "SSE.Views.Toolbar.tipFontName": "Písmo", "SSE.Views.Toolbar.tipFontSize": "Veľkosť písma", "SSE.Views.Toolbar.tipImgAlign": "Zoradiť/usporiadať objekty", + "SSE.Views.Toolbar.tipImgGroup": "Skupinové objekty", "SSE.Views.Toolbar.tipIncDecimal": "Zvýšiť počet desatinných miest", "SSE.Views.Toolbar.tipIncFont": "Zväčšiť veľkosť písma", "SSE.Views.Toolbar.tipInsertChart": "Vložiť graf", @@ -2188,20 +3431,28 @@ "SSE.Views.Toolbar.tipInsertImage": "Vložiť obrázok", "SSE.Views.Toolbar.tipInsertOpt": "Vložiť bunky", "SSE.Views.Toolbar.tipInsertShape": "Vložiť automatický tvar", + "SSE.Views.Toolbar.tipInsertSlicer": "Vložiť prierez", + "SSE.Views.Toolbar.tipInsertSpark": "Vložiť mikro-graf", + "SSE.Views.Toolbar.tipInsertSymbol": "Vložiť symbol", "SSE.Views.Toolbar.tipInsertTable": "Vložiť tabuľku", - "SSE.Views.Toolbar.tipInsertText": "Vložiť text", + "SSE.Views.Toolbar.tipInsertText": "Vložiť textové pole", "SSE.Views.Toolbar.tipInsertTextart": "Vložiť Text Art", - "SSE.Views.Toolbar.tipMerge": "Zlúčiť", + "SSE.Views.Toolbar.tipMerge": "Zlúčiť a vycentrovať", + "SSE.Views.Toolbar.tipNone": "Žiadny", "SSE.Views.Toolbar.tipNumFormat": "Formát čísla", "SSE.Views.Toolbar.tipPageMargins": "Okraje stránky", "SSE.Views.Toolbar.tipPageOrient": "Orientácia stránky", "SSE.Views.Toolbar.tipPageSize": "Veľkosť stránky", "SSE.Views.Toolbar.tipPaste": "Vložiť", - "SSE.Views.Toolbar.tipPrColor": "Farba pozadia", + "SSE.Views.Toolbar.tipPrColor": "Farba výplne", "SSE.Views.Toolbar.tipPrint": "Tlačiť", + "SSE.Views.Toolbar.tipPrintArea": "Oblasť tlače", + "SSE.Views.Toolbar.tipPrintTitles": "Tlač názvu", "SSE.Views.Toolbar.tipRedo": "Krok vpred", "SSE.Views.Toolbar.tipSave": "Uložiť", "SSE.Views.Toolbar.tipSaveCoauth": "Uložte zmeny, aby ich videli aj ostatní používatelia.", + "SSE.Views.Toolbar.tipScale": "Škáluj do rozmeru", + "SSE.Views.Toolbar.tipSendBackward": "Posunúť späť", "SSE.Views.Toolbar.tipSendForward": "Posunúť vpred", "SSE.Views.Toolbar.tipSynchronize": "Dokument bol zmenený ďalším používateľom. Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.", "SSE.Views.Toolbar.tipTextOrientation": "Orientácia", @@ -2258,6 +3509,7 @@ "SSE.Views.Toolbar.txtScheme2": "Odtiene sivej", "SSE.Views.Toolbar.txtScheme20": "Mestský", "SSE.Views.Toolbar.txtScheme21": "Elán", + "SSE.Views.Toolbar.txtScheme22": "Nová kancelária", "SSE.Views.Toolbar.txtScheme3": "Vrchol", "SSE.Views.Toolbar.txtScheme4": "Aspekt", "SSE.Views.Toolbar.txtScheme5": "Občiansky", @@ -2284,17 +3536,85 @@ "SSE.Views.Top10FilterDialog.txtSum": "SÚČET", "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 automatického filtra", "SSE.Views.Top10FilterDialog.txtTop": "Hore", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Filtre \"Top 10\"", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Nastavenia poľa hodnôt", "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Priemer", "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Základné pole", "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Základná položka", "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 z %2", "SSE.Views.ValueFieldSettingsDialog.txtCount": "Počet", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Spočítať čísla", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Vlastný názov", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "Rozdielne oproti", "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index", "SSE.Views.ValueFieldSettingsDialog.txtMax": "Max", "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Bez výpočtu", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Percento z", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Percentá rozdielna od", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percento stĺpca", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Percento z celku", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percento riadku", "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produkt", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Priebežný súčet v", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Zobraziť hodnoty ako", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Názov zdroja:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "Smerodajná odchylka", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "Populačná smerodajná odchýlka", "SSE.Views.ValueFieldSettingsDialog.txtSum": "SÚČET", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Zhrnúť pole hodnoty podľa", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Zatvoriť", + "SSE.Views.ViewManagerDlg.guestText": "Hosť", + "SSE.Views.ViewManagerDlg.lockText": "Uzamknutý", + "SSE.Views.ViewManagerDlg.textDelete": "Odstrániť", + "SSE.Views.ViewManagerDlg.textDuplicate": "Duplikát", + "SSE.Views.ViewManagerDlg.textEmpty": "Žiadne zobrazenia neboli zatiaľ vytvorené.", + "SSE.Views.ViewManagerDlg.textGoTo": "Prejsť na zobrazenie", + "SSE.Views.ViewManagerDlg.textLongName": "Vložte meno, ktorého dĺžka je menej ako 128 znakov.", + "SSE.Views.ViewManagerDlg.textNew": "Nový", + "SSE.Views.ViewManagerDlg.textRename": "Premenovať", + "SSE.Views.ViewManagerDlg.textRenameError": "Názov zobrazenia nesmie byť prázdny.", + "SSE.Views.ViewManagerDlg.textRenameLabel": "Premenovať pohľad", + "SSE.Views.ViewManagerDlg.textViews": "Zobrazenie zošitu", + "SSE.Views.ViewManagerDlg.tipIsLocked": "Tento prvok upravuje iný používateľ.", + "SSE.Views.ViewManagerDlg.txtTitle": "Správca zobrazenia zošitu", + "SSE.Views.ViewManagerDlg.warnDeleteView": "Pokúšate sa odstrániť aktuálne povolené zobrazenie '%1'.
    Zavrieť toto zobrazenie a odstrániť ho?", + "SSE.Views.ViewTab.capBtnFreeze": "Ukotviť priečky", + "SSE.Views.ViewTab.capBtnSheetView": "Zobrazenie zošitu ", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "Vždy zobrazovať panel nástrojov", "SSE.Views.ViewTab.textClose": "Zatvoriť", - "SSE.Views.ViewTab.tipClose": "Zatvoriť zobrazenie hárka" + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Skombinovať list a stavový riadok", + "SSE.Views.ViewTab.textCreate": "Nový", + "SSE.Views.ViewTab.textDefault": "Štandardné", + "SSE.Views.ViewTab.textFormula": "Lišta vzorca", + "SSE.Views.ViewTab.textFreezeCol": "Ukotviť prvý stĺpec", + "SSE.Views.ViewTab.textFreezeRow": "Ukotviť horný riadok", + "SSE.Views.ViewTab.textGridlines": "Mriežky", + "SSE.Views.ViewTab.textHeadings": "Nadpisy", + "SSE.Views.ViewTab.textInterfaceTheme": "Téma rozhrania", + "SSE.Views.ViewTab.textManager": "Správca zobrazení", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Zobraziť tieň ukotvených priečok", + "SSE.Views.ViewTab.textUnFreeze": "Zrušiť ukotvenie priečky", + "SSE.Views.ViewTab.textZeros": "Zobraziť nuly", + "SSE.Views.ViewTab.textZoom": "Priblížiť", + "SSE.Views.ViewTab.tipClose": "Zatvoriť zobrazenie hárka", + "SSE.Views.ViewTab.tipCreate": "Vytvoriť nové zobrazenie zošitu", + "SSE.Views.ViewTab.tipFreeze": "Ukotviť priečky", + "SSE.Views.ViewTab.tipSheetView": "Zobrazenie zošitu ", + "SSE.Views.WBProtection.hintAllowRanges": "Umožniť editovať rozsahy", + "SSE.Views.WBProtection.hintProtectSheet": "Zabezpečiť list", + "SSE.Views.WBProtection.hintProtectWB": "Zabezpečiť zošit", + "SSE.Views.WBProtection.txtAllowRanges": "Umožniť editovať rozsahy", + "SSE.Views.WBProtection.txtHiddenFormula": "Skryté vzorce", + "SSE.Views.WBProtection.txtLockedCell": "Uzamknutá bunka", + "SSE.Views.WBProtection.txtLockedShape": "Tvar uzamknutý", + "SSE.Views.WBProtection.txtLockedText": "Uzamknutý text", + "SSE.Views.WBProtection.txtProtectSheet": "Zabezpečiť list", + "SSE.Views.WBProtection.txtProtectWB": "Zabezpečiť zošit", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "Zadajte heslo pre deaktiváciu zabezpečenia listu", + "SSE.Views.WBProtection.txtSheetUnlockTitle": "Zrušte ochranu listu", + "SSE.Views.WBProtection.txtWBUnlockDescription": "Vložte heslo pre vstup k zošitu", + "SSE.Views.WBProtection.txtWBUnlockTitle": "Zrušte ochranu zošita" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json index d135351a0..b56d382e0 100644 --- a/apps/spreadsheeteditor/main/locale/sl.json +++ b/apps/spreadsheeteditor/main/locale/sl.json @@ -24,6 +24,7 @@ "Common.define.conditionalData.textFormula": "Formula", "Common.define.conditionalData.textNotContains": "Ne vsebuje", "Common.Translation.warnFileLockedBtnEdit": "Ustvari kopijo", + "Common.UI.ButtonColored.textNewColor": "Dodaj novo barvo po meri", "Common.UI.ComboBorderSize.txtNoBorders": "Ni mej", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej", "Common.UI.ComboDataView.emptyComboText": "Ni slogov", @@ -788,6 +789,7 @@ "SSE.Views.FormatRulesEditDlg.textFill": "Zapolni", "SSE.Views.FormatRulesEditDlg.textFormat": "Format", "SSE.Views.FormatRulesEditDlg.textFormula": "Formula", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Dodaj novo barvo po meri", "SSE.Views.FormatRulesEditDlg.tipBorders": "Obrobe", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Računovodstvo", "SSE.Views.FormatRulesEditDlg.txtCurrency": "Valuta", diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json index e8c15e1e1..01672ed3c 100644 --- a/apps/spreadsheeteditor/main/locale/sv.json +++ b/apps/spreadsheeteditor/main/locale/sv.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia", "Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad", "Common.UI.ButtonColored.textAutoColor": "Automatisk", - "Common.UI.ButtonColored.textNewColor": "Lägg till en ny anpassad färg", + "Common.UI.ButtonColored.textNewColor": "Lägg till ny egen färg", "Common.UI.ComboBorderSize.txtNoBorders": "Inga ramar", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Inga ramar", "Common.UI.ComboDataView.emptyComboText": "Inga stilar", @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "Ångra", "SSE.Views.DocumentHolder.textUnFreezePanes": "Lås upp paneler", "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Pil punkter", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Bock punkt", + "SSE.Views.DocumentHolder.tipMarkersDash": "Sträck punkter", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Fyllda romb punkter", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Fyllda runda punkter", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Fyllda kvadratiska punkter", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Ofyllda runda punkter", + "SSE.Views.DocumentHolder.tipMarkersStar": "Stjärn punkter", "SSE.Views.DocumentHolder.topCellText": "Justera till toppen", "SSE.Views.DocumentHolder.txtAccounting": "Redovisning", "SSE.Views.DocumentHolder.txtAddComment": "Lägg till kommentar", @@ -2211,7 +2219,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Minst", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Lägsta punkten", "SSE.Views.FormatRulesEditDlg.textNegative": "Negativ", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Anpassad färg", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Lägg till ny egen färg", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Inga ramar", "SSE.Views.FormatRulesEditDlg.textNone": "ingen", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Ett eller flera av de angivna värdena är inte en giltig procentsats.", @@ -2753,6 +2761,7 @@ "SSE.Views.PrintWithPreview.txtCurrentSheet": "Aktuellt kalkylblad", "SSE.Views.PrintWithPreview.txtCustom": "Anpassad", "SSE.Views.PrintWithPreview.txtCustomOptions": "Anpassade alternativ", + "SSE.Views.PrintWithPreview.txtEmptyTable": "Det finns inget att skriva ut eftersom tabellen är tom", "SSE.Views.PrintWithPreview.txtFitCols": "Anpassa alla kolumner till en sida", "SSE.Views.PrintWithPreview.txtFitPage": "Anpassa kalkylbladet på en sida", "SSE.Views.PrintWithPreview.txtFitRows": "Anpassa alla rader på en sida", @@ -3428,14 +3437,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Infoga tabell", "SSE.Views.Toolbar.tipInsertText": "Infoga textruta", "SSE.Views.Toolbar.tipInsertTextart": "Infoga Text Art", - "SSE.Views.Toolbar.tipMarkersArrow": "Pil punkter", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Bock punkt", - "SSE.Views.Toolbar.tipMarkersDash": "Sträck punkter", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Fyllda romb punkter", - "SSE.Views.Toolbar.tipMarkersFRound": "Fyllda runda punkter", - "SSE.Views.Toolbar.tipMarkersFSquare": "Fyllda kvadratiska punkter", - "SSE.Views.Toolbar.tipMarkersHRound": "Ofyllda runda punkter", - "SSE.Views.Toolbar.tipMarkersStar": "Stjärnpunkter", "SSE.Views.Toolbar.tipMerge": "Slå samman och centrera", "SSE.Views.Toolbar.tipNone": "Inga", "SSE.Views.Toolbar.tipNumFormat": "Sifferformat", diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index 0c18935e9..048323ee7 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -1910,6 +1910,14 @@ "SSE.Views.DocumentHolder.textUndo": "Geri Al", "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", "SSE.Views.DocumentHolder.textVar": "Varyans", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Ok işaretleri", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Onay işaretleri", + "SSE.Views.DocumentHolder.tipMarkersDash": "Çizgi işaretleri", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Dolu yuvarlak işaretler", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Dolu kare işaretler", + "SSE.Views.DocumentHolder.tipMarkersHRound": "İçi boş daire işaretler", + "SSE.Views.DocumentHolder.tipMarkersStar": "Yıldız işaretleri", "SSE.Views.DocumentHolder.topCellText": "Üste Hizala", "SSE.Views.DocumentHolder.txtAccounting": "Muhasebe", "SSE.Views.DocumentHolder.txtAddComment": "Yorum Ekle", @@ -3379,12 +3387,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Tablo ekle", "SSE.Views.Toolbar.tipInsertText": "Metin kutusu ekle", "SSE.Views.Toolbar.tipInsertTextart": "Yazı Sanatı Ekle", - "SSE.Views.Toolbar.tipMarkersArrow": "Ok işaretleri", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Onay işaretleri", - "SSE.Views.Toolbar.tipMarkersDash": "Çizgi işaretleri", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Dolu eşkenar dörtgen işaretler", - "SSE.Views.Toolbar.tipMarkersFRound": "Dolu yuvarlak işaretler", - "SSE.Views.Toolbar.tipMarkersFSquare": "Dolu kare işaretler", "SSE.Views.Toolbar.tipMerge": "Birleştir ve ortala", "SSE.Views.Toolbar.tipNumFormat": "Sayı Formatı", "SSE.Views.Toolbar.tipPageMargins": "Sayfa kenar boşlukları", diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index e26b50c64..d397e5d3a 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -104,7 +104,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Створити копію", "Common.Translation.warnFileLockedBtnView": "Відкрити на перегляд", "Common.UI.ButtonColored.textAutoColor": "Автоматичний", - "Common.UI.ButtonColored.textNewColor": "Користувальницький колір", + "Common.UI.ButtonColored.textNewColor": "Новий спеціальний колір", "Common.UI.ComboBorderSize.txtNoBorders": "Немає кордонів", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Немає кордонів", "Common.UI.ComboDataView.emptyComboText": "Немає стилів", @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "Скасувати", "SSE.Views.DocumentHolder.textUnFreezePanes": "Розморозити грані", "SSE.Views.DocumentHolder.textVar": "Дисп", + "SSE.Views.DocumentHolder.tipMarkersArrow": "Маркери-стрілки", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "Маркери-галочки", + "SSE.Views.DocumentHolder.tipMarkersDash": "Маркери-тире", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "Заповнені ромбоподібні маркери", + "SSE.Views.DocumentHolder.tipMarkersFRound": "Заповнені круглі маркери", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "Заповнені квадратні маркери", + "SSE.Views.DocumentHolder.tipMarkersHRound": "Пусті круглі маркери", + "SSE.Views.DocumentHolder.tipMarkersStar": "Маркери-зірочки", "SSE.Views.DocumentHolder.topCellText": "Вирівняти догори", "SSE.Views.DocumentHolder.txtAccounting": "Фінансовий", "SSE.Views.DocumentHolder.txtAddComment": "Додати коментар", @@ -2211,7 +2219,7 @@ "SSE.Views.FormatRulesEditDlg.textMinimum": "Мінімум", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Мін.точка", "SSE.Views.FormatRulesEditDlg.textNegative": "Негативне", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Користувальницький колір", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Новий спеціальний колір", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Без кордонів", "SSE.Views.FormatRulesEditDlg.textNone": "Немає", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Принаймні одне із зазначених значень не є допустимим відсотком.", @@ -2380,7 +2388,7 @@ "SSE.Views.HeaderFooterDialog.textItalic": "Курсив", "SSE.Views.HeaderFooterDialog.textLeft": "Ліворуч", "SSE.Views.HeaderFooterDialog.textMaxError": "Введено занадто довгий текстовий рядок. Зменште кількість символів.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Користувальницький колір", + "SSE.Views.HeaderFooterDialog.textNewColor": "Новий спеціальний колір", "SSE.Views.HeaderFooterDialog.textOdd": "Непарна сторінка", "SSE.Views.HeaderFooterDialog.textPageCount": "Кількість сторінок", "SSE.Views.HeaderFooterDialog.textPageNum": "Номер сторінки", @@ -3153,7 +3161,7 @@ "SSE.Views.Statusbar.textCount": "Кількість", "SSE.Views.Statusbar.textMax": "Макс", "SSE.Views.Statusbar.textMin": "Мін", - "SSE.Views.Statusbar.textNewColor": "Додати новий спеціальний колір", + "SSE.Views.Statusbar.textNewColor": "Новий спеціальний колір", "SSE.Views.Statusbar.textNoColor": "Немає кольору", "SSE.Views.Statusbar.textSum": "Сума", "SSE.Views.Statusbar.tipAddTab": "Додати робочу таблицю", @@ -3340,7 +3348,7 @@ "SSE.Views.Toolbar.textMiddleBorders": "Внутрішні горизонтальні межі", "SSE.Views.Toolbar.textMoreFormats": "Більше форматів", "SSE.Views.Toolbar.textMorePages": "Інші сторінки", - "SSE.Views.Toolbar.textNewColor": "Додати новий спеціальний колір", + "SSE.Views.Toolbar.textNewColor": "Новий спеціальний колір", "SSE.Views.Toolbar.textNewRule": "Нове правило", "SSE.Views.Toolbar.textNoBorders": "Немає кордонів", "SSE.Views.Toolbar.textOnePage": "сторінка", @@ -3428,14 +3436,6 @@ "SSE.Views.Toolbar.tipInsertTable": "Вставити таблицю", "SSE.Views.Toolbar.tipInsertText": "Вставити напис", "SSE.Views.Toolbar.tipInsertTextart": "Вставити текст Art", - "SSE.Views.Toolbar.tipMarkersArrow": "Маркери-стрілки", - "SSE.Views.Toolbar.tipMarkersCheckmark": "Маркери-галочки", - "SSE.Views.Toolbar.tipMarkersDash": "Маркери-тире", - "SSE.Views.Toolbar.tipMarkersFRhombus": "Заповнені ромбоподібні маркери", - "SSE.Views.Toolbar.tipMarkersFRound": "Заповнені круглі маркери", - "SSE.Views.Toolbar.tipMarkersFSquare": "Заповнені квадратні маркери", - "SSE.Views.Toolbar.tipMarkersHRound": "Пусті круглі маркери", - "SSE.Views.Toolbar.tipMarkersStar": "Маркери-зірочки", "SSE.Views.Toolbar.tipMerge": "Об'єднати та помістити в центрі", "SSE.Views.Toolbar.tipNone": "Немає", "SSE.Views.Toolbar.tipNumFormat": "Номер формату", diff --git a/apps/spreadsheeteditor/main/locale/vi.json b/apps/spreadsheeteditor/main/locale/vi.json index 446c6532b..3018c4b51 100644 --- a/apps/spreadsheeteditor/main/locale/vi.json +++ b/apps/spreadsheeteditor/main/locale/vi.json @@ -14,6 +14,7 @@ "Common.define.chartData.textStock": "Cổ phiếu", "Common.define.chartData.textSurface": "Bề mặt", "Common.define.chartData.textWinLossSpark": "Win/Loss", + "Common.UI.ButtonColored.textNewColor": "Màu tùy chỉnh", "Common.UI.ComboBorderSize.txtNoBorders": "Không viền", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Không viền", "Common.UI.ComboDataView.emptyComboText": "Không có kiểu", @@ -1082,6 +1083,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "như Windows", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Tổng quát", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Cài đặt trang", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Màu tùy chỉnh", "SSE.Views.FormatSettingsDialog.textCategory": "Danh mục", "SSE.Views.FormatSettingsDialog.textDecimal": "Thập phân", "SSE.Views.FormatSettingsDialog.textFormat": "Định dạng", @@ -1113,6 +1115,7 @@ "SSE.Views.FormulaDialog.textGroupDescription": "Chọn nhóm Hàm", "SSE.Views.FormulaDialog.textListDescription": "Chọn hàm", "SSE.Views.FormulaDialog.txtTitle": "Chèn hàm số", + "SSE.Views.HeaderFooterDialog.textNewColor": "Màu tùy chỉnh", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Hiển thị", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Liên kết tới", "SSE.Views.HyperlinkSettingsDialog.strRange": "Phạm vi", @@ -1371,7 +1374,7 @@ "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Tên trang tính", "SSE.Views.Statusbar.textAverage": "TRUNG BÌNH", "SSE.Views.Statusbar.textCount": "COUNT", - "SSE.Views.Statusbar.textNewColor": "Thêm màu tùy chỉnh mới", + "SSE.Views.Statusbar.textNewColor": "Màu tùy chỉnh", "SSE.Views.Statusbar.textNoColor": "Không màu", "SSE.Views.Statusbar.textSum": "SUM", "SSE.Views.Statusbar.tipAddTab": "Thêm bảng tính", @@ -1509,7 +1512,7 @@ "SSE.Views.Toolbar.textLeftBorders": "Đường viền bên trái", "SSE.Views.Toolbar.textMiddleBorders": "Đường viền ngang bên trong", "SSE.Views.Toolbar.textMoreFormats": "Thêm định dạng", - "SSE.Views.Toolbar.textNewColor": "Thêm màu tùy chỉnh mới", + "SSE.Views.Toolbar.textNewColor": "Màu tùy chỉnh", "SSE.Views.Toolbar.textNoBorders": "Không viền", "SSE.Views.Toolbar.textOutBorders": "Đường viền ngoài", "SSE.Views.Toolbar.textPrint": "In", diff --git a/apps/spreadsheeteditor/main/locale/zh-TW.json b/apps/spreadsheeteditor/main/locale/zh-TW.json new file mode 100644 index 000000000..75b895d9d --- /dev/null +++ b/apps/spreadsheeteditor/main/locale/zh-TW.json @@ -0,0 +1,3630 @@ +{ + "cancelButtonText": "取消", + "Common.Controllers.Chat.notcriticalErrorTitle": "警告", + "Common.Controllers.Chat.textEnterMessage": "在這裡輸入您的信息", + "Common.Controllers.History.notcriticalErrorTitle": "警告", + "Common.define.chartData.textArea": "區域", + "Common.define.chartData.textAreaStacked": "堆叠面積", + "Common.define.chartData.textAreaStackedPer": "100% 堆疊面積圖", + "Common.define.chartData.textBar": "槓", + "Common.define.chartData.textBarNormal": "劇集柱形", + "Common.define.chartData.textBarNormal3d": "3-D 簇狀直式長條圖", + "Common.define.chartData.textBarNormal3dPerspective": "3-D 直式長條圖", + "Common.define.chartData.textBarStacked": "堆叠柱形", + "Common.define.chartData.textBarStacked3d": "3-D 堆疊直式長條圖", + "Common.define.chartData.textBarStackedPer": "100% 堆疊直式長條圖", + "Common.define.chartData.textBarStackedPer3d": "3-D 100% 堆疊直式長條圖", + "Common.define.chartData.textCharts": "圖表", + "Common.define.chartData.textColumn": "欄", + "Common.define.chartData.textColumnSpark": "欄", + "Common.define.chartData.textCombo": "組合", + "Common.define.chartData.textComboAreaBar": "堆叠面積 - 劇集柱形", + "Common.define.chartData.textComboBarLine": "劇集柱形 - 綫", + "Common.define.chartData.textComboBarLineSecondary": "劇集柱形 - 副軸綫", + "Common.define.chartData.textComboCustom": "客制組合", + "Common.define.chartData.textDoughnut": "甜甜圈圖", + "Common.define.chartData.textHBarNormal": "劇集條形", + "Common.define.chartData.textHBarNormal3d": "3-D 簇狀橫式長條圖", + "Common.define.chartData.textHBarStacked": "堆叠條形", + "Common.define.chartData.textHBarStacked3d": "3-D 堆疊橫式長條圖", + "Common.define.chartData.textHBarStackedPer": "100% 堆疊橫式長條圖", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% 堆疊橫式長條圖", + "Common.define.chartData.textLine": "線", + "Common.define.chartData.textLine3d": "3-D 直線圖", + "Common.define.chartData.textLineMarker": "直線加標記", + "Common.define.chartData.textLineSpark": "線", + "Common.define.chartData.textLineStacked": "堆叠綫", + "Common.define.chartData.textLineStackedMarker": "堆積綫及標記", + "Common.define.chartData.textLineStackedPer": "100% 堆疊直線圖", + "Common.define.chartData.textLineStackedPerMarker": "100% 堆疊直線圖加標記", + "Common.define.chartData.textPie": "餅", + "Common.define.chartData.textPie3d": "3-D 圓餅圖", + "Common.define.chartData.textPoint": "XY(散點圖)", + "Common.define.chartData.textScatter": "散佈圖", + "Common.define.chartData.textScatterLine": "散佈圖同直線", + "Common.define.chartData.textScatterLineMarker": "散佈圖同直線及標記", + "Common.define.chartData.textScatterSmooth": "散佈圖同平滑線", + "Common.define.chartData.textScatterSmoothMarker": "散佈圖同平滑線及標記", + "Common.define.chartData.textSparks": "走勢圖", + "Common.define.chartData.textStock": "庫存", + "Common.define.chartData.textSurface": "表面", + "Common.define.chartData.textWinLossSpark": "贏/輸", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "無設定格式", + "Common.define.conditionalData.text1Above": "高於1個標準差", + "Common.define.conditionalData.text1Below": "低於1個標準差", + "Common.define.conditionalData.text2Above": "高於2個標準差", + "Common.define.conditionalData.text2Below": "低於2個標準差", + "Common.define.conditionalData.text3Above": "高於3個標準差", + "Common.define.conditionalData.text3Below": "低於3個標準差", + "Common.define.conditionalData.textAbove": "以上", + "Common.define.conditionalData.textAverage": " 平均", + "Common.define.conditionalData.textBegins": "開始於", + "Common.define.conditionalData.textBelow": "之下", + "Common.define.conditionalData.textBetween": "之間", + "Common.define.conditionalData.textBlank": "空白", + "Common.define.conditionalData.textBlanks": "包含空白", + "Common.define.conditionalData.textBottom": "底部", + "Common.define.conditionalData.textContains": "包含", + "Common.define.conditionalData.textDataBar": "數據欄", + "Common.define.conditionalData.textDate": "日期", + "Common.define.conditionalData.textDuplicate": "複製", + "Common.define.conditionalData.textEnds": "結尾為", + "Common.define.conditionalData.textEqAbove": "等於或高於", + "Common.define.conditionalData.textEqBelow": "等於或低於", + "Common.define.conditionalData.textEqual": "等於", + "Common.define.conditionalData.textError": "錯誤", + "Common.define.conditionalData.textErrors": "包含錯誤", + "Common.define.conditionalData.textFormula": "公式", + "Common.define.conditionalData.textGreater": "大於", + "Common.define.conditionalData.textGreaterEq": "大於或等於", + "Common.define.conditionalData.textIconSets": "圖標集", + "Common.define.conditionalData.textLast7days": "在過去7天內", + "Common.define.conditionalData.textLastMonth": "上個月", + "Common.define.conditionalData.textLastWeek": "上個星期", + "Common.define.conditionalData.textLess": "少於", + "Common.define.conditionalData.textLessEq": "小於或等於", + "Common.define.conditionalData.textNextMonth": "下個月", + "Common.define.conditionalData.textNextWeek": "下個星期", + "Common.define.conditionalData.textNotBetween": "不介於", + "Common.define.conditionalData.textNotBlanks": "不含空白", + "Common.define.conditionalData.textNotContains": "不含", + "Common.define.conditionalData.textNotEqual": "不等於", + "Common.define.conditionalData.textNotErrors": "不含錯誤", + "Common.define.conditionalData.textText": "文字", + "Common.define.conditionalData.textThisMonth": "這個月", + "Common.define.conditionalData.textThisWeek": "此星期", + "Common.define.conditionalData.textToday": "今天", + "Common.define.conditionalData.textTomorrow": "明天", + "Common.define.conditionalData.textTop": "上方", + "Common.define.conditionalData.textUnique": "獨特", + "Common.define.conditionalData.textValue": "此值是", + "Common.define.conditionalData.textYesterday": "昨天", + "Common.Translation.warnFileLocked": "該文件正在另一個應用程序中進行編輯。您可以繼續編輯並將其另存為副本。", + "Common.Translation.warnFileLockedBtnEdit": "建立副本", + "Common.Translation.warnFileLockedBtnView": "打開查看", + "Common.UI.ButtonColored.textAutoColor": "自動", + "Common.UI.ButtonColored.textNewColor": "新增自訂顏色", + "Common.UI.ComboBorderSize.txtNoBorders": "無邊框", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "無邊框", + "Common.UI.ComboDataView.emptyComboText": "無樣式", + "Common.UI.ExtendedColorDialog.addButtonText": "新增", + "Common.UI.ExtendedColorDialog.textCurrent": "當前", + "Common.UI.ExtendedColorDialog.textHexErr": "輸入的值不正確。
    請輸入一個介於000000和FFFFFF之間的值。", + "Common.UI.ExtendedColorDialog.textNew": "新", + "Common.UI.ExtendedColorDialog.textRGBErr": "輸入的值不正確。
    請輸入0到255之間的數字。", + "Common.UI.HSBColorPicker.textNoColor": "無顏色", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "不顯示密碼", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "顯示密碼", + "Common.UI.SearchDialog.textHighlight": "強調結果", + "Common.UI.SearchDialog.textMatchCase": "區分大小寫", + "Common.UI.SearchDialog.textReplaceDef": "輸入替換文字", + "Common.UI.SearchDialog.textSearchStart": "在這裡輸入您的文字", + "Common.UI.SearchDialog.textTitle": "尋找與取代", + "Common.UI.SearchDialog.textTitle2": "尋找", + "Common.UI.SearchDialog.textWholeWords": "僅全字", + "Common.UI.SearchDialog.txtBtnHideReplace": "隱藏替換", + "Common.UI.SearchDialog.txtBtnReplace": "取代", + "Common.UI.SearchDialog.txtBtnReplaceAll": "取代全部", + "Common.UI.SynchronizeTip.textDontShow": "不再顯示此消息", + "Common.UI.SynchronizeTip.textSynchronize": "該文檔已被其他用戶更改。
    請單擊以保存更改並重新加載更新。", + "Common.UI.ThemeColorPalette.textStandartColors": "標準顏色", + "Common.UI.ThemeColorPalette.textThemeColors": "主題顏色", + "Common.UI.Themes.txtThemeClassicLight": "傳統亮色", + "Common.UI.Themes.txtThemeDark": "暗黑", + "Common.UI.Themes.txtThemeLight": " 淺色主題", + "Common.UI.Window.cancelButtonText": "取消", + "Common.UI.Window.closeButtonText": "關閉", + "Common.UI.Window.noButtonText": "沒有", + "Common.UI.Window.okButtonText": "確定", + "Common.UI.Window.textConfirmation": "確認", + "Common.UI.Window.textDontShow": "不再顯示此消息", + "Common.UI.Window.textError": "錯誤", + "Common.UI.Window.textInformation": "資訊", + "Common.UI.Window.textWarning": "警告", + "Common.UI.Window.yesButtonText": "是", + "Common.Utils.Metric.txtCm": "公分", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "地址:", + "Common.Views.About.txtLicensee": "被許可人", + "Common.Views.About.txtLicensor": "許可人", + "Common.Views.About.txtMail": "電子郵件:", + "Common.Views.About.txtPoweredBy": "於支援", + "Common.Views.About.txtTel": "電話: ", + "Common.Views.About.txtVersion": "版本", + "Common.Views.AutoCorrectDialog.textAdd": "新增", + "Common.Views.AutoCorrectDialog.textApplyAsWork": "工作時套用", + "Common.Views.AutoCorrectDialog.textAutoCorrect": " 自動更正", + "Common.Views.AutoCorrectDialog.textAutoFormat": "鍵入時自動調整規格", + "Common.Views.AutoCorrectDialog.textBy": "通過", + "Common.Views.AutoCorrectDialog.textDelete": "刪除", + "Common.Views.AutoCorrectDialog.textFLSentence": "英文句子第一個字母大寫", + "Common.Views.AutoCorrectDialog.textHyperlink": "網絡路徑超連結", + "Common.Views.AutoCorrectDialog.textMathCorrect": "數學自動更正", + "Common.Views.AutoCorrectDialog.textNewRowCol": "在表格中包括新的行和列", + "Common.Views.AutoCorrectDialog.textRecognized": "公認的功能", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下表達式是公認的數學表達式。它們不會自動斜體顯示。", + "Common.Views.AutoCorrectDialog.textReplace": "取代", + "Common.Views.AutoCorrectDialog.textReplaceText": "鍵入時替換", + "Common.Views.AutoCorrectDialog.textReplaceType": "鍵入時替換文字", + "Common.Views.AutoCorrectDialog.textReset": "重設", + "Common.Views.AutoCorrectDialog.textResetAll": "重置為預設", + "Common.Views.AutoCorrectDialog.textRestore": "恢復", + "Common.Views.AutoCorrectDialog.textTitle": "自動更正", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "公認的函數只能包含字母A到Z,大寫或小寫。", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "您添加的所有表達式都將被刪除,被刪除的表達式將被恢復。你想繼續嗎?", + "Common.Views.AutoCorrectDialog.warnReplace": "%1的自動更正條目已存在。您要更換嗎?", + "Common.Views.AutoCorrectDialog.warnReset": "您添加的所有自動更正將被刪除,更改後的自動更正將恢復為其原始值。你想繼續嗎?", + "Common.Views.AutoCorrectDialog.warnRestore": "%1的自動更正條目將被重置為其原始值。你想繼續嗎?", + "Common.Views.Chat.textSend": "傳送", + "Common.Views.Comments.mniAuthorAsc": "作者排行A到Z", + "Common.Views.Comments.mniAuthorDesc": "作者排行Z到A", + "Common.Views.Comments.mniDateAsc": "從最老的", + "Common.Views.Comments.mniDateDesc": "從最新的", + "Common.Views.Comments.mniFilterGroups": "依群組篩選", + "Common.Views.Comments.mniPositionAsc": "從上到下", + "Common.Views.Comments.mniPositionDesc": "自下而上", + "Common.Views.Comments.textAdd": "新增", + "Common.Views.Comments.textAddComment": "增加留言", + "Common.Views.Comments.textAddCommentToDoc": "在文檔中添加評論", + "Common.Views.Comments.textAddReply": "加入回覆", + "Common.Views.Comments.textAll": "全部", + "Common.Views.Comments.textAnonym": "來賓帳戶", + "Common.Views.Comments.textCancel": "取消", + "Common.Views.Comments.textClose": "關閉", + "Common.Views.Comments.textClosePanel": "關註釋", + "Common.Views.Comments.textComments": "評論", + "Common.Views.Comments.textEdit": "確定", + "Common.Views.Comments.textEnterCommentHint": "在這裡輸入您的評論", + "Common.Views.Comments.textHintAddComment": "增加留言", + "Common.Views.Comments.textOpenAgain": "重新打開", + "Common.Views.Comments.textReply": "回覆", + "Common.Views.Comments.textResolve": "解決", + "Common.Views.Comments.textResolved": "已解決", + "Common.Views.Comments.textSort": "註釋分類", + "Common.Views.Comments.textViewResolved": "您沒有權限來重新開啟這個註解", + "Common.Views.CopyWarningDialog.textDontShow": "不再顯示此消息", + "Common.Views.CopyWarningDialog.textMsg": "使用編輯器工具欄按鈕進行複制,剪切和粘貼操作以及上下文選單操作僅在此編輯器選項卡中執行。

    要在“編輯器”選項卡之外的應用程序之間進行複製或粘貼,請使用以下鍵盤組合:", + "Common.Views.CopyWarningDialog.textTitle": "複製, 剪下, 與貼上之動作", + "Common.Views.CopyWarningDialog.textToCopy": "複印", + "Common.Views.CopyWarningDialog.textToCut": "切", + "Common.Views.CopyWarningDialog.textToPaste": "粘貼", + "Common.Views.DocumentAccessDialog.textLoading": "載入中...", + "Common.Views.DocumentAccessDialog.textTitle": "分享設定", + "Common.Views.EditNameDialog.textLabel": "標籤:", + "Common.Views.EditNameDialog.textLabelError": "標籤不能為空。", + "Common.Views.Header.labelCoUsersDescr": "正在編輯文件的用戶:", + "Common.Views.Header.textAddFavorite": "標記為最愛收藏", + "Common.Views.Header.textAdvSettings": "進階設定", + "Common.Views.Header.textBack": "打開文件所在位置", + "Common.Views.Header.textCompactView": "隱藏工具欄", + "Common.Views.Header.textHideLines": "隱藏標尺", + "Common.Views.Header.textHideStatusBar": "隱藏狀態欄", + "Common.Views.Header.textRemoveFavorite": "\n從最愛收藏夾中刪除", + "Common.Views.Header.textSaveBegin": "存檔中...", + "Common.Views.Header.textSaveChanged": "已更改", + "Common.Views.Header.textSaveEnd": "所有更改已保存", + "Common.Views.Header.textSaveExpander": "所有更改已保存", + "Common.Views.Header.textZoom": "放大", + "Common.Views.Header.tipAccessRights": "管理文檔存取權限", + "Common.Views.Header.tipDownload": "下載文件", + "Common.Views.Header.tipGoEdit": "編輯當前文件", + "Common.Views.Header.tipPrint": "列印文件", + "Common.Views.Header.tipRedo": "重做", + "Common.Views.Header.tipSave": "儲存", + "Common.Views.Header.tipUndo": "復原", + "Common.Views.Header.tipUndock": "移至單獨的視窗", + "Common.Views.Header.tipViewSettings": "查看設定", + "Common.Views.Header.tipViewUsers": "查看用戶並管理文檔存取權限", + "Common.Views.Header.txtAccessRights": "更改存取權限", + "Common.Views.Header.txtRename": "重新命名", + "Common.Views.History.textCloseHistory": "關閉歷史紀錄", + "Common.Views.History.textHide": "塌陷", + "Common.Views.History.textHideAll": "隱藏詳細的更改", + "Common.Views.History.textRestore": "恢復", + "Common.Views.History.textShow": "擴大", + "Common.Views.History.textShowAll": "顯示詳細的更改歷史", + "Common.Views.History.textVer": "版本", + "Common.Views.ImageFromUrlDialog.textUrl": "粘貼圖片網址:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "這是必填欄", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "此字段應為“ http://www.example.com”格式的網址", + "Common.Views.ListSettingsDialog.textBulleted": "已加入項目點", + "Common.Views.ListSettingsDialog.textNumbering": "已編號", + "Common.Views.ListSettingsDialog.tipChange": "更改項目點", + "Common.Views.ListSettingsDialog.txtBullet": "項目點", + "Common.Views.ListSettingsDialog.txtColor": "顏色", + "Common.Views.ListSettingsDialog.txtNewBullet": "新項目點", + "Common.Views.ListSettingsDialog.txtNone": "無", + "Common.Views.ListSettingsDialog.txtOfText": "文字百分比", + "Common.Views.ListSettingsDialog.txtSize": "大小", + "Common.Views.ListSettingsDialog.txtStart": "開始", + "Common.Views.ListSettingsDialog.txtSymbol": "符號", + "Common.Views.ListSettingsDialog.txtTitle": "清單設定", + "Common.Views.ListSettingsDialog.txtType": "類型", + "Common.Views.OpenDialog.closeButtonText": "關閉檔案", + "Common.Views.OpenDialog.textInvalidRange": "無效的儲存格範圍", + "Common.Views.OpenDialog.textSelectData": "選擇數據", + "Common.Views.OpenDialog.txtAdvanced": "進階", + "Common.Views.OpenDialog.txtColon": "冒號", + "Common.Views.OpenDialog.txtComma": "逗號", + "Common.Views.OpenDialog.txtDelimiter": "分隔符號", + "Common.Views.OpenDialog.txtDestData": "選擇數據擺位", + "Common.Views.OpenDialog.txtEmpty": "這是必填欄", + "Common.Views.OpenDialog.txtEncoding": "編碼", + "Common.Views.OpenDialog.txtIncorrectPwd": "密碼錯誤。", + "Common.Views.OpenDialog.txtOpenFile": "輸入檔案密碼", + "Common.Views.OpenDialog.txtOther": "其它", + "Common.Views.OpenDialog.txtPassword": "密碼", + "Common.Views.OpenDialog.txtPreview": "預覽", + "Common.Views.OpenDialog.txtProtected": "輸入密碼並打開文件後,該文件的當前密碼將被重置。", + "Common.Views.OpenDialog.txtSemicolon": "分號", + "Common.Views.OpenDialog.txtSpace": "空間", + "Common.Views.OpenDialog.txtTab": "標籤", + "Common.Views.OpenDialog.txtTitle": "選擇%1個選項", + "Common.Views.OpenDialog.txtTitleProtected": "受保護的文件", + "Common.Views.PasswordDialog.txtDescription": "設置密碼以保護此文檔", + "Common.Views.PasswordDialog.txtIncorrectPwd": "確認密碼不相同", + "Common.Views.PasswordDialog.txtPassword": "密碼", + "Common.Views.PasswordDialog.txtRepeat": "重複輸入密碼", + "Common.Views.PasswordDialog.txtTitle": "設置密碼", + "Common.Views.PasswordDialog.txtWarning": "警告:如果失去密碼,將無法取回。請妥善保存。", + "Common.Views.PluginDlg.textLoading": "載入中", + "Common.Views.Plugins.groupCaption": "外掛程式", + "Common.Views.Plugins.strPlugins": "外掛程式", + "Common.Views.Plugins.textLoading": "載入中", + "Common.Views.Plugins.textStart": "開始", + "Common.Views.Plugins.textStop": "停止", + "Common.Views.Protection.hintAddPwd": "用密碼加密", + "Common.Views.Protection.hintPwd": "更改或刪除密碼", + "Common.Views.Protection.hintSignature": "添加數字簽名或簽名行", + "Common.Views.Protection.txtAddPwd": "新增密碼", + "Common.Views.Protection.txtChangePwd": "變更密碼", + "Common.Views.Protection.txtDeletePwd": "刪除密碼", + "Common.Views.Protection.txtEncrypt": "加密", + "Common.Views.Protection.txtInvisibleSignature": "添加數字簽名", + "Common.Views.Protection.txtSignature": "簽名", + "Common.Views.Protection.txtSignatureLine": "添加簽名行", + "Common.Views.RenameDialog.textName": "檔案名稱", + "Common.Views.RenameDialog.txtInvalidName": "文件名不能包含以下任何字符:", + "Common.Views.ReviewChanges.hintNext": "到下一個變化", + "Common.Views.ReviewChanges.hintPrev": "到之前的變化", + "Common.Views.ReviewChanges.strFast": "快", + "Common.Views.ReviewChanges.strFastDesc": "實時共同編輯。所有更改將自動保存。", + "Common.Views.ReviewChanges.strStrict": "嚴格", + "Common.Views.ReviewChanges.strStrictDesc": "使用“保存”按鈕同步您和其他人所做的更改。", + "Common.Views.ReviewChanges.tipAcceptCurrent": "同意當前更改", + "Common.Views.ReviewChanges.tipCoAuthMode": "設定共同編輯模式", + "Common.Views.ReviewChanges.tipCommentRem": "刪除評論", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "刪除當前評論", + "Common.Views.ReviewChanges.tipCommentResolve": "標記註解為已解決", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "將註解標記為已解決", + "Common.Views.ReviewChanges.tipHistory": "顯示版本歷史", + "Common.Views.ReviewChanges.tipRejectCurrent": "拒絕當前變化", + "Common.Views.ReviewChanges.tipReview": "跟蹤變化", + "Common.Views.ReviewChanges.tipReviewView": "選擇您要顯示更改的模式", + "Common.Views.ReviewChanges.tipSetDocLang": "設定文件語言", + "Common.Views.ReviewChanges.tipSetSpelling": "拼字檢查", + "Common.Views.ReviewChanges.tipSharing": "管理文檔存取權限", + "Common.Views.ReviewChanges.txtAccept": "同意", + "Common.Views.ReviewChanges.txtAcceptAll": "接受全部的更改", + "Common.Views.ReviewChanges.txtAcceptChanges": "同意更改", + "Common.Views.ReviewChanges.txtAcceptCurrent": "同意當前更改", + "Common.Views.ReviewChanges.txtChat": "聊天", + "Common.Views.ReviewChanges.txtClose": "關閉", + "Common.Views.ReviewChanges.txtCoAuthMode": "共同編輯模式", + "Common.Views.ReviewChanges.txtCommentRemAll": "刪除所有評論", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "刪除當前評論", + "Common.Views.ReviewChanges.txtCommentRemMy": "刪除我的評論", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "刪除我當前的評論", + "Common.Views.ReviewChanges.txtCommentRemove": "移除", + "Common.Views.ReviewChanges.txtCommentResolve": "解決", + "Common.Views.ReviewChanges.txtCommentResolveAll": "將所有註解標記為已解決", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "將註解標記為已解決", + "Common.Views.ReviewChanges.txtCommentResolveMy": "將自己所有的註解標記為已解決", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "將自己的註解標記為已解決", + "Common.Views.ReviewChanges.txtDocLang": "語言", + "Common.Views.ReviewChanges.txtFinal": "更改已全部接受(預覽)", + "Common.Views.ReviewChanges.txtFinalCap": "最後", + "Common.Views.ReviewChanges.txtHistory": "版本歷史", + "Common.Views.ReviewChanges.txtMarkup": "全部的更改(編輯中)", + "Common.Views.ReviewChanges.txtMarkupCap": "標記", + "Common.Views.ReviewChanges.txtNext": "下一個", + "Common.Views.ReviewChanges.txtOriginal": "全部更改被拒絕(預覽)", + "Common.Views.ReviewChanges.txtOriginalCap": "原始", + "Common.Views.ReviewChanges.txtPrev": "前一個", + "Common.Views.ReviewChanges.txtReject": "拒絕", + "Common.Views.ReviewChanges.txtRejectAll": "拒絕所有更改", + "Common.Views.ReviewChanges.txtRejectChanges": "拒絕更改", + "Common.Views.ReviewChanges.txtRejectCurrent": "拒絕當前變化", + "Common.Views.ReviewChanges.txtSharing": "分享", + "Common.Views.ReviewChanges.txtSpelling": "拼字檢查", + "Common.Views.ReviewChanges.txtTurnon": "跟蹤變化", + "Common.Views.ReviewChanges.txtView": "顯示模式", + "Common.Views.ReviewPopover.textAdd": "新增", + "Common.Views.ReviewPopover.textAddReply": "加入回覆", + "Common.Views.ReviewPopover.textCancel": "取消", + "Common.Views.ReviewPopover.textClose": "關閉", + "Common.Views.ReviewPopover.textEdit": "確定", + "Common.Views.ReviewPopover.textMention": "+提及將提供對文檔的存取權限並發送電子郵件", + "Common.Views.ReviewPopover.textMentionNotify": "+提及將通過電子郵件通知用戶", + "Common.Views.ReviewPopover.textOpenAgain": "重新打開", + "Common.Views.ReviewPopover.textReply": "回覆", + "Common.Views.ReviewPopover.textResolve": "解決", + "Common.Views.ReviewPopover.textViewResolved": "您沒有權限來重新開啟這個註解", + "Common.Views.ReviewPopover.txtDeleteTip": "刪除", + "Common.Views.ReviewPopover.txtEditTip": "編輯", + "Common.Views.SaveAsDlg.textLoading": "載入中", + "Common.Views.SaveAsDlg.textTitle": "保存文件夾", + "Common.Views.SelectFileDlg.textLoading": "載入中", + "Common.Views.SelectFileDlg.textTitle": "選擇資料來源", + "Common.Views.SignDialog.textBold": "粗體", + "Common.Views.SignDialog.textCertificate": "證書", + "Common.Views.SignDialog.textChange": "變更", + "Common.Views.SignDialog.textInputName": "輸入簽名者名稱", + "Common.Views.SignDialog.textItalic": "斜體", + "Common.Views.SignDialog.textNameError": "簽名人姓名不能留空。", + "Common.Views.SignDialog.textPurpose": "簽署本文件的目的", + "Common.Views.SignDialog.textSelect": "選擇", + "Common.Views.SignDialog.textSelectImage": "選擇圖片", + "Common.Views.SignDialog.textSignature": "簽名看起來像", + "Common.Views.SignDialog.textTitle": "簽署文件", + "Common.Views.SignDialog.textUseImage": "或單擊“選擇圖像”以使用圖片作為簽名", + "Common.Views.SignDialog.textValid": "從%1到%2有效", + "Common.Views.SignDialog.tipFontName": "字體名稱", + "Common.Views.SignDialog.tipFontSize": "字體大小", + "Common.Views.SignSettingsDialog.textAllowComment": "允許簽名者在簽名對話框中添加註釋", + "Common.Views.SignSettingsDialog.textInfo": "簽名者資訊", + "Common.Views.SignSettingsDialog.textInfoEmail": "電子郵件", + "Common.Views.SignSettingsDialog.textInfoName": "名稱", + "Common.Views.SignSettingsDialog.textInfoTitle": "簽名人稱號", + "Common.Views.SignSettingsDialog.textInstructions": "簽名者說明", + "Common.Views.SignSettingsDialog.textShowDate": "在簽名行中顯示簽名日期", + "Common.Views.SignSettingsDialog.textTitle": "簽名設置", + "Common.Views.SignSettingsDialog.txtEmpty": "這是必填欄", + "Common.Views.SymbolTableDialog.textCharacter": "字符", + "Common.Views.SymbolTableDialog.textCode": "Unicode HEX 值", + "Common.Views.SymbolTableDialog.textCopyright": "版權標誌", + "Common.Views.SymbolTableDialog.textDCQuote": "結束雙引號", + "Common.Views.SymbolTableDialog.textDOQuote": "開頭雙引號", + "Common.Views.SymbolTableDialog.textEllipsis": "水平橢圓", + "Common.Views.SymbolTableDialog.textEmDash": "空槓", + "Common.Views.SymbolTableDialog.textEmSpace": "空白空間", + "Common.Views.SymbolTableDialog.textEnDash": "En 橫槓", + "Common.Views.SymbolTableDialog.textEnSpace": "En 空白", + "Common.Views.SymbolTableDialog.textFont": "字體", + "Common.Views.SymbolTableDialog.textNBHyphen": "不間斷連字符", + "Common.Views.SymbolTableDialog.textNBSpace": "不間斷空間", + "Common.Views.SymbolTableDialog.textPilcrow": "稻草人標誌", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 空白空間", + "Common.Views.SymbolTableDialog.textRange": "範圍", + "Common.Views.SymbolTableDialog.textRecent": "最近使用的符號", + "Common.Views.SymbolTableDialog.textRegistered": "註冊標誌", + "Common.Views.SymbolTableDialog.textSCQuote": "結束單引號", + "Common.Views.SymbolTableDialog.textSection": "分區標誌", + "Common.Views.SymbolTableDialog.textShortcut": "快捷鍵", + "Common.Views.SymbolTableDialog.textSHyphen": "軟連字符", + "Common.Views.SymbolTableDialog.textSOQuote": "開單報價", + "Common.Views.SymbolTableDialog.textSpecial": "特殊字符", + "Common.Views.SymbolTableDialog.textSymbols": "符號", + "Common.Views.SymbolTableDialog.textTitle": "符號", + "Common.Views.SymbolTableDialog.textTradeMark": "商標符號", + "Common.Views.UserNameDialog.textDontShow": "不要再顯示", + "Common.Views.UserNameDialog.textLabel": "標記:", + "Common.Views.UserNameDialog.textLabelError": "標籤不能為空。", + "SSE.Controllers.DataTab.textColumns": "欄", + "SSE.Controllers.DataTab.textEmptyUrl": "你必須指定URL", + "SSE.Controllers.DataTab.textRows": "行列", + "SSE.Controllers.DataTab.textWizard": "文字轉欄", + "SSE.Controllers.DataTab.txtDataValidation": "資料驗證", + "SSE.Controllers.DataTab.txtExpand": "擴大", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "所選內容旁邊的數據將不會被刪除。您要擴展選擇範圍以包括相鄰數據還是僅繼續使用當前選定的單元格?", + "SSE.Controllers.DataTab.txtExtendDataValidation": "該選擇包含一些沒有數據驗證設置的單元。
    是否要將數據驗證擴展到這些單元?", + "SSE.Controllers.DataTab.txtImportWizard": "文字彙入精靈", + "SSE.Controllers.DataTab.txtRemDuplicates": "刪除重複項", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "該選擇包含多種驗證類型。
    清除當前設置並繼續嗎?", + "SSE.Controllers.DataTab.txtRemSelected": "在選定的位置刪除", + "SSE.Controllers.DataTab.txtUrlTitle": "粘貼數據 URL", + "SSE.Controllers.DocumentHolder.alignmentText": "對齊", + "SSE.Controllers.DocumentHolder.centerText": "中心", + "SSE.Controllers.DocumentHolder.deleteColumnText": "刪除欄位", + "SSE.Controllers.DocumentHolder.deleteRowText": "刪除行列", + "SSE.Controllers.DocumentHolder.deleteText": "刪除", + "SSE.Controllers.DocumentHolder.errorInvalidLink": "連結引用不存在。請更正連結或將其刪除。", + "SSE.Controllers.DocumentHolder.guestText": "來賓帳戶", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "欄位以左", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "欄位以右", + "SSE.Controllers.DocumentHolder.insertRowAboveText": "上行", + "SSE.Controllers.DocumentHolder.insertRowBelowText": "下行", + "SSE.Controllers.DocumentHolder.insertText": "插入", + "SSE.Controllers.DocumentHolder.leftText": "左", + "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "警告", + "SSE.Controllers.DocumentHolder.rightText": "右", + "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "自動更正選項", + "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "列寬{0}個符號({1}個像素)", + "SSE.Controllers.DocumentHolder.textChangeRowHeight": "行高{0}點({1}像素)", + "SSE.Controllers.DocumentHolder.textCtrlClick": "單擊鏈接將其打開,或單擊並按住鼠標按鈕以選擇該單元格。", + "SSE.Controllers.DocumentHolder.textInsertLeft": "向左插入", + "SSE.Controllers.DocumentHolder.textInsertTop": "插入頂部", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "特別貼黏", + "SSE.Controllers.DocumentHolder.textStopExpand": "停止自動展開表格", + "SSE.Controllers.DocumentHolder.textSym": "象徵", + "SSE.Controllers.DocumentHolder.tipIsLocked": "該元素正在由另一個用戶編輯。", + "SSE.Controllers.DocumentHolder.txtAboveAve": "高於平均", + "SSE.Controllers.DocumentHolder.txtAddBottom": "添加底部邊框", + "SSE.Controllers.DocumentHolder.txtAddFractionBar": "添加分數欄", + "SSE.Controllers.DocumentHolder.txtAddHor": "添加水平線", + "SSE.Controllers.DocumentHolder.txtAddLB": "添加左底邊框", + "SSE.Controllers.DocumentHolder.txtAddLeft": "添加左邊框", + "SSE.Controllers.DocumentHolder.txtAddLT": "添加左上頂行", + "SSE.Controllers.DocumentHolder.txtAddRight": "加入右邊框", + "SSE.Controllers.DocumentHolder.txtAddTop": "加入上邊框", + "SSE.Controllers.DocumentHolder.txtAddVer": "加入垂直線", + "SSE.Controllers.DocumentHolder.txtAlignToChar": "與字符對齊", + "SSE.Controllers.DocumentHolder.txtAll": "(所有)", + "SSE.Controllers.DocumentHolder.txtAllTableHint": "回傳表格或指定表格列的全部內容包括列標題,資料和總行術", + "SSE.Controllers.DocumentHolder.txtAnd": "和", + "SSE.Controllers.DocumentHolder.txtBegins": "開始於", + "SSE.Controllers.DocumentHolder.txtBelowAve": "低於平均值", + "SSE.Controllers.DocumentHolder.txtBlanks": "(空白)", + "SSE.Controllers.DocumentHolder.txtBorderProps": "邊框屬性", + "SSE.Controllers.DocumentHolder.txtBottom": "底部", + "SSE.Controllers.DocumentHolder.txtColumn": "欄", + "SSE.Controllers.DocumentHolder.txtColumnAlign": "欄位對準", + "SSE.Controllers.DocumentHolder.txtContains": "包含", + "SSE.Controllers.DocumentHolder.txtDataTableHint": "回傳表格儲存格,或指定的表格儲存格", + "SSE.Controllers.DocumentHolder.txtDecreaseArg": "減小參數大小", + "SSE.Controllers.DocumentHolder.txtDeleteArg": "刪除參數", + "SSE.Controllers.DocumentHolder.txtDeleteBreak": "刪除手動休息", + "SSE.Controllers.DocumentHolder.txtDeleteChars": "刪除封閉字符", + "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "刪除括起來的字符和分隔符", + "SSE.Controllers.DocumentHolder.txtDeleteEq": "刪除方程式", + "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "刪除字元", + "SSE.Controllers.DocumentHolder.txtDeleteRadical": "刪除部首", + "SSE.Controllers.DocumentHolder.txtEnds": "以。。結束", + "SSE.Controllers.DocumentHolder.txtEquals": "等於", + "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "等於單元格顏色", + "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "等於字體顏色", + "SSE.Controllers.DocumentHolder.txtExpand": "展開和排序", + "SSE.Controllers.DocumentHolder.txtExpandSort": "選擇項旁邊的數據將不會排序。您是否要擴展選擇範圍以包括相鄰數據,還是僅對當前選定的單元格進行排序?", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "底部", + "SSE.Controllers.DocumentHolder.txtFilterTop": "上方", + "SSE.Controllers.DocumentHolder.txtFractionLinear": "更改為線性分數", + "SSE.Controllers.DocumentHolder.txtFractionSkewed": "更改為傾斜分數", + "SSE.Controllers.DocumentHolder.txtFractionStacked": "更改為堆積分數", + "SSE.Controllers.DocumentHolder.txtGreater": "更佳", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "大於或等於", + "SSE.Controllers.DocumentHolder.txtGroupCharOver": "字符至文字的上方", + "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "字符至文字的下方", + "SSE.Controllers.DocumentHolder.txtHeadersTableHint": "回傳表格列標題,或指定的表格列標題", + "SSE.Controllers.DocumentHolder.txtHeight": "\n高度", + "SSE.Controllers.DocumentHolder.txtHideBottom": "隱藏底部邊框", + "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "隱藏下限", + "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "隱藏右括號", + "SSE.Controllers.DocumentHolder.txtHideDegree": "隱藏度", + "SSE.Controllers.DocumentHolder.txtHideHor": "隱藏水平線", + "SSE.Controllers.DocumentHolder.txtHideLB": "隱藏左底線", + "SSE.Controllers.DocumentHolder.txtHideLeft": "隱藏左邊框", + "SSE.Controllers.DocumentHolder.txtHideLT": "隱藏左頂行", + "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "隱藏開口支架", + "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "隱藏佔位符", + "SSE.Controllers.DocumentHolder.txtHideRight": "隱藏右邊框", + "SSE.Controllers.DocumentHolder.txtHideTop": "隱藏頂部邊框", + "SSE.Controllers.DocumentHolder.txtHideTopLimit": "隱藏最高限額", + "SSE.Controllers.DocumentHolder.txtHideVer": "隱藏垂直線", + "SSE.Controllers.DocumentHolder.txtImportWizard": "文字彙入精靈", + "SSE.Controllers.DocumentHolder.txtIncreaseArg": "增加參數大小", + "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "在後面插入參數", + "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "在前面插入參數", + "SSE.Controllers.DocumentHolder.txtInsertBreak": "插入手動中斷", + "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "在後面插入方程式", + "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "在前面插入方程式", + "SSE.Controllers.DocumentHolder.txtItems": "項目", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "僅保留文字", + "SSE.Controllers.DocumentHolder.txtLess": "少於", + "SSE.Controllers.DocumentHolder.txtLessEquals": "小於或等於", + "SSE.Controllers.DocumentHolder.txtLimitChange": "更改限制位置", + "SSE.Controllers.DocumentHolder.txtLimitOver": "文字限制", + "SSE.Controllers.DocumentHolder.txtLimitUnder": "文字下的限制", + "SSE.Controllers.DocumentHolder.txtLockSort": "您選材的比鄰有數據,可您更改權限不足。
    是否繼續當前選材?", + "SSE.Controllers.DocumentHolder.txtMatchBrackets": "將括號匹配到參數高度", + "SSE.Controllers.DocumentHolder.txtMatrixAlign": "矩陣對齊", + "SSE.Controllers.DocumentHolder.txtNoChoices": "無法選擇要填充單元格的內容。
    只能選擇列中的文本值進行替換。", + "SSE.Controllers.DocumentHolder.txtNotBegins": "不以", + "SSE.Controllers.DocumentHolder.txtNotContains": "不含", + "SSE.Controllers.DocumentHolder.txtNotEnds": "不以結束", + "SSE.Controllers.DocumentHolder.txtNotEquals": "不等於", + "SSE.Controllers.DocumentHolder.txtOr": "或", + "SSE.Controllers.DocumentHolder.txtOverbar": "槓覆蓋文字", + "SSE.Controllers.DocumentHolder.txtPaste": "貼上", + "SSE.Controllers.DocumentHolder.txtPasteBorders": "無框公式", + "SSE.Controllers.DocumentHolder.txtPasteColWidths": "公式+欄寬", + "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "目標格式", + "SSE.Controllers.DocumentHolder.txtPasteFormat": "僅粘貼格式", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "公式+數字格式", + "SSE.Controllers.DocumentHolder.txtPasteFormulas": "僅粘貼公式", + "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "公式+所有格式", + "SSE.Controllers.DocumentHolder.txtPasteLink": "貼上連結", + "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "已連接的圖片", + "SSE.Controllers.DocumentHolder.txtPasteMerge": "合併條件格式", + "SSE.Controllers.DocumentHolder.txtPastePicture": "圖片", + "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "源格式", + "SSE.Controllers.DocumentHolder.txtPasteTranspose": "轉置", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "值+所有格式", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "值+數字格式", + "SSE.Controllers.DocumentHolder.txtPasteValues": "僅粘貼值", + "SSE.Controllers.DocumentHolder.txtPercent": "百分比", + "SSE.Controllers.DocumentHolder.txtRedoExpansion": "重做表自動擴展", + "SSE.Controllers.DocumentHolder.txtRemFractionBar": "刪除分數欄", + "SSE.Controllers.DocumentHolder.txtRemLimit": "取消限制", + "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "刪除強調字符", + "SSE.Controllers.DocumentHolder.txtRemoveBar": "移除欄", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "確定移除此簽名?
    這動作無法復原。", + "SSE.Controllers.DocumentHolder.txtRemScripts": "刪除腳本", + "SSE.Controllers.DocumentHolder.txtRemSubscript": "刪除下標", + "SSE.Controllers.DocumentHolder.txtRemSuperscript": "刪除上標", + "SSE.Controllers.DocumentHolder.txtRowHeight": "行高", + "SSE.Controllers.DocumentHolder.txtScriptsAfter": "文字後的腳本", + "SSE.Controllers.DocumentHolder.txtScriptsBefore": "文字前的腳本", + "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "顯示底限", + "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "顯示結束括號", + "SSE.Controllers.DocumentHolder.txtShowDegree": "顯示程度", + "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "顯示開口支架", + "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "顯示佔位符", + "SSE.Controllers.DocumentHolder.txtShowTopLimit": "顯示最高限額", + "SSE.Controllers.DocumentHolder.txtSorting": "排序", + "SSE.Controllers.DocumentHolder.txtSortSelected": "排序已選擇項目", + "SSE.Controllers.DocumentHolder.txtStretchBrackets": "延伸括號", + "SSE.Controllers.DocumentHolder.txtThisRowHint": "在選定的列裡選擇這行", + "SSE.Controllers.DocumentHolder.txtTop": "上方", + "SSE.Controllers.DocumentHolder.txtTotalsTableHint": "回傳表格或指定表格列的總行數", + "SSE.Controllers.DocumentHolder.txtUnderbar": "槓至文字底下", + "SSE.Controllers.DocumentHolder.txtUndoExpansion": "撤消表自動擴展", + "SSE.Controllers.DocumentHolder.txtUseTextImport": "使用文本導入嚮導", + "SSE.Controllers.DocumentHolder.txtWarnUrl": "這鏈接有可能對您的設備和數據造成損害。
    您確定要繼續嗎?", + "SSE.Controllers.DocumentHolder.txtWidth": "寬度", + "SSE.Controllers.FormulaDialog.sCategoryAll": "全部", + "SSE.Controllers.FormulaDialog.sCategoryCube": " 立方體", + "SSE.Controllers.FormulaDialog.sCategoryDatabase": "數據庫", + "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "日期和時間", + "SSE.Controllers.FormulaDialog.sCategoryEngineering": "工程", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "金融", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "資訊", + "SSE.Controllers.FormulaDialog.sCategoryLast10": "最後使用10", + "SSE.Controllers.FormulaDialog.sCategoryLogical": "合邏輯", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "查找和參考", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "數學和三角學", + "SSE.Controllers.FormulaDialog.sCategoryStatistical": "統計", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "文字和數據", + "SSE.Controllers.LeftMenu.newDocumentTitle": "未命名電子表格", + "SSE.Controllers.LeftMenu.textByColumns": "按列", + "SSE.Controllers.LeftMenu.textByRows": "按行", + "SSE.Controllers.LeftMenu.textFormulas": "公式", + "SSE.Controllers.LeftMenu.textItemEntireCell": "整個單元格內容", + "SSE.Controllers.LeftMenu.textLoadHistory": "正在載入版本歷史記錄...", + "SSE.Controllers.LeftMenu.textLookin": "探望", + "SSE.Controllers.LeftMenu.textNoTextFound": "找不到您一直在搜索的數據。請調整您的搜索選項。", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "替換已完成。 {0}個事件被跳過。", + "SSE.Controllers.LeftMenu.textReplaceSuccess": "搜索已完成。發生的事件已替換:{0}", + "SSE.Controllers.LeftMenu.textSearch": "搜尋", + "SSE.Controllers.LeftMenu.textSheet": "表格", + "SSE.Controllers.LeftMenu.textValues": "值", + "SSE.Controllers.LeftMenu.textWarning": "警告", + "SSE.Controllers.LeftMenu.textWithin": "內", + "SSE.Controllers.LeftMenu.textWorkbook": "工作簿", + "SSE.Controllers.LeftMenu.txtUntitled": "無標題", + "SSE.Controllers.LeftMenu.warnDownloadAs": "如果繼續以這種格式保存,則除文本外的所有功能都將丟失。
    確定要繼續嗎?", + "SSE.Controllers.Main.confirmMoveCellRange": "目標單元格範圍可以包含數據。繼續操作嗎?", + "SSE.Controllers.Main.confirmPutMergeRange": "源數據包含合併的單元格。
    在將它們粘貼到表中之前,它們已被合併。", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "標題行中的公式將被刪除並轉換為靜態文本。
    是否繼續?", + "SSE.Controllers.Main.convertationTimeoutText": "轉換逾時。", + "SSE.Controllers.Main.criticalErrorExtText": "按“確定”返回文檔列表。", + "SSE.Controllers.Main.criticalErrorTitle": "錯誤", + "SSE.Controllers.Main.downloadErrorText": "下載失敗", + "SSE.Controllers.Main.downloadTextText": "下載電子表格中...", + "SSE.Controllers.Main.downloadTitleText": "下載電子表格中", + "SSE.Controllers.Main.errNoDuplicates": "找不到重複的值。", + "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.errorCannotUngroup": "無法取消分組。要開始大綱,請選擇詳細信息行或列並將其分組。", + "SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "您無法在受保護的工作表使用這個指令,若要使用這個指令,請取消保護該工作表。
    您可能需要輸入密碼。", + "SSE.Controllers.Main.errorChangeArray": "您不能更改數組的一部分。", + "SSE.Controllers.Main.errorChangeFilteredRange": "這將更改工作表上的篩選範圍。
    要完成此任務,請刪除“自動篩選”。", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "嘗試更改的單元格或圖表位於受保護的工作表上。
    如要更改請把工作表解鎖。會有可能要修您輸入簿密碼。", + "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.errorDataValidate": "您輸入的值無效。
    用戶具有可以在此單元格中輸入的限制值。", + "SSE.Controllers.Main.errorDefaultMessage": "錯誤編號:%1", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "您正嘗試刪除包含鎖定單元格的欄。在工作表受保護的狀態下,含鎖定單元格是不能被刪除的。
    如要刪除含鎖定單元格請把工作表解鎖。會有可能要修您輸入簿密碼。", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "您正嘗試刪除包含鎖定單元格的行。在工作表受保護的狀態下,含鎖定單元格是不能被刪除的。
    如要刪除含鎖定單元格請把工作表解鎖。會有可能要修您輸入簿密碼。", + "SSE.Controllers.Main.errorEditingDownloadas": "在處理文檔期間發生錯誤。
    使用“下載為...”選項將文件備份副本保存到計算機硬碟驅動器中。", + "SSE.Controllers.Main.errorEditingSaveas": "使用文檔期間發生錯誤。
    使用“另存為...”選項將文件備份副本保存到計算機硬碟驅動器中。", + "SSE.Controllers.Main.errorEditView": "由於其中一些正在被編輯,因此目前無法編輯現有圖紙視圖,也無法創建新圖紙視圖。", + "SSE.Controllers.Main.errorEmailClient": "找不到電子郵件客戶端。", + "SSE.Controllers.Main.errorFilePassProtect": "該文件受密碼保護,無法打開。", + "SSE.Controllers.Main.errorFileRequest": "外部錯誤。
    文件請求錯誤。如果錯誤仍然存在,請聯繫支持。", + "SSE.Controllers.Main.errorFileSizeExceed": "此檔案超過這一主機限制的大小
    進一步資訊,請聯絡您的文件服務主機的管理者。", + "SSE.Controllers.Main.errorFileVKey": "外部錯誤。
    安全密鑰不正確。如果錯誤仍然存在,請聯繫支持。", + "SSE.Controllers.Main.errorFillRange": "無法填充所選的單元格範圍。
    所有合併的單元格必須具有相同的大小。", + "SSE.Controllers.Main.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦機硬碟中,或稍後再試。", + "SSE.Controllers.Main.errorFormulaName": "輸入的公式錯誤。
    使用了錯誤的公式名稱。", + "SSE.Controllers.Main.errorFormulaParsing": "解析公式時發生內部錯誤。", + "SSE.Controllers.Main.errorFrmlMaxLength": "公式的長度超過了8192個字符的限制。
    請對其進行編輯,然後重試。", + "SSE.Controllers.Main.errorFrmlMaxReference": "您無法輸入此公式,因為它具有太多的值,
    單元格引用和/或名稱。", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "公式中的文本值限制為255個字符。
    使用CONCATENATE函數或串聯運算符(&)。", + "SSE.Controllers.Main.errorFrmlWrongReferences": "該功能引用的表格不存在。
    請檢查數據,然後重試。", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "無法完成所選單元格範圍的操作。
    選擇一個範圍,以使第一表行位於同一行上,並且結果表與當前表重疊。", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "無法完成所選單元格範圍的操作。
    選擇一個不包含其他表的範圍。", + "SSE.Controllers.Main.errorInvalidRef": "輸入正確的選擇名稱或有效參考。", + "SSE.Controllers.Main.errorKeyEncrypt": "未知密鑰描述符", + "SSE.Controllers.Main.errorKeyExpire": "密鑰描述符已過期", + "SSE.Controllers.Main.errorLabledColumnsPivot": "若要創建數據透視表,請使用組織為帶有標籤列的列表的數據。", + "SSE.Controllers.Main.errorLoadingFont": "字體未加載。
    請聯繫文件服務器管理員。", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "位置或數據范圍的引用無效。", + "SSE.Controllers.Main.errorLockedAll": "該工作表已被另一位用戶鎖定,因此無法完成該操作。", + "SSE.Controllers.Main.errorLockedCellPivot": "您不能在數據透視表中更改數據。", + "SSE.Controllers.Main.errorLockedWorksheetRename": "該工作表目前無法重命名,因為它正在被其他用戶重命名", + "SSE.Controllers.Main.errorMaxPoints": "每個圖表的最大串聯點數為4096。", + "SSE.Controllers.Main.errorMoveRange": "無法更改合併單元格的一部分", + "SSE.Controllers.Main.errorMoveSlicerError": "無法將表切片器從一個工作簿複製到另一工作簿。
    通過選擇整個表和切片器,再試一次。", + "SSE.Controllers.Main.errorMultiCellFormula": "表中不允許使用多單元格數組公式。", + "SSE.Controllers.Main.errorNoDataToParse": "沒有選擇要解析的數據。", + "SSE.Controllers.Main.errorOpenWarning": "其中一個文件公式超過了8192個字符的限制。
    該公式已被刪除。", + "SSE.Controllers.Main.errorOperandExpected": "輸入的函數語法不正確。請檢查您是否缺少括號之一-'('或')'。", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "密碼錯誤。
    核實蓋帽封鎖鍵關閉並且是肯定使用正確資本化。", + "SSE.Controllers.Main.errorPasteMaxRange": "複製和貼上區域不匹配。
    請選擇一個大小相同的區域,或單擊行中的第一個單元格以粘貼複製的單元格。", + "SSE.Controllers.Main.errorPasteMultiSelect": "無法對多範圍選擇執行此操作。
    請選但範圍重新审理 。", + "SSE.Controllers.Main.errorPasteSlicerError": "表切片器無法從一個工作簿複製到另一工作簿。", + "SSE.Controllers.Main.errorPivotGroup": "不能進行分組", + "SSE.Controllers.Main.errorPivotOverlap": "數據透視表報表不能與表重疊。", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "数据透视表未使用基本数据保存。
    請使用《更新》按鍵更新報表。", + "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.errorSetPassword": "無法設定密碼。", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "位置引用無效,因單元格並非都在同一列或行中。
    請選同列或行中的單元格。", + "SSE.Controllers.Main.errorStockChart": "不正確的列次序。要建立一推疊圖表, 需要將此表的資料放置為以下的次序
    出價, 最高價, 最低價, 節標價。", + "SSE.Controllers.Main.errorToken": "文檔安全令牌的格式不正確。
    請與您的Document Server管理員聯繫。", + "SSE.Controllers.Main.errorTokenExpire": "文檔安全令牌已過期。
    請與您的Document Server管理員聯繫。", + "SSE.Controllers.Main.errorUnexpectedGuid": "外部錯誤。
    意外的GUID。如果錯誤仍然存在,請聯繫支持。", + "SSE.Controllers.Main.errorUpdateVersion": "文件版本已更改。該頁面將重新加載。", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet連接已恢復,文件版本已更改。
    在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。", + "SSE.Controllers.Main.errorUserDrop": "目前無法存取該文件。", + "SSE.Controllers.Main.errorUsersExceed": "超出了定價計劃所允許的用戶數量", + "SSE.Controllers.Main.errorViewerDisconnect": "連線失敗。您仍然可以查看該檔案,
    但在恢復連接並重新加載頁面之前將無法下載或列印該檔案。", + "SSE.Controllers.Main.errorWrongBracketsCount": "輸入的公式錯誤。
    使用了錯誤的括號。", + "SSE.Controllers.Main.errorWrongOperator": "輸入的公式中有錯誤。使用了錯誤的運算符。
    請更正錯誤。", + "SSE.Controllers.Main.errorWrongPassword": "密碼錯誤", + "SSE.Controllers.Main.errRemDuplicates": "找到和刪除的重複值:{0},剩餘的唯一值:{1}。", + "SSE.Controllers.Main.leavePageText": "您尚未在此電子表格中保存更改。點擊“停留在此頁面上”,然後點擊“保存”以保存它們。點擊“離開此頁面”以放棄所有未保存的更改。", + "SSE.Controllers.Main.leavePageTextOnClose": "該文檔中所有未保存的更改都將丟失。
    單擊“取消”,然後單擊“保存”以保存它們。單擊“確定”,放棄所有未保存的更改。", + "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.loadingDocumentTitleText": "加載電子表格", + "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.saveErrorTextDesktop": "無法保存或創建此文件。
    可能的原因是:
    1。該文件是只讀的。
    2。該文件正在由其他用戶編輯。
    3。磁碟已滿或損壞。", + "SSE.Controllers.Main.saveTextText": "保存電子表格...", + "SSE.Controllers.Main.saveTitleText": "保存電子表格", + "SSE.Controllers.Main.scriptLoadError": "連接速度太慢,某些組件無法加載。請重新加載頁面。", + "SSE.Controllers.Main.textAnonymous": "匿名", + "SSE.Controllers.Main.textApplyAll": "適用於所有方程式", + "SSE.Controllers.Main.textBuyNow": "訪問網站", + "SSE.Controllers.Main.textChangesSaved": "所有更改已保存", + "SSE.Controllers.Main.textClose": "關閉", + "SSE.Controllers.Main.textCloseTip": "點擊關閉提示", + "SSE.Controllers.Main.textConfirm": "確認", + "SSE.Controllers.Main.textContactUs": "聯絡銷售人員", + "SSE.Controllers.Main.textConvertEquation": "該方程式是使用不再受支持的方程式編輯器的舊版本創建的。要對其進行編輯,請將等式轉換為Office Math ML格式。
    立即轉換?", + "SSE.Controllers.Main.textCustomLoader": "請注意,根據許可條款,您無權更換裝載機。
    請聯繫我們的銷售部門以獲取報價。", + "SSE.Controllers.Main.textDisconnect": "失去網絡連接", + "SSE.Controllers.Main.textFillOtherRows": "填滿其他行", + "SSE.Controllers.Main.textFormulaFilledAllRows": "函數已填寫 {0} 有資料的行。正在填寫其他空白行,請稍待。", + "SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "函數已填寫了前 {0} 行。正在填寫其它行數,請稍待。", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "為了節省系統記憶體,函數只填寫了前 {0} 個有資料的行。此工作表裡還有 {1} 個有資料的行。您可以手動填寫。", + "SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "為了節省系統記憶體,函數只填寫了前 {0} 行。此工作表裡的其他行並無資料。", + "SSE.Controllers.Main.textGuest": "來賓帳戶", + "SSE.Controllers.Main.textHasMacros": "此檔案包含自動macros。
    是否要運行macros?", + "SSE.Controllers.Main.textLearnMore": "了解更多", + "SSE.Controllers.Main.textLoadingDocument": "加載電子表格", + "SSE.Controllers.Main.textLongName": "輸入少於128個字符的名稱。", + "SSE.Controllers.Main.textNeedSynchronize": "您有更新", + "SSE.Controllers.Main.textNo": "沒有", + "SSE.Controllers.Main.textNoLicenseTitle": "達到許可限制", + "SSE.Controllers.Main.textPaidFeature": "付費功能", + "SSE.Controllers.Main.textPleaseWait": "該操作可能花費比預期更多的時間。請耐心等待...", + "SSE.Controllers.Main.textReconnect": "連線恢復", + "SSE.Controllers.Main.textRemember": "記住我對所有文件的選擇", + "SSE.Controllers.Main.textRenameError": "使用者名稱無法留空。", + "SSE.Controllers.Main.textRenameLabel": "輸入合作名稱", + "SSE.Controllers.Main.textShape": "形狀", + "SSE.Controllers.Main.textStrict": "嚴格模式", + "SSE.Controllers.Main.textTryUndoRedo": "快速共同編輯模式禁用了“撤消/重做”功能。
    單擊“嚴格模式”按鈕切換到“嚴格共同編輯”模式以編輯文件而不會受到其他用戶的干擾,並且僅在保存後發送更改他們。您可以使用編輯器的“進階”設置在共同編輯模式之間切換。", + "SSE.Controllers.Main.textTryUndoRedoWarn": "在快速共同編輯模式下,撤消/重做功能被禁用。", + "SSE.Controllers.Main.textYes": "是", + "SSE.Controllers.Main.titleLicenseExp": "證件過期", + "SSE.Controllers.Main.titleServerVersion": "編輯器已更新", + "SSE.Controllers.Main.txtAccent": "強調", + "SSE.Controllers.Main.txtAll": "(所有)", + "SSE.Controllers.Main.txtArt": "在這輸入文字", + "SSE.Controllers.Main.txtBasicShapes": "基本形狀", + "SSE.Controllers.Main.txtBlank": "(空白)", + "SSE.Controllers.Main.txtButtons": "按鈕", + "SSE.Controllers.Main.txtByField": "第%1個,共%2個", + "SSE.Controllers.Main.txtCallouts": "標註", + "SSE.Controllers.Main.txtCharts": "圖表", + "SSE.Controllers.Main.txtClearFilter": "清除過濾器(Alt + C)", + "SSE.Controllers.Main.txtColLbls": "列標籤", + "SSE.Controllers.Main.txtColumn": "欄", + "SSE.Controllers.Main.txtConfidential": "機密", + "SSE.Controllers.Main.txtDate": "日期", + "SSE.Controllers.Main.txtDays": "天", + "SSE.Controllers.Main.txtDiagramTitle": "圖表標題", + "SSE.Controllers.Main.txtEditingMode": "設定編輯模式...", + "SSE.Controllers.Main.txtErrorLoadHistory": "歷史記錄加載失敗", + "SSE.Controllers.Main.txtFiguredArrows": "圖箭", + "SSE.Controllers.Main.txtFile": "檔案", + "SSE.Controllers.Main.txtGrandTotal": "累計", + "SSE.Controllers.Main.txtGroup": "進行分組", + "SSE.Controllers.Main.txtHours": "小時", + "SSE.Controllers.Main.txtLines": "線", + "SSE.Controllers.Main.txtMath": "數學", + "SSE.Controllers.Main.txtMinutes": "分鐘", + "SSE.Controllers.Main.txtMonths": "月", + "SSE.Controllers.Main.txtMultiSelect": "多選(Alt + S)", + "SSE.Controllers.Main.txtOr": "1%或2%", + "SSE.Controllers.Main.txtPage": "頁面", + "SSE.Controllers.Main.txtPageOf": "第%1頁,共%2頁", + "SSE.Controllers.Main.txtPages": "頁", + "SSE.Controllers.Main.txtPreparedBy": "編制", + "SSE.Controllers.Main.txtPrintArea": "列印區域", + "SSE.Controllers.Main.txtQuarter": "季度", + "SSE.Controllers.Main.txtQuarters": "季度", + "SSE.Controllers.Main.txtRectangles": "長方形", + "SSE.Controllers.Main.txtRow": "行", + "SSE.Controllers.Main.txtRowLbls": "行標籤", + "SSE.Controllers.Main.txtSeconds": "秒數", + "SSE.Controllers.Main.txtSeries": "系列", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "線路標註1(邊框和強調欄)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "線路標註2(邊框和強調欄)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "線路標註3(邊框和強調欄)", + "SSE.Controllers.Main.txtShape_accentCallout1": "線路標註1(強調欄)", + "SSE.Controllers.Main.txtShape_accentCallout2": "線路標註2(強調欄)", + "SSE.Controllers.Main.txtShape_accentCallout3": "線路標註3(強調欄)", + "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "後退或上一步按鈕", + "SSE.Controllers.Main.txtShape_actionButtonBeginning": "開始按鈕", + "SSE.Controllers.Main.txtShape_actionButtonBlank": "空白按鈕", + "SSE.Controllers.Main.txtShape_actionButtonDocument": "文件按鈕", + "SSE.Controllers.Main.txtShape_actionButtonEnd": "結束按鈕", + "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "前進或後退按鈕", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "幫助按鈕", + "SSE.Controllers.Main.txtShape_actionButtonHome": "首頁按鈕", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "信息按鈕", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "電影按鈕", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "返回按鈕", + "SSE.Controllers.Main.txtShape_actionButtonSound": "聲音按鈕", + "SSE.Controllers.Main.txtShape_arc": "弧", + "SSE.Controllers.Main.txtShape_bentArrow": "彎曲箭頭", + "SSE.Controllers.Main.txtShape_bentConnector5": "彎頭接頭", + "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "彎頭箭頭連接器", + "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "彎頭雙箭頭連接器", + "SSE.Controllers.Main.txtShape_bentUpArrow": "向上彎曲箭頭", + "SSE.Controllers.Main.txtShape_bevel": "斜角", + "SSE.Controllers.Main.txtShape_blockArc": "圓弧", + "SSE.Controllers.Main.txtShape_borderCallout1": "線路標註1", + "SSE.Controllers.Main.txtShape_borderCallout2": "線路標註2", + "SSE.Controllers.Main.txtShape_borderCallout3": "線路標註3", + "SSE.Controllers.Main.txtShape_bracePair": "雙括號", + "SSE.Controllers.Main.txtShape_callout1": "線路標註1(無邊框)", + "SSE.Controllers.Main.txtShape_callout2": "線路標註2(無邊框)", + "SSE.Controllers.Main.txtShape_callout3": "線路標註3(無邊框)", + "SSE.Controllers.Main.txtShape_can": "能夠", + "SSE.Controllers.Main.txtShape_chevron": "雪佛龍", + "SSE.Controllers.Main.txtShape_chord": "弦", + "SSE.Controllers.Main.txtShape_circularArrow": "圓形箭頭", + "SSE.Controllers.Main.txtShape_cloud": "雲端", + "SSE.Controllers.Main.txtShape_cloudCallout": "雲標註", + "SSE.Controllers.Main.txtShape_corner": "角", + "SSE.Controllers.Main.txtShape_cube": " 立方體", + "SSE.Controllers.Main.txtShape_curvedConnector3": "彎曲連接器", + "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "彎曲箭頭連接器", + "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "彎曲雙箭頭連接器", + "SSE.Controllers.Main.txtShape_curvedDownArrow": "彎曲的向下箭頭", + "SSE.Controllers.Main.txtShape_curvedLeftArrow": "彎曲的左箭頭", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "彎曲的右箭頭", + "SSE.Controllers.Main.txtShape_curvedUpArrow": "彎曲的向上箭頭", + "SSE.Controllers.Main.txtShape_decagon": "十邊形", + "SSE.Controllers.Main.txtShape_diagStripe": "斜條紋", + "SSE.Controllers.Main.txtShape_diamond": "鑽石", + "SSE.Controllers.Main.txtShape_dodecagon": "十二邊形", + "SSE.Controllers.Main.txtShape_donut": "甜甜圈", + "SSE.Controllers.Main.txtShape_doubleWave": "雙波", + "SSE.Controllers.Main.txtShape_downArrow": "下箭頭", + "SSE.Controllers.Main.txtShape_downArrowCallout": "向下箭頭標註", + "SSE.Controllers.Main.txtShape_ellipse": "橢圓", + "SSE.Controllers.Main.txtShape_ellipseRibbon": "彎下絲帶", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "向上彎曲絲帶", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "流程圖:替代過程", + "SSE.Controllers.Main.txtShape_flowChartCollate": "流程圖:整理", + "SSE.Controllers.Main.txtShape_flowChartConnector": "流程圖:連接器", + "SSE.Controllers.Main.txtShape_flowChartDecision": "流程圖:決策", + "SSE.Controllers.Main.txtShape_flowChartDelay": "流程圖:延遲", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "流程圖:顯示", + "SSE.Controllers.Main.txtShape_flowChartDocument": "流程圖:文件", + "SSE.Controllers.Main.txtShape_flowChartExtract": "流程圖:提取", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "流程圖:數據", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "流程圖:內部存儲", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "流程圖:磁碟", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "流程圖:直接存取存儲", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "流程圖:順序存取存儲", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "流程圖:手動輸入", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "流程圖:手動操作", + "SSE.Controllers.Main.txtShape_flowChartMerge": "流程圖:合併", + "SSE.Controllers.Main.txtShape_flowChartMultidocument": "流程圖:多文檔", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "流程圖:頁外連接器", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "流程圖:存儲的數據", + "SSE.Controllers.Main.txtShape_flowChartOr": "流程圖:或", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "流程圖:預定義流程", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "流程圖:準備", + "SSE.Controllers.Main.txtShape_flowChartProcess": "流程圖:流程", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "流程圖:卡", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "流程圖:穿孔紙帶", + "SSE.Controllers.Main.txtShape_flowChartSort": "流程圖:排序", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "流程圖:求和結點", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "流程圖:終結者", + "SSE.Controllers.Main.txtShape_foldedCorner": "折角", + "SSE.Controllers.Main.txtShape_frame": "框", + "SSE.Controllers.Main.txtShape_halfFrame": "半框", + "SSE.Controllers.Main.txtShape_heart": "心", + "SSE.Controllers.Main.txtShape_heptagon": "七邊形", + "SSE.Controllers.Main.txtShape_hexagon": "六邊形", + "SSE.Controllers.Main.txtShape_homePlate": "五角形", + "SSE.Controllers.Main.txtShape_horizontalScroll": "水平滾動", + "SSE.Controllers.Main.txtShape_irregularSeal1": "爆炸1", + "SSE.Controllers.Main.txtShape_irregularSeal2": "爆炸2", + "SSE.Controllers.Main.txtShape_leftArrow": "左箭頭", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "向左箭頭標註", + "SSE.Controllers.Main.txtShape_leftBrace": "左括號", + "SSE.Controllers.Main.txtShape_leftBracket": "左括號", + "SSE.Controllers.Main.txtShape_leftRightArrow": "左右箭頭", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "左右箭頭標註", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "左右上箭頭", + "SSE.Controllers.Main.txtShape_leftUpArrow": "左上箭頭", + "SSE.Controllers.Main.txtShape_lightningBolt": "閃電", + "SSE.Controllers.Main.txtShape_line": "線", + "SSE.Controllers.Main.txtShape_lineWithArrow": "箭頭", + "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "雙箭頭", + "SSE.Controllers.Main.txtShape_mathDivide": "分裂", + "SSE.Controllers.Main.txtShape_mathEqual": "等於", + "SSE.Controllers.Main.txtShape_mathMinus": "減去", + "SSE.Controllers.Main.txtShape_mathMultiply": "乘", + "SSE.Controllers.Main.txtShape_mathNotEqual": "不平等", + "SSE.Controllers.Main.txtShape_mathPlus": "加", + "SSE.Controllers.Main.txtShape_moon": "月亮", + "SSE.Controllers.Main.txtShape_noSmoking": "“否”符號", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "缺口右箭頭", + "SSE.Controllers.Main.txtShape_octagon": "八邊形", + "SSE.Controllers.Main.txtShape_parallelogram": "平行四邊形", + "SSE.Controllers.Main.txtShape_pentagon": "五角形", + "SSE.Controllers.Main.txtShape_pie": "餅", + "SSE.Controllers.Main.txtShape_plaque": "簽名", + "SSE.Controllers.Main.txtShape_plus": "加", + "SSE.Controllers.Main.txtShape_polyline1": "塗", + "SSE.Controllers.Main.txtShape_polyline2": "自由形式", + "SSE.Controllers.Main.txtShape_quadArrow": "四箭頭", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "四箭頭標註", + "SSE.Controllers.Main.txtShape_rect": "長方形", + "SSE.Controllers.Main.txtShape_ribbon": "下絨帶", + "SSE.Controllers.Main.txtShape_ribbon2": "上色帶", + "SSE.Controllers.Main.txtShape_rightArrow": "右箭頭", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "右箭頭標註", + "SSE.Controllers.Main.txtShape_rightBrace": "右括號", + "SSE.Controllers.Main.txtShape_rightBracket": "右括號", + "SSE.Controllers.Main.txtShape_round1Rect": "圓形單角矩形", + "SSE.Controllers.Main.txtShape_round2DiagRect": "圓斜角矩形", + "SSE.Controllers.Main.txtShape_round2SameRect": "圓同一邊角矩形", + "SSE.Controllers.Main.txtShape_roundRect": "圓角矩形", + "SSE.Controllers.Main.txtShape_rtTriangle": "直角三角形", + "SSE.Controllers.Main.txtShape_smileyFace": "笑臉", + "SSE.Controllers.Main.txtShape_snip1Rect": "剪斷單角矩形", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "剪裁對角線矩形", + "SSE.Controllers.Main.txtShape_snip2SameRect": "剪斷同一邊角矩形", + "SSE.Controllers.Main.txtShape_snipRoundRect": "剪斷和圓形單角矩形", + "SSE.Controllers.Main.txtShape_spline": "曲線", + "SSE.Controllers.Main.txtShape_star10": "十點星", + "SSE.Controllers.Main.txtShape_star12": "十二點星", + "SSE.Controllers.Main.txtShape_star16": "十六點星", + "SSE.Controllers.Main.txtShape_star24": "24點星", + "SSE.Controllers.Main.txtShape_star32": "32點星", + "SSE.Controllers.Main.txtShape_star4": "4點星", + "SSE.Controllers.Main.txtShape_star5": "5點星", + "SSE.Controllers.Main.txtShape_star6": "6點星", + "SSE.Controllers.Main.txtShape_star7": "7點星", + "SSE.Controllers.Main.txtShape_star8": "8點星", + "SSE.Controllers.Main.txtShape_stripedRightArrow": "條紋右箭頭", + "SSE.Controllers.Main.txtShape_sun": "太陽", + "SSE.Controllers.Main.txtShape_teardrop": "淚珠", + "SSE.Controllers.Main.txtShape_textRect": "文字框", + "SSE.Controllers.Main.txtShape_trapezoid": "梯形", + "SSE.Controllers.Main.txtShape_triangle": "三角形", + "SSE.Controllers.Main.txtShape_upArrow": "向上箭頭", + "SSE.Controllers.Main.txtShape_upArrowCallout": "向上箭頭標註", + "SSE.Controllers.Main.txtShape_upDownArrow": "上下箭頭", + "SSE.Controllers.Main.txtShape_uturnArrow": "掉頭箭頭", + "SSE.Controllers.Main.txtShape_verticalScroll": "垂直滾動", + "SSE.Controllers.Main.txtShape_wave": "波", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "橢圓形標註", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "矩形標註", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "圓角矩形標註", + "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.txtTable": "表格", + "SSE.Controllers.Main.txtTime": "時間", + "SSE.Controllers.Main.txtUnlock": "開鎖", + "SSE.Controllers.Main.txtUnlockRange": "範圍解鎖", + "SSE.Controllers.Main.txtUnlockRangeDescription": "如要改變範圍,請輸入密碼:", + "SSE.Controllers.Main.txtUnlockRangeWarning": "試圖改變的範圍受密碼保護。", + "SSE.Controllers.Main.txtValues": "值", + "SSE.Controllers.Main.txtXAxis": "X軸", + "SSE.Controllers.Main.txtYAxis": "Y軸", + "SSE.Controllers.Main.txtYears": "年", + "SSE.Controllers.Main.unknownErrorText": "未知錯誤。", + "SSE.Controllers.Main.unsupportedBrowserErrorText": "不支援您的瀏覽器", + "SSE.Controllers.Main.uploadDocExtMessage": "未知的文件格式。", + "SSE.Controllers.Main.uploadDocFileCountMessage": "沒有文件上傳。", + "SSE.Controllers.Main.uploadDocSizeMessage": "超出最大文檔大小限制。", + "SSE.Controllers.Main.uploadImageExtMessage": "圖片格式未知。", + "SSE.Controllers.Main.uploadImageFileCountMessage": "沒有上傳圖片。", + "SSE.Controllers.Main.uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。", + "SSE.Controllers.Main.uploadImageTextText": "正在上傳圖片...", + "SSE.Controllers.Main.uploadImageTitleText": "上載圖片", + "SSE.Controllers.Main.waitText": "請耐心等待...", + "SSE.Controllers.Main.warnBrowserIE9": "該應用程序在IE9上具有較低的功能。使用IE10或更高版本", + "SSE.Controllers.Main.warnBrowserZoom": "瀏覽器當前的縮放設置不受完全支持。請按Ctrl + 0重置為預設縮放。", + "SSE.Controllers.Main.warnLicenseExceeded": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。
    進一步訊息, 請聯繫您的管理者。", + "SSE.Controllers.Main.warnLicenseExp": "您的授權證已過期.
    請更新您的授權證並重新整理頁面。", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "授權過期
    您已沒有編輯文件功能的授權
    請與您的管理者聯繫。", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "授權證書需要更新
    您只有部分的文件編輯功能的存取權限
    請與您的管理者聯繫來取得完整的存取權限。", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。", + "SSE.Controllers.Main.warnNoLicense": "您的系統已經達到同時編輯連線的 %1 編輯者。只能以檢視模式開啟此文件。
    請聯繫 %1 銷售團隊來取得個人升級的需求。", + "SSE.Controllers.Main.warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。", + "SSE.Controllers.Main.warnProcessRightsChange": "您被拒絕編輯文件的權利。", + "SSE.Controllers.Print.strAllSheets": "所有工作表", + "SSE.Controllers.Print.textFirstCol": "第一欄", + "SSE.Controllers.Print.textFirstRow": "第一排", + "SSE.Controllers.Print.textFrozenCols": "固定列", + "SSE.Controllers.Print.textFrozenRows": "固定行", + "SSE.Controllers.Print.textInvalidRange": "錯誤!無效的單元格範圍", + "SSE.Controllers.Print.textNoRepeat": "不要重複", + "SSE.Controllers.Print.textRepeat": "重複...", + "SSE.Controllers.Print.textSelectRange": "選擇範圍", + "SSE.Controllers.Print.textWarning": "警告", + "SSE.Controllers.Print.txtCustom": "自訂", + "SSE.Controllers.Print.warnCheckMargings": "邊界錯誤", + "SSE.Controllers.Statusbar.errorLastSheet": "工作簿必須至少具有一個可見的工作表。", + "SSE.Controllers.Statusbar.errorRemoveSheet": "無法刪除工作表。", + "SSE.Controllers.Statusbar.strSheet": "表格", + "SSE.Controllers.Statusbar.textDisconnect": "連線失敗
    正在嘗試連線。請檢查網路連線設定。", + "SSE.Controllers.Statusbar.textSheetViewTip": "您處於“圖紙視圖”模式。過濾器和排序僅對您和仍處於此視圖的用戶可見。", + "SSE.Controllers.Statusbar.textSheetViewTipFilters": "您處於“圖紙視圖”模式。過濾器僅對您和仍處於此視圖的用戶可見。", + "SSE.Controllers.Statusbar.warnDeleteSheet": "所選的工作表可能包含數據。您確定要繼續嗎?", + "SSE.Controllers.Statusbar.zoomText": "放大{0}%", + "SSE.Controllers.Toolbar.confirmAddFontName": "您要保存的字體在當前設備上不可用。
    文本樣式將使用一種系統字體顯示,保存的字體將在可用時使用。
    要繼續嗎? ?", + "SSE.Controllers.Toolbar.errorComboSeries": "新增組合圖表需選兩個以上的數據系列。", + "SSE.Controllers.Toolbar.errorMaxRows": "錯誤!每個圖表的最大數據序列數為255", + "SSE.Controllers.Toolbar.errorStockChart": "不正確的列次序。要建立一推疊圖表, 需要將此表的資料放置為以下的次序
    出價, 最高價, 最低價, 節標價。", + "SSE.Controllers.Toolbar.textAccent": "強調", + "SSE.Controllers.Toolbar.textBracket": "括號", + "SSE.Controllers.Toolbar.textDirectional": "定向", + "SSE.Controllers.Toolbar.textFontSizeErr": "輸入的值不正確。
    請輸入1到409之間的數字值", + "SSE.Controllers.Toolbar.textFraction": "分數", + "SSE.Controllers.Toolbar.textFunction": "功能", + "SSE.Controllers.Toolbar.textIndicator": "指标", + "SSE.Controllers.Toolbar.textInsert": "插入", + "SSE.Controllers.Toolbar.textIntegral": "積分", + "SSE.Controllers.Toolbar.textLargeOperator": "大型運營商", + "SSE.Controllers.Toolbar.textLimitAndLog": "極限和對數", + "SSE.Controllers.Toolbar.textLongOperation": "運行時間長", + "SSE.Controllers.Toolbar.textMatrix": "矩陣", + "SSE.Controllers.Toolbar.textOperator": "經營者", + "SSE.Controllers.Toolbar.textPivot": "數據透視表", + "SSE.Controllers.Toolbar.textRadical": "激進單數", + "SSE.Controllers.Toolbar.textRating": "收視率", + "SSE.Controllers.Toolbar.textRecentlyUsed": "最近使用", + "SSE.Controllers.Toolbar.textScript": "腳本", + "SSE.Controllers.Toolbar.textShapes": "形狀", + "SSE.Controllers.Toolbar.textSymbols": "符號", + "SSE.Controllers.Toolbar.textWarning": "警告", + "SSE.Controllers.Toolbar.txtAccent_Accent": "尖銳", + "SSE.Controllers.Toolbar.txtAccent_ArrowD": "上方的左右箭頭", + "SSE.Controllers.Toolbar.txtAccent_ArrowL": "上方的向左箭頭", + "SSE.Controllers.Toolbar.txtAccent_ArrowR": "上方向右箭頭", + "SSE.Controllers.Toolbar.txtAccent_Bar": "槓", + "SSE.Controllers.Toolbar.txtAccent_BarBot": "底橫槓", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "橫槓", + "SSE.Controllers.Toolbar.txtAccent_BorderBox": "盒裝公式(帶佔位符)", + "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "盒裝公式(示例)", + "SSE.Controllers.Toolbar.txtAccent_Check": "檢查", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "底括號", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "大括號", + "SSE.Controllers.Toolbar.txtAccent_Custom_1": "向量A", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "帶橫線的ABC", + "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x X或y的橫槓", + "SSE.Controllers.Toolbar.txtAccent_DDDot": "三點", + "SSE.Controllers.Toolbar.txtAccent_DDot": "雙點", + "SSE.Controllers.Toolbar.txtAccent_Dot": "點", + "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "雙橫槓", + "SSE.Controllers.Toolbar.txtAccent_Grave": "墓", + "SSE.Controllers.Toolbar.txtAccent_GroupBot": "下面的分組字符", + "SSE.Controllers.Toolbar.txtAccent_GroupTop": "上面的分組字符", + "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "上方的向左魚叉", + "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "右上方的魚叉", + "SSE.Controllers.Toolbar.txtAccent_Hat": "帽子", + "SSE.Controllers.Toolbar.txtAccent_Smile": "布雷夫", + "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", + "SSE.Controllers.Toolbar.txtBracket_Angle": "括號", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "帶分隔符的括號", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "帶分隔符的括號", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "單括號", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "單括號", + "SSE.Controllers.Toolbar.txtBracket_Curve": "括號", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "帶分隔符的括號", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "單括號", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "單括號", + "SSE.Controllers.Toolbar.txtBracket_Custom_1": "案件(兩件條件)", + "SSE.Controllers.Toolbar.txtBracket_Custom_2": "案件(三件條件)", + "SSE.Controllers.Toolbar.txtBracket_Custom_3": "堆疊物件", + "SSE.Controllers.Toolbar.txtBracket_Custom_4": "堆疊物件", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "案件例子", + "SSE.Controllers.Toolbar.txtBracket_Custom_6": "二項式係數", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "二項式係數", + "SSE.Controllers.Toolbar.txtBracket_Line": "括號", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "單括號", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "單括號", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "括號", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "單括號", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "單括號", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "括號", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "單括號", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "單括號", + "SSE.Controllers.Toolbar.txtBracket_Round": "括號", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "帶分隔符的括號", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "單括號", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "單括號", + "SSE.Controllers.Toolbar.txtBracket_Square": "括號", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "括號", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "括號", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "單括號", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "單括號", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "括號", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "括號", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "單括號", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "單括號", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "括號", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "單括號", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "單括號", + "SSE.Controllers.Toolbar.txtDeleteCells": "刪除單元格", + "SSE.Controllers.Toolbar.txtExpand": "展開和排序", + "SSE.Controllers.Toolbar.txtExpandSort": "選擇項旁邊的數據將不會排序。您是否要擴展選擇範圍以包括相鄰數據,還是僅對當前選定的單元格進行排序?", + "SSE.Controllers.Toolbar.txtFractionDiagonal": "偏斜分數", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "微分", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "微分", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "微分", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "微分", + "SSE.Controllers.Toolbar.txtFractionHorizontal": "線性分數", + "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi超過2", + "SSE.Controllers.Toolbar.txtFractionSmall": "小分數", + "SSE.Controllers.Toolbar.txtFractionVertical": "堆積分數", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "反餘弦函數", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "雙曲餘弦函數", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "反正切函數", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "雙曲反正切函數", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "餘割函數反", + "SSE.Controllers.Toolbar.txtFunction_1_Csch": "雙曲反餘割函數", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "反割線功能", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "雙曲反正割函數", + "SSE.Controllers.Toolbar.txtFunction_1_Sin": "反正弦函數", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "雙曲反正弦函數", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "反正切函數", + "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "雙曲反正切函數", + "SSE.Controllers.Toolbar.txtFunction_Cos": "Cosine 函數", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "雙曲餘弦函數", + "SSE.Controllers.Toolbar.txtFunction_Cot": "Cotangent 函數", + "SSE.Controllers.Toolbar.txtFunction_Coth": "雙曲餘切函數", + "SSE.Controllers.Toolbar.txtFunction_Csc": "餘割函數", + "SSE.Controllers.Toolbar.txtFunction_Csch": "雙曲餘割函數", + "SSE.Controllers.Toolbar.txtFunction_Custom_1": "正弦波", + "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "SSE.Controllers.Toolbar.txtFunction_Custom_3": "切線公式", + "SSE.Controllers.Toolbar.txtFunction_Sec": "正割功能", + "SSE.Controllers.Toolbar.txtFunction_Sech": "雙曲正割函數", + "SSE.Controllers.Toolbar.txtFunction_Sin": "正弦函數", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "雙曲正弦函數", + "SSE.Controllers.Toolbar.txtFunction_Tan": "切線公式", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "雙曲正切函數", + "SSE.Controllers.Toolbar.txtInsertCells": "插入單元格", + "SSE.Controllers.Toolbar.txtIntegral": "積分", + "SSE.Controllers.Toolbar.txtIntegral_dtheta": "微分塞塔", + "SSE.Controllers.Toolbar.txtIntegral_dx": "差分 x", + "SSE.Controllers.Toolbar.txtIntegral_dy": "差分 y", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "積分", + "SSE.Controllers.Toolbar.txtIntegralDouble": "雙積分", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "雙積分", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "雙積分", + "SSE.Controllers.Toolbar.txtIntegralOriented": "輪廓積分", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "輪廓積分", + "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "表面積分", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "表面積分", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "表面積分", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "輪廓積分", + "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "體積積分", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "體積積分", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "體積積分", + "SSE.Controllers.Toolbar.txtIntegralSubSup": "積分", + "SSE.Controllers.Toolbar.txtIntegralTriple": "三重積分", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "三重積分", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "三重積分", + "SSE.Controllers.Toolbar.txtInvalidRange": "錯誤!無效的像元範圍", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "楔", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "楔", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "楔", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "楔", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "楔", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "聯產品", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "聯產品", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "聯產品", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "聯產品", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "聯產品", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "求和", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "求和", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "求和", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "產品", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "聯合", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "交叉點", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "交叉點", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "交叉點", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "交叉點", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "交叉點", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "產品", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "產品", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "產品", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "產品", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "產品", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "求和", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "求和", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "求和", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "求和", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "求和", + "SSE.Controllers.Toolbar.txtLargeOperator_Union": "聯合", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "聯合", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "聯合", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "聯合", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "聯合", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "限制例子", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "最大例子", + "SSE.Controllers.Toolbar.txtLimitLog_Lim": "限制", + "SSE.Controllers.Toolbar.txtLimitLog_Ln": "自然對數", + "SSE.Controllers.Toolbar.txtLimitLog_Log": "對數", + "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "對數", + "SSE.Controllers.Toolbar.txtLimitLog_Max": "最大", + "SSE.Controllers.Toolbar.txtLimitLog_Min": "最低", + "SSE.Controllers.Toolbar.txtLockSort": "您選材的比鄰有數據,可您更改權限不足。
    是否繼續當前選材?", + "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "帶括號的空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "帶括號的空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "帶括號的空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "帶括號的空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 空矩陣", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "基準點", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "中線點", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "對角點", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "垂直點", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "稀疏矩陣", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "稀疏矩陣", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 單位矩陣", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 單位矩陣", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 單位矩陣", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 單位矩陣", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "下方的左右箭頭", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "上方的左右箭頭", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "下方的向左箭頭", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "上方的向左箭頭", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "下方向右箭頭", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "上方向右箭頭", + "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "冒號相等", + "SSE.Controllers.Toolbar.txtOperator_Custom_1": "產量", + "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Delta 收益", + "SSE.Controllers.Toolbar.txtOperator_Definition": "等同於定義", + "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta 等於", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "下方的左右箭頭", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "上方的左右箭頭", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "下方的向左箭頭", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "上方的向左箭頭", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "下方向右箭頭", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "上方向右箭頭", + "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "等於 等於", + "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "負等於", + "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "加等於", + "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "測量者", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "激進", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "激進", + "SSE.Controllers.Toolbar.txtRadicalRoot_2": "平方根與度數", + "SSE.Controllers.Toolbar.txtRadicalRoot_3": "立方根", + "SSE.Controllers.Toolbar.txtRadicalRoot_n": "自由基度", + "SSE.Controllers.Toolbar.txtRadicalSqrt": "平方根", + "SSE.Controllers.Toolbar.txtScriptCustom_1": "腳本", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "腳本", + "SSE.Controllers.Toolbar.txtScriptCustom_3": "腳本", + "SSE.Controllers.Toolbar.txtScriptCustom_4": "腳本", + "SSE.Controllers.Toolbar.txtScriptSub": "下標", + "SSE.Controllers.Toolbar.txtScriptSubSup": "下標-上標", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "左下標-上標", + "SSE.Controllers.Toolbar.txtScriptSup": "上標", + "SSE.Controllers.Toolbar.txtSorting": "排序", + "SSE.Controllers.Toolbar.txtSortSelected": "排序已選擇項目", + "SSE.Controllers.Toolbar.txtSymbol_about": "大約", + "SSE.Controllers.Toolbar.txtSymbol_additional": "補充", + "SSE.Controllers.Toolbar.txtSymbol_aleph": "A", + "SSE.Controllers.Toolbar.txtSymbol_alpha": "Α", + "SSE.Controllers.Toolbar.txtSymbol_approx": "幾乎等於", + "SSE.Controllers.Toolbar.txtSymbol_ast": "星號運算符", + "SSE.Controllers.Toolbar.txtSymbol_beta": "貝塔", + "SSE.Controllers.Toolbar.txtSymbol_beth": "賭注", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "項目點操作者", + "SSE.Controllers.Toolbar.txtSymbol_cap": "交叉點", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "立方根", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "中線水平省略號", + "SSE.Controllers.Toolbar.txtSymbol_celsius": "攝氏度", + "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "SSE.Controllers.Toolbar.txtSymbol_cong": "大約等於", + "SSE.Controllers.Toolbar.txtSymbol_cup": "聯合", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "右下斜省略號", + "SSE.Controllers.Toolbar.txtSymbol_degree": "度", + "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "SSE.Controllers.Toolbar.txtSymbol_div": "分裂標誌", + "SSE.Controllers.Toolbar.txtSymbol_downarrow": "下箭頭", + "SSE.Controllers.Toolbar.txtSymbol_emptyset": "空組集", + "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "SSE.Controllers.Toolbar.txtSymbol_equals": "等於", + "SSE.Controllers.Toolbar.txtSymbol_equiv": "相同", + "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "SSE.Controllers.Toolbar.txtSymbol_exists": "存在", + "SSE.Controllers.Toolbar.txtSymbol_factorial": "階乘", + "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "華氏度", + "SSE.Controllers.Toolbar.txtSymbol_forall": "對所有人", + "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "SSE.Controllers.Toolbar.txtSymbol_geq": "大於或等於", + "SSE.Controllers.Toolbar.txtSymbol_gg": "比大得多", + "SSE.Controllers.Toolbar.txtSymbol_greater": "更佳", + "SSE.Controllers.Toolbar.txtSymbol_in": "元素", + "SSE.Controllers.Toolbar.txtSymbol_inc": "增量", + "SSE.Controllers.Toolbar.txtSymbol_infinity": "無限", + "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "SSE.Controllers.Toolbar.txtSymbol_lambda": "拉姆達", + "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "左箭頭", + "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "左右箭頭", + "SSE.Controllers.Toolbar.txtSymbol_leq": "小於或等於", + "SSE.Controllers.Toolbar.txtSymbol_less": "少於", + "SSE.Controllers.Toolbar.txtSymbol_ll": "遠遠少於", + "SSE.Controllers.Toolbar.txtSymbol_minus": "減去", + "SSE.Controllers.Toolbar.txtSymbol_mp": "減加", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "SSE.Controllers.Toolbar.txtSymbol_neq": "不等於", + "SSE.Controllers.Toolbar.txtSymbol_ni": "包含為成員", + "SSE.Controllers.Toolbar.txtSymbol_not": "不簽名", + "SSE.Controllers.Toolbar.txtSymbol_notexists": "不存在", + "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "SSE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "SSE.Controllers.Toolbar.txtSymbol_partial": "偏微分", + "SSE.Controllers.Toolbar.txtSymbol_percent": "百分比", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "SSE.Controllers.Toolbar.txtSymbol_plus": "加", + "SSE.Controllers.Toolbar.txtSymbol_pm": "加減", + "SSE.Controllers.Toolbar.txtSymbol_propto": "成比例", + "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "SSE.Controllers.Toolbar.txtSymbol_qdrt": "第四根", + "SSE.Controllers.Toolbar.txtSymbol_qed": "證明結束", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "右上斜省略號", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "右箭頭", + "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "激進標誌", + "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "SSE.Controllers.Toolbar.txtSymbol_therefore": "因此", + "SSE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "SSE.Controllers.Toolbar.txtSymbol_times": "乘法符號", + "SSE.Controllers.Toolbar.txtSymbol_uparrow": "向上箭頭", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", + "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon 變體", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi 變體", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Pi變體", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Rho變體", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma 變體", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Theta變體", + "SSE.Controllers.Toolbar.txtSymbol_vdots": "垂直省略號", + "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "表格風格深色", + "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "表格風格淺色", + "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "屌格風中階", + "SSE.Controllers.Toolbar.warnLongOperation": "您將要執行的操作可能需要花費大量時間才能完成。
    您確定要繼續嗎?", + "SSE.Controllers.Toolbar.warnMergeLostData": "只有左上角單元格中的數據會保留。
    繼續嗎?", + "SSE.Controllers.Viewport.textFreezePanes": "凍結窗格", + "SSE.Controllers.Viewport.textFreezePanesShadow": "顯示固定面版視窗的陰影", + "SSE.Controllers.Viewport.textHideFBar": "隱藏公式欄", + "SSE.Controllers.Viewport.textHideGridlines": "隱藏網格線", + "SSE.Controllers.Viewport.textHideHeadings": "隱藏標題", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "小數點分隔符", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "千位分隔符", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "用於識別數字數據的設置", + "SSE.Views.AdvancedSeparatorDialog.textQualifier": "文字識別符號", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "進階設定", + "SSE.Views.AdvancedSeparatorDialog.txtNone": "(空)", + "SSE.Views.AutoFilterDialog.btnCustomFilter": "自訂過濾", + "SSE.Views.AutoFilterDialog.textAddSelection": "將當前選擇添加到過濾器", + "SSE.Views.AutoFilterDialog.textEmptyItem": "{空白}", + "SSE.Views.AutoFilterDialog.textSelectAll": "全選", + "SSE.Views.AutoFilterDialog.textSelectAllResults": "選擇所有搜索結果", + "SSE.Views.AutoFilterDialog.textWarning": "警告", + "SSE.Views.AutoFilterDialog.txtAboveAve": "高於平均", + "SSE.Views.AutoFilterDialog.txtBegins": "開始於...", + "SSE.Views.AutoFilterDialog.txtBelowAve": "低於平均值", + "SSE.Views.AutoFilterDialog.txtBetween": "之間...", + "SSE.Views.AutoFilterDialog.txtClear": "清除", + "SSE.Views.AutoFilterDialog.txtContains": "包含...", + "SSE.Views.AutoFilterDialog.txtEmpty": "輸入單元格過濾器", + "SSE.Views.AutoFilterDialog.txtEnds": "以。。結束", + "SSE.Views.AutoFilterDialog.txtEquals": "等於...", + "SSE.Views.AutoFilterDialog.txtFilterCellColor": "按單元格顏色過濾", + "SSE.Views.AutoFilterDialog.txtFilterFontColor": "按字體顏色過濾", + "SSE.Views.AutoFilterDialog.txtGreater": "比...更大", + "SSE.Views.AutoFilterDialog.txtGreaterEquals": "大於或等於...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "標籤過濾器", + "SSE.Views.AutoFilterDialog.txtLess": "小於...", + "SSE.Views.AutoFilterDialog.txtLessEquals": "小於或等於...", + "SSE.Views.AutoFilterDialog.txtNotBegins": "不以...", + "SSE.Views.AutoFilterDialog.txtNotBetween": "不介於...", + "SSE.Views.AutoFilterDialog.txtNotContains": "不含...", + "SSE.Views.AutoFilterDialog.txtNotEnds": "不以結束...", + "SSE.Views.AutoFilterDialog.txtNotEquals": "不等於...", + "SSE.Views.AutoFilterDialog.txtNumFilter": "號碼過濾器", + "SSE.Views.AutoFilterDialog.txtReapply": "重新申請", + "SSE.Views.AutoFilterDialog.txtSortCellColor": "按單元格顏色排序", + "SSE.Views.AutoFilterDialog.txtSortFontColor": "按字體顏色排序", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "最高到最低排序", + "SSE.Views.AutoFilterDialog.txtSortLow2High": "從最低到最高排序", + "SSE.Views.AutoFilterDialog.txtSortOption": "更多排序選項...", + "SSE.Views.AutoFilterDialog.txtTextFilter": "文字過濾器", + "SSE.Views.AutoFilterDialog.txtTitle": "過濾器", + "SSE.Views.AutoFilterDialog.txtTop10": "前10名", + "SSE.Views.AutoFilterDialog.txtValueFilter": "值過濾器", + "SSE.Views.AutoFilterDialog.warnFilterError": "您必須在“值”區域中至少有一個字段才能應用值過濾器。", + "SSE.Views.AutoFilterDialog.warnNoSelected": "您必須選擇至少一個值", + "SSE.Views.CellEditor.textManager": "名稱管理員", + "SSE.Views.CellEditor.tipFormula": "插入功能", + "SSE.Views.CellRangeDialog.errorMaxRows": "錯誤!每個圖表的最大數據序列數為255", + "SSE.Views.CellRangeDialog.errorStockChart": "不正確的列次序。要建立一推疊圖表, 需要將此表的資料放置為以下的次序
    出價, 最高價, 最低價, 節標價。", + "SSE.Views.CellRangeDialog.txtEmpty": "這是必填欄", + "SSE.Views.CellRangeDialog.txtInvalidRange": "錯誤!無效的單元格範圍", + "SSE.Views.CellRangeDialog.txtTitle": "選擇數據范圍", + "SSE.Views.CellSettings.strShrink": "縮小以適合", + "SSE.Views.CellSettings.strWrap": "包覆文字", + "SSE.Views.CellSettings.textAngle": "角度", + "SSE.Views.CellSettings.textBackColor": "背景顏色", + "SSE.Views.CellSettings.textBackground": "背景顏色", + "SSE.Views.CellSettings.textBorderColor": "顏色", + "SSE.Views.CellSettings.textBorders": "邊框樣式", + "SSE.Views.CellSettings.textClearRule": "清除規則", + "SSE.Views.CellSettings.textColor": "填充顏色", + "SSE.Views.CellSettings.textColorScales": "色標", + "SSE.Views.CellSettings.textCondFormat": "條件格式", + "SSE.Views.CellSettings.textControl": "文字控制", + "SSE.Views.CellSettings.textDataBars": "數據欄", + "SSE.Views.CellSettings.textDirection": "方向", + "SSE.Views.CellSettings.textFill": "填入", + "SSE.Views.CellSettings.textForeground": "前景色", + "SSE.Views.CellSettings.textGradient": "漸變點", + "SSE.Views.CellSettings.textGradientColor": "顏色", + "SSE.Views.CellSettings.textGradientFill": "漸層填充", + "SSE.Views.CellSettings.textIndent": "縮排", + "SSE.Views.CellSettings.textItems": "項目", + "SSE.Views.CellSettings.textLinear": "線性的", + "SSE.Views.CellSettings.textManageRule": "管理規則", + "SSE.Views.CellSettings.textNewRule": "新槼則", + "SSE.Views.CellSettings.textNoFill": "沒有填充", + "SSE.Views.CellSettings.textOrientation": "文字方向", + "SSE.Views.CellSettings.textPattern": "模式", + "SSE.Views.CellSettings.textPatternFill": "模式", + "SSE.Views.CellSettings.textPosition": "位置", + "SSE.Views.CellSettings.textRadial": "徑向的", + "SSE.Views.CellSettings.textSelectBorders": "選擇您要更改上面選擇的應用樣式的邊框", + "SSE.Views.CellSettings.textSelection": "凍結當前選擇", + "SSE.Views.CellSettings.textThisPivot": "由此數據透視表", + "SSE.Views.CellSettings.textThisSheet": "由此工作表", + "SSE.Views.CellSettings.textThisTable": "由此表", + "SSE.Views.CellSettings.tipAddGradientPoint": "添加漸變點", + "SSE.Views.CellSettings.tipAll": "設置外邊界和所有內線", + "SSE.Views.CellSettings.tipBottom": "僅設置外底邊框", + "SSE.Views.CellSettings.tipDiagD": "設置對角向下邊框", + "SSE.Views.CellSettings.tipDiagU": "設置對角上邊界", + "SSE.Views.CellSettings.tipInner": "僅設置內線", + "SSE.Views.CellSettings.tipInnerHor": "僅設置水平內線", + "SSE.Views.CellSettings.tipInnerVert": "僅設置垂直內線", + "SSE.Views.CellSettings.tipLeft": "僅設置左外邊框", + "SSE.Views.CellSettings.tipNone": "設置無邊界", + "SSE.Views.CellSettings.tipOuter": "僅設置外部框線", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "刪除漸變點", + "SSE.Views.CellSettings.tipRight": "僅設置右外框", + "SSE.Views.CellSettings.tipTop": "僅設置外部頂部邊框", + "SSE.Views.ChartDataDialog.errorInFormula": "您輸入的公式有誤。", + "SSE.Views.ChartDataDialog.errorInvalidReference": "該引用無效。引用必須是一個打開的工作表。", + "SSE.Views.ChartDataDialog.errorMaxPoints": "每個圖表的最大串聯點數為4096。", + "SSE.Views.ChartDataDialog.errorMaxRows": "每個圖表的最大數據系列數為255。", + "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "該引用無效。標題,值,大小或數據標籤的引用必須是單個單元格,行或列。", + "SSE.Views.ChartDataDialog.errorNoValues": "要創建圖表,該系列必須至少包含一個值。", + "SSE.Views.ChartDataDialog.errorStockChart": "不正確的列次序。要建立一推疊圖表, 需要將此表的資料放置為以下的次序
    出價, 最高價, 最低價, 節標價。", + "SSE.Views.ChartDataDialog.textAdd": "新增", + "SSE.Views.ChartDataDialog.textCategory": "水平(類別)軸標籤", + "SSE.Views.ChartDataDialog.textData": "圖表數據範圍", + "SSE.Views.ChartDataDialog.textDelete": "移除", + "SSE.Views.ChartDataDialog.textDown": "下", + "SSE.Views.ChartDataDialog.textEdit": "編輯", + "SSE.Views.ChartDataDialog.textInvalidRange": "無效的單元格範圍", + "SSE.Views.ChartDataDialog.textSelectData": "選擇數據", + "SSE.Views.ChartDataDialog.textSeries": "圖例條目(系列)", + "SSE.Views.ChartDataDialog.textSwitch": "切換行/列", + "SSE.Views.ChartDataDialog.textTitle": "圖表數據", + "SSE.Views.ChartDataDialog.textUp": "上", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "您輸入的公式有誤。", + "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "該引用無效。引用必須是一個打開的工作表。", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "每個圖表的最大串聯點數為4096。", + "SSE.Views.ChartDataRangeDialog.errorMaxRows": "每個圖表的最大數據系列數為255。", + "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "該引用無效。標題,值,大小或數據標籤的引用必須是單個單元格,行或列。", + "SSE.Views.ChartDataRangeDialog.errorNoValues": "要創建圖表,該系列必須至少包含一個值。", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "不正確的列次序。要建立一推疊圖表, 需要將此表的資料放置為以下的次序
    出價, 最高價, 最低價, 節標價。", + "SSE.Views.ChartDataRangeDialog.textInvalidRange": "無效的單元格範圍", + "SSE.Views.ChartDataRangeDialog.textSelectData": "選擇數據", + "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "軸標範圍", + "SSE.Views.ChartDataRangeDialog.txtChoose": "選擇範圍", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "系列名稱", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "軸標籤", + "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "編輯系列", + "SSE.Views.ChartDataRangeDialog.txtValues": "值", + "SSE.Views.ChartDataRangeDialog.txtXValues": "X值", + "SSE.Views.ChartDataRangeDialog.txtYValues": "Y值", + "SSE.Views.ChartSettings.strLineWeight": "線寬", + "SSE.Views.ChartSettings.strSparkColor": "顏色", + "SSE.Views.ChartSettings.strTemplate": "樣板", + "SSE.Views.ChartSettings.textAdvanced": "顯示進階設定", + "SSE.Views.ChartSettings.textBorderSizeErr": "輸入的值不正確。
    請輸入0 pt至1584 pt之間的值。", + "SSE.Views.ChartSettings.textChangeType": "變更類型", + "SSE.Views.ChartSettings.textChartType": "更改圖表類型", + "SSE.Views.ChartSettings.textEditData": "編輯數據和位置", + "SSE.Views.ChartSettings.textFirstPoint": "第一點", + "SSE.Views.ChartSettings.textHeight": "高度", + "SSE.Views.ChartSettings.textHighPoint": "高點", + "SSE.Views.ChartSettings.textKeepRatio": "比例不變", + "SSE.Views.ChartSettings.textLastPoint": "最後一點", + "SSE.Views.ChartSettings.textLowPoint": "低點", + "SSE.Views.ChartSettings.textMarkers": "標記物", + "SSE.Views.ChartSettings.textNegativePoint": "負點", + "SSE.Views.ChartSettings.textRanges": "數據範圍", + "SSE.Views.ChartSettings.textSelectData": "選擇數據", + "SSE.Views.ChartSettings.textShow": "顯示", + "SSE.Views.ChartSettings.textSize": "大小", + "SSE.Views.ChartSettings.textStyle": "樣式", + "SSE.Views.ChartSettings.textType": "類型", + "SSE.Views.ChartSettings.textWidth": "寬度", + "SSE.Views.ChartSettingsDlg.errorMaxPoints": "錯誤!每個圖表的最大串聯點數為4096。", + "SSE.Views.ChartSettingsDlg.errorMaxRows": "錯誤!每個圖表的最大數據序列數為255", + "SSE.Views.ChartSettingsDlg.errorStockChart": "不正確的列次序。要建立一推疊圖表, 需要將此表的資料放置為以下的次序
    出價, 最高價, 最低價, 節標價。", + "SSE.Views.ChartSettingsDlg.textAbsolute": "不要移動或調整單元格的大小", + "SSE.Views.ChartSettingsDlg.textAlt": "替代文字", + "SSE.Views.ChartSettingsDlg.textAltDescription": "描述", + "SSE.Views.ChartSettingsDlg.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "SSE.Views.ChartSettingsDlg.textAltTitle": "標題", + "SSE.Views.ChartSettingsDlg.textAuto": "自動", + "SSE.Views.ChartSettingsDlg.textAutoEach": "每個自動", + "SSE.Views.ChartSettingsDlg.textAxisCrosses": "軸十字", + "SSE.Views.ChartSettingsDlg.textAxisOptions": "軸選項", + "SSE.Views.ChartSettingsDlg.textAxisPos": "軸位置", + "SSE.Views.ChartSettingsDlg.textAxisSettings": "軸設定", + "SSE.Views.ChartSettingsDlg.textAxisTitle": "標題", + "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "勾線之間", + "SSE.Views.ChartSettingsDlg.textBillions": "億", + "SSE.Views.ChartSettingsDlg.textBottom": "底部", + "SSE.Views.ChartSettingsDlg.textCategoryName": "分類名稱", + "SSE.Views.ChartSettingsDlg.textCenter": "中心", + "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "圖表元素和
    圖例", + "SSE.Views.ChartSettingsDlg.textChartTitle": "圖表標題", + "SSE.Views.ChartSettingsDlg.textCross": "交叉", + "SSE.Views.ChartSettingsDlg.textCustom": "自訂", + "SSE.Views.ChartSettingsDlg.textDataColumns": "在列中", + "SSE.Views.ChartSettingsDlg.textDataLabels": "數據標籤", + "SSE.Views.ChartSettingsDlg.textDataRange": "數據範圍", + "SSE.Views.ChartSettingsDlg.textDataRows": "成排", + "SSE.Views.ChartSettingsDlg.textDataSeries": "數據系列", + "SSE.Views.ChartSettingsDlg.textDisplayLegend": "顯示圖例", + "SSE.Views.ChartSettingsDlg.textEmptyCells": "隱藏和清空單元格", + "SSE.Views.ChartSettingsDlg.textEmptyLine": "用線連接數據點", + "SSE.Views.ChartSettingsDlg.textFit": "切合至寬度", + "SSE.Views.ChartSettingsDlg.textFixed": "固定", + "SSE.Views.ChartSettingsDlg.textFormat": "標記格式", + "SSE.Views.ChartSettingsDlg.textGaps": "縫隙", + "SSE.Views.ChartSettingsDlg.textGridLines": "網格線", + "SSE.Views.ChartSettingsDlg.textGroup": "組走勢圖", + "SSE.Views.ChartSettingsDlg.textHide": "隱藏", + "SSE.Views.ChartSettingsDlg.textHideAxis": "隱藏軸", + "SSE.Views.ChartSettingsDlg.textHigh": "高", + "SSE.Views.ChartSettingsDlg.textHorAxis": "橫軸", + "SSE.Views.ChartSettingsDlg.textHorAxisSec": "副横轴", + "SSE.Views.ChartSettingsDlg.textHorGrid": "水平網格線", + "SSE.Views.ChartSettingsDlg.textHorizontal": "水平", + "SSE.Views.ChartSettingsDlg.textHorTitle": "水平軸標題", + "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", + "SSE.Views.ChartSettingsDlg.textHundreds": "幾百個", + "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", + "SSE.Views.ChartSettingsDlg.textIn": "在", + "SSE.Views.ChartSettingsDlg.textInnerBottom": "內底", + "SSE.Views.ChartSettingsDlg.textInnerTop": "內頂", + "SSE.Views.ChartSettingsDlg.textInvalidRange": "錯誤!無效的單元格範圍", + "SSE.Views.ChartSettingsDlg.textLabelDist": "軸標距離", + "SSE.Views.ChartSettingsDlg.textLabelInterval": "標籤之間的間隔", + "SSE.Views.ChartSettingsDlg.textLabelOptions": "標籤選項", + "SSE.Views.ChartSettingsDlg.textLabelPos": "標籤位置", + "SSE.Views.ChartSettingsDlg.textLayout": "佈局", + "SSE.Views.ChartSettingsDlg.textLeft": "左", + "SSE.Views.ChartSettingsDlg.textLeftOverlay": "左側覆蓋", + "SSE.Views.ChartSettingsDlg.textLegendBottom": "底部", + "SSE.Views.ChartSettingsDlg.textLegendLeft": "左", + "SSE.Views.ChartSettingsDlg.textLegendPos": "說明", + "SSE.Views.ChartSettingsDlg.textLegendRight": "右", + "SSE.Views.ChartSettingsDlg.textLegendTop": "上方", + "SSE.Views.ChartSettingsDlg.textLines": "線", + "SSE.Views.ChartSettingsDlg.textLocationRange": "位置範圍", + "SSE.Views.ChartSettingsDlg.textLow": "低", + "SSE.Views.ChartSettingsDlg.textMajor": "重大", + "SSE.Views.ChartSettingsDlg.textMajorMinor": "主要和次要", + "SSE.Views.ChartSettingsDlg.textMajorType": "主要類型", + "SSE.Views.ChartSettingsDlg.textManual": "手動", + "SSE.Views.ChartSettingsDlg.textMarkers": "標記物", + "SSE.Views.ChartSettingsDlg.textMarksInterval": "標記之間的間隔", + "SSE.Views.ChartSettingsDlg.textMaxValue": "最大值", + "SSE.Views.ChartSettingsDlg.textMillions": "百萬", + "SSE.Views.ChartSettingsDlg.textMinor": "次要", + "SSE.Views.ChartSettingsDlg.textMinorType": "次要類", + "SSE.Views.ChartSettingsDlg.textMinValue": "最低值", + "SSE.Views.ChartSettingsDlg.textNextToAxis": "軸旁", + "SSE.Views.ChartSettingsDlg.textNone": "無", + "SSE.Views.ChartSettingsDlg.textNoOverlay": "無覆蓋", + "SSE.Views.ChartSettingsDlg.textOneCell": "移動但不調整單元格的大小", + "SSE.Views.ChartSettingsDlg.textOnTickMarks": "在勾標上", + "SSE.Views.ChartSettingsDlg.textOut": "外", + "SSE.Views.ChartSettingsDlg.textOuterTop": "外上", + "SSE.Views.ChartSettingsDlg.textOverlay": "覆蓋", + "SSE.Views.ChartSettingsDlg.textReverse": "值倒序", + "SSE.Views.ChartSettingsDlg.textReverseOrder": "相反的順序", + "SSE.Views.ChartSettingsDlg.textRight": "右", + "SSE.Views.ChartSettingsDlg.textRightOverlay": "右側覆蓋", + "SSE.Views.ChartSettingsDlg.textRotated": "已旋轉", + "SSE.Views.ChartSettingsDlg.textSameAll": "所有都一樣", + "SSE.Views.ChartSettingsDlg.textSelectData": "選擇數據", + "SSE.Views.ChartSettingsDlg.textSeparator": "數據標籤分隔符", + "SSE.Views.ChartSettingsDlg.textSeriesName": "系列名稱", + "SSE.Views.ChartSettingsDlg.textShow": "顯示", + "SSE.Views.ChartSettingsDlg.textShowAxis": "顯示軸", + "SSE.Views.ChartSettingsDlg.textShowBorders": "顯示圖表邊框", + "SSE.Views.ChartSettingsDlg.textShowData": "在隱藏的行和列中顯示數據", + "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "將空單元格顯示為", + "SSE.Views.ChartSettingsDlg.textShowGrid": "網格線", + "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "顯示軸", + "SSE.Views.ChartSettingsDlg.textShowValues": "顯示圖表值", + "SSE.Views.ChartSettingsDlg.textSingle": "單一走勢圖", + "SSE.Views.ChartSettingsDlg.textSmooth": "光滑", + "SSE.Views.ChartSettingsDlg.textSnap": "單元捕捉", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "走勢圖範圍", + "SSE.Views.ChartSettingsDlg.textStraight": "直行", + "SSE.Views.ChartSettingsDlg.textStyle": "樣式", + "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", + "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", + "SSE.Views.ChartSettingsDlg.textThousands": "千", + "SSE.Views.ChartSettingsDlg.textTickOptions": "勾號選項", + "SSE.Views.ChartSettingsDlg.textTitle": "圖表-進階設置", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "走勢圖-進階設置", + "SSE.Views.ChartSettingsDlg.textTop": "上方", + "SSE.Views.ChartSettingsDlg.textTrillions": "兆", + "SSE.Views.ChartSettingsDlg.textTwoCell": "移動並調整單元格大小", + "SSE.Views.ChartSettingsDlg.textType": "類型", + "SSE.Views.ChartSettingsDlg.textTypeData": "類型和數據", + "SSE.Views.ChartSettingsDlg.textTypeStyle": "圖表類型,樣式和
    數據範圍", + "SSE.Views.ChartSettingsDlg.textUnits": "顯示單位", + "SSE.Views.ChartSettingsDlg.textValue": "值", + "SSE.Views.ChartSettingsDlg.textVertAxis": "垂直軸", + "SSE.Views.ChartSettingsDlg.textVertAxisSec": "副纵轴", + "SSE.Views.ChartSettingsDlg.textVertGrid": "垂直網格線", + "SSE.Views.ChartSettingsDlg.textVertTitle": "垂直軸標題", + "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X軸標題", + "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y軸標題", + "SSE.Views.ChartSettingsDlg.textZero": "零", + "SSE.Views.ChartSettingsDlg.txtEmpty": "這是必填欄", + "SSE.Views.ChartTypeDialog.errorComboSeries": "新增組合圖表需選兩個以上的數據系列。", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "所選圖表類型需要現有圖表使用的輔助軸。 請選擇其他圖表類型。", + "SSE.Views.ChartTypeDialog.textSecondary": "副轴", + "SSE.Views.ChartTypeDialog.textSeries": "系列", + "SSE.Views.ChartTypeDialog.textStyle": "樣式", + "SSE.Views.ChartTypeDialog.textTitle": "圖表類型", + "SSE.Views.ChartTypeDialog.textType": "類型", + "SSE.Views.CreatePivotDialog.textDataRange": "源數據范圍", + "SSE.Views.CreatePivotDialog.textDestination": "選擇放置桌子的位置", + "SSE.Views.CreatePivotDialog.textExist": "現有工作表", + "SSE.Views.CreatePivotDialog.textInvalidRange": "無效的單元格範圍", + "SSE.Views.CreatePivotDialog.textNew": "新工作表", + "SSE.Views.CreatePivotDialog.textSelectData": "選擇數據", + "SSE.Views.CreatePivotDialog.textTitle": "創建數據透視表", + "SSE.Views.CreatePivotDialog.txtEmpty": "這是必填欄", + "SSE.Views.CreateSparklineDialog.textDataRange": "源數據范圍", + "SSE.Views.CreateSparklineDialog.textDestination": "選擇走勢圖掰位", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "無效的儲存格範圍", + "SSE.Views.CreateSparklineDialog.textSelectData": "選擇數據", + "SSE.Views.CreateSparklineDialog.textTitle": "創建走勢圖", + "SSE.Views.CreateSparklineDialog.txtEmpty": "這是必填欄", + "SSE.Views.DataTab.capBtnGroup": "群組", + "SSE.Views.DataTab.capBtnTextCustomSort": "自定義排序", + "SSE.Views.DataTab.capBtnTextDataValidation": "資料驗證", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "刪除重複項", + "SSE.Views.DataTab.capBtnTextToCol": "文字轉欄", + "SSE.Views.DataTab.capBtnUngroup": "解開組合", + "SSE.Views.DataTab.capDataFromText": "獲取數據", + "SSE.Views.DataTab.mniFromFile": "從本機TXT/CSV", + "SSE.Views.DataTab.mniFromUrl": "從TXT/CSV網址", + "SSE.Views.DataTab.textBelow": "詳細信息下方的摘要行", + "SSE.Views.DataTab.textClear": "輪廓清晰", + "SSE.Views.DataTab.textColumns": "取消分組列", + "SSE.Views.DataTab.textGroupColumns": "組列", + "SSE.Views.DataTab.textGroupRows": "組行", + "SSE.Views.DataTab.textRightOf": "詳細信息右側的摘要列", + "SSE.Views.DataTab.textRows": "取消分組行", + "SSE.Views.DataTab.tipCustomSort": "自定義排序", + "SSE.Views.DataTab.tipDataFromText": "從TXT/CSV檔獲取數據", + "SSE.Views.DataTab.tipDataValidation": "資料驗證", + "SSE.Views.DataTab.tipGroup": "單元格範圍", + "SSE.Views.DataTab.tipRemDuplicates": "從工作表中刪除重複的行", + "SSE.Views.DataTab.tipToColumns": "將單元格文本分成列", + "SSE.Views.DataTab.tipUngroup": "取消單元格範圍", + "SSE.Views.DataValidationDialog.errorFormula": "該值當前評估為錯誤。你要繼續嗎?", + "SSE.Views.DataValidationDialog.errorInvalid": "您為字段“ {0}”輸入的值無效。", + "SSE.Views.DataValidationDialog.errorInvalidDate": "您為字段“ {0}”輸入的日期無效。", + "SSE.Views.DataValidationDialog.errorInvalidList": "列表源必須是定界列表,或者是對單行或單列的引用。", + "SSE.Views.DataValidationDialog.errorInvalidTime": "您為字段“ {0}”輸入的時間無效。", + "SSE.Views.DataValidationDialog.errorMinGreaterMax": "“ {1}”字段必須大於或等於“ {0}”字段。", + "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "您必須在字段“ {0}”和字段“ {1}”中都輸入一個值。", + "SSE.Views.DataValidationDialog.errorMustEnterValue": "您必須在字段“ {0}”中輸入一個值。", + "SSE.Views.DataValidationDialog.errorNamedRange": "找不到您指定的命名範圍。", + "SSE.Views.DataValidationDialog.errorNegativeTextLength": "在條件“ {0}”中不能使用負值。", + "SSE.Views.DataValidationDialog.errorNotNumeric": "字段“ {0}”必須是數字值,數字表達式或引用包含數字值的單元格。", + "SSE.Views.DataValidationDialog.strError": "錯誤提示", + "SSE.Views.DataValidationDialog.strInput": "輸入信息", + "SSE.Views.DataValidationDialog.strSettings": "設定", + "SSE.Views.DataValidationDialog.textAlert": "警示", + "SSE.Views.DataValidationDialog.textAllow": "允許", + "SSE.Views.DataValidationDialog.textApply": "將這些更改應用於具有相同設置的所有其他單元格", + "SSE.Views.DataValidationDialog.textCellSelected": "選擇單元格後,顯示此輸入消息", + "SSE.Views.DataValidationDialog.textCompare": "相比於", + "SSE.Views.DataValidationDialog.textData": "數據", + "SSE.Views.DataValidationDialog.textEndDate": "結束日期", + "SSE.Views.DataValidationDialog.textEndTime": "時間結束", + "SSE.Views.DataValidationDialog.textError": "錯誤信息", + "SSE.Views.DataValidationDialog.textFormula": "配方", + "SSE.Views.DataValidationDialog.textIgnore": "忽略空白", + "SSE.Views.DataValidationDialog.textInput": "輸入信息", + "SSE.Views.DataValidationDialog.textMax": "最大", + "SSE.Views.DataValidationDialog.textMessage": "信息", + "SSE.Views.DataValidationDialog.textMin": "最低", + "SSE.Views.DataValidationDialog.textSelectData": "選擇數據", + "SSE.Views.DataValidationDialog.textShowDropDown": "在單元格中顯示下拉列表", + "SSE.Views.DataValidationDialog.textShowError": "輸入無效數據後顯示錯誤警報", + "SSE.Views.DataValidationDialog.textShowInput": "選擇單元格時顯示輸入消息", + "SSE.Views.DataValidationDialog.textSource": "來源", + "SSE.Views.DataValidationDialog.textStartDate": "開始日期", + "SSE.Views.DataValidationDialog.textStartTime": "開始時間", + "SSE.Views.DataValidationDialog.textStop": "停止", + "SSE.Views.DataValidationDialog.textStyle": "樣式", + "SSE.Views.DataValidationDialog.textTitle": "標題", + "SSE.Views.DataValidationDialog.textUserEnters": "當用戶輸入無效數據時,顯示此錯誤警報", + "SSE.Views.DataValidationDialog.txtAny": "任何值", + "SSE.Views.DataValidationDialog.txtBetween": "之間", + "SSE.Views.DataValidationDialog.txtDate": "日期", + "SSE.Views.DataValidationDialog.txtDecimal": "小數", + "SSE.Views.DataValidationDialog.txtElTime": "以經過時間", + "SSE.Views.DataValidationDialog.txtEndDate": "結束日期", + "SSE.Views.DataValidationDialog.txtEndTime": "時間結束", + "SSE.Views.DataValidationDialog.txtEqual": "等於", + "SSE.Views.DataValidationDialog.txtGreaterThan": "更佳", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "大於或等於", + "SSE.Views.DataValidationDialog.txtLength": "長度", + "SSE.Views.DataValidationDialog.txtLessThan": "少於", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "小於或等於", + "SSE.Views.DataValidationDialog.txtList": "清單", + "SSE.Views.DataValidationDialog.txtNotBetween": "不介於", + "SSE.Views.DataValidationDialog.txtNotEqual": "不等於", + "SSE.Views.DataValidationDialog.txtOther": "其它", + "SSE.Views.DataValidationDialog.txtStartDate": "開始日期", + "SSE.Views.DataValidationDialog.txtStartTime": "開始時間", + "SSE.Views.DataValidationDialog.txtTextLength": "文字長度", + "SSE.Views.DataValidationDialog.txtTime": "時間", + "SSE.Views.DataValidationDialog.txtWhole": "完整的號碼", + "SSE.Views.DigitalFilterDialog.capAnd": "和", + "SSE.Views.DigitalFilterDialog.capCondition1": "等於", + "SSE.Views.DigitalFilterDialog.capCondition10": "不以結束", + "SSE.Views.DigitalFilterDialog.capCondition11": "包含", + "SSE.Views.DigitalFilterDialog.capCondition12": "不含", + "SSE.Views.DigitalFilterDialog.capCondition2": "不等於", + "SSE.Views.DigitalFilterDialog.capCondition3": "大於", + "SSE.Views.DigitalFilterDialog.capCondition4": "大於或等於", + "SSE.Views.DigitalFilterDialog.capCondition5": "小於", + "SSE.Views.DigitalFilterDialog.capCondition6": "小於或等於", + "SSE.Views.DigitalFilterDialog.capCondition7": "開始於", + "SSE.Views.DigitalFilterDialog.capCondition8": "不以", + "SSE.Views.DigitalFilterDialog.capCondition9": "以。。結束", + "SSE.Views.DigitalFilterDialog.capOr": "或", + "SSE.Views.DigitalFilterDialog.textNoFilter": "沒有過濾器", + "SSE.Views.DigitalFilterDialog.textShowRows": "顯示行", + "SSE.Views.DigitalFilterDialog.textUse1": "採用 ?呈現任何單個字符", + "SSE.Views.DigitalFilterDialog.textUse2": "使用*表示任何系列字符", + "SSE.Views.DigitalFilterDialog.txtTitle": "自訂過濾器", + "SSE.Views.DocumentHolder.advancedImgText": "圖像進階設置", + "SSE.Views.DocumentHolder.advancedShapeText": "形狀進階設定", + "SSE.Views.DocumentHolder.advancedSlicerText": "切片器進階設置", + "SSE.Views.DocumentHolder.bottomCellText": "底部對齊", + "SSE.Views.DocumentHolder.bulletsText": "項目符和編號", + "SSE.Views.DocumentHolder.centerCellText": "中央對齊", + "SSE.Views.DocumentHolder.chartText": "圖表進階設置", + "SSE.Views.DocumentHolder.deleteColumnText": "欄", + "SSE.Views.DocumentHolder.deleteRowText": "行", + "SSE.Views.DocumentHolder.deleteTableText": "表格", + "SSE.Views.DocumentHolder.direct270Text": "向上旋轉文字", + "SSE.Views.DocumentHolder.direct90Text": "向下旋轉文字", + "SSE.Views.DocumentHolder.directHText": "水平", + "SSE.Views.DocumentHolder.directionText": "文字方向", + "SSE.Views.DocumentHolder.editChartText": "編輯資料", + "SSE.Views.DocumentHolder.editHyperlinkText": "編輯超連結", + "SSE.Views.DocumentHolder.insertColumnLeftText": "欄位以左", + "SSE.Views.DocumentHolder.insertColumnRightText": "欄位以右", + "SSE.Views.DocumentHolder.insertRowAboveText": "上行", + "SSE.Views.DocumentHolder.insertRowBelowText": "下行", + "SSE.Views.DocumentHolder.originalSizeText": "實際大小", + "SSE.Views.DocumentHolder.removeHyperlinkText": "刪除超連結", + "SSE.Views.DocumentHolder.selectColumnText": "整列", + "SSE.Views.DocumentHolder.selectDataText": "列數據", + "SSE.Views.DocumentHolder.selectRowText": "行", + "SSE.Views.DocumentHolder.selectTableText": "表格", + "SSE.Views.DocumentHolder.strDelete": "刪除簽名", + "SSE.Views.DocumentHolder.strDetails": "簽名細節", + "SSE.Views.DocumentHolder.strSetup": "簽名設置", + "SSE.Views.DocumentHolder.strSign": "簽名", + "SSE.Views.DocumentHolder.textAlign": "對齊", + "SSE.Views.DocumentHolder.textArrange": "安排", + "SSE.Views.DocumentHolder.textArrangeBack": "傳送到背景", + "SSE.Views.DocumentHolder.textArrangeBackward": "向後發送", + "SSE.Views.DocumentHolder.textArrangeForward": "向前帶進", + "SSE.Views.DocumentHolder.textArrangeFront": "移到前景", + "SSE.Views.DocumentHolder.textAverage": "平均", + "SSE.Views.DocumentHolder.textBullets": "項目符號", + "SSE.Views.DocumentHolder.textCount": "計數", + "SSE.Views.DocumentHolder.textCrop": "修剪", + "SSE.Views.DocumentHolder.textCropFill": "填入", + "SSE.Views.DocumentHolder.textCropFit": "切合", + "SSE.Views.DocumentHolder.textEditPoints": "編輯點", + "SSE.Views.DocumentHolder.textEntriesList": "從下拉列表中選擇", + "SSE.Views.DocumentHolder.textFlipH": "水平翻轉", + "SSE.Views.DocumentHolder.textFlipV": "垂直翻轉", + "SSE.Views.DocumentHolder.textFreezePanes": "凍結窗格", + "SSE.Views.DocumentHolder.textFromFile": "從檔案", + "SSE.Views.DocumentHolder.textFromStorage": "從存儲", + "SSE.Views.DocumentHolder.textFromUrl": "從 URL", + "SSE.Views.DocumentHolder.textListSettings": "清單設定", + "SSE.Views.DocumentHolder.textMacro": "指定巨集", + "SSE.Views.DocumentHolder.textMax": "最高", + "SSE.Views.DocumentHolder.textMin": "最低", + "SSE.Views.DocumentHolder.textMore": "更多功能", + "SSE.Views.DocumentHolder.textMoreFormats": "更多格式", + "SSE.Views.DocumentHolder.textNone": "無", + "SSE.Views.DocumentHolder.textNumbering": "編號", + "SSE.Views.DocumentHolder.textReplace": "取代圖片", + "SSE.Views.DocumentHolder.textRotate": "旋轉", + "SSE.Views.DocumentHolder.textRotate270": "逆時針旋轉90°", + "SSE.Views.DocumentHolder.textRotate90": "順時針旋轉90°", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "底部對齊", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "居中對齊", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "對齊左側", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "中央對齊", + "SSE.Views.DocumentHolder.textShapeAlignRight": "對齊右側", + "SSE.Views.DocumentHolder.textShapeAlignTop": "上方對齊", + "SSE.Views.DocumentHolder.textStdDev": "標準差", + "SSE.Views.DocumentHolder.textSum": "總和", + "SSE.Views.DocumentHolder.textUndo": "復原", + "SSE.Views.DocumentHolder.textUnFreezePanes": "取消凍結窗格", + "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.tipMarkersArrow": "箭頭項目符號", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "核取記號項目符號", + "SSE.Views.DocumentHolder.tipMarkersDash": "連字號項目符號", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "實心菱形項目符號", + "SSE.Views.DocumentHolder.tipMarkersFRound": "實心圓項目符號", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "實心方形項目符號", + "SSE.Views.DocumentHolder.tipMarkersHRound": "空心圓項目符號", + "SSE.Views.DocumentHolder.tipMarkersStar": "星星項目符號", + "SSE.Views.DocumentHolder.topCellText": "上方對齊", + "SSE.Views.DocumentHolder.txtAccounting": "會計", + "SSE.Views.DocumentHolder.txtAddComment": "增加留言", + "SSE.Views.DocumentHolder.txtAddNamedRange": "定義名稱", + "SSE.Views.DocumentHolder.txtArrange": "安排", + "SSE.Views.DocumentHolder.txtAscending": "上升", + "SSE.Views.DocumentHolder.txtAutoColumnWidth": "自動調整列寬", + "SSE.Views.DocumentHolder.txtAutoRowHeight": "自動調整行高", + "SSE.Views.DocumentHolder.txtClear": "清除", + "SSE.Views.DocumentHolder.txtClearAll": "全部", + "SSE.Views.DocumentHolder.txtClearComments": "評論", + "SSE.Views.DocumentHolder.txtClearFormat": "格式", + "SSE.Views.DocumentHolder.txtClearHyper": "超連結", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "清除選定的迷你圖組", + "SSE.Views.DocumentHolder.txtClearSparklines": "清除選定的迷你圖", + "SSE.Views.DocumentHolder.txtClearText": "文字", + "SSE.Views.DocumentHolder.txtColumn": "整列", + "SSE.Views.DocumentHolder.txtColumnWidth": "設置列寬", + "SSE.Views.DocumentHolder.txtCondFormat": "條件格式", + "SSE.Views.DocumentHolder.txtCopy": "複製", + "SSE.Views.DocumentHolder.txtCurrency": "幣別", + "SSE.Views.DocumentHolder.txtCustomColumnWidth": "自定列寬", + "SSE.Views.DocumentHolder.txtCustomRowHeight": "自定義行高", + "SSE.Views.DocumentHolder.txtCustomSort": "自定義排序", + "SSE.Views.DocumentHolder.txtCut": "剪下", + "SSE.Views.DocumentHolder.txtDate": "日期", + "SSE.Views.DocumentHolder.txtDelete": "刪除", + "SSE.Views.DocumentHolder.txtDescending": "降序", + "SSE.Views.DocumentHolder.txtDistribHor": "水平分佈", + "SSE.Views.DocumentHolder.txtDistribVert": "垂直分佈", + "SSE.Views.DocumentHolder.txtEditComment": "編輯評論", + "SSE.Views.DocumentHolder.txtFilter": "過濾器", + "SSE.Views.DocumentHolder.txtFilterCellColor": "按單元格顏色過濾", + "SSE.Views.DocumentHolder.txtFilterFontColor": "按字體顏色過濾", + "SSE.Views.DocumentHolder.txtFilterValue": "按選定單元格的值過濾", + "SSE.Views.DocumentHolder.txtFormula": "插入功能", + "SSE.Views.DocumentHolder.txtFraction": "分數", + "SSE.Views.DocumentHolder.txtGeneral": "一般", + "SSE.Views.DocumentHolder.txtGroup": "群組", + "SSE.Views.DocumentHolder.txtHide": "隱藏", + "SSE.Views.DocumentHolder.txtInsert": "插入", + "SSE.Views.DocumentHolder.txtInsHyperlink": "超連結", + "SSE.Views.DocumentHolder.txtNumber": "數字", + "SSE.Views.DocumentHolder.txtNumFormat": "數字格式", + "SSE.Views.DocumentHolder.txtPaste": "貼上", + "SSE.Views.DocumentHolder.txtPercentage": "百分比", + "SSE.Views.DocumentHolder.txtReapply": "重新申請", + "SSE.Views.DocumentHolder.txtRow": "整行", + "SSE.Views.DocumentHolder.txtRowHeight": "設置行高", + "SSE.Views.DocumentHolder.txtScientific": "科學的", + "SSE.Views.DocumentHolder.txtSelect": "選擇", + "SSE.Views.DocumentHolder.txtShiftDown": "下移單元格", + "SSE.Views.DocumentHolder.txtShiftLeft": "左移單元格", + "SSE.Views.DocumentHolder.txtShiftRight": "右移單元格", + "SSE.Views.DocumentHolder.txtShiftUp": "上移單元格", + "SSE.Views.DocumentHolder.txtShow": "顯示", + "SSE.Views.DocumentHolder.txtShowComment": "顯示評論", + "SSE.Views.DocumentHolder.txtSort": "分類", + "SSE.Views.DocumentHolder.txtSortCellColor": "所選單元格顏色在頂部", + "SSE.Views.DocumentHolder.txtSortFontColor": "所選字體顏色在頂部", + "SSE.Views.DocumentHolder.txtSparklines": "走勢圖", + "SSE.Views.DocumentHolder.txtText": "文字", + "SSE.Views.DocumentHolder.txtTextAdvanced": "段落進階設置", + "SSE.Views.DocumentHolder.txtTime": "時間", + "SSE.Views.DocumentHolder.txtUngroup": "解開組合", + "SSE.Views.DocumentHolder.txtWidth": "寬度", + "SSE.Views.DocumentHolder.vertAlignText": "垂直對齊", + "SSE.Views.FieldSettingsDialog.strLayout": "佈局", + "SSE.Views.FieldSettingsDialog.strSubtotals": "小計", + "SSE.Views.FieldSettingsDialog.textReport": "報表", + "SSE.Views.FieldSettingsDialog.textTitle": "欄位設定", + "SSE.Views.FieldSettingsDialog.txtAverage": "平均", + "SSE.Views.FieldSettingsDialog.txtBlank": "在每個項目之後插入空白行", + "SSE.Views.FieldSettingsDialog.txtBottom": "顯示在組的底部", + "SSE.Views.FieldSettingsDialog.txtCompact": "緊湊", + "SSE.Views.FieldSettingsDialog.txtCount": "計數", + "SSE.Views.FieldSettingsDialog.txtCountNums": "數數", + "SSE.Views.FieldSettingsDialog.txtCustomName": "自定義名稱", + "SSE.Views.FieldSettingsDialog.txtEmpty": "顯示沒有數據的項目", + "SSE.Views.FieldSettingsDialog.txtMax": "最高", + "SSE.Views.FieldSettingsDialog.txtMin": "最低", + "SSE.Views.FieldSettingsDialog.txtOutline": "大綱", + "SSE.Views.FieldSettingsDialog.txtProduct": "產品", + "SSE.Views.FieldSettingsDialog.txtRepeat": "在每一行重複項目標籤", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "顯示小計", + "SSE.Views.FieldSettingsDialog.txtSourceName": "來源名稱:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "標準差", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "標準差p", + "SSE.Views.FieldSettingsDialog.txtSum": "總和", + "SSE.Views.FieldSettingsDialog.txtSummarize": "小計的功能", + "SSE.Views.FieldSettingsDialog.txtTabular": "表格式的", + "SSE.Views.FieldSettingsDialog.txtTop": "顯示在群組頂部", + "SSE.Views.FieldSettingsDialog.txtVar": "Var", + "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", + "SSE.Views.FileMenu.btnBackCaption": "打開文件所在位置", + "SSE.Views.FileMenu.btnCloseMenuCaption": "關閉選單", + "SSE.Views.FileMenu.btnCreateNewCaption": "創建新的", + "SSE.Views.FileMenu.btnDownloadCaption": "下載為...", + "SSE.Views.FileMenu.btnExitCaption": "關閉", + "SSE.Views.FileMenu.btnFileOpenCaption": "開啟...", + "SSE.Views.FileMenu.btnHelpCaption": "幫助...", + "SSE.Views.FileMenu.btnHistoryCaption": "版本歷史", + "SSE.Views.FileMenu.btnInfoCaption": "電子表格信息...", + "SSE.Views.FileMenu.btnPrintCaption": "列印", + "SSE.Views.FileMenu.btnProtectCaption": "保護", + "SSE.Views.FileMenu.btnRecentFilesCaption": "打開最近...", + "SSE.Views.FileMenu.btnRenameCaption": "改名...", + "SSE.Views.FileMenu.btnReturnCaption": "返回至試算表", + "SSE.Views.FileMenu.btnRightsCaption": "存取權限...", + "SSE.Views.FileMenu.btnSaveAsCaption": "另存為", + "SSE.Views.FileMenu.btnSaveCaption": "儲存", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "另存為...", + "SSE.Views.FileMenu.btnSettingsCaption": "進階設定...", + "SSE.Views.FileMenu.btnToEditCaption": "編輯電子表格", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "空白表格", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "創建新的", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "套用", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "添加作者", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "添加文字", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "應用程式", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "作者", + "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "更改存取權限", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "評論", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "已建立", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "最後修改者", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "上一次更改", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "擁有者", + "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置", + "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "有權利的人", + "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主旨", + "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "標題", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "\n已上傳", + "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "更改存取權限", + "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "有權利的人", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "套用", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "開啟自動恢復", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "打開自動保存", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "共同編輯模式", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "其他用戶將立即看到您的更改", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "您需要先接受更改,然後才能看到它們", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "小數點分隔符", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "快", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "字體提示", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "儲存時同時上傳到伺服器(否則在文檔關閉時才上傳)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "公式語言", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "示例:SUM; MIN; MAX;COUNT", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "開啟評論顯示", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "巨集設定", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "剪切,複製和粘貼", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "粘貼內容時顯示“粘貼選項”按鈕", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "開啟R1C1樣式", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "區域設置", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "例:", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "打開顯示已解決的評論", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "分隔器", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "嚴格", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "介面主題", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "千位分隔符", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "測量單位", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "根據區域設置使用分隔符", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "預設縮放值", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "每10分鐘", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "每30分鐘", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "每5分鐘", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "每一小時", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "自動恢復", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "自動保存", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "已停用", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "儲存所有歷史版本到伺服器", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "每一分鐘", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "參考風格", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "白俄羅斯語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "保加利亞語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "加泰羅尼亞語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "預設緩存模式", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "公分", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "捷克語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "丹麥語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "德語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "希腊语", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "英語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "西班牙文", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "芬蘭語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "法文", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "匈牙利語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "印度尼西亞語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "吋", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "義大利文", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "日文", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "韓文", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "評論顯示", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "老撾語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "拉脫維亞語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "作為OS X", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "本機", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "挪威語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "荷蘭語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "拋光", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "點", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "葡萄牙語(巴西)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "葡萄牙語(葡萄牙)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "羅馬尼亞語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "俄語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "全部啟用", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "不用提示啟用全部巨集", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "斯洛伐克語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "斯洛文尼亞語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "全部停用", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "不用提示停用全部巨集", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "瑞典語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "土耳其文", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "烏克蘭文", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "越南語", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "顯示通知", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "以提示停用全部巨集", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "作為Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "中文", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "套用", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "字典語言", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "忽略大寫單詞", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "忽略帶數字的單詞", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "自動更正選項...", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "打樣", + "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "警告", + "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "帶密碼", + "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "保護電子表格", + "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "帶簽名", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "編輯電子表格", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "編輯將刪除電子表格中的簽名。
    確定要繼續嗎?", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "此電子表格已受密碼保護", + "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "該電子表格需要簽名。", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "有效簽名已添加到電子表格中。電子表格受到保護,無法編輯。", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "電子表格中的某些數字簽名無效或無法驗證。電子表格受到保護,無法編輯。", + "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "查看簽名", + "SSE.Views.FileMenuPanels.Settings.txtGeneral": "一般", + "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "頁面設置", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "拼字檢查", + "SSE.Views.FormatRulesEditDlg.fillColor": "填色", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "警告", + "SSE.Views.FormatRulesEditDlg.text2Scales": "2色標", + "SSE.Views.FormatRulesEditDlg.text3Scales": "3色標", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "所有邊界", + "SSE.Views.FormatRulesEditDlg.textAppearance": "條綫外貌", + "SSE.Views.FormatRulesEditDlg.textApply": "套用至範圍", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "自動", + "SSE.Views.FormatRulesEditDlg.textAxis": "軸", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "條綫方向", + "SSE.Views.FormatRulesEditDlg.textBold": "粗體", + "SSE.Views.FormatRulesEditDlg.textBorder": "邊框", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "邊界顔色", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "邊框樣式", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "底部邊框", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "無法設定條件格式。", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "儲存格中點", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "內部垂直邊框", + "SSE.Views.FormatRulesEditDlg.textClear": "清除", + "SSE.Views.FormatRulesEditDlg.textColor": "文字顏色", + "SSE.Views.FormatRulesEditDlg.textContext": "語境", + "SSE.Views.FormatRulesEditDlg.textCustom": "客制", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "對角向下邊界", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "對角向上邊界", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "輸入有效公式。", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "您輸入的公式未計算為數字、日期、時間或字符串。", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "輸入定值。", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "输入值未是數字、日期、時間或字符串。", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "{0}定值必須大於{1}定值。", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "輸入{0}于{1}之間的數字。", + "SSE.Views.FormatRulesEditDlg.textFill": "填入", + "SSE.Views.FormatRulesEditDlg.textFormat": "格式", + "SSE.Views.FormatRulesEditDlg.textFormula": "公式", + "SSE.Views.FormatRulesEditDlg.textGradient": "漸層", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "{0}{1}時而", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "{0}{1}時", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "當定值是", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "一或多個圖標範圍重叠。
    調整圖標數據范圍值,使范圍不重疊。", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "圖標樣式", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "內部邊界", + "SSE.Views.FormatRulesEditDlg.textInvalid": "無效數據範圍", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "錯誤!無效的單元格範圍", + "SSE.Views.FormatRulesEditDlg.textItalic": "斜體", + "SSE.Views.FormatRulesEditDlg.textItem": "項目", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "左到右", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "左邊框", + "SSE.Views.FormatRulesEditDlg.textLongBar": "最長的槓", + "SSE.Views.FormatRulesEditDlg.textMaximum": "最大", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "最大點", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "內部水平邊框", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "中點", + "SSE.Views.FormatRulesEditDlg.textMinimum": "最小", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "最低點", + "SSE.Views.FormatRulesEditDlg.textNegative": "負數", + "SSE.Views.FormatRulesEditDlg.textNewColor": "新增自訂顏色", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "無邊框", + "SSE.Views.FormatRulesEditDlg.textNone": "無", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "一或多個指定定值不是有效百分比。", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "{0}指定值不是有效百分比。", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "一或多個指定定值不是有效百分位。", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "{0}指定值不是有效百分位。", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "境外", + "SSE.Views.FormatRulesEditDlg.textPercent": "百分比", + "SSE.Views.FormatRulesEditDlg.textPercentile": "百分位數", + "SSE.Views.FormatRulesEditDlg.textPosition": "位置", + "SSE.Views.FormatRulesEditDlg.textPositive": "正數", + "SSE.Views.FormatRulesEditDlg.textPresets": "預設值", + "SSE.Views.FormatRulesEditDlg.textPreview": "預覽", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "無法使用相對引用設定色標、數據欄、圖標集的條件格式標準。", + "SSE.Views.FormatRulesEditDlg.textReverse": "顛倒圖標順序", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "右到左", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "右邊界", + "SSE.Views.FormatRulesEditDlg.textRule": "規則", + "SSE.Views.FormatRulesEditDlg.textSameAs": "于正相等", + "SSE.Views.FormatRulesEditDlg.textSelectData": "選擇數據", + "SSE.Views.FormatRulesEditDlg.textShortBar": "最短的槓", + "SSE.Views.FormatRulesEditDlg.textShowBar": "只顯示槓", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "只顯示圖標", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "這種類型的引用不能用於條件格式公式。
    請改引用為單单元格,或者設爲工作表公式如 =SUM(A1:B5)。", + "SSE.Views.FormatRulesEditDlg.textSolid": "固體", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "淘汰", + "SSE.Views.FormatRulesEditDlg.textSubscript": "下標", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "上標", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "上邊界", + "SSE.Views.FormatRulesEditDlg.textUnderline": "底線", + "SSE.Views.FormatRulesEditDlg.tipBorders": "邊框", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "數字格式", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "會計", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "貨幣", + "SSE.Views.FormatRulesEditDlg.txtDate": "日期", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "這是必填欄", + "SSE.Views.FormatRulesEditDlg.txtFraction": "分數", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "一般", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "沒有圖標", + "SSE.Views.FormatRulesEditDlg.txtNumber": "數字", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "百分比", + "SSE.Views.FormatRulesEditDlg.txtScientific": "科學的", + "SSE.Views.FormatRulesEditDlg.txtText": "文字", + "SSE.Views.FormatRulesEditDlg.txtTime": "時間", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "編輯格式規則", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "新的格式規則", + "SSE.Views.FormatRulesManagerDlg.guestText": "來賓帳戶", + "SSE.Views.FormatRulesManagerDlg.lockText": "已鎖定", + "SSE.Views.FormatRulesManagerDlg.text1Above": "高於平均值1個標準差", + "SSE.Views.FormatRulesManagerDlg.text1Below": "低於平均值1個標準差", + "SSE.Views.FormatRulesManagerDlg.text2Above": "高於平均值2個標準差", + "SSE.Views.FormatRulesManagerDlg.text2Below": "低於平均值2個標準差", + "SSE.Views.FormatRulesManagerDlg.text3Above": "高於平均值3個標準差", + "SSE.Views.FormatRulesManagerDlg.text3Below": "低於平均值3個標準差", + "SSE.Views.FormatRulesManagerDlg.textAbove": "高於平均", + "SSE.Views.FormatRulesManagerDlg.textApply": "套用至", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "儲存格定值開始於", + "SSE.Views.FormatRulesManagerDlg.textBelow": "低於平均值", + "SSE.Views.FormatRulesManagerDlg.textBetween": "在{0}與{1}之間", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "儲存格的值", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "分級色標", + "SSE.Views.FormatRulesManagerDlg.textContains": "儲存格定值包含", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "儲存格的值是空白的", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "儲存格中有錯誤", + "SSE.Views.FormatRulesManagerDlg.textDelete": "刪除", + "SSE.Views.FormatRulesManagerDlg.textDown": "規則往下移", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "重复值", + "SSE.Views.FormatRulesManagerDlg.textEdit": "編輯", + "SSE.Views.FormatRulesManagerDlg.textEnds": "儲存格定值結尾為", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "等於或高於平均", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "等於或低於平均", + "SSE.Views.FormatRulesManagerDlg.textFormat": "格式", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "圖標集", + "SSE.Views.FormatRulesManagerDlg.textNew": "新", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "不在{0}與{1}之間", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "儲存格定值無包含", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "儲存格的值不是空白的", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "儲存格沒有錯誤", + "SSE.Views.FormatRulesManagerDlg.textRules": "規則", + "SSE.Views.FormatRulesManagerDlg.textScope": "顯示格式規則", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "選擇數據", + "SSE.Views.FormatRulesManagerDlg.textSelection": "目前所選", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "這數據透視", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "此工作表", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "這個表格", + "SSE.Views.FormatRulesManagerDlg.textUnique": "獨特值", + "SSE.Views.FormatRulesManagerDlg.textUp": "規則網上移", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "該元素正在由另一個用戶編輯。", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "條件格式", + "SSE.Views.FormatSettingsDialog.textCategory": "分類", + "SSE.Views.FormatSettingsDialog.textDecimal": "小數", + "SSE.Views.FormatSettingsDialog.textFormat": "格式", + "SSE.Views.FormatSettingsDialog.textLinked": "鏈接到來源", + "SSE.Views.FormatSettingsDialog.textSeparator": "使用1000個分隔符", + "SSE.Views.FormatSettingsDialog.textSymbols": "符號", + "SSE.Views.FormatSettingsDialog.textTitle": "數字格式", + "SSE.Views.FormatSettingsDialog.txtAccounting": "會計", + "SSE.Views.FormatSettingsDialog.txtAs10": "作為十分之一(5/10)", + "SSE.Views.FormatSettingsDialog.txtAs100": "作為百分之一(50/100)", + "SSE.Views.FormatSettingsDialog.txtAs16": "作為十六分之一(8/16)", + "SSE.Views.FormatSettingsDialog.txtAs2": "作為一半(1/2)", + "SSE.Views.FormatSettingsDialog.txtAs4": "作為四分之一(2/4)", + "SSE.Views.FormatSettingsDialog.txtAs8": "八分之一(4/8)", + "SSE.Views.FormatSettingsDialog.txtCurrency": "幣別", + "SSE.Views.FormatSettingsDialog.txtCustom": "自訂", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "請仔細輸入自定義數字格式。電子表格編輯器不會檢查自定義格式中是否存在可能影響xlsx文件的錯誤。", + "SSE.Views.FormatSettingsDialog.txtDate": "日期", + "SSE.Views.FormatSettingsDialog.txtFraction": "分數", + "SSE.Views.FormatSettingsDialog.txtGeneral": "一般", + "SSE.Views.FormatSettingsDialog.txtNone": "無", + "SSE.Views.FormatSettingsDialog.txtNumber": "數字", + "SSE.Views.FormatSettingsDialog.txtPercentage": "百分比", + "SSE.Views.FormatSettingsDialog.txtSample": "樣品:", + "SSE.Views.FormatSettingsDialog.txtScientific": "科學的", + "SSE.Views.FormatSettingsDialog.txtText": "文字", + "SSE.Views.FormatSettingsDialog.txtTime": "時間", + "SSE.Views.FormatSettingsDialog.txtUpto1": "最多一位(1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "最多兩位數(12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "最多三位數(131/135)", + "SSE.Views.FormulaDialog.sDescription": "描述", + "SSE.Views.FormulaDialog.textGroupDescription": "選擇功能組", + "SSE.Views.FormulaDialog.textListDescription": "選擇功能", + "SSE.Views.FormulaDialog.txtRecommended": "推薦的", + "SSE.Views.FormulaDialog.txtSearch": "搜尋", + "SSE.Views.FormulaDialog.txtTitle": "插入功能", + "SSE.Views.FormulaTab.textAutomatic": "自動", + "SSE.Views.FormulaTab.textCalculateCurrentSheet": "計算當前工作表", + "SSE.Views.FormulaTab.textCalculateWorkbook": "計算工作簿", + "SSE.Views.FormulaTab.textManual": "手動", + "SSE.Views.FormulaTab.tipCalculate": "計算", + "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "計算整個工作簿", + "SSE.Views.FormulaTab.txtAdditional": "額外", + "SSE.Views.FormulaTab.txtAutosum": "自動求和", + "SSE.Views.FormulaTab.txtAutosumTip": "求和", + "SSE.Views.FormulaTab.txtCalculation": "計算", + "SSE.Views.FormulaTab.txtFormula": "功能", + "SSE.Views.FormulaTab.txtFormulaTip": "插入功能", + "SSE.Views.FormulaTab.txtMore": "更多功能", + "SSE.Views.FormulaTab.txtRecent": "最近使用", + "SSE.Views.FormulaWizard.textAny": "任何", + "SSE.Views.FormulaWizard.textArgument": "論據", + "SSE.Views.FormulaWizard.textFunction": "功能", + "SSE.Views.FormulaWizard.textFunctionRes": "功能結果", + "SSE.Views.FormulaWizard.textHelp": "有關此功能的幫助", + "SSE.Views.FormulaWizard.textLogical": "合邏輯", + "SSE.Views.FormulaWizard.textNoArgs": "該函數沒有參數", + "SSE.Views.FormulaWizard.textNumber": "數字", + "SSE.Views.FormulaWizard.textRef": "參考", + "SSE.Views.FormulaWizard.textText": "文字", + "SSE.Views.FormulaWizard.textTitle": "功能參數", + "SSE.Views.FormulaWizard.textValue": "公式結果", + "SSE.Views.HeaderFooterDialog.textAlign": "與頁面邊界對齊", + "SSE.Views.HeaderFooterDialog.textAll": "所有頁面", + "SSE.Views.HeaderFooterDialog.textBold": "粗體", + "SSE.Views.HeaderFooterDialog.textCenter": "中心", + "SSE.Views.HeaderFooterDialog.textColor": "文字顏色", + "SSE.Views.HeaderFooterDialog.textDate": "日期", + "SSE.Views.HeaderFooterDialog.textDiffFirst": "首頁不同", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "單/雙數頁不同", + "SSE.Views.HeaderFooterDialog.textEven": "雙數頁", + "SSE.Views.HeaderFooterDialog.textFileName": "檔案名稱", + "SSE.Views.HeaderFooterDialog.textFirst": "第一頁", + "SSE.Views.HeaderFooterDialog.textFooter": "頁尾", + "SSE.Views.HeaderFooterDialog.textHeader": "標頭", + "SSE.Views.HeaderFooterDialog.textInsert": "插入", + "SSE.Views.HeaderFooterDialog.textItalic": "斜體", + "SSE.Views.HeaderFooterDialog.textLeft": "左", + "SSE.Views.HeaderFooterDialog.textMaxError": "您輸入的文本字符串太長。減少使用的字符數。", + "SSE.Views.HeaderFooterDialog.textNewColor": "新增自訂顏色", + "SSE.Views.HeaderFooterDialog.textOdd": "奇數頁", + "SSE.Views.HeaderFooterDialog.textPageCount": "頁數", + "SSE.Views.HeaderFooterDialog.textPageNum": "頁碼", + "SSE.Views.HeaderFooterDialog.textPresets": "預設值", + "SSE.Views.HeaderFooterDialog.textRight": "右", + "SSE.Views.HeaderFooterDialog.textScale": "隨文件縮放", + "SSE.Views.HeaderFooterDialog.textSheet": "表格名稱", + "SSE.Views.HeaderFooterDialog.textStrikeout": "淘汰", + "SSE.Views.HeaderFooterDialog.textSubscript": "下標", + "SSE.Views.HeaderFooterDialog.textSuperscript": "上標", + "SSE.Views.HeaderFooterDialog.textTime": "時間", + "SSE.Views.HeaderFooterDialog.textTitle": "頁眉/頁腳設置", + "SSE.Views.HeaderFooterDialog.textUnderline": "底線", + "SSE.Views.HeaderFooterDialog.tipFontName": "字體", + "SSE.Views.HeaderFooterDialog.tipFontSize": "字體大小", + "SSE.Views.HyperlinkSettingsDialog.strDisplay": "顯示", + "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "連結至", + "SSE.Views.HyperlinkSettingsDialog.strRange": "範圍", + "SSE.Views.HyperlinkSettingsDialog.strSheet": "表格", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "複製", + "SSE.Views.HyperlinkSettingsDialog.textDefault": "選擇範圍", + "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "在此處輸入標題", + "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "在此處輸入連結", + "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "在此處輸入工具提示", + "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "外部連結", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "獲取連結", + "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "內部數據範圍", + "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "錯誤!無效的單元格範圍", + "SSE.Views.HyperlinkSettingsDialog.textNames": "定義名稱", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "選擇數據", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "工作表", + "SSE.Views.HyperlinkSettingsDialog.textTipText": "屏幕提示文字", + "SSE.Views.HyperlinkSettingsDialog.textTitle": "超連結設置", + "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "這是必填欄", + "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "此字段應為“ http://www.example.com”格式的網址", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "此欄位限2083字符", + "SSE.Views.ImageSettings.textAdvanced": "顯示進階設定", + "SSE.Views.ImageSettings.textCrop": "修剪", + "SSE.Views.ImageSettings.textCropFill": "填入", + "SSE.Views.ImageSettings.textCropFit": "切合", + "SSE.Views.ImageSettings.textCropToShape": "剪裁成圖形", + "SSE.Views.ImageSettings.textEdit": "編輯", + "SSE.Views.ImageSettings.textEditObject": "編輯物件", + "SSE.Views.ImageSettings.textFlip": "翻轉", + "SSE.Views.ImageSettings.textFromFile": "從檔案", + "SSE.Views.ImageSettings.textFromStorage": "從存儲", + "SSE.Views.ImageSettings.textFromUrl": "從 URL", + "SSE.Views.ImageSettings.textHeight": "高度", + "SSE.Views.ImageSettings.textHint270": "逆時針旋轉90°", + "SSE.Views.ImageSettings.textHint90": "順時針旋轉90°", + "SSE.Views.ImageSettings.textHintFlipH": "水平翻轉", + "SSE.Views.ImageSettings.textHintFlipV": "垂直翻轉", + "SSE.Views.ImageSettings.textInsert": "取代圖片", + "SSE.Views.ImageSettings.textKeepRatio": "比例不變", + "SSE.Views.ImageSettings.textOriginalSize": "實際大小", + "SSE.Views.ImageSettings.textRecentlyUsed": "最近使用", + "SSE.Views.ImageSettings.textRotate90": "旋轉90°", + "SSE.Views.ImageSettings.textRotation": "旋轉", + "SSE.Views.ImageSettings.textSize": "大小", + "SSE.Views.ImageSettings.textWidth": "寬度", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "不要移動或調整單元格的大小", + "SSE.Views.ImageSettingsAdvanced.textAlt": "替代文字", + "SSE.Views.ImageSettingsAdvanced.textAltDescription": "描述", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "SSE.Views.ImageSettingsAdvanced.textAltTitle": "標題", + "SSE.Views.ImageSettingsAdvanced.textAngle": "角度", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "已翻轉", + "SSE.Views.ImageSettingsAdvanced.textHorizontally": "水平地", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "移動但不調整單元格的大小", + "SSE.Views.ImageSettingsAdvanced.textRotation": "旋轉", + "SSE.Views.ImageSettingsAdvanced.textSnap": "單元捕捉", + "SSE.Views.ImageSettingsAdvanced.textTitle": "圖像-進階設置", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "移動並調整單元格大小", + "SSE.Views.ImageSettingsAdvanced.textVertically": "垂直", + "SSE.Views.LeftMenu.tipAbout": "關於", + "SSE.Views.LeftMenu.tipChat": "聊天", + "SSE.Views.LeftMenu.tipComments": "評論", + "SSE.Views.LeftMenu.tipFile": "檔案", + "SSE.Views.LeftMenu.tipPlugins": "外掛程式", + "SSE.Views.LeftMenu.tipSearch": "搜尋", + "SSE.Views.LeftMenu.tipSpellcheck": "拼字檢查", + "SSE.Views.LeftMenu.tipSupport": "反饋與支持", + "SSE.Views.LeftMenu.txtDeveloper": "開發者模式", + "SSE.Views.LeftMenu.txtLimit": "限制存取", + "SSE.Views.LeftMenu.txtTrial": "試用模式", + "SSE.Views.LeftMenu.txtTrialDev": "試用開發人員模式", + "SSE.Views.MacroDialog.textMacro": "宏名稱", + "SSE.Views.MacroDialog.textTitle": "指定巨集", + "SSE.Views.MainSettingsPrint.okButtonText": "儲存", + "SSE.Views.MainSettingsPrint.strBottom": "底部", + "SSE.Views.MainSettingsPrint.strLandscape": "橫向方向", + "SSE.Views.MainSettingsPrint.strLeft": "左", + "SSE.Views.MainSettingsPrint.strMargins": "邊界", + "SSE.Views.MainSettingsPrint.strPortrait": "直向方向", + "SSE.Views.MainSettingsPrint.strPrint": "列印", + "SSE.Views.MainSettingsPrint.strPrintTitles": "列印標題", + "SSE.Views.MainSettingsPrint.strRight": "右", + "SSE.Views.MainSettingsPrint.strTop": "上方", + "SSE.Views.MainSettingsPrint.textActualSize": "實際大小", + "SSE.Views.MainSettingsPrint.textCustom": "自訂", + "SSE.Views.MainSettingsPrint.textCustomOptions": "自訂選項", + "SSE.Views.MainSettingsPrint.textFitCols": "將所有列放在一頁上", + "SSE.Views.MainSettingsPrint.textFitPage": "一頁上適合紙張", + "SSE.Views.MainSettingsPrint.textFitRows": "將所有行放在一頁上", + "SSE.Views.MainSettingsPrint.textPageOrientation": "頁面方向", + "SSE.Views.MainSettingsPrint.textPageScaling": "縮放比例", + "SSE.Views.MainSettingsPrint.textPageSize": "頁面大小", + "SSE.Views.MainSettingsPrint.textPrintGrid": "列印網格線", + "SSE.Views.MainSettingsPrint.textPrintHeadings": "列印行和列標題", + "SSE.Views.MainSettingsPrint.textRepeat": "重複...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "在左側重複列", + "SSE.Views.MainSettingsPrint.textRepeatTop": "在頂部重複行", + "SSE.Views.MainSettingsPrint.textSettings": "的設定", + "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "由於其中一些正在被編輯,因此目前無法編輯現有命名範圍,也無法創建新的命名範圍。", + "SSE.Views.NamedRangeEditDlg.namePlaceholder": "定義名稱", + "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "警告", + "SSE.Views.NamedRangeEditDlg.strWorkbook": "工作簿", + "SSE.Views.NamedRangeEditDlg.textDataRange": "數據範圍", + "SSE.Views.NamedRangeEditDlg.textExistName": "錯誤!具有這樣名稱的範圍已經存在", + "SSE.Views.NamedRangeEditDlg.textInvalidName": "名稱必須以字母或下劃線開頭,並且不得包含無效字符。", + "SSE.Views.NamedRangeEditDlg.textInvalidRange": "錯誤!無效的像元範圍", + "SSE.Views.NamedRangeEditDlg.textIsLocked": "錯誤!該元素正在由另一個用戶編輯。", + "SSE.Views.NamedRangeEditDlg.textName": "名稱", + "SSE.Views.NamedRangeEditDlg.textReservedName": "單元格公式中已經引用了您要使用的名稱。請使用其他名稱。", + "SSE.Views.NamedRangeEditDlg.textScope": "範圍", + "SSE.Views.NamedRangeEditDlg.textSelectData": "選擇數據", + "SSE.Views.NamedRangeEditDlg.txtEmpty": "這是必填欄", + "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "編輯名稱", + "SSE.Views.NamedRangeEditDlg.txtTitleNew": "新名字", + "SSE.Views.NamedRangePasteDlg.textNames": "命名範圍", + "SSE.Views.NamedRangePasteDlg.txtTitle": "粘貼名稱", + "SSE.Views.NameManagerDlg.closeButtonText": "關閉", + "SSE.Views.NameManagerDlg.guestText": "來賓帳戶", + "SSE.Views.NameManagerDlg.lockText": "已鎖定", + "SSE.Views.NameManagerDlg.textDataRange": "數據範圍", + "SSE.Views.NameManagerDlg.textDelete": "刪除", + "SSE.Views.NameManagerDlg.textEdit": "編輯", + "SSE.Views.NameManagerDlg.textEmpty": "尚未創建命名範圍。
    創建至少一個命名範圍,它將出現在此字段中。", + "SSE.Views.NameManagerDlg.textFilter": "過濾器", + "SSE.Views.NameManagerDlg.textFilterAll": "全部", + "SSE.Views.NameManagerDlg.textFilterDefNames": "定義名稱", + "SSE.Views.NameManagerDlg.textFilterSheet": "範圍內的名稱", + "SSE.Views.NameManagerDlg.textFilterTableNames": "表名", + "SSE.Views.NameManagerDlg.textFilterWorkbook": "名稱適用於工作簿", + "SSE.Views.NameManagerDlg.textNew": "新", + "SSE.Views.NameManagerDlg.textnoNames": "找不到與您的過濾器匹配的命名範圍。", + "SSE.Views.NameManagerDlg.textRanges": "命名範圍", + "SSE.Views.NameManagerDlg.textScope": "範圍", + "SSE.Views.NameManagerDlg.textWorkbook": "工作簿", + "SSE.Views.NameManagerDlg.tipIsLocked": "該元素正在由另一個用戶編輯。", + "SSE.Views.NameManagerDlg.txtTitle": "名稱管理員", + "SSE.Views.NameManagerDlg.warnDelete": "確定要刪除此姓名: {0}?", + "SSE.Views.PageMarginsDialog.textBottom": "底部", + "SSE.Views.PageMarginsDialog.textLeft": "左", + "SSE.Views.PageMarginsDialog.textRight": "右", + "SSE.Views.PageMarginsDialog.textTitle": "邊界", + "SSE.Views.PageMarginsDialog.textTop": "上方", + "SSE.Views.ParagraphSettings.strLineHeight": "行間距", + "SSE.Views.ParagraphSettings.strParagraphSpacing": "段落間距", + "SSE.Views.ParagraphSettings.strSpacingAfter": "之後", + "SSE.Views.ParagraphSettings.strSpacingBefore": "之前", + "SSE.Views.ParagraphSettings.textAdvanced": "顯示進階設定", + "SSE.Views.ParagraphSettings.textAt": "在", + "SSE.Views.ParagraphSettings.textAtLeast": "至少", + "SSE.Views.ParagraphSettings.textAuto": "多項", + "SSE.Views.ParagraphSettings.textExact": "準確", + "SSE.Views.ParagraphSettings.txtAutoText": "自動", + "SSE.Views.ParagraphSettingsAdvanced.noTabs": "指定的標籤將出現在此字段中", + "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "全部大寫", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "雙刪除線", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "縮進", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "左", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "行間距", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "右", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "之後", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "之前", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "特殊", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "通過", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "字體", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "縮進和間距", + "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "小大寫", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "間距", + "SSE.Views.ParagraphSettingsAdvanced.strStrike": "刪除線", + "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "下標", + "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "上標", + "SSE.Views.ParagraphSettingsAdvanced.strTabs": "標籤", + "SSE.Views.ParagraphSettingsAdvanced.textAlign": "對齊", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "多項", + "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "字符間距", + "SSE.Views.ParagraphSettingsAdvanced.textDefault": "預設分頁", + "SSE.Views.ParagraphSettingsAdvanced.textEffects": "效果", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "準確", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "第一行", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "懸掛式", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "合理的", + "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(空)", + "SSE.Views.ParagraphSettingsAdvanced.textRemove": "移除", + "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "移除所有", + "SSE.Views.ParagraphSettingsAdvanced.textSet": "指定", + "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "中心", + "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "左", + "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "標籤位置", + "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "右", + "SSE.Views.ParagraphSettingsAdvanced.textTitle": "段落-進階設置", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "等於", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "不以結束", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "包含", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "不含", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "之間", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "不介於", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "不等於", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "大於", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "大於或等於", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "小於", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "小於或等於", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "開始於", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "不以", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "以。。結束", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "顯示標籤如下的項目:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "顯示以下項目:", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "採用 ?呈現任何單個字符", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "使用*表示任何系列字符", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "和", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "標籤過濾器", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "值過濾器", + "SSE.Views.PivotGroupDialog.textAuto": "自動", + "SSE.Views.PivotGroupDialog.textBy": "依照", + "SSE.Views.PivotGroupDialog.textDays": "天", + "SSE.Views.PivotGroupDialog.textEnd": "結束於", + "SSE.Views.PivotGroupDialog.textError": "欄位限數值。", + "SSE.Views.PivotGroupDialog.textGreaterError": "結尾編號必須大於起頭編號。", + "SSE.Views.PivotGroupDialog.textHour": "小時", + "SSE.Views.PivotGroupDialog.textMin": "分鐘", + "SSE.Views.PivotGroupDialog.textMonth": "月", + "SSE.Views.PivotGroupDialog.textNumDays": "天數", + "SSE.Views.PivotGroupDialog.textQuart": "季度", + "SSE.Views.PivotGroupDialog.textSec": "秒數", + "SSE.Views.PivotGroupDialog.textStart": "開始於", + "SSE.Views.PivotGroupDialog.textYear": "年", + "SSE.Views.PivotGroupDialog.txtTitle": "組合", + "SSE.Views.PivotSettings.textAdvanced": "顯示進階設定", + "SSE.Views.PivotSettings.textColumns": "欄", + "SSE.Views.PivotSettings.textFields": "選擇字段", + "SSE.Views.PivotSettings.textFilters": "過濾器", + "SSE.Views.PivotSettings.textRows": "行列", + "SSE.Views.PivotSettings.textValues": "值", + "SSE.Views.PivotSettings.txtAddColumn": "添加到列", + "SSE.Views.PivotSettings.txtAddFilter": "添加到過濾器", + "SSE.Views.PivotSettings.txtAddRow": "添加到行", + "SSE.Views.PivotSettings.txtAddValues": "增到值數", + "SSE.Views.PivotSettings.txtFieldSettings": "欄位設定", + "SSE.Views.PivotSettings.txtMoveBegin": "移至開頭", + "SSE.Views.PivotSettings.txtMoveColumn": "移至欄位", + "SSE.Views.PivotSettings.txtMoveDown": "下移", + "SSE.Views.PivotSettings.txtMoveEnd": "移至結尾", + "SSE.Views.PivotSettings.txtMoveFilter": "移至過濾器", + "SSE.Views.PivotSettings.txtMoveRow": "移至行列", + "SSE.Views.PivotSettings.txtMoveUp": "上移", + "SSE.Views.PivotSettings.txtMoveValues": "轉變為直", + "SSE.Views.PivotSettings.txtRemove": "移除欄位", + "SSE.Views.PivotSettingsAdvanced.strLayout": "名稱和佈局", + "SSE.Views.PivotSettingsAdvanced.textAlt": "替代文字", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "描述", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "標題", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "數據範圍", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "數據源", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "在報告過濾器區域中顯示字段", + "SSE.Views.PivotSettingsAdvanced.textDown": "下來,然後結束", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "累計", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "字段標題", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "錯誤!無效的單元格範圍", + "SSE.Views.PivotSettingsAdvanced.textOver": "結束,然後向下", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "選擇數據", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "顯示列", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "顯示行和列的字段標題", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "顯示行", + "SSE.Views.PivotSettingsAdvanced.textTitle": "數據透視表-進階設置", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "按列報告過濾器字段", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "每行報告過濾器字段", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "這是必填欄", + "SSE.Views.PivotSettingsAdvanced.txtName": "名稱", + "SSE.Views.PivotTable.capBlankRows": "空白行", + "SSE.Views.PivotTable.capGrandTotals": "累計", + "SSE.Views.PivotTable.capLayout": "報告格式", + "SSE.Views.PivotTable.capSubtotals": "小計", + "SSE.Views.PivotTable.mniBottomSubtotals": "在組底部顯示所有小計", + "SSE.Views.PivotTable.mniInsertBlankLine": "在每個項目之後插入空白行", + "SSE.Views.PivotTable.mniLayoutCompact": "以緊湊形式顯示", + "SSE.Views.PivotTable.mniLayoutNoRepeat": "不要重複所有商品標籤", + "SSE.Views.PivotTable.mniLayoutOutline": "以大綱形式顯示", + "SSE.Views.PivotTable.mniLayoutRepeat": "重複所有商品標籤", + "SSE.Views.PivotTable.mniLayoutTabular": "以表格形式顯示", + "SSE.Views.PivotTable.mniNoSubtotals": "不顯示小計", + "SSE.Views.PivotTable.mniOffTotals": "為行和列關閉", + "SSE.Views.PivotTable.mniOnColumnsTotals": "開啟僅適用於列", + "SSE.Views.PivotTable.mniOnRowsTotals": "僅限行", + "SSE.Views.PivotTable.mniOnTotals": "在行和列上", + "SSE.Views.PivotTable.mniRemoveBlankLine": "刪除每個項目後的空白行", + "SSE.Views.PivotTable.mniTopSubtotals": "在組頂部顯示所有小計", + "SSE.Views.PivotTable.textColBanded": "帶狀柱", + "SSE.Views.PivotTable.textColHeader": "列標題", + "SSE.Views.PivotTable.textRowBanded": "帶狀的行", + "SSE.Views.PivotTable.textRowHeader": "行標題", + "SSE.Views.PivotTable.tipCreatePivot": "插入樞紐分析表", + "SSE.Views.PivotTable.tipGrandTotals": "顯示或隱藏總計", + "SSE.Views.PivotTable.tipRefresh": "更新數據源中的信息", + "SSE.Views.PivotTable.tipSelect": "選擇整個數據透視表", + "SSE.Views.PivotTable.tipSubtotals": "顯示或隱藏小計", + "SSE.Views.PivotTable.txtCreate": "插入表格", + "SSE.Views.PivotTable.txtPivotTable": "數據透視表", + "SSE.Views.PivotTable.txtRefresh": "刷新", + "SSE.Views.PivotTable.txtSelect": "選擇", + "SSE.Views.PrintSettings.btnDownload": "保存並下載", + "SSE.Views.PrintSettings.btnPrint": "保存並列印", + "SSE.Views.PrintSettings.strBottom": "底部", + "SSE.Views.PrintSettings.strLandscape": "橫向方向", + "SSE.Views.PrintSettings.strLeft": "左", + "SSE.Views.PrintSettings.strMargins": "邊界", + "SSE.Views.PrintSettings.strPortrait": "直向方向", + "SSE.Views.PrintSettings.strPrint": "列印", + "SSE.Views.PrintSettings.strPrintTitles": "列印標題", + "SSE.Views.PrintSettings.strRight": "右", + "SSE.Views.PrintSettings.strShow": "顯示", + "SSE.Views.PrintSettings.strTop": "上方", + "SSE.Views.PrintSettings.textActualSize": "實際大小", + "SSE.Views.PrintSettings.textAllSheets": "所有工作表", + "SSE.Views.PrintSettings.textCurrentSheet": "當前工作表", + "SSE.Views.PrintSettings.textCustom": "自訂", + "SSE.Views.PrintSettings.textCustomOptions": "自訂選項", + "SSE.Views.PrintSettings.textFitCols": "將所有列放在一頁上", + "SSE.Views.PrintSettings.textFitPage": "一頁上適合紙張", + "SSE.Views.PrintSettings.textFitRows": "將所有行放在一頁上", + "SSE.Views.PrintSettings.textHideDetails": "隱藏細節", + "SSE.Views.PrintSettings.textIgnore": "忽略列印​​區域", + "SSE.Views.PrintSettings.textLayout": "佈局", + "SSE.Views.PrintSettings.textPageOrientation": "頁面方向", + "SSE.Views.PrintSettings.textPageScaling": "縮放比例", + "SSE.Views.PrintSettings.textPageSize": "頁面大小", + "SSE.Views.PrintSettings.textPrintGrid": "列印網格線", + "SSE.Views.PrintSettings.textPrintHeadings": "列印行和列標題", + "SSE.Views.PrintSettings.textPrintRange": "列印範圍", + "SSE.Views.PrintSettings.textRange": "範圍", + "SSE.Views.PrintSettings.textRepeat": "重複...", + "SSE.Views.PrintSettings.textRepeatLeft": "在左側重複列", + "SSE.Views.PrintSettings.textRepeatTop": "在頂部重複行", + "SSE.Views.PrintSettings.textSelection": "選拔", + "SSE.Views.PrintSettings.textSettings": "圖紙設置", + "SSE.Views.PrintSettings.textShowDetails": "顯示詳細資料", + "SSE.Views.PrintSettings.textShowGrid": "顯示網格線", + "SSE.Views.PrintSettings.textShowHeadings": "顯示行和列標題", + "SSE.Views.PrintSettings.textTitle": "列印設定", + "SSE.Views.PrintSettings.textTitlePDF": "PDF設置", + "SSE.Views.PrintTitlesDialog.textFirstCol": "第一欄", + "SSE.Views.PrintTitlesDialog.textFirstRow": "第一排", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "固定列", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "固定行", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "錯誤!無效的單元格範圍", + "SSE.Views.PrintTitlesDialog.textLeft": "在左側重複列", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "不要重複", + "SSE.Views.PrintTitlesDialog.textRepeat": "重複...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "選擇範圍", + "SSE.Views.PrintTitlesDialog.textTitle": "列印標題", + "SSE.Views.PrintTitlesDialog.textTop": "在頂部重複行", + "SSE.Views.PrintWithPreview.txtActualSize": "實際大小", + "SSE.Views.PrintWithPreview.txtAllSheets": "所有工作表", + "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "應用在所有工作表", + "SSE.Views.PrintWithPreview.txtBottom": "底部", + "SSE.Views.PrintWithPreview.txtCurrentSheet": "當前工作表", + "SSE.Views.PrintWithPreview.txtCustom": "自訂", + "SSE.Views.PrintWithPreview.txtCustomOptions": "自訂選項", + "SSE.Views.PrintWithPreview.txtEmptyTable": "表格是空白的,無法列印。", + "SSE.Views.PrintWithPreview.txtFitCols": "將所有列放在一頁上", + "SSE.Views.PrintWithPreview.txtFitPage": "一頁上適合紙張", + "SSE.Views.PrintWithPreview.txtFitRows": "將所有行放在一頁上", + "SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "網格線與標題", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "頁頭/頁尾設定", + "SSE.Views.PrintWithPreview.txtIgnore": "忽略列印​​區域", + "SSE.Views.PrintWithPreview.txtLandscape": "橫向方向", + "SSE.Views.PrintWithPreview.txtLeft": "左", + "SSE.Views.PrintWithPreview.txtMargins": "邊界", + "SSE.Views.PrintWithPreview.txtOf": "之 {0}", + "SSE.Views.PrintWithPreview.txtPage": "頁面", + "SSE.Views.PrintWithPreview.txtPageNumInvalid": "頁碼無效", + "SSE.Views.PrintWithPreview.txtPageOrientation": "頁面方向", + "SSE.Views.PrintWithPreview.txtPageSize": "頁面大小", + "SSE.Views.PrintWithPreview.txtPortrait": "直向方向", + "SSE.Views.PrintWithPreview.txtPrint": "列印", + "SSE.Views.PrintWithPreview.txtPrintGrid": "列印網格線", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "列印行和列標題", + "SSE.Views.PrintWithPreview.txtPrintRange": "列印範圍", + "SSE.Views.PrintWithPreview.txtPrintTitles": "列印標題", + "SSE.Views.PrintWithPreview.txtRepeat": "重複...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "在左側重複列", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "在頂部重複行", + "SSE.Views.PrintWithPreview.txtRight": "右", + "SSE.Views.PrintWithPreview.txtSave": "存檔", + "SSE.Views.PrintWithPreview.txtScaling": "縮放比例", + "SSE.Views.PrintWithPreview.txtSelection": "選項", + "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "工作表設定", + "SSE.Views.PrintWithPreview.txtSheet": "工作表:{0}", + "SSE.Views.PrintWithPreview.txtTop": "上方", + "SSE.Views.ProtectDialog.textExistName": "錯誤!有標題的範圍已存在", + "SSE.Views.ProtectDialog.textInvalidName": "範圍標準必須為字母起頭而只能包含數字、字母和空格。", + "SSE.Views.ProtectDialog.textInvalidRange": "錯誤!無效的單元格範圍", + "SSE.Views.ProtectDialog.textSelectData": "選擇數據", + "SSE.Views.ProtectDialog.txtAllow": "允許所有用戶:", + "SSE.Views.ProtectDialog.txtAutofilter": "使用自動分類", + "SSE.Views.ProtectDialog.txtDelCols": "列刪除", + "SSE.Views.ProtectDialog.txtDelRows": "行刪除", + "SSE.Views.ProtectDialog.txtEmpty": "這是必填欄", + "SSE.Views.ProtectDialog.txtFormatCells": "儲存格格式化", + "SSE.Views.ProtectDialog.txtFormatCols": "格式化柱列", + "SSE.Views.ProtectDialog.txtFormatRows": "格式化行列", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "確認密碼不相同", + "SSE.Views.ProtectDialog.txtInsCols": "插入欄列", + "SSE.Views.ProtectDialog.txtInsHyper": "插入超鏈接", + "SSE.Views.ProtectDialog.txtInsRows": "插入行列", + "SSE.Views.ProtectDialog.txtObjs": "編輯物件", + "SSE.Views.ProtectDialog.txtOptional": "可選的", + "SSE.Views.ProtectDialog.txtPassword": "密碼", + "SSE.Views.ProtectDialog.txtPivot": "使用PivotTable和PivotChart", + "SSE.Views.ProtectDialog.txtProtect": "保護", + "SSE.Views.ProtectDialog.txtRange": "範圍", + "SSE.Views.ProtectDialog.txtRangeName": "標題", + "SSE.Views.ProtectDialog.txtRepeat": "重複輸入密碼", + "SSE.Views.ProtectDialog.txtScen": "編輯場景", + "SSE.Views.ProtectDialog.txtSelLocked": "選鎖定儲存格", + "SSE.Views.ProtectDialog.txtSelUnLocked": "選無鎖定儲存格", + "SSE.Views.ProtectDialog.txtSheetDescription": "防止其他用戶編改,可限制其他用戶的編輯權限。", + "SSE.Views.ProtectDialog.txtSheetTitle": "保護工作表", + "SSE.Views.ProtectDialog.txtSort": "分類", + "SSE.Views.ProtectDialog.txtWarning": "警告:如果失去密碼,將無法取回。請妥善保存。", + "SSE.Views.ProtectDialog.txtWBDescription": "為防止其他用戶查看隱藏的工作表,添加、移動、刪除或隱藏工作表和重命名工作表,您可以設定密碼保護工作表架構。", + "SSE.Views.ProtectDialog.txtWBTitle": "保護工作簿結構", + "SSE.Views.ProtectRangesDlg.guestText": "來賓帳戶", + "SSE.Views.ProtectRangesDlg.lockText": "已鎖定", + "SSE.Views.ProtectRangesDlg.textDelete": "刪除", + "SSE.Views.ProtectRangesDlg.textEdit": "編輯", + "SSE.Views.ProtectRangesDlg.textEmpty": "無範圍可編輯", + "SSE.Views.ProtectRangesDlg.textNew": "新", + "SSE.Views.ProtectRangesDlg.textProtect": "保護工作表", + "SSE.Views.ProtectRangesDlg.textPwd": "密碼", + "SSE.Views.ProtectRangesDlg.textRange": "範圍", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "工作表受保護時,範圍為密碼解鎖。", + "SSE.Views.ProtectRangesDlg.textTitle": "標題", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "該元素正在由另一個用戶編輯。", + "SSE.Views.ProtectRangesDlg.txtEditRange": "編輯範圍", + "SSE.Views.ProtectRangesDlg.txtNewRange": "新範圍", + "SSE.Views.ProtectRangesDlg.txtNo": "沒有", + "SSE.Views.ProtectRangesDlg.txtTitle": "允許用戶範圍編輯", + "SSE.Views.ProtectRangesDlg.txtYes": "是", + "SSE.Views.ProtectRangesDlg.warnDelete": "確定要刪除此姓名: {0}?", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "欄", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "要刪除重複的值,請選擇一個或多個包含重複的列。", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "我的數據有標題", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "全選", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "刪除重複項", + "SSE.Views.RightMenu.txtCellSettings": "單元格設置", + "SSE.Views.RightMenu.txtChartSettings": "圖表設定", + "SSE.Views.RightMenu.txtImageSettings": "影像設定", + "SSE.Views.RightMenu.txtParagraphSettings": "段落設定", + "SSE.Views.RightMenu.txtPivotSettings": "數據透視表設置", + "SSE.Views.RightMenu.txtSettings": "一般設定", + "SSE.Views.RightMenu.txtShapeSettings": "形狀設定", + "SSE.Views.RightMenu.txtSignatureSettings": "簽名設置", + "SSE.Views.RightMenu.txtSlicerSettings": "切片器設置", + "SSE.Views.RightMenu.txtSparklineSettings": "走勢圖設置", + "SSE.Views.RightMenu.txtTableSettings": "表格設定", + "SSE.Views.RightMenu.txtTextArtSettings": "文字藝術設定", + "SSE.Views.ScaleDialog.textAuto": "自動", + "SSE.Views.ScaleDialog.textError": "輸入的值不正確。", + "SSE.Views.ScaleDialog.textFewPages": "頁", + "SSE.Views.ScaleDialog.textFitTo": "適合", + "SSE.Views.ScaleDialog.textHeight": "高度", + "SSE.Views.ScaleDialog.textManyPages": "頁", + "SSE.Views.ScaleDialog.textOnePage": "頁面", + "SSE.Views.ScaleDialog.textScaleTo": "縮放到", + "SSE.Views.ScaleDialog.textTitle": "比例設置", + "SSE.Views.ScaleDialog.textWidth": "寬度", + "SSE.Views.SetValueDialog.txtMaxText": "此字段的最大值為{0}", + "SSE.Views.SetValueDialog.txtMinText": "此字段的最小值為{0}", + "SSE.Views.ShapeSettings.strBackground": "背景顏色", + "SSE.Views.ShapeSettings.strChange": "更改自動形狀", + "SSE.Views.ShapeSettings.strColor": "顏色", + "SSE.Views.ShapeSettings.strFill": "填入", + "SSE.Views.ShapeSettings.strForeground": "前景色", + "SSE.Views.ShapeSettings.strPattern": "模式", + "SSE.Views.ShapeSettings.strShadow": "顯示陰影", + "SSE.Views.ShapeSettings.strSize": "大小", + "SSE.Views.ShapeSettings.strStroke": "筆鋒", + "SSE.Views.ShapeSettings.strTransparency": "透明度", + "SSE.Views.ShapeSettings.strType": "類型", + "SSE.Views.ShapeSettings.textAdvanced": "顯示進階設定", + "SSE.Views.ShapeSettings.textAngle": "角度", + "SSE.Views.ShapeSettings.textBorderSizeErr": "輸入的值不正確。
    請輸入0 pt至1584 pt之間的值。", + "SSE.Views.ShapeSettings.textColor": "填充顏色", + "SSE.Views.ShapeSettings.textDirection": "方向", + "SSE.Views.ShapeSettings.textEmptyPattern": "無模式", + "SSE.Views.ShapeSettings.textFlip": "翻轉", + "SSE.Views.ShapeSettings.textFromFile": "從檔案", + "SSE.Views.ShapeSettings.textFromStorage": "從存儲", + "SSE.Views.ShapeSettings.textFromUrl": "從 URL", + "SSE.Views.ShapeSettings.textGradient": "漸變點", + "SSE.Views.ShapeSettings.textGradientFill": "漸層填充", + "SSE.Views.ShapeSettings.textHint270": "逆時針旋轉90°", + "SSE.Views.ShapeSettings.textHint90": "順時針旋轉90°", + "SSE.Views.ShapeSettings.textHintFlipH": "水平翻轉", + "SSE.Views.ShapeSettings.textHintFlipV": "垂直翻轉", + "SSE.Views.ShapeSettings.textImageTexture": "圖片或紋理", + "SSE.Views.ShapeSettings.textLinear": "線性的", + "SSE.Views.ShapeSettings.textNoFill": "沒有填充", + "SSE.Views.ShapeSettings.textOriginalSize": "原始尺寸", + "SSE.Views.ShapeSettings.textPatternFill": "模式", + "SSE.Views.ShapeSettings.textPosition": "位置", + "SSE.Views.ShapeSettings.textRadial": "徑向的", + "SSE.Views.ShapeSettings.textRecentlyUsed": "最近使用", + "SSE.Views.ShapeSettings.textRotate90": "旋轉90°", + "SSE.Views.ShapeSettings.textRotation": "旋轉", + "SSE.Views.ShapeSettings.textSelectImage": "選擇圖片", + "SSE.Views.ShapeSettings.textSelectTexture": "選擇", + "SSE.Views.ShapeSettings.textStretch": "延伸", + "SSE.Views.ShapeSettings.textStyle": "樣式", + "SSE.Views.ShapeSettings.textTexture": "從紋理", + "SSE.Views.ShapeSettings.textTile": "磚瓦", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "添加漸變點", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "刪除漸變點", + "SSE.Views.ShapeSettings.txtBrownPaper": "牛皮紙", + "SSE.Views.ShapeSettings.txtCanvas": "帆布", + "SSE.Views.ShapeSettings.txtCarton": "紙箱", + "SSE.Views.ShapeSettings.txtDarkFabric": "深色面料", + "SSE.Views.ShapeSettings.txtGrain": "紋", + "SSE.Views.ShapeSettings.txtGranite": "花崗岩", + "SSE.Views.ShapeSettings.txtGreyPaper": "灰紙", + "SSE.Views.ShapeSettings.txtKnit": "編織", + "SSE.Views.ShapeSettings.txtLeather": "皮革", + "SSE.Views.ShapeSettings.txtNoBorders": "無線條", + "SSE.Views.ShapeSettings.txtPapyrus": "紙莎草紙", + "SSE.Views.ShapeSettings.txtWood": "木頭", + "SSE.Views.ShapeSettingsAdvanced.strColumns": "欄", + "SSE.Views.ShapeSettingsAdvanced.strMargins": "文字填充", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "不要移動或調整單元格的大小", + "SSE.Views.ShapeSettingsAdvanced.textAlt": "替代文字", + "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "描述", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "標題", + "SSE.Views.ShapeSettingsAdvanced.textAngle": "角度", + "SSE.Views.ShapeSettingsAdvanced.textArrows": "箭頭", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "自動調整", + "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "開始大小", + "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "開始樣式", + "SSE.Views.ShapeSettingsAdvanced.textBevel": "斜角", + "SSE.Views.ShapeSettingsAdvanced.textBottom": "底部", + "SSE.Views.ShapeSettingsAdvanced.textCapType": "Cap 類型", + "SSE.Views.ShapeSettingsAdvanced.textColNumber": "列數", + "SSE.Views.ShapeSettingsAdvanced.textEndSize": "端部尺寸", + "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "結束樣式", + "SSE.Views.ShapeSettingsAdvanced.textFlat": "平面", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "已翻轉", + "SSE.Views.ShapeSettingsAdvanced.textHeight": "高度", + "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "水平地", + "SSE.Views.ShapeSettingsAdvanced.textJoinType": "加入類型", + "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "比例不變", + "SSE.Views.ShapeSettingsAdvanced.textLeft": "左", + "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "線型", + "SSE.Views.ShapeSettingsAdvanced.textMiter": "Miter", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "移動但不調整單元格的大小", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "允許文字溢出形狀", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "調整形狀以適合文本", + "SSE.Views.ShapeSettingsAdvanced.textRight": "右", + "SSE.Views.ShapeSettingsAdvanced.textRotation": "旋轉", + "SSE.Views.ShapeSettingsAdvanced.textRound": "圓", + "SSE.Views.ShapeSettingsAdvanced.textSize": "大小", + "SSE.Views.ShapeSettingsAdvanced.textSnap": "單元捕捉", + "SSE.Views.ShapeSettingsAdvanced.textSpacing": "欄之前的距離", + "SSE.Views.ShapeSettingsAdvanced.textSquare": "正方形", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "文字框", + "SSE.Views.ShapeSettingsAdvanced.textTitle": "形狀 - 進階設定", + "SSE.Views.ShapeSettingsAdvanced.textTop": "上方", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "移動並調整單元格大小", + "SSE.Views.ShapeSettingsAdvanced.textVertically": "垂直", + "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "重量和箭頭", + "SSE.Views.ShapeSettingsAdvanced.textWidth": "寬度", + "SSE.Views.SignatureSettings.notcriticalErrorTitle": "警告", + "SSE.Views.SignatureSettings.strDelete": "刪除簽名", + "SSE.Views.SignatureSettings.strDetails": "簽名細節", + "SSE.Views.SignatureSettings.strInvalid": "無效的簽名", + "SSE.Views.SignatureSettings.strRequested": "要求的簽名", + "SSE.Views.SignatureSettings.strSetup": "簽名設置", + "SSE.Views.SignatureSettings.strSign": "簽名", + "SSE.Views.SignatureSettings.strSignature": "簽名", + "SSE.Views.SignatureSettings.strSigner": "簽名者", + "SSE.Views.SignatureSettings.strValid": "有效簽名", + "SSE.Views.SignatureSettings.txtContinueEditing": "仍要編輯", + "SSE.Views.SignatureSettings.txtEditWarning": "編輯將刪除電子表格中的簽名。
    確定要繼續嗎?", + "SSE.Views.SignatureSettings.txtRemoveWarning": "確定移除此簽名?
    這動作無法復原.", + "SSE.Views.SignatureSettings.txtRequestedSignatures": "該電子表格需要簽名。", + "SSE.Views.SignatureSettings.txtSigned": "有效簽名已添加到電子表格中。電子表格受到保護,無法編輯。", + "SSE.Views.SignatureSettings.txtSignedInvalid": "電子表格中的某些數字簽名無效或無法驗證。電子表格受到保護,無法編輯。", + "SSE.Views.SlicerAddDialog.textColumns": "欄", + "SSE.Views.SlicerAddDialog.txtTitle": "插入切片機", + "SSE.Views.SlicerSettings.strHideNoData": "隱藏沒有數據的項目", + "SSE.Views.SlicerSettings.strIndNoData": "直觀地指示沒有數據的項目", + "SSE.Views.SlicerSettings.strShowDel": "顯示從數據源中刪除的項目", + "SSE.Views.SlicerSettings.strShowNoData": "顯示最後沒有數據的項目", + "SSE.Views.SlicerSettings.strSorting": "排序與過濾", + "SSE.Views.SlicerSettings.textAdvanced": "顯示進階設定", + "SSE.Views.SlicerSettings.textAsc": "上升", + "SSE.Views.SlicerSettings.textAZ": "從A到Z", + "SSE.Views.SlicerSettings.textButtons": "按鈕", + "SSE.Views.SlicerSettings.textColumns": "欄", + "SSE.Views.SlicerSettings.textDesc": "降序", + "SSE.Views.SlicerSettings.textHeight": "高度", + "SSE.Views.SlicerSettings.textHor": "水平", + "SSE.Views.SlicerSettings.textKeepRatio": "比例不變", + "SSE.Views.SlicerSettings.textLargeSmall": "最大到最小", + "SSE.Views.SlicerSettings.textLock": "禁用調整大小或移動", + "SSE.Views.SlicerSettings.textNewOld": "最新到最舊", + "SSE.Views.SlicerSettings.textOldNew": "最舊到最新", + "SSE.Views.SlicerSettings.textPosition": "位置", + "SSE.Views.SlicerSettings.textSize": "大小", + "SSE.Views.SlicerSettings.textSmallLarge": "最小到最大", + "SSE.Views.SlicerSettings.textStyle": "樣式", + "SSE.Views.SlicerSettings.textVert": "垂直", + "SSE.Views.SlicerSettings.textWidth": "寬度", + "SSE.Views.SlicerSettings.textZA": "從Z到A", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "按鈕", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "欄", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "高度", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "隱藏沒有數據的項目", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "直觀地指示沒有數據的項目", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "參考文獻", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "顯示從數據源中刪除的項目", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "顯示標題", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "顯示最後沒有數據的項目", + "SSE.Views.SlicerSettingsAdvanced.strSize": "大小", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "排序與過濾", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "樣式", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "樣式和尺寸", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "寬度", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "不要移動或調整單元格的大小", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "替代文字", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "描述", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "標題", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "上升", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "從A到Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "降序", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "公式中使用的名稱", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "標頭", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "比例不變", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "最大到最小", + "SSE.Views.SlicerSettingsAdvanced.textName": "名稱", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "最新到最舊", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "最舊到最新", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "移動但不調整單元格的大小", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "最小到最大", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "單元捕捉", + "SSE.Views.SlicerSettingsAdvanced.textSort": "分類", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "來源名稱", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "切片器-進階設置", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "移動並調整單元格大小", + "SSE.Views.SlicerSettingsAdvanced.textZA": "從Z到A", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "這是必填欄", + "SSE.Views.SortDialog.errorEmpty": "所有排序條件必須指定一個列或行。", + "SSE.Views.SortDialog.errorMoreOneCol": "選擇了多個列。", + "SSE.Views.SortDialog.errorMoreOneRow": "選擇了多個行。", + "SSE.Views.SortDialog.errorNotOriginalCol": "您選擇的列不在原始選定範圍內。", + "SSE.Views.SortDialog.errorNotOriginalRow": "您選擇的行不在原始選定範圍內。", + "SSE.Views.SortDialog.errorSameColumnColor": "%1被多次用相同的顏色排序。
    刪除重複的排序條件,然後重試。", + "SSE.Views.SortDialog.errorSameColumnValue": "%1多次按值排序。
    刪除重複的排序條件,然後重試。", + "SSE.Views.SortDialog.textAdd": "添加等級", + "SSE.Views.SortDialog.textAsc": "上升", + "SSE.Views.SortDialog.textAuto": "自動", + "SSE.Views.SortDialog.textAZ": "從A到Z", + "SSE.Views.SortDialog.textBelow": "之下", + "SSE.Views.SortDialog.textCellColor": "單元格顏色", + "SSE.Views.SortDialog.textColumn": "欄", + "SSE.Views.SortDialog.textCopy": "複製等級", + "SSE.Views.SortDialog.textDelete": "刪除等級", + "SSE.Views.SortDialog.textDesc": "降序", + "SSE.Views.SortDialog.textDown": "向下移動級別", + "SSE.Views.SortDialog.textFontColor": "字體顏色", + "SSE.Views.SortDialog.textLeft": "左", + "SSE.Views.SortDialog.textMoreCols": "(更多列...)", + "SSE.Views.SortDialog.textMoreRows": "(更多行...)", + "SSE.Views.SortDialog.textNone": "無", + "SSE.Views.SortDialog.textOptions": "選項", + "SSE.Views.SortDialog.textOrder": "排序", + "SSE.Views.SortDialog.textRight": "右", + "SSE.Views.SortDialog.textRow": "行", + "SSE.Views.SortDialog.textSort": "排序", + "SSE.Views.SortDialog.textSortBy": "排序方式", + "SSE.Views.SortDialog.textThenBy": "然後", + "SSE.Views.SortDialog.textTop": "上方", + "SSE.Views.SortDialog.textUp": "向上移動", + "SSE.Views.SortDialog.textValues": "值", + "SSE.Views.SortDialog.textZA": "從Z到A", + "SSE.Views.SortDialog.txtInvalidRange": "無效的單元格範圍。", + "SSE.Views.SortDialog.txtTitle": "分類", + "SSE.Views.SortFilterDialog.textAsc": "由(A到Z)升序", + "SSE.Views.SortFilterDialog.textDesc": "降序(Z到A)", + "SSE.Views.SortFilterDialog.txtTitle": "分類", + "SSE.Views.SortOptionsDialog.textCase": "區分大小寫", + "SSE.Views.SortOptionsDialog.textHeaders": "我的數據有標題", + "SSE.Views.SortOptionsDialog.textLeftRight": "從左到右排序", + "SSE.Views.SortOptionsDialog.textOrientation": "方向", + "SSE.Views.SortOptionsDialog.textTitle": "排序選項", + "SSE.Views.SortOptionsDialog.textTopBottom": "從上到下排序", + "SSE.Views.SpecialPasteDialog.textAdd": "新增", + "SSE.Views.SpecialPasteDialog.textAll": "全部", + "SSE.Views.SpecialPasteDialog.textBlanks": "跳過空白", + "SSE.Views.SpecialPasteDialog.textColWidth": "列寬", + "SSE.Views.SpecialPasteDialog.textComments": "評論", + "SSE.Views.SpecialPasteDialog.textDiv": "劃分", + "SSE.Views.SpecialPasteDialog.textFFormat": "公式和格式", + "SSE.Views.SpecialPasteDialog.textFNFormat": "公式和數字格式", + "SSE.Views.SpecialPasteDialog.textFormats": "格式", + "SSE.Views.SpecialPasteDialog.textFormulas": "公式", + "SSE.Views.SpecialPasteDialog.textFWidth": "公式和列寬", + "SSE.Views.SpecialPasteDialog.textMult": "乘", + "SSE.Views.SpecialPasteDialog.textNone": "無", + "SSE.Views.SpecialPasteDialog.textOperation": "操作", + "SSE.Views.SpecialPasteDialog.textPaste": "貼上", + "SSE.Views.SpecialPasteDialog.textSub": "減去", + "SSE.Views.SpecialPasteDialog.textTitle": "特別貼黏", + "SSE.Views.SpecialPasteDialog.textTranspose": "轉置", + "SSE.Views.SpecialPasteDialog.textValues": "值", + "SSE.Views.SpecialPasteDialog.textVFormat": "值和格式", + "SSE.Views.SpecialPasteDialog.textVNFormat": "值和數字格式", + "SSE.Views.SpecialPasteDialog.textWBorders": "所有,除邊界", + "SSE.Views.Spellcheck.noSuggestions": "沒有拼寫建議", + "SSE.Views.Spellcheck.textChange": "變更", + "SSE.Views.Spellcheck.textChangeAll": "全部更改", + "SSE.Views.Spellcheck.textIgnore": "忽視", + "SSE.Views.Spellcheck.textIgnoreAll": "忽略所有", + "SSE.Views.Spellcheck.txtAddToDictionary": "添加到字典", + "SSE.Views.Spellcheck.txtComplete": "拼寫檢查已完成", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "字典語言", + "SSE.Views.Spellcheck.txtNextTip": "轉到下一個單詞", + "SSE.Views.Spellcheck.txtSpelling": "拼寫", + "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(複製到結尾)", + "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(移至結尾)", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "複製工作表之前", + "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "在工作表前移動", + "SSE.Views.Statusbar.filteredRecordsText": "已過濾{1}個記錄中的{0}個", + "SSE.Views.Statusbar.filteredText": "過濾模式", + "SSE.Views.Statusbar.itemAverage": "平均", + "SSE.Views.Statusbar.itemCopy": "複製", + "SSE.Views.Statusbar.itemCount": "計數", + "SSE.Views.Statusbar.itemDelete": "刪除", + "SSE.Views.Statusbar.itemHidden": "隱長", + "SSE.Views.Statusbar.itemHide": "隱藏", + "SSE.Views.Statusbar.itemInsert": "插入", + "SSE.Views.Statusbar.itemMaximum": "最大", + "SSE.Views.Statusbar.itemMinimum": "最低", + "SSE.Views.Statusbar.itemMove": "搬移", + "SSE.Views.Statusbar.itemProtect": "保護", + "SSE.Views.Statusbar.itemRename": "重新命名", + "SSE.Views.Statusbar.itemStatus": "保存狀態", + "SSE.Views.Statusbar.itemSum": "總和", + "SSE.Views.Statusbar.itemTabColor": "標籤顏色", + "SSE.Views.Statusbar.itemUnProtect": "解鎖", + "SSE.Views.Statusbar.RenameDialog.errNameExists": "具有這樣名稱的工作表已經存在。", + "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "工作表名稱不能包含以下字符:\\ / *?[]:", + "SSE.Views.Statusbar.RenameDialog.labelSheetName": "表格名稱", + "SSE.Views.Statusbar.selectAllSheets": "選擇所有工作表", + "SSE.Views.Statusbar.sheetIndexText": "工作表{0}共{1}", + "SSE.Views.Statusbar.textAverage": "平均", + "SSE.Views.Statusbar.textCount": "計數", + "SSE.Views.Statusbar.textMax": "最高", + "SSE.Views.Statusbar.textMin": "最低", + "SSE.Views.Statusbar.textNewColor": "新增自訂顏色", + "SSE.Views.Statusbar.textNoColor": "無顏色", + "SSE.Views.Statusbar.textSum": "總和", + "SSE.Views.Statusbar.tipAddTab": "添加工作表", + "SSE.Views.Statusbar.tipFirst": "滾動到第一張紙", + "SSE.Views.Statusbar.tipLast": "滾動到最後張紙", + "SSE.Views.Statusbar.tipListOfSheets": "工作表列表", + "SSE.Views.Statusbar.tipNext": "向右滾動工作表列表", + "SSE.Views.Statusbar.tipPrev": "向左滾動工作表列表", + "SSE.Views.Statusbar.tipZoomFactor": "放大", + "SSE.Views.Statusbar.tipZoomIn": "放大", + "SSE.Views.Statusbar.tipZoomOut": "縮小", + "SSE.Views.Statusbar.ungroupSheets": "取消工作表分組", + "SSE.Views.Statusbar.zoomText": "放大{0}%", + "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "無法對所選單元格範圍執行此操作。
    選擇與現有單元格範圍不同的統一數據范圍,然後重試。", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "無法完成所選單元格範圍的操作。
    選擇一個範圍,以使第一表行位於同一行上,並且結果表與當前表重疊。", + "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "無法完成所選單元格範圍的操作。
    選擇一個不包含其他表的範圍。", + "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "表中不允許使用多單元格數組公式。", + "SSE.Views.TableOptionsDialog.txtEmpty": "這是必填欄", + "SSE.Views.TableOptionsDialog.txtFormat": "建立表格", + "SSE.Views.TableOptionsDialog.txtInvalidRange": "錯誤!無效的單元格範圍", + "SSE.Views.TableOptionsDialog.txtNote": "標頭必須保留在同一行中,並且結果表範圍必須與原始表範圍重疊。", + "SSE.Views.TableOptionsDialog.txtTitle": "標題", + "SSE.Views.TableSettings.deleteColumnText": "刪除欄位", + "SSE.Views.TableSettings.deleteRowText": "刪除行列", + "SSE.Views.TableSettings.deleteTableText": "刪除表格", + "SSE.Views.TableSettings.insertColumnLeftText": "向左插入列", + "SSE.Views.TableSettings.insertColumnRightText": "向右插入列", + "SSE.Views.TableSettings.insertRowAboveText": "在上方插入行", + "SSE.Views.TableSettings.insertRowBelowText": "在下方插入行", + "SSE.Views.TableSettings.notcriticalErrorTitle": "警告", + "SSE.Views.TableSettings.selectColumnText": "選擇整個列", + "SSE.Views.TableSettings.selectDataText": "選擇列數據", + "SSE.Views.TableSettings.selectRowText": "選擇列", + "SSE.Views.TableSettings.selectTableText": "選擇表格", + "SSE.Views.TableSettings.textActions": "表動作", + "SSE.Views.TableSettings.textAdvanced": "顯示進階設定", + "SSE.Views.TableSettings.textBanded": "帶狀", + "SSE.Views.TableSettings.textColumns": "欄", + "SSE.Views.TableSettings.textConvertRange": "轉換為範圍", + "SSE.Views.TableSettings.textEdit": "行和列", + "SSE.Views.TableSettings.textEmptyTemplate": "\n沒有模板", + "SSE.Views.TableSettings.textExistName": "錯誤!具有這樣名稱的範圍已經存在", + "SSE.Views.TableSettings.textFilter": "篩選按鈕", + "SSE.Views.TableSettings.textFirst": "第一", + "SSE.Views.TableSettings.textHeader": "標頭", + "SSE.Views.TableSettings.textInvalidName": "錯誤!無效的表名", + "SSE.Views.TableSettings.textIsLocked": "該元素正在由另一個用戶編輯。", + "SSE.Views.TableSettings.textLast": "最後", + "SSE.Views.TableSettings.textLongOperation": "運行時間長", + "SSE.Views.TableSettings.textPivot": "插入樞紐分析表", + "SSE.Views.TableSettings.textRemDuplicates": "刪除重複項", + "SSE.Views.TableSettings.textReservedName": "單元格公式中已經引用了您要使用的名稱。請使用其他名稱。", + "SSE.Views.TableSettings.textResize": "調整表格", + "SSE.Views.TableSettings.textRows": "行列", + "SSE.Views.TableSettings.textSelectData": "選擇數據", + "SSE.Views.TableSettings.textSlicer": "插入切片器", + "SSE.Views.TableSettings.textTableName": "表名", + "SSE.Views.TableSettings.textTemplate": "從範本中選擇", + "SSE.Views.TableSettings.textTotal": "總計", + "SSE.Views.TableSettings.warnLongOperation": "您將要執行的操作可能需要花費大量時間才能完成。
    您確定要繼續嗎?", + "SSE.Views.TableSettingsAdvanced.textAlt": "替代文字", + "SSE.Views.TableSettingsAdvanced.textAltDescription": "描述", + "SSE.Views.TableSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", + "SSE.Views.TableSettingsAdvanced.textAltTitle": "標題", + "SSE.Views.TableSettingsAdvanced.textTitle": "表格 - 進階設定", + "SSE.Views.TextArtSettings.strBackground": "背景顏色", + "SSE.Views.TextArtSettings.strColor": "顏色", + "SSE.Views.TextArtSettings.strFill": "填入", + "SSE.Views.TextArtSettings.strForeground": "前景色", + "SSE.Views.TextArtSettings.strPattern": "模式", + "SSE.Views.TextArtSettings.strSize": "大小", + "SSE.Views.TextArtSettings.strStroke": "筆鋒", + "SSE.Views.TextArtSettings.strTransparency": "透明度", + "SSE.Views.TextArtSettings.strType": "類型", + "SSE.Views.TextArtSettings.textAngle": "角度", + "SSE.Views.TextArtSettings.textBorderSizeErr": "輸入的值不正確。
    請輸入0 pt至1584 pt之間的值。", + "SSE.Views.TextArtSettings.textColor": "填充顏色", + "SSE.Views.TextArtSettings.textDirection": "方向", + "SSE.Views.TextArtSettings.textEmptyPattern": "無模式", + "SSE.Views.TextArtSettings.textFromFile": "從檔案", + "SSE.Views.TextArtSettings.textFromUrl": "從 URL", + "SSE.Views.TextArtSettings.textGradient": "漸變點", + "SSE.Views.TextArtSettings.textGradientFill": "漸層填充", + "SSE.Views.TextArtSettings.textImageTexture": "圖片或紋理", + "SSE.Views.TextArtSettings.textLinear": "線性的", + "SSE.Views.TextArtSettings.textNoFill": "沒有填充", + "SSE.Views.TextArtSettings.textPatternFill": "模式", + "SSE.Views.TextArtSettings.textPosition": "位置", + "SSE.Views.TextArtSettings.textRadial": "徑向的", + "SSE.Views.TextArtSettings.textSelectTexture": "選擇", + "SSE.Views.TextArtSettings.textStretch": "延伸", + "SSE.Views.TextArtSettings.textStyle": "樣式", + "SSE.Views.TextArtSettings.textTemplate": "樣板", + "SSE.Views.TextArtSettings.textTexture": "從紋理", + "SSE.Views.TextArtSettings.textTile": "磚瓦", + "SSE.Views.TextArtSettings.textTransform": "轉變", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "添加漸變點", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "刪除漸變點", + "SSE.Views.TextArtSettings.txtBrownPaper": "牛皮紙", + "SSE.Views.TextArtSettings.txtCanvas": "帆布", + "SSE.Views.TextArtSettings.txtCarton": "紙箱", + "SSE.Views.TextArtSettings.txtDarkFabric": "深色面料", + "SSE.Views.TextArtSettings.txtGrain": "紋", + "SSE.Views.TextArtSettings.txtGranite": "花崗岩", + "SSE.Views.TextArtSettings.txtGreyPaper": "灰紙", + "SSE.Views.TextArtSettings.txtKnit": "編織", + "SSE.Views.TextArtSettings.txtLeather": "皮革", + "SSE.Views.TextArtSettings.txtNoBorders": "無線條", + "SSE.Views.TextArtSettings.txtPapyrus": "紙莎草紙", + "SSE.Views.TextArtSettings.txtWood": "木頭", + "SSE.Views.Toolbar.capBtnAddComment": "增加留言", + "SSE.Views.Toolbar.capBtnColorSchemas": "配色", + "SSE.Views.Toolbar.capBtnComment": "評論", + "SSE.Views.Toolbar.capBtnInsHeader": "頁首/頁尾", + "SSE.Views.Toolbar.capBtnInsSlicer": "切片機", + "SSE.Views.Toolbar.capBtnInsSymbol": "符號", + "SSE.Views.Toolbar.capBtnMargins": "邊界", + "SSE.Views.Toolbar.capBtnPageOrient": "方向", + "SSE.Views.Toolbar.capBtnPageSize": "大小", + "SSE.Views.Toolbar.capBtnPrintArea": "列印區", + "SSE.Views.Toolbar.capBtnPrintTitles": "列印標題", + "SSE.Views.Toolbar.capBtnScale": "縮放以適合", + "SSE.Views.Toolbar.capImgAlign": "對齊", + "SSE.Views.Toolbar.capImgBackward": "向後發送", + "SSE.Views.Toolbar.capImgForward": "向前帶進", + "SSE.Views.Toolbar.capImgGroup": "群組", + "SSE.Views.Toolbar.capInsertChart": "圖表", + "SSE.Views.Toolbar.capInsertEquation": "公式", + "SSE.Views.Toolbar.capInsertHyperlink": "超連結", + "SSE.Views.Toolbar.capInsertImage": "圖像", + "SSE.Views.Toolbar.capInsertShape": "形狀", + "SSE.Views.Toolbar.capInsertSpark": "走勢圖", + "SSE.Views.Toolbar.capInsertTable": "表格", + "SSE.Views.Toolbar.capInsertText": "文字框", + "SSE.Views.Toolbar.mniImageFromFile": "圖片來自文件", + "SSE.Views.Toolbar.mniImageFromStorage": "來自存儲的圖像", + "SSE.Views.Toolbar.mniImageFromUrl": "來自網址的圖片", + "SSE.Views.Toolbar.textAddPrintArea": "添加到列印區", + "SSE.Views.Toolbar.textAlignBottom": "底部對齊", + "SSE.Views.Toolbar.textAlignCenter": "居中對齊", + "SSE.Views.Toolbar.textAlignJust": "合理的", + "SSE.Views.Toolbar.textAlignLeft": "對齊左側", + "SSE.Views.Toolbar.textAlignMiddle": "中央對齊", + "SSE.Views.Toolbar.textAlignRight": "對齊右側", + "SSE.Views.Toolbar.textAlignTop": "上方對齊", + "SSE.Views.Toolbar.textAllBorders": "所有邊界", + "SSE.Views.Toolbar.textAuto": "自動", + "SSE.Views.Toolbar.textAutoColor": "自動", + "SSE.Views.Toolbar.textBold": "粗體", + "SSE.Views.Toolbar.textBordersColor": "邊框顏色", + "SSE.Views.Toolbar.textBordersStyle": "邊框樣式", + "SSE.Views.Toolbar.textBottom": "底部:", + "SSE.Views.Toolbar.textBottomBorders": "底部邊框", + "SSE.Views.Toolbar.textCenterBorders": "內部垂直邊框", + "SSE.Views.Toolbar.textClearPrintArea": "清除列印區域", + "SSE.Views.Toolbar.textClearRule": "清除規則", + "SSE.Views.Toolbar.textClockwise": "順時針旋轉角度", + "SSE.Views.Toolbar.textColorScales": "色標", + "SSE.Views.Toolbar.textCounterCw": "逆時針旋轉角度", + "SSE.Views.Toolbar.textDataBars": "數據欄", + "SSE.Views.Toolbar.textDelLeft": "左移單元格", + "SSE.Views.Toolbar.textDelUp": "上移單元格", + "SSE.Views.Toolbar.textDiagDownBorder": "對角向下邊界", + "SSE.Views.Toolbar.textDiagUpBorder": "對角上邊界", + "SSE.Views.Toolbar.textEntireCol": "整列", + "SSE.Views.Toolbar.textEntireRow": "整行", + "SSE.Views.Toolbar.textFewPages": "頁", + "SSE.Views.Toolbar.textHeight": "高度", + "SSE.Views.Toolbar.textHorizontal": "橫軸上的文字", + "SSE.Views.Toolbar.textInsDown": "下移單元格", + "SSE.Views.Toolbar.textInsideBorders": "內部邊界", + "SSE.Views.Toolbar.textInsRight": "右移單元格", + "SSE.Views.Toolbar.textItalic": "斜體", + "SSE.Views.Toolbar.textItems": "項目", + "SSE.Views.Toolbar.textLandscape": "橫向方向", + "SSE.Views.Toolbar.textLeft": "左:", + "SSE.Views.Toolbar.textLeftBorders": "左邊框", + "SSE.Views.Toolbar.textManageRule": "管理規則", + "SSE.Views.Toolbar.textManyPages": "頁", + "SSE.Views.Toolbar.textMarginsLast": "最後自訂", + "SSE.Views.Toolbar.textMarginsNarrow": "狹窄", + "SSE.Views.Toolbar.textMarginsNormal": "標準", + "SSE.Views.Toolbar.textMarginsWide": "寬", + "SSE.Views.Toolbar.textMiddleBorders": "內部水平邊框", + "SSE.Views.Toolbar.textMoreFormats": "更多格式", + "SSE.Views.Toolbar.textMorePages": "更多頁面", + "SSE.Views.Toolbar.textNewColor": "新增自訂顏色", + "SSE.Views.Toolbar.textNewRule": "新槼則", + "SSE.Views.Toolbar.textNoBorders": "無邊框", + "SSE.Views.Toolbar.textOnePage": "頁面", + "SSE.Views.Toolbar.textOutBorders": "境外", + "SSE.Views.Toolbar.textPageMarginsCustom": "自定邊界", + "SSE.Views.Toolbar.textPortrait": "直向方向", + "SSE.Views.Toolbar.textPrint": "列印", + "SSE.Views.Toolbar.textPrintGridlines": "列印網格線", + "SSE.Views.Toolbar.textPrintHeadings": "列印標題", + "SSE.Views.Toolbar.textPrintOptions": "列印設定", + "SSE.Views.Toolbar.textRight": "右: ", + "SSE.Views.Toolbar.textRightBorders": "右邊界", + "SSE.Views.Toolbar.textRotateDown": "向下旋轉文字", + "SSE.Views.Toolbar.textRotateUp": "向上旋轉文字", + "SSE.Views.Toolbar.textScale": "尺度", + "SSE.Views.Toolbar.textScaleCustom": "自訂", + "SSE.Views.Toolbar.textSelection": "凍結當前選擇", + "SSE.Views.Toolbar.textSetPrintArea": "設置列印區域", + "SSE.Views.Toolbar.textStrikeout": "淘汰", + "SSE.Views.Toolbar.textSubscript": "下標", + "SSE.Views.Toolbar.textSubSuperscript": "下標/上標", + "SSE.Views.Toolbar.textSuperscript": "上標", + "SSE.Views.Toolbar.textTabCollaboration": "協作", + "SSE.Views.Toolbar.textTabData": "數據", + "SSE.Views.Toolbar.textTabFile": "檔案", + "SSE.Views.Toolbar.textTabFormula": "配方", + "SSE.Views.Toolbar.textTabHome": "首頁", + "SSE.Views.Toolbar.textTabInsert": "插入", + "SSE.Views.Toolbar.textTabLayout": "佈局", + "SSE.Views.Toolbar.textTabProtect": "保護", + "SSE.Views.Toolbar.textTabView": "檢視", + "SSE.Views.Toolbar.textThisPivot": "由此數據透視表", + "SSE.Views.Toolbar.textThisSheet": "由此工作表", + "SSE.Views.Toolbar.textThisTable": "由此表", + "SSE.Views.Toolbar.textTop": "頂部: ", + "SSE.Views.Toolbar.textTopBorders": "上邊界", + "SSE.Views.Toolbar.textUnderline": "底線", + "SSE.Views.Toolbar.textVertical": "垂直文字", + "SSE.Views.Toolbar.textWidth": "寬度", + "SSE.Views.Toolbar.textZoom": "放大", + "SSE.Views.Toolbar.tipAlignBottom": "底部對齊", + "SSE.Views.Toolbar.tipAlignCenter": "居中對齊", + "SSE.Views.Toolbar.tipAlignJust": "合理的", + "SSE.Views.Toolbar.tipAlignLeft": "對齊左側", + "SSE.Views.Toolbar.tipAlignMiddle": "中央對齊", + "SSE.Views.Toolbar.tipAlignRight": "對齊右側", + "SSE.Views.Toolbar.tipAlignTop": "上方對齊", + "SSE.Views.Toolbar.tipAutofilter": "排序和過濾", + "SSE.Views.Toolbar.tipBack": "返回", + "SSE.Views.Toolbar.tipBorders": "邊框", + "SSE.Views.Toolbar.tipCellStyle": "單元格樣式", + "SSE.Views.Toolbar.tipChangeChart": "更改圖表類型", + "SSE.Views.Toolbar.tipClearStyle": "清除", + "SSE.Views.Toolbar.tipColorSchemas": "更改配色方案", + "SSE.Views.Toolbar.tipCondFormat": "條件格式", + "SSE.Views.Toolbar.tipCopy": "複製", + "SSE.Views.Toolbar.tipCopyStyle": "複製樣式", + "SSE.Views.Toolbar.tipDecDecimal": "減少小數", + "SSE.Views.Toolbar.tipDecFont": "減少字體大小", + "SSE.Views.Toolbar.tipDeleteOpt": "刪除單元格", + "SSE.Views.Toolbar.tipDigStyleAccounting": "會計風格", + "SSE.Views.Toolbar.tipDigStyleCurrency": "貨幣風格", + "SSE.Views.Toolbar.tipDigStylePercent": "百分比樣式", + "SSE.Views.Toolbar.tipEditChart": "編輯圖表", + "SSE.Views.Toolbar.tipEditChartData": "選擇數據", + "SSE.Views.Toolbar.tipEditChartType": "更改圖表類型", + "SSE.Views.Toolbar.tipEditHeader": "編輯頁眉或頁腳", + "SSE.Views.Toolbar.tipFontColor": "字體顏色", + "SSE.Views.Toolbar.tipFontName": "字體", + "SSE.Views.Toolbar.tipFontSize": "字體大小", + "SSE.Views.Toolbar.tipImgAlign": "對齊物件", + "SSE.Views.Toolbar.tipImgGroup": "組物件", + "SSE.Views.Toolbar.tipIncDecimal": "增加小數", + "SSE.Views.Toolbar.tipIncFont": "增量字體大小", + "SSE.Views.Toolbar.tipInsertChart": "插入圖表", + "SSE.Views.Toolbar.tipInsertChartSpark": "插入圖表", + "SSE.Views.Toolbar.tipInsertEquation": "插入方程式", + "SSE.Views.Toolbar.tipInsertHyperlink": "新增超連結", + "SSE.Views.Toolbar.tipInsertImage": "插入圖片", + "SSE.Views.Toolbar.tipInsertOpt": "插入單元格", + "SSE.Views.Toolbar.tipInsertShape": "插入自動形狀", + "SSE.Views.Toolbar.tipInsertSlicer": "插入切片器", + "SSE.Views.Toolbar.tipInsertSpark": "插入走勢圖", + "SSE.Views.Toolbar.tipInsertSymbol": "插入符號", + "SSE.Views.Toolbar.tipInsertTable": "插入表格", + "SSE.Views.Toolbar.tipInsertText": "插入文字框", + "SSE.Views.Toolbar.tipInsertTextart": "插入文字藝術", + "SSE.Views.Toolbar.tipMerge": "合併和居中", + "SSE.Views.Toolbar.tipNone": "無", + "SSE.Views.Toolbar.tipNumFormat": "數字格式", + "SSE.Views.Toolbar.tipPageMargins": "頁面邊界", + "SSE.Views.Toolbar.tipPageOrient": "頁面方向", + "SSE.Views.Toolbar.tipPageSize": "頁面大小", + "SSE.Views.Toolbar.tipPaste": "貼上", + "SSE.Views.Toolbar.tipPrColor": "填色", + "SSE.Views.Toolbar.tipPrint": "列印", + "SSE.Views.Toolbar.tipPrintArea": "列印區", + "SSE.Views.Toolbar.tipPrintTitles": "列印標題", + "SSE.Views.Toolbar.tipRedo": "重做", + "SSE.Views.Toolbar.tipSave": "儲存", + "SSE.Views.Toolbar.tipSaveCoauth": "保存您的更改,以供其他用戶查看。", + "SSE.Views.Toolbar.tipScale": "縮放以適合", + "SSE.Views.Toolbar.tipSendBackward": "向後發送", + "SSE.Views.Toolbar.tipSendForward": "向前帶進", + "SSE.Views.Toolbar.tipSynchronize": "該文檔已被其他用戶更改。請單擊以保存您的更改並重新加載更新。", + "SSE.Views.Toolbar.tipTextOrientation": "方向", + "SSE.Views.Toolbar.tipUndo": "復原", + "SSE.Views.Toolbar.tipWrap": "包覆文字", + "SSE.Views.Toolbar.txtAccounting": "會計", + "SSE.Views.Toolbar.txtAdditional": "額外功能", + "SSE.Views.Toolbar.txtAscending": "上升", + "SSE.Views.Toolbar.txtAutosumTip": "求和", + "SSE.Views.Toolbar.txtClearAll": "全部", + "SSE.Views.Toolbar.txtClearComments": "評論", + "SSE.Views.Toolbar.txtClearFilter": "清空過濾器", + "SSE.Views.Toolbar.txtClearFormat": "格式", + "SSE.Views.Toolbar.txtClearFormula": "功能", + "SSE.Views.Toolbar.txtClearHyper": "超連結", + "SSE.Views.Toolbar.txtClearText": "文字", + "SSE.Views.Toolbar.txtCurrency": "幣別", + "SSE.Views.Toolbar.txtCustom": "自訂", + "SSE.Views.Toolbar.txtDate": "日期", + "SSE.Views.Toolbar.txtDateTime": "日期和時間", + "SSE.Views.Toolbar.txtDescending": "降序", + "SSE.Views.Toolbar.txtDollar": "$美元", + "SSE.Views.Toolbar.txtEuro": "\n€歐元", + "SSE.Views.Toolbar.txtExp": "指數的", + "SSE.Views.Toolbar.txtFilter": "過濾器", + "SSE.Views.Toolbar.txtFormula": "插入功能", + "SSE.Views.Toolbar.txtFraction": "分數", + "SSE.Views.Toolbar.txtFranc": "CHF 瑞士法郎", + "SSE.Views.Toolbar.txtGeneral": "一般", + "SSE.Views.Toolbar.txtInteger": "整數", + "SSE.Views.Toolbar.txtManageRange": "名稱管理員", + "SSE.Views.Toolbar.txtMergeAcross": "合併", + "SSE.Views.Toolbar.txtMergeCells": "合併單元格", + "SSE.Views.Toolbar.txtMergeCenter": "合併與中心", + "SSE.Views.Toolbar.txtNamedRange": "命名範圍", + "SSE.Views.Toolbar.txtNewRange": "定義名稱", + "SSE.Views.Toolbar.txtNoBorders": "無邊框", + "SSE.Views.Toolbar.txtNumber": "數字", + "SSE.Views.Toolbar.txtPasteRange": "粘貼名稱", + "SSE.Views.Toolbar.txtPercentage": "百分比", + "SSE.Views.Toolbar.txtPound": "£英鎊", + "SSE.Views.Toolbar.txtRouble": "₽盧布", + "SSE.Views.Toolbar.txtScheme1": "辦公室", + "SSE.Views.Toolbar.txtScheme10": "中位數", + "SSE.Views.Toolbar.txtScheme11": " 地鐵", + "SSE.Views.Toolbar.txtScheme12": "模組", + "SSE.Views.Toolbar.txtScheme13": "豐富的", + "SSE.Views.Toolbar.txtScheme14": "Oriel", + "SSE.Views.Toolbar.txtScheme15": "起源", + "SSE.Views.Toolbar.txtScheme16": "紙", + "SSE.Views.Toolbar.txtScheme17": "冬至", + "SSE.Views.Toolbar.txtScheme18": "技術", + "SSE.Views.Toolbar.txtScheme19": "跋涉", + "SSE.Views.Toolbar.txtScheme2": "灰階", + "SSE.Views.Toolbar.txtScheme20": "市區", + "SSE.Views.Toolbar.txtScheme21": "感染力", + "SSE.Views.Toolbar.txtScheme22": "新的Office", + "SSE.Views.Toolbar.txtScheme3": "頂尖", + "SSE.Views.Toolbar.txtScheme4": "方面", + "SSE.Views.Toolbar.txtScheme5": "思域", + "SSE.Views.Toolbar.txtScheme6": "大堂", + "SSE.Views.Toolbar.txtScheme7": "產權", + "SSE.Views.Toolbar.txtScheme8": "流程", + "SSE.Views.Toolbar.txtScheme9": "鑄造廠", + "SSE.Views.Toolbar.txtScientific": "科學的", + "SSE.Views.Toolbar.txtSearch": "搜尋", + "SSE.Views.Toolbar.txtSort": "分類", + "SSE.Views.Toolbar.txtSortAZ": "升序", + "SSE.Views.Toolbar.txtSortZA": "降序排列", + "SSE.Views.Toolbar.txtSpecial": "特殊", + "SSE.Views.Toolbar.txtTableTemplate": "格式化為表格模板", + "SSE.Views.Toolbar.txtText": "文字", + "SSE.Views.Toolbar.txtTime": "時間", + "SSE.Views.Toolbar.txtUnmerge": "解除單元格", + "SSE.Views.Toolbar.txtYen": "¥日元", + "SSE.Views.Top10FilterDialog.textType": "顯示", + "SSE.Views.Top10FilterDialog.txtBottom": "底部", + "SSE.Views.Top10FilterDialog.txtBy": "通過", + "SSE.Views.Top10FilterDialog.txtItems": "項目", + "SSE.Views.Top10FilterDialog.txtPercent": "百分比", + "SSE.Views.Top10FilterDialog.txtSum": "總和", + "SSE.Views.Top10FilterDialog.txtTitle": "十大自動篩選", + "SSE.Views.Top10FilterDialog.txtTop": "上方", + "SSE.Views.Top10FilterDialog.txtValueTitle": "十大過濾器", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "值字段設置", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "平均", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "基礎領域", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "基礎項目", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "第%1個,共%2個", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "計數", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "數數", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "自定義名稱", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "與...的區別", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "索引", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "最高", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "最低", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "沒有計算", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "的百分比", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "與的差異百分比", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "列百分比", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "佔總數的百分比", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "行的百分比", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "產品", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "總計運行", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "顯示值為", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "來源名稱:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "標準差", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "標準差p", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "總和", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "匯總值字段", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", + "SSE.Views.ViewManagerDlg.closeButtonText": "關閉", + "SSE.Views.ViewManagerDlg.guestText": "來賓帳戶", + "SSE.Views.ViewManagerDlg.lockText": "已鎖定", + "SSE.Views.ViewManagerDlg.textDelete": "刪除", + "SSE.Views.ViewManagerDlg.textDuplicate": "重複複製", + "SSE.Views.ViewManagerDlg.textEmpty": "尚未創建任何視圖。", + "SSE.Views.ViewManagerDlg.textGoTo": "去查看", + "SSE.Views.ViewManagerDlg.textLongName": "輸入少於128個字符的名稱。", + "SSE.Views.ViewManagerDlg.textNew": "新", + "SSE.Views.ViewManagerDlg.textRename": "重新命名", + "SSE.Views.ViewManagerDlg.textRenameError": "視圖名稱不能為空。", + "SSE.Views.ViewManagerDlg.textRenameLabel": "重命名視圖", + "SSE.Views.ViewManagerDlg.textViews": "工作表視圖", + "SSE.Views.ViewManagerDlg.tipIsLocked": "該元素正在由另一個用戶編輯。", + "SSE.Views.ViewManagerDlg.txtTitle": "圖紙視圖管理器", + "SSE.Views.ViewManagerDlg.warnDeleteView": "您正在嘗試刪除當前啟用的視圖'%1'。
    關閉此視圖並刪除它嗎?", + "SSE.Views.ViewTab.capBtnFreeze": "凍結窗格", + "SSE.Views.ViewTab.capBtnSheetView": "圖紙視圖", + "SSE.Views.ViewTab.textAlwaysShowToolbar": "永遠顯示工具欄", + "SSE.Views.ViewTab.textClose": "關閉", + "SSE.Views.ViewTab.textCombineSheetAndStatusBars": "隱藏狀態欄", + "SSE.Views.ViewTab.textCreate": "新", + "SSE.Views.ViewTab.textDefault": "預設", + "SSE.Views.ViewTab.textFormula": "公式欄", + "SSE.Views.ViewTab.textFreezeCol": "凍結第一列", + "SSE.Views.ViewTab.textFreezeRow": "凍結第一排", + "SSE.Views.ViewTab.textGridlines": "網格線", + "SSE.Views.ViewTab.textHeadings": "標題", + "SSE.Views.ViewTab.textInterfaceTheme": "介面主題", + "SSE.Views.ViewTab.textManager": "查看管理員", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "顯示固定面版視窗的陰影", + "SSE.Views.ViewTab.textUnFreeze": "取消凍結窗格", + "SSE.Views.ViewTab.textZeros": "顯示零", + "SSE.Views.ViewTab.textZoom": "放大", + "SSE.Views.ViewTab.tipClose": "關閉工作表視圖", + "SSE.Views.ViewTab.tipCreate": "創建圖紙視圖", + "SSE.Views.ViewTab.tipFreeze": "凍結窗格", + "SSE.Views.ViewTab.tipSheetView": "圖紙視圖", + "SSE.Views.WBProtection.hintAllowRanges": "允許範圍編輯", + "SSE.Views.WBProtection.hintProtectSheet": "保護工作表", + "SSE.Views.WBProtection.hintProtectWB": "保護工作簿", + "SSE.Views.WBProtection.txtAllowRanges": "允許範圍編輯", + "SSE.Views.WBProtection.txtHiddenFormula": "隱藏公式", + "SSE.Views.WBProtection.txtLockedCell": "儲存格鎖定", + "SSE.Views.WBProtection.txtLockedShape": "形狀鎖定", + "SSE.Views.WBProtection.txtLockedText": "鎖定文字", + "SSE.Views.WBProtection.txtProtectSheet": "保護工作表", + "SSE.Views.WBProtection.txtProtectWB": "保護工作簿", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "如解除表格保護,請輸入密碼", + "SSE.Views.WBProtection.txtSheetUnlockTitle": "工作表解鎖", + "SSE.Views.WBProtection.txtWBUnlockDescription": "如解除工作表保護,請輸入密碼", + "SSE.Views.WBProtection.txtWBUnlockTitle": "工作簿解鎖" +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index b37610800..288fb0baf 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -1852,13 +1852,13 @@ "SSE.Views.DocumentHolder.advancedSlicerText": "切片器高级设置", "SSE.Views.DocumentHolder.bottomCellText": "底部对齐", "SSE.Views.DocumentHolder.bulletsText": "符号和编号", - "SSE.Views.DocumentHolder.centerCellText": "居中对齐", + "SSE.Views.DocumentHolder.centerCellText": "垂直居中", "SSE.Views.DocumentHolder.chartText": "图表高级设置", "SSE.Views.DocumentHolder.deleteColumnText": "列", "SSE.Views.DocumentHolder.deleteRowText": "行", "SSE.Views.DocumentHolder.deleteTableText": "表格", - "SSE.Views.DocumentHolder.direct270Text": "旋转270°", - "SSE.Views.DocumentHolder.direct90Text": "旋转90°", + "SSE.Views.DocumentHolder.direct270Text": "向上旋转文字", + "SSE.Views.DocumentHolder.direct90Text": "向下旋转文字", "SSE.Views.DocumentHolder.directHText": "水平的", "SSE.Views.DocumentHolder.directionText": "文字方向", "SSE.Views.DocumentHolder.editChartText": "编辑数据", @@ -1912,7 +1912,7 @@ "SSE.Views.DocumentHolder.textShapeAlignBottom": "底部对齐", "SSE.Views.DocumentHolder.textShapeAlignCenter": "居中对齐", "SSE.Views.DocumentHolder.textShapeAlignLeft": "左对齐", - "SSE.Views.DocumentHolder.textShapeAlignMiddle": "对齐中间", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "垂直居中", "SSE.Views.DocumentHolder.textShapeAlignRight": "右对齐", "SSE.Views.DocumentHolder.textShapeAlignTop": "顶端对齐", "SSE.Views.DocumentHolder.textStdDev": "标准差", @@ -1920,6 +1920,14 @@ "SSE.Views.DocumentHolder.textUndo": "复原", "SSE.Views.DocumentHolder.textUnFreezePanes": "解冻窗格", "SSE.Views.DocumentHolder.textVar": "方差", + "SSE.Views.DocumentHolder.tipMarkersArrow": "箭头项目符号", + "SSE.Views.DocumentHolder.tipMarkersCheckmark": "选中标记项目符号", + "SSE.Views.DocumentHolder.tipMarkersDash": "划线项目符号", + "SSE.Views.DocumentHolder.tipMarkersFRhombus": "实心菱形项目符号", + "SSE.Views.DocumentHolder.tipMarkersFRound": "实心圆形项目符号", + "SSE.Views.DocumentHolder.tipMarkersFSquare": "实心方形项目符号", + "SSE.Views.DocumentHolder.tipMarkersHRound": "空心圆形项目符号", + "SSE.Views.DocumentHolder.tipMarkersStar": "星形项目符号", "SSE.Views.DocumentHolder.topCellText": "顶端对齐", "SSE.Views.DocumentHolder.txtAccounting": "统计", "SSE.Views.DocumentHolder.txtAddComment": "添加批注", @@ -2018,7 +2026,7 @@ "SSE.Views.FileMenu.btnCloseMenuCaption": "关闭菜单", "SSE.Views.FileMenu.btnCreateNewCaption": "新建", "SSE.Views.FileMenu.btnDownloadCaption": "下载为...", - "SSE.Views.FileMenu.btnExitCaption": "退出", + "SSE.Views.FileMenu.btnExitCaption": "关闭", "SSE.Views.FileMenu.btnFileOpenCaption": "打开...", "SSE.Views.FileMenu.btnHelpCaption": "帮助", "SSE.Views.FileMenu.btnHistoryCaption": "版本历史", @@ -3297,7 +3305,7 @@ "SSE.Views.Toolbar.textAlignCenter": "居中对齐", "SSE.Views.Toolbar.textAlignJust": "正当", "SSE.Views.Toolbar.textAlignLeft": "左对齐", - "SSE.Views.Toolbar.textAlignMiddle": "对齐中间", + "SSE.Views.Toolbar.textAlignMiddle": "垂直居中", "SSE.Views.Toolbar.textAlignRight": "右对齐", "SSE.Views.Toolbar.textAlignTop": "顶端对齐", "SSE.Views.Toolbar.textAllBorders": "所有边框", @@ -3311,9 +3319,9 @@ "SSE.Views.Toolbar.textCenterBorders": "内部垂直边框", "SSE.Views.Toolbar.textClearPrintArea": "清除打印区域", "SSE.Views.Toolbar.textClearRule": "清除规则", - "SSE.Views.Toolbar.textClockwise": "顺时针方向角", + "SSE.Views.Toolbar.textClockwise": "顺时针角度", "SSE.Views.Toolbar.textColorScales": "色阶", - "SSE.Views.Toolbar.textCounterCw": "角逆时针", + "SSE.Views.Toolbar.textCounterCw": "逆时针角度", "SSE.Views.Toolbar.textDataBars": "数据栏", "SSE.Views.Toolbar.textDelLeft": "移动单元格", "SSE.Views.Toolbar.textDelUp": "向上移动单元格", @@ -3354,8 +3362,8 @@ "SSE.Views.Toolbar.textPrintOptions": "打印设置", "SSE.Views.Toolbar.textRight": "右: ", "SSE.Views.Toolbar.textRightBorders": "右边框", - "SSE.Views.Toolbar.textRotateDown": "旋转90°", - "SSE.Views.Toolbar.textRotateUp": "旋转270°", + "SSE.Views.Toolbar.textRotateDown": "向下旋转文字", + "SSE.Views.Toolbar.textRotateUp": "向上旋转文字", "SSE.Views.Toolbar.textScale": "缩放", "SSE.Views.Toolbar.textScaleCustom": "自定义", "SSE.Views.Toolbar.textSelection": "从当前选择", @@ -3379,14 +3387,14 @@ "SSE.Views.Toolbar.textTop": "顶边: ", "SSE.Views.Toolbar.textTopBorders": "上边框", "SSE.Views.Toolbar.textUnderline": "下划线", - "SSE.Views.Toolbar.textVertical": "纵向文本", + "SSE.Views.Toolbar.textVertical": "竖排文字", "SSE.Views.Toolbar.textWidth": "宽度", "SSE.Views.Toolbar.textZoom": "放大", "SSE.Views.Toolbar.tipAlignBottom": "底部对齐", "SSE.Views.Toolbar.tipAlignCenter": "居中对齐", "SSE.Views.Toolbar.tipAlignJust": "正当", "SSE.Views.Toolbar.tipAlignLeft": "左对齐", - "SSE.Views.Toolbar.tipAlignMiddle": "对齐中间", + "SSE.Views.Toolbar.tipAlignMiddle": "垂直居中", "SSE.Views.Toolbar.tipAlignRight": "右对齐", "SSE.Views.Toolbar.tipAlignTop": "顶端对齐", "SSE.Views.Toolbar.tipAutofilter": "排序和过滤", @@ -3429,14 +3437,6 @@ "SSE.Views.Toolbar.tipInsertTable": "插入表", "SSE.Views.Toolbar.tipInsertText": "插入文字", "SSE.Views.Toolbar.tipInsertTextart": "插入文字艺术", - "SSE.Views.Toolbar.tipMarkersArrow": "箭头项目符号", - "SSE.Views.Toolbar.tipMarkersCheckmark": "选中标记项目符号", - "SSE.Views.Toolbar.tipMarkersDash": "划线项目符号", - "SSE.Views.Toolbar.tipMarkersFRhombus": "实心菱形项目符号", - "SSE.Views.Toolbar.tipMarkersFRound": "实心圆形项目符号", - "SSE.Views.Toolbar.tipMarkersFSquare": "实心方形项目符号", - "SSE.Views.Toolbar.tipMarkersHRound": "空心圆形项目符号", - "SSE.Views.Toolbar.tipMarkersStar": "星形项目符号", "SSE.Views.Toolbar.tipMerge": "合并且居中", "SSE.Views.Toolbar.tipNone": "无", "SSE.Views.Toolbar.tipNumFormat": "数字格式", @@ -3484,9 +3484,9 @@ "SSE.Views.Toolbar.txtGeneral": "常规", "SSE.Views.Toolbar.txtInteger": "整数", "SSE.Views.Toolbar.txtManageRange": "名称管理", - "SSE.Views.Toolbar.txtMergeAcross": "合并", + "SSE.Views.Toolbar.txtMergeAcross": "跨越合并", "SSE.Views.Toolbar.txtMergeCells": "合并单元格", - "SSE.Views.Toolbar.txtMergeCenter": "合并与中心", + "SSE.Views.Toolbar.txtMergeCenter": "合并后居中", "SSE.Views.Toolbar.txtNamedRange": "命名范围", "SSE.Views.Toolbar.txtNewRange": "定义名称", "SSE.Views.Toolbar.txtNoBorders": "无边框", @@ -3520,13 +3520,13 @@ "SSE.Views.Toolbar.txtScientific": "科学", "SSE.Views.Toolbar.txtSearch": "搜索", "SSE.Views.Toolbar.txtSort": "分类", - "SSE.Views.Toolbar.txtSortAZ": "排序升序", - "SSE.Views.Toolbar.txtSortZA": "排序降序", + "SSE.Views.Toolbar.txtSortAZ": "升序排序", + "SSE.Views.Toolbar.txtSortZA": "降序排序", "SSE.Views.Toolbar.txtSpecial": "特别", "SSE.Views.Toolbar.txtTableTemplate": "格式为表格模板", "SSE.Views.Toolbar.txtText": "文本", "SSE.Views.Toolbar.txtTime": "时间", - "SSE.Views.Toolbar.txtUnmerge": "不牢固的单元格", + "SSE.Views.Toolbar.txtUnmerge": "取消合并", "SSE.Views.Toolbar.txtYen": "日元", "SSE.Views.Top10FilterDialog.textType": "显示", "SSE.Views.Top10FilterDialog.txtBottom": "底部", diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm index 5c9e82056..24c38680a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm @@ -88,6 +88,12 @@
  • To delete an Accent, you can right-click on it and select the Remove accent character, Delete char or Remove bar option from the menu (the available options differ depending on the selected accent).
  • To delete a row or a column of a Matrix, you can right-click on the placeholder within the row/column you need to delete, select the Delete option from the menu, then select Delete Row/Column.
  • +

    Convert equations

    +

    If you open an existing document containing equations which were created with an old version of equation editor (for example, with MS Office versions before 2007), you need to convert these equations to the Office Math ML format to be able to edit them.

    +

    To convert an equation, double-click it. The warning window will appear:

    +

    Convert equation

    +

    To convert the selected equation only, click the Yes button in the warning window. To convert all equations in this document, check the Apply to all equations box and click Yes.

    +

    Once the equation is converted, you can edit it.

    \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/convertequation.png b/apps/spreadsheeteditor/main/resources/help/en/images/convertequation.png new file mode 100644 index 000000000..be3e6bf99 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/convertequation.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/InsertEquation.htm b/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/InsertEquation.htm index 95320f39e..5edb51d54 100644 --- a/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/InsertEquation.htm +++ b/apps/spreadsheeteditor/main/resources/help/fr/UsageInstructions/InsertEquation.htm @@ -79,6 +79,12 @@
  • Pour supprimer une Accentuation, vous pouvez cliquer avec le bouton droit de la souris et sélectionner l'option Supprimer le caractère d'accentuation, Supprimer le caractère ou Supprimer la barre dans le menu (les options disponibles varient en fonction de l'accent sélectionné).
  • Pour supprimer une ligne ou une colonne d'une Matrice, vous pouvez cliquer avec le bouton droit de la souris sur l'espace réservé dans la ligne/colonne à supprimer, sélectionner l'option Supprimer dans le menu, puis sélectionner Supprimer la ligne/colonne.
  • +

    Conversion des équations

    +

    Si vous disposez d'un document contenant des équations créées avec l'éditeur d'équations dans les versions plus anciennes (par exemple, avec MS Office version antérieure à 2007) vous devez convertir toutes les équations au format Office Math ML pour pouvoir les modifier.

    +

    Faites un double-clic sur l'équation pour la convertir. La fenêtre d'avertissement s'affiche:

    +

    Conversion des équations

    +

    Pour ne convertir que l'équation sélectionnée, cliquez sur OK dans la fenêtre d'avertissement. Pour convertir toutes les équations du document, activez la case Appliquer à toutes les équations et cliquez sur OK.

    +

    Une fois converti, l'équation peut être modifiée.

    \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/fr/images/convertequation.png b/apps/spreadsheeteditor/main/resources/help/fr/images/convertequation.png new file mode 100644 index 000000000..6a695b3f4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/fr/images/convertequation.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm index 430c05aed..77305fa76 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm @@ -90,6 +90,12 @@
  • Чтобы удалить Диакритический знак, можно щелкнуть по нему правой кнопкой мыши и выбрать из контекстного меню пункт Удалить диакритический знак, Удалить символ или Удалить черту (доступные опции отличаются в зависимости от выбранного диакритического знака).
  • Чтобы удалить строку или столбец Матрицы, можно щелкнуть правой кнопкой мыши по полю для заполнения внутри строки/столбца, который требуется удалить, выбрать из контекстного меню пункт Удалить, а затем - Удалить строку/столбец.
  • +

    Преобразование уравнений

    +

    Если вы открываете существующий документ с уравнениями, которые были созданы с помощью старой версии редактора уравнений (например, в версиях, предшествующих MS Office 2007), эти уравнения необходимо преобразовать в формат Office Math ML, чтобы иметь возможность их редактировать.

    +

    Чтобы преобразовать уравнение, дважды щелкните по нему. Откроется окно с предупреждением:

    +

    Преобразование уравнений

    +

    Чтобы преобразовать только выбранное уравнение, нажмите кнопку Да в окне предупреждения. Чтобы преобразовать все уравнения в документе, поставьте галочку Применить ко всем уравнениям и нажмите кнопку Да.

    +

    После преобразования уравнения вы сможете его редактировать.

    \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/convertequation.png b/apps/spreadsheeteditor/main/resources/help/ru/images/convertequation.png index 3ad46ae4e..c6be81229 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/convertequation.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/convertequation.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/file-template.svg b/apps/spreadsheeteditor/main/resources/img/file-template.svg index 325f0a78f..a95551732 100644 --- a/apps/spreadsheeteditor/main/resources/img/file-template.svg +++ b/apps/spreadsheeteditor/main/resources/img/file-template.svg @@ -1,5 +1,5 @@ - + @@ -23,5 +23,5 @@ - + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/img/recent-file.svg b/apps/spreadsheeteditor/main/resources/img/recent-file.svg index cdf3228e7..80e7954ca 100644 --- a/apps/spreadsheeteditor/main/resources/img/recent-file.svg +++ b/apps/spreadsheeteditor/main/resources/img/recent-file.svg @@ -1,7 +1,7 @@ - + - + diff --git a/apps/spreadsheeteditor/main/resources/less/leftmenu.less b/apps/spreadsheeteditor/main/resources/less/leftmenu.less index 822e4ab0b..33c621b7e 100644 --- a/apps/spreadsheeteditor/main/resources/less/leftmenu.less +++ b/apps/spreadsheeteditor/main/resources/less/leftmenu.less @@ -39,8 +39,40 @@ height: 125px; cursor: pointer; - svg&:hover { - opacity:0.85; + .svg-format- { + &xlsx { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/xlsx.svg) no-repeat center"; + } + &pdf { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/pdf.svg) no-repeat center"; + } + &ods { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/ods.svg) no-repeat center"; + } + &csv { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/csv.svg) no-repeat center"; + } + &xltx { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/xltx.svg) no-repeat center"; + } + &pdfa { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/pdfa.svg) no-repeat center"; + } + &ots { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/ots.svg) no-repeat center"; + } + &xlsm { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/xlsm.svg) no-repeat center"; + } + } + + div { + display: block; + height: 100%; + width: 100%; + &:hover { + opacity: 0.85; + } } } @@ -49,6 +81,19 @@ width: 96px; height: 96px; cursor: pointer; + + .svg-format-blank { + background: ~"url(../../../apps/common/main/resources/img/doc-formats/blank.svg) no-repeat center" ; + } + .svg-file-template{ + background: ~"url(resources/img/file-template.svg) no-repeat center" ; + } + + div { + display: block; + height: 100%; + width: 100%; + } } #file-menu-panel { @@ -376,9 +421,12 @@ width: 25px; height: 25px; margin-top: 1px; - svg { + div { width: 100%; height: 100%; + .svg-file-recent { + background: ~"url(resources/img/recent-file.svg) no-repeat top"; + } } } diff --git a/apps/spreadsheeteditor/main/resources/less/statusbar.less b/apps/spreadsheeteditor/main/resources/less/statusbar.less index 86e9f9842..44bf51149 100644 --- a/apps/spreadsheeteditor/main/resources/less/statusbar.less +++ b/apps/spreadsheeteditor/main/resources/less/statusbar.less @@ -10,8 +10,6 @@ } #status-zoom-box { - width: 160px; - //float: right; padding-top: 3px; position: absolute; @@ -370,7 +368,7 @@ .status-label { .font-weight-bold(); color: @text-normal; - margin-top: 5px; + margin-top: 6px; width: 100%; text-align: center; } diff --git a/apps/spreadsheeteditor/mobile/locale/az.json b/apps/spreadsheeteditor/mobile/locale/az.json index 8f7b5f46e..3ec04cf8f 100644 --- a/apps/spreadsheeteditor/mobile/locale/az.json +++ b/apps/spreadsheeteditor/mobile/locale/az.json @@ -361,7 +361,12 @@ "txtSorting": "Sıralama", "txtSortSelected": "Seçilmiş sıralama", "txtYes": "Bəli", - "textOk": "Ok" + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textOk": "Ok", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Xəbərdarlıq", diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index 6fa9a4363..b6cb82ab2 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -277,16 +277,19 @@ "sCatMathematic": "Math and trigonometry", "sCatStatistical": "Statistical", "sCatTextAndData": "Text and data", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", "textBack": "Back", "textCancel": "Cancel", "textChart": "Chart", "textComment": "Comment", + "textDataTableHint": "Returns the data cells of the table or specified table columns", "textDisplay": "Display", "textEmptyImgUrl": "You need to specify the image URL.", "textExternalLink": "External Link", "textFilter": "Filter", "textFunction": "Function", "textGroups": "CATEGORIES", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", "textImage": "Image", "textImageURL": "Image URL", "textInsert": "Insert", @@ -307,6 +310,8 @@ "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns", "txtExpand": "Expand and sort", "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index ba281b896..4e287043e 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -363,7 +363,12 @@ "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", "txtNo": "No", "txtYes": "Yes", - "textOk": "Ok" + "textOk": "Ok", + "textThisRowHint": "Choose only this row of the specified column", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index fdff11845..996f72bbd 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -11,8 +11,8 @@ "Common": { "Collaboration": { "notcriticalErrorTitle": "Advertiment", - "textAddComment": "Afegeix un comentari", - "textAddReply": "Afegeix una resposta", + "textAddComment": "Afegir comentari", + "textAddReply": "Afegir Resposta", "textBack": "Enrere", "textCancel": "Cancel·la", "textCollaboration": "Col·laboració", @@ -24,8 +24,8 @@ "textEditComment": "Edita el comentari", "textEditReply": "Edita la resposta", "textEditUser": "Usuaris que editen el fitxer:", - "textMessageDeleteComment": "Segur que vols suprimir aquest comentari?", - "textMessageDeleteReply": "Segur que vols suprimir aquesta resposta?", + "textMessageDeleteComment": "Voleu suprimir aquest comentari?", + "textMessageDeleteReply": "Voleu suprimir aquesta resposta?", "textNoComments": "Aquest document no conté comentaris", "textOk": "D'acord", "textReopen": "Torna a obrir", @@ -41,9 +41,9 @@ }, "ContextMenu": { "errorCopyCutPaste": "Les accions copia, talla i enganxa que utilitzen el menú contextual només s'executaran en el fitxer actual.", - "errorInvalidLink": "La referència d'enllaç no existeix. Corregeix l'enllaç o suprimeix-lo.", - "menuAddComment": "Afegeix un comentari", - "menuAddLink": "Afegeix un enllaç", + "errorInvalidLink": "La referència d'enllaç no existeix. Corregiu l'enllaç o suprimiu-lo.", + "menuAddComment": "Afegir comentari", + "menuAddLink": "Afegir Enllaç", "menuCancel": "Cancel·la", "menuCell": "Cel·la", "menuDelete": "Suprimeix", @@ -62,24 +62,24 @@ "notcriticalErrorTitle": "Advertiment", "textCopyCutPasteActions": "Accions de copia, talla i enganxa ", "textDoNotShowAgain": "No ho mostris més", - "warnMergeLostData": "Només les dades de la cel·la superior esquerra romandran a la cel·la combinada.
    Segur que vols continuar?" + "warnMergeLostData": "Només les dades de la cel·la superior esquerra romandran a la cel·la combinada.
    Voleu continuar?" }, "Controller": { "Main": { "criticalErrorTitle": "Error", - "errorAccessDeny": "No tens permís per realitzar aquesta acció.
    Contacta amb el teu administrador.", + "errorAccessDeny": "No teniu permís per realitzar aquesta acció.
    Contacteu amb l'administrador.", "errorOpensource": "Mitjançant la versió gratuïta de la comunitat, només podeu obrir documents en mode lectura. Per accedir als editors de web per a mòbils, cal una llicència comercial.", "errorProcessSaveResult": "No s'ha pogut desar.", "errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", "errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", - "leavePageText": "Tens canvis no desats en aquest document. Fes clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Fes clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", + "leavePageText": "Teniu canvis no desats en aquest document. Feu clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", "notcriticalErrorTitle": "Advertiment", "SDK": { - "txtAccent": "Èmfasi", + "txtAccent": "Accent", "txtAll": "(Tots)", - "txtArt": "El teu text aquí", + "txtArt": "El vostre text aquí", "txtBlank": "(en blanc)", - "txtByField": "%1 de %2", + "txtByField": "%1 del %2", "txtClearFilter": "Suprimeix el filtre (Alt + C)", "txtColLbls": "Etiquetes de la columna", "txtColumn": "Columna", @@ -136,12 +136,12 @@ "txtYears": "Anys" }, "textAnonymous": "Anònim", - "textBuyNow": "Visita el lloc web", + "textBuyNow": "Visiteu el lloc web", "textClose": "Tanca", - "textContactUs": "Contacta amb vendes", - "textCustomLoader": "No tens els permisos per canviar el carregador. Contacta amb el nostre departament de vendes per obtenir un pressupost.", + "textContactUs": "Contacteu amb vendes", + "textCustomLoader": "No teniu els permisos per canviar el carregador. Contacteu amb el nostre departament de vendes per obtenir un pressupost.", "textGuest": "Convidat", - "textHasMacros": "El fitxer conté macros automàtiques.
    Les vols executar?", + "textHasMacros": "El fitxer conté macros automàtiques.
    Les voleu executar?", "textNo": "No", "textNoChoices": "No hi ha opcions per omplir la cel·la.
    Només es poden seleccionar valors de text de la columna per substituir-los.", "textNoLicenseTitle": "S'ha assolit el límit de llicència", @@ -154,83 +154,83 @@ "textYes": "Sí", "titleServerVersion": "S'ha actualitzat l'editor", "titleUpdateVersion": "S'ha canviat la versió", - "warnLicenseExceeded": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb el vostre administrador per a més informació.", - "warnLicenseLimitedNoAccess": "La llicència ha caducat. No tens accés a la funció d'edició de documents. Contacta amb el teu administrador.", - "warnLicenseLimitedRenewed": "Cal renovar la llicència. Tens accés limitat a la funció d'edició de documents.
    Contacta amb el teu administrador per obtenir accés total.", - "warnLicenseUsersExceeded": "Has arribat al límit d'usuari per a %1 editors. Contacta amb el teu administrador per a més informació.", - "warnNoLicense": "Has arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacta amb l'equip de vendes %1 per a les condicions d'una actualització personal.", - "warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", - "warnProcessRightsChange": "No tens permís per editar el fitxer." + "warnLicenseExceeded": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'administrador per a més informació.", + "warnLicenseLimitedNoAccess": "La llicència ha caducat. No teniu accés a la funció d'edició de documents. Contacteu amb l'administrador.", + "warnLicenseLimitedRenewed": "Cal renovar la llicència. Teniu accés limitat a la funció d'edició de documents.
    Contacteu amb l'administrador per obtenir accés total", + "warnLicenseUsersExceeded": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb el vostre administrador per a més informació.", + "warnNoLicense": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'equip de vendes %1 per a les condicions d'una actualització personal.", + "warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.", + "warnProcessRightsChange": "No teniu permís per editar el fitxer." } }, "Error": { "convertationTimeoutText": "S'ha superat el temps de conversió.", - "criticalErrorExtText": "Prem «D'acord» per tornar a la llista de documents.", + "criticalErrorExtText": "Premeu «D'acord» per tornar a la llista de documents.", "criticalErrorTitle": "Error", "downloadErrorText": "S'ha produït un error en la baixada", - "errorAccessDeny": "No tens permís per realitzar aquesta acció.
    Contacta amb el teu administrador.", - "errorArgsRange": "Hi ha un error en la fórmula.
    l'interval d'arguments no és correcte.", - "errorAutoFilterChange": "Aquesta operació no està permesa, perquè intenta canviar les cel·les d'una taula del teu full de càlcul.", - "errorAutoFilterChangeFormatTable": "Aquesta operació no pot fer per a les cel·les seleccionades, perquè no pots moure una part de la taula.
    Selecciona un altre interval de dades perquè es desplaci tota la taula i torna-ho a provar.", - "errorAutoFilterDataRange": "Aquesta operació no es pot fer per a l'interval de cel·les seleccionat.
    Selecciona un interval de dades uniforme dins o fora de la taula i torna-ho a provar.", - "errorAutoFilterHiddenRange": "Aquesta operació no es pot fer perquè l'àrea conté cel·les filtrades.
    Mostra els elements filtrats i torna-ho a provar.", + "errorAccessDeny": "No teniu permís per realitzar aquesta acció.
    Contacteu amb l'administrador.", + "errorArgsRange": "Hi ha un error en la fórmula.
    L'interval d'arguments no és correcte.", + "errorAutoFilterChange": "Aquesta operació no està permesa, perquè intenta canviar les cel·les d'una taula del full de càlcul.", + "errorAutoFilterChangeFormatTable": "Aquesta operació no es pot fer per a les cel·les seleccionades, perquè no podeu moure una part de la taula.
    Seleccioneu un altre interval de dades perquè es desplaci tota la taula i torneu-ho a provar.", + "errorAutoFilterDataRange": "Aquesta operació no es pot fer per a l'interval de cel·les seleccionat.
    Seleccioneu un interval de dades uniforme dins o fora de la taula i torneu-ho a provar.", + "errorAutoFilterHiddenRange": "Aquesta operació no es pot fer perquè l'àrea conté cel·les filtrades.
    Mostreu els elements filtrats i torneu-ho a provar.", "errorBadImageUrl": "L'URL de la imatge no és correcte", - "errorCannotUseCommandProtectedSheet": "No podeu utilitzar aquesta ordre en un full protegit. Per utilitzar aquesta ordre, cal desprotegir el full.
    És possible que se us demani que introduïu una contrasenya.", - "errorChangeArray": "No pots canviar part d'una matriu.", - "errorChangeOnProtectedSheet": "La cel·la o el gràfic que intentes canviar es troba en un full protegit. Per fer un canvi, desprotegeix el full. És possible que et demani que introdueixis una contrasenya.", - "errorConnectToServer": "No es pot desar aquest document. Comprova la configuració de la vostra connexió o contacta amb el teu administrador.
    Quan facis clic al botó «D'acord», et demanarà que baixis el document.", - "errorCopyMultiselectArea": "Aquesta ordre no es pot utilitzar amb diverses seleccions.
    Selecciona un interval únic i torna-ho a provar.", + "errorCannotUseCommandProtectedSheet": "No podeu utilitzar aquesta ordre en un full protegit. Per utilitzar aquesta ordre, cal desprotegir el full.
    És possible que us demani que introduïu una contrasenya.", + "errorChangeArray": "No podeu canviar part d'una matriu.", + "errorChangeOnProtectedSheet": "La cel·la o el gràfic que intenteu canviar es troba en un full protegit. Per fer un canvi, desprotegiu el full. És possible que us demani que introduïu una contrasenya.", + "errorConnectToServer": "No es pot desar aquest document. Comproveu la configuració de la vostra connexió o contacteu amb l'administrador.
    Quan feu clic al botó «D'acord», us demanarà que baixeu el document.", + "errorCopyMultiselectArea": "Aquesta ordre no es pot utilitzar amb diverses seleccions.
    Seleccioneu un interval únic i torneu-ho a provar.", "errorCountArg": "Hi ha un error en la fórmula.
    El nombre d'arguments no és vàlid.", "errorCountArgExceed": "Hi ha un error en la fórmula.
    S'ha superat el nombre màxim d'arguments.", "errorCreateDefName": "No es poden editar els intervals de nom existents i no se'n poden crear de nous
    en aquest moment perquè algú els ha obert.", - "errorDatabaseConnection": "Error extern.
    Error de connexió amb la base de dades. Contacta amb el servei d'assistència tècnica.", + "errorDatabaseConnection": "Error extern.
    Error de connexió amb la base de dades. Contacteu amb el servei d'assistència tècnica.", "errorDataEncrypted": "Els canvis xifrats que s'han rebut no es poden desxifrar.", "errorDataRange": "L'interval de dades no és correcte.", - "errorDataValidate": "El valor que has introduït no és vàlid.
    Un usuari ha restringit els valors que es poden introduir en aquesta cel·la.", + "errorDataValidate": "El valor que heu introduït no és vàlid.
    Un usuari ha restringit els valors que es poden introduir en aquesta cel·la.", "errorDefaultMessage": "Codi d'error:%1", - "errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
    Utilitza l'opció \"Descarregar\" per desar la còpia de seguretat del fitxer localment.", + "errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
    Utilitzeu l'opció \"Descarregar\" per desar la còpia de seguretat del fitxer en un disc local.", "errorFilePassProtect": "El fitxer està protegit amb contrasenya i no s'ha pogut obrir.", - "errorFileRequest": "Error extern.
    Sol·licitud de fitxer. Contacta amb el servei d'assistència tècnica.", - "errorFileSizeExceed": "La mida del fitxer supera el límit del teu servidor.
    Contacta amb el teu administrador per a més detalls.", - "errorFileVKey": "Error extern.
    La clau de seguretat no és correcta. Contacta amb el servei d'assistència tècnica.", + "errorFileRequest": "Error extern.
    Sol·licitud de fitxer. Contacteu amb el servei d'assistència tècnica.", + "errorFileSizeExceed": "La mida del fitxer supera el límit del vostre servidor.
    Contacteu amb l'administrador per a més detalls.", + "errorFileVKey": "Error extern.
    La clau de seguretat no és correcta. Contacteu amb el servei d'assistència tècnica.", "errorFillRange": "No s'ha pogut omplir l'interval de cel·les seleccionat.
    Totes les cel·les combinades han de tenir la mateixa mida.", "errorFormulaName": "Hi ha un error en la fórmula.
    El nom de la fórmula no és correcte.", "errorFormulaParsing": "Error intern en analitzar la fórmula.", - "errorFrmlMaxLength": "No pots afegir aquesta fórmula perquè la seva longitud supera el nombre de caràcters permesos.
    Edita-la i torna-ho a provar.", - "errorFrmlMaxReference": "No pots introduir aquesta fórmula perquè té massa valors,
    referències de cel·les, i/o noms.", - "errorFrmlMaxTextLength": "Els valors del text en les fórmules es limiten a 255 caràcters.
    Usa la funció CONCATENA o l'operador de concatenació(&)", - "errorFrmlWrongReferences": "La funció fa referència a un full que no existeix.
    Comprova les dades i torna-ho a provar.", - "errorInvalidRef": "Introdueix un nom correcte per a la selecció o una referència vàlida a la qual accedir.", + "errorFrmlMaxLength": "No podeu afegir aquesta fórmula perquè la seva longitud supera el nombre de caràcters permesos.
    Editeu-la i torneu-ho a provar.", + "errorFrmlMaxReference": "No podeu introduir aquesta fórmula perquè té massa valors, referències de cel·les,
    i/o noms.", + "errorFrmlMaxTextLength": "Els valors del text en les fórmules es limiten a 255 caràcters.
    Useu la funció CONCATENA o l'operador de concatenació(&)", + "errorFrmlWrongReferences": "La funció fa referència a un full que no existeix.
    Comproveu les dades i torneu-ho a provar.", + "errorInvalidRef": "Introduïu un nom correcte per a la selecció o una referència vàlida per anar-hi.", "errorKeyEncrypt": "Descriptor de claus desconegut", "errorKeyExpire": "El descriptor de claus ha caducat", - "errorLoadingFont": "No s'han carregat els tipus de lletra.
    Contacta amb l'administrador del Servidor de Documents.", + "errorLoadingFont": "No s'han carregat els tipus de lletra.
    Contacteu amb l'administrador del servidor de documents.", "errorLockedAll": "Aquesta operació no es pot fer perquè un altre usuari ha bloquejat el full.", - "errorLockedCellPivot": "No pots canviar les dades d'una taula dinàmica", + "errorLockedCellPivot": "No podeu canviar les dades d'una taula dinàmica", "errorLockedWorksheetRename": "En aquest moment no es pot canviar el nom del full de càlcul, perquè ja ho fa un altre usuari", "errorMaxPoints": "El nombre màxim de punts de la sèrie per gràfic és de 4096.", "errorMoveRange": "No es pot canviar una part d'una cel·la combinada", "errorMultiCellFormula": "No es permeten fórmules de matriu de múltiples cel·les a les taules.", "errorOpenWarning": "La longitud d'una de les fórmules del fitxer superava el nombre de caràcters permès i s'ha eliminat.", - "errorOperandExpected": "La sintaxi de la funció introduïda no és correcta. Comprova si has omès algun dels parèntesis - '(' o ')'.", - "errorPasteMaxRange": "L’àrea de copiar i enganxar no coincideixen. Selecciona una àrea de la mateixa mida o fes clic a la primera cel·la d'una fila per enganxar les cel·les copiades.", + "errorOperandExpected": "La sintaxi de la funció introduïda no és correcta. Comproveu si heu omès algun dels parèntesis - '(' o ')'.", + "errorPasteMaxRange": "L’àrea de copiar i enganxar no coincideixen. Seleccioneu una àrea de la mateixa mida o feu clic a la primera cel·la d'una fila per enganxar les cel·les copiades.", "errorPrintMaxPagesCount": "No es poden imprimir més de 1500 pàgines alhora amb la versió actual del programa.
    Aquesta restricció s'eliminarà en les pròximes versions.", - "errorSessionAbsolute": "La sessió d'edició del document ha caducat. Torna a carregar la pàgina.", - "errorSessionIdle": "Fa molt de temps que no s'edita el document. Torna a carregar la pàgina.", - "errorSessionToken": "S'ha interromput la connexió amb el servidor. Torna a carregar la pàgina.", - "errorStockChart": "L'ordre de la fila no és correcte. Per construir un gràfic de valors, posa les dades al full de càlcul en l'ordre següent:
    preu d'obertura, preu màxim, preu mínim, preu de tancament.", - "errorUnexpectedGuid": "Error extern.
    Guid inesperat. Contacta amb el servei d'assistència tècnica.", - "errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
    Abans de continuar treballant, has de baixar el fitxer o copiar-ne el contingut per assegurar-te que no es perdi res i, després, torna a carregar aquesta pàgina.", - "errorUserDrop": "Ara no es pot accedir al fitxer.", - "errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el teu pla", - "errorViewerDisconnect": "S'ha perdut la connexió. Encara pots veure el document,
    però no podràs baixar-lo fins que no es restableixi la connexió i es torni a carregar la pàgina.", + "errorSessionAbsolute": "La sessió d'edició del document ha caducat. Torneu a carregar la pàgina.", + "errorSessionIdle": "Fa molt de temps que no s'edita el document. Torneu a carregar la pàgina.", + "errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", + "errorStockChart": "L'ordre de la fila no és correcte. Per construir un gràfic de valors, poseu les dades al full de càlcul en l'ordre següent:
    preu d'obertura, preu màxim, preu mínim, preu de tancament.", + "errorUnexpectedGuid": "Error extern.
    Guid inesperat. Contacteu amb el servei d'assistència tècnica.", + "errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
    Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, torneu a carregar aquesta pàgina.", + "errorUserDrop": "No es pot accedir al fitxer.", + "errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el vostre pla", + "errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu veure el document,
    però no el podreu baixar fins que es restableixi la connexió i es torni a carregar la pàgina.", "errorWrongBracketsCount": "Hi ha un error en la fórmula.
    El nombre de parèntesis no és correcte.", - "errorWrongOperator": "S'ha produït un error en la fórmula introduïda. L'operador que s'utilitza no és correcte.
    Corregeix l'error.", + "errorWrongOperator": "\nS'ha produït un error en la fórmula introduïda. S'utilitza un operador incorrecte.
    Corregiu l'error.", "notcriticalErrorTitle": "Advertiment", "openErrorText": "S'ha produït un error en obrir el fitxer", "pastInMergeAreaError": "No es pot canviar una part d'una cel·la combinada", "saveErrorText": "S'ha produït un error en desar el fitxer", - "scriptLoadError": "La connexió és massa lenta, alguns dels components no s'han pogut carregar. Torna a carregar la pàgina.", - "textErrorPasswordIsNotCorrect": "La contrasenya que has introduït no és correcta.
    Verifica que la tecla Bloq Maj està desactivada i assegura't que fas servir les majúscules correctes.", + "scriptLoadError": "La connexió és massa lenta, alguns dels components no s'han pogut carregar. Torneu a carregar la pàgina.", + "textErrorPasswordIsNotCorrect": "La contrasenya que heu introduït no és correcta.
    Verifiqueu que la tecla Bloq Maj està desactivada i assegureu-vos que feu servir les majúscules correctes.", "unknownErrorText": "Error desconegut.", "uploadImageExtMessage": "Format d'imatge desconegut.", "uploadImageFileCountMessage": "No s'ha carregat cap imatge.", @@ -240,9 +240,9 @@ "advDRMPassword": "Contrasenya", "applyChangesTextText": "S'estant carregant les dades...", "applyChangesTitleText": "S'estan carregant les dades", - "confirmMoveCellRange": "L'interval de cel·les de destinació pot contenir dades. Vols continuar amb l'operació?", + "confirmMoveCellRange": "L'interval de cel·les de destinació pot contenir dades. Voleu continuar amb l'operació?", "confirmPutMergeRange": "Les dades d'origen contenen cel·les combinades.
    La combinació es desfarà abans que s'enganxin a la taula.", - "confirmReplaceFormulaInTable": "Les fórmules de la fila de capçalera s'eliminaran i es convertiran en text estàtic.
    Vols continuar?", + "confirmReplaceFormulaInTable": "Les fórmules de la fila de capçalera s'eliminaran i es convertiran en text estàtic.
    Voleu continuar?", "downloadTextText": "S'està baixant el document...", "downloadTitleText": "S'està baixant el document", "loadFontsTextText": "S'estan carregant les dades...", @@ -265,17 +265,17 @@ "saveTextText": "S'està desant el document...", "saveTitleText": "S'està desant el document", "textCancel": "Cancel·la", - "textErrorWrongPassword": "La contrasenya que has introduït no és correcta.", + "textErrorWrongPassword": "La contrasenya que heu introduït no és correcta.", "textLoadingDocument": "S'està carregant el document", "textNo": "No", "textOk": "D'acord", "textUnlockRange": "Desbloca l'interval", - "textUnlockRangeWarning": "Un interval que intentes canviar està protegit amb contrasenya.", + "textUnlockRangeWarning": "Un interval que intenteu canviar està protegit amb contrasenya.", "textYes": "Sí", "txtEditingMode": "Estableix el mode d'edició ...", "uploadImageTextText": "S'està carregant la imatge...", "uploadImageTitleText": "S'està carregant la imatge", - "waitText": "Espera..." + "waitText": "Espereu..." }, "Statusbar": { "notcriticalErrorTitle": "Advertiment", @@ -291,8 +291,8 @@ "textHide": "Amaga", "textMore": "Més", "textMove": "Desplaça", - "textMoveBefore": "Desplaceu abans del full", - "textMoveToEnd": "Aneu al final", + "textMoveBefore": "Desplaça abans del full", + "textMoveToEnd": "(Ves al final)", "textOk": "D'acord", "textRename": "Canvia el nom", "textRenameSheet": "Canvia el nom del full", @@ -303,15 +303,15 @@ "textTabColor": "Tab Color" }, "Toolbar": { - "dlgLeaveMsgText": "Tens canvis no desats en aquest document. Fes clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Fes clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", - "dlgLeaveTitleText": "Estàs sortint de l'aplicació", + "dlgLeaveMsgText": "Teniu canvis no desats en aquest document. Feu clic a \"Queda't en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", + "dlgLeaveTitleText": "Esteu sortint de l'aplicació", "leaveButtonText": "Surt d'aquesta pàgina", "stayButtonText": "Queda't en aquesta Pàgina" }, "View": { "Add": { "errorMaxRows": "ERROR! El nombre màxim de sèries de dades per gràfic és de 255.", - "errorStockChart": "L'ordre de la fila no és correcte. Per construir un gràfic de valors, posa les dades al full de càlcul en l'ordre següent:
    preu d'obertura, preu màxim, preu mínim, preu de tancament.", + "errorStockChart": "L'ordre de la fila no és correcte. Per construir un gràfic de valors, poseu les dades al full de càlcul en l'ordre següent:
    preu d'obertura, preu màxim, preu mínim, preu de tancament.", "notcriticalErrorTitle": "Advertiment", "sCatDateAndTime": "Data i hora", "sCatEngineering": "Enginyeria", @@ -322,18 +322,21 @@ "sCatMathematic": "Matemàtiques i trigonometria", "sCatStatistical": "Estadístiques", "sCatTextAndData": "Text i dades", - "textAddLink": "Afegeix un enllaç", + "textAddLink": "Afegir Enllaç", "textAddress": "Adreça", + "textAllTableHint": "Retorna el contingut sencer de la taula o de les columnes de la taula especificades, incloses les capçaleres de columna, les dades i les files totals", "textBack": "Enrere", "textCancel": "Cancel·la", "textChart": "Gràfic", "textComment": "Comentari", + "textDataTableHint": "Retorna les cel·les de dades de la taula o les columnes de la taula especificades", "textDisplay": "Visualització", "textEmptyImgUrl": "Cal especificar l'URL de la imatge.", "textExternalLink": "Enllaç extern", "textFilter": "Filtre", "textFunction": "Funció", "textGroups": "CATEGORIES", + "textHeadersTableHint": "Retorna les capçaleres de columna de la taula o de les columnes de la taula especificades", "textImage": "Imatge", "textImageURL": "URL de la imatge ", "textInsert": "Insereix", @@ -354,9 +357,11 @@ "textShape": "Forma", "textSheet": "Full", "textSortAndFilter": "Ordena i filtra", + "textThisRowHint": "Tria només aquesta fila de la columna especificada", + "textTotalsTableHint": "Retorna el total de files de la taula o de les columnes de la taula especificades", "txtExpand": "Amplia i ordena", - "txtExpandSort": "No s'ordenaran les dades que hi ha al costat de la selecció. ¿Vols ampliar la selecció per incloure les dades adjacents o bé vols continuar i ordenar només les cel·les seleccionades?", - "txtLockSort": "Les dades es troben al costat de la teva selecció, però no tens els permisos suficients per canviar aquestes cel·les.
    Vols continuar amb la selecció actual?", + "txtExpandSort": "No s'ordenaran les dades que hi ha al costat de la selecció. ¿Voleu ampliar la selecció per incloure les dades adjacents o bé voleu continuar i ordenar només les cel·les seleccionades?", + "txtLockSort": "Les dades es troben al costat de la vostra selecció, però no teniu els permisos suficients per canviar aquestes cel·les.
    Voleu continuar amb la selecció actual?", "txtNo": "No", "txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"", "txtSorting": "Ordenació", @@ -367,15 +372,15 @@ "notcriticalErrorTitle": "Advertiment", "textAccounting": "Comptabilitat", "textActualSize": "Mida real", - "textAddCustomColor": "Afegeix un color personalitzat", + "textAddCustomColor": "Afegir Color Personalitzat", "textAddress": "Adreça", - "textAlign": "Alineació", + "textAlign": "Alinear", "textAlignBottom": "Alineació Inferior", "textAlignCenter": "Alineació al centre", "textAlignLeft": "Alineació a l'esquerra", "textAlignMiddle": "Alineació al mig", - "textAlignRight": "Alineació a la dreta", - "textAlignTop": "Alineació a dalt", + "textAlignRight": "Alineació dreta", + "textAlignTop": "Alineació superior", "textAllBorders": "Totes les vores", "textAngleClockwise": "Angle en sentit horari", "textAngleCounterclockwise": "Angle en sentit antihorari", @@ -418,7 +423,7 @@ "textEffects": "Efectes", "textEmptyImgUrl": "Cal especificar l'URL de la imatge.", "textEmptyItem": "{En blanc}", - "textErrorMsg": "Com a mínim has de triar un valor", + "textErrorMsg": "Com a mínim heu de triar un valor", "textErrorTitle": "Advertiment", "textEuro": "Euro", "textExternalLink": "Enllaç extern", @@ -443,7 +448,7 @@ "textHyperlink": "Enllaç", "textImage": "Imatge", "textImageURL": "URL de la imatge ", - "textIn": "A", + "textIn": "In", "textInnerBottom": "Part inferior interna", "textInnerTop": "Part superior interna", "textInsideBorders": "Vores internes", @@ -546,13 +551,13 @@ "txtSortLow2High": "Ordena de menor a major" }, "Settings": { - "advCSVOptions": "Tria les opcions CSV", - "advDRMEnterPassword": "La teva contrasenya:", + "advCSVOptions": "Trieu les opcions CSV", + "advDRMEnterPassword": "La vostra contrasenya:", "advDRMOptions": "El fitxer està protegit", "advDRMPassword": "Contrasenya", "closeButtonText": "Tanca el fitxer", "notcriticalErrorTitle": "Advertiment", - "textAbout": "Quant a...", + "textAbout": "Quant a", "textAddress": "Adreça", "textApplication": "Aplicació", "textApplicationSettings": "Configuració de l'aplicació", @@ -563,9 +568,9 @@ "textByRows": "Per files", "textCancel": "Cancel·la", "textCentimeter": "Centímetre", - "textChooseCsvOptions": "Tria les opcions CSV", - "textChooseDelimeter": "Tria separador", - "textChooseEncoding": "Tria codificació", + "textChooseCsvOptions": "Trieu les opcions CSV", + "textChooseDelimeter": "Trieu separador", + "textChooseEncoding": "Tria la codificació", "textCollaboration": "Col·laboració", "textColorSchemes": "Combinacions de colors", "textComment": "Comentari", @@ -609,7 +614,7 @@ "textMatchCell": "Coincidir la cel·la", "textNoTextFound": "No s'ha trobat el text", "textOk": "D'acord", - "textOpenFile": "Introdueix una contrasenya per obrir el fitxer", + "textOpenFile": "Introduïu una contrasenya per obrir el fitxer", "textOrientation": "Orientació", "textOwner": "Propietari", "textPoint": "Punt", @@ -640,7 +645,7 @@ "textUploaded": "S'ha carregat", "textValues": "Valors", "textVersion": "Versió", - "textWorkbook": "Llibre de treball", + "textWorkbook": "Llibre de càlcul", "txtColon": "Dos punts", "txtComma": "Coma", "txtDelimiter": "Delimitador", @@ -648,7 +653,7 @@ "txtEncoding": "Codificació", "txtIncorrectPwd": "La contrasenya no és correcta", "txtOk": "D'acord", - "txtProtected": "Un cop hagis introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer", + "txtProtected": "Un cop hàgiu introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer", "txtScheme1": "Office", "txtScheme10": "Mediana", "txtScheme11": "Metro", diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 004a9057e..0b530f889 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -324,16 +324,19 @@ "sCatTextAndData": "Text a data", "textAddLink": "Přidat odkaz", "textAddress": "Adresa", + "textAllTableHint": "Získá veškerý obsah tabulky, nebo definovaných sloupců tabulky tj. hlavičky, data a celkový počet řádků", "textBack": "Zpět", "textCancel": "Zrušit", "textChart": "Graf", "textComment": "Komentář", + "textDataTableHint": "Získá hodnotu buněk tabulky, nebo definovaných sloupců tabulky", "textDisplay": "Zobrazit", "textEmptyImgUrl": "Je třeba zadat URL adresu obrázku.", "textExternalLink": "Externí odkaz", "textFilter": "Filtrovat", "textFunction": "Funkce", "textGroups": "KATEGORIE", + "textHeadersTableHint": "Získá hlavičky v tabulce, nebo hlavičky definovaných sloupců tabulky", "textImage": "Obrázek", "textImageURL": "URL obrázku", "textInsert": "Vložit", @@ -354,6 +357,8 @@ "textShape": "Obrazec", "textSheet": "List", "textSortAndFilter": "Seřadit a filtrovat", + "textThisRowHint": "Zvolte pouze tento řádek zadaného sloupce", + "textTotalsTableHint": "Získá hodnotu celkového počtu řádků, nebo definovaných sloupců tabulky", "txtExpand": "Rozbalit a seřadit", "txtExpandSort": "Data vedle výběru nebudou seřazena. Chcete rozšířit výběr tak, aby zahrnoval sousední data, nebo pokračovat v seřazení pouze vybraných buněk?", "txtLockSort": "Poblíž Vašeho výběru existují data, nemáte však dostatečná oprávnění k úpravě těchto buněk.
    Chcete pokračovat s aktuálním výběrem?", diff --git a/apps/spreadsheeteditor/mobile/locale/da.json b/apps/spreadsheeteditor/mobile/locale/da.json index 3a43551a9..57554338d 100644 --- a/apps/spreadsheeteditor/mobile/locale/da.json +++ b/apps/spreadsheeteditor/mobile/locale/da.json @@ -350,7 +350,10 @@ "notcriticalErrorTitle": "Warning", "sCatStatistical": "Statistical", "sCatTextAndData": "Text and data", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", "textEmptyImgUrl": "You need to specify the image URL.", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", "textOk": "Ok", "textRequired": "Required", "textScreenTip": "Screen Tip", @@ -358,6 +361,8 @@ "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns", "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 04e9adcda..462d19e22 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -361,7 +361,12 @@ "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", "txtSorting": "Sortierung", "txtSortSelected": "Ausgewählte sortieren", - "txtYes": "Ja" + "txtYes": "Ja", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Warnung", diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 09e506c8c..8ef0760a4 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -291,6 +291,8 @@ "textHide": "Απόκρυψη", "textMore": "Περισσότερα", "textMove": "Μετακίνηση", + "textMoveBefore": "Μετακίνηση πριν το φύλλο", + "textMoveToEnd": "(Μετακίνηση στο τέλος)", "textOk": "Εντάξει", "textRename": "Μετονομασία", "textRenameSheet": "Μετονομασία Φύλλου", @@ -298,8 +300,6 @@ "textSheetName": "Όνομα Φύλλου", "textUnhide": "Αναίρεση απόκρυψης", "textWarnDeleteSheet": "Το φύλλο εργασίας ίσως περιέχει δεδομένα. Να συνεχιστεί η λειτουργία;", - "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)", "textTabColor": "Tab Color" }, "Toolbar": { @@ -361,7 +361,12 @@ "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", "txtSorting": "Ταξινόμηση", "txtSortSelected": "Ταξινόμηση επιλεγμένων", - "txtYes": "Ναι" + "txtYes": "Ναι", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Προειδοποίηση", diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index ae00341dc..7b3f29ccf 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -324,16 +324,19 @@ "sCatTextAndData": "Text and data", "textAddLink": "Add Link", "textAddress": "Address", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", "textBack": "Back", "textCancel": "Cancel", "textChart": "Chart", "textComment": "Comment", + "textDataTableHint": "Returns the data cells of the table or specified table columns", "textDisplay": "Display", "textEmptyImgUrl": "You need to specify the image URL.", "textExternalLink": "External Link", "textFilter": "Filter", "textFunction": "Function", "textGroups": "CATEGORIES", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", "textImage": "Image", "textImageURL": "Image URL", "textInsert": "Insert", @@ -354,6 +357,8 @@ "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns", "txtExpand": "Expand and sort", "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 0aea36ee9..aed29d2cb 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -67,7 +67,7 @@ "Controller": { "Main": { "criticalErrorTitle": "Error", - "errorAccessDeny": "Está intentando realizar una acción para la que no tiene derechos.
    Por favor, contacte con su administrador.", + "errorAccessDeny": "Está intentando realizar una acción para la que no tiene derechos.
    Contacte con su administrador.", "errorOpensource": "Utilizando la versión gratuita Community, puede abrir documentos sólo para visualizarlos. Para acceder a los editores web móviles, se requiere una licencia comercial.", "errorProcessSaveResult": "Error al guardar", "errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", @@ -168,7 +168,7 @@ "criticalErrorExtText": "Pulse \"OK\" para volver a la lista de documentos.", "criticalErrorTitle": "Error", "downloadErrorText": "Error al descargar.", - "errorAccessDeny": "Está intentando realizar una acción para la que no tiene derechos.
    Por favor, contacte con su administrador.", + "errorAccessDeny": "Está intentando realizar una acción para la que no tiene derechos.
    Contacte con su administrador.", "errorArgsRange": "Un error en la fórmula.
    Rango de argumentos incorrecto.", "errorAutoFilterChange": "La operación no está permitida ya que está intentando desplazar las celdas de una tabla de la hoja de cálculo.", "errorAutoFilterChangeFormatTable": "La operación no se puede realizar para las celdas seleccionadas ya que no es posible mover una parte de una tabla.
    Seleccione otro rango de datos para que se desplace toda la tabla y vuelva a intentarlo.", @@ -291,6 +291,8 @@ "textHide": "Ocultar", "textMore": "Más", "textMove": "Mover", + "textMoveBefore": "Mover antes de la hoja", + "textMoveToEnd": "(Mover al final)", "textOk": "OK", "textRename": "Renombrar", "textRenameSheet": "Renombrar hoja", @@ -298,8 +300,6 @@ "textSheetName": "Nombre de hoja", "textUnhide": "Volver a mostrar", "textWarnDeleteSheet": "La hoja de cálculo puede tener datos. ¿Continuar con la operación?", - "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)", "textTabColor": "Tab Color" }, "Toolbar": { @@ -324,16 +324,19 @@ "sCatTextAndData": "Texto y datos", "textAddLink": "Agregar enlace ", "textAddress": "Dirección", + "textAllTableHint": "Devuelve todo el contenido de la tabla o de las columnas de la tabla especificadas, incluyendo las cabeceras de las columnas, los datos y las filas totales", "textBack": "Atrás", "textCancel": "Cancelar", "textChart": "Gráfico", "textComment": "Comentario", + "textDataTableHint": "Devuelve las celdas de datos de la tabla o de las columnas de la tabla especificadas", "textDisplay": "Mostrar", "textEmptyImgUrl": "Necesita especificar la URL de la imagen.", "textExternalLink": "Enlace externo", "textFilter": "Filtro", "textFunction": "Función", "textGroups": "CATEGORÍAS", + "textHeadersTableHint": "Devuelve las cabeceras de las columnas de la tabla o de las columnas de la tabla especificadas", "textImage": "Imagen", "textImageURL": "URL de imagen", "textInsert": "Insertar", @@ -354,6 +357,8 @@ "textShape": "Forma", "textSheet": "Hoja", "textSortAndFilter": "Ordenar y filtrar", + "textThisRowHint": "Elija solo esta fila de la columna especificada", + "textTotalsTableHint": "Devuelve el total de filas de la tabla o de las columnas de la tabla especificadas", "txtExpand": "Expandir y ordenar", "txtExpandSort": "Los datos al lado del rango seleccionado no serán ordenados. ¿Quiere Usted expandir el rango seleccionado para incluir datos de las celdas adyacentes o continuar la ordenación del rango seleccionado?", "txtLockSort": "Se encuentran datos junto a su selección, pero no tiene permisos suficientes para modificar esas celdas.
    ¿Desea continuar con la selección actual?", @@ -418,7 +423,7 @@ "textEffects": "Efectos", "textEmptyImgUrl": "Necesita especificar la URL de la imagen.", "textEmptyItem": "{Vacías}", - "textErrorMsg": "Usted debe elegir por lo menos un valor", + "textErrorMsg": "Debe elegir por lo menos un valor", "textErrorTitle": "Advertencia", "textEuro": "Euro", "textExternalLink": "Enlace externo", @@ -547,7 +552,7 @@ }, "Settings": { "advCSVOptions": "Elegir los parámetros de CSV", - "advDRMEnterPassword": "Su contraseña, por favor:", + "advDRMEnterPassword": "Su contraseña:", "advDRMOptions": "Archivo protegido", "advDRMPassword": "Contraseña", "closeButtonText": "Cerrar archivo", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 1c0585b8f..ac0615a4b 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -324,16 +324,19 @@ "sCatTextAndData": "Texte et données", "textAddLink": "Ajouter un lien", "textAddress": "Adresse", + "textAllTableHint": "Renvoie le contenu complet du tableau ou des colonnes spécifiées du tableau, y compris les en-têtes de colonne, les données et le nombre total de lignes", "textBack": "Retour", "textCancel": "Annuler", "textChart": "Graphique", "textComment": "Commentaire", + "textDataTableHint": "Renvoie les cellules de données du tableau ou des colonnes spécifiées du tableau", "textDisplay": "Afficher", "textEmptyImgUrl": "Spécifiez l'URL de l'image", "textExternalLink": "Lien externe", "textFilter": "Filtre", "textFunction": "Fonction", "textGroups": "CATÉGORIES", + "textHeadersTableHint": "Renvoie les titres des colonnes du tableau ou les colonnes spécifiées du tableau.", "textImage": "Image", "textImageURL": "URL d'image", "textInsert": "Insérer", @@ -354,6 +357,8 @@ "textShape": "Forme", "textSheet": "Feuille", "textSortAndFilter": "Trier et filtrer", + "textThisRowHint": "Choisir uniquement cette ligne de la colonne spécifiée", + "textTotalsTableHint": "Renvoie le nombre total de lignes pour le tableau ou les colonnes spécifiées du tableau", "txtExpand": "Développer et trier", "txtExpandSort": "Les données situées à côté de la sélection ne seront pas triées. Souhaitez-vous développer la sélection pour inclure les données adjacentes ou souhaitez-vous continuer à trier iniquement les cellules sélectionnées ?", "txtLockSort": "Des données se trouvent à côté de votre sélection, mais vous n'avez pas les autorisations suffisantes pour modifier ces cellules.
    Voulez-vous continuer avec la sélection actuelle ?", @@ -417,7 +422,7 @@ "textEditLink": "Modifier le lien", "textEffects": "Effets", "textEmptyImgUrl": "Spécifiez l'URL de l'image", - "textEmptyItem": "{Blancs}", + "textEmptyItem": "{Vides}", "textErrorMsg": "Vous devez choisir au moins une valeur", "textErrorTitle": "Avertissement", "textEuro": "Euro", @@ -519,8 +524,8 @@ "textSheet": "Feuille", "textSize": "Taille", "textStyle": "Style", - "textTenMillions": "10000000", - "textTenThousands": "10000", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", "textText": "Texte", "textTextColor": "Couleur du texte", "textTextFormat": "Format du texte", diff --git a/apps/spreadsheeteditor/mobile/locale/gl.json b/apps/spreadsheeteditor/mobile/locale/gl.json index 51d55544e..dd7621b13 100644 --- a/apps/spreadsheeteditor/mobile/locale/gl.json +++ b/apps/spreadsheeteditor/mobile/locale/gl.json @@ -361,7 +361,12 @@ "txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"", "txtSorting": "Ordenación", "txtSortSelected": "Ordenar os obxectos seleccionados", - "txtYes": "Si" + "txtYes": "Si", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Aviso", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index bb98c5695..00e3ce3ed 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -361,7 +361,12 @@ "txtNotUrl": "Ennek a mezőnek URL formátumúnak kell lennie, pl.: „http://www.pelda.hu”", "txtSorting": "Rendezés", "txtSortSelected": "Kiválasztottak renezése", - "txtYes": "Igen" + "txtYes": "Igen", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Figyelmeztetés", diff --git a/apps/spreadsheeteditor/mobile/locale/id.json b/apps/spreadsheeteditor/mobile/locale/id.json new file mode 100644 index 000000000..4362082d8 --- /dev/null +++ b/apps/spreadsheeteditor/mobile/locale/id.json @@ -0,0 +1,686 @@ +{ + "About": { + "textAbout": "Tentang", + "textAddress": "Alamat", + "textBack": "Kembali", + "textEmail": "Email", + "textPoweredBy": "Didukung oleh", + "textTel": "Tel", + "textVersion": "Versi" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Peringatan", + "textAddComment": "Tambahkan Komentar", + "textAddReply": "Tambahkan Balasan", + "textBack": "Kembali", + "textCancel": "Batalkan", + "textCollaboration": "Kolaborasi", + "textComments": "Komentar", + "textDeleteComment": "Hapus Komentar", + "textDeleteReply": "Hapus Reply", + "textDone": "Selesai", + "textEdit": "Sunting", + "textEditComment": "Edit Komentar", + "textEditReply": "Edit Reply", + "textEditUser": "User yang sedang edit file:", + "textMessageDeleteComment": "Apakah Anda ingin menghapus komentar ini?", + "textMessageDeleteReply": "Apakah Anda ingin menghapus reply ini?", + "textNoComments": "Dokumen ini tidak memiliki komentar", + "textOk": "OK", + "textReopen": "Buka lagi", + "textResolve": "Selesaikan", + "textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.", + "textUsers": "Pengguna" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Warna", + "textStandartColors": "Warna Standar", + "textThemeColors": "Warna Tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, dan paste hanya akan dilakukan di file ini", + "errorInvalidLink": "Link referensi tidak ada. Silakan koreksi atau hapus link.", + "menuAddComment": "Tambahkan Komentar", + "menuAddLink": "Tambah tautan", + "menuCancel": "Batalkan", + "menuCell": "Sel", + "menuDelete": "Hapus", + "menuEdit": "Sunting", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Sembunyikan", + "menuMerge": "Merge", + "menuMore": "Lainnya", + "menuOpenLink": "Buka Link", + "menuShow": "Tampilkan", + "menuUnfreezePanes": "Batal Bekukan Panel", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "Tampilkan Komentar", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Peringatan", + "textCopyCutPasteActions": "Salin, Potong dan Tempel", + "textDoNotShowAgain": "Jangan tampilkan lagi", + "warnMergeLostData": "Hanya data dari sel atas-kiri akan tetap berada di sel merging.
    Apakah Anda ingin melanjutkan?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Kesalahan", + "errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
    Silakan hubungi admin Anda.", + "errorOpensource": "Menggunakan versi Komunitas gratis, Anda bisa membuka dokumen hanya untuk dilihat. Untuk mengakses editor web mobile, diperlukan lisensi komersial.", + "errorProcessSaveResult": "Penyimpanan gagal.", + "errorServerVersion": "Versi editor sudah di update. Halaman akan dimuat ulang untuk menerapkan perubahan.", + "errorUpdateVersion": "Versi file telah diubah. Halaman tidak akan dimuat ulang.", + "leavePageText": "Ada perubahan yang belum disimpan dalam dokumen ini. Klik 'Tetap di Halaman Ini' untuk menunggu simpan otomatis. Klik ‘Tinggalkan Halaman Ini’ untuk membatalkan semua perubahan yang belum disimpan.", + "notcriticalErrorTitle": "Peringatan", + "SDK": { + "txtAccent": "Aksen", + "txtAll": "(Semua)", + "txtArt": "Teks Anda di sini", + "txtBlank": "(kosong)", + "txtByField": "%1 dari %2", + "txtClearFilter": "Hapus Filter (Alt+C)", + "txtColLbls": "Label Kolom", + "txtColumn": "Kolom", + "txtConfidential": "Konfidensial", + "txtDate": "Tanggal", + "txtDays": "Hari", + "txtDiagramTitle": "Judul Grafik", + "txtFile": "File", + "txtGrandTotal": "Total keseluruhan", + "txtGroup": "Grup", + "txtHours": "jam", + "txtMinutes": "menit", + "txtMonths": "Bulan", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 atau %2", + "txtPage": "Halaman", + "txtPageOf": "Halaman %1 dari %2", + "txtPages": "Halaman", + "txtPreparedBy": "Disiapkan oleh", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Kuarter", + "txtRow": "Baris", + "txtRowLbls": "Label Baris", + "txtSeconds": "Detik", + "txtSeries": "Seri", + "txtStyle_Bad": "Buruk", + "txtStyle_Calculation": "Kalkulasi", + "txtStyle_Check_Cell": "Periksa Sel", + "txtStyle_Comma": "Koma", + "txtStyle_Currency": "Mata uang", + "txtStyle_Explanatory_Text": "Teks Penjelasan", + "txtStyle_Good": "Bagus", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Sel Terhubung", + "txtStyle_Neutral": "Netral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Catatan", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Persen", + "txtStyle_Title": "Judul", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Teks Warning", + "txtTab": "Tab", + "txtTable": "Tabel", + "txtTime": "Waktu", + "txtValues": "Nilai", + "txtXAxis": "Sumbu X", + "txtYAxis": "Sumbu Y", + "txtYears": "Tahun" + }, + "textAnonymous": "Anonim", + "textBuyNow": "Kunjungi website", + "textClose": "Tutup", + "textContactUs": "Hubungi sales", + "textCustomLoader": "Maaf, Anda tidak diizinkan untuk mengganti loader. Silakan hubungi tim sales kami untuk mendapatkan harga.", + "textGuest": "Tamu", + "textHasMacros": "File berisi macros otomatis.
    Apakah Anda ingin menjalankan macros?", + "textNo": "Tidak", + "textNoChoices": "Tidak ada pilihan untuk mengisi sel.
    Hanya nilai teks dari kolom yang bisa dipilih untuk diganti.", + "textNoLicenseTitle": "Batas lisensi sudah tercapai", + "textNoTextFound": "Teks tidak ditemukan", + "textOk": "OK", + "textPaidFeature": "Fitur berbayar", + "textRemember": "Ingat pilihan saya", + "textReplaceSkipped": "Penggantian telah dilakukan. Ada {0} yang dilewatkan.", + "textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti {0}", + "textYes": "Ya", + "titleServerVersion": "Editor mengupdate", + "titleUpdateVersion": "Versi telah diubah", + "warnLicenseExceeded": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi admin Anda untuk mempelajari lebih lanjut.", + "warnLicenseLimitedNoAccess": "Lisensi kadaluwarsa. Anda tidak memiliki akses untuk editing dokumen secara keseluruhan. Silakan hubungi admin Anda.", + "warnLicenseLimitedRenewed": "Lisensi perlu diperbaharui. Anda memiliki akses terbatas untuk edit dokumen.
    Silakan hubungi admin Anda untuk mendapatkan akses penuh", + "warnLicenseUsersExceeded": "Anda sudah mencapai batas user untuk %1 editor. Hubungi admin Anda untuk mempelajari lebih lanjut.", + "warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi %1 tim sales untuk syarat personal upgrade.", + "warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", + "warnProcessRightsChange": "Anda tidak memiliki izin edit file ini." + } + }, + "Error": { + "convertationTimeoutText": "Waktu konversi habis.", + "criticalErrorExtText": "Tekan 'OK' untuk kembali ke list dokumen.", + "criticalErrorTitle": "Kesalahan", + "downloadErrorText": "Unduhan gagal.", + "errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
    Silakan hubungi admin Anda.", + "errorArgsRange": "Eror di formula.
    Rentang argumen salah.", + "errorAutoFilterChange": "Operasi tidak diizinkan karena mencoba memindahkan sel dari tabel di worksheet Anda.", + "errorAutoFilterChangeFormatTable": "Operasi tidak bisa dilakukan pada sel yang dipilih karena Anda tidak bisa memindahkan bagian dari tabel.
    Pilih rentang data lain agar seluruh tabel bergeser dan coba lagi.", + "errorAutoFilterDataRange": "Operasi tidak bisa dilakukan pada rentang sel yang dipilih.
    Pilih rentang data seragam di dalam atau di luar tabel dan coba lagi.", + "errorAutoFilterHiddenRange": "Operasi tidak bisa dilakukan karena ada sel yang difilter di area.
    Silakan tampilkan kembali elemet yang difilter dan coba lagi.", + "errorBadImageUrl": "URL Gambar salah", + "errorCannotUseCommandProtectedSheet": "Ada tidak bisa menggunakan perintah ini di sheet yang diproteksi. Untuk menggunakan perintah ini, batalkan proteksi sheet.
    Anda mungkin diminta untuk memasukkan password.", + "errorChangeArray": "Anda tidak bisa mengganti bagian dari array.", + "errorChangeOnProtectedSheet": "Sel atau grafik yang Anda coba untuk ganti berada di sheet yang diproteksi. Untuk melakukan perubahan, batalkan proteksi sheet. Anda mungkin diminta untuk mengisi password.", + "errorConnectToServer": "Tidak bisa menyimpan doc ini. Silakan periksa pengaturan koneksi atau hubungi admin Anda.
    Ketika klik tombol 'OK', Anda akan diminta untuk download dokumen.", + "errorCopyMultiselectArea": "Perintah ini tidak bisa digunakan dengan pilihan lebih dari satu.
    Pilih satu rentang dan coba lagi.", + "errorCountArg": "Eror di formula.
    Kesalahan di jumlah argumen.", + "errorCountArgExceed": "Eror di formula.
    Jumlah argumen maksimum sudah tercapai.", + "errorCreateDefName": "Rentang nama yang ada tidak bisa di edit dan tidak bisa membuat yang baru
    jika ada beberapa yang sedang diedit.", + "errorDatabaseConnection": "Eror eksternal.
    Koneksi database bermasalah. Silakan hubungi support.", + "errorDataEncrypted": "Perubahan enkripsi sudah diterima dan tidak bisa diuraikan.", + "errorDataRange": "Rentang data salah.", + "errorDataValidate": "Nilai yang dimasukkan tidak tepat.
    User memiliki batasan nilai yang bisa dimasukkan ke sel ini.", + "errorDefaultMessage": "Kode kesalahan: %1", + "errorEditingDownloadas": "Ada kesalahan saat bekerja dengan dokumen.
    Gunakan menu 'Download' untuk menyimpan file copy backup di lokal.", + "errorFilePassProtect": "Password file diproteksi dan tidak bisa dibuka.", + "errorFileRequest": "Error eksternal.
    Request File. Silakan hubungi support.", + "errorFileSizeExceed": "Ukuran file melampaui limit server Anda.
    Silakan, hubungi admin untuk detail.", + "errorFileVKey": "Error eksternal.
    Kode keamanan salah. Silakan hubungi support.", + "errorFillRange": "Tidak bisa mengisi rentang sel yang dipilih.
    Semua sel yang di merge harus memiliki ukuran yang sama.", + "errorFormulaName": "Eror di formula.
    Nama formula salah.", + "errorFormulaParsing": "Kesalahan internal saat menguraikan formula.", + "errorFrmlMaxLength": "Anda tidak bisa menambahkan formula ini karena panjangnya melebihi batas angka yang diizinkan.
    Silakan edit dan coba lagi.", + "errorFrmlMaxReference": "Anda tidak bisa memasukkan formula ini karena memiliki nilai terlalu banyak,
    referensi sel, dan/atau nama.", + "errorFrmlMaxTextLength": "Nilai teks dalam formula dibatasi 255 karakter.
    Gunakan fungsi PENGGABUNGAN atau operator penggabungan (&)", + "errorFrmlWrongReferences": "Fungsi yang menuju sheet tidak ada.
    Silakan periksa data kembali.", + "errorInvalidRef": "Masukkan nama yang tepat untuk pilihan atau referensi valid sebagai tujuan.", + "errorKeyEncrypt": "Deskriptor kunci tidak dikenal", + "errorKeyExpire": "Deskriptor kunci tidak berfungsi", + "errorLoadingFont": "Font tidak bisa dimuat.
    Silakan kontak admin Server Dokumen Anda.", + "errorLockedAll": "Operasi tidak bisa dilakukan karena sheet dikunci oleh user lain.", + "errorLockedCellPivot": "Anda tidak bisa mengubah data di dalam tabel pivot.", + "errorLockedWorksheetRename": "Nama sheet tidak bisa diubah sekarang karena sedang diganti oleh user lain", + "errorMaxPoints": "Jumlah titik maksimum dalam seri per grafik adalah 4096.", + "errorMoveRange": "Tidak bisa mengganti bagian dari sel yang digabungkan", + "errorMultiCellFormula": "Formula array multi sel tidak diizinkan di tabel.", + "errorOpenWarning": "Panjang salah satu formula di file melewati
    batas jumlah karakter yang diizinkan dan sudah dihapus.", + "errorOperandExpected": "Syntax fungsi yang dimasukkan tidak tepat. Silakan periksa lagi apakah Anda terlewat tanda kurung - '(' atau ')'.", + "errorPasteMaxRange": "Area copy dan paste tidak cocok. Silakan pilih area dengan ukuran yang sama atau klik sel pertama di baris untuk paste sel yang di copy.", + "errorPrintMaxPagesCount": "Mohon maaf karena tidak bisa print lebih dari 1500 halaman dalam sekali waktu dengan versi program sekarang.
    Hal ini akan bisa dilakukan di versi selanjutnya.", + "errorSessionAbsolute": "Waktu edit dokumen sudah selesai. Silakan muat ulang halaman.", + "errorSessionIdle": "Dokumen sudah lama tidak diedit. Silakan muat ulang halaman.", + "errorSessionToken": "Koneksi ke server terganggu. Silakan muat ulang halaman.", + "errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
    harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "errorUnexpectedGuid": "Error eksternal.
    Unexpected Guid. Silakan hubungi support.", + "errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
    Sebelum Anda bisa melanjutkan kerja, Anda perlu download file atau copy konten untuk memastikan tidak ada yang hilang, dan muat ulang halaman ini.", + "errorUserDrop": "File tidak bisa diakses sekarang.", + "errorUsersExceed": "Jumlah pengguna telah melebihi jumlah yang diijinkan dalam paket harga.", + "errorViewerDisconnect": "Koneksi terputus. Anda tetap bisa melihat dokumen,
    tapi tidak bisa download atau print sampai koneksi terhubung dan halaman dimuat ulang.", + "errorWrongBracketsCount": "Eror di formula.
    Jumlah tanda kurung tidak tepat.", + "errorWrongOperator": "Eror ketika memasukkan formula. Penggunaan operator tidak tepat.
    Silakan perbaiki.", + "notcriticalErrorTitle": "Peringatan", + "openErrorText": "Eror ketika membuka file", + "pastInMergeAreaError": "Tidak bisa mengganti bagian dari sel yang digabungkan", + "saveErrorText": "Eror ketika menyimpan file.", + "scriptLoadError": "Koneksi terlalu lambat dan beberapa komponen tidak bisa dibuka Silakan muat ulang halaman.", + "textErrorPasswordIsNotCorrect": "Password yang Anda sediakan tidak tepat.
    Pastikan bahwa CAPS LOCK sudah mati dan pastikan sudah menggunakan huruf besar dengan tepat.", + "unknownErrorText": "Kesalahan tidak diketahui.", + "uploadImageExtMessage": "Format gambar tidak dikenal.", + "uploadImageFileCountMessage": "Tidak ada gambar yang diunggah.", + "uploadImageSizeMessage": "Melebihi ukuran maksimal file. Ukuran maksimum adalah 25 MB." + }, + "LongActions": { + "advDRMPassword": "Kata Sandi", + "applyChangesTextText": "Memuat data...", + "applyChangesTitleText": "Memuat Data", + "confirmMoveCellRange": "Rentang sel yang dituju bisa berisi data. Lanjutkan operasi?", + "confirmPutMergeRange": "Data sumber memiliki sel merge.
    Data ini akan di unmerge sebelum di paste ke tabel.", + "confirmReplaceFormulaInTable": "Formula di baris header akan dihilangkan dan dikonversi menjadi teks statis.
    Apakah Anda ingin melanjutkan?", + "downloadTextText": "Mengunduh dokumen...", + "downloadTitleText": "Mengunduh Dokumen", + "loadFontsTextText": "Memuat data...", + "loadFontsTitleText": "Memuat Data", + "loadFontTextText": "Memuat data...", + "loadFontTitleText": "Memuat Data", + "loadImagesTextText": "Memuat gambar...", + "loadImagesTitleText": "Memuat Gambar", + "loadImageTextText": "Memuat gambar...", + "loadImageTitleText": "Memuat Gambar", + "loadingDocumentTextText": "Memuat dokumen...", + "loadingDocumentTitleText": "Memuat dokumen", + "notcriticalErrorTitle": "Peringatan", + "openTextText": "Membuka Dokumen...", + "openTitleText": "Membuka Dokumen", + "printTextText": "Mencetak dokumen...", + "printTitleText": "Mencetak Dokumen", + "savePreparingText": "Bersiap untuk menyimpan", + "savePreparingTitle": "Bersiap untuk menyimpan. Silahkan menunggu...", + "saveTextText": "Menyimpan dokumen...", + "saveTitleText": "Menyimpan Dokumen", + "textCancel": "Batalkan", + "textErrorWrongPassword": "Password yang Anda sediakan tidak tepat.", + "textLoadingDocument": "Memuat dokumen", + "textNo": "Tidak", + "textOk": "OK", + "textUnlockRange": "Buka Kunci Rentang", + "textUnlockRangeWarning": "Rentang yang ingin Anda ubah dilindungi password", + "textYes": "Ya", + "txtEditingMode": "Mengatur mode editing...", + "uploadImageTextText": "Mengunggah gambar...", + "uploadImageTitleText": "Mengunggah Gambar", + "waitText": "Silahkan menunggu" + }, + "Statusbar": { + "notcriticalErrorTitle": "Peringatan", + "textCancel": "Batalkan", + "textDelete": "Hapus", + "textDuplicate": "Duplikat", + "textErrNameExists": "Worksheet dengan nama ini sudah ada.", + "textErrNameWrongChar": "Nama sheet tidak boleh menggunakan karakter: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Nama sheet tidak boleh kosong", + "textErrorLastSheet": "Workbook harus setidaknya memiliki satu worksheet yang terlihat.", + "textErrorRemoveSheet": "Tidak bisa menghapus worksheet.", + "textHidden": "Tersembunyi", + "textHide": "Sembunyikan", + "textMore": "Lainnya", + "textMove": "Pindah", + "textMoveBefore": "Pindahkan sebelum sheet", + "textMoveToEnd": "(Pindah ke akhir)", + "textOk": "OK", + "textRename": "Ganti nama", + "textRenameSheet": "Ganti Nama Sheet", + "textSheet": "Sheet", + "textSheetName": "Nama Sheet", + "textUnhide": "Tidak Disembunyikan", + "textWarnDeleteSheet": "Mungkin ada data di worksheet. Tetap jalankan operasi?", + "textTabColor": "Tab Color" + }, + "Toolbar": { + "dlgLeaveMsgText": "Ada perubahan yang belum disimpan dalam dokumen ini. Klik 'Tetap di Halaman Ini' untuk menunggu simpan otomatis. Klik ‘Tinggalkan Halaman Ini’ untuk membatalkan semua perubahan yang belum disimpan.", + "dlgLeaveTitleText": "Anda meninggalkan aplikasi", + "leaveButtonText": "Tinggalkan Halaman Ini", + "stayButtonText": "Tetap di halaman ini" + }, + "View": { + "Add": { + "errorMaxRows": "KESALAHAN! Jumlah seri data maksimum per grafik adalah 255.", + "errorStockChart": "Urutan baris salah. Untuk membuat diagram garis, masukkan data pada lembar kerja dengan urutan berikut ini:
    harga pembukaan, harga maksimal, harga minimal, harga penutupan.", + "notcriticalErrorTitle": "Peringatan", + "sCatDateAndTime": "Tanggal dan Jam", + "sCatEngineering": "Insinyur", + "sCatFinancial": "Finansial", + "sCatInformation": "Informasi", + "sCatLogical": "Logikal", + "sCatLookupAndReference": "Lookup dan Referensi", + "sCatMathematic": "Matematika dan trigonometri", + "sCatStatistical": "Statistikal", + "sCatTextAndData": "Teks dan data", + "textAddLink": "Tambah tautan", + "textAddress": "Alamat", + "textAllTableHint": "Kembalikan seluruh isi tabel atau kolom tabel tertentu termasuk header kolom, data dan total baris", + "textBack": "Kembali", + "textCancel": "Batalkan", + "textChart": "Bagan", + "textComment": "Komentar", + "textDataTableHint": "Kembalikan sel data dari tabel atau kolom tabel yang dihitung", + "textDisplay": "Tampilan", + "textEmptyImgUrl": "Anda perlu melengkapkan URL gambar.", + "textExternalLink": "Tautan eksternal", + "textFilter": "Filter", + "textFunction": "Fungsi", + "textGroups": "Kategori", + "textHeadersTableHint": "Kembalikan header kolom untuk tabel atau tabel kolom spesifik", + "textImage": "Gambar", + "textImageURL": "URL Gambar", + "textInsert": "Sisipkan", + "textInsertImage": "Sisipkan Gambar", + "textInternalDataRange": "Rentang Data Internal", + "textInvalidRange": "KESALAHAN! Rentang sel tidak valid", + "textLink": "Tautan", + "textLinkSettings": "Pengaturan Link", + "textLinkType": "Tipe tautan", + "textOk": "OK", + "textOther": "Lainnya", + "textPictureFromLibrary": "Gambar dari Perpustakaan", + "textPictureFromURL": "Gambar dari URL", + "textRange": "Rentang", + "textRequired": "Dibutuhkan", + "textScreenTip": "Tip Layar", + "textSelectedRange": "Rentang yang dipilih", + "textShape": "Bentuk", + "textSheet": "Sheet", + "textSortAndFilter": "Sortir dan Filter", + "textThisRowHint": "Pilih hanya baris ini dari kolom yang ditentukan", + "textTotalsTableHint": "Kembalikan total baris dari tabel atau kolom tabel spesifik", + "txtExpand": "Perluas dan sortir", + "txtExpandSort": "Data di sebelah pilihan tidak akan disortasi. Apakah Anda ingin memperluas pilihan untuk menyertakan data yang berdekatan atau lanjut sortasi dengan hanya sel yang dipilih?", + "txtLockSort": "Ditemukan data di sebelah pilihan Anda, tapi, Anda tidak memiliki izin untuk mengubah sel tersebut.
    Apakah Anda ingin tetap lanjut dengan pilihan saat ini?", + "txtNo": "Tidak", + "txtNotUrl": "Area ini harus dalam format URL “http://www.contoh.com”", + "txtSorting": "Sorting", + "txtSortSelected": "Sortir dipilih", + "txtYes": "Ya" + }, + "Edit": { + "notcriticalErrorTitle": "Peringatan", + "textAccounting": "Akutansi", + "textActualSize": "Ukuran Sebenarnya", + "textAddCustomColor": "Tambah warna kustom", + "textAddress": "Alamat", + "textAlign": "Ratakan", + "textAlignBottom": "Rata Bawah", + "textAlignCenter": "Rata Tengah", + "textAlignLeft": "Rata Kiri", + "textAlignMiddle": "Rata di Tengah", + "textAlignRight": "Rata Kanan", + "textAlignTop": "Rata Atas", + "textAllBorders": "Semua Pembatas", + "textAngleClockwise": "Sudut Searah Jarum Jam", + "textAngleCounterclockwise": "Sudut Berlawanan Jarum Jam", + "textAuto": "Otomatis", + "textAutomatic": "Otomatis", + "textAxisCrosses": "Sumbu Berpotongan", + "textAxisOptions": "Opsi Sumbu", + "textAxisPosition": "Posisi Sumbu", + "textAxisTitle": "Nama Sumbu", + "textBack": "Kembali", + "textBetweenTickMarks": "Di Antara Tanda Centang", + "textBillions": "Miliar", + "textBorder": "Pembatas", + "textBorderStyle": "Gaya Pembatas", + "textBottom": "Bawah", + "textBottomBorder": "Batas Bawah", + "textBringToForeground": "Tampilkan di Halaman Muka", + "textCell": "Sel", + "textCellStyles": "Gaya Sel", + "textCenter": "Tengah", + "textChart": "Bagan", + "textChartTitle": "Judul Grafik", + "textClearFilter": "Bersihkan Filter", + "textColor": "Warna", + "textCross": "Silang", + "textCrossesValue": "Crosses Value", + "textCurrency": "Mata uang", + "textCustomColor": "Custom Warna", + "textDataLabels": "Label Data", + "textDate": "Tanggal", + "textDefault": "Rentang yang dipilih", + "textDeleteFilter": "Hapus Filter", + "textDesign": "Desain", + "textDiagonalDownBorder": "Pembatas Bawah Diagonal", + "textDiagonalUpBorder": "Pembatas Atas Diagonal", + "textDisplay": "Tampilan", + "textDisplayUnits": "Unit Tampilan", + "textDollar": "Dolar", + "textEditLink": "Edit Link", + "textEffects": "Efek", + "textEmptyImgUrl": "Anda perlu melengkapkan URL gambar.", + "textEmptyItem": "{Kosong}", + "textErrorMsg": "Anda harus memilih setidaknya satu nilai", + "textErrorTitle": "Peringatan", + "textEuro": "Euro", + "textExternalLink": "Tautan eksternal", + "textFill": "Isi", + "textFillColor": "Isi Warna", + "textFilterOptions": "Opsi Filter", + "textFit": "Fit Lebar", + "textFonts": "Font", + "textFormat": "Format", + "textFraction": "Pecahan", + "textFromLibrary": "Gambar dari Perpustakaan", + "textFromURL": "Gambar dari URL", + "textGeneral": "Umum", + "textGridlines": "Garis Grid", + "textHigh": "Tinggi", + "textHorizontal": "Horisontal", + "textHorizontalAxis": "Sumbu Horizontal", + "textHorizontalText": "Teks Horizontal", + "textHundredMil": "100 000 000", + "textHundreds": "Ratusan", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Gambar", + "textImageURL": "URL Gambar", + "textIn": "Dalam", + "textInnerBottom": "Dalam Bawah", + "textInnerTop": "Dalam Atas", + "textInsideBorders": "Pembatas Dalam", + "textInsideHorizontalBorder": "Pembatas Dalam Horizontal", + "textInsideVerticalBorder": "Pembatas Dalam Vertikal", + "textInteger": "Integer", + "textInternalDataRange": "Rentang Data Internal", + "textInvalidRange": "Rentang sel tidak valid", + "textJustified": "Rata Kiri-Kanan", + "textLabelOptions": "Opsi Label", + "textLabelPosition": "Posisi Label", + "textLayout": "Layout", + "textLeft": "Kiri", + "textLeftBorder": "Pembatas Kiri", + "textLeftOverlay": "Overlay Kiri", + "textLegend": "Keterangan", + "textLink": "Tautan", + "textLinkSettings": "Pengaturan Link", + "textLinkType": "Tipe tautan", + "textLow": "Rendah", + "textMajor": "Major", + "textMajorAndMinor": "Major dan Minor", + "textMajorType": "Tipe Major", + "textMaximumValue": "Nilai Maksimum", + "textMedium": "Medium", + "textMillions": "Juta", + "textMinimumValue": "Nilai Minimum", + "textMinor": "Minor", + "textMinorType": "Tipe Minor", + "textMoveBackward": "Pindah Kebelakang", + "textMoveForward": "Majukan", + "textNextToAxis": "Di Sebelah Sumbu", + "textNoBorder": "Tidak ada pembatas", + "textNone": "Tidak ada", + "textNoOverlay": "Tanpa Overlay", + "textNotUrl": "Area ini harus dalam format URL “http://www.contoh.com”", + "textNumber": "Angka", + "textOk": "OK", + "textOnTickMarks": "Di Tanda Centang", + "textOpacity": "Opasitas", + "textOut": "Luar", + "textOuterTop": "Terluar Atas", + "textOutsideBorders": "Pembatas Luar", + "textOverlay": "Overlay", + "textPercentage": "Persentase", + "textPictureFromLibrary": "Gambar dari Perpustakaan", + "textPictureFromURL": "Gambar dari URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Rentang", + "textRemoveChart": "Hilangkan Grafik", + "textRemoveImage": "Hilangkan Gambar", + "textRemoveLink": "Hilangkan Link", + "textRemoveShape": "Hilangkan Bentuk", + "textReorder": "Reorder", + "textReplace": "Ganti", + "textReplaceImage": "Ganti Gambar", + "textRequired": "Dibutuhkan", + "textRight": "Kanan", + "textRightBorder": "Pembatas Kanan", + "textRightOverlay": "Overlay Kanan", + "textRotated": "Dirotasi", + "textRotateTextDown": "Rotasi Teks Kebawah", + "textRotateTextUp": "Rotasi Teks Keatas", + "textRouble": "Rubel", + "textScientific": "Saintifik", + "textScreenTip": "Tip Layar", + "textSelectAll": "Pilih semua", + "textSelectObjectToEdit": "Pilih objek untuk diedit", + "textSendToBackground": "Jalankan di Background", + "textSettings": "Pengaturan", + "textShape": "Bentuk", + "textSheet": "Sheet", + "textSize": "Ukuran", + "textStyle": "Model", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Teks", + "textTextColor": "Warna teks", + "textTextFormat": "Format Teks", + "textTextOrientation": "Arah Teks", + "textThick": "Tebal", + "textThin": "Tipis", + "textThousands": "Ribu", + "textTickOptions": "Opsi Tick", + "textTime": "Waktu", + "textTop": "Atas", + "textTopBorder": "Pembatas Atas", + "textTrillions": "Trilyun", + "textType": "Tipe", + "textValue": "Nilai", + "textValuesInReverseOrder": "Nilai dengan Urutan Terbalik", + "textVertical": "Vertikal", + "textVerticalAxis": "Sumbu Vertikal", + "textVerticalText": "Teks Vertikal", + "textWrapText": "Wrap Teks", + "textYen": "Yen", + "txtNotUrl": "Area ini harus dalam format URL “http://www.contoh.com”", + "txtSortHigh2Low": "Sortir Tertinggi ke Terendah", + "txtSortLow2High": "Sortir Terendah ke Tertinggi" + }, + "Settings": { + "advCSVOptions": "Pilih Opsi CSV", + "advDRMEnterPassword": "Tolong tulis password Anda:", + "advDRMOptions": "File yang Diproteksi", + "advDRMPassword": "Kata Sandi", + "closeButtonText": "Tutup File", + "notcriticalErrorTitle": "Peringatan", + "textAbout": "Tentang", + "textAddress": "Alamat", + "textApplication": "Aplikasi", + "textApplicationSettings": "Pengaturan Aplikasi", + "textAuthor": "Penyusun", + "textBack": "Kembali", + "textBottom": "Bawah", + "textByColumns": "Dari kolom", + "textByRows": "Dari baris", + "textCancel": "Batalkan", + "textCentimeter": "Sentimeter", + "textChooseCsvOptions": "Pilih Opsi CSV", + "textChooseDelimeter": "Pilih Delimiter", + "textChooseEncoding": "Pilih Encoding", + "textCollaboration": "Kolaborasi", + "textColorSchemes": "Skema Warna", + "textComment": "Komentar", + "textCommentingDisplay": "Komentar Langsung", + "textComments": "Komentar", + "textCreated": "Dibuat", + "textCustomSize": "Custom Ukuran", + "textDarkTheme": "Tema Gelap", + "textDelimeter": "Pembatas", + "textDisableAll": "Nonaktifkan Semua", + "textDisableAllMacrosWithNotification": "Nonaktifkan semua macros dengan notifikasi", + "textDisableAllMacrosWithoutNotification": "Nonaktifkan semua macros tanpa notifikasi", + "textDone": "Selesai", + "textDownload": "Unduh", + "textDownloadAs": "Unduh sebagai", + "textEmail": "Email", + "textEnableAll": "Aktifkan Semua", + "textEnableAllMacrosWithoutNotification": "Aktifkan semua macros tanpa notifikasi", + "textEncoding": "Enkoding", + "textExample": "Contoh", + "textFind": "Cari", + "textFindAndReplace": "Cari dan Ganti", + "textFindAndReplaceAll": "Temukan dan Ganti Semua", + "textFormat": "Format", + "textFormulaLanguage": "Bahasa Formula", + "textFormulas": "Formulas", + "textHelp": "Bantuan", + "textHideGridlines": "Sembunyikan Gridlines", + "textHideHeadings": "Sembunyikan Heading", + "textHighlightRes": "Sorot hasil", + "textInch": "Inci", + "textLandscape": "Landscape", + "textLastModified": "Terakhir Dimodifikasi", + "textLastModifiedBy": "Terakhir Dimodifikasi Oleh", + "textLeft": "Kiri", + "textLocation": "Lokasi", + "textLookIn": "Melihat Kedalam", + "textMacrosSettings": "Pengaturan Macros", + "textMargins": "Margin", + "textMatchCase": "Sesuakian Case", + "textMatchCell": "Sesuakian Sel", + "textNoTextFound": "Teks tidak ditemukan", + "textOk": "OK", + "textOpenFile": "Masukkan kata sandi untuk buka file", + "textOrientation": "Orientasi", + "textOwner": "Pemilik", + "textPoint": "Titik", + "textPortrait": "Portrait", + "textPoweredBy": "Didukung oleh", + "textPrint": "Cetak", + "textR1C1Style": "Referensi Style R1C1", + "textRegionalSettings": "Pengaturan Regional", + "textReplace": "Ganti", + "textReplaceAll": "Ganti Semua", + "textResolvedComments": "Selesaikan Komentar", + "textRight": "Kanan", + "textSearch": "Cari", + "textSearchBy": "Cari", + "textSearchIn": "Cari di", + "textSettings": "Pengaturan", + "textSheet": "Sheet", + "textShowNotification": "Tampilkan Notifikasi", + "textSpreadsheetFormats": "Format Spreadsheet", + "textSpreadsheetInfo": "Info Spreadsheet", + "textSpreadsheetSettings": "Pengaturan Spreadsheet", + "textSpreadsheetTitle": "Judul Spreadsheet", + "textSubject": "Subyek", + "textTel": "Tel", + "textTitle": "Judul", + "textTop": "Atas", + "textUnitOfMeasurement": "Satuan Ukuran", + "textUploaded": "Diunggah", + "textValues": "Nilai", + "textVersion": "Versi", + "textWorkbook": "Workbook", + "txtColon": "Titik dua", + "txtComma": "Koma", + "txtDelimiter": "Pembatas", + "txtDownloadCsv": "Download CSV", + "txtEncoding": "Enkoding", + "txtIncorrectPwd": "Password salah", + "txtOk": "OK", + "txtProtected": "Jika Anda memasukkan password dan membuka file, password file saat ini akan di reset.", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Modul", + "txtScheme13": "Mewah", + "txtScheme14": "Jendela Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Kertas", + "txtScheme17": "Titik balik matahari", + "txtScheme18": "Teknik", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Semangat", + "txtScheme22": "Office Baru", + "txtScheme3": "Puncak", + "txtScheme4": "Aspek", + "txtScheme5": "Kewargaan", + "txtScheme6": "Himpunan", + "txtScheme7": "Margin Sisa", + "txtScheme8": "Alur", + "txtScheme9": "Cetakan", + "txtSemicolon": "Titik koma", + "txtSpace": "Spasi", + "txtTab": "Tab", + "warnDownloadAs": "Jika Anda lanjut simpan dengan format ini, semua fitur kecuali teks akan hilang.
    Apakah Anda ingin melanjutkan?", + "textFeedback": "Feedback & Support" + } + } +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index abb1af184..8a42e3515 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -361,7 +361,12 @@ "txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", "txtSorting": "Ordinamento", "txtSortSelected": "Ordinare selezionato", - "txtYes": "Sì" + "txtYes": "Sì", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Avvertimento", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 10cc11ada..f2d5a2b78 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -291,6 +291,7 @@ "textHide": "隠す", "textMore": "もっと", "textMove": "移動", + "textMoveToEnd": "(末尾へ移動)", "textOk": "OK", "textRename": "名前の変更", "textRenameSheet": "このシートの名前を変更する", @@ -299,7 +300,6 @@ "textUnhide": "表示する", "textWarnDeleteSheet": "ワークシートはデータがあるそうです。操作を続けてもよろしいですか?", "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)", "textTabColor": "Tab Color" }, "Toolbar": { @@ -361,7 +361,12 @@ "txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。", "txtSorting": "並べ替え中", "txtSortSelected": "選択したを並べ替える", - "txtYes": "Yes" + "txtYes": "Yes", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": " 警告", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 713a60e37..cb6cddd74 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -361,7 +361,12 @@ "txtSorting": "정렬", "txtSortSelected": "정렬 선택", "txtYes": "확인", - "textOk": "Ok" + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textOk": "Ok", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "경고", diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index ba281b896..c864eb431 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -1,683 +1,688 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" + "textAbout": "ກ່ຽວກັບ", + "textAddress": "ທີ່ຢູ່", + "textBack": "ກັບຄືນ", + "textEmail": "ອີເມລ", + "textPoweredBy": "ສ້າງໂດຍ", + "textTel": "ໂທ", + "textVersion": "ລຸ້ນ" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", - "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "notcriticalErrorTitle": "ເຕືອນ", + "textAddComment": "ເພີ່ມຄຳເຫັນ", + "textAddReply": "ເພີ່ມຄຳຕອບກັບ", + "textBack": "ກັບຄືນ", + "textCancel": "ຍົກເລີກ", + "textCollaboration": "ຮ່ວມກັນ", + "textComments": "ຄໍາເຫັນ", + "textDeleteComment": "ລົບຄໍາເຫັນ", + "textDeleteReply": "ລົບການຕອບກັບ", + "textDone": "ສໍາເລັດ", + "textEdit": "ແກ້ໄຂ", + "textEditComment": "ແກ້ໄຂຄໍາເຫັນ", + "textEditReply": "ແກ້ໄຂການຕອບກັບ", + "textEditUser": "ຜູ້ໃຊ້ທີ່ກໍາລັງແກ້ໄຂເອກະສານ:", + "textMessageDeleteComment": "ທ່ານຕ້ອງການລົບຄຳເຫັນນີ້ແທ້ບໍ", + "textMessageDeleteReply": "ທ່ານຕ້ອງການລົບແທ້ບໍ?", + "textNoComments": "ເອກະສານບໍ່ມີຄໍາເຫັນ", + "textOk": "ຕົກລົງ", + "textReopen": "ເປີດຄືນ", + "textResolve": "ແກ້ໄຂ", + "textTryUndoRedo": "ໜ້າທີ່ ກັບຄືນ ຫຼື ທວນຄືນ ຖືກປິດໃຊ້ງານ ສຳລັບໂໝດການແກ້ໄຂຮ່ວມກັນດ່ວນ.", + "textUsers": "ຜຸ້ໃຊ້" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "ກຳນົດສີເອງ", + "textStandartColors": "ສີມາດຕະຖານ", + "textThemeColors": " ຮູບແບບສີ" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuCell": "Cell", - "menuDelete": "Delete", - "menuEdit": "Edit", - "menuFreezePanes": "Freeze Panes", - "menuHide": "Hide", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuShow": "Show", - "menuUnfreezePanes": "Unfreeze Panes", - "menuUnmerge": "Unmerge", - "menuUnwrap": "Unwrap", - "menuViewComment": "View Comment", - "menuWrap": "Wrap", - "notcriticalErrorTitle": "Warning", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?", - "errorInvalidLink": "The link reference does not exist. Please correct the link or delete it." + "errorCopyCutPaste": "ການດຳເນີນການສຳເນົາ, ຕັດ ແລະວາງໂດຍໃຊ້ເມນູການປະຕິບັດ ຈະຖືກດຳເນີນການພາຍໃນໄຟລ໌ປັດຈຸບັນເທົ່ານັ້ນ.", + "errorInvalidLink": "ບໍ່ມີການອ້າງອີງຈຸດເຊື່ອມຕໍ່. ກະລຸນາແກ້ໄຂ ຫຼື ລົບຈຸດເຊື່ອມຕໍ່.", + "menuAddComment": "ເພີ່ມຄຳເຫັນ", + "menuAddLink": "ເພີ່ມລິ້ງ", + "menuCancel": "ຍົກເລີກ", + "menuCell": "ແຊວ", + "menuDelete": "ລົບ", + "menuEdit": "ແກ້ໄຂ", + "menuFreezePanes": "ຕິກໃສ່ບໍລິເວນທີ່ຕ້ອງການໃຫ້ເຫັນແຈ້ງ", + "menuHide": "ເຊື່ອງໄວ້", + "menuMerge": "ປະສົມປະສານ", + "menuMore": "ຫຼາຍກວ່າ", + "menuOpenLink": "ເປີດລີ້ງ", + "menuShow": "ສະແດງ", + "menuUnfreezePanes": "ຍົກເລີກໝາຍຕາຕະລາງ", + "menuUnmerge": "ບໍ່ລວມເຂົ້າກັນ", + "menuUnwrap": "ຍົກເລີກ", + "menuViewComment": "ເບີ່ງຄໍາເຫັນ", + "menuWrap": "ຫໍ່", + "notcriticalErrorTitle": "ເຕືອນ", + "textCopyCutPasteActions": "ປະຕິບັດການ ສໍາເນົາ, ຕັດ ແລະ ວາງ", + "textDoNotShowAgain": "ບໍ່ສະແດງອີກ", + "warnMergeLostData": "ສະເພາະຂໍ້ມູນຈາກເຊວດ້ານຊ້າຍເທິງທີ່ຈະຢູ່ໃນເຊວຮ່ວມ.
    ທ່ານຕ້ອງການດຳເນີນການຕໍ່ບໍ່?" }, "Controller": { "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", - "errorProcessSaveResult": "Saving is failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "ຂໍ້ຜິດພາດ", + "errorAccessDeny": "ທ່ານກໍາລັງພະຍາຍາມດໍາເນີນການໃນໜ້າທີ່ທ່ານບໍ່ມີສິດສໍາລັບດໍາເນີນການ.
    ກະລຸນາ, ຕິດຕໍ່ແອດມີນລະບົບຂອງທ່ານ.", + "errorOpensource": "ການນໍາໃຊ້ສະບັບຟຣີ, ທ່ານສາມາດເປີດເອກະສານສໍາລັບການອ່ານເທົ່ານັ້ນ. ໃນການເຂົ້າເຖິງໂປຣແກຣມ, ຕ້ອງມີໃບອະນຸຍາດທາງການຄ້າ.", + "errorProcessSaveResult": "ບັນທຶກບໍ່ສໍາເລັດ", + "errorServerVersion": "ສະບັບດັດແກ້ໄດ້ຖືກປັບປຸງແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດຄືນເພື່ອນຳໃຊ້ການປ່ຽນແປງ.", + "errorUpdateVersion": "ເອກະສານໄດ້ຖືກປ່ຽນແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດ ໃໝ່.", + "leavePageText": "ທ່ານມີການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກໄວ້ໃນເອກະສານນີ້. ຄລິກທີ່ 'ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທຶກອັດຕະໂນມັດ. ຄລິກ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໄວ້ທັງໝົດ.", + "notcriticalErrorTitle": "ເຕືອນ", "SDK": { - "txtAccent": "Accent", - "txtAll": "(All)", - "txtArt": "Your text here", - "txtBlank": "(blank)", - "txtByField": "%1 of %2", - "txtClearFilter": "Clear Filter (Alt+C)", - "txtColLbls": "Column Labels", - "txtColumn": "Column", - "txtConfidential": "Confidential", - "txtDate": "Date", - "txtDays": "Days", - "txtDiagramTitle": "Chart Title", - "txtFile": "File", - "txtGrandTotal": "Grand Total", - "txtGroup": "Group", - "txtHours": "Hours", - "txtMinutes": "Minutes", - "txtMonths": "Months", - "txtMultiSelect": "Multi-Select (Alt+S)", - "txtOr": "%1 or %2", - "txtPage": "Page", - "txtPageOf": "Page %1 of %2", - "txtPages": "Pages", - "txtPreparedBy": "Prepared by", - "txtPrintArea": "Print_Area", - "txtQuarter": "Qtr", - "txtQuarters": "Quarters", - "txtRow": "Row", - "txtRowLbls": "Row Labels", - "txtSeconds": "Seconds", - "txtSeries": "Series", - "txtStyle_Bad": "Bad", - "txtStyle_Calculation": "Calculation", - "txtStyle_Check_Cell": "Check Cell", - "txtStyle_Comma": "Comma", - "txtStyle_Currency": "Currency", - "txtStyle_Explanatory_Text": "Explanatory Text", - "txtStyle_Good": "Good", - "txtStyle_Heading_1": "Heading 1", - "txtStyle_Heading_2": "Heading 2", - "txtStyle_Heading_3": "Heading 3", - "txtStyle_Heading_4": "Heading 4", - "txtStyle_Input": "Input", - "txtStyle_Linked_Cell": "Linked Cell", - "txtStyle_Neutral": "Neutral", - "txtStyle_Normal": "Normal", - "txtStyle_Note": "Note", - "txtStyle_Output": "Output", - "txtStyle_Percent": "Percent", - "txtStyle_Title": "Title", - "txtStyle_Total": "Total", - "txtStyle_Warning_Text": "Warning Text", - "txtTab": "Tab", - "txtTable": "Table", - "txtTime": "Time", - "txtValues": "Values", - "txtXAxis": "X Axis", - "txtYAxis": "Y Axis", - "txtYears": "Years" + "txtAccent": "ສຳນຽງ", + "txtAll": "(ທັງໝົດ)", + "txtArt": "ເນື້ອຫາຂອງທ່ານຢູ່ນີ້", + "txtBlank": "(ວ່າງ)", + "txtByField": "%1 ຈາກ %2", + "txtClearFilter": "ລົບລ້າງການຄັດກອງ (Alt+C)", + "txtColLbls": "ຄຳນິຍາມຄໍລັ້ມ", + "txtColumn": "ຖັນ", + "txtConfidential": "ທີ່ເປັນຄວາມລັບ", + "txtDate": "ວັນທີ", + "txtDays": "ວັນ", + "txtDiagramTitle": "ໃສ່ຊື່ແຜນຮູບວາດ", + "txtFile": "ຟາຍ ", + "txtGrandTotal": "ຜົນລວມທັງໝົດ", + "txtGroup": "ກຸ່ມ", + "txtHours": "ຊົ່ວໂມງ", + "txtMinutes": "ນາທີ", + "txtMonths": "ເດືອນ", + "txtMultiSelect": "ເລືອກຫຼາຍລາຍການ (Alt+S)", + "txtOr": "%1 ຫຼື %2", + "txtPage": "ໜ້າ", + "txtPageOf": "ໜ້າ %1 ຈາກ​ %2", + "txtPages": "ໜ້າ", + "txtPreparedBy": "ກະກຽມໂດຍ", + "txtPrintArea": "ພື້ນທີ່ສຳລັບພິມ", + "txtQuarter": "ໄຕມາດ", + "txtQuarters": "ໄຕມາດ", + "txtRow": "ແຖວ", + "txtRowLbls": "ປ້າຍແຖວ", + "txtSeconds": "ວິນາທີ", + "txtSeries": "ຊຸດ", + "txtStyle_Bad": "ຕ່ຳ", + "txtStyle_Calculation": "ການຄຳນວນ", + "txtStyle_Check_Cell": "ກວດສອບເຊວ", + "txtStyle_Comma": "ຈຸດ", + "txtStyle_Currency": "ສະກຸນເງິນ", + "txtStyle_Explanatory_Text": "ອະທິບາຍເນື້ອໃນ", + "txtStyle_Good": "ດີ", + "txtStyle_Heading_1": " ຫົວເລື່ອງ 1", + "txtStyle_Heading_2": "ຫົວເລື່ອງ 2", + "txtStyle_Heading_3": "ຫົວເລື່ອງ 3", + "txtStyle_Heading_4": "ຫົວເລື່ອງ4", + "txtStyle_Input": "ການປ້ອນຂໍ້ມູນ", + "txtStyle_Linked_Cell": "ເຊື່ອມຕໍ່ເຊວ", + "txtStyle_Neutral": "ທາງກາງ", + "txtStyle_Normal": "ປົກກະຕິ", + "txtStyle_Note": "ບັນທຶກໄວ້", + "txtStyle_Output": "ຜົນໄດ້ຮັບ", + "txtStyle_Percent": "ເປີີເຊັນ", + "txtStyle_Title": "ຫົວຂໍ້", + "txtStyle_Total": "ຈຳນວນລວມ", + "txtStyle_Warning_Text": "ຂໍ້ຄວາມແຈ້ງເຕືອນ", + "txtTab": "ແທບ", + "txtTable": "ຕາຕະລາງ", + "txtTime": "ເວລາ", + "txtValues": "ຄ່າ", + "txtXAxis": "ແກນ X", + "txtYAxis": "ແກນ Y", + "txtYears": "ປີ" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file.", - "textNoChoices": "There are no choices for filling the cell.
    Only text values from the column can be selected for replacement.", - "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "textAnonymous": "ບໍ່ລະບຸຊື່", + "textBuyNow": "ເຂົ້າໄປຍັງເວັບໄຊ", + "textClose": "ປິດ", + "textContactUs": "ຕິດຕໍ່ຜູ້ຂາຍ", + "textCustomLoader": "ຂໍອະໄພ, ທ່ານບໍ່ມີສິດປ່ຽນຕົວໂຫຼດໄດ້. ກະລຸນາຕິດຕໍ່ຫາພະແນກການຂາຍຂອງພວກເຮົາເພື່ອໃຫ້ໄດ້ຮັບໃບສະເໜີລາຄາ.", + "textGuest": " ແຂກ", + "textHasMacros": "ເອກະສານບັນຈຸ ມາກໂຄ
    ແບບອັດຕະໂນມັດ, ທ່ານຍັງຕ້ອງການດໍາເນີນງານ ມາກໂຄ ບໍ ", + "textNo": "ບໍ່", + "textNoChoices": "ບໍ່ມີຕົວເລືອກໃຫ້ຕື່ມເຊວ.
    ມີແຕ່ຄ່າຂໍ້ຄວາມຈາກຖັນເທົ່ານັ້ນທີ່ສາມາດເລືອກມາເພື່ອປ່ຽນແທນໄດ້.", + "textNoLicenseTitle": "ຈໍານວນໃບອະນຸຍາດໄດ້ໃຊ້ຄົບແລ້ວ", + "textNoTextFound": "ບໍ່ພົບເນື້ອຫາ", + "textOk": "ຕົກລົງ", + "textPaidFeature": "ຄຸນສົມບັດທີ່ຈ່າຍ", + "textRemember": "ຈື່ຈໍາທາງເລືອກ", + "textReplaceSkipped": "ການທົດແທນໄດ້ຖືກປະຕິບັດແລ້ວ. {0} ຖືກຂ້າມເຫດການທີ່ເກີດຂື້ນໄດ້", + "textReplaceSuccess": "ການຄົ້ນຫາໄດ້ສຳເລັດແລ້ວ. ສິ່ງທີ່ເກີດຂື້ນໄດ້ປ່ຽນແທນແລ້ວ: {0}", + "textYes": "ແມ່ນແລ້ວ", + "titleServerVersion": "ອັບເດດການແກ້ໄຂ", + "titleUpdateVersion": "ປ່ຽນແປງລຸ້ນ", + "warnLicenseExceeded": "ທ່ານໄດ້ຖືກຈຳກັດສິດພຽງເທົ່ານີ້ສຳຫລັບການເຊື່່ອມພ້ອມກັນກັບເຄື່ອງມືແກ້ໄຂ %1 ແລ້ວເອກະສານນີ້ຈະເປີດໃຫ້ເບີ່ງເທົ່ານັ້ນ ຕິດຕໍ່ຫາທາງແອດມີນຂອງທ່ານເພື່ອຮັບຂໍ້ມູນເພີ່ມ", + "warnLicenseLimitedNoAccess": "ໃບອະນຸຍາດໝົດອາຍຸແລ້ວ. ທ່ານບໍ່ສາມາດເຂົ້າເຖິງການດຳເນີນງານແກ້ໄຂເອກະສານ. ກະລຸນາ, ຕິດຕໍ່ແອດມີນຂອງທ່ານ.", + "warnLicenseLimitedRenewed": "ໃບອະນຸຍາດຕ້ອງໄດ້ຮັບການຕໍ່ອາຍຸ. ທ່ານຈະຖືກຈຳກັດສິດໃນການເຂົ້າເຖິ່ງການແກ້ໄຂເອກະສານ.
    ກະລຸນາຕິດຕໍ່ແອດມີນຂອງທ່ານເພື່ອຕໍ່ອາຍຸ", + "warnLicenseUsersExceeded": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ແກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມບໍລິຫານເພື່ອຂໍ້ມູນເພີ່ມເຕີ່ມ", + "warnNoLicense": "ທ່ານໄດ້ຖືກຈຳກັດສິດພຽງເທົ່ານີ້ສຳຫລັບການເຊື່່ອມພ້ອມກັນກັບເຄື່ອງມືແກ້ໄຂ %1 ແລ້ວເອກະສານນີ້ຈະເປີດໃຫ້ເບີ່ງເທົ່ານັ້ນ ຕິດຕໍ່ທີມຂາຍ %1 ສຳຫລັບເງື່ອນໄຂການອັບເກດສ່ວນບຸກຄົນ", + "warnNoLicenseUsers": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມຂາຍ% 1 ສຳ ລັບຂໍ້ ກຳນົດການຍົກລະດັບສິດ", + "warnProcessRightsChange": "ທ່ານບໍ່ມີສິດໃນການແກ້ໄຂໄຟລ໌ນີ້." } }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", + "criticalErrorExtText": "ກົດ 'OK' ເພື່ອກັບຄືນໄປຫາລາຍການເອກະສານ.", + "criticalErrorTitle": "ຂໍ້ຜິດພາດ", + "downloadErrorText": "ດາວໂຫຼດບໍ່ສຳເລັດ.", + "errorAccessDeny": "ທ່ານກໍາລັງພະຍາຍາມດໍາເນີນການໃນໜ້າທີ່ທ່ານບໍ່ມີສິດສໍາລັບດໍາເນີນການ.
    ກະລຸນາ, ຕິດຕໍ່ແອດມີນລະບົບຂອງທ່ານ.", + "errorAutoFilterChange": "ຄຳສັ່ງດັ່ງກ່າວບໍ່ຖືກອະນຸຍາດ ເນື່ອງຈາກມັນກຳລັງພະຍາຍາມປ່ຽນເຊລໃນຕາຕະລາງໃນແຜ່ນງານຂອງເຈົ້າ.", + "errorAutoFilterChangeFormatTable": "ການດຳເນີນການບໍ່ສາມາດເຮັດໄດ້ສຳລັບຕາລາງທີ່ເລືອກ ເນື່ອງຈາກທ່ານບໍ່ສາມາດຍ້າຍສ່ວນໃດນຶ່ງຂອງຕາຕາລາງໄດ້.
    ເລືອກໄລຍະຂໍ້ມູນອື່ນເພື່ອໃຫ້ຕາຕະລາງທັງໝົດຖືກປ່ຽນ ແລະລອງໃໝ່ອີກ.", + "errorAutoFilterDataRange": "ການດຳເນີນການດັ່ງກ່າວບໍ່ສາມາດເຮັດໄດ້ສຳລັບຊ່ວງຕາລາງທີ່ເລືອກ.
    ເລືອກຊ່ວງຂໍ້ມູນທີ່ເປັນເອກະພາບພາຍໃນ ຫຼື ນອກຕາຕະລາງ ແລ້ວລອງໃໝ່ອີກຄັ້ງ.", + "errorAutoFilterHiddenRange": "ບໍ່ສາມາດດຳເນີນການໄດ້ເນື່ອງຈາກພື້ນທີ່ດັ່ງກ່າວມີຕາລາງທີ່ຖືກຟີວເຕີ້.
    ກະລຸນາ, ຍົກເລີກຟີວເຕີ້.ແລ້ວລອງໃໝ່ອີກຄັ້ງ.", + "errorBadImageUrl": "URL ຮູບພາບບໍ່ຖືກຕ້ອງ", + "errorCannotUseCommandProtectedSheet": "ທ່ານບໍ່ສາມາດໃຊ້ຄໍາສັ່ງນີ້ຢູ່ໃນໜ້າທີ່ມີການປ້ອງກັນ. ເພື່ອໃຊ້ຄໍາສັ່ງນີ້, ຍົກເລີກການປົກປັກຮັກສາແຜ່ນ.
    ທ່ານອາດຈະຖືກຮ້ອງຂໍໃຫ້ໃສ່ລະຫັດຜ່ານ.", + "errorChangeArray": "ທ່ານບໍ່ສາມາດປ່ຽນສ່ວນ ໜຶ່ງ ຂອງອາເລໄດ້.", + "errorChangeOnProtectedSheet": "ຕາລາງ ຫຼື ແຜນກ້າບທີ່ທ່ານກຳລັງພະຍາຍາມປ່ຽນແປງແມ່ນຢູ່ໃນແຜ່ນທີ່ປ້ອງກັນໄວ້. ທ່ານອາດຈະຖືກຮ້ອງຂໍໃຫ້ໃສ່ລະຫັດຜ່ານ.", + "errorConnectToServer": "ບໍ່ສາມາດບັນທຶກເອກະສານນີ້ໄດ້. ກວດເບິ່ງການຕັ້ງຄ່າການເຊື່ອມຕໍ່ຂອງທ່ານ ຫຼື ຕິດຕໍ່ຜູ້ແອດມີນຂອງທ່ານ.
    ເມື່ອທ່ານຄລິກປຸ່ມ 'ຕົກລົງ', ທ່ານຈະຖືກເຕືອນໃຫ້ດາວໂຫລດເອກະສານ.", + "errorCopyMultiselectArea": "ຄຳ ສັ່ງນີ້ບໍ່ສາມາດໃຊ້ກັບການເລືອກຫລາຍໆອັນໄດ້ -
    ເລືອກຊ່ວງດຽວ ແລະ ລອງ ໃໝ່ ອີກຄັ້ງ", + "errorCountArg": "ເກີດຄວາມຜິດພາດໃນສູດຄຳນວນ.
    ຈຳນວນທີ່ຕ້ອງໃຊ້ໃນການພິຈາລະນາບໍ່ຖືກຕ້ອງ.", + "errorCountArgExceed": "ເກີດຄວາມຜິດພາດໃນສູດ.
    ທີ່ຕ້ອງໃຊ້ໃນການພິຈາລະນາມີຫຼາຍເກີນໄປ.", + "errorCreateDefName": "ຂອບເຂດທີ່ມີຊື່ບໍ່ສາມາດແກ້ໄຂໄດ້ ແລະ ລະບົບ ໃໝ່ ບໍ່ສາມາດສ້າງຂື້ນໄດ້ໃນເວລານີ້ເນື່ອງຈາກບາງສ່ວນກຳ ລັງຖືກດັດແກ້.", + "errorDatabaseConnection": "ຂໍ້ຜິດພາດຈາກທາງນອກ
    ຖານຂໍ້ມູນ ຂໍ້ຜິດພາດພາຍນອກ. ກະລຸນາ, ຕິດຕໍ່ການສະ ໜັບ ສະ ໜູນ.", + "errorDataEncrypted": "ໄດ້ຮັບການປ່ຽນແປງລະຫັດແລ້ວ, ບໍ່ສາມາດຖອດລະຫັດໄດ້.", + "errorDataRange": "ໄລຍະຂອງຂໍ້ມູນບໍ່ຖືກ", + "errorDataValidate": "ຄ່າທີ່ທ່ານປ້ອນບໍ່ຖືກຕ້ອງ.
    ຜູ້ໃຊ້ໄດ້ຈຳກັດຄ່າທີ່ສາມາດປ້ອນລົງໃນເຊວນີ້ໄດ້.", + "errorDefaultMessage": "ລະຫັດຂໍ້ຜິດພາດ: %1", + "errorEditingDownloadas": "ເກີດຄວາມຜິດພາດໃນລະຫວ່າງການເຮັດວຽກກັບເອກະສານ.
    ໃຊ້ຕົວເລືອກ 'ດາວໂຫລດ' ເພື່ອບັນທຶກໄຟລ໌ສໍາຮອງໄວ້ໃນເຄື່ອງ.", + "errorFilePassProtect": "ໄຟລ໌ດັ່ງກ່າວຖືກປ້ອງກັນດ້ວຍລະຫັດຜ່ານ ແລະ ບໍ່ສາມາດເປີດໄດ້.", + "errorFileRequest": "ຄວາມຜິດພາດພາຍນອກ.
    ການຮ້ອງຂໍໄຟລ໌. ກະລຸນາ, ຕິດຕໍ່ຜູ້ຊ່ວຍເຫລື່ອ", + "errorFileSizeExceed": "ຂະໜາດໄຟລ໌ເກີນຂີດຈຳກັດເຊີບເວີຂອງທ່ານ.
    ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານສຳລັບລາຍລະອຽດ.", + "errorFileVKey": "ຂໍ້ຜິດພາດພາຍນອກ.
    ລະຫັດບໍ່ຖືກຕ້ອງ. ກະລຸນາ, ຕິດຕໍ່ຜູ້ຊ່ວຍເຫລື່ອ.", + "errorFillRange": "ບໍ່ສາມາດຕຶ່ມໃສ່ບ່ອນເຊວທີ່ເລືອໄວ້
    ເຊວທີ່ລວມເຂົ້າກັນທັງໝົດຕ້ອງມີຂະໜາດເທົ່າກັນ", + "errorFormulaName": "ຜິດພາດໃນການປ້ອນສູດເຂົ້າ ສູດບໍ່ຖືກຕ້ອງ
    ກະລຸນາແກ້ໄຂຂໍ້ຜິດພາດ.", + "errorFormulaParsing": "ເກີດຄວາມຜິດພາດພາຍໃນ ໃນຂະນະທີ່ກຳລັງວິເຄາະສູດຄຳນວນ.", + "errorFrmlMaxLength": "ທ່ານບໍ່ສາມາດເພີ່ມສູດນີ້ໄດ້ເນື່ອງຈາກຄວາມຍາວຂອງມັນເກີນຈຳນວນຕົວອັກສອນທີ່ອະນຸຍາດ.
    ກະລຸນາແກ້ໄຂແລ້ວລອງໃໝ່ອີກຄັ້ງ.", + "errorFrmlMaxReference": "ທ່ານບໍ່ສາມາດໃສ່ສູດນີ້ເພາະມັນມີຄ່າ,
    ເອກະສານອ້າງອີງຂອງເຊວ, ແລະ/ຫຼື ຊື່ຕ່າງໆຫລາຍເກີນໄປ.", + "errorFrmlMaxTextLength": "ຄ່າຂໍ້ຄວາມໃນສູດຄຳນວນຖືກຈຳກັດໄວ້ທີ່ 255 ຕົວອັກສອນ.
    ໃຊ້ຟັງຊັນ CONCATENATE ຫຼື ຕົວດຳເນີນການຕໍ່ກັນ (&)", + "errorInvalidRef": "ປ້ອນຊື່ໃຫ້ຖືກຕ້ອງສໍາລັບການເລືອກ ຫຼື ການອ້າງອີງທີ່ຖືກຕ້ອງ.", + "errorKeyEncrypt": "ບໍ່ຮູ້ຄຳອະທິບາຍຫຼັກ", + "errorKeyExpire": "ລະຫັດໝົດອາຍຸ", + "errorLoadingFont": "ຟອນບໍ່ໄດ້ຖືກໂຫລດ.
    ກະລຸນາແອດມີນຂອງທ່ານ.", + "errorLockedAll": "ການປະຕິບັດງານບໍ່ສາມາດເຮັດໄດ້ຍ້ອນວ່າແຜ່ນໄດ້ຖືກລັອກໂດຍຜູ້ໃຊ້ຄົນອື່ນ.", + "errorLockedCellPivot": "ທ່ານບໍ່ສາມາດປ່ຽນແປງຂໍ້ມູນທີ່ຢູ່ໃນຕາຕະລາງພິວອດໄດ້.", + "errorLockedWorksheetRename": "ບໍ່ສາມາດປ່ຽນຊື່ເອກະສານໄດ້ໃນເວລານີ້ຍ້ອນວ່າຖືກປ່ຽນຊື່ໂດຍຜູ້ໃຊ້ຄົນອື່ນ", + "errorMaxPoints": "ຈໍານວນສູງສຸດຕໍ່ຕາຕະລາງແມ່ນ 4096.", + "errorMoveRange": "ບໍ່ສາມາດເຊື່ອມຕາລາງຮ່ວມເຂົ້າກັນໄດ້", + "errorMultiCellFormula": "ບໍ່ອະນຸຍາດໃຫ້ມີສູດອາເລນຫຼາຍຫ້ອງໃນຕາຕະລາງເຊວ.", + "errorOpenWarning": "ຄວາມຍາວຂອງສູດໜຶ່ງໃນໄຟລ໌ເກີນ
    ຈຳນວນຕົວອັກສອນທີ່ອະນຸຍາດໃຫ້ ແລະ ມັນໄດ້ຖືກເອົາອອກ.", + "errorOperandExpected": "syntax ຂອງຟັງຊັນທີ່ປ້ອນບໍ່ຖືກຕ້ອງ. ກະລຸນາກວດເບິ່ງວ່າເຈົ້າພາດໜຶ່ງໃນວົງເລັບ - '(' ຫຼື ')'.", + "errorPasteMaxRange": "ພື້ນທີ່ສຳເນົາ ແລະ ທີວາງບໍ່ກົງກັນ. ກະລຸນາເລືອກພື້ນທີ່ທີ່ມີຂະໜາດດຽວກັນ ຫຼື ຄລິກທີ່ຕາລາງທຳອິດຕິດຕໍ່ກັນເພື່ອວາງເຊລທີ່ສຳເນົາໄວ້", + "errorPrintMaxPagesCount": "ຂໍອະໄພ, ບໍ່ສາມາດທີ່ຈະພິມຫລາຍອັກສອນຫລາຍກວ່າ 1500 ໃນໜ້າດ່ຽວໃນໂປຣແກຣມເວີຊັ່ນປະຈຸບັນ
    ຂໍ້ຈຳກັດນີ້ຈະຖືກຍົກເລີກໃນເວີຊັ່ນຕໍ່ໄປ.", + "errorSessionAbsolute": "ຊ່ວງເວລາການແກ້ໄຂເອກະສານໝົດອາຍຸແລ້ວ. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "errorSessionIdle": "ເອກະສານບໍ່ໄດ້ຮັບການແກ້ໄຂສໍາລັບການຂ້ອນຂ້າງຍາວ. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "errorSessionToken": "ການເຊື່ອມຕໍ່ກັບເຊີບເວີບໍ່ສະຖຽນ. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "errorStockChart": "ລຳດັບແຖວບໍ່ຖືກຕ້ອງ. ເພື່ອສ້າງຕາຕະລາງເກັບຂໍ້ຮູບກ້າບ, ວາງຂໍ້ມູນໃສ່ແຜ່ນງານຕາມລໍາດັບຕໍ່ໄປນີ້:
    ລາຄາເປີດ, ລາຄາສູງສຸດ, ລາຄາຕໍ່າສຸດ, ລາຄາປິດ.", + "errorUnexpectedGuid": "ຂໍ້ຜິດພາດພາຍນອກ.
    ຄຳແນະນຳທີ່ບໍ່ຄາດຄິດ. ກະລຸນາ, ຕິດຕໍ່ຜູ້ຊ່ວຍເຫລື່ອ.", + "errorUpdateVersionOnDisconnect": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຫາກໍຖືກກູ້ຄືນມາ, ແລະ ຟາຍເອກະສານໄດ້ມີການປ່ຽນແປງແລ້ວ.
    ກ່ອນທີ່ທ່ານຈະດຳເນີນການຕໍ່ໄປ, ທ່ານຕ້ອງໄດ້ດາວໂຫຼດຟາຍ ຫຼື ສຳເນົາເນື້ອຫາ ເພື່ອປ້ອງການການສູນເສຍ, ແລະ ທຳການໂຫຼດໜ້າຄືນອີກຄັ້ງ.", + "errorUserDrop": "ບໍ່ສາມາດເຂົ້າເຖິງເອກະສານໄດ້ໃນຂະນະນີ້.", + "errorUsersExceed": "ເກີນຈຳນວນຜູ້ຊົມໃຊ້ທີ່ແຜນການກຳນົດລາຄາອະນຸຍາດ", + "errorViewerDisconnect": "ການເຊື່ອມຕໍ່ຫາຍໄປ. ທ່ານຍັງສາມາດເບິ່ງເອກະສານໄດ້,
    ແຕ່ທ່ານຈະບໍ່ສາມາດດາວນ໌ໂຫລດຫຼືພິມມັນຈົນກ່ວາການເຊື່ອມຕໍ່ໄດ້ຮັບການຟື້ນຟູແລະຫນ້າຈະຖືກໂຫຼດໃຫມ່.", + "errorWrongBracketsCount": "ເກີດຄວາມຜິດພາດໃນສູດຄຳນວນ.
    ຈຳນວນຂອງວົງເລັບບໍ່ຄົບຕາມເງື່ອນໄຂ.", + "errorWrongOperator": "ເກີດຄວາມຜິດພາດໃນສູດຄຳນວນທີ່ປ້ອນເຂົ້າ. ໃຊ້ຕົວປະຕິບັດການຜິດ.
    ກະລຸນາແກ້ໄຂຂໍ້ຜິດພາດ.", + "notcriticalErrorTitle": "ເຕືອນ", + "openErrorText": "ມີຂໍ້ຜິດພາດເກີດຂຶ້ນໃນຂະນະທີ່ເປີດໄຟລ໌", + "pastInMergeAreaError": "ບໍ່ສາມາດເຊື່ອມຕາລາງຮ່ວມເຂົ້າກັນໄດ້", + "saveErrorText": "ເກີດຄວາມຜິດພາດຂຶ້ນໃນຂະນະທີ່ບັນທຶກໄຟລ໌", + "scriptLoadError": "ການເຊື່ອມຕໍ່ຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາ, ໂຫຼດໜ້ານີ້ຄືນໃໝ່.", + "textErrorPasswordIsNotCorrect": "ລະຫັດຜ່ານທີ່ທ່ານລະບຸນັ້ນບໍ່ຖືກຕ້ອງ.
    ກວດສອບວ່າກະແຈ CAPS LOCK ປິດຢູ່ ແລະໃຫ້ແນ່ໃຈວ່າໃຊ້ຕົວພິມໃຫຍ່ທີ່ຖືກຕ້ອງ.", + "unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", + "uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິພາດຮູບແບບຂອງຮູບ", + "uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ", + "uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.", "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", - "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", - "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", - "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", - "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", - "errorChangeArray": "You cannot change part of an array.", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", - "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", - "errorCountArg": "An error in the formula.
    Invalid number of arguments.", - "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", - "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", - "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileRequest": "External error.
    File Request. Please, contact support.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", - "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", - "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", - "errorFormulaName": "An error in the formula.
    Incorrect formula name.", - "errorFormulaParsing": "Internal error while the formula parsing.", - "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", - "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", - "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", - "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", - "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", - "errorLockedCellPivot": "You cannot change data inside a pivot table.", - "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", - "errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "errorMoveRange": "Cannot change a part of a merged cell", - "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", - "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", - "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", - "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", - "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
    Please correct the error.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "pastInMergeAreaError": "Cannot change a part of a merged cell", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
    Please contact your Document Server administrator.", - "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", - "textErrorPasswordIsNotCorrect": "The password you supplied is not correct.
    Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
    You might be requested to enter a password." + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", - "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", - "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "notcriticalErrorTitle": "Warning", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "textNo": "No", - "textOk": "Ok", - "textYes": "Yes", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait...", - "advDRMPassword": "Password", - "textCancel": "Cancel", - "textErrorWrongPassword": "The password you supplied is not correct.", - "textUnlockRange": "Unlock Range", - "textUnlockRangeWarning": "A range you are trying to change is password protected." + "advDRMPassword": "ລະຫັດຜ່ານ", + "applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", + "applyChangesTitleText": "ດາວໂຫຼດຂໍ້ມູນ", + "confirmMoveCellRange": "ຊ່ວງຕາລາງປາຍທາງສາມາດບັນຈຸຂໍ້ມູນໄດ້. ສືບຕໍ່ການດໍາເນີນການບໍ?", + "confirmPutMergeRange": "ຂໍ້ມູນຕົ້ນສະບັບປະກອບດ້ວຍເຊລທີ່ຖືກລວມເຂົ້າກັນ.
    ພວກມັນຈະຖືກແຍກອອກກ່ອນທີ່ຈະຖືກວາງໃສ່ໃນຕາຕະລາງ.", + "confirmReplaceFormulaInTable": "ສູດໃນຫົວແຖວຈະຖືກລຶບອອກ ແລະ ປ່ຽນເປັນຂໍ້ຄວາມໃນສູດ.
    ທ່ານຕ້ອງການສືບຕໍ່ບໍ?", + "downloadTextText": "ກຳລັງດາວໂຫຼດເອກະສານ...", + "downloadTitleText": "ດາວໂຫລດເອກະສານ", + "loadFontsTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", + "loadFontsTitleText": "ດາວໂຫຼດຂໍ້ມູນ", + "loadFontTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", + "loadFontTitleText": "ດາວໂຫຼດຂໍ້ມູນ", + "loadImagesTextText": "ກໍາລັງດາວໂຫຼດຮູບພາບ...", + "loadImagesTitleText": "ກໍາລັງດາວໂຫຼດຮູບພາບ", + "loadImageTextText": "ກໍາລັງດາວໂຫຼດຮູບພາບ...", + "loadImageTitleText": "ກໍາລັງໂລດຮູບພາບ", + "loadingDocumentTextText": "ກໍາລັງດາວໂຫຼດເອກະສານ...", + "loadingDocumentTitleText": "ກຳລັງດາວໂຫຼດເອກະສານ", + "notcriticalErrorTitle": "ເຕືອນ", + "openTextText": "ກໍາລັງເປີດເອກະສານ...", + "openTitleText": "ກໍາລັງເປີດເອກະສານ", + "printTextText": "ກໍາລັງພິມເອກະສານ...", + "printTitleText": "ກໍາລັງພິມເອກະສານ", + "savePreparingText": "ກະກຽມບັນທືກ", + "savePreparingTitle": "ກຳລັງກະກຽມບັນທືກ, ກະລຸນາລໍຖ້າ...", + "saveTextText": "ກໍາລັງບັນທຶກເອກະສານ...", + "saveTitleText": "ບັນທືກເອກະສານ", + "textCancel": "ຍົກເລີກ", + "textErrorWrongPassword": "ລະຫັດຜ່ານທີ່ທ່ານໃຫ້ນັ້ນບໍ່ຖືກຕ້ອງ.", + "textLoadingDocument": "ກຳລັງດາວໂຫຼດເອກະສານ", + "textNo": "ບໍ່", + "textOk": "ຕົກລົງ", + "textUnlockRange": "ປົດລັອກໄລຍະ", + "textUnlockRangeWarning": "ການປ່ຽນແມ່ນຖືກເຂົ້າລະຫັດຜ່ານ.", + "textYes": "ແມ່ນແລ້ວ", + "txtEditingMode": "ຕັ້ງຄ່າຮູບແບບການແກ້ໄຂ...", + "uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ...", + "uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", + "waitText": "ກະລຸນາລໍຖ້າ..." }, "Statusbar": { - "notcriticalErrorTitle": "Warning", - "textCancel": "Cancel", - "textDelete": "Delete", - "textDuplicate": "Duplicate", - "textErrNameExists": "Worksheet with this name already exists.", - "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", - "textErrNotEmpty": "Sheet name must not be empty", - "textErrorLastSheet": "The workbook must have at least one visible worksheet.", - "textErrorRemoveSheet": "Can't delete the worksheet.", - "textHide": "Hide", - "textMore": "More", - "textRename": "Rename", - "textRenameSheet": "Rename Sheet", - "textSheet": "Sheet", - "textSheetName": "Sheet Name", - "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textOk": "Ok", - "textMove": "Move", + "notcriticalErrorTitle": "ເຕືອນ", + "textCancel": "ຍົກເລີກ", + "textDelete": "ລົບ", + "textDuplicate": "ສຳເນົາ", + "textErrNameExists": "ຊື່ແຜ່ນນີ້ມີຢູ່ແລ້ວ.", + "textErrNameWrongChar": "ຊື່ຊີດບໍ່ສາມາດມີຕົວອັກສອນອັກຄະລະໄດ້: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "ຊື່ເເຜ່ນ ບໍ່ໃຫ້ປະວ່າງ", + "textErrorLastSheet": "ປຶ້ມວຽກຕ້ອງມີຢ່າງໜ້ອຍໜຶ່ງແຜ່ນວຽກທີ່ເຫັນໄດ້.", + "textErrorRemoveSheet": "ບໍ່ສາມາດລຶບແຜ່ນວຽກໄດ້", + "textHidden": "ເຊື່ອງ", + "textHide": "ເຊື່ອງໄວ້", + "textMore": "ຫຼາຍກວ່າ", + "textMove": "ຍ້າຍ", + "textMoveBefore": "ເຄື່ອນຍ້າຍກ່ອນແຜ່ນງານ", + "textMoveToEnd": "(ເລື່ອນໄປຈົນສຸດ)", + "textOk": "ຕົກລົງ", + "textRename": "ປ່ຽນຊື່", + "textRenameSheet": "ປ້່ຽນຊື່ແຜ່ນຫຼັກ", + "textSheet": "ແຜ່ນງານ", + "textSheetName": "ຊື່ແຜ່ນເຈ້ຍ", + "textUnhide": "ເປີດເຜີຍ", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden", - "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)", - "textTabColor": "Tab Color" + "textTabColor": "Tab Color", + "textWarnDeleteSheet": "ແຜ່ນວຽກອາດມີຂໍ້ມູນ. ດໍາເນີນການດໍາເນີນງານບໍ?" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this Page" + "dlgLeaveMsgText": "ທ່ານມີການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກໄວ້ໃນເອກະສານນີ້. ຄລິກທີ່ 'ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທຶກອັດຕະໂນມັດ. ຄລິກ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໄວ້ທັງໝົດ.", + "dlgLeaveTitleText": "ເຈົ້າອອກຈາກລະບົບ", + "leaveButtonText": "ອອກຈາກໜ້ານີ້", + "stayButtonText": "ຢູ່ໃນໜ້ານີ້" }, "View": { "Add": { - "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "notcriticalErrorTitle": "Warning", - "sCatDateAndTime": "Date and time", - "sCatEngineering": "Engineering", - "sCatFinancial": "Financial", - "sCatInformation": "Information", - "sCatLogical": "Logical", - "sCatLookupAndReference": "Lookup and Reference", - "sCatMathematic": "Math and trigonometry", - "sCatStatistical": "Statistical", - "sCatTextAndData": "Text and data", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textChart": "Chart", - "textComment": "Comment", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFilter": "Filter", - "textFunction": "Function", - "textGroups": "CATEGORIES", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "ERROR! Invalid cells range", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textOther": "Other", - "textPictureFromLibrary": "Picture from library", - "textPictureFromURL": "Picture from URL", - "textRange": "Range", - "textRequired": "Required", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSheet": "Sheet", - "textSortAndFilter": "Sort and Filter", - "txtExpand": "Expand and sort", - "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "txtSorting": "Sorting", - "txtSortSelected": "Sort selected", - "textSelectedRange": "Selected Range", - "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", - "txtNo": "No", - "txtYes": "Yes", - "textOk": "Ok" + "errorMaxRows": "ຜິດພາດ!, ຈຳນວນຊູດຂໍ້ມູນສູງສຸດຕໍ່ຜັງແມ່ນ 255", + "errorStockChart": "ລຳດັບແຖວບໍ່ຖືກຕ້ອງ. ເພື່ອສ້າງຕາຕະລາງເກັບຂໍ້ຮູບກ້າບ, ວາງຂໍ້ມູນໃສ່ແຜ່ນງານຕາມລໍາດັບຕໍ່ໄປນີ້:
    ລາຄາເປີດ, ລາຄາສູງສຸດ, ລາຄາຕໍ່າສຸດ, ລາຄາປິດ.", + "notcriticalErrorTitle": "ເຕືອນ", + "sCatDateAndTime": "ວັນທີ ແລະ ເວລາ", + "sCatEngineering": "ວິສະວະກຳ", + "sCatFinancial": "ການເງິນ", + "sCatInformation": "ຂໍ້ມູນ", + "sCatLogical": "ມີເຫດຜົນ", + "sCatLookupAndReference": "ຄົ້ນຫາ ແລະ ອ້າງອີງ", + "sCatMathematic": "ແບບຈັບຄູ່ ແລະ ແບບບັງຄັບ", + "sCatStatistical": "ທາງສະຖິຕິ", + "sCatTextAndData": "ເນື້ອຫາ ແລະ ຂໍ້ມູນ", + "textAddLink": "ເພີ່ມລິ້ງ", + "textAddress": "ທີ່ຢູ່", + "textAllTableHint": "ສົ່ງຄືນເນື້ອຫາທັງໝົດຂອງຕາຕະລາງ ຫຼື ຖັນຕາຕະລາງທີ່ລະບຸໄວ້ ລວມທັງສ່ວນຫົວຖັນ, ຂໍ້ມູນ ແລະແຖວທັງໝົດ", + "textBack": "ກັບຄືນ", + "textCancel": "ຍົກເລີກ", + "textChart": "ແຜນຮູບວາດ", + "textComment": "ຄໍາເຫັນ", + "textDataTableHint": "ສົ່ງຄືນຕາລາງຂໍ້ມູນຂອງຕາຕະລາງ ຫຼືຖັນຕາຕະລາງທີ່ລະບຸ", + "textDisplay": "ສະແດງຜົນ", + "textEmptyImgUrl": "ທ່ານຈໍາເປັນຕ້ອງລະບຸ URL ຮູບພາບ.", + "textExternalLink": "ລິງພາຍນອກ", + "textFilter": "ກັ່ນຕອງ", + "textFunction": "ໜ້າທີ່ ", + "textGroups": "ໝວດໝູ່", + "textHeadersTableHint": "ສົ່ງຄືນສ່ວນຫົວຖັນສຳລັບຕາຕະລາງ ຫຼືຖັນຕາຕະລາງທີ່ລະບຸ", + "textImage": "ຮູບພາບ", + "textImageURL": "URL ຮູບພາບ", + "textInsert": "ເພີ່ມ", + "textInsertImage": "ເພີ່ມຮູບພາບ", + "textInternalDataRange": "ຂໍ້ມູນພາຍໃນ", + "textInvalidRange": "ຜິດພາດ,ເຊວບໍ່ຖືກຕ້ອງ", + "textLink": "ລີ້ງ", + "textLinkSettings": "ການຕັ້ງຄ່າລີ້ງ", + "textLinkType": "ປະເພດລີ້ງ", + "textOk": "ຕົກລົງ", + "textOther": "ອື່ນໆ", + "textPictureFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", + "textPictureFromURL": "ຮູບພາບຈາກ URL", + "textRange": "ຊ່ວງ", + "textRequired": "ຕ້ອງການ", + "textScreenTip": "ຄຳແນະນຳໃນໜ້າຈໍ", + "textSelectedRange": "ຊ່ວງທີ່ເລືອກ", + "textShape": "ຮູບຮ່າງ", + "textSheet": "ແຜ່ນງານ", + "textSortAndFilter": "ລຽງລຳດັບ ແລະ ກອງ", + "textThisRowHint": "ເລືອກສະເພາະຄໍລຳທີ່ລະບຸ", + "textTotalsTableHint": "ສົ່ງຄືນແຖວທັງໝົດສຳລັບຕາຕະລາງ ຫຼືຖັນຕາຕະລາງທີ່ລະບຸ", + "txtExpand": "ຂະຫຍາຍ ແລະ ຈັດລຽງ", + "txtExpandSort": "ຂໍ້ມູນຖັດຈາກສີ່ງທີ່ເລືອກຈະບໍ່ຖືກຈັດລຽງລຳດັບ. ທ່ານຕ້ອງການຂະຫຍາຍສ່ວນທີ່ເລືອກເພື່ອກວມເອົາຂໍ້ມູນທີ່ຢູ່ຕິດກັນ ຫຼື ດຳເນີນການຈັດລຽງເຊລທີ່ເລືອກໃນປະຈຸບັນເທົ່ານັ້ນຫຼືບໍ່?", + "txtLockSort": "ພົບຂໍ້ມູນຢູ່ຖັດຈາກການເລືອກຂອງທ່ານ, ແຕ່ທ່ານບໍ່ມີສິດພຽງພໍເພື່ອປ່ຽນຕາລາງເຫຼົ່ານັ້ນ.
    ທ່ານຕ້ອງການສືບຕໍ່ກັບການເລືອກປັດຈຸບັນບໍ?", + "txtNo": "ບໍ່", + "txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"", + "txtSorting": "ການລຽງລຳດັບ", + "txtSortSelected": "ຈັດລຽງທີ່ເລືອກ", + "txtYes": "ແມ່ນແລ້ວ" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textAccounting": "Accounting", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAddress": "Address", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllBorders": "All Borders", - "textAngleClockwise": "Angle Clockwise", - "textAngleCounterclockwise": "Angle Counterclockwise", - "textAuto": "Auto", - "textAxisCrosses": "Axis Crosses", - "textAxisOptions": "Axis Options", - "textAxisPosition": "Axis Position", - "textAxisTitle": "Axis Title", - "textBack": "Back", - "textBetweenTickMarks": "Between Tick Marks", - "textBillions": "Billions", - "textBorder": "Border", - "textBorderStyle": "Border Style", - "textBottom": "Bottom", - "textBottomBorder": "Bottom Border", - "textBringToForeground": "Bring to Foreground", - "textCell": "Cell", - "textCellStyles": "Cell Styles", - "textCenter": "Center", - "textChart": "Chart", - "textChartTitle": "Chart Title", - "textClearFilter": "Clear Filter", - "textColor": "Color", - "textCross": "Cross", - "textCrossesValue": "Crosses Value", - "textCurrency": "Currency", - "textCustomColor": "Custom Color", - "textDataLabels": "Data Labels", - "textDate": "Date", - "textDefault": "Selected range", - "textDeleteFilter": "Delete Filter", - "textDesign": "Design", - "textDiagonalDownBorder": "Diagonal Down Border", - "textDiagonalUpBorder": "Diagonal Up Border", - "textDisplay": "Display", - "textDisplayUnits": "Display Units", - "textDollar": "Dollar", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textEmptyItem": "{Blanks}", - "textErrorMsg": "You must choose at least one value", - "textErrorTitle": "Warning", - "textEuro": "Euro", - "textExternalLink": "External Link", - "textFill": "Fill", - "textFillColor": "Fill Color", - "textFilterOptions": "Filter Options", - "textFit": "Fit Width", - "textFonts": "Fonts", - "textFormat": "Format", - "textFraction": "Fraction", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textGeneral": "General", - "textGridlines": "Gridlines", - "textHigh": "High", - "textHorizontal": "Horizontal", - "textHorizontalAxis": "Horizontal Axis", - "textHorizontalText": "Horizontal Text", + "notcriticalErrorTitle": "ເຕືອນ", + "textAccounting": "ການບັນຊີ", + "textActualSize": "ຂະໜາດແທ້ຈິງ", + "textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", + "textAddress": "ທີ່ຢູ່", + "textAlign": "ຈັດແນວ", + "textAlignBottom": "ຈັດຕ່ຳແໜ່ງທາງດ້ານລຸ່ມ", + "textAlignCenter": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", + "textAlignLeft": "ຈັດຕຳແໜ່ງຕິດຊ້າຍ", + "textAlignMiddle": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", + "textAlignRight": "ຈັດຕຳແໜ່ງຕິດຂວາ", + "textAlignTop": "ຈັດຕຳແໜ່ງດ້ານເທິງ", + "textAllBorders": "ຂອບທັງໝົດ", + "textAngleClockwise": "ມຸມຕາມເຂັມໂມງ", + "textAngleCounterclockwise": "ມຸມທວນເຂັມໂມງ", + "textAuto": "ອັດຕະໂນມັດ", + "textAutomatic": "ອັດຕະໂນມັດ", + "textAxisCrosses": "ແກນກາງ", + "textAxisOptions": "ຕົວເລືອກແກນ", + "textAxisPosition": "ຕົວເລືອກແກນ", + "textAxisTitle": "ແກນຫົວຂໍ້", + "textBack": "ກັບຄືນ", + "textBetweenTickMarks": "ລະຫ່ວາງເຄື່ອງໝາຍຖືກ", + "textBillions": "ຕື້", + "textBorder": "ຂອບເຂດ", + "textBorderStyle": "ຮູບແບບເສັ້ນຂອບ", + "textBottom": "ລຸ່ມສຸດ", + "textBottomBorder": "ເສັ້ນຂອບດ້ານລູ່ມ", + "textBringToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", + "textCell": "ແຊວ", + "textCellStyles": "ລັກສະນະ ແຊວ", + "textCenter": "ທາງກາງ", + "textChart": "ແຜນຮູບວາດ", + "textChartTitle": "ໃສ່ຊື່ແຜນຮູບວາດ", + "textClearFilter": "ລົບລ້າງການຄັດກອງ", + "textColor": "ສີ", + "textCross": "ຂ້າມ", + "textCrossesValue": "ຂ້າມມູນຄ່າ", + "textCurrency": "ສະກຸນເງິນ", + "textCustomColor": "ປະເພດ ຂອງສີ", + "textDataLabels": "ປ້າຍຊື່ຂໍ້ມູນ", + "textDate": "ວັນທີ", + "textDefault": "ຊ່ວງທີ່ເລືອກ", + "textDeleteFilter": "ລົບຕົວຕອງ", + "textDesign": "ອອກແບບ", + "textDiagonalDownBorder": "ເສັ້ນຂອບຂວາງດ້ານລຸ່ມ", + "textDiagonalUpBorder": "ເສັ້ນຂອບຂວາງດ້ານເທຶງ", + "textDisplay": "ສະແດງຜົນ", + "textDisplayUnits": "ໜ່ວຍສະແດງຜົນ", + "textDollar": "ດອນລາ", + "textEditLink": "ແກ້ໄຂ ລີ້ງ", + "textEffects": "ຜົນ", + "textEmptyImgUrl": "ທ່ານຈໍາເປັນຕ້ອງລະບຸ URL ຮູບພາບ.", + "textEmptyItem": "{ຊ່ອງວ່າງ}", + "textErrorMsg": "ທ່ານຕ້ອງເລືອກຢ່າງ ໜ້ອຍ ໜຶ່ງຄ່າ", + "textErrorTitle": "ເຕືອນ", + "textEuro": "ສະກຸນເງິນຢູໂຣ", + "textExternalLink": "ລິງພາຍນອກ", + "textFill": "ຕື່ມ", + "textFillColor": "ຕື່ມສີ", + "textFilterOptions": "ທາງເລືອກການກັ່ນຕອງ", + "textFit": "ຄວາມກວ້າງພໍດີ", + "textFonts": "ຕົວອັກສອນ", + "textFormat": "ປະເພດ", + "textFraction": "ເສດສ່ວນ", + "textFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", + "textFromURL": "ຮູບພາບຈາກ URL", + "textGeneral": "ທົ່ວໄປ", + "textGridlines": "ເສັ້ນຕາຕະລາງ", + "textHigh": "ສູງ", + "textHorizontal": "ແນວນອນ", + "textHorizontalAxis": "ແກນລວງນອນ", + "textHorizontalText": "ຂໍ້ຄວາມແນວນອນ", "textHundredMil": "100 000 000", - "textHundreds": "Hundreds", + "textHundreds": "ຈຳນວນໜື່ງຮ້ອຍ", "textHundredThousands": "100 000", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textIn": "In", - "textInnerBottom": "Inner Bottom", - "textInnerTop": "Inner Top", - "textInsideBorders": "Inside Borders", - "textInsideHorizontalBorder": "Inside Horizontal Border", - "textInsideVerticalBorder": "Inside Vertical Border", - "textInteger": "Integer", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "Invalid cells range", - "textJustified": "Justified", - "textLabelOptions": "Label Options", - "textLabelPosition": "Label Position", - "textLayout": "Layout", - "textLeft": "Left", - "textLeftBorder": "Left Border", - "textLeftOverlay": "Left Overlay", - "textLegend": "Legend", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textLow": "Low", - "textMajor": "Major", - "textMajorAndMinor": "Major And Minor", - "textMajorType": "Major Type", - "textMaximumValue": "Maximum Value", - "textMedium": "Medium", - "textMillions": "Millions", - "textMinimumValue": "Minimum Value", - "textMinor": "Minor", - "textMinorType": "Minor Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextToAxis": "Next to Axis", - "textNoBorder": "No Border", - "textNone": "None", - "textNoOverlay": "No Overlay", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumber": "Number", - "textOnTickMarks": "On Tick Marks", - "textOpacity": "Opacity", - "textOut": "Out", - "textOuterTop": "Outer Top", - "textOutsideBorders": "Outside Borders", - "textOverlay": "Overlay", - "textPercentage": "Percentage", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPound": "Pound", + "textHyperlink": "ົໄຮເປີລີ້ງ", + "textImage": "ຮູບພາບ", + "textImageURL": "URL ຮູບພາບ", + "textIn": "ຂ້າງໃນ", + "textInnerBottom": "ດ້ານລຸ່ມພາຍໃນ", + "textInnerTop": "ດ້ານເທິງ ພາຍໃນ", + "textInsideBorders": "ພາຍໃນພື້ນທີ່", + "textInsideHorizontalBorder": "ພາຍໃນເສັ້ນຂອບລວງນອນ", + "textInsideVerticalBorder": "ພາຍໃນເສັ້ນຂອບລວງຕັ້ງ", + "textInteger": "ຕົວເລກເຕັມ", + "textInternalDataRange": "ຂໍ້ມູນພາຍໃນ", + "textInvalidRange": "ເຊວບໍ່ຖືກຕ້ອງ", + "textJustified": "ຖືກຕ້ອງ", + "textLabelOptions": "ຕົວເລືອກປ້າຍກຳກັບ", + "textLabelPosition": " ປ້າຍກຳກັບຕຳ ແໜ່ງ", + "textLayout": "ແຜນຜັງ", + "textLeft": "ຊ້າຍ", + "textLeftBorder": "ເສັ້ນຂອບດ້ານຊ້າຍ ", + "textLeftOverlay": "ຊ້ອນທັບດ້ານຊ້າຍ", + "textLegend": "ຄວາມໝາຍ", + "textLink": "ລີ້ງ", + "textLinkSettings": "ການຕັ້ງຄ່າລີ້ງ", + "textLinkType": "ປະເພດລີ້ງ", + "textLow": "ຕໍາ", + "textMajor": "ສຳຄັນ", + "textMajorAndMinor": "ສຳຄັນແລະບໍ່ສຳຄັນ", + "textMajorType": "ປະເພດສຳຄັນ", + "textMaximumValue": "ຄ່າການສູງສຸດ", + "textMedium": "ເຄີ່ງກາງ", + "textMillions": "ໜື່ງລ້ານ", + "textMinimumValue": "ຄ່າຕ່ຳສຸດ", + "textMinor": "ນ້ອຍ", + "textMinorType": "ປະເພດນ້ອຍ", + "textMoveBackward": "ຍ້າຍໄປທາງຫຼັງ", + "textMoveForward": "ຍ້າຍໄປດ້ານໜ້າ", + "textNextToAxis": "ຖັດຈາກແກນ", + "textNoBorder": "ໍບໍ່ມີຂອບ", + "textNone": "ບໍ່ມີ", + "textNoOverlay": "ບໍ່ມີການຊ້ອນກັນ", + "textNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"", + "textNumber": "ຕົວເລກ", + "textOk": "ຕົກລົງ", + "textOnTickMarks": "ໃນເຄື່ອງໝາຍຖືກ", + "textOpacity": "ຄວາມເຂັ້ມ", + "textOut": "ອອກ", + "textOuterTop": "ທາງເທີງດ້ານນອກ", + "textOutsideBorders": "ເສັ້ນຂອບນອກ", + "textOverlay": "ການຊ້ອນກັນ", + "textPercentage": "ເປີເຊັນ", + "textPictureFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", + "textPictureFromURL": "ຮູບພາບຈາກ URL", + "textPound": "ຕີ", "textPt": "pt", - "textRange": "Range", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textRequired": "Required", - "textRight": "Right", - "textRightBorder": "Right Border", - "textRightOverlay": "Right Overlay", - "textRotated": "Rotated", - "textRotateTextDown": "Rotate Text Down", - "textRotateTextUp": "Rotate Text Up", - "textRouble": "Rouble", - "textScientific": "Scientific", - "textScreenTip": "Screen Tip", - "textSelectAll": "Select All", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSheet": "Sheet", - "textSize": "Size", - "textStyle": "Style", + "textRange": "ຊ່ວງ", + "textRemoveChart": "ລົບແຜນວາດ", + "textRemoveImage": "ລົບຮູບ", + "textRemoveLink": "ລົບລີ້ງ", + "textRemoveShape": "ລົບຮ່າງ", + "textReorder": "ຈັດລຽງລໍາດັບຄືນ", + "textReplace": "ປ່ຽນແທນ", + "textReplaceImage": "ປ່ຽນແທນຮູບ", + "textRequired": "ຕ້ອງການ", + "textRight": "ຂວາ", + "textRightBorder": "ຂອບດ້ານຂວາ", + "textRightOverlay": "ພາບຊ້ອນທັບດ້ານຂວາ", + "textRotated": "ການໝຸນ", + "textRotateTextDown": "ປິ່ນຫົວຂໍ້ຄວາມລົງ", + "textRotateTextUp": "ປິ່ນຫົວຂໍ້ຄວາມຂື້ນ", + "textRouble": "ເງິນລູເບີນ ຂອງລັດເຊຍ", + "textScientific": "ວິທະຍາສາດ", + "textScreenTip": "ຄຳແນະນຳໃນໜ້າຈໍ", + "textSelectAll": "ເລືອກທັງໝົດ", + "textSelectObjectToEdit": "ເລືອກຈຸດທີ່ຕ້ອງການເພື່ອແກ້ໄຂ", + "textSendToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", + "textSettings": "ການຕັ້ງຄ່າ", + "textShape": "ຮູບຮ່າງ", + "textSheet": "ແຜ່ນງານ", + "textSize": "ຂະໜາດ", + "textStyle": "ແບບ", "textTenMillions": "10 000 000", "textTenThousands": "10 000", - "textText": "Text", - "textTextColor": "Text Color", - "textTextFormat": "Text Format", - "textTextOrientation": "Text Orientation", - "textThick": "Thick", - "textThin": "Thin", - "textThousands": "Thousands", - "textTickOptions": "Tick Options", - "textTime": "Time", - "textTop": "Top", - "textTopBorder": "Top Border", - "textTrillions": "Trillions", - "textType": "Type", - "textValue": "Value", - "textValuesInReverseOrder": "Values in Reverse Order", - "textVertical": "Vertical", - "textVerticalAxis": "Vertical Axis", - "textVerticalText": "Vertical Text", - "textWrapText": "Wrap Text", - "textYen": "Yen", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "txtSortHigh2Low": "Sort Highest to Lowest", - "txtSortLow2High": "Sort Lowest to Highest", - "textAutomatic": "Automatic", - "textOk": "Ok" + "textText": "ຂໍ້ຄວາມ", + "textTextColor": "ສີຂໍ້ຄວາມ", + "textTextFormat": "ຮູບແບບເນື້ອຫາ", + "textTextOrientation": "ທິດທາງຂໍ້ຄວາມ", + "textThick": "ໜາ", + "textThin": "ບາງ", + "textThousands": "ຫຼາຍພັນ", + "textTickOptions": "ຕົວເລືອກຄວາມໜາ", + "textTime": "ເວລາ", + "textTop": "ເບື້ອງເທີງ", + "textTopBorder": "ຂອບເບື້ອງເທິງ", + "textTrillions": "ພັນຕື້", + "textType": "ພິມ", + "textValue": "ຄ່າ", + "textValuesInReverseOrder": "ຄ່າໃນລຳດັບຢ້ອນກັບ ", + "textVertical": "ລວງຕັ້ງ", + "textVerticalAxis": "ແກນລວງຕັ້ງ", + "textVerticalText": "ຂໍ້ຄວາມລວງຕັ້ງ", + "textWrapText": "ຕັດຂໍ້ຄວາມ", + "textYen": "ເງິນເຢັນ", + "txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"", + "txtSortHigh2Low": "ລຽງລຳດັບຈາກສູງສຸດໄປຫາຕ່ຳສຸດ", + "txtSortLow2High": "ລຽງລຳດັບແຕ່ຕ່ຳສຸດໄປຫາສູງສຸດ" }, "Settings": { - "advCSVOptions": "Choose CSV options", - "advDRMEnterPassword": "Your password, please:", - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textAddress": "Address", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textByColumns": "By columns", - "textByRows": "By rows", - "textCancel": "Cancel", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCommentingDisplay": "Commenting Display", - "textComments": "Comments", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with a notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textEmail": "Email", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textFormulaLanguage": "Formula Language", - "textFormulas": "Formulas", - "textHelp": "Help", - "textHideGridlines": "Hide Gridlines", - "textHideHeadings": "Hide Headings", - "textHighlightRes": "Highlight results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLocation": "Location", - "textLookIn": "Look In", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMatchCase": "Match Case", - "textMatchCell": "Match Cell", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPoweredBy": "Powered By", - "textPrint": "Print", - "textR1C1Style": "R1C1 Reference Style", - "textRegionalSettings": "Regional Settings", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSearchBy": "Search", - "textSearchIn": "Search In", - "textSettings": "Settings", - "textSheet": "Sheet", - "textShowNotification": "Show Notification", - "textSpreadsheetFormats": "Spreadsheet Formats", - "textSpreadsheetInfo": "Spreadsheet Info", - "textSpreadsheetSettings": "Spreadsheet Settings", - "textSpreadsheetTitle": "Spreadsheet Title", - "textSubject": "Subject", - "textTel": "Tel", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textValues": "Values", - "textVersion": "Version", - "textWorkbook": "Workbook", - "txtDelimiter": "Delimiter", - "txtEncoding": "Encoding", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", - "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", + "advCSVOptions": "ເລືອກຕົວເລືອກຂອງ CSV", + "advDRMEnterPassword": "ກະລຸນາໃສ່ລະຫັດຜ່ານຂອງທ່ານ", + "advDRMOptions": "ຟຮາຍມີການປົກປ້ອງ", + "advDRMPassword": "ລະຫັດຜ່ານ", + "closeButtonText": "ປິດຟຮາຍເອກະສານ", + "notcriticalErrorTitle": "ເຕືອນ", + "textAbout": "ກ່ຽວກັບ", + "textAddress": "ທີ່ຢູ່", + "textApplication": "ແອັບ", + "textApplicationSettings": "ການຕັ້ງຄ່າແອັບ", + "textAuthor": "ຜູ້ຂຽນ", + "textBack": "ກັບຄືນ", + "textBottom": "ລຸ່ມສຸດ", + "textByColumns": "ໂດຍ ຄໍລັມ", + "textByRows": "ໂດຍ ແຖວ", + "textCancel": "ຍົກເລີກ", + "textCentimeter": "ເຊັນຕິເມັດ", + "textChooseCsvOptions": "ເລືອກຕົວເລືອກຂອງ CSV", + "textChooseDelimeter": "ເລືອກຕົວຂັ້ນ", + "textChooseEncoding": "ເລືອກການເຂົ້າລະຫັດ", + "textCollaboration": "ຮ່ວມກັນ", + "textColorSchemes": "ໂທນສີ", + "textComment": "ຄໍາເຫັນ", + "textCommentingDisplay": "ການສະແດງຄວາມຄິດເຫັນ", + "textComments": "ຄໍາເຫັນ", + "textCreated": "ສ້າງ", + "textCustomSize": "ກຳນົດຂະໜາດ", + "textDarkTheme": "ຮູບແບບສີສັນມືດ", + "textDelimeter": "ຂອບເຂດຈຳກັດ", + "textDisableAll": "ປິດທັງໝົດ", + "textDisableAllMacrosWithNotification": "ປິດທຸກ ມາກໂຄ ດ້ວຍ ການແຈ້ງເຕືອນ", + "textDisableAllMacrosWithoutNotification": "ປິດທຸກ ມາກໂຄ ໂດຍບໍ່ແຈ້ງເຕືອນ", + "textDone": "ສໍາເລັດ", + "textDownload": "ດາວໂຫຼດ", + "textDownloadAs": "ດາວໂຫລດເປັນ", + "textEmail": "ອີເມລ", + "textEnableAll": "ເປີດທັງໝົດ", + "textEnableAllMacrosWithoutNotification": "ເປີດທຸກມາກໂຄໂດຍບໍ່ແຈ້ງເຕືອນ", + "textEncoding": "ການເຂົ້າລະຫັດ", + "textExample": "ຕົວຢ່າງ", + "textFind": "ຊອກ", + "textFindAndReplace": "ຄົ້ນຫາແລະປ່ຽນແທນ", + "textFindAndReplaceAll": "ຄົ້ນຫາ ແລະ ປ່ຽນແທນທັງໝົດ", + "textFormat": "ປະເພດ", + "textFormulaLanguage": "ຕຳລາພາສາ", + "textFormulas": "ສູດ", + "textHelp": "ຊວ່ຍ", + "textHideGridlines": "ເຊື່ອງຕາຕະລາງໄວ້", + "textHideHeadings": "ເຊື່ອງຫົວຂໍ້ໄວ້", + "textHighlightRes": "ໄຮໄລ້ ຜົນລັບ", + "textInch": "ນີ້ວ", + "textLandscape": "ພູມສັນຖານ", + "textLastModified": "ການແກ້ໄຂຄັ້ງລ້າສຸດ", + "textLastModifiedBy": "ແກ້ໄຂຄັ້ງລ້າສຸດໂດຍ", + "textLeft": "ຊ້າຍ", + "textLocation": "ສະຖານທີ", + "textLookIn": "ເບິ່ງເຂົ້າໄປທາງໃນ", + "textMacrosSettings": "ການຕັ້ງຄ່າທົ່ວໄປ", + "textMargins": "ຂອບ", + "textMatchCase": "ກໍລະນີຈັບຄູ່ກັນ", + "textMatchCell": "ແຊວຈັບຄູ່ກັນ", + "textNoTextFound": "ບໍ່ພົບເນື້ອຫາ", + "textOk": "ຕົກລົງ", + "textOpenFile": "ໃສ່ລະຫັດຜ່ານເພື່ອເປີດໄຟລ໌", + "textOrientation": "ການຈັດວາງ", + "textOwner": "ເຈົ້າຂອງ", + "textPoint": "ຈຸດ", + "textPortrait": "ລວງຕັ້ງ", + "textPoweredBy": "ສ້າງໂດຍ", + "textPrint": "ພິມ", + "textR1C1Style": "ຮູບແບບການອ້າງອີງ R1C1", + "textRegionalSettings": "ການຕັ້ງຄ່າຂອບເຂດ", + "textReplace": "ປ່ຽນແທນ", + "textReplaceAll": "ປ່ຽນແທນທັງໝົດ", + "textResolvedComments": "ແກ້ໄຂຄໍາເຫັນ", + "textRight": "ຂວາ", + "textSearch": "ຄົ້ນຫາ", + "textSearchBy": "ຄົ້ນຫາ", + "textSearchIn": "ຊອກຫາໃນ", + "textSettings": "ການຕັ້ງຄ່າ", + "textSheet": "ແຜ່ນງານ", + "textShowNotification": "ສະແດງການແຈ້ງເຕືອນ", + "textSpreadsheetFormats": "ຮູບແບບຕາຕະລາງ", + "textSpreadsheetInfo": "ຂໍ້ມູນກ່ຽວກັບຕາຕະລາງ", + "textSpreadsheetSettings": "ການຕັ້ງຄ່າຕາຕະລາງ", + "textSpreadsheetTitle": "ຫົວຂໍ້ຕາຕະລາງ", + "textSubject": "ເລື່ອງ", + "textTel": "ໂທ", + "textTitle": "ຫົວຂໍ້", + "textTop": "ເບື້ອງເທີງ", + "textUnitOfMeasurement": "ຫົວຫນ່ວຍວັດແທກ", + "textUploaded": "ອັບໂຫລດສຳເລັດ", + "textValues": "ຄ່າ", + "textVersion": "ລຸ້ນ", + "textWorkbook": "ປື້ມເຮັດວຽກ", + "txtColon": "ຈ້ຳສອງເມັດ", + "txtComma": "ຈຸດ", + "txtDelimiter": "ຂອບເຂດຈຳກັດ", + "txtDownloadCsv": "ດາວໂຫລດ CSV", + "txtEncoding": "ການເຂົ້າລະຫັດ", + "txtIncorrectPwd": "ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ", + "txtOk": "ຕົກລົງ", + "txtProtected": "ຖ້າເຈົ້ານໍາໃຊ້ລະຫັດເພື່ອເປີດເອກະສານ, ລະຫັດປັດຈຸບັນຈະຖືກແກ້ໄຂ", + "txtScheme1": "ຫ້ອງການ", + "txtScheme10": "ເສັ້ນແບ່ງກາງ", + "txtScheme11": "ລົດໄຟຟ້າ", + "txtScheme12": "ໂມດູນ", + "txtScheme13": "ຮູບພາບທີ່ມີລັກສະນະສະເເດງຄວາມຮັ່ງມີ ", + "txtScheme14": "ໂອຣິເອລ", + "txtScheme15": "ເດີມ", + "txtScheme16": "ເຈ້ຍ", + "txtScheme17": "ເສັ້ນໝູນອ້ອມດວງຕາເວັນ", + "txtScheme18": "ເຕັກນິກ", + "txtScheme19": "ຍ່າງ", + "txtScheme2": "ໂທນສີເທົາ", + "txtScheme20": "ໃນເມືອງ", "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "txtSpace": "Space", - "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?", - "textOk": "Ok", - "textChooseCsvOptions": "Choose CSV Options", - "textChooseDelimeter": "Choose Delimeter", - "textChooseEncoding": "Choose Encoding", - "textDelimeter": "Delimiter", - "textEncoding": "Encoding", - "txtColon": "Colon", - "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", - "txtOk": "Ok", - "txtSemicolon": "Semicolon", - "textExample": "Example", - "textDarkTheme": "Dark Theme", - "textFeedback": "Feedback & Support" + "txtScheme22": "ຫ້ອງການໃໝ່", + "txtScheme3": "ເອເພັກສ", + "txtScheme4": "ມຸມມອງ", + "txtScheme5": "ພົນລະເມືອງ", + "txtScheme6": "ສຳມະໂນ", + "txtScheme7": "ຄວາມເທົ່າທຽມກັນ", + "txtScheme8": "ຂະບວນການ", + "txtScheme9": "ໂຮງຫລໍ່", + "txtSemicolon": "ຈ້ຳຈຸດ", + "txtSpace": "ຍະຫວ່າງ", + "txtTab": "ແທບ", + "textFeedback": "Feedback & Support", + "warnDownloadAs": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ທຸກລັກສະນະ ຍົກເວັ້ນຂໍ້ຄວາມຈະຫາຍໄປ.
    ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດໍາເນີນຕໍ່?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index ba281b896..4e287043e 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -363,7 +363,12 @@ "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", "txtNo": "No", "txtYes": "Yes", - "textOk": "Ok" + "textOk": "Ok", + "textThisRowHint": "Choose only this row of the specified column", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index ba281b896..4e287043e 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -363,7 +363,12 @@ "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", "txtNo": "No", "txtYes": "Yes", - "textOk": "Ok" + "textOk": "Ok", + "textThisRowHint": "Choose only this row of the specified column", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 5ec9656cc..4ea377b37 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -361,7 +361,12 @@ "txtSorting": "Sorteren", "txtSortSelected": "Geselecteerde sorteren", "txtYes": "Ja", - "textOk": "Ok" + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textOk": "Ok", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Waarschuwing", diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index ba281b896..4e287043e 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -363,7 +363,12 @@ "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", "txtNo": "No", "txtYes": "Yes", - "textOk": "Ok" + "textOk": "Ok", + "textThisRowHint": "Choose only this row of the specified column", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/pt-PT.json b/apps/spreadsheeteditor/mobile/locale/pt-PT.json new file mode 100644 index 000000000..004dacc51 --- /dev/null +++ b/apps/spreadsheeteditor/mobile/locale/pt-PT.json @@ -0,0 +1,686 @@ +{ + "About": { + "textAbout": "Acerca", + "textAddress": "Endereço", + "textBack": "Recuar", + "textEmail": "E-mail", + "textPoweredBy": "Disponibilizado por", + "textTel": "Tel", + "textVersion": "Versão" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Aviso", + "textAddComment": "Adicionar comentário", + "textAddReply": "Adicionar resposta", + "textBack": "Recuar", + "textCancel": "Cancelar", + "textCollaboration": "Colaboração", + "textComments": "Comentários", + "textDeleteComment": "Eliminar comentário", + "textDeleteReply": "Eliminar resposta", + "textDone": "Realizado", + "textEdit": "Editar", + "textEditComment": "Editar comentário", + "textEditReply": "Editar resposta", + "textEditUser": "Utilizadores que estão a editar o ficheiro:", + "textMessageDeleteComment": "Tem a certeza de que deseja eliminar este comentário?", + "textMessageDeleteReply": "Tem a certeza de que deseja eliminar esta resposta?", + "textNoComments": "Este documento não contém comentários", + "textOk": "Ok", + "textReopen": "Reabrir", + "textResolve": "Resolver", + "textTryUndoRedo": "As funções Desfazer/Refazer estão desativadas no modo de co-edição rápida.", + "textUsers": "Utilizadores" + }, + "ThemeColorPalette": { + "textCustomColors": "Cores personalizadas", + "textStandartColors": "Cores padrão", + "textThemeColors": "Cores do tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "As ações de copiar, cortar e colar enquanto utiliza o menu de contexto serão apenas efetuadas no ficheiro atual.", + "errorInvalidLink": "A referência da ligação não existe. Deve corrigir ou eliminar a ligação.", + "menuAddComment": "Adicionar comentário", + "menuAddLink": "Adicionar ligação", + "menuCancel": "Cancelar", + "menuCell": "Célula", + "menuDelete": "Eliminar", + "menuEdit": "Editar", + "menuFreezePanes": "Congelar painéis", + "menuHide": "Ocultar", + "menuMerge": "Mesclar", + "menuMore": "Mais", + "menuOpenLink": "Abrir ligação", + "menuShow": "Mostrar", + "menuUnfreezePanes": "Libertar painéis", + "menuUnmerge": "Desunir", + "menuUnwrap": "Não moldar", + "menuViewComment": "Ver comentário", + "menuWrap": "Moldar", + "notcriticalErrorTitle": "Aviso", + "textCopyCutPasteActions": "Ações copiar, cortar e colar", + "textDoNotShowAgain": "Não mostrar novamente", + "warnMergeLostData": "Apenas os dados da célula superior esquerda permanecerá na célula mesclada.
    Você tem certeza de que deseja continuar? " + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Erro", + "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
    Por favor, contacte o seu administrador.", + "errorOpensource": "Utilizando a versão comunitária gratuita, pode abrir documentos apenas para visualização. Para aceder aos editores da web móvel, é necessária uma licença comercial.", + "errorProcessSaveResult": "Falha ao guardar.", + "errorServerVersion": "A versão do editor foi atualizada. A página será carregada de novo para aplicar as alterações.", + "errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", + "leavePageText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.", + "notcriticalErrorTitle": "Aviso", + "SDK": { + "txtAccent": "Destaque", + "txtAll": "(Tudo)", + "txtArt": "O seu texto aqui", + "txtBlank": "(vazio)", + "txtByField": "%1 de %2", + "txtClearFilter": "Limpar filtro (Alt+C)", + "txtColLbls": "Etiquetas da coluna", + "txtColumn": "Coluna", + "txtConfidential": "Confidencial", + "txtDate": "Data", + "txtDays": "Dias", + "txtDiagramTitle": "Título do gráfico", + "txtFile": "Ficheiro", + "txtGrandTotal": "Total Geral", + "txtGroup": "Grupo", + "txtHours": "Horas", + "txtMinutes": "Minutos", + "txtMonths": "Meses", + "txtMultiSelect": "Selecionar-Múltiplo (Alt+S)", + "txtOr": "%1 ou %2", + "txtPage": "Página", + "txtPageOf": "Página %1 de %2", + "txtPages": "Páginas", + "txtPreparedBy": "Elaborado por", + "txtPrintArea": "Área_de_Impressão", + "txtQuarter": "Quart.", + "txtQuarters": "Quartos", + "txtRow": "Linha", + "txtRowLbls": "Etiquetas das Linhas", + "txtSeconds": "Segundos", + "txtSeries": "Série", + "txtStyle_Bad": "Mau", + "txtStyle_Calculation": "Cálculos", + "txtStyle_Check_Cell": "Verifique a célula", + "txtStyle_Comma": "Vírgula", + "txtStyle_Currency": "Moeda", + "txtStyle_Explanatory_Text": "Texto explicativo", + "txtStyle_Good": "Bom", + "txtStyle_Heading_1": "Título 1", + "txtStyle_Heading_2": "Título 2", + "txtStyle_Heading_3": "Título 3", + "txtStyle_Heading_4": "Título 4", + "txtStyle_Input": "Introdução", + "txtStyle_Linked_Cell": "Célula vinculada", + "txtStyle_Neutral": "Neutro", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Nota", + "txtStyle_Output": "Saída", + "txtStyle_Percent": "Percentagem", + "txtStyle_Title": "Título", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Texto de aviso", + "txtTab": "Tab", + "txtTable": "Tabela", + "txtTime": "Hora", + "txtValues": "Valores", + "txtXAxis": "Eixo X", + "txtYAxis": "Eixo Y", + "txtYears": "Anos" + }, + "textAnonymous": "Anónimo", + "textBuyNow": "Visitar website", + "textClose": "Fechar", + "textContactUs": "Contacte a equipa comercial", + "textCustomLoader": "Desculpe, não tem o direito de mudar o carregador. Por favor, contacte o nosso departamento de vendas para obter um orçamento.", + "textGuest": "Convidado", + "textHasMacros": "O ficheiro contém macros automáticas.
    Deseja executar as macros?", + "textNo": "Não", + "textNoChoices": "Não há escolhas para preencher a célula.
    Apenas os valores de texto da coluna podem ser selecionados para substituição.", + "textNoLicenseTitle": "Limite de licença atingido", + "textNoTextFound": "Texto não encontrado", + "textOk": "Ok", + "textPaidFeature": "Funcionalidade paga", + "textRemember": "Memorizar a minha escolha", + "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", + "textReplaceSuccess": "A pesquisa foi realizada. Ocorrências substituídas: {0}", + "textYes": "Sim", + "titleServerVersion": "Editor atualizado", + "titleUpdateVersion": "Versão alterada", + "warnLicenseExceeded": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte o seu administrador para obter mais informações.", + "warnLicenseLimitedNoAccess": "La llicència ha caducat. No tens accés a la funció d'edició de documents. Contacta amb el teu administrador.", + "warnLicenseLimitedRenewed": "A licença precisa ed ser renovada. Tem acesso limitado à funcionalidade de edição de documentos, .
    Por favor contacte o seu administrador para ter acesso total", + "warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", + "warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.", + "warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", + "warnProcessRightsChange": "Não tem autorização para editar este ficheiro." + } + }, + "Error": { + "convertationTimeoutText": "Tempo limite de conversão excedido.", + "criticalErrorExtText": "Clique em \"OK\" para voltar para a lista de documentos.", + "criticalErrorTitle": "Erro", + "downloadErrorText": "Falha ao descarregar.", + "errorAccessDeny": "Está a tentar realizar uma ação para a qual não tem autorização.
    Por favor, contacte o seu administrador.", + "errorArgsRange": "Erro na fórmula.
    Intervalo incorreto de argumentos.", + "errorAutoFilterChange": "A operação não é permitida porque está a tentar deslocar células numa tabela da sua folha de cálculo.", + "errorAutoFilterChangeFormatTable": "A operação não pôde ser feita para as células selecionadas, uma vez que não se pode mover uma parte de uma tabela.
    Selecione outro intervalo de dados para que toda a tabela seja deslocada e tentar novamente.", + "errorAutoFilterDataRange": "Não foi possível fazer a operação para o intervalo selecionado de células.
    Selecione um intervalo de dados uniforme dentro ou fora da tabela e tente novamente.", + "errorAutoFilterHiddenRange": "A operação não pode ser realizada porque a área contém células filtradas.
    Por favor, escolha mostrar os elementos filtrados e tente novamente.", + "errorBadImageUrl": "URL de imagem está incorreta", + "errorCannotUseCommandProtectedSheet": "Não se pode utilizar este comando numa folha protegida. Para utilizar este comando, desproteja a folha.
    Poderá ser-lhe solicitado que introduza uma palavra-passe.", + "errorChangeArray": "Não se pode alterar parte de uma matriz.", + "errorChangeOnProtectedSheet": "A célula ou gráfico que está a tentar mudar está numa folha protegida.
    Para fazer uma mudança, desbloqueia a folha. Poderá ser-lhe solicitado que introduza uma palavra-passe.", + "errorConnectToServer": "Não é possível guardar este documento. Verifique as definições de ligação ou entre em contato com o administrador.
    Ao clicar no botão 'OK', será solicitado a descarregar o documento.", + "errorCopyMultiselectArea": "Este comando não pode ser utilizado com várias seleções.
    Selecionar uma única gama e tentar novamente.", + "errorCountArg": "Erro na fórmula.
    Número de argumentos inválido.", + "errorCountArgExceed": "Erro na fórmula.
    O número máximo de argumentos foi excedido.", + "errorCreateDefName": "Os intervalos nomeados existentes não podem ser editados e os novos também não
    podem ser editados porque alguns deles estão a ser editados.", + "errorDatabaseConnection": "Erro externo.
    Erro de ligação à base de dados. Contacte o suporte.", + "errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", + "errorDataRange": "Intervalo de dados incorreto.", + "errorDataValidate": "O valor introduzido não é válido.
    Um utilizador restringiu os valores que podem ser utilizados neste campo.", + "errorDefaultMessage": "Código de erro: %1", + "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
    Use a opção 'Descarregar' para guardar a cópia de segurança do ficheiro localmente.", + "errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abri-lo. ", + "errorFileRequest": "Erro externo.
    Pedido de ficheiro. Por favor, contacte o suporte.", + "errorFileSizeExceed": "O tamanho do ficheiro excede a limitação máxima do seu servidor.
    Por favor, contacte o seu administrador para obter mais informações.", + "errorFileVKey": "Erro externo.
    Chave de segurança incorreta. Por favor, contacte o suporte.", + "errorFillRange": "Não foi possível preencher o intervalo selecionado de células.
    Todas as células mescladas precisam ser do mesmo tamanho.", + "errorFormulaName": "Erro na fórmula.
    Nome da fórmula incorreto.", + "errorFormulaParsing": "Erro interno durante a análise da fórmula.", + "errorFrmlMaxLength": "Não pode adicionar esta fórmula uma vez que o seu comprimento excede o número permitido de caracteres.
    Por favor, edite-a e tente novamente.", + "errorFrmlMaxReference": "Não se pode introduzir esta fórmula porque tem demasiados valores,
    referências de células, e/ou nomes.", + "errorFrmlMaxTextLength": "Os valores de texto em fórmulas estão limitados a 255 caracteres.
    Utilize a função CONCATENATE ou um operador de concatenação (&)", + "errorFrmlWrongReferences": "A função refere-se a uma folha que não existe.
    Por favor, verifique os dados e tente novamente.", + "errorInvalidRef": "Introduza um nome correcto para a seleção ou uma referência válida para onde ir", + "errorKeyEncrypt": "Descritor de chave desconhecido", + "errorKeyExpire": "Descritor de chave expirado", + "errorLoadingFont": "Tipos de letra não carregados.
    Por favor contacte o administrador do servidor de documentos.", + "errorLockedAll": "Não foi possível efetuar a ação porque a folha está bloqueada por outro utilizador.", + "errorLockedCellPivot": "Não pode alterar dados dentro de uma tabela dinâmica.", + "errorLockedWorksheetRename": "Não foi possível alterar o nome da folha porque o nome está a ser alterado por outro utilizador.", + "errorMaxPoints": "O número máximo de pontos em série, por gráfico, é 4096.", + "errorMoveRange": "Não pode alterar parte de uma célula unida", + "errorMultiCellFormula": "Intervalo de fórmulas multi-célula não são permitidas em tabelas.", + "errorOpenWarning": "O comprimento de uma das fórmulas do ficheiro excedeu
    o número permitido de caracteres e foi removido.", + "errorOperandExpected": "A sintaxe da função introduzida não está correta. Por favor, verifique se esqueceu um dos parênteses - '(' ou ')'.", + "errorPasteMaxRange": "A área do copiar e do colar não corresponde. Por favor, selecione uma área do mesmo tamanho ou clique na primeira célula de uma linha para colar as células copiadas.", + "errorPrintMaxPagesCount": "Infelizmente, não é possível imprimir mais de 1500 páginas de uma vez na versão atual do programa.
    Esta restrição será eliminada nos próximos lançamentos.", + "errorSessionAbsolute": "A sessão de edição de documentos expirou. Por favor, volte a carregar a página.", + "errorSessionIdle": "Há muito tempo que o documento não é editado. Por favor, volte a carregar a página.", + "errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, volte a carregar a página.", + "errorStockChart": "Ordem das linhas incorreta. Para construir um gráfico de cotações, introduza os dados na folha com a seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "errorUnexpectedGuid": "Erro externo.
    Guid Inesperado. Por favor, contacte o suporte.", + "errorUpdateVersionOnDisconnect": "A ligação à Internet foi restaurada e a versão do ficheiro alterada.
    Antes de continuar o seu trabalho, descarregue o ficheiro ou copie o seu conteúdo para ter a certeza de que não perde os seus elementos e recarregue a página.", + "errorUserDrop": "O arquivo não pode ser acessado agora.", + "errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", + "errorViewerDisconnect": "Ligação perdida. Ainda pode ver o documento mas não será
    possível descarregar ou imprimir o documento se a ligação não for restaurada e a página recarregada.", + "errorWrongBracketsCount": "Erro na fórmula.
    Número errado de parenteses.", + "errorWrongOperator": "Existe um erro na fórmula. Utilizou um operador inválido.
    Por favor corrija o erro.", + "notcriticalErrorTitle": "Aviso", + "openErrorText": "Ocorreu um erro ao abrir o ficheiro", + "pastInMergeAreaError": "Não pode alterar parte de uma célula unida", + "saveErrorText": "Ocorreu um erro ao guardar o ficheiro", + "scriptLoadError": "A ligação está demasiado lenta, não foi possível carregar alguns dos componentes. Por favor, recarregue a página. ", + "textErrorPasswordIsNotCorrect": "A palavra-passe que introduziu não está correta.
    Verifique se a tecla CAPS LOCK está desligada e não se esqueça de utilizar a capitalização correta.", + "unknownErrorText": "Erro desconhecido.", + "uploadImageExtMessage": "Formato de imagem desconhecido.", + "uploadImageFileCountMessage": "Nenhuma imagem carregada.", + "uploadImageSizeMessage": "A imagem é demasiado grande. O tamanho máximo é de 25 MB." + }, + "LongActions": { + "advDRMPassword": "Senha", + "applyChangesTextText": "Carregando dados...", + "applyChangesTitleText": "Carregando dados", + "confirmMoveCellRange": "O intervalo de células de destino pode conter dados. Continuar a operação?", + "confirmPutMergeRange": "Os dados de origem contêm células fundidas.
    A união de células será anulada antes de serem coladas na tabela.", + "confirmReplaceFormulaInTable": "As fórmulas na linha de cabeçalho serão removidas e convertidas para texto estático.
    Deseja continuar?", + "downloadTextText": "A descarregar documento...", + "downloadTitleText": "A descarregar documento", + "loadFontsTextText": "Carregando dados...", + "loadFontsTitleText": "Carregando dados", + "loadFontTextText": "Carregando dados...", + "loadFontTitleText": "Carregando dados", + "loadImagesTextText": "Carregando imagens...", + "loadImagesTitleText": "Carregando imagens", + "loadImageTextText": "Carregando imagem...", + "loadImageTitleText": "Carregando imagem", + "loadingDocumentTextText": "Carregando documento...", + "loadingDocumentTitleText": "Carregando documento", + "notcriticalErrorTitle": "Aviso", + "openTextText": "Abrindo documento...", + "openTitleText": "Abrindo documento", + "printTextText": "Imprimindo documento...", + "printTitleText": "Imprimindo documento", + "savePreparingText": "Preparando para salvar", + "savePreparingTitle": "A preparar para guardar. Por favor aguarde...", + "saveTextText": "Salvando documento...", + "saveTitleText": "Salvando documento", + "textCancel": "Cancelar", + "textErrorWrongPassword": "A palavra-passe que introduziu não está correta.", + "textLoadingDocument": "Carregando documento", + "textNo": "Não", + "textOk": "Ok", + "textUnlockRange": "Desbloquear Intervalo", + "textUnlockRangeWarning": "O intervalo que está a tentar alterar está protegido por uma palavra-passe.", + "textYes": "Sim", + "txtEditingMode": "Definir modo de edição...", + "uploadImageTextText": "Carregando imagem...", + "uploadImageTitleText": "Carregando imagem", + "waitText": "Por favor aguarde..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Aviso", + "textCancel": "Cancelar", + "textDelete": "Eliminar", + "textDuplicate": "Duplicar", + "textErrNameExists": "Já existe uma folha de cálculo com este nome.", + "textErrNameWrongChar": "O nome da folha não pode conter os caracteres: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "O nome da folha não pode estar vazio", + "textErrorLastSheet": "O livro deve ter pelo menos uma folha de cálculo visível.", + "textErrorRemoveSheet": "Não é possível eliminar a folha de trabalho.", + "textHidden": "Oculto", + "textHide": "Ocultar", + "textMore": "Mais", + "textMove": "Mover", + "textMoveBefore": "Mover antes da folha", + "textMoveToEnd": "(Mover para fim)", + "textOk": "Ok", + "textRename": "Renomear", + "textRenameSheet": "Mudar nome da folha", + "textSheet": "Folha", + "textSheetName": "Nome da folha", + "textUnhide": "Mostrar", + "textWarnDeleteSheet": "A ficha de trabalho talvez tenha dados. Proceder à operação?", + "textTabColor": "Tab Color" + }, + "Toolbar": { + "dlgLeaveMsgText": "Tem alterações não guardadas neste documento. Clique em 'Ficar nesta página' para aguardar pelo guardar automaticamente. Clique em 'Deixar esta página' para se desfazer de todas as alterações não guardadas.", + "dlgLeaveTitleText": "Saiu da aplicação", + "leaveButtonText": "Sair da página", + "stayButtonText": "Ficar na página" + }, + "View": { + "Add": { + "errorMaxRows": "ERRO! O número máximo de série de dados, por gráfico, é 255.", + "errorStockChart": "Ordem das linhas incorreta. Para construir um gráfico de cotações, introduza os dados na folha com a seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fecho.", + "notcriticalErrorTitle": "Aviso", + "sCatDateAndTime": "Data e hora", + "sCatEngineering": "Engenharia", + "sCatFinancial": "Financeiras", + "sCatInformation": "Informação", + "sCatLogical": "Lógica", + "sCatLookupAndReference": "Procura e referência", + "sCatMathematic": "Matemática e trigonometria", + "sCatStatistical": "Estatísticas", + "sCatTextAndData": "Texto e Dados", + "textAddLink": "Adicionar ligação", + "textAddress": "Endereço", + "textAllTableHint": "Retorna todo o conteúdo da tabela ou colunas especificadas da tabela, incluindo os cabeçalhos de coluna, dados e linhas totais", + "textBack": "Recuar", + "textCancel": "Cancelar", + "textChart": "Gráfico", + "textComment": "Comentário", + "textDataTableHint": "Devolve as células de dados da tabela ou as colunas da tabela especificadas", + "textDisplay": "Exibição", + "textEmptyImgUrl": "É necessário especificar o URL da imagem.", + "textExternalLink": "Ligação externa", + "textFilter": "Filtro", + "textFunction": "Função", + "textGroups": "Categorias", + "textHeadersTableHint": "Devolve os cabeçalhos das colunas para a tabela ou colunas de tabela especificadas", + "textImage": "Imagem", + "textImageURL": "URL da imagem", + "textInsert": "Inserir", + "textInsertImage": "Inserir imagem", + "textInternalDataRange": "Intervalo de dados interno", + "textInvalidRange": "ERRO! Intervalo de células inválido", + "textLink": "Ligação", + "textLinkSettings": "Definições da ligação", + "textLinkType": "Tipo de ligação", + "textOk": "Ok", + "textOther": "Outro", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem de um URL", + "textRange": "Intervalo", + "textRequired": "Necessário", + "textScreenTip": "Dica no ecrã", + "textSelectedRange": "Intervalo selecionado", + "textShape": "Forma", + "textSheet": "Folha", + "textSortAndFilter": "Classificar e Filtrar", + "textThisRowHint": "Escolher apenas esta linha de uma coluna específica", + "textTotalsTableHint": "Devolve o total de linhas para a tabela ou coluna da tabela especificada", + "txtExpand": "Expandir e Ordenar", + "txtExpandSort": "Os dados adjacentes à seleção não serão classificados. Deseja expandir a seleção para incluir os dados adjacentes ou continuar com a ordenação apenas das células atualmente selecionadas?", + "txtLockSort": "Os dados foram encontrados ao lado da sua seleção, mas não tem permissões suficientes para alterar essas células.
    Deseja continuar com a seleção atual?", + "txtNo": "Não", + "txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", + "txtSorting": "A Ordenar", + "txtSortSelected": "Ordenar o que está selecionado", + "txtYes": "Sim" + }, + "Edit": { + "notcriticalErrorTitle": "Aviso", + "textAccounting": "Contabilidade", + "textActualSize": "Tamanho real", + "textAddCustomColor": "Adicionar cor personalizada", + "textAddress": "Endereço", + "textAlign": "Alinhar", + "textAlignBottom": "Alinhar em baixo", + "textAlignCenter": "Alinhar ao centro", + "textAlignLeft": "Alinhar à esquerda", + "textAlignMiddle": "Alinhar ao meio", + "textAlignRight": "Alinhar à direita", + "textAlignTop": "Alinhar em cima", + "textAllBorders": "Todos os contornos", + "textAngleClockwise": "Ângulo no sentido horário", + "textAngleCounterclockwise": "Ângulo no sentido antihorário", + "textAuto": "Automático", + "textAutomatic": "Automático", + "textAxisCrosses": "Eixos cruzam", + "textAxisOptions": "Opções dos eixos", + "textAxisPosition": "Posição dos eixos", + "textAxisTitle": "Título dos eixos", + "textBack": "Recuar", + "textBetweenTickMarks": "Entre marcas", + "textBillions": "Milhar de milhões", + "textBorder": "Contorno", + "textBorderStyle": "Estilo do contorno", + "textBottom": "Baixo", + "textBottomBorder": "Contorno inferior", + "textBringToForeground": "Trazer para primeiro plano", + "textCell": "Célula", + "textCellStyles": "Estilos de células", + "textCenter": "Centro", + "textChart": "Gráfico", + "textChartTitle": "Título do gráfico", + "textClearFilter": "Limpar filtro", + "textColor": "Cor", + "textCross": "Cruz", + "textCrossesValue": "Valor das cruzes", + "textCurrency": "Moeda", + "textCustomColor": "Cor personalizada", + "textDataLabels": "Etiquetas de dados", + "textDate": "Data", + "textDefault": "Intervalo selecionado", + "textDeleteFilter": "Eliminar filtro", + "textDesign": "Design", + "textDiagonalDownBorder": "Borda inferior diagonal", + "textDiagonalUpBorder": "Borda superior diagonal", + "textDisplay": "Exibição", + "textDisplayUnits": "Mostrar unidades", + "textDollar": "Dólar", + "textEditLink": "Editar ligação", + "textEffects": "Efeitos", + "textEmptyImgUrl": "É necessário especificar o URL da imagem.", + "textEmptyItem": "{Vazio}", + "textErrorMsg": "Você deve escolher no mínimo um valor", + "textErrorTitle": "Aviso", + "textEuro": "Euro", + "textExternalLink": "Ligação externa", + "textFill": "Preencher", + "textFillColor": "Cor de preenchimento", + "textFilterOptions": "Opções de filtro", + "textFit": "Ajustar à largura", + "textFonts": "Tipos de letra", + "textFormat": "Formato", + "textFraction": "Fração", + "textFromLibrary": "Imagem da biblioteca", + "textFromURL": "Imagem de um URL", + "textGeneral": "Geral", + "textGridlines": "Linhas da grelha", + "textHigh": "Alto", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Eixo horizontal", + "textHorizontalText": "Texto horizontal", + "textHundredMil": "100 000 000", + "textHundreds": "Centenas", + "textHundredThousands": "100 000", + "textHyperlink": "Hiperligação", + "textImage": "Imagem", + "textImageURL": "URL da imagem", + "textIn": "Em", + "textInnerBottom": "Parte inferior interna", + "textInnerTop": "Parte superior interna", + "textInsideBorders": "Bordas interiores", + "textInsideHorizontalBorder": "Contorno horizontal interior", + "textInsideVerticalBorder": "Contorno vertical interior", + "textInteger": "Inteiro", + "textInternalDataRange": "Intervalo de dados interno", + "textInvalidRange": "Intervalo de células inválido", + "textJustified": "Justificado", + "textLabelOptions": "Opções de etiqueta", + "textLabelPosition": "Posição da etiqueta", + "textLayout": "Disposição", + "textLeft": "Esquerda", + "textLeftBorder": "Contorno esquerdo", + "textLeftOverlay": "Sobreposição esquerda", + "textLegend": "Legenda", + "textLink": "Ligação", + "textLinkSettings": "Definições da ligação", + "textLinkType": "Tipo de ligação", + "textLow": "Baixo", + "textMajor": "Maior", + "textMajorAndMinor": "Maior e Menor", + "textMajorType": "Tipo principal", + "textMaximumValue": "Valor máximo", + "textMedium": "Médio", + "textMillions": "Milhões", + "textMinimumValue": "Valor mínimo", + "textMinor": "Menor", + "textMinorType": "Tipo menor", + "textMoveBackward": "Mover para trás", + "textMoveForward": "Mover para frente", + "textNextToAxis": "Próximo ao eixo", + "textNoBorder": "Sem contorno", + "textNone": "Nenhum", + "textNoOverlay": "Sem sobreposição", + "textNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", + "textNumber": "Número", + "textOk": "Ok", + "textOnTickMarks": "Nas marcas de escala", + "textOpacity": "Opacidade", + "textOut": "Fora", + "textOuterTop": "Fora do topo", + "textOutsideBorders": "Bordas externas", + "textOverlay": "Sobreposição", + "textPercentage": "Percentagem", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem de um URL", + "textPound": "Libra", + "textPt": "pt", + "textRange": "Intervalo", + "textRemoveChart": "Remover gráfico", + "textRemoveImage": "Remover imagem", + "textRemoveLink": "Remover ligação", + "textRemoveShape": "Remover forma", + "textReorder": "Reordenar", + "textReplace": "Substituir", + "textReplaceImage": "Substituir imagem", + "textRequired": "Necessário", + "textRight": "Direita", + "textRightBorder": "Contorno direito", + "textRightOverlay": "Sobreposição direita", + "textRotated": "Rodado", + "textRotateTextDown": "Rodar texto para baixo", + "textRotateTextUp": "Rodar texto para cima", + "textRouble": "Rublo", + "textScientific": "Científico", + "textScreenTip": "Dica no ecrã", + "textSelectAll": "Selecionar tudo", + "textSelectObjectToEdit": "Selecionar objeto para editar", + "textSendToBackground": "Enviar para plano de fundo", + "textSettings": "Configurações", + "textShape": "Forma", + "textSheet": "Folha", + "textSize": "Tamanho", + "textStyle": "Estilo", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Texto", + "textTextColor": "Cor do texto", + "textTextFormat": "Formato do texto", + "textTextOrientation": "Orientação do texto", + "textThick": "Espesso", + "textThin": "Fino", + "textThousands": "Milhares", + "textTickOptions": "Opções de escala", + "textTime": "Hora", + "textTop": "Parte superior", + "textTopBorder": "Contorno superior", + "textTrillions": "Trilhões", + "textType": "Tipo", + "textValue": "Valor", + "textValuesInReverseOrder": "Valores na ordem reversa", + "textVertical": "Vertical", + "textVerticalAxis": "Eixo vertical", + "textVerticalText": "Texto vertical", + "textWrapText": "Moldar texto", + "textYen": "Iene", + "txtNotUrl": "Este campo deve ser um URL no formato \"http://www.exemplo.com\"", + "txtSortHigh2Low": "Ordenar do Maior para o Menor", + "txtSortLow2High": "Ordenar do Menor para o Maior" + }, + "Settings": { + "advCSVOptions": "Escolher opções CSV", + "advDRMEnterPassword": "A sua palavra-passe, por favor:", + "advDRMOptions": "Ficheiro protegido", + "advDRMPassword": "Senha", + "closeButtonText": "Fechar ficheiro", + "notcriticalErrorTitle": "Aviso", + "textAbout": "Acerca", + "textAddress": "Endereço", + "textApplication": "Aplicação", + "textApplicationSettings": "Definições da aplicação", + "textAuthor": "Autor", + "textBack": "Recuar", + "textBottom": "Baixo", + "textByColumns": "Por colunas", + "textByRows": "Por linhas", + "textCancel": "Cancelar", + "textCentimeter": "Centímetro", + "textChooseCsvOptions": "Escolher opções CSV", + "textChooseDelimeter": "Escolher delimitador", + "textChooseEncoding": "Escolha a codificação", + "textCollaboration": "Colaboração", + "textColorSchemes": "Esquemas de cor", + "textComment": "Comentário", + "textCommentingDisplay": "Exibição de comentários", + "textComments": "Comentários", + "textCreated": "Criado", + "textCustomSize": "Tamanho personalizado", + "textDarkTheme": "Tema Escuro", + "textDelimeter": "Delimitador", + "textDisableAll": "Desativar tudo", + "textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação", + "textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação", + "textDone": "Realizado", + "textDownload": "Descarregar", + "textDownloadAs": "Descarregar como", + "textEmail": "E-mail", + "textEnableAll": "Ativar tudo", + "textEnableAllMacrosWithoutNotification": "Ativar todas as macros sem notificação", + "textEncoding": "Codificação", + "textExample": "Exemplo", + "textFind": "Localizar", + "textFindAndReplace": "Localizar e substituir", + "textFindAndReplaceAll": "Localizar e substituir tudo", + "textFormat": "Formato", + "textFormulaLanguage": "Idioma das fórmulas", + "textFormulas": "Fórmulas", + "textHelp": "Ajuda", + "textHideGridlines": "Ocultar linhas da grelha", + "textHideHeadings": "Ocultar títulos", + "textHighlightRes": "Destacar resultados", + "textInch": "Polegada", + "textLandscape": "Paisagem", + "textLastModified": "Última modificação", + "textLastModifiedBy": "Última modificação por", + "textLeft": "Esquerda", + "textLocation": "Localização", + "textLookIn": "Olhar em", + "textMacrosSettings": "Definições de macros", + "textMargins": "Margens", + "textMatchCase": "Diferenciar maiúsculas/minúsculas", + "textMatchCell": "Corresponder à Célula", + "textNoTextFound": "Texto não encontrado", + "textOk": "Ok", + "textOpenFile": "Introduza a palavra-passe para abrir o ficheiro", + "textOrientation": "Orientação", + "textOwner": "Proprietário", + "textPoint": "Ponto", + "textPortrait": "Retrato", + "textPoweredBy": "Disponibilizado por", + "textPrint": "Imprimir", + "textR1C1Style": "Estilo L1C1", + "textRegionalSettings": "Definições regionais", + "textReplace": "Substituir", + "textReplaceAll": "Substituir tudo", + "textResolvedComments": "Comentários resolvidos", + "textRight": "Direita", + "textSearch": "Pesquisar", + "textSearchBy": "Pesquisar", + "textSearchIn": "Pesquisar em", + "textSettings": "Configurações", + "textSheet": "Folha", + "textShowNotification": "Mostrar notificação", + "textSpreadsheetFormats": "Formatos da folha de cálculo", + "textSpreadsheetInfo": "Informação da folha de cálculo", + "textSpreadsheetSettings": "Definições da folha de cálculo", + "textSpreadsheetTitle": "Título da folha de cálculo", + "textSubject": "Assunto", + "textTel": "Tel", + "textTitle": "Título", + "textTop": "Parte superior", + "textUnitOfMeasurement": "Unidade de medida", + "textUploaded": "Carregado", + "textValues": "Valores", + "textVersion": "Versão", + "textWorkbook": "Livro de trabalho", + "txtColon": "Dois pontos", + "txtComma": "Vírgula", + "txtDelimiter": "Delimitador", + "txtDownloadCsv": "Transferir CSV", + "txtEncoding": "Codificação", + "txtIncorrectPwd": "A Palavra-passe está incorreta", + "txtOk": "Ok", + "txtProtected": "Assim que introduzir a palavra-passe e abrir o ficheiro, a palavra-passe atual será reposta", + "txtScheme1": "Office", + "txtScheme10": "Mediana", + "txtScheme11": "Metro", + "txtScheme12": "Módulo", + "txtScheme13": "Opulento", + "txtScheme14": "Balcão envidraçado", + "txtScheme15": "Origem", + "txtScheme16": "Papel", + "txtScheme17": "Solstício", + "txtScheme18": "Técnica", + "txtScheme19": "Viagem", + "txtScheme2": "Escala de cinza", + "txtScheme20": "Urbano", + "txtScheme21": "Verve", + "txtScheme22": "Novo Escritório", + "txtScheme3": "Ápice", + "txtScheme4": "Aspeto", + "txtScheme5": "Cívico", + "txtScheme6": "Concurso", + "txtScheme7": "Equidade", + "txtScheme8": "Fluxo", + "txtScheme9": "Fundição", + "txtSemicolon": "Ponto e vírgula", + "txtSpace": "Espaço", + "txtTab": "Tab", + "warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos exceto o texto serão perdidos.
    Você tem certeza que quer continuar?", + "textFeedback": "Feedback & Support" + } + } +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 06e223936..1da793b63 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -291,6 +291,8 @@ "textHide": "Ocultar", "textMore": "Mais", "textMove": "Mover", + "textMoveBefore": "Mover antes da folha", + "textMoveToEnd": "(Mover para o final)", "textOk": "OK", "textRename": "Renomear", "textRenameSheet": "Renomear Folha", @@ -298,8 +300,6 @@ "textSheetName": "Nome da folha", "textUnhide": "Reexibir", "textWarnDeleteSheet": "A folha de trabalho talvez tenha dados. Proceder à operação?", - "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)", "textTabColor": "Tab Color" }, "Toolbar": { @@ -361,7 +361,12 @@ "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", "txtSorting": "Classificação", "txtSortSelected": "Classificar selecionado", - "txtYes": "Sim" + "txtYes": "Sim", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Aviso", diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 03a01251e..a808ca1f8 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -324,16 +324,19 @@ "sCatTextAndData": "Text și date", "textAddLink": "Adăugare link", "textAddress": "Adresă", + "textAllTableHint": "Returnează tot conţinutul unui tabel sau coloanele selectate într-un tabel inclusiv anteturi de coloane, rânduri de date și rânduri de totaluri ", "textBack": "Înapoi", "textCancel": "Anulează", "textChart": "Diagramă", "textComment": "Comentariu", + "textDataTableHint": "Returnează celule de date dintr-un tabel sau colonele selectate într-un tabel", "textDisplay": "Afișare", "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", "textExternalLink": "Link extern", "textFilter": "Filtrare", "textFunction": "Funcție", "textGroups": "CATEGORII", + "textHeadersTableHint": "Returnează titlurile coloanelor din tabel sau coloanele selectate într-un tabel ", "textImage": "Imagine", "textImageURL": "URL-ul imaginii", "textInsert": "Inserare", @@ -354,6 +357,8 @@ "textShape": "Forma", "textSheet": "Foaie", "textSortAndFilter": "Sortare și filtrare", + "textThisRowHint": "Numai acest rând din coloana selectată", + "textTotalsTableHint": "Returnează rândurile de totaluri dintr-un tabel sau coloanele selectate într-un tabel", "txtExpand": "Extindere și sortare", "txtExpandSort": "Datele lângă selecție vor fi sortate. Doriți să extindeți selecția pentru a include datele adiacente sau doriți să continuați cu selecția curentă?", "txtLockSort": "Alături de celulele selectate au fost găsite datele dar nu aveți permisiuni suficente ca să le modificați
    Doriți să continuați cu selecția curentă?", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 4666e8a9c..7b87aeb68 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -324,16 +324,19 @@ "sCatTextAndData": "Текст и данные", "textAddLink": "Добавить ссылку", "textAddress": "Адрес", + "textAllTableHint": "Возвращает все содержимое таблицы или указанные столбцы таблицы, включая заголовки столбцов, данные и строки итогов", "textBack": "Назад", "textCancel": "Отмена", "textChart": "Диаграмма", "textComment": "Комментарий", + "textDataTableHint": "Возвращает ячейки данных из таблицы или указанных столбцов таблицы", "textDisplay": "Отображать", "textEmptyImgUrl": "Необходимо указать URL рисунка.", "textExternalLink": "Внешняя ссылка", "textFilter": "Фильтр", "textFunction": "Функция", "textGroups": "КАТЕГОРИИ", + "textHeadersTableHint": "Возвращает заголовки столбцов из таблицы или указанных столбцов таблицы", "textImage": "Рисунок", "textImageURL": "URL рисунка", "textInsert": "Вставить", @@ -354,6 +357,8 @@ "textShape": "Фигура", "textSheet": "Лист", "textSortAndFilter": "Сортировка и фильтрация", + "textThisRowHint": "Выбрать только эту строку указанного столбца", + "textTotalsTableHint": "Возвращает строки итогов из таблицы или указанных столбцов таблицы", "txtExpand": "Расширить и сортировать", "txtExpandSort": "Данные рядом с выделенным диапазоном не будут отсортированы. Вы хотите расширить выделенный диапазон, чтобы включить данные из смежных ячеек, или продолжить сортировку только выделенного диапазона?", "txtLockSort": "Обнаружены данные рядом с выделенным диапазоном, но у вас недостаточно прав для изменения этих ячеек.
    Вы хотите продолжить работу с выделенным диапазоном?", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index ba281b896..e2572631b 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -1,683 +1,688 @@ { "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", + "textAbout": "O aplikácii", + "textAddress": "Adresa", + "textBack": "Späť", "textEmail": "Email", - "textPoweredBy": "Powered By", + "textPoweredBy": "Poháňaný ", "textTel": "Tel", - "textVersion": "Version" + "textVersion": "Verzia" }, "Common": { "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", - "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users", - "textOk": "Ok" + "notcriticalErrorTitle": "Upozornenie", + "textAddComment": "Pridať komentár", + "textAddReply": "Pridať odpoveď", + "textBack": "Späť", + "textCancel": "Zrušiť", + "textCollaboration": "Spolupráca", + "textComments": "Komentáre", + "textDeleteComment": "Vymazať komentár", + "textDeleteReply": "Vymazať odpoveď", + "textDone": "Hotovo", + "textEdit": "Upraviť", + "textEditComment": "Upraviť komentár", + "textEditReply": "Upraviť odpoveď", + "textEditUser": "Používatelia, ktorí súbor práve upravujú:", + "textMessageDeleteComment": "Naozaj chcete zmazať tento komentár?", + "textMessageDeleteReply": "Naozaj chcete zmazať túto odpoveď?", + "textNoComments": "Tento dokument neobsahuje komentáre", + "textOk": "OK", + "textReopen": "Znovu otvoriť", + "textResolve": "Vyriešiť", + "textTryUndoRedo": "Funkcia Späť/Znova sú vypnuté pre rýchli režim spolupráce. ", + "textUsers": "Používatelia" }, "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" + "textCustomColors": "Vlastné farby", + "textStandartColors": "Štandardné farby", + "textThemeColors": "Farebné témy" } }, "ContextMenu": { - "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuCell": "Cell", - "menuDelete": "Delete", - "menuEdit": "Edit", - "menuFreezePanes": "Freeze Panes", - "menuHide": "Hide", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuShow": "Show", - "menuUnfreezePanes": "Unfreeze Panes", - "menuUnmerge": "Unmerge", - "menuUnwrap": "Unwrap", - "menuViewComment": "View Comment", - "menuWrap": "Wrap", - "notcriticalErrorTitle": "Warning", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?", - "errorInvalidLink": "The link reference does not exist. Please correct the link or delete it." + "errorCopyCutPaste": "Akcie kopírovania, vystrihnutia a prilepenia pomocou kontextovej ponuky sa vykonajú iba v rámci aktuálneho súboru.", + "errorInvalidLink": "Prepojenie na odkaz neexistuje. Opravte prosím odkaz alebo ho odstráňte.", + "menuAddComment": "Pridať komentár", + "menuAddLink": "Pridať odkaz", + "menuCancel": "Zrušiť", + "menuCell": "Bunka", + "menuDelete": "Odstrániť", + "menuEdit": "Upraviť", + "menuFreezePanes": "Ukotviť priečky", + "menuHide": "Skryť", + "menuMerge": "Zlúčiť", + "menuMore": "Viac", + "menuOpenLink": "Otvoriť odkaz", + "menuShow": "Zobraziť", + "menuUnfreezePanes": "Zrušiť ukotvenie priečky", + "menuUnmerge": "Zrušiť zlúčenie", + "menuUnwrap": "Rozbaliť", + "menuViewComment": "Pozrieť komentár", + "menuWrap": "Obtekanie", + "notcriticalErrorTitle": "Upozornenie", + "textCopyCutPasteActions": "Kopírovať, vystrihnúť a prilepiť", + "textDoNotShowAgain": "Nezobrazovať znova", + "warnMergeLostData": "Iba údaje z ľavej hornej bunky zostanú v zlúčenej bunke.
    Ste si istý, že chcete pokračovať?" }, "Controller": { "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", - "errorProcessSaveResult": "Saving is failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", + "criticalErrorTitle": "Chyba", + "errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
    Kontaktujte svojho správcu.", + "errorOpensource": "Pomocou bezplatnej komunitnej verzie môžete otvárať dokumenty len na prezeranie. Na prístup k editorom mobilného webu je potrebná komerčná licencia.", + "errorProcessSaveResult": "Uloženie zlyhalo.", + "errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.", + "notcriticalErrorTitle": "Upozornenie", "SDK": { - "txtAccent": "Accent", - "txtAll": "(All)", - "txtArt": "Your text here", - "txtBlank": "(blank)", - "txtByField": "%1 of %2", - "txtClearFilter": "Clear Filter (Alt+C)", - "txtColLbls": "Column Labels", - "txtColumn": "Column", - "txtConfidential": "Confidential", - "txtDate": "Date", - "txtDays": "Days", - "txtDiagramTitle": "Chart Title", - "txtFile": "File", - "txtGrandTotal": "Grand Total", - "txtGroup": "Group", - "txtHours": "Hours", - "txtMinutes": "Minutes", - "txtMonths": "Months", - "txtMultiSelect": "Multi-Select (Alt+S)", - "txtOr": "%1 or %2", - "txtPage": "Page", - "txtPageOf": "Page %1 of %2", - "txtPages": "Pages", - "txtPreparedBy": "Prepared by", - "txtPrintArea": "Print_Area", - "txtQuarter": "Qtr", - "txtQuarters": "Quarters", - "txtRow": "Row", - "txtRowLbls": "Row Labels", - "txtSeconds": "Seconds", - "txtSeries": "Series", - "txtStyle_Bad": "Bad", - "txtStyle_Calculation": "Calculation", - "txtStyle_Check_Cell": "Check Cell", - "txtStyle_Comma": "Comma", - "txtStyle_Currency": "Currency", - "txtStyle_Explanatory_Text": "Explanatory Text", - "txtStyle_Good": "Good", - "txtStyle_Heading_1": "Heading 1", - "txtStyle_Heading_2": "Heading 2", - "txtStyle_Heading_3": "Heading 3", - "txtStyle_Heading_4": "Heading 4", - "txtStyle_Input": "Input", - "txtStyle_Linked_Cell": "Linked Cell", - "txtStyle_Neutral": "Neutral", - "txtStyle_Normal": "Normal", - "txtStyle_Note": "Note", - "txtStyle_Output": "Output", - "txtStyle_Percent": "Percent", - "txtStyle_Title": "Title", - "txtStyle_Total": "Total", - "txtStyle_Warning_Text": "Warning Text", - "txtTab": "Tab", - "txtTable": "Table", - "txtTime": "Time", - "txtValues": "Values", - "txtXAxis": "X Axis", - "txtYAxis": "Y Axis", - "txtYears": "Years" + "txtAccent": "Akcent", + "txtAll": "(všetko)", + "txtArt": "Tu napíšte svoj text", + "txtBlank": "(prázdne)", + "txtByField": "%1 z %2", + "txtClearFilter": "Vyčistiť filter (Alt+C)", + "txtColLbls": "Značky stĺpcov", + "txtColumn": "Stĺpec", + "txtConfidential": "Dôverné", + "txtDate": "Dátum", + "txtDays": "dni", + "txtDiagramTitle": "Názov grafu", + "txtFile": "Súbor", + "txtGrandTotal": "Celkový súčet", + "txtGroup": "Skupina", + "txtHours": "Hodiny", + "txtMinutes": "Minúty", + "txtMonths": "Mesiace", + "txtMultiSelect": "Viacnásobný výber (Alt+S)", + "txtOr": "%1 alebo %2", + "txtPage": "Stránka", + "txtPageOf": "Stránka %1 z %2", + "txtPages": "Strany", + "txtPreparedBy": "Pripravil(a)", + "txtPrintArea": "Oblasť_tlače", + "txtQuarter": "Štvrtina", + "txtQuarters": "Štvrtiny", + "txtRow": "Riadok", + "txtRowLbls": "Štítky riadku", + "txtSeconds": "Sekundy", + "txtSeries": "Rady", + "txtStyle_Bad": "Zlý/chybný", + "txtStyle_Calculation": "Kalkulácia", + "txtStyle_Check_Cell": "Skontrolovať bunku", + "txtStyle_Comma": "Čiarka", + "txtStyle_Currency": "Mena", + "txtStyle_Explanatory_Text": "Vysvetľujúci text", + "txtStyle_Good": "Dobrý", + "txtStyle_Heading_1": "Nadpis 1", + "txtStyle_Heading_2": "Nadpis 2", + "txtStyle_Heading_3": "Nadpis 3", + "txtStyle_Heading_4": "Nadpis 4", + "txtStyle_Input": "Vstup/vstupná jednotka", + "txtStyle_Linked_Cell": "Spojená bunka", + "txtStyle_Neutral": "Neutrálny", + "txtStyle_Normal": "Normálny", + "txtStyle_Note": "Poznámka", + "txtStyle_Output": "Výstup", + "txtStyle_Percent": "Percento", + "txtStyle_Title": "Názov", + "txtStyle_Total": "Celkovo", + "txtStyle_Warning_Text": "Varovný text", + "txtTab": "Tabulátor", + "txtTable": "Tabuľka", + "txtTime": "Čas", + "txtValues": "Hodnoty", + "txtXAxis": "Os X", + "txtYAxis": "Os Y", + "txtYears": "Roky" }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file.", - "textNoChoices": "There are no choices for filling the cell.
    Only text values from the column can be selected for replacement.", - "textOk": "Ok", - "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "textNoTextFound": "Text not found", - "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required." + "textAnonymous": "Anonymný", + "textBuyNow": "Navštíviť webovú stránku", + "textClose": "Zatvoriť", + "textContactUs": "Kontaktujte predajcu", + "textCustomLoader": "Ľutujeme, nemáte nárok na výmenu zavádzača. Pre získanie cenovej ponuky kontaktujte prosím naše obchodné oddelenie.", + "textGuest": "Návštevník", + "textHasMacros": "Súbor obsahuje automatické makrá.
    Naozaj chcete makra spustiť?", + "textNo": "Nie", + "textNoChoices": "Neexistujú žiadne možnosti na vyplnenie bunky.
    Len hodnoty textu zo stĺpca môžu byť vybrané na výmenu.", + "textNoLicenseTitle": "Bol dosiahnutý limit licencie", + "textNoTextFound": "Text nebol nájdený", + "textOk": "OK", + "textPaidFeature": "Platená funkcia", + "textRemember": "Zapamätaj si moju voľbu", + "textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.", + "textReplaceSuccess": "Vyhľadávanie bolo uskutočnené. Nahradené udalosti: {0}", + "textYes": "Áno", + "titleServerVersion": "Editor bol aktualizovaný", + "titleUpdateVersion": "Verzia bola zmenená", + "warnLicenseExceeded": "Dosiahli ste limit pre simultánne pripojenia k %1 editorom. Tento dokument sa otvorí iba na prezeranie. Ak sa chcete dozvedieť viac, kontaktujte svojho správcu.", + "warnLicenseLimitedNoAccess": "Platnosť licencie vypršala. Nemáte prístup k funkciám úpravy dokumentov. Prosím, kontaktujte svojho administrátora.", + "warnLicenseLimitedRenewed": "Licenciu je potrebné obnoviť. Máte obmedzený prístup k funkciám úpravy dokumentov.
    Ak chcete získať úplný prístup, kontaktujte svojho správcu", + "warnLicenseUsersExceeded": "Dosiahli ste limit %1 editora v režime spolupráce na úpravách. Ohľadne podrobnosti sa obráťte na svojho správcu. ", + "warnNoLicense": "Dosiahli ste limit pre simultánne pripojenia k %1 editorom. Tento dokument sa otvorí iba na prezeranie. Kontaktujte predajný tím %1 pre osobné podmienky inovácie.", + "warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", + "warnProcessRightsChange": "Nemáte povolenie na úpravu súboru." } }, "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to go back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", - "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", - "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", - "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", - "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", - "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", - "errorChangeArray": "You cannot change part of an array.", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", - "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", - "errorCountArg": "An error in the formula.
    Invalid number of arguments.", - "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", - "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", - "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileRequest": "External error.
    File Request. Please, contact support.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", - "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", - "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", - "errorFormulaName": "An error in the formula.
    Incorrect formula name.", - "errorFormulaParsing": "Internal error while the formula parsing.", - "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", - "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", - "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", - "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", - "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", - "errorLockedCellPivot": "You cannot change data inside a pivot table.", - "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", - "errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "errorMoveRange": "Cannot change a part of a merged cell", - "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", - "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", - "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", - "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", - "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
    Please correct the error.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "pastInMergeAreaError": "Cannot change a part of a merged cell", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "errorLoadingFont": "Fonts are not loaded.
    Please contact your Document Server administrator.", - "errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet. To make a change, unprotect the sheet. You might be requested to enter a password.", - "textErrorPasswordIsNotCorrect": "The password you supplied is not correct.
    Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.", - "errorCannotUseCommandProtectedSheet": "You cannot use this command on a protected sheet. To use this command, unprotect the sheet.
    You might be requested to enter a password." + "convertationTimeoutText": "Prekročený čas konverzie.", + "criticalErrorExtText": "Stlačením tlačidla „OK“ sa vrátite do zoznamu dokumentov.", + "criticalErrorTitle": "Chyba", + "downloadErrorText": "Sťahovanie zlyhalo.", + "errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
    Kontaktujte svojho správcu.", + "errorArgsRange": "Chyba vo vzorci.
    Nesprávny rozsah argumentov.", + "errorAutoFilterChange": "Operácia nie je povolená, pretože sa pokúša posunúť bunky v tabuľke na pracovnom hárku.", + "errorAutoFilterChangeFormatTable": "Operáciu nebolo možné vykonať pre vybraté bunky, pretože nemôžete presunúť časť tabuľky.
    Vyberte iný rozsah údajov, aby sa posunula celá tabuľka, a skúste to znova.", + "errorAutoFilterDataRange": "Operáciu nebolo možné vykonať pre vybratý rozsah buniek.
    Vyberte jednotný rozsah údajov v tabuľke alebo mimo nej a skúste to znova.", + "errorAutoFilterHiddenRange": "Operáciu nemožno vykonať, pretože oblasť obsahuje filtrované bunky.
    Odkryte filtrované prvky a skúste to znova.", + "errorBadImageUrl": "Adresa URL obrázku je nesprávna", + "errorCannotUseCommandProtectedSheet": "Tento príkaz nemožno použiť na zabezpečený list. Pre použitie príkazu, zrušte zabezpečenie listu.
    Môže byť vyžadované heslo. ", + "errorChangeArray": "Nie je možné meniť časť poľa.", + "errorChangeOnProtectedSheet": "Bunka alebo graf, ktorý sa pokúšate zmeniť, je na chránenom hárku. Ak chcete vykonať zmenu, zrušte ochranu listu. Môžete byť požiadaní o zadanie hesla.", + "errorConnectToServer": "Tento dokument nie je možné uložiť. Skontrolujte nastavenia pripojenia alebo kontaktujte svojho správcu.
    Keď kliknete na tlačidlo 'OK', zobrazí sa výzva na stiahnutie dokumentu.", + "errorCopyMultiselectArea": "Tento príkaz sa nedá použiť s viacerými výbermi.
    Vyberte jeden rozsah a skúste to znova.", + "errorCountArg": "Chyba vo vzorci.
    Neplatný počet argumentov.", + "errorCountArgExceed": "Chyba vo vzorci.
    Bol prekročený maximálny počet argumentov.", + "errorCreateDefName": "Existujúce pomenované rozsahy nemožno upraviť a nové nemôžu byť momentálne vytvorené
    , keďže niektoré z nich sú práve editované.", + "errorDatabaseConnection": "Externá chyba.
    Chyba spojenia databázy. Obráťte sa prosím na podporu.", + "errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.", + "errorDataRange": "Nesprávny rozsah údajov.", + "errorDataValidate": "Hodnota, ktorú ste zadali, nie je platná.
    Používateľ má obmedzené hodnoty, ktoré je možné zadať do tejto bunky.", + "errorDefaultMessage": "Kód chyby: %1", + "errorEditingDownloadas": "Počas práce s dokumentom sa vyskytla chyba.
    Na lokálne uloženie záložnej kópie súboru použite možnosť „Stiahnuť“.", + "errorFilePassProtect": "Súbor je chránený heslom a nebolo možné ho otvoriť.", + "errorFileRequest": "Externá chyba.
    Požiadavka na súbor. Prosím, kontaktujte podporu.", + "errorFileSizeExceed": "Veľkosť súboru presahuje obmedzenie vášho servera.
    Podrobnosti vám poskytne správca.", + "errorFileVKey": "Externá chyba.
    Nesprávny bezpečnostný kľúč. Prosím, kontaktujte podporu.", + "errorFillRange": "Nepodarilo sa vyplniť vybraný rozsah buniek.
    Všetky zlúčené bunky musia mať rovnakú veľkosť.", + "errorFormulaName": "Chyba vo vzorci.
    Nesprávny názov vzorca.", + "errorFormulaParsing": "Interná chyba pri analýze vzorca.", + "errorFrmlMaxLength": "Tento vzorec nemôžete pridať, pretože jeho dĺžka presahuje povolený počet znakov.
    Upravte ho a skúste to znova.", + "errorFrmlMaxReference": "Vzorec nemôžete vložiť, pretože má priveľa hodnôt,
    odkazov na bunky, a/alebo názvov.", + "errorFrmlMaxTextLength": "Textové hodnoty vo vzorcoch sú obmedzené na 255 znakov.
    Použite funkciu CONCATENATE alebo operátor zreťazenia (&)", + "errorFrmlWrongReferences": "Funkcia odkazuje na hárok, ktorý neexistuje.
    Skontrolujte údaje a skúste to znova.", + "errorInvalidRef": "Zadajte správny názov pre výber alebo platný odkaz, na ktorý chcete prejsť.", + "errorKeyEncrypt": "Neznámy kľúč deskriptoru", + "errorKeyExpire": "Kľúč deskriptora vypršal", + "errorLoadingFont": "Fonty sa nenahrali.
    Kontaktujte prosím svojho administrátora Servera dokumentov.", + "errorLockedAll": "Operáciu nemožno vykonať, pretože list bol zamknutý iným používateľom.", + "errorLockedCellPivot": "Nemôžete meniť údaje v kontingenčnej tabuľke.", + "errorLockedWorksheetRename": "List nemôže byť momentálne premenovaný, pretože je premenovaný iným používateľom", + "errorMaxPoints": "Maximálny počet bodov v sérii na jeden graf je 4096.", + "errorMoveRange": "Nie je možné zmeniť časť zlúčenej bunky", + "errorMultiCellFormula": "V tabuľkách nie sú dovolené vzorce pre pole s viacerými bunkami", + "errorOpenWarning": "Dĺžka jedného zo vzorcov v súbore prekročila
    povolený počet znakov a bola odstránená.", + "errorOperandExpected": "Zadaná syntax funkcie nie je správna. Skontrolujte, či ste vynechali jednu zo zátvoriek - '(' alebo ')'.", + "errorPasteMaxRange": "Oblasť kopírovania a prilepenia sa nezhoduje. Vyberte oblasť rovnakej veľkosti alebo kliknite na prvú bunku v riadku a prilepte skopírované bunky.", + "errorPrintMaxPagesCount": "Žiaľ, v aktuálnej verzii programu nie je možné vytlačiť naraz viac ako 1 500 strán.
    Toto obmedzenie bude v nadchádzajúcich vydaniach odstránené.", + "errorSessionAbsolute": "Platnosť relácie úpravy dokumentu vypršala. Prosím, načítajte stránku znova.", + "errorSessionIdle": "Dokument nebol dlhší čas upravovaný. Prosím, načítajte stránku znova.", + "errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", + "errorStockChart": "Nesprávne poradie riadkov. Ak chcete zostaviť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    otváracia cena, maximálna cena, minimálna cena, záverečná cena.", + "errorUnexpectedGuid": "Externá chyba.
    Neočakávaný sprievodca. Prosím, kontaktujte podporu.", + "errorUpdateVersionOnDisconnect": "Internetové pripojenie bolo obnovené a verzia súboru bola zmenená.
    Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", + "errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", + "errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", + "errorViewerDisconnect": "Spojenie je stratené. Dokument si stále môžete prezerať,
    ale nebudete si ho môcť stiahnuť ani vytlačiť, kým sa neobnoví pripojenie a stránka sa znova nenačíta.", + "errorWrongBracketsCount": "Chyba vo vzorci.
    Nesprávny počet zátvoriek.", + "errorWrongOperator": "Chyba v zadanom vzorci. Používa sa nesprávny operátor.
    Prosím, opravte chybu.", + "notcriticalErrorTitle": "Upozornenie", + "openErrorText": "Pri otváraní súboru sa vyskytla chyba", + "pastInMergeAreaError": "Nie je možné zmeniť časť zlúčenej bunky", + "saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", + "scriptLoadError": "Pripojenie je príliš pomalé, niektoré komponenty sa nepodarilo načítať. Prosím, načítajte stránku znova.", + "textErrorPasswordIsNotCorrect": "Zadané heslo nie je správne.
    Skontrolujte, že máte vypnutý CAPS LOCK a správnu veľkosť písmen.", + "unknownErrorText": "Neznáma chyba.", + "uploadImageExtMessage": "Neznámy formát obrázka.", + "uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", + "uploadImageSizeMessage": "Obrázok je príliš veľký. Maximálna veľkosť je 25 MB." }, "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", - "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", - "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "notcriticalErrorTitle": "Warning", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "textNo": "No", - "textOk": "Ok", - "textYes": "Yes", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait...", - "advDRMPassword": "Password", - "textCancel": "Cancel", - "textErrorWrongPassword": "The password you supplied is not correct.", - "textUnlockRange": "Unlock Range", - "textUnlockRangeWarning": "A range you are trying to change is password protected." + "advDRMPassword": "Heslo", + "applyChangesTextText": "Načítavanie dát...", + "applyChangesTitleText": "Načítavanie dát", + "confirmMoveCellRange": "Rozsah cieľových buniek môže obsahovať údaje. Pokračovať v operácii?", + "confirmPutMergeRange": "Zdrojové údaje obsahujú zlúčené bunky.
    Pred vložením do tabuľky sa ich zlúčenie zruší.", + "confirmReplaceFormulaInTable": "Vzorce v riadku hlavičky budú odstránené a skonvertované na statický text.
    Chcete pokračovať?", + "downloadTextText": "Sťahovanie dokumentu...", + "downloadTitleText": "Sťahovanie dokumentu", + "loadFontsTextText": "Načítavanie dát...", + "loadFontsTitleText": "Načítavanie dát", + "loadFontTextText": "Načítavanie dát...", + "loadFontTitleText": "Načítavanie dát", + "loadImagesTextText": "Načítavanie obrázkov...", + "loadImagesTitleText": "Načítanie obrázkov", + "loadImageTextText": "Načítanie obrázku...", + "loadImageTitleText": "Načítavanie obrázku", + "loadingDocumentTextText": "Načítavanie dokumentu ...", + "loadingDocumentTitleText": "Načítavanie dokumentu", + "notcriticalErrorTitle": "Upozornenie", + "openTextText": "Otváranie dokumentu...", + "openTitleText": "Otváranie dokumentu", + "printTextText": "Tlač dokumentu...", + "printTitleText": "Tlač dokumentu", + "savePreparingText": "Príprava na uloženie", + "savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", + "saveTextText": "Ukladanie dokumentu...", + "saveTitleText": "Ukladanie dokumentu", + "textCancel": "Zrušiť", + "textErrorWrongPassword": "Zadané heslo nie je správne.", + "textLoadingDocument": "Načítavanie dokumentu", + "textNo": "Nie", + "textOk": "OK", + "textUnlockRange": "Odomknúť rozsah", + "textUnlockRangeWarning": "Oblasť, ktorú sa pokúšate upraviť je zabezpečená heslom.", + "textYes": "Áno", + "txtEditingMode": "Nastaviť režim úprav...", + "uploadImageTextText": "Nahrávanie obrázku...", + "uploadImageTitleText": "Nahrávanie obrázku", + "waitText": "Prosím čakajte..." }, "Statusbar": { - "notcriticalErrorTitle": "Warning", - "textCancel": "Cancel", - "textDelete": "Delete", - "textDuplicate": "Duplicate", - "textErrNameExists": "Worksheet with this name already exists.", - "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", - "textErrNotEmpty": "Sheet name must not be empty", - "textErrorLastSheet": "The workbook must have at least one visible worksheet.", - "textErrorRemoveSheet": "Can't delete the worksheet.", - "textHide": "Hide", - "textMore": "More", - "textRename": "Rename", - "textRenameSheet": "Rename Sheet", - "textSheet": "Sheet", - "textSheetName": "Sheet Name", - "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textOk": "Ok", - "textMove": "Move", "textMoveBack": "Move back", "textMoveForward": "Move forward", - "textHidden": "Hidden", - "textMoveBefore": "Move before sheet", - "textMoveToEnd": "(Move to end)", - "textTabColor": "Tab Color" + "textTabColor": "Tab Color", + "notcriticalErrorTitle": "Upozornenie", + "textCancel": "Zrušiť", + "textDelete": "Odstrániť", + "textDuplicate": "Duplikát", + "textErrNameExists": "Pracovný hárok s týmto názvom už existuje.", + "textErrNameWrongChar": "Názov hárku nemôže obsahovať znaky: \\, /, *, ?, [,], :", + "textErrNotEmpty": "Názov listu nesmie byť prázdny", + "textErrorLastSheet": "Zošit musí mať aspoň jeden viditeľný pracovný hárok.", + "textErrorRemoveSheet": "Pracovný list sa nedá odstrániť.", + "textHidden": "Skrytý", + "textHide": "Skryť", + "textMore": "Viac", + "textMove": "Premiestniť", + "textMoveBefore": "Presunúť pred list", + "textMoveToEnd": "(Presunúť na koniec)", + "textOk": "OK", + "textRename": "Premenovať", + "textRenameSheet": "Premenovať list", + "textSheet": "List", + "textSheetName": "Názov listu", + "textUnhide": "Odkryť", + "textWarnDeleteSheet": "Pracovný hárok môže obsahovať údaje. Pokračovať v operácii?" }, "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this Page" + "dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknite na „Zostať na tejto stránke“ a počkajte na automatické uloženie. Kliknutím na „Opustiť túto stránku“ zahodíte všetky neuložené zmeny.", + "dlgLeaveTitleText": "Opúšťate aplikáciu", + "leaveButtonText": "Opustiť túto stránku", + "stayButtonText": "Zostať na tejto stránke" }, "View": { "Add": { - "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "notcriticalErrorTitle": "Warning", - "sCatDateAndTime": "Date and time", - "sCatEngineering": "Engineering", - "sCatFinancial": "Financial", - "sCatInformation": "Information", - "sCatLogical": "Logical", - "sCatLookupAndReference": "Lookup and Reference", - "sCatMathematic": "Math and trigonometry", - "sCatStatistical": "Statistical", - "sCatTextAndData": "Text and data", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textCancel": "Cancel", - "textChart": "Chart", - "textComment": "Comment", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", + "errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255.", + "errorStockChart": "Nesprávne poradie riadkov. Ak chcete zostaviť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    otváracia cena, maximálna cena, minimálna cena, záverečná cena.", + "notcriticalErrorTitle": "Upozornenie", + "sCatDateAndTime": "Dátum a čas", + "sCatEngineering": "Inžinierstvo", + "sCatFinancial": "Finančné", + "sCatInformation": "Informácia", + "sCatLogical": "Logické", + "sCatLookupAndReference": "Vyhľadávanie a referencie", + "sCatMathematic": "Matematika a trigonometria", + "sCatStatistical": "Štatistické", + "sCatTextAndData": "Text a dáta", + "textAddLink": "Pridať odkaz", + "textAddress": "Adresa", + "textBack": "Späť", + "textCancel": "Zrušiť", + "textChart": "Graf", + "textComment": "Komentár", + "textDisplay": "Zobraziť", + "textEmptyImgUrl": "Musíte zadať adresu URL obrázka.", + "textExternalLink": "Externý odkaz", "textFilter": "Filter", - "textFunction": "Function", - "textGroups": "CATEGORIES", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "ERROR! Invalid cells range", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textOther": "Other", - "textPictureFromLibrary": "Picture from library", - "textPictureFromURL": "Picture from URL", - "textRange": "Range", - "textRequired": "Required", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSheet": "Sheet", - "textSortAndFilter": "Sort and Filter", - "txtExpand": "Expand and sort", - "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "txtSorting": "Sorting", - "txtSortSelected": "Sort selected", - "textSelectedRange": "Selected Range", - "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", - "txtNo": "No", - "txtYes": "Yes", - "textOk": "Ok" + "textFunction": "Funkcia", + "textGroups": "Kategórie", + "textImage": "Obrázok", + "textImageURL": "URL obrázka", + "textInsert": "Vložiť", + "textInsertImage": "Vložiť obrázok", + "textInternalDataRange": "Interný rozsah údajov", + "textInvalidRange": "CHYBA! Neplatný rozsah buniek", + "textLink": "Odkaz", + "textLinkSettings": "Nastavenia odkazu", + "textLinkType": "Typ odkazu", + "textOk": "OK", + "textOther": "Iné", + "textPictureFromLibrary": "Obrázok z Knižnice", + "textPictureFromURL": "Obrázok z URL adresy", + "textRange": "Rozsah", + "textRequired": "Nevyhnutné", + "textScreenTip": "Nápoveda", + "textSelectedRange": "Vybraný rozsah", + "textShape": "Tvar", + "textSheet": "List", + "textSortAndFilter": "Zoradiť a filtrovať", + "txtExpand": "Rozbaliť a zoradiť", + "txtExpandSort": "Údaje vedľa výberu nebudú zoradené. Chcete rozšíriť výber tak, aby zahŕňal priľahlé údaje, alebo pokračovať v triedení len vybraných buniek?", + "txtLockSort": "Blízko vášho výberu existujú dáta, nemáte však dostatočné oprávnenia k úprave týchto buniek.
    Chcete pokračovať s aktuálnym výberom? ", + "txtNo": "Nie", + "txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"", + "txtSorting": "Zoraďovanie", + "txtSortSelected": "Zoradiť vybrané", + "txtYes": "Áno", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { - "notcriticalErrorTitle": "Warning", - "textAccounting": "Accounting", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAddress": "Address", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllBorders": "All Borders", - "textAngleClockwise": "Angle Clockwise", - "textAngleCounterclockwise": "Angle Counterclockwise", - "textAuto": "Auto", - "textAxisCrosses": "Axis Crosses", - "textAxisOptions": "Axis Options", - "textAxisPosition": "Axis Position", - "textAxisTitle": "Axis Title", - "textBack": "Back", - "textBetweenTickMarks": "Between Tick Marks", - "textBillions": "Billions", - "textBorder": "Border", - "textBorderStyle": "Border Style", - "textBottom": "Bottom", - "textBottomBorder": "Bottom Border", - "textBringToForeground": "Bring to Foreground", - "textCell": "Cell", - "textCellStyles": "Cell Styles", - "textCenter": "Center", - "textChart": "Chart", - "textChartTitle": "Chart Title", - "textClearFilter": "Clear Filter", - "textColor": "Color", - "textCross": "Cross", - "textCrossesValue": "Crosses Value", - "textCurrency": "Currency", - "textCustomColor": "Custom Color", - "textDataLabels": "Data Labels", - "textDate": "Date", - "textDefault": "Selected range", - "textDeleteFilter": "Delete Filter", - "textDesign": "Design", - "textDiagonalDownBorder": "Diagonal Down Border", - "textDiagonalUpBorder": "Diagonal Up Border", - "textDisplay": "Display", - "textDisplayUnits": "Display Units", - "textDollar": "Dollar", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textEmptyItem": "{Blanks}", - "textErrorMsg": "You must choose at least one value", - "textErrorTitle": "Warning", + "notcriticalErrorTitle": "Upozornenie", + "textAccounting": "Účtovníctvo", + "textActualSize": "Predvolená veľkosť", + "textAddCustomColor": "Pridať vlastnú farbu", + "textAddress": "Adresa", + "textAlign": "Zarovnať", + "textAlignBottom": "Zarovnať dole", + "textAlignCenter": "Zarovnať na stred", + "textAlignLeft": "Zarovnať doľava", + "textAlignMiddle": "Zarovnať na stred", + "textAlignRight": "Zarovnať doprava", + "textAlignTop": "Zarovnať nahor", + "textAllBorders": "Všetky orámovania", + "textAngleClockwise": "Otočiť v smere hodinových ručičiek", + "textAngleCounterclockwise": "Otočiť proti smeru hodinových ručičiek", + "textAuto": "Automaticky", + "textAutomatic": "Automaticky", + "textAxisCrosses": "Kríženie os", + "textAxisOptions": "Možnosti osi", + "textAxisPosition": "Umiestnenie osi", + "textAxisTitle": "Názov osi", + "textBack": "Späť", + "textBetweenTickMarks": "Medzi značkami rozsahu", + "textBillions": "Miliardy", + "textBorder": "Orámovanie", + "textBorderStyle": "Štýl orámovania", + "textBottom": "Dole", + "textBottomBorder": "Spodné orámovanie", + "textBringToForeground": "Premiestniť do popredia", + "textCell": "Bunka", + "textCellStyles": "Štýly bunky", + "textCenter": "Stred", + "textChart": "Graf", + "textChartTitle": "Názov grafu", + "textClearFilter": "Vyčistiť filter", + "textColor": "Farba", + "textCross": "Pretínať", + "textCrossesValue": "Prekračuje hodnotu", + "textCurrency": "Mena", + "textCustomColor": "Vlastná farba", + "textDataLabels": "Popisky dát", + "textDate": "Dátum", + "textDefault": "Vybraný rozsah", + "textDeleteFilter": "Vymazať filter", + "textDesign": "Dizajn/náčrt", + "textDiagonalDownBorder": "Orámovanie diagonálne nadol", + "textDiagonalUpBorder": "Orámovanie diagonálne nahor", + "textDisplay": "Zobraziť", + "textDisplayUnits": "Zobrazovacie jednotky", + "textDollar": "Dolár", + "textEditLink": "Upraviť odkaz", + "textEffects": "Efekty", + "textEmptyImgUrl": "Musíte zadať adresu URL obrázka.", + "textEmptyItem": "{Prázdne}", + "textErrorMsg": "Musíte vybrať aspoň jednu hodnotu", + "textErrorTitle": "Upozornenie", "textEuro": "Euro", - "textExternalLink": "External Link", - "textFill": "Fill", - "textFillColor": "Fill Color", - "textFilterOptions": "Filter Options", - "textFit": "Fit Width", - "textFonts": "Fonts", - "textFormat": "Format", - "textFraction": "Fraction", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textGeneral": "General", - "textGridlines": "Gridlines", - "textHigh": "High", - "textHorizontal": "Horizontal", - "textHorizontalAxis": "Horizontal Axis", - "textHorizontalText": "Horizontal Text", + "textExternalLink": "Externý odkaz", + "textFill": "Vyplniť", + "textFillColor": "Farba výplne", + "textFilterOptions": "Predvoľby filtra", + "textFit": "Prispôsobiť šírku", + "textFonts": "Písma", + "textFormat": "Formát", + "textFraction": "Zlomok", + "textFromLibrary": "Obrázok z Knižnice", + "textFromURL": "Obrázok z URL adresy", + "textGeneral": "Všeobecné", + "textGridlines": "Mriežky", + "textHigh": "Vysoký", + "textHorizontal": "Vodorovný", + "textHorizontalAxis": "Vodorovná os", + "textHorizontalText": "Horizontálny Text", "textHundredMil": "100 000 000", - "textHundreds": "Hundreds", + "textHundreds": "Stovky", "textHundredThousands": "100 000", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textIn": "In", - "textInnerBottom": "Inner Bottom", - "textInnerTop": "Inner Top", - "textInsideBorders": "Inside Borders", - "textInsideHorizontalBorder": "Inside Horizontal Border", - "textInsideVerticalBorder": "Inside Vertical Border", - "textInteger": "Integer", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "Invalid cells range", - "textJustified": "Justified", - "textLabelOptions": "Label Options", - "textLabelPosition": "Label Position", - "textLayout": "Layout", - "textLeft": "Left", - "textLeftBorder": "Left Border", - "textLeftOverlay": "Left Overlay", - "textLegend": "Legend", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textLow": "Low", - "textMajor": "Major", - "textMajorAndMinor": "Major And Minor", - "textMajorType": "Major Type", - "textMaximumValue": "Maximum Value", - "textMedium": "Medium", - "textMillions": "Millions", - "textMinimumValue": "Minimum Value", - "textMinor": "Minor", - "textMinorType": "Minor Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextToAxis": "Next to Axis", - "textNoBorder": "No Border", - "textNone": "None", - "textNoOverlay": "No Overlay", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumber": "Number", - "textOnTickMarks": "On Tick Marks", - "textOpacity": "Opacity", - "textOut": "Out", - "textOuterTop": "Outer Top", - "textOutsideBorders": "Outside Borders", - "textOverlay": "Overlay", - "textPercentage": "Percentage", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPound": "Pound", + "textHyperlink": "Hypertextový odkaz", + "textImage": "Obrázok", + "textImageURL": "URL obrázka", + "textIn": "Dnu", + "textInnerBottom": "Vnútri dole", + "textInnerTop": "Vnútri hore", + "textInsideBorders": "Vnútorné orámovanie", + "textInsideHorizontalBorder": "Vnútorné horizontálne orámovanie", + "textInsideVerticalBorder": "Vnútorné vertikálne orámovanie", + "textInteger": "Celé číslo", + "textInternalDataRange": "Interný rozsah údajov", + "textInvalidRange": "Neplatný rozsah buniek", + "textJustified": "Odôvodnený", + "textLabelOptions": "Možnosti menoviek", + "textLabelPosition": "Umiestnenie menoviek", + "textLayout": "Rozloženie", + "textLeft": "Vľavo", + "textLeftBorder": "Ľavé orámovanie", + "textLeftOverlay": "Ľavé prekrytie", + "textLegend": "Legenda", + "textLink": "Odkaz", + "textLinkSettings": "Nastavenia odkazu", + "textLinkType": "Typ odkazu", + "textLow": "Nízky", + "textMajor": "Hlavný", + "textMajorAndMinor": "Hlavný a vedľajší", + "textMajorType": "Hlavná značka", + "textMaximumValue": "Maximálna hodnota", + "textMedium": "Stredný", + "textMillions": "Milióny", + "textMinimumValue": "Minimálna hodnota", + "textMinor": "Vedľajší", + "textMinorType": "Vedľajšia značka", + "textMoveBackward": "Posunúť späť", + "textMoveForward": "Posunúť vpred", + "textNextToAxis": "Vedľa osi", + "textNoBorder": "Bez orámovania", + "textNone": "Žiadne", + "textNoOverlay": "Žiadne prekrytie", + "textNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"", + "textNumber": "Číslo", + "textOk": "OK", + "textOnTickMarks": "Na značkách", + "textOpacity": "Priehľadnosť", + "textOut": "Von", + "textOuterTop": "Mimo hore", + "textOutsideBorders": "Vonkajšie orámovanie", + "textOverlay": "Prekrytie", + "textPercentage": "Percentuálny podiel", + "textPictureFromLibrary": "Obrázok z Knižnice", + "textPictureFromURL": "Obrázok z URL adresy", + "textPound": "Libra (britská mena)", "textPt": "pt", - "textRange": "Range", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textRequired": "Required", - "textRight": "Right", - "textRightBorder": "Right Border", - "textRightOverlay": "Right Overlay", - "textRotated": "Rotated", - "textRotateTextDown": "Rotate Text Down", - "textRotateTextUp": "Rotate Text Up", - "textRouble": "Rouble", - "textScientific": "Scientific", - "textScreenTip": "Screen Tip", - "textSelectAll": "Select All", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSheet": "Sheet", - "textSize": "Size", - "textStyle": "Style", + "textRange": "Rozsah", + "textRemoveChart": "Odstrániť graf", + "textRemoveImage": "Odstrániť obrázok", + "textRemoveLink": "Odstrániť odkaz", + "textRemoveShape": "Odstrániť tvar", + "textReorder": "Znovu usporiadať/zmena poradia", + "textReplace": "Nahradiť", + "textReplaceImage": "Nahradiť obrázok", + "textRequired": "Nevyhnutné", + "textRight": "Vpravo", + "textRightBorder": "Pravé orámovanie", + "textRightOverlay": "Pravé prekrytie", + "textRotated": "Otočený", + "textRotateTextDown": "Otočiť text nadol", + "textRotateTextUp": "Otočiť text nahor", + "textRouble": "Rubeľ", + "textScientific": "Vedecký", + "textScreenTip": "Nápoveda", + "textSelectAll": "Vybrať všetko", + "textSelectObjectToEdit": "Vyberte objekt, ktorý chcete upraviť", + "textSendToBackground": "Presunúť do pozadia", + "textSettings": "Nastavenia", + "textShape": "Tvar", + "textSheet": "List", + "textSize": "Veľkosť", + "textStyle": "Štýl", "textTenMillions": "10 000 000", "textTenThousands": "10 000", "textText": "Text", - "textTextColor": "Text Color", - "textTextFormat": "Text Format", - "textTextOrientation": "Text Orientation", - "textThick": "Thick", - "textThin": "Thin", - "textThousands": "Thousands", - "textTickOptions": "Tick Options", - "textTime": "Time", - "textTop": "Top", - "textTopBorder": "Top Border", - "textTrillions": "Trillions", - "textType": "Type", - "textValue": "Value", - "textValuesInReverseOrder": "Values in Reverse Order", - "textVertical": "Vertical", - "textVerticalAxis": "Vertical Axis", - "textVerticalText": "Vertical Text", - "textWrapText": "Wrap Text", - "textYen": "Yen", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "txtSortHigh2Low": "Sort Highest to Lowest", - "txtSortLow2High": "Sort Lowest to Highest", - "textAutomatic": "Automatic", - "textOk": "Ok" + "textTextColor": "Farba textu", + "textTextFormat": "Formát textu", + "textTextOrientation": "Orientácia textu", + "textThick": "Hrubý/tučný", + "textThin": "Tenký", + "textThousands": "Tisíce", + "textTickOptions": "Možnosti značiek", + "textTime": "Čas", + "textTop": "Hore", + "textTopBorder": "Horné orámovanie", + "textTrillions": "Bilióny", + "textType": "Typ", + "textValue": "Hodnota", + "textValuesInReverseOrder": "Hodnoty v opačnom poradí", + "textVertical": "Zvislý", + "textVerticalAxis": "Vertikálna os", + "textVerticalText": "Vertikálny text", + "textWrapText": "Obtekanie textu", + "textYen": "yen/menová jednotka Japonska", + "txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"", + "txtSortHigh2Low": "Zoradiť od najvyššieho po najnižšie", + "txtSortLow2High": "Zoradiť od najnižšieho po najvyššie" }, "Settings": { - "advCSVOptions": "Choose CSV options", - "advDRMEnterPassword": "Your password, please:", - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textAddress": "Address", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textByColumns": "By columns", - "textByRows": "By rows", - "textCancel": "Cancel", + "advCSVOptions": "Vybrať možnosti CSV", + "advDRMEnterPassword": "Vaše heslo:", + "advDRMOptions": "Chránený súbor", + "advDRMPassword": "Heslo", + "closeButtonText": "Zatvoriť súbor", + "notcriticalErrorTitle": "Upozornenie", + "textAbout": "O aplikácii", + "textAddress": "Adresa", + "textApplication": "Aplikácia", + "textApplicationSettings": "Nastavenia aplikácie", + "textAuthor": "Autor", + "textBack": "Späť", + "textBottom": "Dole", + "textByColumns": "Podľa stĺpcov", + "textByRows": "Podľa riadkov", + "textCancel": "Zrušiť", "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCommentingDisplay": "Commenting Display", - "textComments": "Comments", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with a notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", + "textChooseCsvOptions": "Vybrať možnosti CSV", + "textChooseDelimeter": "Vyberte Oddeľovač", + "textChooseEncoding": "Vyberte kódovanie", + "textCollaboration": "Spolupráca", + "textColorSchemes": "Farebné schémy", + "textComment": "Komentár", + "textCommentingDisplay": "Zobrazenie komentárov", + "textComments": "Komentáre", + "textCreated": "Vytvorené", + "textCustomSize": "Vlastná veľkosť", + "textDarkTheme": "Tmavá téma", + "textDelimeter": "Oddeľovač", + "textDisableAll": "Vypnúť všetko", + "textDisableAllMacrosWithNotification": "Zablokovať všetky makrá s upozornením", + "textDisableAllMacrosWithoutNotification": "Zablokovať všetky makrá bez upozornenia", + "textDone": "Hotovo", + "textDownload": "Stiahnuť", + "textDownloadAs": "Stiahnuť ako", "textEmail": "Email", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textFormulaLanguage": "Formula Language", - "textFormulas": "Formulas", - "textHelp": "Help", - "textHideGridlines": "Hide Gridlines", - "textHideHeadings": "Hide Headings", - "textHighlightRes": "Highlight results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLocation": "Location", - "textLookIn": "Look In", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMatchCase": "Match Case", - "textMatchCell": "Match Cell", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPoweredBy": "Powered By", - "textPrint": "Print", - "textR1C1Style": "R1C1 Reference Style", - "textRegionalSettings": "Regional Settings", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSearchBy": "Search", - "textSearchIn": "Search In", - "textSettings": "Settings", - "textSheet": "Sheet", - "textShowNotification": "Show Notification", - "textSpreadsheetFormats": "Spreadsheet Formats", - "textSpreadsheetInfo": "Spreadsheet Info", - "textSpreadsheetSettings": "Spreadsheet Settings", - "textSpreadsheetTitle": "Spreadsheet Title", - "textSubject": "Subject", + "textEnableAll": "Povoliť všetko", + "textEnableAllMacrosWithoutNotification": "Povoliť všetky makrá bez oznámenia", + "textEncoding": "Kódovanie", + "textExample": "Ukážka", + "textFind": "Nájsť", + "textFindAndReplace": "Nájsť a nahradiť", + "textFindAndReplaceAll": "Hľadať a nahradiť všetko", + "textFormat": "Formát", + "textFormulaLanguage": "Jazyk vzorcov", + "textFormulas": "Vzorce", + "textHelp": "Pomoc", + "textHideGridlines": "Skryť mriežku", + "textHideHeadings": "Skryť záhlavia", + "textHighlightRes": "Zvýrazniť výsledky", + "textInch": "Palec (miera 2,54 cm)", + "textLandscape": "Na šírku", + "textLastModified": "Naposledy upravené", + "textLastModifiedBy": "Naposledy upravil(a) ", + "textLeft": "Vľavo", + "textLocation": "Umiestnenie", + "textLookIn": "Hľadať v", + "textMacrosSettings": "Nastavenia makier", + "textMargins": "Okraje", + "textMatchCase": "Zhodný prípad", + "textMatchCell": "Prispôsobiť bunku", + "textNoTextFound": "Text nebol nájdený", + "textOk": "OK", + "textOpenFile": "Zadajte heslo na otvorenie súboru", + "textOrientation": "Orientácia", + "textOwner": "Majiteľ", + "textPoint": "Bod", + "textPortrait": "Na výšku", + "textPoweredBy": "Poháňaný ", + "textPrint": "Tlačiť", + "textR1C1Style": "Štýl referencie R1C1", + "textRegionalSettings": "Miestne nastavenia", + "textReplace": "Nahradiť", + "textReplaceAll": "Nahradiť všetko", + "textResolvedComments": "Vyriešené komentáre", + "textRight": "Vpravo", + "textSearch": "Hľadať", + "textSearchBy": "Hľadať", + "textSearchIn": "Hľadať v", + "textSettings": "Nastavenia", + "textSheet": "List", + "textShowNotification": "Ukázať oznámenie", + "textSpreadsheetFormats": "Formáty zošita", + "textSpreadsheetInfo": "Informácie tabuľky", + "textSpreadsheetSettings": "Nastavenie listu", + "textSpreadsheetTitle": "Názov zošitu", + "textSubject": "Predmet", "textTel": "Tel", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textValues": "Values", - "textVersion": "Version", - "textWorkbook": "Workbook", - "txtDelimiter": "Delimiter", - "txtEncoding": "Encoding", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "txtScheme1": "Office", - "txtScheme10": "Median", + "textTitle": "Názov", + "textTop": "Hore", + "textUnitOfMeasurement": "Jednotka merania", + "textUploaded": "Nahratý", + "textValues": "Hodnoty", + "textVersion": "Verzia", + "textWorkbook": "Zošit", + "txtColon": "Dvojbodka ", + "txtComma": "Čiarka", + "txtDelimiter": "Oddeľovač", + "txtDownloadCsv": "Stiahnuť SCV", + "txtEncoding": "Kódovanie", + "txtIncorrectPwd": "Heslo je chybné ", + "txtOk": "OK", + "txtProtected": "Akonáhle vložíte heslo a otvoríte súbor, terajšie heslo sa zresetuje.", + "txtScheme1": "Kancelária", + "txtScheme10": "Medián", "txtScheme11": "Metro", - "txtScheme12": "Module", - "txtScheme13": "Opulent", - "txtScheme14": "Oriel", - "txtScheme15": "Origin", - "txtScheme16": "Paper", - "txtScheme17": "Solstice", - "txtScheme18": "Technic", - "txtScheme19": "Trek", - "txtScheme2": "Grayscale", - "txtScheme20": "Urban", - "txtScheme21": "Verve", - "txtScheme22": "New Office", - "txtScheme3": "Apex", - "txtScheme4": "Aspect", - "txtScheme5": "Civic", - "txtScheme6": "Concourse", - "txtScheme7": "Equity", - "txtScheme8": "Flow", - "txtScheme9": "Foundry", - "txtSpace": "Space", - "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?", - "textOk": "Ok", - "textChooseCsvOptions": "Choose CSV Options", - "textChooseDelimeter": "Choose Delimeter", - "textChooseEncoding": "Choose Encoding", - "textDelimeter": "Delimiter", - "textEncoding": "Encoding", - "txtColon": "Colon", - "txtComma": "Comma", - "txtDownloadCsv": "Download CSV", - "txtOk": "Ok", - "txtSemicolon": "Semicolon", - "textExample": "Example", - "textDarkTheme": "Dark Theme", - "textFeedback": "Feedback & Support" + "textFeedback": "Feedback & Support", + "txtScheme12": "Modul", + "txtScheme13": "Opulentný", + "txtScheme14": "Výklenok", + "txtScheme15": "Pôvod", + "txtScheme16": "Papier", + "txtScheme17": "Slnovrat", + "txtScheme18": "Technika", + "txtScheme19": "Cestovanie", + "txtScheme2": "Odtiene sivej", + "txtScheme20": "Mestský", + "txtScheme21": "Elán", + "txtScheme22": "Nová kancelária", + "txtScheme3": "Vrchol", + "txtScheme4": "Aspekt", + "txtScheme5": "Občiansky", + "txtScheme6": "Hala", + "txtScheme7": "Spravodlivosť", + "txtScheme8": "Tok", + "txtScheme9": "Zlieváreň", + "txtSemicolon": "Bodkočiarka", + "txtSpace": "Priestor", + "txtTab": "Tabulátor", + "warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
    Ste si istý, že chcete pokračovať?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index ba281b896..4e287043e 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -363,7 +363,12 @@ "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", "txtNo": "No", "txtYes": "Yes", - "textOk": "Ok" + "textOk": "Ok", + "textThisRowHint": "Choose only this row of the specified column", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index 9222fe53a..ba264eb1c 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -361,7 +361,12 @@ "txtNotUrl": "Bu alan, \"http://www.example.com\" biçiminde bir URL olmalıdır.", "txtSorting": "Sıralama", "txtSortSelected": "Seçili olanları sırala", - "txtYes": "Evet" + "txtYes": "Evet", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Uyarı", diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index ba281b896..4e287043e 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -363,7 +363,12 @@ "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", "txtNo": "No", "txtYes": "Yes", - "textOk": "Ok" + "textOk": "Ok", + "textThisRowHint": "Choose only this row of the specified column", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index ba281b896..4e287043e 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -363,7 +363,12 @@ "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", "txtNo": "No", "txtYes": "Yes", - "textOk": "Ok" + "textOk": "Ok", + "textThisRowHint": "Choose only this row of the specified column", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/mobile/locale/zh-TW.json b/apps/spreadsheeteditor/mobile/locale/zh-TW.json new file mode 100644 index 000000000..6f863a83f --- /dev/null +++ b/apps/spreadsheeteditor/mobile/locale/zh-TW.json @@ -0,0 +1,686 @@ +{ + "About": { + "textAbout": "關於", + "textAddress": "地址", + "textBack": "返回", + "textEmail": "電子郵件", + "textPoweredBy": "於支援", + "textTel": "電話", + "textVersion": "版本" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "警告", + "textAddComment": "新增註解", + "textAddReply": "加入回覆", + "textBack": "返回", + "textCancel": "取消", + "textCollaboration": "協作", + "textComments": "評論", + "textDeleteComment": "刪除評論", + "textDeleteReply": "刪除回覆", + "textDone": "已完成", + "textEdit": "編輯", + "textEditComment": "編輯評論", + "textEditReply": "編輯回覆", + "textEditUser": "正在編輯文件的用戶:", + "textMessageDeleteComment": "確定要刪除評論嗎?", + "textMessageDeleteReply": "確定要刪除回覆嗎?", + "textNoComments": "此文件未包含回應訊息", + "textOk": "確定", + "textReopen": "重開", + "textResolve": "解決", + "textTryUndoRedo": "在快速共同編輯模式下,撤消/重做功能被禁用。", + "textUsers": "使用者" + }, + "ThemeColorPalette": { + "textCustomColors": "自訂顏色", + "textStandartColors": "標準顏色", + "textThemeColors": "主題顏色" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "使用右鍵選單動作的複製、剪下和貼上的動作將只在目前的檔案中執行。", + "errorInvalidLink": "連結引用不存在。請更正連結或將其刪除。", + "menuAddComment": "新增註解", + "menuAddLink": "新增連結", + "menuCancel": "取消", + "menuCell": "單元格", + "menuDelete": "刪除", + "menuEdit": "編輯", + "menuFreezePanes": "凍結窗格", + "menuHide": "隱藏", + "menuMerge": "合併", + "menuMore": "更多", + "menuOpenLink": "打開連結", + "menuShow": "顯示", + "menuUnfreezePanes": "取消凍結窗格", + "menuUnmerge": "取消合併", + "menuUnwrap": "攤開", + "menuViewComment": "查看評論", + "menuWrap": "包覆", + "notcriticalErrorTitle": "警告", + "textCopyCutPasteActions": "複製, 剪下, 與貼上之動作", + "textDoNotShowAgain": "不再顯示", + "warnMergeLostData": "只有左上角單元格中的數據會保留。
    繼續嗎?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "錯誤", + "errorAccessDeny": "您正在嘗試執行您無權執行的動作。
    請聯繫您的管理員。", + "errorOpensource": "在使用免費社群版本時,您只能瀏覽開啟的文件。欲使用移動版本的編輯功能,您需要付費的憑證。", + "errorProcessSaveResult": "保存失敗。", + "errorServerVersion": "編輯器版本已更新。該頁面將被重新加載以應用更改。", + "errorUpdateVersion": "文件版本已更改。該頁面將重新加載。", + "leavePageText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。", + "notcriticalErrorTitle": "警告", + "SDK": { + "txtAccent": "強調", + "txtAll": "(所有)", + "txtArt": "在這輸入文字", + "txtBlank": "(空白)", + "txtByField": "第%1個,共%2個", + "txtClearFilter": "清除過濾器(Alt + C)", + "txtColLbls": "列標籤", + "txtColumn": "欄", + "txtConfidential": "機密", + "txtDate": "日期", + "txtDays": "日", + "txtDiagramTitle": "圖表標題", + "txtFile": "檔案", + "txtGrandTotal": "累計", + "txtGroup": "群組", + "txtHours": "小時", + "txtMinutes": "分鐘", + "txtMonths": "月", + "txtMultiSelect": "多選(Alt + S)", + "txtOr": "1%或2%", + "txtPage": "頁面", + "txtPageOf": "第%1頁,共%2頁", + "txtPages": "頁", + "txtPreparedBy": "編制", + "txtPrintArea": "列印區域", + "txtQuarter": "季度", + "txtQuarters": "季度", + "txtRow": "行", + "txtRowLbls": "行標籤", + "txtSeconds": "秒數", + "txtSeries": "系列", + "txtStyle_Bad": "壞", + "txtStyle_Calculation": "計算", + "txtStyle_Check_Cell": "檢查單元格", + "txtStyle_Comma": "逗號", + "txtStyle_Currency": "貨幣", + "txtStyle_Explanatory_Text": "解釋性文字", + "txtStyle_Good": "好", + "txtStyle_Heading_1": "標題 1", + "txtStyle_Heading_2": "標題 2", + "txtStyle_Heading_3": "標題 3", + "txtStyle_Heading_4": "標題 4", + "txtStyle_Input": "輸入", + "txtStyle_Linked_Cell": "已連接的單元格", + "txtStyle_Neutral": "中立", + "txtStyle_Normal": "標準", + "txtStyle_Note": "備註", + "txtStyle_Output": "輸出量", + "txtStyle_Percent": "百分", + "txtStyle_Title": "標題", + "txtStyle_Total": "總計", + "txtStyle_Warning_Text": "警告文字", + "txtTab": "標籤", + "txtTable": "表格", + "txtTime": "時間", + "txtValues": "值", + "txtXAxis": "X軸", + "txtYAxis": "Y軸", + "txtYears": "年" + }, + "textAnonymous": "匿名", + "textBuyNow": "訪問網站", + "textClose": "關閉", + "textContactUs": "聯絡銷售人員", + "textCustomLoader": "很抱歉,您無權變更載入程序。 請聯繫我們的業務部門取得報價。", + "textGuest": "來賓", + "textHasMacros": "此檔案包含自動巨集程式。
    是否要運行這些巨集?", + "textNo": "沒有", + "textNoChoices": "無法選擇要填充單元格的內容。
    只能選擇列中的文本值進行替換。", + "textNoLicenseTitle": "達到許可限制", + "textNoTextFound": "找不到文字", + "textOk": "確定", + "textPaidFeature": "付費功能", + "textRemember": "記住我的選擇", + "textReplaceSkipped": "替換已完成。 {0}個事件被跳過。", + "textReplaceSuccess": "搜索已完成。發生的事件已替換:{0}", + "textYes": "是", + "titleServerVersion": "編輯器已更新", + "titleUpdateVersion": "版本已更改", + "warnLicenseExceeded": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。", + "warnLicenseLimitedNoAccess": "憑證已過期。您無法使用文件編輯功能。請聯絡您的帳號管理員", + "warnLicenseLimitedRenewed": "憑證需要續約。您目前只有文件編輯的部份功能。
    欲使用完整功能,請聯絡您的帳號管理員。", + "warnLicenseUsersExceeded": "您已達到 %1 個編輯器的使用者限制。請聯繫您的管理員以了解更多資訊。", + "warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。", + "warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。", + "warnProcessRightsChange": "您沒有編輯此文件的權限。" + } + }, + "Error": { + "convertationTimeoutText": "轉換逾時。", + "criticalErrorExtText": "點擊\"好\"回到文件列表。", + "criticalErrorTitle": "錯誤", + "downloadErrorText": "下載失敗", + "errorAccessDeny": "您正在嘗試執行您無權執行的動作。
    請聯繫您的管理員。", + "errorArgsRange": "公式中有錯誤。
    不正確的引數範圍。", + "errorAutoFilterChange": "不允許該動作,因為它試圖移動您的工作表上表格中的儲存格。", + "errorAutoFilterChangeFormatTable": "無法對所選儲存格執行該動作,因為無法移動表格的一部分。
    請選擇另一個資料範圍以便移動整個表格並重試。", + "errorAutoFilterDataRange": "無法對選定的儲存格區域執行該動作。
    請選擇工作表內部或外部的統一資料範圍並重試。", + "errorAutoFilterHiddenRange": "無法執行該動作,因為該區域包含過濾的儲存格。
    請取消隱藏過濾的元素並重試。", + "errorBadImageUrl": "不正確的圖像 URL", + "errorCannotUseCommandProtectedSheet": "您無法在受保護的工作表使用這個指令,若要使用這個指令,請取消保護該工作表。
    您可能需要輸入密碼。", + "errorChangeArray": "您不能更改數組的一部分。", + "errorChangeOnProtectedSheet": "您嘗試變更的儲存格或圖表位於受保護的工作表上。 要進行變更,請取消工作表的保護。您將可能會被要求您輸入密碼。", + "errorConnectToServer": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。請聯繫您的管理員以了解更多資訊。", + "errorCopyMultiselectArea": "此命令不能用於多個選擇。
    選擇單個範圍,然後重試。", + "errorCountArg": "公式中有錯誤。
    無效的引數數字。", + "errorCountArgExceed": "公式中有錯誤。
    超過最大的引數數字。", + "errorCreateDefName": "由於其中一些正在被編輯,因此目前無法編輯現有命名範圍,也無法創建新的命名範圍。", + "errorDatabaseConnection": "外部錯誤
    資料庫連結錯誤, 請聯絡技術支援。", + "errorDataEncrypted": "已收到加密的更改,無法解密。", + "errorDataRange": "不正確的資料範圍", + "errorDataValidate": "您輸入的值無效。
    用戶具有可以在此單元格中輸入的限制值。", + "errorDefaultMessage": "錯誤編號:%1", + "errorEditingDownloadas": "處理文件檔時發生錯誤。
    請使用\"下載\"來儲存一份備份檔案到本機端。", + "errorFilePassProtect": "此文件使用密碼保護功能,無法開啟。", + "errorFileRequest": "外部錯誤。
    檔案請求。請聯絡支援。", + "errorFileSizeExceed": "檔案大小已超過了您的伺服器限制。
    請聯繫您的管理員了解詳情。", + "errorFileVKey": "外部錯誤。
    錯誤的安全金鑰。請聯絡支援。", + "errorFillRange": "無法填充所選的單元格範圍。
    所有合併的單元格必須具有相同的大小。", + "errorFormulaName": "公式中有錯誤。
    錯誤的公式名稱。", + "errorFormulaParsing": "公式分析時出現內部錯誤。", + "errorFrmlMaxLength": "您無法添加此公式,因為它的長度超過了允許的字符數。
    請編輯它,然後重試。", + "errorFrmlMaxReference": "您無法輸入此公式,因為它具有太多的值,
    單元格引用和/或名稱。", + "errorFrmlMaxTextLength": "在公式中的文字數值有255字元的限制。
    使用 CONCATENATE 函數或序連運算子(&)", + "errorFrmlWrongReferences": "該函數引用了一個不存在的工作表。
    請檢查內容並重試。", + "errorInvalidRef": "輸入正確的選擇名稱或有效參考。", + "errorKeyEncrypt": "未知密鑰描述符", + "errorKeyExpire": "密鑰描述符已過期", + "errorLoadingFont": "字體未載入。
    請聯絡文件服務(Document Server)管理員。", + "errorLockedAll": "該工作表已被另一位用戶鎖定,因此無法完成該操作。", + "errorLockedCellPivot": "您不能在數據透視表中更改數據。", + "errorLockedWorksheetRename": "該工作表目前無法重命名,因為它正在被其他用戶重命名", + "errorMaxPoints": "每個圖表的最大串聯點數為4096。", + "errorMoveRange": "無法改變合併儲存格內的一部分", + "errorMultiCellFormula": "表中不允許使用多單元格數組公式。", + "errorOpenWarning": "文件中的一個公式長度超過了
    允許的字元數並已被移除。", + "errorOperandExpected": "輸入的函數語法不正確。請檢查您是否遺漏了任何括號之一 - '(' 或 ')'。", + "errorPasteMaxRange": "複製和貼上的區域不匹配。 請選擇一個相同大小的區域或點擊一行中的第一個儲存格以貼上已複製的儲存格。", + "errorPrintMaxPagesCount": "不幸的是,在目前版本的程式中一次不可列印超過 1500 頁。
    在即將發布的版本中將會取消此限制。", + "errorSessionAbsolute": "該文件編輯時效已欲期。請重新載入此頁面。", + "errorSessionIdle": "無 該文件已經有一段時間沒有進行編輯了。 請重新載入頁面。", + "errorSessionToken": "主機連線被中斷,請重新載入此頁面。", + "errorStockChart": "行序錯誤。要建立股票圖表,請將數據按照以下順序工作表:
    開盤價、最高價、最低價、收盤價。 ", + "errorUnexpectedGuid": "外部錯誤。
    未預期的導向。請聯絡支援。", + "errorUpdateVersionOnDisconnect": "網路連接已恢復,文件版本已更改。
    在繼續工作之前,您需要下載文件或複制其內容以確保沒有丟失,然後重新加載此頁面。", + "errorUserDrop": "目前無法存取該文件。", + "errorUsersExceed": "超出了定價計劃所允許的用戶數量", + "errorViewerDisconnect": "網路連線失敗。您可以繼續瀏覽這份文件,
    在連線恢復前以及頁面重新加載之前,您無法下載或列印此文件。", + "errorWrongBracketsCount": "公式中有錯誤。
    括號數字錯誤。", + "errorWrongOperator": "輸入的公式中有錯誤。使用了錯誤的運算符。
    請更正錯誤。", + "notcriticalErrorTitle": "警告", + "openErrorText": "開啟文件時發生錯誤", + "pastInMergeAreaError": "無法改變合併儲存格內的一部分", + "saveErrorText": "存檔時發生錯誤", + "scriptLoadError": "連線速度過慢,某些組件無法加載。 請重新載入頁面。", + "textErrorPasswordIsNotCorrect": "密碼錯誤。
    核實蓋帽封鎖鍵關閉並且是肯定使用正確資本化。", + "unknownErrorText": "未知錯誤。", + "uploadImageExtMessage": "圖片格式未知。", + "uploadImageFileCountMessage": "沒有上傳圖片。", + "uploadImageSizeMessage": "圖像超出最大大小限制。最大大小為25MB。" + }, + "LongActions": { + "advDRMPassword": "密碼", + "applyChangesTextText": "加載數據中...", + "applyChangesTitleText": "加載數據中", + "confirmMoveCellRange": "目標儲存格的範圍可以包含資料。繼續動作?", + "confirmPutMergeRange": "資料來源包含合併的單元格。
    它們在貼上到表格之前將被取消合併。", + "confirmReplaceFormulaInTable": "標題行中的公式將被刪除並轉換為靜態文本。
    是否繼續?", + "downloadTextText": "文件下載中...", + "downloadTitleText": "文件下載中", + "loadFontsTextText": "加載數據中...", + "loadFontsTitleText": "加載數據中", + "loadFontTextText": "加載數據中...", + "loadFontTitleText": "加載數據中", + "loadImagesTextText": "正在載入圖片...", + "loadImagesTitleText": "正在載入圖片", + "loadImageTextText": "正在載入圖片...", + "loadImageTitleText": "正在載入圖片", + "loadingDocumentTextText": "正在載入文件...", + "loadingDocumentTitleText": "載入文件", + "notcriticalErrorTitle": "警告", + "openTextText": "開啟文件中...", + "openTitleText": "開啟文件中", + "printTextText": "列印文件中...", + "printTitleText": "列印文件", + "savePreparingText": "準備保存", + "savePreparingTitle": "正在準備保存。請耐心等待...", + "saveTextText": "儲存文件...", + "saveTitleText": "儲存文件", + "textCancel": "取消", + "textErrorWrongPassword": "密碼錯誤", + "textLoadingDocument": "載入文件", + "textNo": "沒有", + "textOk": "確定", + "textUnlockRange": "範圍解鎖", + "textUnlockRangeWarning": "試圖改變的範圍受密碼保護。", + "textYes": "是", + "txtEditingMode": "設定編輯模式...", + "uploadImageTextText": "正在上傳圖片...", + "uploadImageTitleText": "上載圖片", + "waitText": "請耐心等待..." + }, + "Statusbar": { + "notcriticalErrorTitle": "警告", + "textCancel": "取消", + "textDelete": "刪除", + "textDuplicate": "重複複製", + "textErrNameExists": "具有此名稱的工作表已存在。", + "textErrNameWrongChar": "工作表名稱不能包含以下字符:\\,/,*,?,[,] 、:", + "textErrNotEmpty": "表格名稱不能為空", + "textErrorLastSheet": "工作簿必須至少有一個可見的工作表。", + "textErrorRemoveSheet": "無法刪除工作表。", + "textHidden": "隱長", + "textHide": "隱藏", + "textMore": "更多", + "textMove": "移動", + "textMoveBefore": "在工作表前移動", + "textMoveToEnd": "(移至結尾)", + "textOk": "確定", + "textRename": "重新命名", + "textRenameSheet": "重命名工作表", + "textSheet": "表格", + "textSheetName": "表格名稱", + "textUnhide": "取消隱藏", + "textWarnDeleteSheet": "工作表內可能有資料。 進行動作?", + "textTabColor": "Tab Color" + }, + "Toolbar": { + "dlgLeaveMsgText": "您在此文件中有未儲存的變更。點擊\"留在此頁面\"以等待自動儲存。點擊\"離開此頁面\"以放棄所有未儲存的變更。", + "dlgLeaveTitleText": "您離開應用程式。", + "leaveButtonText": "離開這個頁面", + "stayButtonText": "保持此頁上" + }, + "View": { + "Add": { + "errorMaxRows": "錯誤!每個圖表的最大數據系列數為255。", + "errorStockChart": "行序錯誤。要建立股票圖表,請將數據按照以下順序工作表:
    開盤價、最高價、最低價、收盤價。 ", + "notcriticalErrorTitle": "警告", + "sCatDateAndTime": "日期和時間", + "sCatEngineering": "工程", + "sCatFinancial": "金融", + "sCatInformation": "資訊", + "sCatLogical": "合邏輯", + "sCatLookupAndReference": "查找和參考", + "sCatMathematic": "數學和三角學", + "sCatStatistical": "統計", + "sCatTextAndData": "文字和數據", + "textAddLink": "新增連結", + "textAddress": "地址", + "textAllTableHint": "回傳表格或指定表格列的全部內容包括列標題,資料和總行術", + "textBack": "返回", + "textCancel": "取消", + "textChart": "圖表", + "textComment": "評論", + "textDataTableHint": "回傳表格儲存格,或指定的表格儲存格", + "textDisplay": "顯示", + "textEmptyImgUrl": "您需要指定影像的 URL。", + "textExternalLink": "外部連結", + "textFilter": "篩選條件", + "textFunction": "功能", + "textGroups": "分類", + "textHeadersTableHint": "回傳表格列標題,或指定的表格列標題", + "textImage": "圖像", + "textImageURL": "圖像 URL", + "textInsert": "插入", + "textInsertImage": "插入圖片", + "textInternalDataRange": "內部數據範圍", + "textInvalidRange": "錯誤!無效的單元格範圍", + "textLink": "連結", + "textLinkSettings": "連結設定", + "textLinkType": "鏈接類型", + "textOk": "確定", + "textOther": "其它", + "textPictureFromLibrary": "圖片來自圖書館", + "textPictureFromURL": "網址圖片", + "textRange": "範圍", + "textRequired": "需要", + "textScreenTip": "屏幕提示", + "textSelectedRange": "選擇範圍", + "textShape": "形狀", + "textSheet": "表格", + "textSortAndFilter": "排序和過濾", + "textThisRowHint": "在選定的列裡選擇這行", + "textTotalsTableHint": "回傳表格或指定表格列的總行數", + "txtExpand": "展開和排序", + "txtExpandSort": "選擇項旁邊的數據將不會排序。您是否要擴展選擇範圍以包括相鄰數據,還是僅對當前選定的單元格進行排序?", + "txtLockSort": "您選材的比鄰有數據,可您更改權限不足。
    是否繼續當前選材?", + "txtNo": "沒有", + "txtNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。", + "txtSorting": "排序", + "txtSortSelected": "排序已選擇項目", + "txtYes": "是" + }, + "Edit": { + "notcriticalErrorTitle": "警告", + "textAccounting": "會計", + "textActualSize": "實際大小", + "textAddCustomColor": "新增客制化顏色", + "textAddress": "地址", + "textAlign": "對齊", + "textAlignBottom": "靠下對齊", + "textAlignCenter": "置中對齊", + "textAlignLeft": "靠左對齊", + "textAlignMiddle": "至中對齊", + "textAlignRight": "靠右對齊", + "textAlignTop": "靠上對齊", + "textAllBorders": "所有邊界", + "textAngleClockwise": "順時針旋轉角度", + "textAngleCounterclockwise": "逆時針旋轉角度", + "textAuto": "自動", + "textAutomatic": "自動", + "textAxisCrosses": "軸十字", + "textAxisOptions": "軸選項", + "textAxisPosition": "軸位置", + "textAxisTitle": "軸標題", + "textBack": "返回", + "textBetweenTickMarks": "勾線之間", + "textBillions": "十億", + "textBorder": "邊框", + "textBorderStyle": "邊框風格", + "textBottom": "底部", + "textBottomBorder": "底部邊框", + "textBringToForeground": "移到前景", + "textCell": "單元格", + "textCellStyles": "單元格樣式", + "textCenter": "中心", + "textChart": "圖表", + "textChartTitle": "圖表標題", + "textClearFilter": "清空篩選條件", + "textColor": "顏色", + "textCross": "交叉", + "textCrossesValue": "交叉值", + "textCurrency": "貨幣", + "textCustomColor": "自訂顏色", + "textDataLabels": "數據標籤", + "textDate": "日期", + "textDefault": "選擇範圍", + "textDeleteFilter": "刪除過濾器", + "textDesign": "設計", + "textDiagonalDownBorder": "對角向下邊界", + "textDiagonalUpBorder": "對角上邊界", + "textDisplay": "顯示", + "textDisplayUnits": "顯示單位", + "textDollar": "美元", + "textEditLink": "編輯連結", + "textEffects": "效果", + "textEmptyImgUrl": "您需要指定影像的 URL。", + "textEmptyItem": "{空白}", + "textErrorMsg": "您必須選擇至少一個值", + "textErrorTitle": "警告", + "textEuro": "歐元", + "textExternalLink": "外部連結", + "textFill": "填入", + "textFillColor": "填色", + "textFilterOptions": "過濾器選項", + "textFit": "適合寬度", + "textFonts": "字型", + "textFormat": "格式", + "textFraction": "分數", + "textFromLibrary": "圖片來自圖書館", + "textFromURL": "網址圖片", + "textGeneral": "一般", + "textGridlines": "網格線", + "textHigh": "高", + "textHorizontal": "水平的", + "textHorizontalAxis": "橫軸", + "textHorizontalText": "橫軸上的文字", + "textHundredMil": "100 000 000", + "textHundreds": "幾百個", + "textHundredThousands": "100 000", + "textHyperlink": "超連結", + "textImage": "圖像", + "textImageURL": "圖像 URL", + "textIn": "在", + "textInnerBottom": "內底", + "textInnerTop": "內頂", + "textInsideBorders": "內部邊界", + "textInsideHorizontalBorder": "內部水平邊框", + "textInsideVerticalBorder": "內部垂直邊框", + "textInteger": "整數", + "textInternalDataRange": "內部數據範圍", + "textInvalidRange": "無效的單元格範圍", + "textJustified": "合理的", + "textLabelOptions": "標籤選項", + "textLabelPosition": "標籤位置", + "textLayout": "佈局", + "textLeft": "左", + "textLeftBorder": "左邊框", + "textLeftOverlay": "左側覆蓋", + "textLegend": "傳說", + "textLink": "連結", + "textLinkSettings": "連結設定", + "textLinkType": "鏈接類型", + "textLow": "低", + "textMajor": "重大", + "textMajorAndMinor": "主要和次要", + "textMajorType": "主要類型", + "textMaximumValue": "最大值", + "textMedium": "中", + "textMillions": "百萬", + "textMinimumValue": "最低值", + "textMinor": "次要", + "textMinorType": "次要類", + "textMoveBackward": "向後移動", + "textMoveForward": "向前移動", + "textNextToAxis": "軸旁", + "textNoBorder": "無邊界", + "textNone": "無", + "textNoOverlay": "無覆蓋", + "textNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。", + "textNumber": "數字", + "textOk": "確定", + "textOnTickMarks": "在勾標上", + "textOpacity": "透明度", + "textOut": "外", + "textOuterTop": "外上", + "textOutsideBorders": "境外", + "textOverlay": "覆蓋", + "textPercentage": "百分比", + "textPictureFromLibrary": "圖片來自圖書館", + "textPictureFromURL": "網址圖片", + "textPound": "英鎊", + "textPt": "pt", + "textRange": "範圍", + "textRemoveChart": "刪除圖表", + "textRemoveImage": "移除圖片", + "textRemoveLink": "刪除連結", + "textRemoveShape": "去除形狀", + "textReorder": "重新排序", + "textReplace": "取代", + "textReplaceImage": "替換圖片", + "textRequired": "需要", + "textRight": "右", + "textRightBorder": "右邊界", + "textRightOverlay": "右側覆蓋", + "textRotated": "已旋轉", + "textRotateTextDown": "向下旋轉文字", + "textRotateTextUp": "向上旋轉文字", + "textRouble": "盧布", + "textScientific": "科學的", + "textScreenTip": "屏幕提示", + "textSelectAll": "全選", + "textSelectObjectToEdit": "選擇要編輯的物件", + "textSendToBackground": "傳送到背景", + "textSettings": "設定", + "textShape": "形狀", + "textSheet": "表格", + "textSize": "大小", + "textStyle": "樣式", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "文字", + "textTextColor": "文字顏色", + "textTextFormat": "文字格式", + "textTextOrientation": "文字方向", + "textThick": "粗", + "textThin": "細", + "textThousands": "千", + "textTickOptions": "勾號選項", + "textTime": "時間", + "textTop": "上方", + "textTopBorder": "上邊框", + "textTrillions": "兆", + "textType": "類型", + "textValue": "值", + "textValuesInReverseOrder": "值倒序", + "textVertical": "垂直", + "textVerticalAxis": "垂直軸", + "textVerticalText": "垂直文字", + "textWrapText": "包覆文字", + "textYen": "日圓", + "txtNotUrl": "此字段應為格式為\"http://www.example.com\"的URL。", + "txtSortHigh2Low": "最高到最低排序", + "txtSortLow2High": "從最低到最高排序" + }, + "Settings": { + "advCSVOptions": "選擇CSV選項", + "advDRMEnterPassword": "請輸入您的密碼:", + "advDRMOptions": "受保護的文件", + "advDRMPassword": "密碼", + "closeButtonText": "關閉檔案", + "notcriticalErrorTitle": "警告", + "textAbout": "關於", + "textAddress": "地址", + "textApplication": "應用程式", + "textApplicationSettings": "應用程式設定", + "textAuthor": "作者", + "textBack": "返回", + "textBottom": "底部", + "textByColumns": "按列", + "textByRows": "按行", + "textCancel": "取消", + "textCentimeter": "公分", + "textChooseCsvOptions": "選擇CSV選項", + "textChooseDelimeter": "選擇分隔符號", + "textChooseEncoding": "選擇編碼方式", + "textCollaboration": "協作", + "textColorSchemes": "色盤", + "textComment": "評論", + "textCommentingDisplay": "評論顯示", + "textComments": "評論", + "textCreated": "已建立", + "textCustomSize": "自訂大小", + "textDarkTheme": "暗色主題", + "textDelimeter": "分隔符號", + "textDisableAll": "全部停用", + "textDisableAllMacrosWithNotification": "以提示停用全部巨集", + "textDisableAllMacrosWithoutNotification": "不用提示停用全部巨集", + "textDone": "已完成", + "textDownload": "下載", + "textDownloadAs": "下載成", + "textEmail": "電子郵件", + "textEnableAll": "全部啟用", + "textEnableAllMacrosWithoutNotification": "不用提示啟用全部巨集", + "textEncoding": "編碼", + "textExample": "例", + "textFind": "尋找", + "textFindAndReplace": "尋找與取代", + "textFindAndReplaceAll": "尋找與全部取代", + "textFormat": "格式", + "textFormulaLanguage": "公式語言", + "textFormulas": "公式", + "textHelp": "輔助說明", + "textHideGridlines": "隱藏網格線", + "textHideHeadings": "隱藏標題", + "textHighlightRes": "強調結果", + "textInch": "吋", + "textLandscape": "景觀", + "textLastModified": "上一次更改", + "textLastModifiedBy": "最後修改者", + "textLeft": "左", + "textLocation": "位置", + "textLookIn": "探望", + "textMacrosSettings": "巨集設定", + "textMargins": "邊界", + "textMatchCase": "相符", + "textMatchCell": "匹配單元", + "textNoTextFound": "找不到文字", + "textOk": "確定", + "textOpenFile": "輸入檔案密碼", + "textOrientation": "方向", + "textOwner": "擁有者", + "textPoint": "點", + "textPortrait": "肖像", + "textPoweredBy": "於支援", + "textPrint": "打印", + "textR1C1Style": "R1C1參考樣式", + "textRegionalSettings": "區域設置", + "textReplace": "取代", + "textReplaceAll": "全部替換", + "textResolvedComments": "已解決的評論", + "textRight": "右", + "textSearch": "搜尋", + "textSearchBy": "搜尋", + "textSearchIn": "搜尋", + "textSettings": "設定", + "textSheet": "表格", + "textShowNotification": "顯示通知", + "textSpreadsheetFormats": "電子表格格式", + "textSpreadsheetInfo": "試算表資訊", + "textSpreadsheetSettings": "試算表設定", + "textSpreadsheetTitle": "試算表標題", + "textSubject": "主旨", + "textTel": "電話", + "textTitle": "標題", + "textTop": "上方", + "textUnitOfMeasurement": "測量單位", + "textUploaded": "\n已上傳", + "textValues": "值", + "textVersion": "版本", + "textWorkbook": "工作簿", + "txtColon": "冒號", + "txtComma": "逗號", + "txtDelimiter": "分隔符號", + "txtDownloadCsv": "下載CSV", + "txtEncoding": "編碼", + "txtIncorrectPwd": "密碼錯誤", + "txtOk": "確定", + "txtProtected": "輸入密碼並打開文件後,該文件的當前密碼將被重置", + "txtScheme1": "辦公室", + "txtScheme10": "中位數", + "txtScheme11": " 地鐵", + "txtScheme12": "模組", + "txtScheme13": "豐富的", + "txtScheme14": "凸窗", + "txtScheme15": "起源", + "txtScheme16": "紙", + "txtScheme17": "冬至", + "txtScheme18": "技術", + "txtScheme19": "跋涉", + "txtScheme2": "灰階", + "txtScheme20": "市區", + "txtScheme21": "感染力", + "txtScheme22": "新的Office", + "txtScheme3": "頂尖", + "txtScheme4": "方面", + "txtScheme5": "思域", + "txtScheme6": "大堂", + "txtScheme7": "產權", + "txtScheme8": "流程", + "txtScheme9": "鑄造廠", + "txtSemicolon": "分號", + "txtSpace": "空間", + "txtTab": "標籤", + "warnDownloadAs": "如果繼續以這種格式保存,則除文本外的所有功能都將丟失。
    確定要繼續嗎?", + "textFeedback": "Feedback & Support" + } + } +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 6a509da22..e2f149838 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -79,7 +79,7 @@ "txtAll": "(全部)", "txtArt": "你的文本在此", "txtBlank": "(空白)", - "txtByField": "%2的%1 ", + "txtByField": "%1/%2", "txtClearFilter": "清除筛选器(Alt+C)", "txtColLbls": "列标签", "txtColumn": "列", @@ -361,7 +361,12 @@ "txtNotUrl": "该字段应为“http://www.example.com”格式的URL", "txtSorting": "排序", "txtSortSelected": "排序选定的", - "txtYes": "是" + "txtYes": "是", + "textAllTableHint": "Returns the entire contents of the table or specified table columns including column headers, data and total rows", + "textDataTableHint": "Returns the data cells of the table or specified table columns", + "textHeadersTableHint": "Returns the column headers for the table or specified table columns", + "textThisRowHint": "Choose only this row of the specified column", + "textTotalsTableHint": "Returns the total rows for the table or specified table columns" }, "Edit": { "notcriticalErrorTitle": "警告", @@ -373,7 +378,7 @@ "textAlignBottom": "底部对齐", "textAlignCenter": "居中对齐", "textAlignLeft": "左对齐", - "textAlignMiddle": "居中对齐", + "textAlignMiddle": "垂直居中", "textAlignRight": "右对齐", "textAlignTop": "顶端对齐", "textAllBorders": "所有边框", diff --git a/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx index d78b7fa7d..0b4dfc2ff 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx @@ -3,8 +3,10 @@ import React, { useEffect, useState } from 'react'; import CellEditorView from '../view/CellEditor'; import { f7 } from 'framework7-react'; import { Device } from '../../../../common/mobile/utils/device'; +import { useTranslation } from 'react-i18next'; +import {observer, inject} from "mobx-react"; -const CellEditor = props => { +const CellEditor = inject("storeFunctions")(observer(props => { useEffect(() => { Common.Notifications.on('engineCreated', api => { api.asc_registerCallback('asc_onSelectionNameChanged', onApiCellSelection.bind(this)); @@ -13,9 +15,11 @@ const CellEditor = props => { }); }, []); + const { t } = useTranslation(); const [cellName, setCellName] = useState(''); const [stateFunctions, setFunctionshDisabled] = useState(null); const [stateFuncArr, setFuncArr] = useState(''); + const [stateHintArr, setHintArr] = useState(''); const onApiCellSelection = info => { setCellName(typeof(info)=='string' ? info : info.asc_getName()); @@ -36,9 +40,63 @@ const CellEditor = props => { } const onFormulaCompleteMenu = funcArr => { - setFuncArr(funcArr); + const api = Common.EditorApi.get(); + const storeFunctions = props.storeFunctions; + const functions = storeFunctions.functions; if(funcArr) { + funcArr.sort(function (a, b) { + let atype = a.asc_getType(), + btype = b.asc_getType(); + if (atype===btype && (atype === Asc.c_oAscPopUpSelectorType.TableColumnName)) + return 0; + if (atype === Asc.c_oAscPopUpSelectorType.TableThisRow) return -1; + if (btype === Asc.c_oAscPopUpSelectorType.TableThisRow) return 1; + if ((atype === Asc.c_oAscPopUpSelectorType.TableColumnName || btype === Asc.c_oAscPopUpSelectorType.TableColumnName) && atype !== btype) + return atype === Asc.c_oAscPopUpSelectorType.TableColumnName ? -1 : 1; + let aname = a.asc_getName(true).toLocaleUpperCase(), + bname = b.asc_getName(true).toLocaleUpperCase(); + if (aname < bname) return -1; + if (aname > bname) return 1; + + return 0; + }); + + let hintArr = funcArr.map(item => { + let type = item.asc_getType(), + name = item.asc_getName(true), + origName = api.asc_getFormulaNameByLocale(name), + args = functions[origName]?.args || '', + caption = name, + descr = ''; + + switch (type) { + case Asc.c_oAscPopUpSelectorType.Func: + descr = functions && functions[origName] ? functions[origName].descr : ''; + break; + case Asc.c_oAscPopUpSelectorType.TableThisRow: + descr = t('View.Add.textThisRowHint'); + break; + case Asc.c_oAscPopUpSelectorType.TableAll: + descr = t('View.Add.textAllTableHint'); + break; + case Asc.c_oAscPopUpSelectorType.TableData: + descr = t('View.Add.textDataTableHint'); + break; + case Asc.c_oAscPopUpSelectorType.TableHeaders: + descr = t('View.Add.textHeadersTableHint'); + break; + case Asc.c_oAscPopUpSelectorType.TableTotals: + descr = t('View.Add.textTotalsTableHint'); + break; + } + + return {name, type, descr, caption, args}; + }); + + setHintArr(hintArr); + setFuncArr(funcArr); + f7.popover.open('#idx-functions-list', '#idx-list-target'); } else { f7.popover.close('#idx-functions-list'); @@ -48,6 +106,7 @@ const CellEditor = props => { const insertFormula = (name, type) => { const api = Common.EditorApi.get(); api.asc_insertInCell(name, type, false); + f7.popover.close('#idx-functions-list'); } return ( @@ -56,9 +115,10 @@ const CellEditor = props => { stateFunctions={stateFunctions} onClickToOpenAddOptions={props.onClickToOpenAddOptions} funcArr={stateFuncArr} + hintArr={stateHintArr} insertFormula={insertFormula} /> ) -}; +})); export default CellEditor; \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx b/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx index 9052a5bb9..0220e9def 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx @@ -8,11 +8,7 @@ class EncodingController extends Component { constructor(props) { super(props); - const { t } = this.props; - const _t = t("View.Settings", { returnObjects: true }); - this.valuesDelimeter = [4, 2, 3, 1, 5]; - this.namesDelimeter = [_t.txtComma, _t.txtSemicolon, _t.txtColon, _t.txtTab, _t.txtSpace]; this.onSaveFormat = this.onSaveFormat.bind(this); this.closeModal = this.closeModal.bind(this); this.state = { @@ -31,6 +27,9 @@ class EncodingController extends Component { } initEncoding(type, advOptions, mode, formatOptions) { + const { t } = this.props; + const _t = t("View.Settings", { returnObjects: true }); + if(type === Asc.c_oAscAdvancedOptionsID.CSV) { Common.Notifications.trigger('preloader:close'); Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256, true); @@ -39,6 +38,7 @@ class EncodingController extends Component { this.advOptions = advOptions; this.formatOptions = formatOptions; this.encodeData = []; + this.namesDelimeter = [_t.txtComma, _t.txtSemicolon, _t.txtColon, _t.txtTab, _t.txtSpace]; const recommendedSettings = this.advOptions.asc_getRecommendedSettings(); diff --git a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx index fb7e66519..933429efb 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx @@ -26,12 +26,17 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { }; useEffect( () => { - Common.Notifications.on('engineCreated', (api) => { + const on_engine_created = api => { api.asc_registerCallback('asc_onStartAction', onLongActionBegin); api.asc_registerCallback('asc_onEndAction', onLongActionEnd); api.asc_registerCallback('asc_onOpenDocumentProgress', onOpenDocument); api.asc_registerCallback('asc_onConfirmAction', onConfirmAction); - }); + }; + + const api = Common.EditorApi.get(); + if(!api) Common.Notifications.on('engineCreated', on_engine_created); + else on_engine_created(api); + Common.Notifications.on('preloader:endAction', onLongActionEnd); Common.Notifications.on('preloader:beginAction', onLongActionBegin); Common.Notifications.on('preloader:close', closePreloader); @@ -45,6 +50,7 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { api.asc_unregisterCallback('asc_onConfirmAction', onConfirmAction); } + Common.Notifications.off('engineCreated', on_engine_created); Common.Notifications.off('preloader:endAction', onLongActionEnd); Common.Notifications.off('preloader:beginAction', onLongActionBegin); Common.Notifications.off('preloader:close', closePreloader); diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 2a7548f21..0b7925cf3 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -171,6 +171,9 @@ class MainController extends Component { docInfo.put_Lang(this.editorConfig.lang); docInfo.put_Mode(this.editorConfig.mode); + if (typeof this.editorConfig.coEditing == 'object' && this.editorConfig.coEditing.mode!==undefined) + docInfo.put_CoEditingMode(this.editorConfig.coEditing.mode); + const appOptions = this.props.storeAppOptions; let enable = !appOptions.customization || (appOptions.customization.macros !== false); docInfo.asc_putIsEnabledMacroses(!!enable); @@ -448,9 +451,9 @@ class MainController extends Component { boxSdk.append(dropdownListTarget); } - let coord = this.api.asc_getActiveCellCoord(), + let coord = this.api.asc_getActiveCellCoord(validation), offset = {left: 0, top: 0}, - showPoint = [coord.asc_getX() + offset.left, (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top]; + showPoint = [coord.asc_getX() + offset.left + (validation ? coord.asc_getWidth() : 0), (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + offset.top]; dropdownListTarget.css({left: `${showPoint[0]}px`, top: `${showPoint[1]}px`}); } diff --git a/apps/spreadsheeteditor/mobile/src/controller/Search.jsx b/apps/spreadsheeteditor/mobile/src/controller/Search.jsx index c4d33a82c..cb2fa3dde 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Search.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Search.jsx @@ -123,9 +123,9 @@ class SESearchView extends SearchView { } onSearchbarShow(isshowed, bar) { - super.onSearchbarShow(isshowed, bar); - + // super.onSearchbarShow(isshowed, bar); const api = Common.EditorApi.get(); + if ( isshowed && this.state.searchQuery.length ) { const checkboxMarkResults = f7.toggle.get('.toggle-mark-results'); api.asc_selectSearchingResults(checkboxMarkResults.checked); diff --git a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx index 47f114d8f..5c871267f 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx @@ -373,6 +373,13 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props => api.asc_showWorksheet(sheetIndex); f7.popover.close('#idx-all-list'); } + + const tab = $$('.sheet-tabs .tab').eq(sheetIndex); + if(tab.offset().left < 0) { + $$('.sheet-tabs').scrollLeft( $$('.sheet-tabs').scrollLeft() + tab.offset().left - 96, 500); + } else { + $$('.sheet-tabs').scrollLeft( $$('.sheet-tabs').scrollLeft() + (tab.offset().left + tab.width() - $$('.sheet-tabs').width()/1.5), 500); + } }; const onSetWorkSheetColor = (color) => { diff --git a/apps/spreadsheeteditor/mobile/src/index_dev.html b/apps/spreadsheeteditor/mobile/src/index_dev.html index 0dc3711ca..c2a8cbaf8 100644 --- a/apps/spreadsheeteditor/mobile/src/index_dev.html +++ b/apps/spreadsheeteditor/mobile/src/index_dev.html @@ -2,15 +2,7 @@ - - + diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index 0565ce531..6285cf3a8 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -167,10 +167,16 @@ } .sheet-filter, .popover-filter { - ul li:first-child .list-button{ - color: @text-normal; - &::after { - background: @background-menu-divider; + .list { + ul li:first-child .list-button{ + color: @text-normal; + &::after { + background: @background-menu-divider; + } + } + + .item-inner { + color: @text-normal; } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/less/statusbar.less b/apps/spreadsheeteditor/mobile/src/less/statusbar.less index 17579c94f..2c6e67cdf 100644 --- a/apps/spreadsheeteditor/mobile/src/less/statusbar.less +++ b/apps/spreadsheeteditor/mobile/src/less/statusbar.less @@ -50,8 +50,8 @@ padding: 0; margin: 0; height: 100%; - white-space: pre; - // overflow: hidden; + white-space: nowrap; + overflow-x: scroll; // position: absolute; // left: 0; // top: 0; @@ -64,12 +64,6 @@ height: 100%; display: block; } - - &:not(.active) { - a { - opacity: 0.5; - } - } } } } diff --git a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx index ebd441776..3b7b4de63 100644 --- a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx @@ -1,5 +1,5 @@ -import React, { Fragment, useState } from 'react'; +import React, { Fragment, useState, useEffect } from 'react'; import { Input, View, Button, Link, Popover, ListItem, List, Icon, f7, Page, Navbar, NavRight } from 'framework7-react'; import {observer, inject} from "mobx-react"; import { __interactionsRef } from 'scheduler/tracing'; @@ -20,15 +20,26 @@ const FunctionInfo = props => { const functionObj = props.functionObj; const functionInfo = props.functionInfo; + useEffect(() => { + const functionsList = document.querySelector('#functions-list'); + const height = functionsList.offsetHeight + 'px'; + + functionsList.closest('.view').style.height = '200px'; + + return () => { + functionsList.closest('.view').style.height = height; + } + }, []); + return ( - + props.insertFormula(functionObj.name, functionObj.type)}>
    -

    {`${functionInfo.caption} ${functionInfo.args}`}

    +

    {functionInfo.caption && functionInfo.args ? `${functionInfo.caption} ${functionInfo.args}` : functionInfo.name}

    {functionInfo.descr}

    @@ -36,27 +47,37 @@ const FunctionInfo = props => { } const FunctionsList = props => { - const { t } = useTranslation(); const isPhone = Device.isPhone; const functions = props.functions; const funcArr = props.funcArr; + const hintArr = props.hintArr; + + useEffect(() => { + const functionsList = document.querySelector('#functions-list'); + const height = functionsList.offsetHeight + 'px'; + + functionsList.closest('.view').style.height = height; + }, [funcArr]); return ( -
    +
    - {funcArr.map((elem, index) => { + {funcArr && funcArr.length && funcArr.map((elem, index) => { return ( props.insertFormula(elem.name, elem.type)}> -
    { - e.stopPropagation(); - let functionInfo = functions[elem.name]; - if(functionInfo) { - f7.views.current.router.navigate('/function-info/', {props: {functionInfo, functionObj: elem, insertFormula: props.insertFormula}}); - } - }}> - -
    + {(functions[elem.name] || hintArr[index]?.descr) && +
    { + e.stopPropagation(); + let functionInfo = functions[elem.name] || hintArr[index]; + + if(functionInfo) { + f7.views.current.router.navigate('/function-info/', {props: {functionInfo, functionObj: elem, insertFormula: props.insertFormula}}); + } + }}> + +
    + }
    ) })} @@ -65,8 +86,6 @@ const FunctionsList = props => { ) } - - const CellEditorView = props => { const [expanded, setExpanded] = useState(false); const isPhone = Device.isPhone; @@ -78,6 +97,7 @@ const CellEditorView = props => { const functions = storeFunctions.functions; const isEdit = storeAppOptions.isEdit; const funcArr = props.funcArr; + const hintArr = props.hintArr; const expandClick = e => { setExpanded(!expanded); @@ -115,6 +135,7 @@ const CellEditorView = props => { @@ -130,6 +151,10 @@ const routes = [ { path: '/function-info/', component: FunctionInfo + }, + { + path: '/functions-list/', + component: FunctionsList } ]; diff --git a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx index 7efa3dfa3..e5aff2a69 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx @@ -146,6 +146,20 @@ const PageTabColor = inject("storePalette")(observer(props => { ) })); +const PopoverAllList = (props) => { + const {sheets, onTabListClick} = props; + + const onScrollList = () => { + const listHeight = $$('.list .item-list').height(); + $$('.all-list .page-content').scrollTop(listHeight*sheets.activeWorksheet); + }; + + return ( + + + + ) +}; const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(props => { const { t } = useTranslation(); @@ -231,9 +245,7 @@ const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(prop ) : null} { - - - + } {isPhone ? diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index ad57c53ad..ba2bb0aff 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -156,26 +156,10 @@ const PageFontsCell = props => { const spriteCols = storeTextSettings.spriteCols; const spriteThumbs = storeTextSettings.spriteThumbs; - useEffect(() => { - setRecent(getImageUri(arrayRecentFonts)); - - return () => { - } - }, []); - const addRecentStorage = () => { - let arr = []; - arrayRecentFonts.forEach(item => arr.push(item)); setRecent(getImageUri(arrayRecentFonts)); - LocalStorage.setItem('sse-settings-recent-fonts', JSON.stringify(arr)); - } - - const [stateRecent, setRecent] = useState([]); - const [vlFonts, setVlFonts] = useState({ - vlData: { - items: [], - } - }); + LocalStorage.setItem('sse-settings-recent-fonts', JSON.stringify(arrayRecentFonts)); + }; const getImageUri = fonts => { return fonts.map(font => { @@ -184,7 +168,14 @@ const PageFontsCell = props => { return thumbCanvas.toDataURL(); }); - }; + }; + + const [stateRecent, setRecent] = useState(() => getImageUri(arrayRecentFonts)); + const [vlFonts, setVlFonts] = useState({ + vlData: { + items: [], + } + }); const renderExternal = (vl, vlData) => { setVlFonts((prevState) => { diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx index b8a17a049..a8cef2809 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx @@ -13,11 +13,13 @@ const EditShape = props => { const canFill = shapeObject && shapeObject.get_ShapeProperties().asc_getCanFill(); const shapeType = shapeObject.get_ShapeProperties().asc_getType(); - const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' + const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeObject.get_ShapeProperties().get_FromSmartArt() + || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' || shapeType=='bentConnector4' || shapeType=='bentConnector5' || shapeType=='curvedConnector2' || shapeType=='curvedConnector3' || shapeType=='curvedConnector4' || shapeType=='curvedConnector5' || shapeType=='straightConnector1'; + const isSmartArtInternal = shapeObject.get_ShapeProperties().get_FromSmartArtInternal(); let disableRemove = storeFocusObjects.selections.indexOf('text') > -1; return ( @@ -41,9 +43,11 @@ const EditShape = props => { onReplace: props.onReplace }}> } - + { !isSmartArtInternal && + + }
    {_t.textRemoveShape} diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx index a44c736ab..4baee0613 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx @@ -109,26 +109,10 @@ const PageFonts = props => { const spriteThumbs = storeTextSettings.spriteThumbs; const arrayRecentFonts = storeTextSettings.arrayRecentFonts; - useEffect(() => { - setRecent(getImageUri(arrayRecentFonts)); - - return () => { - } - }, []); - const addRecentStorage = () => { - let arr = []; - arrayRecentFonts.forEach(item => arr.push(item)); setRecent(getImageUri(arrayRecentFonts)); - LocalStorage.setItem('sse-settings-recent-fonts', JSON.stringify(arr)); - } - - const [stateRecent, setRecent] = useState([]); - const [vlFonts, setVlFonts] = useState({ - vlData: { - items: [], - } - }); + LocalStorage.setItem('sse-settings-recent-fonts', JSON.stringify(arrayRecentFonts)); + }; const getImageUri = fonts => { return fonts.map(font => { @@ -139,6 +123,13 @@ const PageFonts = props => { }); }; + const [stateRecent, setRecent] = useState(() => getImageUri(arrayRecentFonts)); + const [vlFonts, setVlFonts] = useState({ + vlData: { + items: [], + } + }); + const renderExternal = (vl, vlData) => { setVlFonts((prevState) => { let fonts = [...prevState.vlData.items]; diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/ApplicationSettings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/ApplicationSettings.jsx index 52e08bb5d..30a319d05 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/ApplicationSettings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/ApplicationSettings.jsx @@ -65,8 +65,7 @@ const PageApplicationSettings = props => { } {_t.textCommentingDisplay} - - {_t.textComments} + { storeApplicationSettings.changeDisplayComments(!isComments); @@ -74,8 +73,7 @@ const PageApplicationSettings = props => { }} /> - - {_t.textResolvedComments} + { storeApplicationSettings.changeDisplayResolved(!isResolvedComments); @@ -85,8 +83,7 @@ const PageApplicationSettings = props => { - - {_t.textR1C1Style} + { storeApplicationSettings.changeRefStyle(!isRefStyle); diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx index 3d545f117..01386fbfd 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx @@ -91,9 +91,12 @@ const SettingsList = inject("storeAppOptions")(observer(props => { } const onPrint = () => { - closeModal(); const api = Common.EditorApi.get(); - api.asc_Print(); + + closeModal(); + setTimeout(() => { + api.asc_Print(); + }, 400); }; const showHelp = () => { diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx index 2c7170a01..616f20df7 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx @@ -238,16 +238,14 @@ const PageSpreadsheetSettings = props => { onPageMarginsChange: props.onPageMarginsChange }}> - - - {_t.textHideHeadings} + + { storeSpreadsheetSettings.changeHideHeadings(!isHideHeadings); props.clickCheckboxHideHeadings(!isHideHeadings) }} /> - - {_t.textHideGridlines} + { storeSpreadsheetSettings.changeHideGridlines(!isHideGridlines); props.clickCheckboxHideGridlines(!isHideGridlines) diff --git a/build/package-lock.json b/build/package-lock.json new file mode 100644 index 000000000..00ffc36c6 --- /dev/null +++ b/build/package-lock.json @@ -0,0 +1,17787 @@ +{ + "name": "common", + "version": "1.0.1", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "common", + "version": "1.0.1", + "dependencies": { + "grunt": "^1.0.0", + "grunt-contrib-clean": "^2.0.0", + "grunt-contrib-concat": "^0.5.1", + "grunt-contrib-copy": "^0.8.0", + "grunt-contrib-cssmin": "^3.0.0", + "grunt-contrib-htmlmin": "^2.0.0", + "grunt-contrib-imagemin": "^3.1.0", + "grunt-contrib-less": "^2.0.0", + "grunt-contrib-requirejs": "^1.0.0", + "grunt-contrib-uglify": "^4.0.1", + "grunt-exec": "^3.0.0", + "grunt-inline": "0.3.4", + "grunt-json-minify": "^1.1.0", + "grunt-spritesmith": "^6.8.0", + "grunt-svgmin": "^6.0.0", + "grunt-text-replace": "0.3.11", + "iconsprite": "file:sprites", + "iconv-lite": "^0.5.1", + "less-plugin-clean-css": "1.5.0", + "lodash": "^4.17.20", + "vinyl-fs": "^3.0.3" + }, + "devDependencies": { + "chai": "1.9.1", + "grunt-mocha": "^1.0.0", + "mocha": "^6.2.2" + } + }, + "node_modules/@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "dependencies": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "node_modules/acorn": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz", + "integrity": "sha1-yM4n3grMdtiW0rH6099YjZ6C8BQ=", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "engines": { + "node": ">=0.4.2" + } + }, + "node_modules/ansi-colors": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", + "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-regex": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz", + "integrity": "sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-styles": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz", + "integrity": "sha1-6uy/Zs1waIJ2Cy9GkVgrj1XXp94=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=", + "dependencies": { + "buffer-equal": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=", + "optional": true, + "dependencies": { + "file-type": "^4.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/archive-type/node_modules/file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha1-G2AOX8ofvcboDApwxxyNul95BsU=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assertion-error": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.0.tgz", + "integrity": "sha1-x/hUOP3UZrx8oWq5DIFRN5el0js=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/bin-build": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", + "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", + "optional": true, + "dependencies": { + "decompress": "^4.0.0", + "download": "^6.2.2", + "execa": "^0.7.0", + "p-map-series": "^1.0.0", + "tempfile": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "optional": true, + "dependencies": { + "execa": "^0.7.0", + "executable": "^4.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-pack": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bin-pack/-/bin-pack-1.0.2.tgz", + "integrity": "sha1-wqAU7b8L7XCjKSBi7UZXe5YSBnk=" + }, + "node_modules/bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "optional": true, + "dependencies": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "optional": true, + "dependencies": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "optional": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/bin-version/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "optional": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "optional": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "optional": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/bin-version/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "optional": true, + "dependencies": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "optional": true, + "dependencies": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/download/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "optional": true, + "dependencies": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/got/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "optional": true, + "dependencies": { + "p-timeout": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "optional": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "optional": true, + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "optional": true, + "dependencies": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/blanket": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/blanket/-/blanket-1.2.3.tgz", + "integrity": "sha1-FRtJh8O9hFUrtfA7kO9fflkx5HM=", + "dev": true, + "dependencies": { + "acorn": "^1.0.3", + "falafel": "~1.2.0", + "foreach": "^2.0.5", + "isarray": "0.0.1", + "object-keys": "^1.0.6", + "xtend": "~4.0.0" + }, + "engines": { + "node": ">=0.10.7" + } + }, + "node_modules/blanket/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "node_modules/boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "deprecated": "This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).", + "dev": true, + "dependencies": { + "hoek": "2.x.x" + }, + "engines": { + "node": ">=0.10.40" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/braces/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true, + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "optional": true, + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "optional": true + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "devOptional": true, + "engines": { + "node": "*" + } + }, + "node_modules/buffer-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", + "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", + "optional": true + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=", + "optional": true, + "dependencies": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-me-maybe": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", + "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=" + }, + "node_modules/camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "node_modules/camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "optional": true, + "dependencies": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "node_modules/caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "optional": true, + "dependencies": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chai": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/chai/-/chai-1.9.1.tgz", + "integrity": "sha1-NxG7ZwbhVo80wLNgmL+PGUVcga4=", + "dev": true, + "dependencies": { + "assertion-error": "1.0.0", + "deep-eql": "0.1.3" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/chalk": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz", + "integrity": "sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=", + "dependencies": { + "ansi-styles": "^1.1.0", + "escape-string-regexp": "^1.0.0", + "has-ansi": "^0.1.0", + "strip-ansi": "^0.3.0", + "supports-color": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "optional": true, + "dependencies": { + "mimic-response": "^1.0.0" + } + }, + "node_modules/clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + }, + "node_modules/cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dependencies": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/colors": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", + "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==" + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "optional": true, + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/console-stream": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz", + "integrity": "sha1-oJX+B7IEZZVfL6/Si11yvM2UnUQ=", + "optional": true + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "optional": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/contentstream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/contentstream/-/contentstream-1.0.0.tgz", + "integrity": "sha1-C9z6RtowRkqGzo+n7OVlQQ3G+aU=", + "dependencies": { + "readable-stream": "~1.0.33-1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/contentstream/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "node_modules/contentstream/node_modules/readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/contentstream/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/convert-source-map/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "dependencies": { + "is-what": "^3.14.1" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/coveralls": { + "version": "2.13.3", + "resolved": "https://registry.npmjs.org/coveralls/-/coveralls-2.13.3.tgz", + "integrity": "sha512-iiAmn+l1XqRwNLXhW8Rs5qHZRFMYp9ZIPjEOVRpC/c4so6Y/f4/lFi0FfR5B9cCqgyhkJ5cZmbvcVRfP8MHchw==", + "dev": true, + "dependencies": { + "js-yaml": "3.6.1", + "lcov-parse": "0.0.10", + "log-driver": "1.2.5", + "minimist": "1.2.0", + "request": "2.79.0" + }, + "bin": { + "coveralls": "bin/coveralls.js" + }, + "engines": { + "node": ">=0.8.6" + } + }, + "node_modules/coveralls/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/coveralls/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/coveralls/node_modules/assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/coveralls/node_modules/aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/coveralls/node_modules/caseless": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", + "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", + "dev": true + }, + "node_modules/coveralls/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/coveralls/node_modules/esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/coveralls/node_modules/form-data": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", + "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.5", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/coveralls/node_modules/har-validator": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", + "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", + "deprecated": "this library is no longer supported", + "dev": true, + "dependencies": { + "chalk": "^1.1.1", + "commander": "^2.9.0", + "is-my-json-valid": "^2.12.4", + "pinkie-promise": "^2.0.0" + }, + "bin": { + "har-validator": "bin/har-validator" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/coveralls/node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/coveralls/node_modules/http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "dev": true, + "dependencies": { + "assert-plus": "^0.2.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/coveralls/node_modules/js-yaml": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.6.1.tgz", + "integrity": "sha1-bl/mfYsgXOTSL60Ft3geja3MSzA=", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^2.6.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/coveralls/node_modules/minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "node_modules/coveralls/node_modules/oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/coveralls/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "node_modules/coveralls/node_modules/qs": { + "version": "6.3.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.3.tgz", + "integrity": "sha512-f8CQ/sKJBr9vfNJBdGiPzTSPUufuWyvOFkCYJKN9voqPWuBuhdlSZM78dOHKigtZ0BwuktYGrRFW2DXXc/f2Fg==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/coveralls/node_modules/request": { + "version": "2.79.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", + "integrity": "sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4=", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dev": true, + "dependencies": { + "aws-sign2": "~0.6.0", + "aws4": "^1.2.1", + "caseless": "~0.11.0", + "combined-stream": "~1.0.5", + "extend": "~3.0.0", + "forever-agent": "~0.6.1", + "form-data": "~2.1.1", + "har-validator": "~2.0.6", + "hawk": "~3.1.3", + "http-signature": "~1.1.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.7", + "oauth-sign": "~0.8.1", + "qs": "~6.3.0", + "stringstream": "~0.0.4", + "tough-cookie": "~2.3.0", + "tunnel-agent": "~0.4.1", + "uuid": "^3.0.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/coveralls/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/coveralls/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/coveralls/node_modules/tough-cookie": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", + "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", + "dev": true, + "dependencies": { + "punycode": "^1.4.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/coveralls/node_modules/tunnel-agent": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", + "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "optional": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/cross-spawn/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "deprecated": "This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).", + "dev": true, + "dependencies": { + "boom": "2.x.x" + }, + "engines": { + "node": ">=0.10.40" + } + }, + "node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "optional": true, + "dependencies": { + "array-find-index": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cwise-compiler": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cwise-compiler/-/cwise-compiler-1.1.3.tgz", + "integrity": "sha1-9NZnQQ6FDToxOn0tt7HlBbsDTMU=", + "dependencies": { + "uniq": "^1.0.0" + } + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-uri-to-buffer": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.3.tgz", + "integrity": "sha1-GK6XmmoMqZSwYlhTkW0mYruuCxo=" + }, + "node_modules/datauri": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/datauri/-/datauri-0.2.1.tgz", + "integrity": "sha1-9Oit27PlTj3BLRyIVDuLCxv2kvo=", + "deprecated": "Datauri 2.0 released. See more in https://github.com/data-uri/datauri/releases/tag/v2.0.0", + "dependencies": { + "mimer": "*", + "templayed": "*" + }, + "bin": { + "datauri": "bin/datauri" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dateformat": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", + "engines": { + "node": "*" + } + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "devOptional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "optional": true, + "dependencies": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "optional": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "optional": true, + "dependencies": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tar/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "optional": true, + "dependencies": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2/node_modules/file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "optional": true, + "dependencies": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-targz/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=", + "optional": true, + "dependencies": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip/node_modules/file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-unzip/node_modules/get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=", + "optional": true, + "dependencies": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-unzip/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/deep-eql": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz", + "integrity": "sha1-71WKyrjeJSBs1xOQbXTlaTDrafI=", + "dev": true, + "dependencies": { + "type-detect": "0.1.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/diff": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-glob": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", + "dependencies": { + "arrify": "^1.0.1", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/dom-serializer/node_modules/domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/download": { + "version": "6.2.5", + "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", + "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", + "optional": true, + "dependencies": { + "caw": "^2.0.0", + "content-disposition": "^0.5.2", + "decompress": "^4.0.0", + "ext-name": "^5.0.0", + "file-type": "5.2.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^7.0.0", + "make-dir": "^1.0.0", + "p-event": "^1.0.0", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "optional": true + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "optional": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "optional": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-abstract/node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eventemitter2": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz", + "integrity": "sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=" + }, + "node_modules/exec-buffer": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz", + "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==", + "optional": true, + "dependencies": { + "execa": "^0.7.0", + "p-finally": "^1.0.0", + "pify": "^3.0.0", + "rimraf": "^2.5.4", + "tempfile": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/exec-buffer/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/exec-buffer/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "optional": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "optional": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "optional": true, + "dependencies": { + "pify": "^2.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/executable/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expect.js": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/expect.js/-/expect.js-0.3.1.tgz", + "integrity": "sha1-sKWaDS7/VDdUTr8M6qYBWEHQm1s=", + "dev": true + }, + "node_modules/ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "optional": true, + "dependencies": { + "mime-db": "^1.28.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "optional": true, + "dependencies": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "dev": true, + "dependencies": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + } + }, + "node_modules/extract-zip/node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/falafel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/falafel/-/falafel-1.2.0.tgz", + "integrity": "sha1-wY0k71CRF0pJfzGM0ksCaiXN2rQ=", + "dev": true, + "dependencies": { + "acorn": "^1.0.3", + "foreach": "^2.0.5", + "isarray": "0.0.1", + "object-keys": "^1.0.6" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/falafel/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "dependencies": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-xml-parser": { + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz", + "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==", + "optional": true, + "dependencies": { + "strnum": "^1.0.4" + }, + "bin": { + "xml2js": "cli.js" + }, + "funding": { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "devOptional": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "dependencies": { + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/file-sync-cmp": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz", + "integrity": "sha1-peeo/7+kk7Q7kju9TKiaU7Y7YSs=" + }, + "node_modules/file-type": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "optional": true, + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fill-range/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "optional": true, + "dependencies": { + "semver-regex": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/findup-sync": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz", + "integrity": "sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=", + "dependencies": { + "glob": "~5.0.0" + }, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/findup-sync/node_modules/glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "dependencies": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dependencies": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/flat": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.1.tgz", + "integrity": "sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==", + "dev": true, + "dependencies": { + "is-buffer": "~2.0.3" + }, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat/node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "engines": { + "node": "*" + } + }, + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "optional": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "optional": true + }, + "node_modules/fs-extra": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz", + "integrity": "sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA=", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0" + } + }, + "node_modules/fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=", + "dependencies": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/generate-function": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", + "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", + "dev": true, + "dependencies": { + "is-property": "^1.0.2" + } + }, + "node_modules/generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "dev": true, + "dependencies": { + "is-property": "^1.0.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-pixels": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/get-pixels/-/get-pixels-3.3.3.tgz", + "integrity": "sha512-5kyGBn90i9tSMUVHTqkgCHsoWoR+/lGbl4yC83Gefyr0HLIhgSWEx/2F/3YgsZ7UpYNuM6pDhDK7zebrUJ5nXg==", + "dependencies": { + "data-uri-to-buffer": "0.0.3", + "jpeg-js": "^0.4.1", + "mime-types": "^2.0.1", + "ndarray": "^1.0.13", + "ndarray-pack": "^1.1.1", + "node-bitmap": "0.0.1", + "omggif": "^1.0.5", + "parse-data-uri": "^0.2.0", + "pngjs": "^3.3.3", + "request": "^2.44.0", + "through": "^2.3.4" + } + }, + "node_modules/get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "optional": true, + "dependencies": { + "npm-conf": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/getobject": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/getobject/-/getobject-1.0.2.tgz", + "integrity": "sha512-2zblDBaFcb3rB4rF77XVnuINOE2h2k/OnqXAiy0IrTxUfV1iFp3la33oAQVY9pCpWU268WFYVt2t71hlMuLsOg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/gif-encoder": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/gif-encoder/-/gif-encoder-0.4.3.tgz", + "integrity": "sha1-iitP6MqJWkjjoLbLs0CgpqNXGJk=", + "dependencies": { + "readable-stream": "~1.1.9" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/gif-encoder/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "node_modules/gif-encoder/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/gif-encoder/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "node_modules/gifsicle": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-4.0.1.tgz", + "integrity": "sha512-A/kiCLfDdV+ERV/UB+2O41mifd+RxH8jlRG8DMxZO84Bma/Fw0htqZ+hY2iaalLRNyUu7tYZQslqUBJxBggxbg==", + "hasInstallScript": true, + "optional": true, + "dependencies": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "execa": "^1.0.0", + "logalot": "^2.0.0" + }, + "bin": { + "gifsicle": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/gifsicle/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "optional": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/gifsicle/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "optional": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/gifsicle/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "optional": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/gifsicle/node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "optional": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/gifsicle/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", + "dependencies": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=" + }, + "node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globby": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "dependencies": { + "array-union": "^1.0.1", + "dir-glob": "2.0.0", + "fast-glob": "^2.0.2", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "optional": true, + "dependencies": { + "decompress-response": "^3.2.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-plain-obj": "^1.1.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "p-cancelable": "^0.3.0", + "p-timeout": "^1.1.1", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "url-parse-lax": "^1.0.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", + "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==" + }, + "node_modules/graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" + }, + "node_modules/growl": { + "version": "1.10.5", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", + "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", + "dev": true, + "engines": { + "node": ">=4.x" + } + }, + "node_modules/grunt": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.4.1.tgz", + "integrity": "sha512-ZXIYXTsAVrA7sM+jZxjQdrBOAg7DyMUplOMhTaspMRExei+fD0BTwdWXnn0W5SXqhb/Q/nlkzXclSi3IH55PIA==", + "dependencies": { + "dateformat": "~3.0.3", + "eventemitter2": "~0.4.13", + "exit": "~0.1.2", + "findup-sync": "~0.3.0", + "glob": "~7.1.6", + "grunt-cli": "~1.4.2", + "grunt-known-options": "~2.0.0", + "grunt-legacy-log": "~3.0.0", + "grunt-legacy-util": "~2.0.1", + "iconv-lite": "~0.4.13", + "js-yaml": "~3.14.0", + "minimatch": "~3.0.4", + "mkdirp": "~1.0.4", + "nopt": "~3.0.6", + "rimraf": "~3.0.2" + }, + "bin": { + "grunt": "bin/grunt" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/grunt-cli": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz", + "integrity": "sha512-9Dtx/AhVeB4LYzsViCjUQkd0Kw0McN2gYpdmGYKtE2a5Yt7v1Q+HYZVWhqXc/kGnxlMtqKDxSwotiGeFmkrCoQ==", + "dependencies": { + "grunt-known-options": "~2.0.0", + "interpret": "~1.1.0", + "liftup": "~3.0.1", + "nopt": "~4.0.1", + "v8flags": "~3.2.0" + }, + "bin": { + "grunt": "bin/grunt" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/grunt-cli/node_modules/nopt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", + "dependencies": { + "abbrev": "1", + "osenv": "^0.1.4" + }, + "bin": { + "nopt": "bin/nopt.js" + } + }, + "node_modules/grunt-contrib-clean": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-2.0.0.tgz", + "integrity": "sha512-g5ZD3ORk6gMa5ugZosLDQl3dZO7cI3R14U75hTM+dVLVxdMNJCPVmwf9OUt4v4eWgpKKWWoVK9DZc1amJp4nQw==", + "dependencies": { + "async": "^2.6.1", + "rimraf": "^2.6.2" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "grunt": ">=0.4.5" + } + }, + "node_modules/grunt-contrib-clean/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/grunt-contrib-concat": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz", + "integrity": "sha1-lTxu/f39LBB6uchQd/LUsk0xzUk=", + "dependencies": { + "chalk": "^0.5.1", + "source-map": "^0.3.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "grunt": ">=0.4.0" + } + }, + "node_modules/grunt-contrib-copy": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-0.8.2.tgz", + "integrity": "sha1-3zHJD/zECbyfr+ROwN0eQlmRb+o=", + "dependencies": { + "chalk": "^1.1.1", + "file-sync-cmp": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "grunt": ">=0.4.0" + } + }, + "node_modules/grunt-contrib-copy/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-copy/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-copy/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-copy/node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-copy/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-copy/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/grunt-contrib-cssmin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-3.0.0.tgz", + "integrity": "sha512-eXpooYmVGKMs/xV7DzTLgJFPVOfMuawPD3x0JwhlH0mumq2NtH3xsxaHxp1Y3NKxp0j0tRhFS6kSBRsz6TuTGg==", + "dependencies": { + "chalk": "^2.4.1", + "clean-css": "~4.2.1", + "maxmin": "^2.1.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/grunt-contrib-cssmin/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-contrib-cssmin/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-contrib-cssmin/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-contrib-htmlmin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-htmlmin/-/grunt-contrib-htmlmin-2.4.0.tgz", + "integrity": "sha1-afSYGRmeKsiRUrv4r6XtMhykj5k=", + "dependencies": { + "chalk": "^1.0.0", + "html-minifier": "~3.5.0", + "pretty-bytes": "^4.0.2" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/grunt-contrib-htmlmin/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-htmlmin/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-htmlmin/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-htmlmin/node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-htmlmin/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-htmlmin/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/grunt-contrib-imagemin": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-imagemin/-/grunt-contrib-imagemin-3.1.0.tgz", + "integrity": "sha512-c0duAb018eowVVfqNMN0S5Esx8mRZ1OP/hkEoKnJkOCaD9/DywKGvLuhschF+DByPSs4k1u1y38w9Bt+ihJG8A==", + "dependencies": { + "chalk": "^2.4.1", + "imagemin": "^6.0.0", + "p-map": "^1.2.0", + "plur": "^3.0.1", + "pretty-bytes": "^5.1.0" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "imagemin-gifsicle": "^6.0.1", + "imagemin-jpegtran": "^6.0.0", + "imagemin-optipng": "^6.0.0", + "imagemin-svgo": "^7.0.0" + } + }, + "node_modules/grunt-contrib-imagemin/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-contrib-imagemin/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-contrib-imagemin/node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/grunt-contrib-imagemin/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-contrib-less": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-2.1.0.tgz", + "integrity": "sha512-+GNKFKpZfiopgUd5cDYNuzsVHZ7WFHM7MOUPKtmMDhfKQ4ZSFuVpNP5PoTFs669TARE6Rvgtv1izILKCpuhFZw==", + "dependencies": { + "async": "^3.2.0", + "chalk": "^4.1.0", + "less": "^3.0.4", + "lodash": "^4.17.20" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/grunt-contrib-less/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/grunt-contrib-less/node_modules/async": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" + }, + "node_modules/grunt-contrib-less/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/grunt-contrib-less/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/grunt-contrib-less/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/grunt-contrib-less/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/grunt-contrib-less/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/grunt-contrib-requirejs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-requirejs/-/grunt-contrib-requirejs-1.0.0.tgz", + "integrity": "sha1-7BZwyvwycTkC7lNWlFRxWy48utU=", + "dependencies": { + "requirejs": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-contrib-uglify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-4.0.1.tgz", + "integrity": "sha512-dwf8/+4uW1+7pH72WButOEnzErPGmtUvc8p08B0eQS/6ON0WdeQu0+WFeafaPTbbY1GqtS25lsHWaDeiTQNWPg==", + "dependencies": { + "chalk": "^2.4.1", + "maxmin": "^2.1.0", + "uglify-js": "^3.5.0", + "uri-path": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/grunt-contrib-uglify/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-contrib-uglify/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-contrib-uglify/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-exec": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/grunt-exec/-/grunt-exec-3.0.0.tgz", + "integrity": "sha512-cgAlreXf3muSYS5LzW0Cc4xHK03BjFOYk0MqCQ/MZ3k1Xz2GU7D+IAJg4UKicxpO+XdONJdx/NJ6kpy2wI+uHg==", + "engines": { + "node": ">=0.8.0" + }, + "peerDependencies": { + "grunt": ">=0.4" + } + }, + "node_modules/grunt-inline": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/grunt-inline/-/grunt-inline-0.3.4.tgz", + "integrity": "sha1-Qc7dT/EV1hKXx2vAMqgUyPy3j6c=", + "dependencies": { + "clean-css": "1.1.7", + "datauri": "~0.2.0", + "uglify-js": "2.4.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/grunt-inline/node_modules/async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" + }, + "node_modules/grunt-inline/node_modules/clean-css": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-1.1.7.tgz", + "integrity": "sha1-YB75z3ZCuYLLM+/JSIpkRMmGaG4=", + "dependencies": { + "commander": "2.0.x" + }, + "bin": { + "cleancss": "bin/cleancss" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/grunt-inline/node_modules/commander": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.0.0.tgz", + "integrity": "sha1-0bhvkB+LZL2UG96tr5JFMDk76Sg=", + "engines": { + "node": ">= 0.6.x" + } + }, + "node_modules/grunt-inline/node_modules/source-map": { + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", + "dependencies": { + "amdefine": ">=0.0.4" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/grunt-inline/node_modules/uglify-js": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.4.1.tgz", + "integrity": "sha1-V7l6r4Fg5fohGBJ+Bwgr86XCtuU=", + "dependencies": { + "async": "~0.2.6", + "optimist": "~0.3.5", + "source-map": "~0.1.7", + "uglify-to-browserify": "~1.0.0" + }, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/grunt-json-minify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/grunt-json-minify/-/grunt-json-minify-1.1.0.tgz", + "integrity": "sha1-oguaMBbR6P7Qx5Vgx3uUcB9k9vs=", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/grunt-known-options": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-2.0.0.tgz", + "integrity": "sha512-GD7cTz0I4SAede1/+pAbmJRG44zFLPipVtdL9o3vqx9IEyb7b4/Y3s7r6ofI3CchR5GvYJ+8buCSioDv5dQLiA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-legacy-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-3.0.0.tgz", + "integrity": "sha512-GHZQzZmhyq0u3hr7aHW4qUH0xDzwp2YXldLPZTCjlOeGscAOWWPftZG3XioW8MasGp+OBRIu39LFx14SLjXRcA==", + "dependencies": { + "colors": "~1.1.2", + "grunt-legacy-log-utils": "~2.1.0", + "hooker": "~0.2.3", + "lodash": "~4.17.19" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/grunt-legacy-log-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.1.0.tgz", + "integrity": "sha512-lwquaPXJtKQk0rUM1IQAop5noEpwFqOXasVoedLeNzaibf/OPWjKYvvdqnEHNmU+0T0CaReAXIbGo747ZD+Aaw==", + "dependencies": { + "chalk": "~4.1.0", + "lodash": "~4.17.19" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/grunt-legacy-log-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/grunt-legacy-log-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/grunt-legacy-log-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/grunt-legacy-log-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/grunt-legacy-log-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/grunt-legacy-log-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/grunt-legacy-util": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.1.tgz", + "integrity": "sha512-2bQiD4fzXqX8rhNdXkAywCadeqiPiay0oQny77wA2F3WF4grPJXCvAcyoWUJV+po/b15glGkxuSiQCK299UC2w==", + "dependencies": { + "async": "~3.2.0", + "exit": "~0.1.2", + "getobject": "~1.0.0", + "hooker": "~0.2.3", + "lodash": "~4.17.21", + "underscore.string": "~3.3.5", + "which": "~2.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/grunt-legacy-util/node_modules/async": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" + }, + "node_modules/grunt-lib-phantomjs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/grunt-lib-phantomjs/-/grunt-lib-phantomjs-1.1.0.tgz", + "integrity": "sha1-np7c3Z/S3UDgwYHJQ3HVcqpe6tI=", + "dev": true, + "dependencies": { + "eventemitter2": "^0.4.9", + "phantomjs-prebuilt": "^2.1.3", + "rimraf": "^2.5.2", + "semver": "^5.1.0", + "temporary": "^0.0.8" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/grunt-lib-phantomjs/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/grunt-mocha": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/grunt-mocha/-/grunt-mocha-1.2.0.tgz", + "integrity": "sha512-/3jAWe/ak95JN5r5LywFKrmy1paReq2RGvdGBKKgKuxcS8gUt4eEKnXZ/wimqBCxafUBCgXyHYBVLtSjfw5D1w==", + "dev": true, + "dependencies": { + "grunt-lib-phantomjs": "^1.1.0", + "lodash": "^4.17.11", + "mocha": "^5.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/grunt-mocha/node_modules/commander": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", + "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==", + "dev": true + }, + "node_modules/grunt-mocha/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/grunt-mocha/node_modules/glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/grunt-mocha/node_modules/he": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", + "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/grunt-mocha/node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/grunt-mocha/node_modules/minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "node_modules/grunt-mocha/node_modules/mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", + "dev": true, + "dependencies": { + "minimist": "0.0.8" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/grunt-mocha/node_modules/mocha": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz", + "integrity": "sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==", + "dev": true, + "dependencies": { + "browser-stdout": "1.3.1", + "commander": "2.15.1", + "debug": "3.1.0", + "diff": "3.5.0", + "escape-string-regexp": "1.0.5", + "glob": "7.1.2", + "growl": "1.10.5", + "he": "1.1.1", + "minimatch": "3.0.4", + "mkdirp": "0.5.1", + "supports-color": "5.4.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/grunt-mocha/node_modules/supports-color": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", + "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-spritesmith": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/grunt-spritesmith/-/grunt-spritesmith-6.9.0.tgz", + "integrity": "sha512-u6ZQwiivimm/sz9HalrFiniAZcesIq8eTdqqv2UinZ+eng0Ah3swFK6BvWFFeapzUXYCMHUKBc7a8liGQtn4wg==", + "dependencies": { + "async": "~1.5.0", + "spritesheet-templates": "^10.3.0", + "spritesmith": "^3.4.0", + "underscore": "~1.13.1", + "url2": "1.0.0" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/grunt-spritesmith/node_modules/async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" + }, + "node_modules/grunt-svgmin": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/grunt-svgmin/-/grunt-svgmin-6.0.1.tgz", + "integrity": "sha512-NmVF57+Un8oiq8ZVJQJEkomEeGMcq2Sd6OX/0k2tpUc5Y/+kXwgg6CDW9RA0Yr9jXOcfFE46CNKg0hBxp2SFiQ==", + "dependencies": { + "chalk": "^2.4.2", + "log-symbols": "^2.2.0", + "pretty-bytes": "^5.1.0", + "svgo": "^1.2.0" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "grunt": ">=1" + } + }, + "node_modules/grunt-svgmin/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-svgmin/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-svgmin/node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/grunt-svgmin/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/grunt-text-replace": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/grunt-text-replace/-/grunt-text-replace-0.3.11.tgz", + "integrity": "sha1-seEPx7E+vd+sDSEove5f+TVCD64=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/grunt/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gzip-size": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz", + "integrity": "sha1-VGGI6b3DN/Zzdy+BZgRks4nc5SA=", + "dependencies": { + "duplexer": "^0.1.1" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/handlebars-layouts": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/handlebars-layouts/-/handlebars-layouts-3.1.4.tgz", + "integrity": "sha1-JrO+uTG0uHffv35v6vQFjuYiiwI=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/handlebars/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-ansi": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz", + "integrity": "sha1-hPJlqujA5qiKEtcCKJS3VoiUxi4=", + "dependencies": { + "ansi-regex": "^0.2.0" + }, + "bin": { + "has-ansi": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "optional": true, + "dependencies": { + "has-symbol-support-x": "^1.4.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hasha": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz", + "integrity": "sha1-eNfL/B5tZjA/55g3NlmEUXsvbuE=", + "dev": true, + "dependencies": { + "is-stream": "^1.0.1", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", + "deprecated": "This module moved to @hapi/hawk. Please make sure to switch over as this distribution is no longer supported and may contain bugs and critical security issues.", + "dev": true, + "dependencies": { + "boom": "2.x.x", + "cryptiles": "2.x.x", + "hoek": "2.x.x", + "sntp": "1.x.x" + }, + "engines": { + "node": ">=0.10.32" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=", + "deprecated": "This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).", + "dev": true, + "engines": { + "node": ">=0.10.40" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/homunculus": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/homunculus/-/homunculus-0.1.7.tgz", + "integrity": "sha1-s24ezMWday4mB5I+apHTgesAOjk=", + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/hooker": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz", + "integrity": "sha1-uDT3I8xKJCqmWWNFnfbZhMXT2Vk=", + "engines": { + "node": "*" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "optional": true + }, + "node_modules/html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", + "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "dependencies": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "bin": { + "html-minifier": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/html-minifier/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/html-minifier/node_modules/uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", + "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "dependencies": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/html-minifier/node_modules/uglify-js/node_modules/commander": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==" + }, + "node_modules/http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "optional": true + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/iconsprite": { + "resolved": "sprites", + "link": true + }, + "node_modules/iconv-lite": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.5.2.tgz", + "integrity": "sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" + }, + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "optional": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/imagemin": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-6.1.0.tgz", + "integrity": "sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==", + "dependencies": { + "file-type": "^10.7.0", + "globby": "^8.0.1", + "make-dir": "^1.0.0", + "p-pipe": "^1.1.0", + "pify": "^4.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imagemin-gifsicle": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-6.0.1.tgz", + "integrity": "sha512-kuu47c6iKDQ6R9J10xCwL0lgs0+sMz3LRHqRcJ2CRBWdcNmo3T5hUaM8hSZfksptZXJLGKk8heSAvwtSdB1Fng==", + "optional": true, + "dependencies": { + "exec-buffer": "^3.0.0", + "gifsicle": "^4.0.0", + "is-gif": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imagemin-jpegtran": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/imagemin-jpegtran/-/imagemin-jpegtran-6.0.0.tgz", + "integrity": "sha512-Ih+NgThzqYfEWv9t58EItncaaXIHR0u9RuhKa8CtVBlMBvY0dCIxgQJQCfwImA4AV1PMfmUKlkyIHJjb7V4z1g==", + "optional": true, + "dependencies": { + "exec-buffer": "^3.0.0", + "is-jpg": "^2.0.0", + "jpegtran-bin": "^4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imagemin-optipng": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-6.0.0.tgz", + "integrity": "sha512-FoD2sMXvmoNm/zKPOWdhKpWdFdF9qiJmKC17MxZJPH42VMAp17/QENI/lIuP7LCUnLVAloO3AUoTSNzfhpyd8A==", + "optional": true, + "dependencies": { + "exec-buffer": "^3.0.0", + "is-png": "^1.0.0", + "optipng-bin": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imagemin-svgo": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-7.1.0.tgz", + "integrity": "sha512-0JlIZNWP0Luasn1HT82uB9nU9aa+vUj6kpT+MjPW11LbprXC+iC4HDwn1r4Q2/91qj4iy9tRZNsFySMlEpLdpg==", + "optional": true, + "dependencies": { + "is-svg": "^4.2.1", + "svgo": "^1.3.2" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sindresorhus/imagemin-svgo?sponsor=1" + } + }, + "node_modules/import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "optional": true, + "dependencies": { + "repeating": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", + "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=" + }, + "node_modules/into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=", + "optional": true, + "dependencies": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/iota-array": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", + "integrity": "sha1-ge9X/l0FgUzVjCSDYyqZwwoOgIc=" + }, + "node_modules/irregular-plurals": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-2.0.0.tgz", + "integrity": "sha512-Y75zBYLkh0lJ9qxeHlMjQ7bSbyiSqNW/UOPWDmzC7cXskL1hekSITh1Oc6JV0XCWWZ9DE8VYSB71xocLk3gmGw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dependencies": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "optional": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "optional": true, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-gif": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz", + "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==", + "optional": true, + "dependencies": { + "file-type": "^10.4.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-jpg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz", + "integrity": "sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc=", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-my-ip-valid": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.1.tgz", + "integrity": "sha512-jxc8cBcOWbNK2i2aTkCZP6i7wkHF1bqKFrwEHuN5Jtg5BSaZHUZQ/JTOJwoV41YvHnOaRyWWh72T/KvfNz9DJg==", + "dev": true + }, + "node_modules/is-my-json-valid": { + "version": "2.20.6", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.6.tgz", + "integrity": "sha512-1JQwulVNjx8UqkPE/bqDaxtH4PXCe/2VRh/y3p99heOV87HG4Id5/VfDswd+YiAfHcRTfDlWgISycnHuhZq1aw==", + "dev": true, + "dependencies": { + "generate-function": "^2.0.0", + "generate-object-property": "^1.1.0", + "is-my-ip-valid": "^1.0.0", + "jsonpointer": "^5.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=", + "optional": true + }, + "node_modules/is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "optional": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-png": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-png/-/is-png-1.1.0.tgz", + "integrity": "sha1-1XSxK/J1wDUEVVcLDltXqwYgd84=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", + "dev": true + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dependencies": { + "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "devOptional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-svg": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.2.tgz", + "integrity": "sha512-mM90duy00JGMyjqIVHu9gNTjywdZV+8qNasX8cm/EEYZ53PHDgajvbBwNVvty5dwSAxLUD3p3bdo+7sR/UMrpw==", + "optional": true, + "dependencies": { + "fast-xml-parser": "^3.19.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "node_modules/is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dependencies": { + "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "node_modules/is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "node_modules/isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "optional": true, + "dependencies": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/jade": { + "version": "0.26.3", + "resolved": "https://registry.npmjs.org/jade/-/jade-0.26.3.tgz", + "integrity": "sha1-jxDXl32NefL2/4YqgbBRPMslaGw=", + "deprecated": "Jade has been renamed to pug, please install the latest version of pug instead of jade", + "dev": true, + "dependencies": { + "commander": "0.6.1", + "mkdirp": "0.3.0" + }, + "bin": { + "jade": "bin/jade" + } + }, + "node_modules/jade/node_modules/commander": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz", + "integrity": "sha1-+mihT2qUXVTbvlDYzbMyDp47GgY=", + "dev": true, + "engines": { + "node": ">= 0.4.x" + } + }, + "node_modules/jade/node_modules/mkdirp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz", + "integrity": "sha1-G79asbqCevI1dRQ0kEJkVfSB/h4=", + "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/jpeg-js": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.3.tgz", + "integrity": "sha512-ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q==" + }, + "node_modules/jpegtran-bin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-4.0.0.tgz", + "integrity": "sha512-2cRl1ism+wJUoYAYFt6O/rLBfpXNWG2dUWbgcEkTt5WGMnqI46eEro8T4C5zGROxKRqyKpCBSdHPvt5UYCtxaQ==", + "hasInstallScript": true, + "optional": true, + "dependencies": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.0.0" + }, + "bin": { + "jpegtran": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "optional": true + }, + "node_modules/json-content-demux": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/json-content-demux/-/json-content-demux-0.1.4.tgz", + "integrity": "sha512-3GqPH2O0+8qBMTa1YTuL+7L24YJYNDjdXfa798y9S6GetScZAY2iAOGCdFkEPZJZdafPKv8ZUnp18VCCPTs0Nw==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "node_modules/jsonfile": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", + "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz", + "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/kew": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz", + "integrity": "sha1-edk9LTM2PW/dKXCzNdkUGtWR15s=", + "dev": true + }, + "node_modules/keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "optional": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klaw": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", + "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.9" + } + }, + "node_modules/layout": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/layout/-/layout-2.2.0.tgz", + "integrity": "sha1-MeRL/BjdEBmz/7II5AKku/4uavQ=", + "dependencies": { + "bin-pack": "~1.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dependencies": { + "readable-stream": "^2.0.5" + }, + "engines": { + "node": ">= 0.6.3" + } + }, + "node_modules/lcov-parse": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.10.tgz", + "integrity": "sha1-GwuP+ayceIklBYK3C3ExXZ2m2aM=", + "dev": true + }, + "node_modules/lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=", + "dependencies": { + "flush-write-stream": "^1.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/less": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/less/-/less-3.13.1.tgz", + "integrity": "sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==", + "dependencies": { + "copy-anything": "^2.0.1", + "tslib": "^1.10.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "native-request": "^1.0.5", + "source-map": "~0.6.0" + } + }, + "node_modules/less-plugin-clean-css": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/less-plugin-clean-css/-/less-plugin-clean-css-1.5.0.tgz", + "integrity": "sha1-GB9dksGeUY87lsdFf/IWL4XkAoY=", + "dependencies": { + "clean-css": "^3.0.1" + }, + "engines": { + "node": ">=0.4.2" + } + }, + "node_modules/less-plugin-clean-css/node_modules/clean-css": { + "version": "3.4.28", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz", + "integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=", + "dependencies": { + "commander": "2.8.x", + "source-map": "0.4.x" + }, + "bin": { + "cleancss": "bin/cleancss" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/less-plugin-clean-css/node_modules/commander": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", + "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", + "dependencies": { + "graceful-readlink": ">= 1.0.0" + }, + "engines": { + "node": ">= 0.6.x" + } + }, + "node_modules/less-plugin-clean-css/node_modules/source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "dependencies": { + "amdefine": ">=0.0.4" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/less/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "optional": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/less/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/liftup": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/liftup/-/liftup-3.0.1.tgz", + "integrity": "sha512-yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw==", + "dependencies": { + "extend": "^3.0.2", + "findup-sync": "^4.0.0", + "fined": "^1.2.0", + "flagged-respawn": "^1.0.1", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.1", + "rechoir": "^0.7.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/liftup/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/liftup/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/liftup/node_modules/findup-sync": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz", + "integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==", + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^4.0.2", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/liftup/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/liftup/node_modules/micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/liftup/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/log-driver": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/log-driver/-/log-driver-1.2.5.tgz", + "integrity": "sha1-euTsJXMC/XkNVXyxDJcQDYV7AFY=", + "dev": true, + "engines": { + "node": ">=0.8.6" + } + }, + "node_modules/log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "dependencies": { + "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/logalot": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz", + "integrity": "sha1-X46MkNME7fElMJUaVVSruMXj9VI=", + "optional": true, + "dependencies": { + "figures": "^1.3.5", + "squeak": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "optional": true, + "dependencies": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" + }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lpad-align": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz", + "integrity": "sha1-IfYArBwwlcPG5JfuZyce4ISB/p4=", + "optional": true, + "dependencies": { + "get-stdin": "^4.0.1", + "indent-string": "^2.1.0", + "longest": "^1.0.0", + "meow": "^3.3.0" + }, + "bin": { + "lpad-align": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "optional": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/maxmin": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-2.1.0.tgz", + "integrity": "sha1-TTsiCQPZXu5+t6x/qGTnLcCaMWY=", + "dependencies": { + "chalk": "^1.0.0", + "figures": "^1.0.1", + "gzip-size": "^3.0.0", + "pretty-bytes": "^3.0.0" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/maxmin/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/maxmin/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/maxmin/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/maxmin/node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/maxmin/node_modules/pretty-bytes": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-3.0.1.tgz", + "integrity": "sha1-J9AAjXeAY6C0gRuzXHnxvV1fvM8=", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/maxmin/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/maxmin/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "node_modules/meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "optional": true, + "dependencies": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "optional": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimer": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/mimer/-/mimer-2.0.2.tgz", + "integrity": "sha512-izxvjsB7Ur5HrTbPu6VKTrzxSMBFBqyZQc6dWlZNQ4/wAvf886fD4lrjtFd8IQ8/WmZKdxKjUtqFFNaj3hQ52g==", + "bin": { + "mimer": "bin/mimer" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.2.3.tgz", + "integrity": "sha512-0R/3FvjIGH3eEuG17ccFPk117XL2rWxatr81a57D+r/x2uTYZRbdZ4oVidEUMh2W2TJDa7MdAb12Lm2/qrKajg==", + "dev": true, + "dependencies": { + "ansi-colors": "3.2.3", + "browser-stdout": "1.3.1", + "debug": "3.2.6", + "diff": "3.5.0", + "escape-string-regexp": "1.0.5", + "find-up": "3.0.0", + "glob": "7.1.3", + "growl": "1.10.5", + "he": "1.2.0", + "js-yaml": "3.13.1", + "log-symbols": "2.2.0", + "minimatch": "3.0.4", + "mkdirp": "0.5.4", + "ms": "2.1.1", + "node-environment-flags": "1.0.5", + "object.assign": "4.1.0", + "strip-json-comments": "2.0.1", + "supports-color": "6.0.0", + "which": "1.3.1", + "wide-align": "1.1.3", + "yargs": "13.3.2", + "yargs-parser": "13.1.2", + "yargs-unparser": "1.6.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/mocha-lcov-reporter": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/mocha-lcov-reporter/-/mocha-lcov-reporter-0.0.1.tgz", + "integrity": "sha1-AmcEkdtX7myx/nOS6BNwD24zaiE=", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/mocha/node_modules/debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/mocha/node_modules/glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/mocha/node_modules/js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/mocha/node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/mocha/node_modules/mkdirp": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz", + "integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==", + "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mocha/node_modules/ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + }, + "node_modules/mocha/node_modules/supports-color": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", + "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/mocha/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/native-request": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.1.0.tgz", + "integrity": "sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==", + "optional": true + }, + "node_modules/ndarray": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/ndarray/-/ndarray-1.0.19.tgz", + "integrity": "sha512-B4JHA4vdyZU30ELBw3g7/p9bZupyew5a7tX1Y/gGeF2hafrPaQZhgrGQfsvgfYbgdFZjYwuEcnaobeM/WMW+HQ==", + "dependencies": { + "iota-array": "^1.0.0", + "is-buffer": "^1.0.2" + } + }, + "node_modules/ndarray-ops": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ndarray-ops/-/ndarray-ops-1.2.2.tgz", + "integrity": "sha1-WeiNLDKn7ryxvGkPrhQVeVV6YU4=", + "dependencies": { + "cwise-compiler": "^1.0.0" + } + }, + "node_modules/ndarray-pack": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz", + "integrity": "sha1-jK6+qqJNXs9w/4YCBjeXfajuWFo=", + "dependencies": { + "cwise-compiler": "^1.1.2", + "ndarray": "^1.0.13" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "optional": true + }, + "node_modules/no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dependencies": { + "lower-case": "^1.1.1" + } + }, + "node_modules/node-bitmap": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz", + "integrity": "sha1-GA6scAPgxwdhjvMTaPYvhLKmkJE=", + "engines": { + "node": ">=v0.6.5" + } + }, + "node_modules/node-environment-flags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", + "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", + "dev": true, + "dependencies": { + "object.getownpropertydescriptors": "^2.0.3", + "semver": "^5.7.0" + } + }, + "node_modules/nopt": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", + "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "optional": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "optional": true, + "dependencies": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/normalize-url/node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/normalize-url/node_modules/sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", + "optional": true, + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "dependencies": { + "once": "^1.3.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "optional": true, + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-conf/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "optional": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "engines": { + "node": "*" + } + }, + "node_modules/obj-extend": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/obj-extend/-/obj-extend-0.1.0.tgz", + "integrity": "sha1-u0SKR3X7les0p4H5CLusLfI9u1s=", + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", + "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", + "dependencies": { + "define-properties": "^1.1.2", + "function-bind": "^1.1.1", + "has-symbols": "^1.0.0", + "object-keys": "^1.0.11" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", + "dependencies": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", + "dependencies": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optimist": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz", + "integrity": "sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=", + "dependencies": { + "wordwrap": "~0.0.2" + } + }, + "node_modules/optimist/node_modules/wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/optipng-bin": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-5.1.0.tgz", + "integrity": "sha512-9baoqZTNNmXQjq/PQTWEXbVV3AMO2sI/GaaqZJZ8SExfAzjijeAP7FEeT+TtyumSw7gr0PZtSUYB/Ke7iHQVKA==", + "hasInstallScript": true, + "optional": true, + "dependencies": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.0.0" + }, + "bin": { + "optipng": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=", + "dependencies": { + "readable-stream": "^2.0.1" + } + }, + "node_modules/os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "optional": true, + "dependencies": { + "arch": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "dependencies": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "node_modules/p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-event": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", + "integrity": "sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU=", + "optional": true, + "dependencies": { + "p-timeout": "^1.1.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-map": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz", + "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-map-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", + "integrity": "sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=", + "optional": true, + "dependencies": { + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-pipe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-1.2.0.tgz", + "integrity": "sha1-SxoROZoRUgpneQ7loMHViB1r7+k=", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=", + "optional": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/package": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package/-/package-1.0.1.tgz", + "integrity": "sha1-0lofmeJQbcsn1nBLg9yooxLk7cw=", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/parse-data-uri": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/parse-data-uri/-/parse-data-uri-0.2.0.tgz", + "integrity": "sha1-vwTYUd1ch7CrI45dAazklLYEtMk=", + "dependencies": { + "data-uri-to-buffer": "0.0.3" + } + }, + "node_modules/parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", + "dependencies": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "optional": true, + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", + "dependencies": { + "path-root-regex": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-type/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "engines": { + "node": ">=4" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "devOptional": true + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "node_modules/phantomjs-prebuilt": { + "version": "2.1.16", + "resolved": "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz", + "integrity": "sha1-79ISpKOWbTZHaE6ouniFSb4q7+8=", + "deprecated": "this package is now deprecated", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "es6-promise": "^4.0.3", + "extract-zip": "^1.6.5", + "fs-extra": "^1.0.0", + "hasha": "^2.2.0", + "kew": "^0.7.0", + "progress": "^1.1.8", + "request": "^2.81.0", + "request-progress": "^2.0.1", + "which": "^1.2.10" + }, + "bin": { + "phantomjs": "bin/phantomjs" + } + }, + "node_modules/phantomjs-prebuilt/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "devOptional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "devOptional": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pixelsmith": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/pixelsmith/-/pixelsmith-2.5.0.tgz", + "integrity": "sha512-tKl0jsX4sIEoWwOWHIpOdhjqjsVkIJVyWC4uX9CDnF5dGCsZPzu3gnLUTIUgkAoMPaXNwhXirkReWUqIWGppuA==", + "dependencies": { + "async": "~0.9.0", + "concat-stream": "~1.5.1", + "get-pixels": "~3.3.0", + "mime-types": "~2.1.7", + "ndarray": "~1.0.15", + "obj-extend": "~0.1.0", + "save-pixels": "~2.3.0", + "vinyl-file": "~1.3.0" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/pixelsmith/node_modules/async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" + }, + "node_modules/pixelsmith/node_modules/concat-stream": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", + "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" + } + }, + "node_modules/pixelsmith/node_modules/process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "node_modules/pixelsmith/node_modules/readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/pixelsmith/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "node_modules/plur": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/plur/-/plur-3.1.1.tgz", + "integrity": "sha512-t1Ax8KUvV3FFII8ltczPn2tJdjqbd1sIzu6t4JL7nQ3EyeL/lTrj5PWKb06ic5/6XYDr65rQ4uzQEGN70/6X5w==", + "dependencies": { + "irregular-plurals": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/pngjs-nozlib": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pngjs-nozlib/-/pngjs-nozlib-1.0.0.tgz", + "integrity": "sha1-nmTWAs/pzOTZ1Zl9BodCmnPwt9c=", + "engines": { + "iojs": ">= 1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pretty-bytes": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-4.0.2.tgz", + "integrity": "sha1-sr+C5zUNZcbDOqlaqlpPYyf2HNk=", + "engines": { + "node": ">=4" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/progress": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", + "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "optional": true + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "optional": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "optional": true + }, + "node_modules/psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "optional": true, + "dependencies": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "optional": true, + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "optional": true, + "dependencies": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "optional": true, + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "optional": true, + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg/node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dependencies": { + "resolve": "^1.9.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "optional": true, + "dependencies": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dependencies": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=", + "dependencies": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "optional": true, + "dependencies": { + "is-finite": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request-progress": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz", + "integrity": "sha1-XTa7V5YcZzqlt4jbyBQf3yO0Tgg=", + "dev": true, + "dependencies": { + "throttleit": "^1.0.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/requirejs": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz", + "integrity": "sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==", + "bin": { + "r_js": "bin/r.js", + "r.js": "bin/r.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/resolve": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "dependencies": { + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=", + "dependencies": { + "value-or-function": "^3.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "deprecated": "https://github.com/lydell/resolve-url#deprecated" + }, + "node_modules/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "optional": true, + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/save-pixels": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/save-pixels/-/save-pixels-2.3.6.tgz", + "integrity": "sha512-/ayfEWBxt0tFpf5lxSU1S0+/TBn7EiaTZD+6GL+mwizHm3BKCBysnzT6Js7BusDUVcNVLkeJJKLZcBgdpM2leQ==", + "dependencies": { + "contentstream": "^1.0.0", + "gif-encoder": "~0.4.1", + "jpeg-js": "^0.4.3", + "ndarray": "^1.0.18", + "ndarray-ops": "^1.2.2", + "pngjs-nozlib": "^1.0.0", + "through": "^2.3.4" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "optional": true, + "dependencies": { + "commander": "^2.8.1" + }, + "bin": { + "seek-bunzip": "bin/seek-bunzip", + "seek-table": "bin/seek-bzip-table" + } + }, + "node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "devOptional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g=", + "optional": true, + "dependencies": { + "semver": "^5.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", + "dev": true + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "optional": true + }, + "node_modules/slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "deprecated": "This module moved to @hapi/sntp. Please make sure to switch over as this distribution is no longer supported and may contain bugs and critical security issues.", + "dev": true, + "dependencies": { + "hoek": "2.x.x" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "optional": true, + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=", + "optional": true, + "dependencies": { + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz", + "integrity": "sha1-hYb7mloAXltQHiHNGLbyG0V60fk=", + "dependencies": { + "amdefine": ">=0.0.4" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated" + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "optional": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "optional": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "optional": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "optional": true + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "node_modules/spritesheet-templates": { + "version": "10.5.2", + "resolved": "https://registry.npmjs.org/spritesheet-templates/-/spritesheet-templates-10.5.2.tgz", + "integrity": "sha512-dMrLgS5eHCEDWqo1c3mDM5rGdJpBNf1JAJrxTKA4qR54trNTtxqGZlH3ZppS5FHTgjKgOtEmycqE2vGSkCYiVw==", + "dependencies": { + "handlebars": "^4.6.0", + "handlebars-layouts": "^3.1.4", + "json-content-demux": "~0.1.2", + "underscore": "~1.13.1", + "underscore.string": "~3.3.0" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/spritesmith": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/spritesmith/-/spritesmith-3.4.0.tgz", + "integrity": "sha512-epa/Ib2GzkrzOA6ZMKH+YOX4ooBlRz8JwIV5NQDt9FvqXVHTh4dVn/0oA+n5eeu6wem1CCrtZWODlOqvwXXpyA==", + "dependencies": { + "concat-stream": "~1.5.1", + "layout": "~2.2.0", + "pixelsmith": "^2.3.0", + "semver": "~5.0.3", + "through2": "~2.0.0" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/spritesmith/node_modules/concat-stream": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", + "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" + } + }, + "node_modules/spritesmith/node_modules/process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "node_modules/spritesmith/node_modules/readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/spritesmith/node_modules/semver": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz", + "integrity": "sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no=", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/spritesmith/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "node_modules/squeak": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz", + "integrity": "sha1-MwRQN7ZDiLVnZ0uEMiplIQc5FsM=", + "optional": true, + "dependencies": { + "chalk": "^1.0.0", + "console-stream": "^0.1.1", + "lpad-align": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/squeak/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/squeak/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/squeak/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "optional": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/squeak/node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "optional": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/squeak/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "optional": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/squeak/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "optional": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/sshpk": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringstream": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz", + "integrity": "sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==", + "dev": true + }, + "node_modules/strip-ansi": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz", + "integrity": "sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=", + "dependencies": { + "ansi-regex": "^0.2.1" + }, + "bin": { + "strip-ansi": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-bom-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz", + "integrity": "sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4=", + "dependencies": { + "first-chunk-stream": "^1.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "optional": true, + "dependencies": { + "is-natural-number": "^4.0.1" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "optional": true, + "dependencies": { + "get-stdin": "^4.0.1" + }, + "bin": { + "strip-indent": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "optional": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "optional": true + }, + "node_modules/supports-color": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz", + "integrity": "sha1-2S3iaU6z9nMjlz1649i1W0wiGQo=", + "bin": { + "supports-color": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "optional": true, + "dependencies": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=", + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tempfile": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", + "integrity": "sha1-awRGhWqbERTRhW/8vlCczLCXcmU=", + "optional": true, + "dependencies": { + "temp-dir": "^1.0.0", + "uuid": "^3.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/templayed": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/templayed/-/templayed-0.2.3.tgz", + "integrity": "sha1-RwbfYlvGrs2Gt8n2sPtUi5XN92k=" + }, + "node_modules/temporary": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/temporary/-/temporary-0.0.8.tgz", + "integrity": "sha1-oYqYHSi6jKNgJ/s8MFOMPst0CsA=", + "dev": true, + "dependencies": { + "package": ">= 1.0.0 < 1.2.0" + }, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/throttleit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", + "integrity": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=", + "dev": true + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", + "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "dependencies": { + "through2": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "node_modules/timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=", + "dependencies": { + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "optional": true + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=", + "dependencies": { + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", + "optional": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "node_modules/type-detect": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz", + "integrity": "sha1-C6XsKohWQORw6k6FBZcZANrFiCI=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "node_modules/uglify-js": { + "version": "3.15.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.3.tgz", + "integrity": "sha512-6iCVm2omGJbsu3JWac+p6kUiOpg3wFO2f8lIXjfEb8RrmLjzog1wTPMmwKB7swfzzqxj9YM+sGUM++u1qN4qJg==", + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=" + }, + "node_modules/unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "dependencies": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "optional": true, + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "node_modules/unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/underscore": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.2.tgz", + "integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g==" + }, + "node_modules/underscore.string": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.6.tgz", + "integrity": "sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==", + "dependencies": { + "sprintf-js": "^1.1.1", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/underscore.string/node_modules/sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==" + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "node_modules/unique-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", + "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "dependencies": { + "json-stable-stringify-without-jsonify": "^1.0.1", + "through2-filter": "^3.0.0" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=" + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/uri-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/uri-path/-/uri-path-1.0.0.tgz", + "integrity": "sha1-l0fwGDWJM8Md4PzP2C0TjmcmLjI=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "deprecated": "Please see https://github.com/lydell/urix#deprecated" + }, + "node_modules/url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "optional": true, + "dependencies": { + "prepend-http": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=", + "optional": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/url2": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url2/-/url2-1.0.0.tgz", + "integrity": "sha1-taKGYJmqIX49p/T5DJq+7Adxyug=" + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/v8flags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "optional": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/verror/node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "node_modules/vinyl": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", + "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "dependencies": { + "clone": "^1.0.0", + "clone-stats": "^0.0.1", + "replace-ext": "0.0.1" + }, + "engines": { + "node": ">= 0.9" + } + }, + "node_modules/vinyl-file": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/vinyl-file/-/vinyl-file-1.3.0.tgz", + "integrity": "sha1-qgVjTTqGe6kUR77bs0r8sm9E9uc=", + "dependencies": { + "graceful-fs": "^4.1.2", + "strip-bom": "^2.0.0", + "strip-bom-stream": "^1.0.0", + "vinyl": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/vinyl-fs": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dependencies": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-fs/node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/vinyl-fs/node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" + }, + "node_modules/vinyl-fs/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=", + "dependencies": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap/node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/vinyl-sourcemap/node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" + }, + "node_modules/vinyl-sourcemap/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl/node_modules/replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "node_modules/wide-align": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "dev": true, + "dependencies": { + "string-width": "^1.0.2 || 2" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + }, + "node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "optional": true + }, + "node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs-unparser": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", + "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", + "dev": true, + "dependencies": { + "flat": "^4.1.0", + "lodash": "^4.17.15", + "yargs": "^13.3.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "devOptional": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "sprites": { + "version": "0.0.1", + "integrity": "sha1-JN2XDWx749RJy7SeBD2tLML6nOc=", + "dependencies": { + "homunculus": "0.1.7" + }, + "devDependencies": { + "blanket": "^1.1.6", + "coveralls": "^2.10.0", + "expect.js": "^0.3.1", + "mocha": "^1.18.2", + "mocha-lcov-reporter": "0.0.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "sprites/node_modules/commander": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.3.0.tgz", + "integrity": "sha1-/UMOiJgy7DU7ms0d4hfBHLPu+HM=", + "dev": true, + "engines": { + "node": ">= 0.6.x" + } + }, + "sprites/node_modules/debug": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.0.0.tgz", + "integrity": "sha1-ib2d9nMrUSVrxnBTQrugLtEhMe8=", + "dev": true, + "dependencies": { + "ms": "0.6.2" + } + }, + "sprites/node_modules/diff": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/diff/-/diff-1.0.8.tgz", + "integrity": "sha1-NDJ2MI7Jkbe8giZ+1VvBQR+XFmY=", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "sprites/node_modules/escape-string-regexp": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz", + "integrity": "sha1-Tbwv5nTnGUnK8/smlc5/LcHZqNE=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "sprites/node_modules/glob": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-3.2.3.tgz", + "integrity": "sha1-4xPusknHr/qlxHUoaw4RW1mDlGc=", + "dev": true, + "dependencies": { + "graceful-fs": "~2.0.0", + "inherits": "2", + "minimatch": "~0.2.11" + }, + "engines": { + "node": "*" + } + }, + "sprites/node_modules/graceful-fs": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz", + "integrity": "sha1-fNLNsiiko/Nule+mzBQt59GhNtA=", + "deprecated": "please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "sprites/node_modules/growl": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.8.1.tgz", + "integrity": "sha1-Sy3sjZB+k9szZiTc7AGDUC+MlCg=", + "dev": true + }, + "sprites/node_modules/lru-cache": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", + "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", + "dev": true + }, + "sprites/node_modules/minimatch": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", + "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", + "dev": true, + "dependencies": { + "lru-cache": "2", + "sigmund": "~1.0.0" + }, + "engines": { + "node": "*" + } + }, + "sprites/node_modules/minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "sprites/node_modules/mkdirp": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz", + "integrity": "sha1-HXMHam35hs2TROFecfzAWkyavxI=", + "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", + "dev": true, + "dependencies": { + "minimist": "0.0.8" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "sprites/node_modules/mocha": { + "version": "1.21.5", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-1.21.5.tgz", + "integrity": "sha1-fFiwkXTfl25DSiOx6NY5hz/FKek=", + "deprecated": "Mocha v1.x is no longer supported.", + "dev": true, + "dependencies": { + "commander": "2.3.0", + "debug": "2.0.0", + "diff": "1.0.8", + "escape-string-regexp": "1.0.2", + "glob": "3.2.3", + "growl": "1.8.1", + "jade": "0.26.3", + "mkdirp": "0.5.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha" + }, + "engines": { + "node": ">= 0.4.x" + } + }, + "sprites/node_modules/ms": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.6.2.tgz", + "integrity": "sha1-2JwhJMb9wTU9Zai3e/GqxLGTcIw=", + "dev": true + } + }, + "dependencies": { + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + } + }, + "@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==" + }, + "@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "optional": true + }, + "@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "acorn": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz", + "integrity": "sha1-yM4n3grMdtiW0rH6099YjZ6C8BQ=", + "dev": true + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" + }, + "ansi-colors": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", + "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", + "dev": true + }, + "ansi-regex": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz", + "integrity": "sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=" + }, + "ansi-styles": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz", + "integrity": "sha1-6uy/Zs1waIJ2Cy9GkVgrj1XXp94=" + }, + "append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=", + "requires": { + "buffer-equal": "^1.0.0" + } + }, + "arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "optional": true + }, + "archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=", + "optional": true, + "requires": { + "file-type": "^4.2.0" + }, + "dependencies": { + "file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha1-G2AOX8ofvcboDApwxxyNul95BsU=", + "optional": true + } + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + }, + "array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=" + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "optional": true + }, + "array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==" + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + }, + "asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "assertion-error": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.0.tgz", + "integrity": "sha1-x/hUOP3UZrx8oWq5DIFRN5el0js=", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "requires": { + "lodash": "^4.17.14" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "optional": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bin-build": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", + "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", + "optional": true, + "requires": { + "decompress": "^4.0.0", + "download": "^6.2.2", + "execa": "^0.7.0", + "p-map-series": "^1.0.0", + "tempfile": "^2.0.0" + } + }, + "bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "optional": true, + "requires": { + "execa": "^0.7.0", + "executable": "^4.1.0" + } + }, + "bin-pack": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bin-pack/-/bin-pack-1.0.2.tgz", + "integrity": "sha1-wqAU7b8L7XCjKSBi7UZXe5YSBnk=" + }, + "bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "optional": true, + "requires": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "optional": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "optional": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "optional": true, + "requires": { + "pump": "^3.0.0" + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "optional": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "optional": true, + "requires": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + } + }, + "bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "optional": true, + "requires": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "dependencies": { + "download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "optional": true, + "requires": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "optional": true + } + } + }, + "file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "optional": true + }, + "got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "optional": true, + "requires": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "optional": true + } + } + }, + "p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "optional": true + }, + "p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "optional": true, + "requires": { + "p-timeout": "^2.0.1" + } + }, + "p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "optional": true, + "requires": { + "p-finally": "^1.0.0" + } + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "optional": true + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "optional": true, + "requires": { + "prepend-http": "^2.0.0" + } + } + } + }, + "bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "optional": true, + "requires": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "blanket": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/blanket/-/blanket-1.2.3.tgz", + "integrity": "sha1-FRtJh8O9hFUrtfA7kO9fflkx5HM=", + "dev": true, + "requires": { + "acorn": "^1.0.3", + "falafel": "~1.2.0", + "foreach": "^2.0.5", + "isarray": "0.0.1", + "object-keys": "^1.0.6", + "xtend": "~4.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + } + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "dev": true, + "requires": { + "hoek": "2.x.x" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + } + }, + "browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "optional": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "optional": true, + "requires": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "optional": true + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "devOptional": true + }, + "buffer-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", + "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=" + }, + "buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", + "optional": true + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=", + "optional": true, + "requires": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + }, + "dependencies": { + "lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=", + "optional": true + } + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "call-me-maybe": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", + "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=" + }, + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "optional": true + }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "optional": true, + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "optional": true, + "requires": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + } + }, + "chai": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/chai/-/chai-1.9.1.tgz", + "integrity": "sha1-NxG7ZwbhVo80wLNgmL+PGUVcga4=", + "dev": true, + "requires": { + "assertion-error": "1.0.0", + "deep-eql": "0.1.3" + } + }, + "chalk": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz", + "integrity": "sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=", + "requires": { + "ansi-styles": "^1.1.0", + "escape-string-regexp": "^1.0.0", + "has-ansi": "^0.1.0", + "strip-ansi": "^0.3.0", + "supports-color": "^0.2.0" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" + }, + "clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=" + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "optional": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + }, + "cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "requires": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "colors": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", + "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==" + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "optional": true, + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "console-stream": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz", + "integrity": "sha1-oJX+B7IEZZVfL6/Si11yvM2UnUQ=", + "optional": true + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "optional": true, + "requires": { + "safe-buffer": "5.2.1" + } + }, + "contentstream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/contentstream/-/contentstream-1.0.0.tgz", + "integrity": "sha1-C9z6RtowRkqGzo+n7OVlQQ3G+aU=", + "requires": { + "readable-stream": "~1.0.33-1" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "requires": { + "is-what": "^3.14.1" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "coveralls": { + "version": "2.13.3", + "resolved": "https://registry.npmjs.org/coveralls/-/coveralls-2.13.3.tgz", + "integrity": "sha512-iiAmn+l1XqRwNLXhW8Rs5qHZRFMYp9ZIPjEOVRpC/c4so6Y/f4/lFi0FfR5B9cCqgyhkJ5cZmbvcVRfP8MHchw==", + "dev": true, + "requires": { + "js-yaml": "3.6.1", + "lcov-parse": "0.0.10", + "log-driver": "1.2.5", + "minimist": "1.2.0", + "request": "2.79.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=", + "dev": true + }, + "aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=", + "dev": true + }, + "caseless": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", + "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", + "dev": true + }, + "form-data": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", + "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.5", + "mime-types": "^2.1.12" + } + }, + "har-validator": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", + "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", + "dev": true, + "requires": { + "chalk": "^1.1.1", + "commander": "^2.9.0", + "is-my-json-valid": "^2.12.4", + "pinkie-promise": "^2.0.0" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "dev": true, + "requires": { + "assert-plus": "^0.2.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "js-yaml": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.6.1.tgz", + "integrity": "sha1-bl/mfYsgXOTSL60Ft3geja3MSzA=", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^2.6.0" + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "dev": true + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "qs": { + "version": "6.3.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.3.tgz", + "integrity": "sha512-f8CQ/sKJBr9vfNJBdGiPzTSPUufuWyvOFkCYJKN9voqPWuBuhdlSZM78dOHKigtZ0BwuktYGrRFW2DXXc/f2Fg==", + "dev": true + }, + "request": { + "version": "2.79.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", + "integrity": "sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4=", + "dev": true, + "requires": { + "aws-sign2": "~0.6.0", + "aws4": "^1.2.1", + "caseless": "~0.11.0", + "combined-stream": "~1.0.5", + "extend": "~3.0.0", + "forever-agent": "~0.6.1", + "form-data": "~2.1.1", + "har-validator": "~2.0.6", + "hawk": "~3.1.3", + "http-signature": "~1.1.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.7", + "oauth-sign": "~0.8.1", + "qs": "~6.3.0", + "stringstream": "~0.0.4", + "tough-cookie": "~2.3.0", + "tunnel-agent": "~0.4.1", + "uuid": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + }, + "tough-cookie": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", + "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", + "dev": true, + "requires": { + "punycode": "^1.4.1" + } + }, + "tunnel-agent": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", + "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=", + "dev": true + } + } + }, + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "optional": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "dev": true, + "requires": { + "boom": "2.x.x" + } + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "optional": true, + "requires": { + "array-find-index": "^1.0.1" + } + }, + "cwise-compiler": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cwise-compiler/-/cwise-compiler-1.1.3.tgz", + "integrity": "sha1-9NZnQQ6FDToxOn0tt7HlBbsDTMU=", + "requires": { + "uniq": "^1.0.0" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-uri-to-buffer": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.3.tgz", + "integrity": "sha1-GK6XmmoMqZSwYlhTkW0mYruuCxo=" + }, + "datauri": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/datauri/-/datauri-0.2.1.tgz", + "integrity": "sha1-9Oit27PlTj3BLRyIVDuLCxv2kvo=", + "requires": { + "mimer": "*", + "templayed": "*" + } + }, + "dateformat": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "devOptional": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + }, + "decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "optional": true, + "requires": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "optional": true + } + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "optional": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "optional": true, + "requires": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "optional": true + } + } + }, + "decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "optional": true, + "requires": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "dependencies": { + "file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "optional": true + } + } + }, + "decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "optional": true, + "requires": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "optional": true + } + } + }, + "decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=", + "optional": true, + "requires": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "dependencies": { + "file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek=", + "optional": true + }, + "get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=", + "optional": true, + "requires": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "optional": true + } + } + }, + "deep-eql": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz", + "integrity": "sha1-71WKyrjeJSBs1xOQbXTlaTDrafI=", + "dev": true, + "requires": { + "type-detect": "0.1.1" + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=" + }, + "diff": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", + "dev": true + }, + "dir-glob": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", + "requires": { + "arrify": "^1.0.1", + "path-type": "^3.0.0" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" + } + } + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "download": { + "version": "6.2.5", + "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", + "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", + "optional": true, + "requires": { + "caw": "^2.0.0", + "content-disposition": "^0.5.2", + "decompress": "^4.0.0", + "ext-name": "^5.0.0", + "file-type": "5.2.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^7.0.0", + "make-dir": "^1.0.0", + "p-event": "^1.0.0", + "pify": "^3.0.0" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "optional": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "optional": true + } + } + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "optional": true + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "optional": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "optional": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": { + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + } + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "eventemitter2": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz", + "integrity": "sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=" + }, + "exec-buffer": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz", + "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==", + "optional": true, + "requires": { + "execa": "^0.7.0", + "p-finally": "^1.0.0", + "pify": "^3.0.0", + "rimraf": "^2.5.4", + "tempfile": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "optional": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "optional": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "optional": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "optional": true, + "requires": { + "pify": "^2.2.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "optional": true + } + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "expect.js": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/expect.js/-/expect.js-0.3.1.tgz", + "integrity": "sha1-sKWaDS7/VDdUTr8M6qYBWEHQm1s=", + "dev": true + }, + "ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "optional": true, + "requires": { + "mime-db": "^1.28.0" + } + }, + "ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "optional": true, + "requires": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + } + }, + "extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "dev": true, + "requires": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "dependencies": { + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "falafel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/falafel/-/falafel-1.2.0.tgz", + "integrity": "sha1-wY0k71CRF0pJfzGM0ksCaiXN2rQ=", + "dev": true, + "requires": { + "acorn": "^1.0.3", + "foreach": "^2.0.5", + "isarray": "0.0.1", + "object-keys": "^1.0.6" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-xml-parser": { + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz", + "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==", + "optional": true, + "requires": { + "strnum": "^1.0.4" + } + }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "devOptional": true, + "requires": { + "pend": "~1.2.0" + } + }, + "figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "requires": { + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" + } + }, + "file-sync-cmp": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz", + "integrity": "sha1-peeo/7+kk7Q7kju9TKiaU7Y7YSs=" + }, + "file-type": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==" + }, + "filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=", + "optional": true + }, + "filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "optional": true, + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "optional": true, + "requires": { + "semver-regex": "^2.0.0" + } + }, + "findup-sync": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz", + "integrity": "sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=", + "requires": { + "glob": "~5.0.0" + }, + "dependencies": { + "glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "requires": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "requires": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + } + }, + "first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=" + }, + "flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==" + }, + "flat": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.1.tgz", + "integrity": "sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==", + "dev": true, + "requires": { + "is-buffer": "~2.0.3" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true + } + } + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + }, + "for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "requires": { + "for-in": "^1.0.1" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "requires": { + "map-cache": "^0.2.2" + } + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "optional": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "optional": true + }, + "fs-extra": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz", + "integrity": "sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0" + } + }, + "fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=", + "requires": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "generate-function": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", + "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", + "dev": true, + "requires": { + "is-property": "^1.0.2" + } + }, + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "dev": true, + "requires": { + "is-property": "^1.0.0" + } + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-pixels": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/get-pixels/-/get-pixels-3.3.3.tgz", + "integrity": "sha512-5kyGBn90i9tSMUVHTqkgCHsoWoR+/lGbl4yC83Gefyr0HLIhgSWEx/2F/3YgsZ7UpYNuM6pDhDK7zebrUJ5nXg==", + "requires": { + "data-uri-to-buffer": "0.0.3", + "jpeg-js": "^0.4.1", + "mime-types": "^2.0.1", + "ndarray": "^1.0.13", + "ndarray-pack": "^1.1.1", + "node-bitmap": "0.0.1", + "omggif": "^1.0.5", + "parse-data-uri": "^0.2.0", + "pngjs": "^3.3.3", + "request": "^2.44.0", + "through": "^2.3.4" + } + }, + "get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "optional": true, + "requires": { + "npm-conf": "^1.1.0" + } + }, + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "optional": true + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "optional": true + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + }, + "getobject": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/getobject/-/getobject-1.0.2.tgz", + "integrity": "sha512-2zblDBaFcb3rB4rF77XVnuINOE2h2k/OnqXAiy0IrTxUfV1iFp3la33oAQVY9pCpWU268WFYVt2t71hlMuLsOg==" + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "gif-encoder": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/gif-encoder/-/gif-encoder-0.4.3.tgz", + "integrity": "sha1-iitP6MqJWkjjoLbLs0CgpqNXGJk=", + "requires": { + "readable-stream": "~1.1.9" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "gifsicle": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-4.0.1.tgz", + "integrity": "sha512-A/kiCLfDdV+ERV/UB+2O41mifd+RxH8jlRG8DMxZO84Bma/Fw0htqZ+hY2iaalLRNyUu7tYZQslqUBJxBggxbg==", + "optional": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "execa": "^1.0.0", + "logalot": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "optional": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "optional": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "optional": true, + "requires": { + "pump": "^3.0.0" + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "optional": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", + "requires": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + } + }, + "glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=" + }, + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globby": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "requires": { + "array-union": "^1.0.1", + "dir-glob": "2.0.0", + "fast-glob": "^2.0.2", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + } + }, + "got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "optional": true, + "requires": { + "decompress-response": "^3.2.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-plain-obj": "^1.1.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "p-cancelable": "^0.3.0", + "p-timeout": "^1.1.1", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "url-parse-lax": "^1.0.0", + "url-to-options": "^1.0.1" + } + }, + "graceful-fs": { + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", + "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==" + }, + "graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" + }, + "growl": { + "version": "1.10.5", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", + "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", + "dev": true + }, + "grunt": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.4.1.tgz", + "integrity": "sha512-ZXIYXTsAVrA7sM+jZxjQdrBOAg7DyMUplOMhTaspMRExei+fD0BTwdWXnn0W5SXqhb/Q/nlkzXclSi3IH55PIA==", + "requires": { + "dateformat": "~3.0.3", + "eventemitter2": "~0.4.13", + "exit": "~0.1.2", + "findup-sync": "~0.3.0", + "glob": "~7.1.6", + "grunt-cli": "~1.4.2", + "grunt-known-options": "~2.0.0", + "grunt-legacy-log": "~3.0.0", + "grunt-legacy-util": "~2.0.1", + "iconv-lite": "~0.4.13", + "js-yaml": "~3.14.0", + "minimatch": "~3.0.4", + "mkdirp": "~1.0.4", + "nopt": "~3.0.6", + "rimraf": "~3.0.2" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "grunt-cli": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz", + "integrity": "sha512-9Dtx/AhVeB4LYzsViCjUQkd0Kw0McN2gYpdmGYKtE2a5Yt7v1Q+HYZVWhqXc/kGnxlMtqKDxSwotiGeFmkrCoQ==", + "requires": { + "grunt-known-options": "~2.0.0", + "interpret": "~1.1.0", + "liftup": "~3.0.1", + "nopt": "~4.0.1", + "v8flags": "~3.2.0" + }, + "dependencies": { + "nopt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + } + } + }, + "grunt-contrib-clean": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-2.0.0.tgz", + "integrity": "sha512-g5ZD3ORk6gMa5ugZosLDQl3dZO7cI3R14U75hTM+dVLVxdMNJCPVmwf9OUt4v4eWgpKKWWoVK9DZc1amJp4nQw==", + "requires": { + "async": "^2.6.1", + "rimraf": "^2.6.2" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "grunt-contrib-concat": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz", + "integrity": "sha1-lTxu/f39LBB6uchQd/LUsk0xzUk=", + "requires": { + "chalk": "^0.5.1", + "source-map": "^0.3.0" + } + }, + "grunt-contrib-copy": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-0.8.2.tgz", + "integrity": "sha1-3zHJD/zECbyfr+ROwN0eQlmRb+o=", + "requires": { + "chalk": "^1.1.1", + "file-sync-cmp": "^0.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "grunt-contrib-cssmin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-3.0.0.tgz", + "integrity": "sha512-eXpooYmVGKMs/xV7DzTLgJFPVOfMuawPD3x0JwhlH0mumq2NtH3xsxaHxp1Y3NKxp0j0tRhFS6kSBRsz6TuTGg==", + "requires": { + "chalk": "^2.4.1", + "clean-css": "~4.2.1", + "maxmin": "^2.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "grunt-contrib-htmlmin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-htmlmin/-/grunt-contrib-htmlmin-2.4.0.tgz", + "integrity": "sha1-afSYGRmeKsiRUrv4r6XtMhykj5k=", + "requires": { + "chalk": "^1.0.0", + "html-minifier": "~3.5.0", + "pretty-bytes": "^4.0.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "grunt-contrib-imagemin": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-imagemin/-/grunt-contrib-imagemin-3.1.0.tgz", + "integrity": "sha512-c0duAb018eowVVfqNMN0S5Esx8mRZ1OP/hkEoKnJkOCaD9/DywKGvLuhschF+DByPSs4k1u1y38w9Bt+ihJG8A==", + "requires": { + "chalk": "^2.4.1", + "imagemin": "^6.0.0", + "imagemin-gifsicle": "^6.0.1", + "imagemin-jpegtran": "^6.0.0", + "imagemin-optipng": "^6.0.0", + "imagemin-svgo": "^7.0.0", + "p-map": "^1.2.0", + "plur": "^3.0.1", + "pretty-bytes": "^5.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "grunt-contrib-less": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-2.1.0.tgz", + "integrity": "sha512-+GNKFKpZfiopgUd5cDYNuzsVHZ7WFHM7MOUPKtmMDhfKQ4ZSFuVpNP5PoTFs669TARE6Rvgtv1izILKCpuhFZw==", + "requires": { + "async": "^3.2.0", + "chalk": "^4.1.0", + "less": "^3.0.4", + "lodash": "^4.17.20" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "async": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "grunt-contrib-requirejs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/grunt-contrib-requirejs/-/grunt-contrib-requirejs-1.0.0.tgz", + "integrity": "sha1-7BZwyvwycTkC7lNWlFRxWy48utU=", + "requires": { + "requirejs": "^2.1.0" + } + }, + "grunt-contrib-uglify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-4.0.1.tgz", + "integrity": "sha512-dwf8/+4uW1+7pH72WButOEnzErPGmtUvc8p08B0eQS/6ON0WdeQu0+WFeafaPTbbY1GqtS25lsHWaDeiTQNWPg==", + "requires": { + "chalk": "^2.4.1", + "maxmin": "^2.1.0", + "uglify-js": "^3.5.0", + "uri-path": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "grunt-exec": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/grunt-exec/-/grunt-exec-3.0.0.tgz", + "integrity": "sha512-cgAlreXf3muSYS5LzW0Cc4xHK03BjFOYk0MqCQ/MZ3k1Xz2GU7D+IAJg4UKicxpO+XdONJdx/NJ6kpy2wI+uHg==", + "requires": {} + }, + "grunt-inline": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/grunt-inline/-/grunt-inline-0.3.4.tgz", + "integrity": "sha1-Qc7dT/EV1hKXx2vAMqgUyPy3j6c=", + "requires": { + "clean-css": "1.1.7", + "datauri": "~0.2.0", + "uglify-js": "2.4.1" + }, + "dependencies": { + "async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" + }, + "clean-css": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-1.1.7.tgz", + "integrity": "sha1-YB75z3ZCuYLLM+/JSIpkRMmGaG4=", + "requires": { + "commander": "2.0.x" + } + }, + "commander": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.0.0.tgz", + "integrity": "sha1-0bhvkB+LZL2UG96tr5JFMDk76Sg=" + }, + "source-map": { + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", + "requires": { + "amdefine": ">=0.0.4" + } + }, + "uglify-js": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.4.1.tgz", + "integrity": "sha1-V7l6r4Fg5fohGBJ+Bwgr86XCtuU=", + "requires": { + "async": "~0.2.6", + "optimist": "~0.3.5", + "source-map": "~0.1.7", + "uglify-to-browserify": "~1.0.0" + } + } + } + }, + "grunt-json-minify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/grunt-json-minify/-/grunt-json-minify-1.1.0.tgz", + "integrity": "sha1-oguaMBbR6P7Qx5Vgx3uUcB9k9vs=" + }, + "grunt-known-options": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-2.0.0.tgz", + "integrity": "sha512-GD7cTz0I4SAede1/+pAbmJRG44zFLPipVtdL9o3vqx9IEyb7b4/Y3s7r6ofI3CchR5GvYJ+8buCSioDv5dQLiA==" + }, + "grunt-legacy-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-3.0.0.tgz", + "integrity": "sha512-GHZQzZmhyq0u3hr7aHW4qUH0xDzwp2YXldLPZTCjlOeGscAOWWPftZG3XioW8MasGp+OBRIu39LFx14SLjXRcA==", + "requires": { + "colors": "~1.1.2", + "grunt-legacy-log-utils": "~2.1.0", + "hooker": "~0.2.3", + "lodash": "~4.17.19" + } + }, + "grunt-legacy-log-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.1.0.tgz", + "integrity": "sha512-lwquaPXJtKQk0rUM1IQAop5noEpwFqOXasVoedLeNzaibf/OPWjKYvvdqnEHNmU+0T0CaReAXIbGo747ZD+Aaw==", + "requires": { + "chalk": "~4.1.0", + "lodash": "~4.17.19" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "grunt-legacy-util": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.1.tgz", + "integrity": "sha512-2bQiD4fzXqX8rhNdXkAywCadeqiPiay0oQny77wA2F3WF4grPJXCvAcyoWUJV+po/b15glGkxuSiQCK299UC2w==", + "requires": { + "async": "~3.2.0", + "exit": "~0.1.2", + "getobject": "~1.0.0", + "hooker": "~0.2.3", + "lodash": "~4.17.21", + "underscore.string": "~3.3.5", + "which": "~2.0.2" + }, + "dependencies": { + "async": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" + } + } + }, + "grunt-lib-phantomjs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/grunt-lib-phantomjs/-/grunt-lib-phantomjs-1.1.0.tgz", + "integrity": "sha1-np7c3Z/S3UDgwYHJQ3HVcqpe6tI=", + "dev": true, + "requires": { + "eventemitter2": "^0.4.9", + "phantomjs-prebuilt": "^2.1.3", + "rimraf": "^2.5.2", + "semver": "^5.1.0", + "temporary": "^0.0.8" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "grunt-mocha": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/grunt-mocha/-/grunt-mocha-1.2.0.tgz", + "integrity": "sha512-/3jAWe/ak95JN5r5LywFKrmy1paReq2RGvdGBKKgKuxcS8gUt4eEKnXZ/wimqBCxafUBCgXyHYBVLtSjfw5D1w==", + "dev": true, + "requires": { + "grunt-lib-phantomjs": "^1.1.0", + "lodash": "^4.17.11", + "mocha": "^5.2.0" + }, + "dependencies": { + "commander": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", + "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==", + "dev": true + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "he": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", + "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "mocha": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz", + "integrity": "sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==", + "dev": true, + "requires": { + "browser-stdout": "1.3.1", + "commander": "2.15.1", + "debug": "3.1.0", + "diff": "3.5.0", + "escape-string-regexp": "1.0.5", + "glob": "7.1.2", + "growl": "1.10.5", + "he": "1.1.1", + "minimatch": "3.0.4", + "mkdirp": "0.5.1", + "supports-color": "5.4.0" + } + }, + "supports-color": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", + "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "grunt-spritesmith": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/grunt-spritesmith/-/grunt-spritesmith-6.9.0.tgz", + "integrity": "sha512-u6ZQwiivimm/sz9HalrFiniAZcesIq8eTdqqv2UinZ+eng0Ah3swFK6BvWFFeapzUXYCMHUKBc7a8liGQtn4wg==", + "requires": { + "async": "~1.5.0", + "spritesheet-templates": "^10.3.0", + "spritesmith": "^3.4.0", + "underscore": "~1.13.1", + "url2": "1.0.0" + }, + "dependencies": { + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" + } + } + }, + "grunt-svgmin": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/grunt-svgmin/-/grunt-svgmin-6.0.1.tgz", + "integrity": "sha512-NmVF57+Un8oiq8ZVJQJEkomEeGMcq2Sd6OX/0k2tpUc5Y/+kXwgg6CDW9RA0Yr9jXOcfFE46CNKg0hBxp2SFiQ==", + "requires": { + "chalk": "^2.4.2", + "log-symbols": "^2.2.0", + "pretty-bytes": "^5.1.0", + "svgo": "^1.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "grunt-text-replace": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/grunt-text-replace/-/grunt-text-replace-0.3.11.tgz", + "integrity": "sha1-seEPx7E+vd+sDSEove5f+TVCD64=" + }, + "gzip-size": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz", + "integrity": "sha1-VGGI6b3DN/Zzdy+BZgRks4nc5SA=", + "requires": { + "duplexer": "^0.1.1" + } + }, + "handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "requires": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4", + "wordwrap": "^1.0.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "handlebars-layouts": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/handlebars-layouts/-/handlebars-layouts-3.1.4.tgz", + "integrity": "sha1-JrO+uTG0uHffv35v6vQFjuYiiwI=" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz", + "integrity": "sha1-hPJlqujA5qiKEtcCKJS3VoiUxi4=", + "requires": { + "ansi-regex": "^0.2.0" + } + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "optional": true + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "optional": true, + "requires": { + "has-symbol-support-x": "^1.4.1" + } + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hasha": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz", + "integrity": "sha1-eNfL/B5tZjA/55g3NlmEUXsvbuE=", + "dev": true, + "requires": { + "is-stream": "^1.0.1", + "pinkie-promise": "^2.0.0" + } + }, + "hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", + "dev": true, + "requires": { + "boom": "2.x.x", + "cryptiles": "2.x.x", + "hoek": "2.x.x", + "sntp": "1.x.x" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=", + "dev": true + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "homunculus": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/homunculus/-/homunculus-0.1.7.tgz", + "integrity": "sha1-s24ezMWday4mB5I+apHTgesAOjk=" + }, + "hooker": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz", + "integrity": "sha1-uDT3I8xKJCqmWWNFnfbZhMXT2Vk=" + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "optional": true + }, + "html-minifier": { + "version": "3.5.21", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", + "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", + "requires": { + "camel-case": "3.0.x", + "clean-css": "4.2.x", + "commander": "2.17.x", + "he": "1.2.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.4.x" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", + "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "requires": { + "commander": "~2.19.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "commander": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==" + } + } + } + } + }, + "http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "optional": true + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "iconsprite": { + "version": "file:sprites", + "requires": { + "blanket": "^1.1.6", + "coveralls": "^2.10.0", + "expect.js": "^0.3.1", + "homunculus": "0.1.7", + "mocha": "^1.18.2", + "mocha-lcov-reporter": "0.0.1" + }, + "dependencies": { + "commander": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.3.0.tgz", + "integrity": "sha1-/UMOiJgy7DU7ms0d4hfBHLPu+HM=", + "dev": true + }, + "debug": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.0.0.tgz", + "integrity": "sha1-ib2d9nMrUSVrxnBTQrugLtEhMe8=", + "dev": true, + "requires": { + "ms": "0.6.2" + } + }, + "diff": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/diff/-/diff-1.0.8.tgz", + "integrity": "sha1-NDJ2MI7Jkbe8giZ+1VvBQR+XFmY=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz", + "integrity": "sha1-Tbwv5nTnGUnK8/smlc5/LcHZqNE=", + "dev": true + }, + "glob": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-3.2.3.tgz", + "integrity": "sha1-4xPusknHr/qlxHUoaw4RW1mDlGc=", + "dev": true, + "requires": { + "graceful-fs": "~2.0.0", + "inherits": "2", + "minimatch": "~0.2.11" + } + }, + "graceful-fs": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz", + "integrity": "sha1-fNLNsiiko/Nule+mzBQt59GhNtA=", + "dev": true + }, + "growl": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.8.1.tgz", + "integrity": "sha1-Sy3sjZB+k9szZiTc7AGDUC+MlCg=", + "dev": true + }, + "lru-cache": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", + "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", + "dev": true + }, + "minimatch": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", + "dev": true, + "requires": { + "lru-cache": "2", + "sigmund": "~1.0.0" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "mkdirp": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz", + "integrity": "sha1-HXMHam35hs2TROFecfzAWkyavxI=", + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "mocha": { + "version": "1.21.5", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-1.21.5.tgz", + "integrity": "sha1-fFiwkXTfl25DSiOx6NY5hz/FKek=", + "dev": true, + "requires": { + "commander": "2.3.0", + "debug": "2.0.0", + "diff": "1.0.8", + "escape-string-regexp": "1.0.2", + "glob": "3.2.3", + "growl": "1.8.1", + "jade": "0.26.3", + "mkdirp": "0.5.0" + } + }, + "ms": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.6.2.tgz", + "integrity": "sha1-2JwhJMb9wTU9Zai3e/GqxLGTcIw=", + "dev": true + } + } + }, + "iconv-lite": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.5.2.tgz", + "integrity": "sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "optional": true + }, + "ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "optional": true + }, + "imagemin": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-6.1.0.tgz", + "integrity": "sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==", + "requires": { + "file-type": "^10.7.0", + "globby": "^8.0.1", + "make-dir": "^1.0.0", + "p-pipe": "^1.1.0", + "pify": "^4.0.1", + "replace-ext": "^1.0.0" + } + }, + "imagemin-gifsicle": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-6.0.1.tgz", + "integrity": "sha512-kuu47c6iKDQ6R9J10xCwL0lgs0+sMz3LRHqRcJ2CRBWdcNmo3T5hUaM8hSZfksptZXJLGKk8heSAvwtSdB1Fng==", + "optional": true, + "requires": { + "exec-buffer": "^3.0.0", + "gifsicle": "^4.0.0", + "is-gif": "^3.0.0" + } + }, + "imagemin-jpegtran": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/imagemin-jpegtran/-/imagemin-jpegtran-6.0.0.tgz", + "integrity": "sha512-Ih+NgThzqYfEWv9t58EItncaaXIHR0u9RuhKa8CtVBlMBvY0dCIxgQJQCfwImA4AV1PMfmUKlkyIHJjb7V4z1g==", + "optional": true, + "requires": { + "exec-buffer": "^3.0.0", + "is-jpg": "^2.0.0", + "jpegtran-bin": "^4.0.0" + } + }, + "imagemin-optipng": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-6.0.0.tgz", + "integrity": "sha512-FoD2sMXvmoNm/zKPOWdhKpWdFdF9qiJmKC17MxZJPH42VMAp17/QENI/lIuP7LCUnLVAloO3AUoTSNzfhpyd8A==", + "optional": true, + "requires": { + "exec-buffer": "^3.0.0", + "is-png": "^1.0.0", + "optipng-bin": "^5.0.0" + } + }, + "imagemin-svgo": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-7.1.0.tgz", + "integrity": "sha512-0JlIZNWP0Luasn1HT82uB9nU9aa+vUj6kpT+MjPW11LbprXC+iC4HDwn1r4Q2/91qj4iy9tRZNsFySMlEpLdpg==", + "optional": true, + "requires": { + "is-svg": "^4.2.1", + "svgo": "^1.3.2" + } + }, + "import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "optional": true + }, + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "optional": true, + "requires": { + "repeating": "^2.0.0" + } + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", + "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=" + }, + "into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=", + "optional": true, + "requires": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + } + }, + "iota-array": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", + "integrity": "sha1-ge9X/l0FgUzVjCSDYyqZwwoOgIc=" + }, + "irregular-plurals": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-2.0.0.tgz", + "integrity": "sha512-Y75zBYLkh0lJ9qxeHlMjQ7bSbyiSqNW/UOPWDmzC7cXskL1hekSITh1Oc6JV0XCWWZ9DE8VYSB71xocLk3gmGw==" + }, + "is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "requires": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "optional": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" + }, + "is-core-module": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "optional": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-gif": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz", + "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==", + "optional": true, + "requires": { + "file-type": "^10.4.0" + } + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-jpg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz", + "integrity": "sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc=", + "optional": true + }, + "is-my-ip-valid": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.1.tgz", + "integrity": "sha512-jxc8cBcOWbNK2i2aTkCZP6i7wkHF1bqKFrwEHuN5Jtg5BSaZHUZQ/JTOJwoV41YvHnOaRyWWh72T/KvfNz9DJg==", + "dev": true + }, + "is-my-json-valid": { + "version": "2.20.6", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.6.tgz", + "integrity": "sha512-1JQwulVNjx8UqkPE/bqDaxtH4PXCe/2VRh/y3p99heOV87HG4Id5/VfDswd+YiAfHcRTfDlWgISycnHuhZq1aw==", + "dev": true, + "requires": { + "generate-function": "^2.0.0", + "generate-object-property": "^1.1.0", + "is-my-ip-valid": "^1.0.0", + "jsonpointer": "^5.0.0", + "xtend": "^4.0.0" + } + }, + "is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=", + "optional": true + }, + "is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=" + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "optional": true + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "optional": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "requires": { + "isobject": "^3.0.1" + } + }, + "is-png": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-png/-/is-png-1.1.0.tgz", + "integrity": "sha1-1XSxK/J1wDUEVVcLDltXqwYgd84=", + "optional": true + }, + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "requires": { + "is-unc-path": "^1.0.0" + } + }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "optional": true + }, + "is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "devOptional": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-svg": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.2.tgz", + "integrity": "sha512-mM90duy00JGMyjqIVHu9gNTjywdZV+8qNasX8cm/EEYZ53PHDgajvbBwNVvty5dwSAxLUD3p3bdo+7sR/UMrpw==", + "optional": true, + "requires": { + "fast-xml-parser": "^3.19.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "requires": { + "unc-path-regex": "^0.1.2" + } + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=" + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "optional": true, + "requires": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + } + }, + "jade": { + "version": "0.26.3", + "resolved": "https://registry.npmjs.org/jade/-/jade-0.26.3.tgz", + "integrity": "sha1-jxDXl32NefL2/4YqgbBRPMslaGw=", + "dev": true, + "requires": { + "commander": "0.6.1", + "mkdirp": "0.3.0" + }, + "dependencies": { + "commander": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz", + "integrity": "sha1-+mihT2qUXVTbvlDYzbMyDp47GgY=", + "dev": true + }, + "mkdirp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz", + "integrity": "sha1-G79asbqCevI1dRQ0kEJkVfSB/h4=", + "dev": true + } + } + }, + "jpeg-js": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.3.tgz", + "integrity": "sha512-ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q==" + }, + "jpegtran-bin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-4.0.0.tgz", + "integrity": "sha512-2cRl1ism+wJUoYAYFt6O/rLBfpXNWG2dUWbgcEkTt5WGMnqI46eEro8T4C5zGROxKRqyKpCBSdHPvt5UYCtxaQ==", + "optional": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.0.0" + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "optional": true + }, + "json-content-demux": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/json-content-demux/-/json-content-demux-0.1.4.tgz", + "integrity": "sha512-3GqPH2O0+8qBMTa1YTuL+7L24YJYNDjdXfa798y9S6GetScZAY2iAOGCdFkEPZJZdafPKv8ZUnp18VCCPTs0Nw==" + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsonfile": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", + "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsonpointer": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz", + "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==", + "dev": true + }, + "jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "kew": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz", + "integrity": "sha1-edk9LTM2PW/dKXCzNdkUGtWR15s=", + "dev": true + }, + "keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "optional": true, + "requires": { + "json-buffer": "3.0.0" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "klaw": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", + "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.9" + } + }, + "layout": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/layout/-/layout-2.2.0.tgz", + "integrity": "sha1-MeRL/BjdEBmz/7II5AKku/4uavQ=", + "requires": { + "bin-pack": "~1.0.1" + } + }, + "lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "requires": { + "readable-stream": "^2.0.5" + } + }, + "lcov-parse": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.10.tgz", + "integrity": "sha1-GwuP+ayceIklBYK3C3ExXZ2m2aM=", + "dev": true + }, + "lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=", + "requires": { + "flush-write-stream": "^1.0.2" + } + }, + "less": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/less/-/less-3.13.1.tgz", + "integrity": "sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==", + "requires": { + "copy-anything": "^2.0.1", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "native-request": "^1.0.5", + "source-map": "~0.6.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "optional": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true + } + } + }, + "less-plugin-clean-css": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/less-plugin-clean-css/-/less-plugin-clean-css-1.5.0.tgz", + "integrity": "sha1-GB9dksGeUY87lsdFf/IWL4XkAoY=", + "requires": { + "clean-css": "^3.0.1" + }, + "dependencies": { + "clean-css": { + "version": "3.4.28", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz", + "integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=", + "requires": { + "commander": "2.8.x", + "source-map": "0.4.x" + } + }, + "commander": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", + "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", + "requires": { + "graceful-readlink": ">= 1.0.0" + } + }, + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "requires": { + "amdefine": ">=0.0.4" + } + } + } + }, + "liftup": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/liftup/-/liftup-3.0.1.tgz", + "integrity": "sha512-yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw==", + "requires": { + "extend": "^3.0.2", + "findup-sync": "^4.0.0", + "fined": "^1.2.0", + "flagged-respawn": "^1.0.1", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.1", + "rechoir": "^0.7.0", + "resolve": "^1.19.0" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "findup-sync": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz", + "integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==", + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^4.0.2", + "resolve-dir": "^1.0.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + } + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "optional": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "optional": true + } + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "log-driver": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/log-driver/-/log-driver-1.2.5.tgz", + "integrity": "sha1-euTsJXMC/XkNVXyxDJcQDYV7AFY=", + "dev": true + }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "requires": { + "chalk": "^2.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "logalot": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz", + "integrity": "sha1-X46MkNME7fElMJUaVVSruMXj9VI=", + "optional": true, + "requires": { + "figures": "^1.3.5", + "squeak": "^1.0.0" + } + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "optional": true + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "optional": true, + "requires": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "optional": true + }, + "lpad-align": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz", + "integrity": "sha1-IfYArBwwlcPG5JfuZyce4ISB/p4=", + "optional": true, + "requires": { + "get-stdin": "^4.0.1", + "indent-string": "^2.1.0", + "longest": "^1.0.0", + "meow": "^3.3.0" + } + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "optional": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + } + }, + "make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "requires": { + "kind-of": "^6.0.2" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "optional": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "requires": { + "object-visit": "^1.0.0" + } + }, + "maxmin": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-2.1.0.tgz", + "integrity": "sha1-TTsiCQPZXu5+t6x/qGTnLcCaMWY=", + "requires": { + "chalk": "^1.0.0", + "figures": "^1.0.1", + "gzip-size": "^3.0.0", + "pretty-bytes": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "pretty-bytes": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-3.0.1.tgz", + "integrity": "sha1-J9AAjXeAY6C0gRuzXHnxvV1fvM8=", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "optional": true, + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + } + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "optional": true + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mimer": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/mimer/-/mimer-2.0.2.tgz", + "integrity": "sha512-izxvjsB7Ur5HrTbPu6VKTrzxSMBFBqyZQc6dWlZNQ4/wAvf886fD4lrjtFd8IQ8/WmZKdxKjUtqFFNaj3hQ52g==" + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "optional": true + }, + "minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + }, + "mocha": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.2.3.tgz", + "integrity": "sha512-0R/3FvjIGH3eEuG17ccFPk117XL2rWxatr81a57D+r/x2uTYZRbdZ4oVidEUMh2W2TJDa7MdAb12Lm2/qrKajg==", + "dev": true, + "requires": { + "ansi-colors": "3.2.3", + "browser-stdout": "1.3.1", + "debug": "3.2.6", + "diff": "3.5.0", + "escape-string-regexp": "1.0.5", + "find-up": "3.0.0", + "glob": "7.1.3", + "growl": "1.10.5", + "he": "1.2.0", + "js-yaml": "3.13.1", + "log-symbols": "2.2.0", + "minimatch": "3.0.4", + "mkdirp": "0.5.4", + "ms": "2.1.1", + "node-environment-flags": "1.0.5", + "object.assign": "4.1.0", + "strip-json-comments": "2.0.1", + "supports-color": "6.0.0", + "which": "1.3.1", + "wide-align": "1.1.3", + "yargs": "13.3.2", + "yargs-parser": "13.1.2", + "yargs-unparser": "1.6.0" + }, + "dependencies": { + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "mkdirp": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz", + "integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + }, + "supports-color": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", + "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "mocha-lcov-reporter": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/mocha-lcov-reporter/-/mocha-lcov-reporter-0.0.1.tgz", + "integrity": "sha1-AmcEkdtX7myx/nOS6BNwD24zaiE=", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "native-request": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.1.0.tgz", + "integrity": "sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==", + "optional": true + }, + "ndarray": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/ndarray/-/ndarray-1.0.19.tgz", + "integrity": "sha512-B4JHA4vdyZU30ELBw3g7/p9bZupyew5a7tX1Y/gGeF2hafrPaQZhgrGQfsvgfYbgdFZjYwuEcnaobeM/WMW+HQ==", + "requires": { + "iota-array": "^1.0.0", + "is-buffer": "^1.0.2" + } + }, + "ndarray-ops": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ndarray-ops/-/ndarray-ops-1.2.2.tgz", + "integrity": "sha1-WeiNLDKn7ryxvGkPrhQVeVV6YU4=", + "requires": { + "cwise-compiler": "^1.0.0" + } + }, + "ndarray-pack": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz", + "integrity": "sha1-jK6+qqJNXs9w/4YCBjeXfajuWFo=", + "requires": { + "cwise-compiler": "^1.1.2", + "ndarray": "^1.0.13" + } + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "optional": true + }, + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "requires": { + "lower-case": "^1.1.1" + } + }, + "node-bitmap": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz", + "integrity": "sha1-GA6scAPgxwdhjvMTaPYvhLKmkJE=" + }, + "node-environment-flags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", + "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", + "dev": true, + "requires": { + "object.getownpropertydescriptors": "^2.0.3", + "semver": "^5.7.0" + } + }, + "nopt": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", + "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", + "requires": { + "abbrev": "1" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "optional": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "optional": true, + "requires": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "dependencies": { + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "optional": true + }, + "sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", + "optional": true, + "requires": { + "is-plain-obj": "^1.0.0" + } + } + } + }, + "now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "requires": { + "once": "^1.3.2" + } + }, + "npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "optional": true, + "requires": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "optional": true + } + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "optional": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "requires": { + "boolbase": "~1.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "obj-extend": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/obj-extend/-/obj-extend-0.1.0.tgz", + "integrity": "sha1-u0SKR3X7les0p4H5CLusLfI9u1s=" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", + "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", + "requires": { + "define-properties": "^1.1.2", + "function-bind": "^1.1.1", + "has-symbols": "^1.0.0", + "object-keys": "^1.0.11" + } + }, + "object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", + "requires": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "optimist": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz", + "integrity": "sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=", + "requires": { + "wordwrap": "~0.0.2" + }, + "dependencies": { + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" + } + } + }, + "optipng-bin": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-5.1.0.tgz", + "integrity": "sha512-9baoqZTNNmXQjq/PQTWEXbVV3AMO2sI/GaaqZJZ8SExfAzjijeAP7FEeT+TtyumSw7gr0PZtSUYB/Ke7iHQVKA==", + "optional": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "logalot": "^2.0.0" + } + }, + "ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=", + "requires": { + "readable-stream": "^2.0.1" + } + }, + "os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "optional": true, + "requires": { + "arch": "^2.1.0" + } + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + }, + "osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", + "optional": true + }, + "p-event": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", + "integrity": "sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU=", + "optional": true, + "requires": { + "p-timeout": "^1.1.1" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "optional": true + }, + "p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=", + "optional": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-map": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz", + "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==" + }, + "p-map-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", + "integrity": "sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=", + "optional": true, + "requires": { + "p-reduce": "^1.0.0" + } + }, + "p-pipe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-1.2.0.tgz", + "integrity": "sha1-SxoROZoRUgpneQ7loMHViB1r7+k=" + }, + "p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "optional": true + }, + "p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=", + "optional": true, + "requires": { + "p-finally": "^1.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "package": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package/-/package-1.0.1.tgz", + "integrity": "sha1-0lofmeJQbcsn1nBLg9yooxLk7cw=", + "dev": true + }, + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "requires": { + "no-case": "^2.2.0" + } + }, + "parse-data-uri": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/parse-data-uri/-/parse-data-uri-0.2.0.tgz", + "integrity": "sha1-vwTYUd1ch7CrI45dAazklLYEtMk=", + "requires": { + "data-uri-to-buffer": "0.0.3" + } + }, + "parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", + "requires": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "optional": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "optional": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", + "requires": { + "path-root-regex": "^0.1.0" + } + }, + "path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=" + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + } + }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "devOptional": true + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "phantomjs-prebuilt": { + "version": "2.1.16", + "resolved": "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz", + "integrity": "sha1-79ISpKOWbTZHaE6ouniFSb4q7+8=", + "dev": true, + "requires": { + "es6-promise": "^4.0.3", + "extract-zip": "^1.6.5", + "fs-extra": "^1.0.0", + "hasha": "^2.2.0", + "kew": "^0.7.0", + "progress": "^1.1.8", + "request": "^2.81.0", + "request-progress": "^2.0.1", + "which": "^1.2.10" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "devOptional": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "devOptional": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pixelsmith": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/pixelsmith/-/pixelsmith-2.5.0.tgz", + "integrity": "sha512-tKl0jsX4sIEoWwOWHIpOdhjqjsVkIJVyWC4uX9CDnF5dGCsZPzu3gnLUTIUgkAoMPaXNwhXirkReWUqIWGppuA==", + "requires": { + "async": "~0.9.0", + "concat-stream": "~1.5.1", + "get-pixels": "~3.3.0", + "mime-types": "~2.1.7", + "ndarray": "~1.0.15", + "obj-extend": "~0.1.0", + "save-pixels": "~2.3.0", + "vinyl-file": "~1.3.0" + }, + "dependencies": { + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" + }, + "concat-stream": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", + "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" + } + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "plur": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/plur/-/plur-3.1.1.tgz", + "integrity": "sha512-t1Ax8KUvV3FFII8ltczPn2tJdjqbd1sIzu6t4JL7nQ3EyeL/lTrj5PWKb06ic5/6XYDr65rQ4uzQEGN70/6X5w==", + "requires": { + "irregular-plurals": "^2.0.0" + } + }, + "pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" + }, + "pngjs-nozlib": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pngjs-nozlib/-/pngjs-nozlib-1.0.0.tgz", + "integrity": "sha1-nmTWAs/pzOTZ1Zl9BodCmnPwt9c=" + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "optional": true + }, + "pretty-bytes": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-4.0.2.tgz", + "integrity": "sha1-sr+C5zUNZcbDOqlaqlpPYyf2HNk=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "progress": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", + "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=", + "dev": true + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "optional": true + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "optional": true + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "optional": true + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + }, + "qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" + }, + "query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "optional": true, + "requires": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "optional": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "dependencies": { + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "optional": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "optional": true + } + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "optional": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "optional": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "optional": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "requires": { + "resolve": "^1.9.0" + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "optional": true, + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + }, + "remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "requires": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + } + }, + "remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=", + "requires": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "optional": true, + "requires": { + "is-finite": "^1.0.0" + } + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "request-progress": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz", + "integrity": "sha1-XTa7V5YcZzqlt4jbyBQf3yO0Tgg=", + "dev": true, + "requires": { + "throttleit": "^1.0.0" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "requirejs": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz", + "integrity": "sha512-ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==" + }, + "resolve": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "requires": { + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + } + }, + "resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=", + "requires": { + "value-or-function": "^3.0.0" + } + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "optional": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "save-pixels": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/save-pixels/-/save-pixels-2.3.6.tgz", + "integrity": "sha512-/ayfEWBxt0tFpf5lxSU1S0+/TBn7EiaTZD+6GL+mwizHm3BKCBysnzT6Js7BusDUVcNVLkeJJKLZcBgdpM2leQ==", + "requires": { + "contentstream": "^1.0.0", + "gif-encoder": "~0.4.1", + "jpeg-js": "^0.4.3", + "ndarray": "^1.0.18", + "ndarray-ops": "^1.2.2", + "pngjs-nozlib": "^1.0.0", + "through": "^2.3.4" + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "optional": true, + "requires": { + "commander": "^2.8.1" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "devOptional": true + }, + "semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "optional": true + }, + "semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g=", + "optional": true, + "requires": { + "semver": "^5.3.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "optional": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "optional": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", + "dev": true + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "optional": true + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=" + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "dev": true, + "requires": { + "hoek": "2.x.x" + } + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "optional": true, + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=", + "optional": true, + "requires": { + "sort-keys": "^1.0.0" + } + }, + "source-map": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz", + "integrity": "sha1-hYb7mloAXltQHiHNGLbyG0V60fk=", + "requires": { + "amdefine": ">=0.0.4" + } + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "optional": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "optional": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "optional": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "optional": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "spritesheet-templates": { + "version": "10.5.2", + "resolved": "https://registry.npmjs.org/spritesheet-templates/-/spritesheet-templates-10.5.2.tgz", + "integrity": "sha512-dMrLgS5eHCEDWqo1c3mDM5rGdJpBNf1JAJrxTKA4qR54trNTtxqGZlH3ZppS5FHTgjKgOtEmycqE2vGSkCYiVw==", + "requires": { + "handlebars": "^4.6.0", + "handlebars-layouts": "^3.1.4", + "json-content-demux": "~0.1.2", + "underscore": "~1.13.1", + "underscore.string": "~3.3.0" + } + }, + "spritesmith": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/spritesmith/-/spritesmith-3.4.0.tgz", + "integrity": "sha512-epa/Ib2GzkrzOA6ZMKH+YOX4ooBlRz8JwIV5NQDt9FvqXVHTh4dVn/0oA+n5eeu6wem1CCrtZWODlOqvwXXpyA==", + "requires": { + "concat-stream": "~1.5.1", + "layout": "~2.2.0", + "pixelsmith": "^2.3.0", + "semver": "~5.0.3", + "through2": "~2.0.0" + }, + "dependencies": { + "concat-stream": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", + "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" + } + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "semver": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz", + "integrity": "sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no=" + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "squeak": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz", + "integrity": "sha1-MwRQN7ZDiLVnZ0uEMiplIQc5FsM=", + "optional": true, + "requires": { + "chalk": "^1.0.0", + "console-stream": "^0.1.1", + "lpad-align": "^1.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "optional": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "optional": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "optional": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "optional": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "optional": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "optional": true + } + } + }, + "sshpk": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", + "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "optional": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "stringstream": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz", + "integrity": "sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==", + "dev": true + }, + "strip-ansi": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz", + "integrity": "sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=", + "requires": { + "ansi-regex": "^0.2.1" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "^0.2.0" + } + }, + "strip-bom-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz", + "integrity": "sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4=", + "requires": { + "first-chunk-stream": "^1.0.0", + "strip-bom": "^2.0.0" + } + }, + "strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "optional": true, + "requires": { + "is-natural-number": "^4.0.1" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "optional": true + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "optional": true, + "requires": { + "get-stdin": "^4.0.1" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true + }, + "strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "optional": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "optional": true + }, + "supports-color": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz", + "integrity": "sha1-2S3iaU6z9nMjlz1649i1W0wiGQo=" + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "requires": { + "minimist": "^1.2.5" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "optional": true, + "requires": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + } + }, + "temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=", + "optional": true + }, + "tempfile": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", + "integrity": "sha1-awRGhWqbERTRhW/8vlCczLCXcmU=", + "optional": true, + "requires": { + "temp-dir": "^1.0.0", + "uuid": "^3.0.1" + } + }, + "templayed": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/templayed/-/templayed-0.2.3.tgz", + "integrity": "sha1-RwbfYlvGrs2Gt8n2sPtUi5XN92k=" + }, + "temporary": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/temporary/-/temporary-0.0.8.tgz", + "integrity": "sha1-oYqYHSi6jKNgJ/s8MFOMPst0CsA=", + "dev": true, + "requires": { + "package": ">= 1.0.0 < 1.2.0" + } + }, + "throttleit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", + "integrity": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "through2-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", + "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "requires": { + "through2": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "optional": true + }, + "to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=", + "requires": { + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" + } + }, + "to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "optional": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=", + "requires": { + "through2": "^2.0.3" + } + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "optional": true + }, + "trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", + "optional": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "type-detect": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz", + "integrity": "sha1-C6XsKohWQORw6k6FBZcZANrFiCI=", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "uglify-js": { + "version": "3.15.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.3.tgz", + "integrity": "sha512-6iCVm2omGJbsu3JWac+p6kUiOpg3wFO2f8lIXjfEb8RrmLjzog1wTPMmwKB7swfzzqxj9YM+sGUM++u1qN4qJg==" + }, + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=" + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "optional": true, + "requires": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" + }, + "underscore": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.2.tgz", + "integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g==" + }, + "underscore.string": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.6.tgz", + "integrity": "sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==", + "requires": { + "sprintf-js": "^1.1.1", + "util-deprecate": "^1.0.2" + }, + "dependencies": { + "sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==" + } + } + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "unique-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", + "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "requires": { + "json-stable-stringify-without-jsonify": "^1.0.1", + "through2-filter": "^3.0.0" + } + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + } + } + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + }, + "uri-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/uri-path/-/uri-path-1.0.0.tgz", + "integrity": "sha1-l0fwGDWJM8Md4PzP2C0TjmcmLjI=" + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + }, + "url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "optional": true, + "requires": { + "prepend-http": "^1.0.1" + } + }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=", + "optional": true + }, + "url2": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url2/-/url2-1.0.0.tgz", + "integrity": "sha1-taKGYJmqIX49p/T5DJq+7Adxyug=" + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "v8flags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "optional": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + } + } + }, + "vinyl": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", + "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "requires": { + "clone": "^1.0.0", + "clone-stats": "^0.0.1", + "replace-ext": "0.0.1" + }, + "dependencies": { + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" + } + } + }, + "vinyl-file": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/vinyl-file/-/vinyl-file-1.3.0.tgz", + "integrity": "sha1-qgVjTTqGe6kUR77bs0r8sm9E9uc=", + "requires": { + "graceful-fs": "^4.1.2", + "strip-bom": "^2.0.0", + "strip-bom-stream": "^1.0.0", + "vinyl": "^1.1.0" + } + }, + "vinyl-fs": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "requires": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + } + } + }, + "vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=", + "requires": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + } + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "wide-align": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "dev": true, + "requires": { + "string-width": "^1.0.2 || 2" + } + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "optional": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + } + } + }, + "yargs-unparser": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", + "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", + "dev": true, + "requires": { + "flat": "^4.1.0", + "lodash": "^4.17.15", + "yargs": "^13.3.0" + } + }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "devOptional": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + } + } +} diff --git a/build/package.json b/build/package.json index adfef76e9..3ab1f3efa 100644 --- a/build/package.json +++ b/build/package.json @@ -1,6 +1,6 @@ { "name": "common", - "version": "0.0.0", + "version": "1.0.1", "homepage": "http://www.onlyoffice.com", "private": true, "dependencies": { diff --git a/build/sprites/package-lock.json b/build/sprites/package-lock.json new file mode 100644 index 000000000..ee25d08d6 --- /dev/null +++ b/build/sprites/package-lock.json @@ -0,0 +1,1900 @@ +{ + "name": "sprites", + "version": "0.0.1", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "sprites", + "version": "0.0.1", + "dependencies": { + "grunt-spritesmith": "^6.8.0" + } + }, + "node_modules/ajv": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", + "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dependencies": { + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "node_modules/asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.0.tgz", + "integrity": "sha512-Uvq6hVe90D0B2WEnUqtdgY1bATGz3mw33nH9Y+dmA+w5DHvUmBgkr5rM/KCHpCsiFNRUfokW/szpPPgMK2hm4A==" + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/bin-pack": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bin-pack/-/bin-pack-1.0.2.tgz", + "integrity": "sha1-wqAU7b8L7XCjKSBi7UZXe5YSBnk=" + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "node_modules/concat-stream": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", + "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" + } + }, + "node_modules/contentstream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/contentstream/-/contentstream-1.0.0.tgz", + "integrity": "sha1-C9z6RtowRkqGzo+n7OVlQQ3G+aU=", + "dependencies": { + "readable-stream": "~1.0.33-1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/contentstream/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "node_modules/contentstream/node_modules/readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "node_modules/cwise-compiler": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cwise-compiler/-/cwise-compiler-1.1.3.tgz", + "integrity": "sha1-9NZnQQ6FDToxOn0tt7HlBbsDTMU=", + "dependencies": { + "uniq": "^1.0.0" + } + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-uri-to-buffer": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.3.tgz", + "integrity": "sha1-GK6XmmoMqZSwYlhTkW0mYruuCxo=" + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + }, + "node_modules/first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "engines": { + "node": "*" + } + }, + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/get-pixels": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/get-pixels/-/get-pixels-3.3.2.tgz", + "integrity": "sha512-6ar+8yPxRd1pskEcl2GSEu1La0+xYRjjnkby6AYiRDDwZ0tJbPQmHnSeH9fGLskT8kvR0OukVgtZLcsENF9YKQ==", + "dependencies": { + "data-uri-to-buffer": "0.0.3", + "jpeg-js": "^0.3.2", + "mime-types": "^2.0.1", + "ndarray": "^1.0.13", + "ndarray-pack": "^1.1.1", + "node-bitmap": "0.0.1", + "omggif": "^1.0.5", + "parse-data-uri": "^0.2.0", + "pngjs": "^3.3.3", + "request": "^2.44.0", + "through": "^2.3.4" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/gif-encoder": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/gif-encoder/-/gif-encoder-0.4.3.tgz", + "integrity": "sha1-iitP6MqJWkjjoLbLs0CgpqNXGJk=", + "dependencies": { + "readable-stream": "~1.1.9" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/gif-encoder/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "node_modules/gif-encoder/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", + "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" + }, + "node_modules/grunt-spritesmith": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/grunt-spritesmith/-/grunt-spritesmith-6.8.0.tgz", + "integrity": "sha512-h+4hX3rcotbu5K9RFILCYjpL2Bm9hbWM+fmj0r1WPwxf61wN2gIsW5bjnfTWUvef8gogR+bIKjpQpeUvpIycXw==", + "dependencies": { + "async": "~1.5.0", + "spritesheet-templates": "^10.3.0", + "spritesmith": "^3.4.0", + "underscore": "~1.4.2", + "url2": "1.0.0" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/handlebars": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.5.3.tgz", + "integrity": "sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA==", + "dependencies": { + "neo-async": "^2.6.0", + "optimist": "^0.6.1", + "source-map": "^0.6.1" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/handlebars-layouts": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/handlebars-layouts/-/handlebars-layouts-1.1.0.tgz", + "integrity": "sha1-JhK+Wu2PICaXN8cxHaFcnC11+7w=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "dependencies": { + "ajv": "^6.5.5", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/iota-array": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", + "integrity": "sha1-ge9X/l0FgUzVjCSDYyqZwwoOgIc=" + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "node_modules/jpeg-js": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.3.6.tgz", + "integrity": "sha512-MUj2XlMB8kpe+8DJUGH/3UJm4XpI8XEgZQ+CiHDeyrGoKPdW/8FJv6ku+3UiYm5Fz3CWaL+iXmD8Q4Ap6aC1Jw==" + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "node_modules/json-content-demux": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/json-content-demux/-/json-content-demux-0.1.3.tgz", + "integrity": "sha1-XBJ3v387dRKoa3Mt3UGzLU38scw=", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "node_modules/jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "node_modules/layout": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/layout/-/layout-2.2.0.tgz", + "integrity": "sha1-MeRL/BjdEBmz/7II5AKku/4uavQ=", + "dependencies": { + "bin-pack": "~1.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/mime-db": { + "version": "1.42.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.42.0.tgz", + "integrity": "sha512-UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.25", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.25.tgz", + "integrity": "sha512-5KhStqB5xpTAeGqKBAMgwaYMnQik7teQN4IAzC7npDv6kzeU6prfkR67bc87J1kWMPGkoaZSq1npmexMgkmEVg==", + "dependencies": { + "mime-db": "1.42.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=" + }, + "node_modules/ndarray": { + "version": "1.0.18", + "resolved": "https://registry.npmjs.org/ndarray/-/ndarray-1.0.18.tgz", + "integrity": "sha1-tg06cyJOxVXQ+qeXEeUCRI/T95M=", + "dependencies": { + "iota-array": "^1.0.0", + "is-buffer": "^1.0.2" + } + }, + "node_modules/ndarray-ops": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ndarray-ops/-/ndarray-ops-1.2.2.tgz", + "integrity": "sha1-WeiNLDKn7ryxvGkPrhQVeVV6YU4=", + "dependencies": { + "cwise-compiler": "^1.0.0" + } + }, + "node_modules/ndarray-pack": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz", + "integrity": "sha1-jK6+qqJNXs9w/4YCBjeXfajuWFo=", + "dependencies": { + "cwise-compiler": "^1.1.2", + "ndarray": "^1.0.13" + } + }, + "node_modules/neo-async": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", + "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==" + }, + "node_modules/node-bitmap": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz", + "integrity": "sha1-GA6scAPgxwdhjvMTaPYvhLKmkJE=", + "engines": { + "node": ">=v0.6.5" + } + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "engines": { + "node": "*" + } + }, + "node_modules/obj-extend": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/obj-extend/-/obj-extend-0.1.0.tgz", + "integrity": "sha1-u0SKR3X7les0p4H5CLusLfI9u1s=", + "engines": { + "node": "*" + } + }, + "node_modules/omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" + }, + "node_modules/optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dependencies": { + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" + } + }, + "node_modules/parse-data-uri": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/parse-data-uri/-/parse-data-uri-0.2.0.tgz", + "integrity": "sha1-vwTYUd1ch7CrI45dAazklLYEtMk=", + "dependencies": { + "data-uri-to-buffer": "0.0.3" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "node_modules/pixelsmith": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/pixelsmith/-/pixelsmith-2.4.1.tgz", + "integrity": "sha512-6lVOPf9eBd9bWfxo5efmJcAiF6y65Ui9Ir8IR8jocrj/v/8QoLWZmgnhO7KGUfqkwPLNlCBfxVdjp4QihdPmPQ==", + "dependencies": { + "async": "~0.9.0", + "concat-stream": "~1.5.1", + "get-pixels": "~3.3.0", + "mime-types": "~2.1.7", + "ndarray": "~1.0.15", + "obj-extend": "~0.1.0", + "save-pixels": "~2.3.0", + "vinyl-file": "~1.3.0" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/pixelsmith/node_modules/async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" + }, + "node_modules/pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/pngjs-nozlib": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pngjs-nozlib/-/pngjs-nozlib-1.0.0.tgz", + "integrity": "sha1-nmTWAs/pzOTZ1Zl9BodCmnPwt9c=", + "engines": { + "iojs": ">= 1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "node_modules/psl": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.4.0.tgz", + "integrity": "sha512-HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw==" + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/request": { + "version": "2.88.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", + "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.0", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.4.3", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", + "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/save-pixels": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/save-pixels/-/save-pixels-2.3.4.tgz", + "integrity": "sha1-SdNJwGuNfAEn2/DaJLRKylr7Wf4=", + "dependencies": { + "contentstream": "^1.0.0", + "gif-encoder": "~0.4.1", + "jpeg-js": "0.0.4", + "ndarray": "^1.0.18", + "ndarray-ops": "^1.2.2", + "pngjs-nozlib": "^1.0.0", + "through": "^2.3.4" + } + }, + "node_modules/save-pixels/node_modules/jpeg-js": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.0.4.tgz", + "integrity": "sha1-Bqr0fv7HrwsZJKWc1pWm0rXthw4=" + }, + "node_modules/semver": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz", + "integrity": "sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no=", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==" + }, + "node_modules/spritesheet-templates": { + "version": "10.4.2", + "resolved": "https://registry.npmjs.org/spritesheet-templates/-/spritesheet-templates-10.4.2.tgz", + "integrity": "sha512-+1gMDlZn19hm4qaceAy4gLqqwlitfXnHvRtFmLf59QVeTXadqLLoALAm0IgWpx0Q6aufFpqWMJcaPy/31Ai8HQ==", + "dependencies": { + "handlebars": "^4.4.5", + "handlebars-layouts": "~1.1.0", + "json-content-demux": "~0.1.2", + "underscore": "~1.4.2", + "underscore.string": "~3.3.0" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/spritesmith": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/spritesmith/-/spritesmith-3.4.0.tgz", + "integrity": "sha512-epa/Ib2GzkrzOA6ZMKH+YOX4ooBlRz8JwIV5NQDt9FvqXVHTh4dVn/0oA+n5eeu6wem1CCrtZWODlOqvwXXpyA==", + "dependencies": { + "concat-stream": "~1.5.1", + "layout": "~2.2.0", + "pixelsmith": "^2.3.0", + "semver": "~5.0.3", + "through2": "~2.0.0" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-bom-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz", + "integrity": "sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4=", + "dependencies": { + "first-chunk-stream": "^1.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/tough-cookie": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", + "dependencies": { + "psl": "^1.1.24", + "punycode": "^1.4.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tough-cookie/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "node_modules/uglify-js": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.7.0.tgz", + "integrity": "sha512-PC/ee458NEMITe1OufAjal65i6lB58R1HWMRcxwvdz1UopW0DYqlRL3xdu3IcTvTXsB02CRHykidkTRL+A3hQA==", + "optional": true, + "dependencies": { + "commander": "~2.20.3", + "source-map": "~0.6.1" + }, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/underscore": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz", + "integrity": "sha1-YaajIBBiKvoHljvzJSA88SI51gQ=" + }, + "node_modules/underscore.string": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz", + "integrity": "sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==", + "dependencies": { + "sprintf-js": "^1.0.3", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "node_modules/uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url2": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url2/-/url2-1.0.0.tgz", + "integrity": "sha1-taKGYJmqIX49p/T5DJq+7Adxyug=" + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "node_modules/uuid": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", + "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/vinyl": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", + "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "dependencies": { + "clone": "^1.0.0", + "clone-stats": "^0.0.1", + "replace-ext": "0.0.1" + }, + "engines": { + "node": ">= 0.9" + } + }, + "node_modules/vinyl-file": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/vinyl-file/-/vinyl-file-1.3.0.tgz", + "integrity": "sha1-qgVjTTqGe6kUR77bs0r8sm9E9uc=", + "dependencies": { + "graceful-fs": "^4.1.2", + "strip-bom": "^2.0.0", + "strip-bom-stream": "^1.0.0", + "vinyl": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + } + }, + "dependencies": { + "ajv": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", + "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "requires": { + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.0.tgz", + "integrity": "sha512-Uvq6hVe90D0B2WEnUqtdgY1bATGz3mw33nH9Y+dmA+w5DHvUmBgkr5rM/KCHpCsiFNRUfokW/szpPPgMK2hm4A==" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bin-pack": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bin-pack/-/bin-pack-1.0.2.tgz", + "integrity": "sha1-wqAU7b8L7XCjKSBi7UZXe5YSBnk=" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "optional": true + }, + "concat-stream": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", + "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" + } + }, + "contentstream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/contentstream/-/contentstream-1.0.0.tgz", + "integrity": "sha1-C9z6RtowRkqGzo+n7OVlQQ3G+aU=", + "requires": { + "readable-stream": "~1.0.33-1" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + } + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cwise-compiler": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cwise-compiler/-/cwise-compiler-1.1.3.tgz", + "integrity": "sha1-9NZnQQ6FDToxOn0tt7HlBbsDTMU=", + "requires": { + "uniq": "^1.0.0" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-uri-to-buffer": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.3.tgz", + "integrity": "sha1-GK6XmmoMqZSwYlhTkW0mYruuCxo=" + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + }, + "first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "get-pixels": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/get-pixels/-/get-pixels-3.3.2.tgz", + "integrity": "sha512-6ar+8yPxRd1pskEcl2GSEu1La0+xYRjjnkby6AYiRDDwZ0tJbPQmHnSeH9fGLskT8kvR0OukVgtZLcsENF9YKQ==", + "requires": { + "data-uri-to-buffer": "0.0.3", + "jpeg-js": "^0.3.2", + "mime-types": "^2.0.1", + "ndarray": "^1.0.13", + "ndarray-pack": "^1.1.1", + "node-bitmap": "0.0.1", + "omggif": "^1.0.5", + "parse-data-uri": "^0.2.0", + "pngjs": "^3.3.3", + "request": "^2.44.0", + "through": "^2.3.4" + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "gif-encoder": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/gif-encoder/-/gif-encoder-0.4.3.tgz", + "integrity": "sha1-iitP6MqJWkjjoLbLs0CgpqNXGJk=", + "requires": { + "readable-stream": "~1.1.9" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + } + } + }, + "graceful-fs": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", + "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" + }, + "grunt-spritesmith": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/grunt-spritesmith/-/grunt-spritesmith-6.8.0.tgz", + "integrity": "sha512-h+4hX3rcotbu5K9RFILCYjpL2Bm9hbWM+fmj0r1WPwxf61wN2gIsW5bjnfTWUvef8gogR+bIKjpQpeUvpIycXw==", + "requires": { + "async": "~1.5.0", + "spritesheet-templates": "^10.3.0", + "spritesmith": "^3.4.0", + "underscore": "~1.4.2", + "url2": "1.0.0" + } + }, + "handlebars": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.5.3.tgz", + "integrity": "sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA==", + "requires": { + "neo-async": "^2.6.0", + "optimist": "^0.6.1", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4" + } + }, + "handlebars-layouts": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/handlebars-layouts/-/handlebars-layouts-1.1.0.tgz", + "integrity": "sha1-JhK+Wu2PICaXN8cxHaFcnC11+7w=" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "requires": { + "ajv": "^6.5.5", + "har-schema": "^2.0.0" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "iota-array": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", + "integrity": "sha1-ge9X/l0FgUzVjCSDYyqZwwoOgIc=" + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "jpeg-js": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.3.6.tgz", + "integrity": "sha512-MUj2XlMB8kpe+8DJUGH/3UJm4XpI8XEgZQ+CiHDeyrGoKPdW/8FJv6ku+3UiYm5Fz3CWaL+iXmD8Q4Ap6aC1Jw==" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "json-content-demux": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/json-content-demux/-/json-content-demux-0.1.3.tgz", + "integrity": "sha1-XBJ3v387dRKoa3Mt3UGzLU38scw=" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "layout": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/layout/-/layout-2.2.0.tgz", + "integrity": "sha1-MeRL/BjdEBmz/7II5AKku/4uavQ=", + "requires": { + "bin-pack": "~1.0.1" + } + }, + "mime-db": { + "version": "1.42.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.42.0.tgz", + "integrity": "sha512-UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ==" + }, + "mime-types": { + "version": "2.1.25", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.25.tgz", + "integrity": "sha512-5KhStqB5xpTAeGqKBAMgwaYMnQik7teQN4IAzC7npDv6kzeU6prfkR67bc87J1kWMPGkoaZSq1npmexMgkmEVg==", + "requires": { + "mime-db": "1.42.0" + } + }, + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=" + }, + "ndarray": { + "version": "1.0.18", + "resolved": "https://registry.npmjs.org/ndarray/-/ndarray-1.0.18.tgz", + "integrity": "sha1-tg06cyJOxVXQ+qeXEeUCRI/T95M=", + "requires": { + "iota-array": "^1.0.0", + "is-buffer": "^1.0.2" + } + }, + "ndarray-ops": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ndarray-ops/-/ndarray-ops-1.2.2.tgz", + "integrity": "sha1-WeiNLDKn7ryxvGkPrhQVeVV6YU4=", + "requires": { + "cwise-compiler": "^1.0.0" + } + }, + "ndarray-pack": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz", + "integrity": "sha1-jK6+qqJNXs9w/4YCBjeXfajuWFo=", + "requires": { + "cwise-compiler": "^1.1.2", + "ndarray": "^1.0.13" + } + }, + "neo-async": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", + "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==" + }, + "node-bitmap": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz", + "integrity": "sha1-GA6scAPgxwdhjvMTaPYvhLKmkJE=" + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "obj-extend": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/obj-extend/-/obj-extend-0.1.0.tgz", + "integrity": "sha1-u0SKR3X7les0p4H5CLusLfI9u1s=" + }, + "omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "requires": { + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" + } + }, + "parse-data-uri": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/parse-data-uri/-/parse-data-uri-0.2.0.tgz", + "integrity": "sha1-vwTYUd1ch7CrI45dAazklLYEtMk=", + "requires": { + "data-uri-to-buffer": "0.0.3" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "pixelsmith": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/pixelsmith/-/pixelsmith-2.4.1.tgz", + "integrity": "sha512-6lVOPf9eBd9bWfxo5efmJcAiF6y65Ui9Ir8IR8jocrj/v/8QoLWZmgnhO7KGUfqkwPLNlCBfxVdjp4QihdPmPQ==", + "requires": { + "async": "~0.9.0", + "concat-stream": "~1.5.1", + "get-pixels": "~3.3.0", + "mime-types": "~2.1.7", + "ndarray": "~1.0.15", + "obj-extend": "~0.1.0", + "save-pixels": "~2.3.0", + "vinyl-file": "~1.3.0" + }, + "dependencies": { + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" + } + } + }, + "pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" + }, + "pngjs-nozlib": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pngjs-nozlib/-/pngjs-nozlib-1.0.0.tgz", + "integrity": "sha1-nmTWAs/pzOTZ1Zl9BodCmnPwt9c=" + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "psl": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.4.0.tgz", + "integrity": "sha512-HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + }, + "readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" + }, + "request": { + "version": "2.88.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", + "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.0", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.4.3", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "safe-buffer": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", + "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "save-pixels": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/save-pixels/-/save-pixels-2.3.4.tgz", + "integrity": "sha1-SdNJwGuNfAEn2/DaJLRKylr7Wf4=", + "requires": { + "contentstream": "^1.0.0", + "gif-encoder": "~0.4.1", + "jpeg-js": "0.0.4", + "ndarray": "^1.0.18", + "ndarray-ops": "^1.2.2", + "pngjs-nozlib": "^1.0.0", + "through": "^2.3.4" + }, + "dependencies": { + "jpeg-js": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.0.4.tgz", + "integrity": "sha1-Bqr0fv7HrwsZJKWc1pWm0rXthw4=" + } + } + }, + "semver": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz", + "integrity": "sha1-d0Zt5YnNXTyV8TiqeLxWmjy10no=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==" + }, + "spritesheet-templates": { + "version": "10.4.2", + "resolved": "https://registry.npmjs.org/spritesheet-templates/-/spritesheet-templates-10.4.2.tgz", + "integrity": "sha512-+1gMDlZn19hm4qaceAy4gLqqwlitfXnHvRtFmLf59QVeTXadqLLoALAm0IgWpx0Q6aufFpqWMJcaPy/31Ai8HQ==", + "requires": { + "handlebars": "^4.4.5", + "handlebars-layouts": "~1.1.0", + "json-content-demux": "~0.1.2", + "underscore": "~1.4.2", + "underscore.string": "~3.3.0" + } + }, + "spritesmith": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/spritesmith/-/spritesmith-3.4.0.tgz", + "integrity": "sha512-epa/Ib2GzkrzOA6ZMKH+YOX4ooBlRz8JwIV5NQDt9FvqXVHTh4dVn/0oA+n5eeu6wem1CCrtZWODlOqvwXXpyA==", + "requires": { + "concat-stream": "~1.5.1", + "layout": "~2.2.0", + "pixelsmith": "^2.3.0", + "semver": "~5.0.3", + "through2": "~2.0.0" + } + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "^0.2.0" + } + }, + "strip-bom-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz", + "integrity": "sha1-5xRDmFd9Uaa+0PoZlPoF9D/ZiO4=", + "requires": { + "first-chunk-stream": "^1.0.0", + "strip-bom": "^2.0.0" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "tough-cookie": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", + "requires": { + "psl": "^1.1.24", + "punycode": "^1.4.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + } + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "uglify-js": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.7.0.tgz", + "integrity": "sha512-PC/ee458NEMITe1OufAjal65i6lB58R1HWMRcxwvdz1UopW0DYqlRL3xdu3IcTvTXsB02CRHykidkTRL+A3hQA==", + "optional": true, + "requires": { + "commander": "~2.20.3", + "source-map": "~0.6.1" + } + }, + "underscore": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz", + "integrity": "sha1-YaajIBBiKvoHljvzJSA88SI51gQ=" + }, + "underscore.string": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz", + "integrity": "sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==", + "requires": { + "sprintf-js": "^1.0.3", + "util-deprecate": "^1.0.2" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "requires": { + "punycode": "^2.1.0" + } + }, + "url2": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url2/-/url2-1.0.0.tgz", + "integrity": "sha1-taKGYJmqIX49p/T5DJq+7Adxyug=" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "uuid": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", + "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "vinyl": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", + "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "requires": { + "clone": "^1.0.0", + "clone-stats": "^0.0.1", + "replace-ext": "0.0.1" + } + }, + "vinyl-file": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/vinyl-file/-/vinyl-file-1.3.0.tgz", + "integrity": "sha1-qgVjTTqGe6kUR77bs0r8sm9E9uc=", + "requires": { + "graceful-fs": "^4.1.2", + "strip-bom": "^2.0.0", + "strip-bom-stream": "^1.0.0", + "vinyl": "^1.1.0" + } + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + } +} diff --git a/test/spreadsheeteditor/main/resources/less/asc-mixins.less b/test/spreadsheeteditor/main/resources/less/asc-mixins.less index e6e8a3d7b..c0bf2d9a3 100644 --- a/test/spreadsheeteditor/main/resources/less/asc-mixins.less +++ b/test/spreadsheeteditor/main/resources/less/asc-mixins.less @@ -87,8 +87,8 @@ .pixel-ratio__1_5 { @ratio: 1.5; - @one-px: 1px / @ratio; - @two-px: 2px / @ratio; + @one-px: (1px / @ratio); + @two-px: (2px / @ratio); --pixel-ratio-factor: @ratio; --scaled-one-pixel: @one-px; @@ -100,8 +100,8 @@ .pixel-ratio__1_25 { @ratio: 1.25; - @one-px: 1px / @ratio; - @two-px: 2px / @ratio; + @one-px: (1px / @ratio); + @two-px: (2px / @ratio); --pixel-ratio-factor: @ratio; --scaled-one-pixel: @one-px; @@ -110,8 +110,8 @@ .pixel-ratio__1_75 { @ratio: 1.75; - @one-px: 1px / @ratio; - @two-px: 2px / @ratio; + @one-px: (1px / @ratio); + @two-px: (2px / @ratio); --pixel-ratio-factor: @ratio; --scaled-one-pixel: @one-px; diff --git a/vendor/framework7-react/npm-shrinkwrap.json b/vendor/framework7-react/npm-shrinkwrap.json new file mode 100644 index 000000000..29a4afe03 --- /dev/null +++ b/vendor/framework7-react/npm-shrinkwrap.json @@ -0,0 +1,25964 @@ +{ + "name": "documenteditor", + "version": "1.0.1", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "documenteditor", + "version": "1.0.1", + "license": "UNLICENSED", + "dependencies": { + "dom7": "^3.0.0", + "framework7": "^6.0.4", + "framework7-icons": "^3.0.1", + "framework7-react": "^6.0.4", + "i18next": "^19.8.4", + "i18next-fetch-backend": "^3.0.0", + "prop-types": "^15.7.2", + "react": "^17.0.1", + "react-dom": "^17.0.1", + "react-i18next": "^11.8.5", + "swiper": "^6.4.8", + "template7": "^1.4.2" + }, + "devDependencies": { + "@babel/core": "^7.12.10", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-decorators": "^7.12.12", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.12.10", + "@babel/preset-env": "^7.12.11", + "@babel/preset-react": "^7.12.10", + "@babel/runtime": "^7.12.5", + "babel-loader": "^8.2.2", + "chalk": "^4.1.0", + "clean-webpack-plugin": "^3.0.0", + "copy-webpack-plugin": "^6.4.1", + "cpy-cli": "^3.1.1", + "cross-env": "^7.0.3", + "css-loader": "^4.3.0", + "css-minimizer-webpack-plugin": "^1.3.0", + "file-loader": "^6.2.0", + "html-webpack-plugin": "^5.3.1", + "less": "^3.13.1", + "less-loader": "^6.2.0", + "mini-css-extract-plugin": "^1.3.9", + "mobx": "^6.1.8", + "mobx-react": "^7.1.0", + "ora": "^4.1.1", + "postcss-loader": "^3.0.0", + "postcss-preset-env": "^6.7.0", + "rimraf": "^3.0.2", + "style-loader": "^1.3.0", + "terser-webpack-plugin": "^5.1.3", + "url-loader": "^4.1.1", + "webpack": "^5.38.1", + "webpack-cli": "^4.5.0", + "webpack-dev-server": "^3.11.2", + "workbox-webpack-plugin": "^6.1.2" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz", + "integrity": "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.7.tgz", + "integrity": "sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.8.tgz", + "integrity": "sha512-OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.7", + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-module-transforms": "^7.17.7", + "@babel/helpers": "^7.17.8", + "@babel/parser": "^7.17.8", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.7.tgz", + "integrity": "sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.17.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz", + "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz", + "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==", + "dev": true, + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz", + "integrity": "sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-validator-option": "^7.16.7", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.17.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz", + "integrity": "sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz", + "integrity": "sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "regexpu-core": "^5.0.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz", + "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz", + "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz", + "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", + "dev": true, + "dependencies": { + "@babel/helper-get-function-arity": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz", + "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz", + "integrity": "sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.17.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz", + "integrity": "sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.17.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz", + "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz", + "integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-wrap-function": "^7.16.8", + "@babel/types": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz", + "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz", + "integrity": "sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.17.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz", + "integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.8.tgz", + "integrity": "sha512-QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.16.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.8.tgz", + "integrity": "sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz", + "integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz", + "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz", + "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz", + "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.17.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz", + "integrity": "sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.17.6", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.17.8.tgz", + "integrity": "sha512-U69odN4Umyyx1xO1rTII0IDkAEC+RNlcKXtqOblfpzqy1C+aOplb76BQNq0+XdpVkOaPlpEDwd++joY8FNFJKA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.17.6", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/plugin-syntax-decorators": "^7.17.0", + "charcodes": "^0.2.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz", + "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz", + "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz", + "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz", + "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz", + "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz", + "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz", + "integrity": "sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.17.0", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz", + "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz", + "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz", + "integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.10", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz", + "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz", + "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.17.0.tgz", + "integrity": "sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz", + "integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz", + "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz", + "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz", + "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz", + "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz", + "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz", + "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz", + "integrity": "sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz", + "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz", + "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz", + "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz", + "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz", + "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz", + "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz", + "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz", + "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.7.tgz", + "integrity": "sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-simple-access": "^7.17.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz", + "integrity": "sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-module-transforms": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz", + "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz", + "integrity": "sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz", + "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz", + "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz", + "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz", + "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz", + "integrity": "sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.3.tgz", + "integrity": "sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-jsx": "^7.16.7", + "@babel/types": "^7.17.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz", + "integrity": "sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==", + "dev": true, + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.7.tgz", + "integrity": "sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz", + "integrity": "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==", + "dev": true, + "dependencies": { + "regenerator-transform": "^0.14.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz", + "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.17.0.tgz", + "integrity": "sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz", + "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz", + "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz", + "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz", + "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz", + "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz", + "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz", + "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz", + "integrity": "sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.16.8", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-async-generator-functions": "^7.16.8", + "@babel/plugin-proposal-class-properties": "^7.16.7", + "@babel/plugin-proposal-class-static-block": "^7.16.7", + "@babel/plugin-proposal-dynamic-import": "^7.16.7", + "@babel/plugin-proposal-export-namespace-from": "^7.16.7", + "@babel/plugin-proposal-json-strings": "^7.16.7", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", + "@babel/plugin-proposal-numeric-separator": "^7.16.7", + "@babel/plugin-proposal-object-rest-spread": "^7.16.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", + "@babel/plugin-proposal-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.11", + "@babel/plugin-proposal-private-property-in-object": "^7.16.7", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.16.7", + "@babel/plugin-transform-async-to-generator": "^7.16.8", + "@babel/plugin-transform-block-scoped-functions": "^7.16.7", + "@babel/plugin-transform-block-scoping": "^7.16.7", + "@babel/plugin-transform-classes": "^7.16.7", + "@babel/plugin-transform-computed-properties": "^7.16.7", + "@babel/plugin-transform-destructuring": "^7.16.7", + "@babel/plugin-transform-dotall-regex": "^7.16.7", + "@babel/plugin-transform-duplicate-keys": "^7.16.7", + "@babel/plugin-transform-exponentiation-operator": "^7.16.7", + "@babel/plugin-transform-for-of": "^7.16.7", + "@babel/plugin-transform-function-name": "^7.16.7", + "@babel/plugin-transform-literals": "^7.16.7", + "@babel/plugin-transform-member-expression-literals": "^7.16.7", + "@babel/plugin-transform-modules-amd": "^7.16.7", + "@babel/plugin-transform-modules-commonjs": "^7.16.8", + "@babel/plugin-transform-modules-systemjs": "^7.16.7", + "@babel/plugin-transform-modules-umd": "^7.16.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8", + "@babel/plugin-transform-new-target": "^7.16.7", + "@babel/plugin-transform-object-super": "^7.16.7", + "@babel/plugin-transform-parameters": "^7.16.7", + "@babel/plugin-transform-property-literals": "^7.16.7", + "@babel/plugin-transform-regenerator": "^7.16.7", + "@babel/plugin-transform-reserved-words": "^7.16.7", + "@babel/plugin-transform-shorthand-properties": "^7.16.7", + "@babel/plugin-transform-spread": "^7.16.7", + "@babel/plugin-transform-sticky-regex": "^7.16.7", + "@babel/plugin-transform-template-literals": "^7.16.7", + "@babel/plugin-transform-typeof-symbol": "^7.16.7", + "@babel/plugin-transform-unicode-escapes": "^7.16.7", + "@babel/plugin-transform-unicode-regex": "^7.16.7", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.8", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.20.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.7.tgz", + "integrity": "sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-transform-react-display-name": "^7.16.7", + "@babel/plugin-transform-react-jsx": "^7.16.7", + "@babel/plugin-transform-react-jsx-development": "^7.16.7", + "@babel/plugin-transform-react-pure-annotations": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.8.tgz", + "integrity": "sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz", + "integrity": "sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.3", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.17.3", + "@babel/types": "^7.17.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz", + "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.16.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz", + "integrity": "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.11", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz", + "integrity": "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz", + "integrity": "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "dev": true, + "dependencies": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@mrmlnc/readdir-enhanced/node_modules/glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dev": true, + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/@npmcli/fs/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "dev": true, + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dev": true, + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "dev": true, + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@types/eslint": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.1.tgz", + "integrity": "sha512-GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", + "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.10.tgz", + "integrity": "sha512-BLO9bBq59vW3fxCpD4o0N4U+DXsvwvIcl+jofw0frQo/GrBFC+/jRZj1E7kgp6dvTyNmA4y6JCV5Id/r3mNP5A==", + "dev": true + }, + "node_modules/@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "node_modules/@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true + }, + "node_modules/@types/node": { + "version": "17.0.21", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.21.tgz", + "integrity": "sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==", + "dev": true + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "node_modules/@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==", + "dev": true + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true + }, + "node_modules/@types/tapable": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz", + "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==", + "dev": true + }, + "node_modules/@types/trusted-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", + "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==", + "dev": true + }, + "node_modules/@types/uglify-js": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz", + "integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==", + "dev": true, + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/uglify-js/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/webpack": { + "version": "4.41.32", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.32.tgz", + "integrity": "sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/webpack/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.1.tgz", + "integrity": "sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==", + "dev": true, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x", + "webpack-cli": "4.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.1.tgz", + "integrity": "sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==", + "dev": true, + "dependencies": { + "envinfo": "^7.7.3" + }, + "peerDependencies": { + "webpack-cli": "4.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.1.tgz", + "integrity": "sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==", + "dev": true, + "peerDependencies": { + "webpack-cli": "4.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", + "dev": true + }, + "node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "dev": true, + "dependencies": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/autoprefixer/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/babel-loader": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz", + "integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz", + "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.1", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", + "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.1", + "core-js-compat": "^3.21.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", + "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.9.7", + "raw-body": "2.4.3", + "type-is": "~1.6.18" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.20.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz", + "integrity": "sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001317", + "electron-to-chromium": "^1.4.84", + "escalade": "^3.1.1", + "node-releases": "^2.0.2", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "node_modules/builtin-modules": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", + "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dev": true, + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-me-maybe": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", + "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", + "dev": true + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dev": true, + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dev": true, + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-keys/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001319", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001319.tgz", + "integrity": "sha512-xjlIAFHucBRSMUo1kb5D4LYgcN1M45qdKP++lhqowDpwJwGkpIRTt5qQqnhxjj1vHcI7nrJxWhCC1ATrCEBTcw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/charcodes": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/charcodes/-/charcodes-0.2.0.tgz", + "integrity": "sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/chokidar/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/chokidar/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/chokidar/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-css": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.2.4.tgz", + "integrity": "sha512-nKseG8wCzEuji/4yrgM/5cthL9oTDc5UOQyFMvW/Q53oP6gLH690o1NbuTh6Y18nujr7BxlsFuS7gXLnLzKJGg==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/clean-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==", + "dev": true, + "dependencies": { + "@types/webpack": "^4.4.31", + "del": "^4.1.1" + }, + "engines": { + "node": ">=8.9.0" + }, + "peerDependencies": { + "webpack": "*" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dev": true, + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/coa/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/color-string": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz", + "integrity": "sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==", + "dev": true, + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", + "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==", + "dev": true + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "node_modules/copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "dev": true, + "dependencies": { + "is-what": "^3.14.1" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-webpack-plugin": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.4.1.tgz", + "integrity": "sha512-MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA==", + "dev": true, + "dependencies": { + "cacache": "^15.0.5", + "fast-glob": "^3.2.4", + "find-cache-dir": "^3.3.1", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/core-js-compat": { + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.1.tgz", + "integrity": "sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==", + "dev": true, + "dependencies": { + "browserslist": "^4.19.1", + "semver": "7.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cp-file": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cp-file/-/cp-file-7.0.0.tgz", + "integrity": "sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "nested-error-stacks": "^2.0.0", + "p-event": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cpy": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/cpy/-/cpy-8.1.2.tgz", + "integrity": "sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==", + "dev": true, + "dependencies": { + "arrify": "^2.0.1", + "cp-file": "^7.0.0", + "globby": "^9.2.0", + "has-glob": "^1.0.0", + "junk": "^3.1.0", + "nested-error-stacks": "^2.1.0", + "p-all": "^2.1.0", + "p-filter": "^2.1.0", + "p-map": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cpy-cli": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/cpy-cli/-/cpy-cli-3.1.1.tgz", + "integrity": "sha512-HCpNdBkQy3rw+uARLuIf0YurqsMXYzBa9ihhSAuxYJcNIrqrSq3BstPfr0cQN38AdMrQiO9Dp4hYy7GtGJsLPg==", + "dev": true, + "dependencies": { + "cpy": "^8.0.0", + "meow": "^6.1.1" + }, + "bin": { + "cpy": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cpy/node_modules/@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cpy/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "dev": true, + "dependencies": { + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cpy/node_modules/fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "dev": true, + "dependencies": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/cpy/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/cpy/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/globby": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz", + "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cpy/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/cpy/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cpy/node_modules/p-map": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cpy/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cpy/node_modules/path-type/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/cpy/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cpy/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/css-blank-pseudo": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", + "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", + "dev": true, + "dependencies": { + "postcss": "^7.0.5" + }, + "bin": { + "css-blank-pseudo": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "engines": { + "node": ">4" + } + }, + "node_modules/css-has-pseudo": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", + "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^5.0.0-rc.4" + }, + "bin": { + "css-has-pseudo": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-has-pseudo/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/css-has-pseudo/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/css-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz", + "integrity": "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==", + "dev": true, + "dependencies": { + "camelcase": "^6.0.0", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^2.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.3", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.1", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-1.3.0.tgz", + "integrity": "sha512-jFa0Siplmfef4ndKglpVaduY47oHQwioAOEGK0f0vAX0s+vc+SmP6cCMoc+8Adau5600RnOEld5VVdC8CQau7w==", + "dev": true, + "dependencies": { + "cacache": "^15.0.5", + "cssnano": "^4.1.10", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.3.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", + "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.5" + }, + "bin": { + "css-prefers-color-scheme": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-select": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.2.1.tgz", + "integrity": "sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^5.1.0", + "domhandler": "^4.3.0", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "dev": true + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz", + "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssdb": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", + "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==", + "dev": true + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", + "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", + "dev": true, + "dependencies": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", + "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", + "dev": true, + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/default-gateway/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/default-gateway/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/default-gateway/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/default-gateway/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true, + "dependencies": { + "clone": "^1.0.2" + } + }, + "node_modules/defaults/node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom7": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/dom7/-/dom7-3.0.0.tgz", + "integrity": "sha512-oNlcUdHsC4zb7Msx7JN3K0Nro1dzJ48knvBOnDPKJ2GV9wl1i5vydJZUSyOfrkKFDZEud/jBsTk92S/VGSAe/g==", + "dependencies": { + "ssr-window": "^3.0.0-alpha.1" + } + }, + "node_modules/domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dot-prop/node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "node_modules/ejs": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.6.tgz", + "integrity": "sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==", + "dev": true, + "dependencies": { + "jake": "^10.6.1" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.88", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.88.tgz", + "integrity": "sha512-oA7mzccefkvTNi9u7DXmT0LqvhnOiN2BhSrKerta7HeUC1cLoIwtbf2wL+Ah2ozh5KQd3/1njrGrwDBXx6d14Q==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.9.2.tgz", + "integrity": "sha512-GIm3fQfwLJ8YZx2smuHpBKkXC1yOk+OBEmKckVyL0i/ea8mqDEykK3ld5dgH1QYPNyT/lIllxV2LULnxCHaHkA==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "dev": true + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "dev": true, + "dependencies": { + "original": "^1.0.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/express": { + "version": "4.17.3", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.3.tgz", + "integrity": "sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.19.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.4.2", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.9.7", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.17.2", + "serve-static": "1.14.2", + "setprototypeof": "1.2.0", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/express/node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "node_modules/express/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "node_modules/filelist": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.2.tgz", + "integrity": "sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==", + "dev": true, + "dependencies": { + "minimatch": "^3.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==", + "deprecated": "flatten is deprecated in favor of utility frameworks such as lodash.", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/framework7": { + "version": "6.3.16", + "resolved": "https://registry.npmjs.org/framework7/-/framework7-6.3.16.tgz", + "integrity": "sha512-OuOnIQV5TfT8L2j4EHzzlIzmz5F4+IxoxOySEaolsyttvcsrn/pLBzZV8f3gemvLFbNj5tagQBimpH6v67NP6w==", + "hasInstallScript": true, + "dependencies": { + "dom7": "^3.0.0", + "htm": "^3.1.0", + "path-to-regexp": "^6.2.0", + "skeleton-elements": "^3.5.0", + "ssr-window": "^3.0.0", + "swiper": "^6.8.4" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/framework7" + } + }, + "node_modules/framework7-icons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/framework7-icons/-/framework7-icons-3.0.1.tgz", + "integrity": "sha512-nb+4T//4gyWHUE85szKUm2JlMe/yA1ACW73qzF1EI76r2vkeaKOQ36P8/nwrmUQ2bKyojGQ2gVF0ar7XkaKiog==", + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/framework7-react": { + "version": "6.3.16", + "resolved": "https://registry.npmjs.org/framework7-react/-/framework7-react-6.3.16.tgz", + "integrity": "sha512-ztGyirwcOtbTEuYt8zngGgPh+Y2i1NQFNCPqn3NFXuUkwq+WOFwevLfm/MJ7op9+5SrqaFCVGW3YfaAapDyZSQ==", + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/framework7" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", + "dev": true + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", + "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", + "dev": true + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-glob/-/has-glob-1.0.0.tgz", + "integrity": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=", + "dev": true, + "dependencies": { + "is-glob": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-glob/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", + "dev": true + }, + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", + "dev": true + }, + "node_modules/htm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/htm/-/htm-3.1.0.tgz", + "integrity": "sha512-L0s3Sid5r6YwrEvkig14SK3Emmc+kIjlfLhEGn2Vy3bk21JyDEes4MoDsbJk6luaPp8bugErnxPz86ZuAw6e5Q==" + }, + "node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-parse-stringify": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz", + "integrity": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==", + "dependencies": { + "void-elements": "3.1.0" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "dev": true, + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, + "node_modules/http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.6.tgz", + "integrity": "sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/i18next": { + "version": "19.9.2", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-19.9.2.tgz", + "integrity": "sha512-0i6cuo6ER6usEOtKajUUDj92zlG+KArFia0857xxiEHAQcUwh/RtOQocui1LPJwunSYT574Pk64aNva1kwtxZg==", + "dependencies": { + "@babel/runtime": "^7.12.0" + } + }, + "node_modules/i18next-fetch-backend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/i18next-fetch-backend/-/i18next-fetch-backend-3.0.0.tgz", + "integrity": "sha512-UiK9dI81qzEtnhgpKcRPAo67ChYaUaIi1kfRfN+vuFEoP3SPttuIY1RJAnVh7qaYzS573cZtG/7KE+qq5Dn1YQ==" + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/idb": { + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/idb/-/idb-6.1.5.tgz", + "integrity": "sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==", + "dev": true + }, + "node_modules/ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true, + "optional": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "dev": true, + "dependencies": { + "import-from": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "dev": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "dev": true + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "dev": true, + "dependencies": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "node_modules/is-core-module": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "dev": true + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jake": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.2.tgz", + "integrity": "sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==", + "dev": true, + "dependencies": { + "async": "0.9.x", + "chalk": "^2.4.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jake/node_modules/async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", + "dev": true + }, + "node_modules/jake/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jake/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/jake/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/jake/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/jake/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz", + "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/less": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/less/-/less-3.13.1.tgz", + "integrity": "sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==", + "dev": true, + "dependencies": { + "copy-anything": "^2.0.1", + "tslib": "^1.10.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "native-request": "^1.0.5", + "source-map": "~0.6.0" + } + }, + "node_modules/less-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-6.2.0.tgz", + "integrity": "sha512-Cl5h95/Pz/PWub/tCBgT1oNMFeH1WTD33piG80jn5jr12T4XbxZcjThwNXDQ7AG649WEynuIzO4b0+2Tn9Qolg==", + "dev": true, + "dependencies": { + "clone": "^2.1.2", + "less": "^3.11.3", + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/less-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/less/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/less/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/less/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/less/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", + "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "dev": true + }, + "node_modules/log-symbols": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", + "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", + "dev": true, + "dependencies": { + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dev": true, + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "dev": true + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/meow": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-6.1.1.tgz", + "integrity": "sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==", + "dev": true, + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "^4.0.2", + "normalize-package-data": "^2.5.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.13.1", + "yargs-parser": "^18.1.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz", + "integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "node_modules/minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/minimist-options/node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/minipass": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", + "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mobx": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/mobx/-/mobx-6.5.0.tgz", + "integrity": "sha512-pHZ/cySF00FVENDWIDzJyoObFahK6Eg4d0papqm6d7yMkxWTZ/S/csqJX1A3PsYy4t5k3z2QnlwuCfMW5lSEwA==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mobx" + } + }, + "node_modules/mobx-react": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/mobx-react/-/mobx-react-7.3.0.tgz", + "integrity": "sha512-RGEcwZokopqyJE5JPwXKB9FWMSqFM9NJVO2QPI+z6laJTJeBHqvPicjnKgY5mvihxTeXB1+72TnooqUePeGV1g==", + "dev": true, + "dependencies": { + "mobx-react-lite": "^3.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mobx" + }, + "peerDependencies": { + "mobx": "^6.1.0", + "react": "^16.8.0 || ^17" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/mobx-react-lite": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.3.0.tgz", + "integrity": "sha512-U/kMSFtV/bNVgY01FuiGWpRkaQVHozBq5CEBZltFvPt4FcV111hEWkgwqVg9GPPZSEuEdV438PEz8mk8mKpYlA==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mobx" + }, + "peerDependencies": { + "mobx": "^6.1.0", + "react": "^16.8.0 || ^17" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "node_modules/nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "dev": true, + "optional": true + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/native-request": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.1.0.tgz", + "integrity": "sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==", + "dev": true, + "optional": true + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nested-error-stacks": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz", + "integrity": "sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz", + "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==", + "dev": true + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", + "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ora": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz", + "integrity": "sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==", + "dev": true, + "dependencies": { + "chalk": "^3.0.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.2.0", + "is-interactive": "^1.0.0", + "log-symbols": "^3.0.0", + "mute-stream": "0.0.8", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dev": true, + "dependencies": { + "url-parse": "^1.4.3" + } + }, + "node_modules/p-all": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-all/-/p-all-2.1.0.tgz", + "integrity": "sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==", + "dev": true, + "dependencies": { + "p-map": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-all/node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-event": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz", + "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==", + "dev": true, + "dependencies": { + "p-timeout": "^3.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-filter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz", + "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", + "dev": true, + "dependencies": { + "p-map": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-filter/node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-timeout": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", + "dev": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.0.tgz", + "integrity": "sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/portfinder/node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", + "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^6.0.2" + } + }, + "node_modules/postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-gray": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", + "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "dev": true, + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", + "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", + "dev": true, + "dependencies": { + "postcss": "^7.0.14", + "postcss-values-parser": "^2.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "dev": true, + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-colormin/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-convert-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-custom-media": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", + "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-properties": { + "version": "8.0.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", + "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.17", + "postcss-values-parser": "^2.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-selectors/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-dir-pseudo-class/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", + "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-font-variant": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz", + "integrity": "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "dev": true, + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "dev": true, + "dependencies": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "dev": true, + "dependencies": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-loader/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dev": true, + "dependencies": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-params/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dev": true, + "dependencies": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, + "dependencies": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "node_modules/postcss-nesting": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", + "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dev": true, + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dev": true, + "dependencies": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dev": true, + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dev": true, + "dependencies": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-preset-env": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.1.tgz", + "integrity": "sha512-rlRkgX9t0v2On33n7TK8pnkcYOATGQSv48J2RS8GsXhqtg+xk6AummHP88Y5mJo0TLJelBjePvSjScTNkj3+qw==", + "dev": true, + "dependencies": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-pseudo-class-any-link/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dev": true, + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "dev": true, + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-not": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", + "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", + "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-svgo/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/postcss-values-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", + "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", + "dev": true, + "dependencies": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=6.14.4" + } + }, + "node_modules/postcss/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "dev": true, + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==", + "dev": true, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.3.tgz", + "integrity": "sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + }, + "peerDependencies": { + "react": "17.0.2" + } + }, + "node_modules/react-i18next": { + "version": "11.16.1", + "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-11.16.1.tgz", + "integrity": "sha512-6Wf/YtPqANloFmnN5ol0ANeweFPzDWGykRq/dk4wU3ZkjWBR3d5iH210gMg8e8AgLQ1Dq7suUIL7WGfu08OehQ==", + "dependencies": { + "@babel/runtime": "^7.14.5", + "html-escaper": "^2.0.2", + "html-parse-stringify": "^3.0.1" + }, + "peerDependencies": { + "i18next": ">= 19.0.0", + "react": ">= 16.8.0" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/readdirp/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "dependencies": { + "resolve": "^1.9.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", + "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "node_modules/regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz", + "integrity": "sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz", + "integrity": "sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.0.1", + "regjsgen": "^0.6.0", + "regjsparser": "^0.8.2", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", + "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==", + "dev": true + }, + "node_modules/regjsparser": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", + "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dev": true, + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", + "dev": true + }, + "node_modules/rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "2.70.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.70.1.tgz", + "integrity": "sha512-CRYsI5EuzLbXdxC6RnYhOuRdtz4bhejPMSWjsFLfVM/7w/85n2szZv6yExqUXsBdz5KT8eoubeyDUDjhLHEslA==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "node_modules/scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", + "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "node_modules/selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "dev": true, + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.17.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "1.8.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-static": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz", + "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "dev": true, + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + }, + "node_modules/skeleton-elements": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/skeleton-elements/-/skeleton-elements-3.5.0.tgz", + "integrity": "sha512-KOU3wHGyCOtfMWLYF9wn2JzxM/l0Vu4miqqdoz9HeTfd1fwIsEePrcIrZ4+8wbg6yK82UPLLyH7fAZAwhQwZNw==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.0.tgz", + "integrity": "sha512-qVHJlyfdHFht3eBFZdKEXKTlb7I4IV41xnVNo8yUKA1UHcPJwgW2SvTq9LhnjjCywSkSK7c/e4nghU0GOoMCRQ==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "eventsource": "^1.1.0", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://tidelift.com/funding/github/npm/sockjs-client" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "node_modules/ssr-window": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ssr-window/-/ssr-window-3.0.0.tgz", + "integrity": "sha512-q+8UfWDg9Itrg0yWK7oe5p/XRCJpJF9OBtXfOPgSJl+u3Xd5KI328RUEvUqSMVM9CiQUEf1QdBzJMkYGErj9QA==" + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", + "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.1", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dev": true, + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/style-loader": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", + "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/stylehacks/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/svgo/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "node_modules/svgo/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/swiper": { + "version": "6.8.4", + "resolved": "https://registry.npmjs.org/swiper/-/swiper-6.8.4.tgz", + "integrity": "sha512-O+buF9Q+sMA0H7luMS8R59hCaJKlpo8PXhQ6ZYu6Rn2v9OsFd4d1jmrv14QvxtQpKAvL/ZiovEeANI/uDGet7g==", + "funding": [ + { + "type": "patreon", + "url": "https://www.patreon.com/vladimirkharlampidi" + }, + { + "type": "open_collective", + "url": "http://opencollective.com/swiper" + } + ], + "hasInstallScript": true, + "dependencies": { + "dom7": "^3.0.0", + "ssr-window": "^3.0.0" + }, + "engines": { + "node": ">= 4.7.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "dev": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/template7": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/template7/-/template7-1.4.2.tgz", + "integrity": "sha512-eoKnScBMDk7lyj7+iCzKbxGiSLLlQk0DNvmclyJuMCUKxy9JrFuAB+GD5iplF4WiQPtMdI06CHHks3avL22JXA==", + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "dev": true, + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.12.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.12.1.tgz", + "integrity": "sha512-NXbs+7nisos5E+yXwAD+y7zrcTkMqb0dEJxIGtSKPdCBzopf7ni4odPul2aechpV7EXNvOudYOX2bb5tln1jbQ==", + "dev": true, + "dependencies": { + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.1.tgz", + "integrity": "sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==", + "dev": true, + "dependencies": { + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1", + "terser": "^5.7.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/terser/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-regex/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + }, + "node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "node_modules/uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", + "dev": true + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", + "dev": true + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/void-elements": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", + "integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.3.1.tgz", + "integrity": "sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", + "dev": true, + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "node_modules/webpack": { + "version": "5.70.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.70.0.tgz", + "integrity": "sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.9.2", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz", + "integrity": "sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==", + "dev": true, + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.1.1", + "@webpack-cli/info": "^1.4.1", + "@webpack-cli/serve": "^1.6.1", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "execa": "^5.0.0", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "@webpack-cli/migrate": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "dependencies": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-dev-server/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-log/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack-sources/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack/node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "node_modules/wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "node_modules/workbox-background-sync": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.1.tgz", + "integrity": "sha512-T5a35fagLXQvV8Dr4+bDU+XYsP90jJ3eBLjZMKuCNELMQZNj+VekCODz1QK44jgoBeQk+vp94pkZV6G+e41pgg==", + "dev": true, + "dependencies": { + "idb": "^6.1.4", + "workbox-core": "6.5.1" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.1.tgz", + "integrity": "sha512-mb/oyblyEpDbw167cCTyHnC3RqCnCQHtFYuYZd+QTpuExxM60qZuBH1AuQCgvLtDcztBKdEYK2VFD9SZYgRbaQ==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.1" + } + }, + "node_modules/workbox-build": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.1.tgz", + "integrity": "sha512-coDUDzHvFZ1ADOl3wKCsCSyOBvkPKlPgcQDb6LMMShN1zgF31Mev/1HzN3+9T2cjjWAgFwZKkuRyExqc1v21Zw==", + "dev": true, + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.5.1", + "workbox-broadcast-update": "6.5.1", + "workbox-cacheable-response": "6.5.1", + "workbox-core": "6.5.1", + "workbox-expiration": "6.5.1", + "workbox-google-analytics": "6.5.1", + "workbox-navigation-preload": "6.5.1", + "workbox-precaching": "6.5.1", + "workbox-range-requests": "6.5.1", + "workbox-recipes": "6.5.1", + "workbox-routing": "6.5.1", + "workbox-strategies": "6.5.1", + "workbox-streams": "6.5.1", + "workbox-sw": "6.5.1", + "workbox-window": "6.5.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.3.tgz", + "integrity": "sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==", + "dev": true, + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.10.0.tgz", + "integrity": "sha512-bzqAEZOjkrUMl2afH8dknrq5KEk2SrwdBROR+vH1EKVQTqaUbJVPdc/gEdggTMM0Se+s+Ja4ju4TlNcStKl2Hw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dev": true, + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.1.tgz", + "integrity": "sha512-3TdtH/luDiytmM+Cn72HCBLZXmbeRNJqZx2yaVOfUZhj0IVwZqQXhNarlGE9/k6U5Jelb+TtpH2mLVhnzfiSMg==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.1" + } + }, + "node_modules/workbox-core": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.1.tgz", + "integrity": "sha512-qObXZ39aFJ2N8X7IUbGrJHKWguliCuU1jOXM/I4MTT84u9BiKD2rHMkIzgeRP1Ixu9+cXU4/XHJq3Cy0Qqc5hw==", + "dev": true + }, + "node_modules/workbox-expiration": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.1.tgz", + "integrity": "sha512-iY/cTADAQATMmPkUBRmQdacqq0TJd2wMHimBQz+tRnPGHSMH+/BoLPABPnu7O7rT/g/s59CUYYRGxe3mEgoJCA==", + "dev": true, + "dependencies": { + "idb": "^6.1.4", + "workbox-core": "6.5.1" + } + }, + "node_modules/workbox-google-analytics": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.1.tgz", + "integrity": "sha512-qZU46/h4dbionYT6Yk6iBkUwpiEzAfnO1W7KkI+AMmY7G9/gA03dQQ7rpTw8F4vWrG7ahTUGWDFv6fERtaw1BQ==", + "dev": true, + "dependencies": { + "workbox-background-sync": "6.5.1", + "workbox-core": "6.5.1", + "workbox-routing": "6.5.1", + "workbox-strategies": "6.5.1" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.1.tgz", + "integrity": "sha512-aKrgAbn2IMgzTowTi/ZyKdQUcES2m++9aGtpxqsX7Gn9ovCY8zcssaMEAMMwrIeveij5HiWNBrmj6MWDHi+0rg==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.1" + } + }, + "node_modules/workbox-precaching": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.1.tgz", + "integrity": "sha512-EzlPBxvmjGfE56YZzsT/vpVkpLG1XJhoplgXa5RPyVWLUL1LbwEAxhkrENElSS/R9tgiTw80IFwysidfUqLihg==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.1", + "workbox-routing": "6.5.1", + "workbox-strategies": "6.5.1" + } + }, + "node_modules/workbox-range-requests": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.1.tgz", + "integrity": "sha512-57Da/qRbd9v33YlHX0rlSUVFmE4THCjKqwkmfhY3tNLnSKN2L5YBS3qhWeDO0IrMNgUj+rGve2moKYXeUqQt4A==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.1" + } + }, + "node_modules/workbox-recipes": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.1.tgz", + "integrity": "sha512-DGsyKygHggcGPQpWafC/Nmbm1Ny3sB2vE9r//3UbeidXiQ+pLF14KEG1/0NNGRaY+lfOXOagq6d1H7SC8KA+rA==", + "dev": true, + "dependencies": { + "workbox-cacheable-response": "6.5.1", + "workbox-core": "6.5.1", + "workbox-expiration": "6.5.1", + "workbox-precaching": "6.5.1", + "workbox-routing": "6.5.1", + "workbox-strategies": "6.5.1" + } + }, + "node_modules/workbox-routing": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.1.tgz", + "integrity": "sha512-yAAncdTwanvlR8KPjubyvFKeAok8ZcIws6UKxvIAg0I+wsf7UYi93DXNuZr6RBSQrByrN6HkCyjuhmk8P63+PA==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.1" + } + }, + "node_modules/workbox-strategies": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.1.tgz", + "integrity": "sha512-JNaTXPy8wXzKkr+6za7/eJX9opoZk7UgY261I2kPxl80XQD8lMjz0vo9EOcBwvD72v3ZhGJbW84ZaDwFEhFvWA==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.1" + } + }, + "node_modules/workbox-streams": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.1.tgz", + "integrity": "sha512-7jaTWm6HRGJ/ewECnhb+UgjTT50R42E0/uNCC4eTKQwnLO/NzNGjoXTdQgFjo4zteR+L/K6AtFAiYKH3ZJbAYw==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.1", + "workbox-routing": "6.5.1" + } + }, + "node_modules/workbox-sw": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.1.tgz", + "integrity": "sha512-hVrQa19yo9wzN1fQQ/h2JlkzFpkuH2qzYT2/rk7CLaWt6tLnTJVFCNHlGRRPhytZSf++LoIy7zThT714sowT/Q==", + "dev": true + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.1.tgz", + "integrity": "sha512-SHtlQBpKruI16CAYhICDMkgjXE2fH5Yp+D+1UmBfRVhByZYzusVOykvnPm8ObJb9d/tXgn9yoppoxafFS7D4vQ==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.5.1" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "node_modules/workbox-window": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.1.tgz", + "integrity": "sha512-oRlun9u7b7YEjo2fIDBqJkU2hXtrEljXcOytRhfeQRbqXxjUOpFgXSGRSAkmDx1MlKUNOSbr+zfi8h5n7In3yA==", + "dev": true, + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.5.1" + } + }, + "node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yargs/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz", + "integrity": "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.0" + } + }, + "@babel/code-frame": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "dev": true, + "requires": { + "@babel/highlight": "^7.16.7" + } + }, + "@babel/compat-data": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.7.tgz", + "integrity": "sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==", + "dev": true + }, + "@babel/core": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.8.tgz", + "integrity": "sha512-OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.7", + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-module-transforms": "^7.17.7", + "@babel/helpers": "^7.17.8", + "@babel/parser": "^7.17.8", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0" + } + }, + "@babel/generator": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.7.tgz", + "integrity": "sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==", + "dev": true, + "requires": { + "@babel/types": "^7.17.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz", + "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz", + "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz", + "integrity": "sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-validator-option": "^7.16.7", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.17.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz", + "integrity": "sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz", + "integrity": "sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "regexpu-core": "^5.0.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz", + "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + } + }, + "@babel/helper-environment-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", + "dev": true, + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz", + "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==", + "dev": true, + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz", + "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz", + "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz", + "integrity": "sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==", + "dev": true, + "requires": { + "@babel/types": "^7.17.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-module-transforms": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz", + "integrity": "sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.17.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz", + "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==", + "dev": true, + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz", + "integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-wrap-function": "^7.16.8", + "@babel/types": "^7.16.8" + } + }, + "@babel/helper-replace-supers": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz", + "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-simple-access": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz", + "integrity": "sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==", + "dev": true, + "requires": { + "@babel/types": "^7.17.0" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.7" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz", + "integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8" + } + }, + "@babel/helpers": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.8.tgz", + "integrity": "sha512-QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw==", + "dev": true, + "requires": { + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0" + } + }, + "@babel/highlight": { + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.16.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.8.tgz", + "integrity": "sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ==", + "dev": true + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz", + "integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz", + "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.7" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz", + "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz", + "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.17.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz", + "integrity": "sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.17.6", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.17.8.tgz", + "integrity": "sha512-U69odN4Umyyx1xO1rTII0IDkAEC+RNlcKXtqOblfpzqy1C+aOplb76BQNq0+XdpVkOaPlpEDwd++joY8FNFJKA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.17.6", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/plugin-syntax-decorators": "^7.17.0", + "charcodes": "^0.2.0" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz", + "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz", + "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz", + "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz", + "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz", + "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz", + "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz", + "integrity": "sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.17.0", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.16.7" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz", + "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz", + "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz", + "integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.10", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz", + "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz", + "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.17.0.tgz", + "integrity": "sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz", + "integrity": "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz", + "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz", + "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz", + "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz", + "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz", + "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz", + "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz", + "integrity": "sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz", + "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz", + "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz", + "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz", + "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz", + "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz", + "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz", + "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz", + "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.7.tgz", + "integrity": "sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-simple-access": "^7.17.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz", + "integrity": "sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-module-transforms": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz", + "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz", + "integrity": "sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz", + "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz", + "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz", + "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz", + "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz", + "integrity": "sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.3.tgz", + "integrity": "sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/plugin-syntax-jsx": "^7.16.7", + "@babel/types": "^7.17.0" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz", + "integrity": "sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==", + "dev": true, + "requires": { + "@babel/plugin-transform-react-jsx": "^7.16.7" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.7.tgz", + "integrity": "sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz", + "integrity": "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==", + "dev": true, + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz", + "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.17.0.tgz", + "integrity": "sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "semver": "^6.3.0" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz", + "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz", + "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz", + "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz", + "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz", + "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz", + "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz", + "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" + } + }, + "@babel/preset-env": { + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz", + "integrity": "sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.16.8", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-async-generator-functions": "^7.16.8", + "@babel/plugin-proposal-class-properties": "^7.16.7", + "@babel/plugin-proposal-class-static-block": "^7.16.7", + "@babel/plugin-proposal-dynamic-import": "^7.16.7", + "@babel/plugin-proposal-export-namespace-from": "^7.16.7", + "@babel/plugin-proposal-json-strings": "^7.16.7", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", + "@babel/plugin-proposal-numeric-separator": "^7.16.7", + "@babel/plugin-proposal-object-rest-spread": "^7.16.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", + "@babel/plugin-proposal-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.11", + "@babel/plugin-proposal-private-property-in-object": "^7.16.7", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.16.7", + "@babel/plugin-transform-async-to-generator": "^7.16.8", + "@babel/plugin-transform-block-scoped-functions": "^7.16.7", + "@babel/plugin-transform-block-scoping": "^7.16.7", + "@babel/plugin-transform-classes": "^7.16.7", + "@babel/plugin-transform-computed-properties": "^7.16.7", + "@babel/plugin-transform-destructuring": "^7.16.7", + "@babel/plugin-transform-dotall-regex": "^7.16.7", + "@babel/plugin-transform-duplicate-keys": "^7.16.7", + "@babel/plugin-transform-exponentiation-operator": "^7.16.7", + "@babel/plugin-transform-for-of": "^7.16.7", + "@babel/plugin-transform-function-name": "^7.16.7", + "@babel/plugin-transform-literals": "^7.16.7", + "@babel/plugin-transform-member-expression-literals": "^7.16.7", + "@babel/plugin-transform-modules-amd": "^7.16.7", + "@babel/plugin-transform-modules-commonjs": "^7.16.8", + "@babel/plugin-transform-modules-systemjs": "^7.16.7", + "@babel/plugin-transform-modules-umd": "^7.16.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8", + "@babel/plugin-transform-new-target": "^7.16.7", + "@babel/plugin-transform-object-super": "^7.16.7", + "@babel/plugin-transform-parameters": "^7.16.7", + "@babel/plugin-transform-property-literals": "^7.16.7", + "@babel/plugin-transform-regenerator": "^7.16.7", + "@babel/plugin-transform-reserved-words": "^7.16.7", + "@babel/plugin-transform-shorthand-properties": "^7.16.7", + "@babel/plugin-transform-spread": "^7.16.7", + "@babel/plugin-transform-sticky-regex": "^7.16.7", + "@babel/plugin-transform-template-literals": "^7.16.7", + "@babel/plugin-transform-typeof-symbol": "^7.16.7", + "@babel/plugin-transform-unicode-escapes": "^7.16.7", + "@babel/plugin-transform-unicode-regex": "^7.16.7", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.8", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.20.2", + "semver": "^6.3.0" + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.7.tgz", + "integrity": "sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-transform-react-display-name": "^7.16.7", + "@babel/plugin-transform-react-jsx": "^7.16.7", + "@babel/plugin-transform-react-jsx-development": "^7.16.7", + "@babel/plugin-transform-react-pure-annotations": "^7.16.7" + } + }, + "@babel/runtime": { + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.8.tgz", + "integrity": "sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/traverse": { + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz", + "integrity": "sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.3", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.17.3", + "@babel/types": "^7.17.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz", + "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.16.7", + "to-fast-properties": "^2.0.0" + } + }, + "@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==", + "dev": true + }, + "@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true + }, + "@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true + }, + "@jridgewell/resolve-uri": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz", + "integrity": "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.11", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz", + "integrity": "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz", + "integrity": "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "dev": true, + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + }, + "dependencies": { + "glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", + "dev": true + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dev": true, + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + }, + "dependencies": { + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "dev": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + } + }, + "@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + } + }, + "@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "dev": true, + "requires": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + } + }, + "@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dev": true, + "requires": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + } + }, + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dev": true, + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + } + } + }, + "@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "dev": true, + "requires": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "@types/eslint": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.1.tgz", + "integrity": "sha512-GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", + "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "dev": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.10.tgz", + "integrity": "sha512-BLO9bBq59vW3fxCpD4o0N4U+DXsvwvIcl+jofw0frQo/GrBFC+/jRZj1E7kgp6dvTyNmA4y6JCV5Id/r3mNP5A==", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true + }, + "@types/node": { + "version": "17.0.21", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.21.tgz", + "integrity": "sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==", + "dev": true + }, + "@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true + }, + "@types/tapable": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz", + "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==", + "dev": true + }, + "@types/trusted-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", + "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==", + "dev": true + }, + "@types/uglify-js": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz", + "integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@types/webpack": { + "version": "4.41.32", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.32.tgz", + "integrity": "sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webpack-cli/configtest": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.1.tgz", + "integrity": "sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==", + "dev": true, + "requires": {} + }, + "@webpack-cli/info": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.1.tgz", + "integrity": "sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==", + "dev": true, + "requires": { + "envinfo": "^7.7.3" + } + }, + "@webpack-cli/serve": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.1.tgz", + "integrity": "sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==", + "dev": true, + "requires": {} + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", + "dev": true + }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "requires": {} + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "requires": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", + "dev": true + }, + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "dev": true, + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + } + } + }, + "babel-loader": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz", + "integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==", + "dev": true, + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz", + "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.1", + "semver": "^6.1.1" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", + "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.1", + "core-js-compat": "^3.21.0" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", + "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.1" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.9.7", + "raw-body": "2.4.3", + "type-is": "~1.6.18" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.20.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz", + "integrity": "sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001317", + "electron-to-chromium": "^1.4.84", + "escalade": "^3.1.1", + "node-releases": "^2.0.2", + "picocolors": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "builtin-modules": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", + "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true + }, + "cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dev": true, + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "call-me-maybe": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", + "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", + "dev": true + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dev": true, + "requires": { + "callsites": "^2.0.0" + } + }, + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dev": true, + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "dev": true + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + } + } + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001319", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001319.tgz", + "integrity": "sha512-xjlIAFHucBRSMUo1kb5D4LYgcN1M45qdKP++lhqowDpwJwGkpIRTt5qQqnhxjj1vHcI7nrJxWhCC1ATrCEBTcw==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "charcodes": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/charcodes/-/charcodes-0.2.0.tgz", + "integrity": "sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==", + "dev": true + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + } + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + } + }, + "clean-css": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.2.4.tgz", + "integrity": "sha512-nKseG8wCzEuji/4yrgM/5cthL9oTDc5UOQyFMvW/Q53oP6gLH690o1NbuTh6Y18nujr7BxlsFuS7gXLnLzKJGg==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "clean-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==", + "dev": true, + "requires": { + "@types/webpack": "^4.4.31", + "del": "^4.1.1" + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-spinners": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", + "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dev": true, + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dev": true, + "requires": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "color-string": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz", + "integrity": "sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==", + "dev": true, + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "colorette": { + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", + "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==", + "dev": true + }, + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true + }, + "common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "dev": true, + "requires": { + "is-what": "^3.14.1" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "copy-webpack-plugin": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.4.1.tgz", + "integrity": "sha512-MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA==", + "dev": true, + "requires": { + "cacache": "^15.0.5", + "fast-glob": "^3.2.4", + "find-cache-dir": "^3.3.1", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "core-js-compat": { + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.1.tgz", + "integrity": "sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==", + "dev": true, + "requires": { + "browserslist": "^4.19.1", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true + } + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "cp-file": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cp-file/-/cp-file-7.0.0.tgz", + "integrity": "sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "nested-error-stacks": "^2.0.0", + "p-event": "^4.1.0" + } + }, + "cpy": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/cpy/-/cpy-8.1.2.tgz", + "integrity": "sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==", + "dev": true, + "requires": { + "arrify": "^2.0.1", + "cp-file": "^7.0.0", + "globby": "^9.2.0", + "has-glob": "^1.0.0", + "junk": "^3.1.0", + "nested-error-stacks": "^2.1.0", + "p-all": "^2.1.0", + "p-filter": "^2.1.0", + "p-map": "^3.0.0" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "dev": true, + "requires": { + "path-type": "^3.0.0" + } + }, + "fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "dev": true, + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "globby": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-9.2.0.tgz", + "integrity": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^1.0.2", + "dir-glob": "^2.2.2", + "fast-glob": "^2.2.6", + "glob": "^7.1.3", + "ignore": "^4.0.3", + "pify": "^4.0.1", + "slash": "^2.0.0" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + } + } + }, + "p-map": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "cpy-cli": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/cpy-cli/-/cpy-cli-3.1.1.tgz", + "integrity": "sha512-HCpNdBkQy3rw+uARLuIf0YurqsMXYzBa9ihhSAuxYJcNIrqrSq3BstPfr0cQN38AdMrQiO9Dp4hYy7GtGJsLPg==", + "dev": true, + "requires": { + "cpy": "^8.0.0", + "meow": "^6.1.1" + } + }, + "cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.1" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true + }, + "css-blank-pseudo": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", + "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "dev": true + }, + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dev": true, + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + } + }, + "css-has-pseudo": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", + "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^5.0.0-rc.4" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "css-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz", + "integrity": "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==", + "dev": true, + "requires": { + "camelcase": "^6.0.0", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^2.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.3", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.1", + "semver": "^7.3.2" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "css-minimizer-webpack-plugin": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-1.3.0.tgz", + "integrity": "sha512-jFa0Siplmfef4ndKglpVaduY47oHQwioAOEGK0f0vAX0s+vc+SmP6cCMoc+8Adau5600RnOEld5VVdC8CQau7w==", + "dev": true, + "requires": { + "cacache": "^15.0.5", + "cssnano": "^4.1.10", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.3.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "css-prefers-color-scheme": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", + "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "css-select": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.2.1.tgz", + "integrity": "sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.1.0", + "domhandler": "^4.3.0", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "dev": true + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dev": true, + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "css-what": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz", + "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==", + "dev": true + }, + "cssdb": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", + "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "cssnano": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", + "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", + "dev": true, + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", + "dev": true, + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", + "dev": true + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", + "dev": true + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "dev": true + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decamelize-keys": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", + "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", + "dev": true, + "requires": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + } + } + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true, + "requires": { + "clone": "^1.0.2" + }, + "dependencies": { + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "dom7": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/dom7/-/dom7-3.0.0.tgz", + "integrity": "sha512-oNlcUdHsC4zb7Msx7JN3K0Nro1dzJ48knvBOnDPKJ2GV9wl1i5vydJZUSyOfrkKFDZEud/jBsTk92S/VGSAe/g==", + "requires": { + "ssr-window": "^3.0.0-alpha.1" + } + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "dev": true + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + }, + "dependencies": { + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + } + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "ejs": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.6.tgz", + "integrity": "sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==", + "dev": true, + "requires": { + "jake": "^10.6.1" + } + }, + "electron-to-chromium": { + "version": "1.4.88", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.88.tgz", + "integrity": "sha512-oA7mzccefkvTNi9u7DXmT0LqvhnOiN2BhSrKerta7HeUC1cLoIwtbf2wL+Ah2ozh5KQd3/1njrGrwDBXx6d14Q==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.9.2.tgz", + "integrity": "sha512-GIm3fQfwLJ8YZx2smuHpBKkXC1yOk+OBEmKckVyL0i/ea8mqDEykK3ld5dgH1QYPNyT/lIllxV2LULnxCHaHkA==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "eventsource": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "dev": true, + "requires": { + "original": "^1.0.0" + } + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "express": { + "version": "4.17.3", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.3.tgz", + "integrity": "sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==", + "dev": true, + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.19.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.4.2", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.9.7", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.17.2", + "serve-static": "1.14.2", + "setprototypeof": "1.2.0", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "filelist": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.2.tgz", + "integrity": "sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==", + "dev": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==", + "dev": true + }, + "follow-redirects": { + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", + "dev": true + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "framework7": { + "version": "6.3.16", + "resolved": "https://registry.npmjs.org/framework7/-/framework7-6.3.16.tgz", + "integrity": "sha512-OuOnIQV5TfT8L2j4EHzzlIzmz5F4+IxoxOySEaolsyttvcsrn/pLBzZV8f3gemvLFbNj5tagQBimpH6v67NP6w==", + "requires": { + "dom7": "^3.0.0", + "htm": "^3.1.0", + "path-to-regexp": "^6.2.0", + "skeleton-elements": "^3.5.0", + "ssr-window": "^3.0.0", + "swiper": "^6.8.4" + } + }, + "framework7-icons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/framework7-icons/-/framework7-icons-3.0.1.tgz", + "integrity": "sha512-nb+4T//4gyWHUE85szKUm2JlMe/yA1ACW73qzF1EI76r2vkeaKOQ36P8/nwrmUQ2bKyojGQ2gVF0ar7XkaKiog==" + }, + "framework7-react": { + "version": "6.3.16", + "resolved": "https://registry.npmjs.org/framework7-react/-/framework7-react-6.3.16.tgz", + "integrity": "sha512-ztGyirwcOtbTEuYt8zngGgPh+Y2i1NQFNCPqn3NFXuUkwq+WOFwevLfm/MJ7op9+5SrqaFCVGW3YfaAapDyZSQ==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", + "dev": true + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", + "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", + "dev": true + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-glob/-/has-glob-1.0.0.tgz", + "integrity": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=", + "dev": true, + "requires": { + "is-glob": "^3.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", + "dev": true + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", + "dev": true + }, + "htm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/htm/-/htm-3.1.0.tgz", + "integrity": "sha512-L0s3Sid5r6YwrEvkig14SK3Emmc+kIjlfLhEGn2Vy3bk21JyDEes4MoDsbJk6luaPp8bugErnxPz86ZuAw6e5Q==" + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dev": true, + "requires": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + } + }, + "html-parse-stringify": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz", + "integrity": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==", + "requires": { + "void-elements": "3.1.0" + } + }, + "html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "dev": true, + "requires": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, + "http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + } + }, + "http-parser-js": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.6.tgz", + "integrity": "sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + } + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "i18next": { + "version": "19.9.2", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-19.9.2.tgz", + "integrity": "sha512-0i6cuo6ER6usEOtKajUUDj92zlG+KArFia0857xxiEHAQcUwh/RtOQocui1LPJwunSYT574Pk64aNva1kwtxZg==", + "requires": { + "@babel/runtime": "^7.12.0" + } + }, + "i18next-fetch-backend": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/i18next-fetch-backend/-/i18next-fetch-backend-3.0.0.tgz", + "integrity": "sha512-UiK9dI81qzEtnhgpKcRPAo67ChYaUaIi1kfRfN+vuFEoP3SPttuIY1RJAnVh7qaYzS573cZtG/7KE+qq5Dn1YQ==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "dev": true, + "requires": { + "postcss": "^7.0.14" + } + }, + "idb": { + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/idb/-/idb-6.1.5.tgz", + "integrity": "sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==", + "dev": true + }, + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true, + "optional": true + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "dev": true, + "requires": { + "import-from": "^2.1.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "dev": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + }, + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "dev": true, + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "is-core-module": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "dev": true + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "dev": true + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "dev": true + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "jake": { + "version": "10.8.2", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.2.tgz", + "integrity": "sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==", + "dev": true, + "requires": { + "async": "0.9.x", + "chalk": "^2.4.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonpointer": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz", + "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==", + "dev": true + }, + "junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "less": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/less/-/less-3.13.1.tgz", + "integrity": "sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==", + "dev": true, + "requires": { + "copy-anything": "^2.0.1", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "native-request": "^1.0.5", + "source-map": "~0.6.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "less-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-6.2.0.tgz", + "integrity": "sha512-Cl5h95/Pz/PWub/tCBgT1oNMFeH1WTD33piG80jn5jr12T4XbxZcjThwNXDQ7AG649WEynuIzO4b0+2Tn9Qolg==", + "dev": true, + "requires": { + "clone": "^2.1.2", + "less": "^3.11.3", + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", + "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==", + "dev": true + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "dev": true + }, + "log-symbols": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", + "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", + "dev": true, + "requires": { + "chalk": "^2.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "dev": true + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.8" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "dev": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "meow": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-6.1.1.tgz", + "integrity": "sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "^4.0.2", + "normalize-package-data": "^2.5.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.13.1", + "yargs-parser": "^18.1.3" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true + }, + "mini-css-extract-plugin": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz", + "integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "dependencies": { + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + } + } + }, + "minipass": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", + "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "mobx": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/mobx/-/mobx-6.5.0.tgz", + "integrity": "sha512-pHZ/cySF00FVENDWIDzJyoObFahK6Eg4d0papqm6d7yMkxWTZ/S/csqJX1A3PsYy4t5k3z2QnlwuCfMW5lSEwA==", + "dev": true + }, + "mobx-react": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/mobx-react/-/mobx-react-7.3.0.tgz", + "integrity": "sha512-RGEcwZokopqyJE5JPwXKB9FWMSqFM9NJVO2QPI+z6laJTJeBHqvPicjnKgY5mvihxTeXB1+72TnooqUePeGV1g==", + "dev": true, + "requires": { + "mobx-react-lite": "^3.3.0" + } + }, + "mobx-react-lite": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.3.0.tgz", + "integrity": "sha512-U/kMSFtV/bNVgY01FuiGWpRkaQVHozBq5CEBZltFvPt4FcV111hEWkgwqVg9GPPZSEuEdV438PEz8mk8mKpYlA==", + "dev": true, + "requires": {} + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "dev": true, + "optional": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "native-request": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.1.0.tgz", + "integrity": "sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==", + "dev": true, + "optional": true + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nested-error-stacks": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz", + "integrity": "sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true + }, + "node-releases": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz", + "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "nth-check": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", + "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", + "dev": true + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "ora": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz", + "integrity": "sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==", + "dev": true, + "requires": { + "chalk": "^3.0.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.2.0", + "is-interactive": "^1.0.0", + "log-symbols": "^3.0.0", + "mute-stream": "0.0.8", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dev": true, + "requires": { + "url-parse": "^1.4.3" + } + }, + "p-all": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-all/-/p-all-2.1.0.tgz", + "integrity": "sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==", + "dev": true, + "requires": { + "p-map": "^2.0.0" + }, + "dependencies": { + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + } + } + }, + "p-event": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz", + "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==", + "dev": true, + "requires": { + "p-timeout": "^3.1.0" + } + }, + "p-filter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz", + "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", + "dev": true, + "requires": { + "p-map": "^2.0.0" + }, + "dependencies": { + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + } + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + } + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, + "p-timeout": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", + "dev": true, + "requires": { + "p-finally": "^1.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.0.tgz", + "integrity": "sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg==" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "postcss-attribute-case-insensitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", + "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^6.0.2" + } + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "dev": true, + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-gray": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", + "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "dev": true, + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-hex-alpha": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", + "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", + "dev": true, + "requires": { + "postcss": "^7.0.14", + "postcss-values-parser": "^2.0.1" + } + }, + "postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "dev": true, + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-custom-media": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", + "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "dev": true, + "requires": { + "postcss": "^7.0.14" + } + }, + "postcss-custom-properties": { + "version": "8.0.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", + "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "dev": true, + "requires": { + "postcss": "^7.0.17", + "postcss-values-parser": "^2.0.1" + } + }, + "postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-double-position-gradients": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", + "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "dev": true, + "requires": { + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-font-variant": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-initial": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz", + "integrity": "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "dev": true, + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "dev": true, + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + } + }, + "postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "dev": true, + "requires": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + } + } + }, + "postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dev": true, + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dev": true, + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dev": true, + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dev": true, + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dev": true, + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "postcss-nesting": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", + "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dev": true, + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dev": true, + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-preset-env": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.1.tgz", + "integrity": "sha512-rlRkgX9t0v2On33n7TK8pnkcYOATGQSv48J2RS8GsXhqtg+xk6AummHP88Y5mJo0TLJelBjePvSjScTNkj3+qw==", + "dev": true, + "requires": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + } + }, + "postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "dev": true, + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "dev": true + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dev": true, + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "dev": true, + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "postcss-selector-not": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", + "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "postcss-selector-parser": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", + "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "postcss-values-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", + "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", + "dev": true, + "requires": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "dev": true + }, + "pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "requires": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true + }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "dev": true + }, + "qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "raw-body": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.3.tgz", + "integrity": "sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + } + } + }, + "react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + } + }, + "react-i18next": { + "version": "11.16.1", + "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-11.16.1.tgz", + "integrity": "sha512-6Wf/YtPqANloFmnN5ol0ANeweFPzDWGykRq/dk4wU3ZkjWBR3d5iH210gMg8e8AgLQ1Dq7suUIL7WGfu08OehQ==", + "requires": { + "@babel/runtime": "^7.14.5", + "html-escaper": "^2.0.2", + "html-parse-stringify": "^3.0.1" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + } + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "requires": { + "resolve": "^1.9.0" + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", + "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", + "dev": true, + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "regexp.prototype.flags": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz", + "integrity": "sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpu-core": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz", + "integrity": "sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==", + "dev": true, + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.0.1", + "regjsgen": "^0.6.0", + "regjsparser": "^0.8.2", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + } + }, + "regjsgen": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", + "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==", + "dev": true + }, + "regjsparser": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", + "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "dev": true + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dev": true, + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "resolve": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "dev": true, + "requires": { + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + } + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", + "dev": true + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "2.70.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.70.1.tgz", + "integrity": "sha512-CRYsI5EuzLbXdxC6RnYhOuRdtz4bhejPMSWjsFLfVM/7w/85n2szZv6yExqUXsBdz5KT8eoubeyDUDjhLHEslA==", + "dev": true, + "requires": { + "fsevents": "~2.3.2" + } + }, + "rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "dependencies": { + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + } + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", + "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "dev": true, + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "send": { + "version": "0.17.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "1.8.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz", + "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.2" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "dev": true, + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + } + } + }, + "skeleton-elements": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/skeleton-elements/-/skeleton-elements-3.5.0.tgz", + "integrity": "sha512-KOU3wHGyCOtfMWLYF9wn2JzxM/l0Vu4miqqdoz9HeTfd1fwIsEePrcIrZ4+8wbg6yK82UPLLyH7fAZAwhQwZNw==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "sockjs-client": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.0.tgz", + "integrity": "sha512-qVHJlyfdHFht3eBFZdKEXKTlb7I4IV41xnVNo8yUKA1UHcPJwgW2SvTq9LhnjjCywSkSK7c/e4nghU0GOoMCRQ==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "eventsource": "^1.1.0", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "dev": true + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", + "dev": true + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "ssr-window": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ssr-window/-/ssr-window-3.0.0.tgz", + "integrity": "sha512-q+8UfWDg9Itrg0yWK7oe5p/XRCJpJF9OBtXfOPgSJl+u3Xd5KI328RUEvUqSMVM9CiQUEf1QdBzJMkYGErj9QA==" + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "string.prototype.matchall": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", + "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.1", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dev": true, + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "dev": true + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "requires": { + "min-indent": "^1.0.0" + } + }, + "style-loader": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", + "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "dev": true + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": { + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "requires": { + "boolbase": "~1.0.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "swiper": { + "version": "6.8.4", + "resolved": "https://registry.npmjs.org/swiper/-/swiper-6.8.4.tgz", + "integrity": "sha512-O+buF9Q+sMA0H7luMS8R59hCaJKlpo8PXhQ6ZYu6Rn2v9OsFd4d1jmrv14QvxtQpKAvL/ZiovEeANI/uDGet7g==", + "requires": { + "dom7": "^3.0.0", + "ssr-window": "^3.0.0" + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + }, + "tar": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "dev": true + }, + "template7": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/template7/-/template7-1.4.2.tgz", + "integrity": "sha512-eoKnScBMDk7lyj7+iCzKbxGiSLLlQk0DNvmclyJuMCUKxy9JrFuAB+GD5iplF4WiQPtMdI06CHHks3avL22JXA==" + }, + "tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "dev": true, + "requires": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "dependencies": { + "type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "dev": true + } + } + }, + "terser": { + "version": "5.12.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.12.1.tgz", + "integrity": "sha512-NXbs+7nisos5E+yXwAD+y7zrcTkMqb0dEJxIGtSKPdCBzopf7ni4odPul2aechpV7EXNvOudYOX2bb5tln1jbQ==", + "dev": true, + "requires": { + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "terser-webpack-plugin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.1.tgz", + "integrity": "sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==", + "dev": true, + "requires": { + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1", + "terser": "^5.7.2" + }, + "dependencies": { + "jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true + }, + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==", + "dev": true + }, + "type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", + "dev": true + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "dev": true + }, + "void-elements": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", + "integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=" + }, + "watchpack": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.3.1.tgz", + "integrity": "sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==", + "dev": true, + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "webpack": { + "version": "5.70.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.70.0.tgz", + "integrity": "sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.9.2", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.1", + "webpack-sources": "^3.2.3" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true + } + } + }, + "webpack-cli": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.2.tgz", + "integrity": "sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==", + "dev": true, + "requires": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.1.1", + "@webpack-cli/info": "^1.4.1", + "@webpack-cli/serve": "^1.6.1", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "execa": "^5.0.0", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + } + } + }, + "webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "requires": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + } + } + }, + "webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "workbox-background-sync": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.1.tgz", + "integrity": "sha512-T5a35fagLXQvV8Dr4+bDU+XYsP90jJ3eBLjZMKuCNELMQZNj+VekCODz1QK44jgoBeQk+vp94pkZV6G+e41pgg==", + "dev": true, + "requires": { + "idb": "^6.1.4", + "workbox-core": "6.5.1" + } + }, + "workbox-broadcast-update": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.1.tgz", + "integrity": "sha512-mb/oyblyEpDbw167cCTyHnC3RqCnCQHtFYuYZd+QTpuExxM60qZuBH1AuQCgvLtDcztBKdEYK2VFD9SZYgRbaQ==", + "dev": true, + "requires": { + "workbox-core": "6.5.1" + } + }, + "workbox-build": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.1.tgz", + "integrity": "sha512-coDUDzHvFZ1ADOl3wKCsCSyOBvkPKlPgcQDb6LMMShN1zgF31Mev/1HzN3+9T2cjjWAgFwZKkuRyExqc1v21Zw==", + "dev": true, + "requires": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.5.1", + "workbox-broadcast-update": "6.5.1", + "workbox-cacheable-response": "6.5.1", + "workbox-core": "6.5.1", + "workbox-expiration": "6.5.1", + "workbox-google-analytics": "6.5.1", + "workbox-navigation-preload": "6.5.1", + "workbox-precaching": "6.5.1", + "workbox-range-requests": "6.5.1", + "workbox-recipes": "6.5.1", + "workbox-routing": "6.5.1", + "workbox-strategies": "6.5.1", + "workbox-streams": "6.5.1", + "workbox-sw": "6.5.1", + "workbox-window": "6.5.1" + }, + "dependencies": { + "@apideck/better-ajv-errors": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.3.tgz", + "integrity": "sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==", + "dev": true, + "requires": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + } + }, + "ajv": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.10.0.tgz", + "integrity": "sha512-bzqAEZOjkrUMl2afH8dknrq5KEk2SrwdBROR+vH1EKVQTqaUbJVPdc/gEdggTMM0Se+s+Ja4ju4TlNcStKl2Hw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dev": true, + "requires": { + "whatwg-url": "^7.0.0" + } + } + } + }, + "workbox-cacheable-response": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.1.tgz", + "integrity": "sha512-3TdtH/luDiytmM+Cn72HCBLZXmbeRNJqZx2yaVOfUZhj0IVwZqQXhNarlGE9/k6U5Jelb+TtpH2mLVhnzfiSMg==", + "dev": true, + "requires": { + "workbox-core": "6.5.1" + } + }, + "workbox-core": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.1.tgz", + "integrity": "sha512-qObXZ39aFJ2N8X7IUbGrJHKWguliCuU1jOXM/I4MTT84u9BiKD2rHMkIzgeRP1Ixu9+cXU4/XHJq3Cy0Qqc5hw==", + "dev": true + }, + "workbox-expiration": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.1.tgz", + "integrity": "sha512-iY/cTADAQATMmPkUBRmQdacqq0TJd2wMHimBQz+tRnPGHSMH+/BoLPABPnu7O7rT/g/s59CUYYRGxe3mEgoJCA==", + "dev": true, + "requires": { + "idb": "^6.1.4", + "workbox-core": "6.5.1" + } + }, + "workbox-google-analytics": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.1.tgz", + "integrity": "sha512-qZU46/h4dbionYT6Yk6iBkUwpiEzAfnO1W7KkI+AMmY7G9/gA03dQQ7rpTw8F4vWrG7ahTUGWDFv6fERtaw1BQ==", + "dev": true, + "requires": { + "workbox-background-sync": "6.5.1", + "workbox-core": "6.5.1", + "workbox-routing": "6.5.1", + "workbox-strategies": "6.5.1" + } + }, + "workbox-navigation-preload": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.1.tgz", + "integrity": "sha512-aKrgAbn2IMgzTowTi/ZyKdQUcES2m++9aGtpxqsX7Gn9ovCY8zcssaMEAMMwrIeveij5HiWNBrmj6MWDHi+0rg==", + "dev": true, + "requires": { + "workbox-core": "6.5.1" + } + }, + "workbox-precaching": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.1.tgz", + "integrity": "sha512-EzlPBxvmjGfE56YZzsT/vpVkpLG1XJhoplgXa5RPyVWLUL1LbwEAxhkrENElSS/R9tgiTw80IFwysidfUqLihg==", + "dev": true, + "requires": { + "workbox-core": "6.5.1", + "workbox-routing": "6.5.1", + "workbox-strategies": "6.5.1" + } + }, + "workbox-range-requests": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.1.tgz", + "integrity": "sha512-57Da/qRbd9v33YlHX0rlSUVFmE4THCjKqwkmfhY3tNLnSKN2L5YBS3qhWeDO0IrMNgUj+rGve2moKYXeUqQt4A==", + "dev": true, + "requires": { + "workbox-core": "6.5.1" + } + }, + "workbox-recipes": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.1.tgz", + "integrity": "sha512-DGsyKygHggcGPQpWafC/Nmbm1Ny3sB2vE9r//3UbeidXiQ+pLF14KEG1/0NNGRaY+lfOXOagq6d1H7SC8KA+rA==", + "dev": true, + "requires": { + "workbox-cacheable-response": "6.5.1", + "workbox-core": "6.5.1", + "workbox-expiration": "6.5.1", + "workbox-precaching": "6.5.1", + "workbox-routing": "6.5.1", + "workbox-strategies": "6.5.1" + } + }, + "workbox-routing": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.1.tgz", + "integrity": "sha512-yAAncdTwanvlR8KPjubyvFKeAok8ZcIws6UKxvIAg0I+wsf7UYi93DXNuZr6RBSQrByrN6HkCyjuhmk8P63+PA==", + "dev": true, + "requires": { + "workbox-core": "6.5.1" + } + }, + "workbox-strategies": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.1.tgz", + "integrity": "sha512-JNaTXPy8wXzKkr+6za7/eJX9opoZk7UgY261I2kPxl80XQD8lMjz0vo9EOcBwvD72v3ZhGJbW84ZaDwFEhFvWA==", + "dev": true, + "requires": { + "workbox-core": "6.5.1" + } + }, + "workbox-streams": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.1.tgz", + "integrity": "sha512-7jaTWm6HRGJ/ewECnhb+UgjTT50R42E0/uNCC4eTKQwnLO/NzNGjoXTdQgFjo4zteR+L/K6AtFAiYKH3ZJbAYw==", + "dev": true, + "requires": { + "workbox-core": "6.5.1", + "workbox-routing": "6.5.1" + } + }, + "workbox-sw": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.1.tgz", + "integrity": "sha512-hVrQa19yo9wzN1fQQ/h2JlkzFpkuH2qzYT2/rk7CLaWt6tLnTJVFCNHlGRRPhytZSf++LoIy7zThT714sowT/Q==", + "dev": true + }, + "workbox-webpack-plugin": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.1.tgz", + "integrity": "sha512-SHtlQBpKruI16CAYhICDMkgjXE2fH5Yp+D+1UmBfRVhByZYzusVOykvnPm8ObJb9d/tXgn9yoppoxafFS7D4vQ==", + "dev": true, + "requires": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.5.1" + } + }, + "workbox-window": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.1.tgz", + "integrity": "sha512-oRlun9u7b7YEjo2fIDBqJkU2hXtrEljXcOytRhfeQRbqXxjUOpFgXSGRSAkmDx1MlKUNOSbr+zfi8h5n7In3yA==", + "dev": true, + "requires": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.5.1" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + } + } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + } + } +} diff --git a/vendor/framework7-react/package.json b/vendor/framework7-react/package.json index a19d70144..7e389cd75 100644 --- a/vendor/framework7-react/package.json +++ b/vendor/framework7-react/package.json @@ -1,7 +1,7 @@ { "name": "documenteditor", "private": true, - "version": "1.0.0", + "version": "1.0.1", "description": "DocumentEditor", "repository": "", "license": "UNLICENSED", @@ -75,5 +75,8 @@ "webpack-cli": "^4.5.0", "webpack-dev-server": "^3.11.2", "workbox-webpack-plugin": "^6.1.2" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }