diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index db734ad98..a91876013 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -23,6 +23,7 @@ options: , key: 'key', vkey: 'vkey', + referenceData: 'data for external paste', info: { owner: 'owner name', folder: 'path to document', @@ -174,9 +175,12 @@ }, leftMenu: { navigation: false/true, - spellcheck: false/true // spellcheck button in sse + spellcheck: false/true // spellcheck button in sse, + mode: false/true // init value for left panel, true - is visible, false - is hidden, used for option "Left panel" on the View Tab } / false / true, // use instead of customization.leftMenu - rightMenu: false/true, // use instead of customization.rightMenu + rightMenu: { + mode: false/true // init value for right panel, true - is visible, false - is hidden, used for option "Right panel" on the View Tab + } / false/true, // use instead of customization.rightMenu statusBar: { textLang: false/true // text language button in de/pe docLang: false/true // document language button in de/pe @@ -189,6 +193,9 @@ change: false/true // hide/show feature in de/pe/sse } / false / true // if false/true - use as init value in de/pe. use instead of customization.spellcheck parameter }, + font: { + name: "Arial", + }, chat: true, comments: true, zoom: 100, @@ -264,6 +271,7 @@ 'onRequestCompareFile': ,// must call setRevisedFile method 'onRequestSharingSettings': ,// must call setSharingSettings method 'onRequestCreateNew': , + 'onRequestReferenceData': , } } @@ -327,6 +335,7 @@ _config.editorConfig.canRequestCompareFile = _config.events && !!_config.events.onRequestCompareFile; _config.editorConfig.canRequestSharingSettings = _config.events && !!_config.events.onRequestSharingSettings; _config.editorConfig.canRequestCreateNew = _config.events && !!_config.events.onRequestCreateNew; + _config.editorConfig.canRequestReferenceData = _config.events && !!_config.events.onRequestReferenceData; _config.frameEditorId = placeholderId; _config.parentOrigin = window.location.origin; @@ -736,6 +745,13 @@ }); }; + var _setReferenceData = function(data) { + _sendCommand({ + command: 'setReferenceData', + data: data + }); + }; + var _serviceCommand = function(command, data) { _sendCommand({ command: 'internalCommand', @@ -770,7 +786,8 @@ setFavorite : _setFavorite, requestClose : _requestClose, grabFocus : _grabFocus, - blurFocus : _blurFocus + blurFocus : _blurFocus, + setReferenceData : _setReferenceData } }; diff --git a/apps/api/documents/cache-scripts.html b/apps/api/documents/cache-scripts.html index 8f1b4efbe..4ef772077 100644 --- a/apps/api/documents/cache-scripts.html +++ b/apps/api/documents/cache-scripts.html @@ -10,7 +10,7 @@ - + diff --git a/apps/api/wopi/convert-and-edit-wopi.ejs b/apps/api/wopi/convert-and-edit-wopi.ejs new file mode 100644 index 000000000..5f2ab0ccd --- /dev/null +++ b/apps/api/wopi/convert-and-edit-wopi.ejs @@ -0,0 +1,174 @@ + + + + + + + + + + ONLYOFFICE + + + +
+ Converting your file so you can edit it... + + +
+ + + + diff --git a/apps/api/wopi/editor-wopi.ejs b/apps/api/wopi/editor-wopi.ejs index c27569981..9058cf82e 100644 --- a/apps/api/wopi/editor-wopi.ejs +++ b/apps/api/wopi/editor-wopi.ejs @@ -312,7 +312,7 @@ div { "events": { "onAppReady": onAppReady, "onDocumentStateChange": fileInfo.EditNotificationPostMessage ? onDocumentStateChange : undefined, - 'onRequestEditRights': fileInfo.EditModePostMessage || fileInfo.HostEditUrl ? onRequestEditRights : undefined, + 'onRequestEditRights': fileInfo.EditModePostMessage || (fileInfo.HostEditUrl && !fileInfo.UserCanNotWriteRelative) ? onRequestEditRights : undefined, "onError": onError, "onRequestClose": fileInfo.ClosePostMessage || fileInfo.CloseUrl ? onRequestClose : undefined, "onRequestRename": fileInfo.SupportsRename && fileInfo.UserCanRename ? onRequestRename : undefined, diff --git a/apps/common/Gateway.js b/apps/common/Gateway.js index 675a7421a..438ccce82 100644 --- a/apps/common/Gateway.js +++ b/apps/common/Gateway.js @@ -138,6 +138,10 @@ if (window.Common === undefined) { 'grabFocus': function(data) { $me.trigger('grabfocus', data); + }, + + 'setReferenceData': function(data) { + $me.trigger('setreferencedata', data); } }; @@ -347,6 +351,10 @@ if (window.Common === undefined) { _postMessage({event:'onRequestCreateNew'}); }, + requestReferenceData: function (data) { + _postMessage({event:'onRequestReferenceData', data: data}); + }, + pluginsReady: function() { _postMessage({ event: 'onPluginsReady' }); }, diff --git a/apps/common/forms/resources/less/common.less b/apps/common/forms/resources/less/common.less index e7e8d8701..e2580c7f0 100644 --- a/apps/common/forms/resources/less/common.less +++ b/apps/common/forms/resources/less/common.less @@ -589,6 +589,7 @@ height: 100%; &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; cursor: default !important; } diff --git a/apps/common/main/lib/component/Button.js b/apps/common/main/lib/component/Button.js index ba3621a29..2d3cd9586 100644 --- a/apps/common/main/lib/component/Button.js +++ b/apps/common/main/lib/component/Button.js @@ -351,22 +351,37 @@ define([ getCaptionWithBreaks: function (caption) { var words = caption.split(' '), newCaption = null, - maxWidth = 85 - 4; + maxWidth = 160 - 4, //85 - 4 + containAnd = words.indexOf('&'); + if (containAnd > -1) { // add & to previous word + words[containAnd - 1] += ' &'; + words.splice(containAnd, 1); + } if (words.length > 1) { maxWidth = !!this.menu || this.split === true ? maxWidth - 10 : maxWidth; if (words.length < 3) { + words[0] = getShortText(words[0], !!this.menu ? maxWidth + 10 : maxWidth); words[1] = getShortText(words[1], maxWidth); newCaption = words[0] + '
' + words[1]; } else { + var otherWords = ''; if (getWidthOfCaption(words[0] + ' ' + words[1]) < maxWidth) { // first and second words in first line - words[2] = getShortText(words[2], maxWidth); - newCaption = words[0] + ' ' + words[1] + '
' + words[2]; - } else if (getWidthOfCaption(words[1] + ' ' + words[2]) < maxWidth) { // second and third words in second line - words[2] = getShortText(words[2], maxWidth); - newCaption = words[0] + '
' + words[1] + ' ' + words[2]; - } else { - words[1] = getShortText(words[1] + ' ' + words[2], maxWidth); - newCaption = words[0] + '
' + words[1]; + for (var i = 2; i < words.length; i++) { + otherWords += words[i] + ' '; + } + if (getWidthOfCaption(otherWords + (!!this.menu ? 10 : 0))*2 < getWidthOfCaption(words[0] + ' ' + words[1])) { + otherWords = getShortText((words[1] + ' ' + otherWords).trim(), maxWidth); + newCaption = words[0] + '
' + otherWords; + } else { + otherWords = getShortText(otherWords.trim(), maxWidth); + newCaption = words[0] + ' ' + words[1] + '
' + otherWords; + } + } else { // only first word is in first line + for (var j = 1; j < words.length; j++) { + otherWords += words[j] + ' '; + } + otherWords = getShortText(otherWords.trim(), maxWidth); + newCaption = words[0] + '
' + otherWords; } } } else { @@ -754,7 +769,7 @@ define([ return (this.cmpEl) ? this.cmpEl.is(":visible") : $(this.el).is(":visible"); }, - updateHint: function(hint) { + updateHint: function(hint, isHtml) { this.options.hint = hint; if (!this.rendered) return; @@ -780,10 +795,12 @@ define([ this.btnMenuEl.removeData('bs.tooltip'); this.btnEl.tooltip({ + html: !!isHtml, title : (typeof hint == 'string') ? hint : hint[0], placement : this.options.hintAnchor||'cursor' }); this.btnMenuEl && this.btnMenuEl.tooltip({ + html: !!isHtml, title : hint[1], placement : this.options.hintAnchor||'cursor' }); diff --git a/apps/common/main/lib/component/ComboBox.js b/apps/common/main/lib/component/ComboBox.js index 63e7a524c..1eb060eb2 100644 --- a/apps/common/main/lib/component/ComboBox.js +++ b/apps/common/main/lib/component/ComboBox.js @@ -407,8 +407,9 @@ define([ }, selectCandidate: function() { - var index = this._search.index || 0, + var index = (this._search.index && this._search.index != -1) ? this._search.index : 0, re = new RegExp('^' + ((this._search.full) ? this._search.text : this._search.char), 'i'), + isFirstCharsEqual = re.test(this.store.at(index).get(this.displayField)), itemCandidate, idxCandidate; for (var i=0; iindex) { itemCandidate = item; diff --git a/apps/common/main/lib/component/ComboDataView.js b/apps/common/main/lib/component/ComboDataView.js index ec972e57f..513253b89 100644 --- a/apps/common/main/lib/component/ComboDataView.js +++ b/apps/common/main/lib/component/ComboDataView.js @@ -56,6 +56,7 @@ define([ itemWidth : 80, itemHeight : 40, menuMaxHeight : 300, + autoWidth : false, enableKeyEvents : false, beforeOpenHandler : null, additionalMenuItems : null, @@ -87,11 +88,13 @@ define([ this.menuMaxHeight = this.options.menuMaxHeight; this.beforeOpenHandler = this.options.beforeOpenHandler; this.showLast = this.options.showLast; + this.wrapWidth = 0; this.rootWidth = 0; this.rootHeight = 0; this.rendered = false; this.needFillComboView = false; - this.minWidth = this.options.minWidth; + this.minWidth = this.options.minWidth; + this.autoWidth = this.initAutoWidth = (Common.Utils.isIE10 || Common.Utils.isIE11) ? false : this.options.autoWidth; this.delayRenderTips = this.options.delayRenderTips || false; this.itemTemplate = this.options.itemTemplate || _.template([ '
', @@ -208,10 +211,12 @@ define([ me.fieldPicker.el.addEventListener('contextmenu', _.bind(me.onPickerComboContextMenu, me), false); me.menuPicker.el.addEventListener('contextmenu', _.bind(me.onPickerComboContextMenu, me), false); + Common.NotificationCenter.on('more:toggle', _.bind(this.onMoreToggle, this)); + me.onResize(); me.rendered = true; - + me.trigger('render:after', me); } if (this.disabled) { @@ -221,8 +226,26 @@ define([ return this; }, + onMoreToggle: function(btn, state) { + if(state) { + this.checkSize(); + } + }, + checkSize: function() { if (this.cmpEl && this.cmpEl.is(':visible')) { + if(this.autoWidth && this.menuPicker.store.length > 0) { + var wrapWidth = this.$el.width(); + if(wrapWidth != this.wrapWidth || this.needFillComboView){ + this.wrapWidth = wrapWidth; + this.autoChangeWidth(); + + var picker = this.menuPicker; + var record = picker.getSelectedRec(); + this.fillComboView(record || picker.store.at(0), !!record, true); + } + } + var me = this, width = this.cmpEl.width(), height = this.cmpEl.height(); @@ -265,7 +288,46 @@ define([ if (!this.isSuspendEvents) this.trigger('resize', this); }, + + autoChangeWidth: function() { + if(this.menuPicker.dataViewItems[0]){ + var wrapEl = this.$el; + var wrapWidth = wrapEl.width(); + var itemEl = this.menuPicker.dataViewItems[0].$el; + var itemWidth = this.itemWidth + parseFloat(itemEl.css('padding-left')) + parseFloat(itemEl.css('padding-right')) + 2 * parseFloat(itemEl.css('border-width')); + var itemMargins = parseFloat(itemEl.css('margin-left')) + parseFloat(itemEl.css('margin-right')); + + var fieldPickerEl = this.fieldPicker.$el; + var fieldPickerPadding = parseFloat(fieldPickerEl.css('padding-right')); + var fieldPickerBorder = parseFloat(fieldPickerEl.css('border-width')); + var dataviewPaddings = parseFloat(this.fieldPicker.$el.find('.dataview').css('padding-left')) + parseFloat(this.fieldPicker.$el.find('.dataview').css('padding-right')); + + var cmbDataViewEl = this.cmpEl; + var cmbDataViewPaddings = parseFloat(cmbDataViewEl.css('padding-left')) + parseFloat(cmbDataViewEl.css('padding-right')); + + var itemsCount = Math.floor((wrapWidth - fieldPickerPadding - dataviewPaddings - 2 * fieldPickerBorder - cmbDataViewPaddings) / (itemWidth + itemMargins)); + if(itemsCount > this.store.length) + itemsCount = this.store.length; + + var widthCalc = Math.ceil((itemsCount * (itemWidth + itemMargins) + fieldPickerPadding + dataviewPaddings + 2 * fieldPickerBorder + cmbDataViewPaddings) * 10) / 10; + + var maxWidth = parseFloat(cmbDataViewEl.css('max-width')); + if(widthCalc > maxWidth) + widthCalc = maxWidth; + + cmbDataViewEl.css('width', widthCalc); + + if(this.initAutoWidth) { + this.initAutoWidth = false; + cmbDataViewEl.css('position', 'absolute'); + cmbDataViewEl.css('top', '50%'); + cmbDataViewEl.css('bottom', '50%'); + cmbDataViewEl.css('margin', 'auto 0'); + } + } + }, + onBeforeShowMenu: function(e) { var me = this; diff --git a/apps/common/main/lib/component/DataView.js b/apps/common/main/lib/component/DataView.js index 859df45c4..e2413e9d8 100644 --- a/apps/common/main/lib/component/DataView.js +++ b/apps/common/main/lib/component/DataView.js @@ -328,6 +328,7 @@ define([ if (this.listenStoreEvents) { this.listenTo(this.store, 'add', this.onAddItem); this.listenTo(this.store, 'reset', this.onResetItems); + this.groups && this.listenTo(this.groups, 'add', this.onAddGroup); } this.onResetItems(); @@ -392,18 +393,36 @@ define([ if (suspendEvents) this.suspendEvents(); - - if (!this.multiSelect) { + this.extremeSeletedRec = record; + if (!this.multiSelect || ( !this.pressedShift && !this.pressedCtrl) || !this.currentSelectedRec || (this.pressedShift && this.currentSelectedRec == record)) { _.each(this.store.where({selected: true}), function(rec){ rec.set({selected: false}); }); if (record) { record.set({selected: true}); + this.currentSelectedRec = record; } } else { - if (record) - record.set({selected: !record.get('selected')}); + if (record) { + if(this.pressedCtrl) { + record.set({selected: !record.get('selected')}); + this.currentSelectedRec = record; + } + else if(this.pressedShift){ + var me =this; + var inRange=false; + _.each(me.store.models, function(rec){ + if(me.currentSelectedRec == rec || record == rec){ + inRange = !inRange; + rec.set({selected: true}); + } + else { + rec.set({selected: (inRange)}); + } + }); + } + } } if (suspendEvents) @@ -510,6 +529,35 @@ define([ } }, + onAddGroup: function(group) { + var el = $(_.template([ + '<% if (group.headername !== undefined) { %>', + '
<%= group.headername %>
', + '<% } %>', + '
', + '<% if (!_.isEmpty(group.caption)) { %>', + '
', + '<%= group.caption %>', + '
', + '<% } %>', + '
', + '
', + '
' + ].join(''))({ + group: group.toJSON() + })); + var innerEl = $(this.el).find('.inner').addBack().filter('.inner'); + if (innerEl) { + var idx = _.indexOf(this.groups.models, group); + var innerDivs = innerEl.find('.grouped-data'); + if (idx > 0) + $(innerDivs.get(idx - 1)).after(el); + else { + (innerDivs.length > 0) ? $(innerDivs[idx]).before(el) : innerEl.append(el); + } + } + }, + onResetItems: function() { _.each(this.dataViewItems, function(item) { var tip = item.$el.data('bs.tooltip'); @@ -678,13 +726,22 @@ define([ onKeyDown: function (e, data) { if ( this.disabled ) return; if (data===undefined) data = e; - if (_.indexOf(this.moveKeys, data.keyCode)>-1 || data.keyCode==Common.UI.Keys.RETURN) { + + if(this.multiSelect) { + if (data.keyCode == Common.UI.Keys.CTRL) { + this.pressedCtrl = true; + } else if (data.keyCode == Common.UI.Keys.SHIFT) { + this.pressedShift = true; + } + } + + if (_.indexOf(this.moveKeys, data.keyCode)>-1 || data.keyCode==Common.UI.Keys.RETURN) { data.preventDefault(); data.stopPropagation(); - var rec = this.getSelectedRec(); - if (this.lastSelectedRec===null) + var rec =(this.multiSelect) ? this.extremeSeletedRec : this.getSelectedRec(); + if (this.lastSelectedRec === null) this.lastSelectedRec = rec; - if (data.keyCode==Common.UI.Keys.RETURN) { + if (data.keyCode == Common.UI.Keys.RETURN) { this.lastSelectedRec = null; if (this.selectedBeforeHideRec) // only for ComboDataView menuPicker rec = this.selectedBeforeHideRec; @@ -694,6 +751,7 @@ define([ if (this.parentMenu) this.parentMenu.hide(); } else { + this.pressedCtrl=false; var idx = _.indexOf(this.store.models, rec); if (idx<0) { if (data.keyCode==Common.UI.Keys.LEFT) { @@ -774,12 +832,20 @@ define([ } }, + onKeyUp: function(e){ + if(e.keyCode == Common.UI.Keys.SHIFT) + this.pressedShift = false; + if(e.keyCode == Common.UI.Keys.CTRL) + this.pressedCtrl = false; + }, + attachKeyEvents: function() { if (this.enableKeyEvents && this.handleSelect) { var el = $(this.el).find('.inner').addBack().filter('.inner'); el.addClass('canfocused'); el.attr('tabindex', this.tabindex.toString()); el.on((this.parentMenu && this.useBSKeydown) ? 'dataview:keydown' : 'keydown', _.bind(this.onKeyDown, this)); + el.on((this.parentMenu && this.useBSKeydown) ? 'dataview:keyup' : 'keyup', _.bind(this.onKeyUp, this)); } }, @@ -789,7 +855,11 @@ define([ this.scrollToRecord(this.lastSelectedRec); this.lastSelectedRec = null; } else { - this.scrollToRecord(this.getSelectedRec()); + var selectedRec = this.getSelectedRec(); + if (!this.multiSelect) + this.scrollToRecord(selectedRec); + else if(selectedRec && selectedRec.length > 0) + this.scrollToRecord(selectedRec[selectedRec.length - 1]); } }, @@ -1298,12 +1368,30 @@ define([ props = {minScrollbarLength : this.minScrollbarLength}; this.scrollAlwaysVisible && (props.alwaysVisibleY = this.scrollAlwaysVisible); - if (top + menuH > docH ) { - innerEl.css('max-height', (docH - top - paddings - margins) + 'px'); - this.scroller.update(props); - } else if ( top + menuH < docH && innerEl.height() < this.options.restoreHeight ) { - innerEl.css('max-height', (Math.min(docH - top - paddings - margins, this.options.restoreHeight)) + 'px'); - this.scroller.update(props); + var menuUp = false; + if (this.parentMenu.menuAlign) { + var m = this.parentMenu.menuAlign.match(/^([a-z]+)-([a-z]+)/); + menuUp = (m[1]==='bl' || m[1]==='br'); + } + if (menuUp) { + var bottom = top + menuH; + if (top<0) { + innerEl.css('max-height', (bottom - paddings - margins) + 'px'); + menuRoot.css('top', 0); + this.scroller.update(props); + } else if (top>0 && innerEl.height() < this.options.restoreHeight) { + innerEl.css('max-height', (Math.min(bottom - paddings - margins, this.options.restoreHeight)) + 'px'); + menuRoot.css('top', bottom - menuRoot.outerHeight()); + this.scroller.update(props); + } + } else { + if (top + menuH > docH ) { + innerEl.css('max-height', (docH - top - paddings - margins) + 'px'); + this.scroller.update(props); + } else if ( top + menuH < docH && innerEl.height() < this.options.restoreHeight ) { + innerEl.css('max-height', (Math.min(docH - top - paddings - margins, this.options.restoreHeight)) + 'px'); + this.scroller.update(props); + } } }, diff --git a/apps/common/main/lib/component/Menu.js b/apps/common/main/lib/component/Menu.js index 03e16cc01..8b2c0e30d 100644 --- a/apps/common/main/lib/component/Menu.js +++ b/apps/common/main/lib/component/Menu.js @@ -145,7 +145,7 @@ define([ style : '', itemTemplate: null, items : [], - menuAlign : 'tl-bl', + menuAlign : 'tl-bl',//menu - parent menuAlignEl : null, offset : [0, 0], cyclic : true, @@ -472,8 +472,9 @@ define([ }, selectCandidate: function() { - var index = this._search.index || 0, + var index = (this._search.index && this._search.index != -1) ? this._search.index : 0, re = new RegExp('^' + ((this._search.full) ? this._search.text : this._search.char), 'i'), + isFirstCharsEqual = re.test(this.items[index].caption), itemCandidate, idxCandidate; for (var i=0; iindex) { itemCandidate = item; @@ -1051,8 +1054,9 @@ define([ }, selectCandidate: function() { - var index = this._search.index || 0, + var index = (this._search.index && this._search.index != -1) ? this._search.index : 0, re = new RegExp('^' + ((this._search.full) ? this._search.text : this._search.char), 'i'), + isFirstCharsEqual = re.test(this.items[index].caption), itemCandidate, idxCandidate; for (var i=0; iindex) { itemCandidate = item; diff --git a/apps/common/main/lib/component/Mixtbar.js b/apps/common/main/lib/component/Mixtbar.js index c1e6c29f8..7b59950ed 100644 --- a/apps/common/main/lib/component/Mixtbar.js +++ b/apps/common/main/lib/component/Mixtbar.js @@ -793,7 +793,7 @@ define([ hideMoreBtns: function() { for (var btn in btnsMore) { - btnsMore[btn] && btnsMore[btn].toggle(false); + btnsMore[btn] && btnsMore[btn].isActive() && btnsMore[btn].toggle(false); } } }; diff --git a/apps/common/main/lib/controller/Comments.js b/apps/common/main/lib/controller/Comments.js index 65bcb0e22..ced3f5c69 100644 --- a/apps/common/main/lib/controller/Comments.js +++ b/apps/common/main/lib/controller/Comments.js @@ -74,6 +74,7 @@ define([ subEditStrings : {}, filter : undefined, hintmode : false, + fullInfoHintMode: false, viewmode: false, isSelectedComment : false, uids : [], @@ -144,10 +145,20 @@ define([ } }, this, area); }.bind(this)); + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, onLaunch: function () { var filter = Common.localStorage.getKeysFilter(); this.appPrefix = (filter && filter.length) ? filter.split(',')[0] : ''; + this._state = { + disableEditing: false, // disable editing when disconnect/signed file/mail merge preview/review final or original/forms preview + docProtection: { + isReadOnly: false, + isReviewOnly: false, + isFormsOnly: false, + isCommentsOnly: false + } + }; this.collection = this.getApplication().getCollection('Common.Collections.Comments'); this.setComparator(); @@ -176,7 +187,8 @@ define([ this.currentUserId = data.config.user.id; this.sdkViewName = data['sdkviewname'] || this.sdkViewName; this.hintmode = data['hintmode'] || false; - this.viewmode = data['viewmode'] || false; + this.fullInfoHintMode = data['fullInfoHintMode'] || false; + this.viewmode = data['viewmode'] || false; } }, setApi: function (api) { @@ -396,9 +408,11 @@ define([ reply = null, addReply = null, ascComment = buildCommentData(), // new asc_CCommentData(null), - comment = t.findComment(id); + comment = t.findComment(id), + oldCommentVal = ''; if (comment && ascComment) { + oldCommentVal = comment.get('comment'); ascComment.asc_putText(commentVal); ascComment.asc_putQuoteText(comment.get('quote')); ascComment.asc_putTime(t.utcDateToString(new Date(comment.get('time')))); @@ -442,6 +456,7 @@ define([ } t.api.asc_changeComment(id, ascComment); + t.mode && t.mode.canRequestSendNotify && t.view.pickEMail(ascComment.asc_getGuid(), commentVal, oldCommentVal); return true; } @@ -455,7 +470,8 @@ define([ reply = null, addReply = null, ascComment = buildCommentData(), // new asc_CCommentData(null), - comment = me.findComment(id); + comment = me.findComment(id), + oldReplyVal = ''; if (ascComment && comment) { ascComment.asc_putText(comment.get('comment')); @@ -479,6 +495,7 @@ define([ addReply = buildCommentData(); // new asc_CCommentData(); if (addReply) { if (reply.get('id') === replyId && !_.isUndefined(replyVal)) { + oldReplyVal = reply.get('reply'); addReply.asc_putText(replyVal); addReply.asc_putUserId(me.currentUserId); addReply.asc_putUserName(AscCommon.UserInfoParser.getCurrentName()); @@ -498,7 +515,7 @@ define([ } me.api.asc_changeComment(id, ascComment); - + me.mode && me.mode.canRequestSendNotify && me.view.pickEMail(ascComment.asc_getGuid(), replyVal, oldReplyVal); return true; } } @@ -951,11 +968,11 @@ define([ if (!comment) continue; - if (this.subEditStrings[saveTxtId] && !hint) { + if (this.subEditStrings[saveTxtId] && (comment.get('fullInfoInHint') || !hint)) { comment.set('editTextInPopover', true); text = this.subEditStrings[saveTxtId]; } - else if (this.subEditStrings[saveTxtReplyId] && !hint) { + else if (this.subEditStrings[saveTxtReplyId] && (comment.get('fullInfoInHint') || !hint)) { comment.set('showReplyInPopover', true); text = this.subEditStrings[saveTxtReplyId]; } @@ -963,13 +980,16 @@ define([ comment.set('hint', !_.isUndefined(hint) ? hint : false); if (!hint && this.hintmode) { - if (same_uids && (this.uids.length === 0)) + if (same_uids) animate = false; if (this.oldUids.length && (0 === _.difference(this.oldUids, uids).length) && (0 === _.difference(uids, this.oldUids).length)) { animate = false; this.oldUids = []; } + + if (same_uids && !apihint && !this.isModeChanged) + this.api.asc_selectComment(comment.get('uid')); } if (this.animate) { @@ -991,7 +1011,7 @@ define([ this.popoverComments.reset(comments); if (this.popoverComments.findWhere({hide: false})) { - if (popover.isVisible()) { + if (popover.isVisible() && (!same_uids || this.isModeChanged)) { popover.hide(); } @@ -1340,6 +1360,7 @@ define([ removable : (this.mode.canDeleteComments || (data.asc_getUserId() == this.currentUserId)) && AscCommon.UserInfoParser.canDeleteComment(data.asc_getUserName()), hide : !AscCommon.UserInfoParser.canViewComment(data.asc_getUserName()), hint : !this.mode.canComments, + fullInfoInHint : this.fullInfoHintMode, groupName : (groupname && groupname.length>1) ? groupname[1] : null }); if (comment) { @@ -1645,16 +1666,25 @@ define([ }, setPreviewMode: function(mode) { - if (this.viewmode === mode) return; - this.viewmode = mode; - if (mode) + this._state.disableEditing = mode; + this.updatePreviewMode(); + }, + + updatePreviewMode: function() { + var docProtection = this._state.docProtection; + var viewmode = this._state.disableEditing || docProtection.isReadOnly || docProtection.isFormsOnly; + + if (this.viewmode === viewmode) return; + this.viewmode = viewmode; + + if (viewmode) this.prevcanComments = this.mode.canComments; - this.mode.canComments = (mode) ? false : this.prevcanComments; + this.mode.canComments = (viewmode) ? false : this.prevcanComments; this.closeEditing(); this.setMode(this.mode); this.updateComments(true); if (this.getPopover()) - mode ? this.getPopover().hide() : this.getPopover().update(true); + viewmode ? this.getPopover().hide() : this.getPopover().update(true); }, clearCollections: function() { @@ -1718,6 +1748,27 @@ define([ } } this.updateComments(true); + }, + + onAppReady: function (config) { + var me = this; + (new Promise(function (accept, reject) { + accept(); + })).then(function(){ + me.onChangeProtectDocument(); + Common.NotificationCenter.on('protect:doclock', _.bind(me.onChangeProtectDocument, me)); + }); + }, + + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = this.getApplication().getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props) { + this._state.docProtection = props; + this.updatePreviewMode(); + } } }, Common.Controllers.Comments || {})); diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index 76f4b67b2..b61fdfb1a 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -45,7 +45,8 @@ define([ version: '{{PRODUCT_VERSION}}', eventloading: true, titlebuttons: true, - uithemes: true + uithemes: true, + btnhome: true, }; var native = window.desktop || window.AscDesktopEditor; @@ -90,14 +91,12 @@ define([ $('.asc-window.modal').css('top', obj.skiptoparea); Common.Utils.InternalSettings.set('window-inactive-area-top', obj.skiptoparea); - } else - if ( obj.lockthemes != undefined ) { - // TODO: remove after 7.0.2. depricated. used is_win_xp variable instead - // Common.UI.Themes.setAvailable(!obj.lockthemes); } + if ( obj.singlewindow !== undefined ) { - $('#box-document-title .hedset')[obj.singlewindow ? 'hide' : 'show'](); + // $('#box-document-title .hedset')[obj.singlewindow ? 'hide' : 'show'](); native.features.singlewindow = obj.singlewindow; + titlebuttons.home && titlebuttons.home.btn.setVisible(obj.singlewindow); } } else if (/editor:config/.test(cmd)) { @@ -248,6 +247,40 @@ define([ titlebuttons = {}; if ( mode.isEdit ) { var header = webapp.getController('Viewport').getView('Common.Views.Header'); + + { + header.btnHome = (new Common.UI.Button({ + cls: 'btn-header', + iconCls: 'toolbar__icon icon--inverse btn-home', + visible: false, + hint: 'Show Main window', + dataHint:'0', + dataHintDirection: 'right', + dataHintOffset: '10, -18', + dataHintTitle: 'K' + })).render($('#box-document-title #slot-btn-dt-home')); + titlebuttons['home'] = {btn: header.btnHome}; + + header.btnHome.on('click', function (e) { + native.execCommand('title:button', JSON.stringify({click: "home"})); + }); + + $('#id-box-doc-name').on({ + 'dblclick': function (e) { + native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) + }, + 'mousedown': function (e) { + native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) + }, + 'mousemove': function (e) { + native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) + }, + 'mouseup': function (e) { + native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY})) + } + }); + } + if (!!header.btnSave) { titlebuttons['save'] = {btn: header.btnSave}; @@ -281,7 +314,8 @@ define([ } if ( native.features.singlewindow !== undefined ) { - $('#box-document-title .hedset')[native.features.singlewindow ? 'hide' : 'show'](); + // $('#box-document-title .hedset')[native.features.singlewindow ? 'hide' : 'show'](); + !!titlebuttons.home && titlebuttons.home.btn.setVisible(native.features.singlewindow); } }); diff --git a/apps/common/main/lib/controller/ExternalDiagramEditor.js b/apps/common/main/lib/controller/ExternalDiagramEditor.js index 5d04fa497..16a83128f 100644 --- a/apps/common/main/lib/controller/ExternalDiagramEditor.js +++ b/apps/common/main/lib/controller/ExternalDiagramEditor.js @@ -98,12 +98,14 @@ define([ 'drag': _.bind(function(o, state){ externalEditor && externalEditor.serviceCommand('window:drag', state == 'start'); },this), + 'resize': _.bind(function(o, state){ + externalEditor && externalEditor.serviceCommand('window:resize', state == 'start'); + },this), 'show': _.bind(function(cmp){ var h = this.diagramEditorView.getHeight(), innerHeight = Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top'); - if (innerHeight>h && h<700 || innerHeight0 && h>0) + this.diagramEditorView.setInnerSize(w, h); + } else if (eventData.type == "frameToGeneralData") { this.api && this.api.asc_getInformationBetweenFrameAndGeneralEditor(eventData.data); } else diff --git a/apps/common/main/lib/controller/ExternalMergeEditor.js b/apps/common/main/lib/controller/ExternalMergeEditor.js index a553b1406..a7d61f7c2 100644 --- a/apps/common/main/lib/controller/ExternalMergeEditor.js +++ b/apps/common/main/lib/controller/ExternalMergeEditor.js @@ -51,7 +51,8 @@ define([ var appLang = '{{DEFAULT_LANG}}', customization = undefined, targetApp = '', - externalEditor = null; + externalEditor = null, + isAppFirstOpened = true; var createExternalEditor = function() { @@ -96,16 +97,22 @@ define([ 'drag': _.bind(function(o, state){ externalEditor && externalEditor.serviceCommand('window:drag', state == 'start'); },this), + 'resize': _.bind(function(o, state){ + externalEditor && externalEditor.serviceCommand('window:resize', state == 'start'); + },this), 'show': _.bind(function(cmp){ var h = this.mergeEditorView.getHeight(), innerHeight = Common.Utils.innerHeight(); - if (innerHeight>h && h<700 || innerHeight0 && h>0) + this.mergeEditorView.setInnerSize(w, h); + } else if (eventData.type == "frameToGeneralData") { this.api && this.api.asc_getInformationBetweenFrameAndGeneralEditor(eventData.data); } else diff --git a/apps/common/main/lib/controller/ExternalOleEditor.js b/apps/common/main/lib/controller/ExternalOleEditor.js index a545c653a..c21055b95 100644 --- a/apps/common/main/lib/controller/ExternalOleEditor.js +++ b/apps/common/main/lib/controller/ExternalOleEditor.js @@ -98,12 +98,14 @@ define([ 'drag': _.bind(function(o, state){ externalEditor && externalEditor.serviceCommand('window:drag', state == 'start'); },this), + 'resize': _.bind(function(o, state){ + externalEditor && externalEditor.serviceCommand('window:resize', 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 || innerHeight0 && h>0) + this.oleEditorView.setInnerSize(w, h); } else if (eventData.type == "frameToGeneralData") { this.api && this.api.asc_getInformationBetweenFrameAndGeneralEditor(eventData.data); diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index 70d88da5e..de1d4703c 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -121,7 +121,7 @@ Common.UI.HintManager = new(function() { _usedTitles = [], _appPrefix, _staticHints = { // for desktop buttons - "btnhome": 'K' + // "btnhome": 'K' }; var _api; @@ -457,6 +457,8 @@ Common.UI.HintManager = new(function() { }; var _init = function(api) { + if (Common.Utils.isIE || Common.UI.isMac && Common.Utils.isGecko) // turn off hints on IE and FireFox (shortcut F6 selects link in address bar) + return; _api = api; var filter = Common.localStorage.getKeysFilter(); @@ -478,7 +480,7 @@ Common.UI.HintManager = new(function() { _clearHints(); }); $(document).on('keyup', function(e) { - if (e.keyCode == Common.UI.Keys.ALT && _needShow && !(window.SSE && window.SSE.getController('Statusbar').getIsDragDrop())) { + if ((e.keyCode == Common.UI.Keys.ALT || e.keyCode === 91) && _needShow && !(window.SSE && window.SSE.getController('Statusbar').getIsDragDrop())) { e.preventDefault(); if (!_hintVisible) { $('input:focus').blur(); // to change value in inputField @@ -620,10 +622,11 @@ Common.UI.HintManager = new(function() { } } - _needShow = (Common.Utils.InternalSettings.get(_appPrefix + "settings-show-alt-hints") && !e.shiftKey && e.keyCode == Common.UI.Keys.ALT && + _needShow = (Common.Utils.InternalSettings.get(_appPrefix + "settings-show-alt-hints") && !e.shiftKey && + (!Common.Utils.isMac && e.keyCode == Common.UI.Keys.ALT || Common.Utils.isMac && e.metaKey && e.keyCode === Common.UI.Keys.F6) && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0 && !(window.PE && $('#pe-preview').is(':visible'))); - if (Common.Utils.InternalSettings.get(_appPrefix + "settings-show-alt-hints") && e.altKey && e.keyCode !== 115) { + if (Common.Utils.InternalSettings.get(_appPrefix + "settings-show-alt-hints") && !Common.Utils.isMac && e.altKey && e.keyCode !== 115) { e.preventDefault(); } }); @@ -661,6 +664,8 @@ Common.UI.HintManager = new(function() { }; var _clearHints = function (isComplete) { + if (Common.Utils.isIE || Common.UI.isMac && Common.Utils.isGecko) + return; _hintVisible && _hideHints(); if (_currentHints.length > 0) { _resetToDefault(); diff --git a/apps/common/main/lib/controller/LayoutManager.js b/apps/common/main/lib/controller/LayoutManager.js index 8a31ae069..6469c0816 100644 --- a/apps/common/main/lib/controller/LayoutManager.js +++ b/apps/common/main/lib/controller/LayoutManager.js @@ -47,14 +47,16 @@ if (Common.UI === undefined) { } Common.UI.LayoutManager = new(function() { - var _config; - var _init = function(config) { + var _config, + _licensed; + var _init = function(config, licensed) { _config = config; + _licensed = licensed; }; var _applyCustomization = function(config, el, prefix) { !config && (config = _config); - if (!config) return; + if (!_licensed || !config) return; for (var name in config) { if(config.hasOwnProperty(name)) { @@ -71,7 +73,7 @@ Common.UI.LayoutManager = new(function() { var _isElementVisible = function(value, config, prefix) { !config && (config = _config); - if (!config) return true; + if (!_licensed || !config) return true; var res = true; for (var name in config) { @@ -89,10 +91,31 @@ Common.UI.LayoutManager = new(function() { return res; }; + var _getInitValue = function(name) { + if (_licensed && _config) { + var arr = name.split('-'), + i = 0, + obj = _config; + for (i=0; i .group', me.$toolbarPanelPlugins); var $slot = $('').appendTo(_group); btn.render($slot); + var docProtection = me.panelPlugins._state.docProtection; + Common.Utils.lockControls(Common.enumLock.docLockView, docProtection.isReadOnly, {array: btn}); + Common.Utils.lockControls(Common.enumLock.docLockForms, docProtection.isFormsOnly, {array: btn}); + Common.Utils.lockControls(Common.enumLock.docLockComments, docProtection.isCommentsOnly, {array: btn}); } }, @@ -259,6 +274,10 @@ define([ rank = new_rank; }); _group.appendTo(me.$toolbarPanelPlugins); + var docProtection = me.panelPlugins._state.docProtection; + Common.Utils.lockControls(Common.enumLock.docLockView, docProtection.isReadOnly, {array: me.panelPlugins.lockedControls}); + Common.Utils.lockControls(Common.enumLock.docLockForms, docProtection.isFormsOnly, {array: me.panelPlugins.lockedControls}); + Common.Utils.lockControls(Common.enumLock.docLockComments, docProtection.isCommentsOnly, {array: me.panelPlugins.lockedControls}); } else { console.error('toolbar panel isnot created'); } @@ -518,10 +537,13 @@ define([ } var variationsArr = [], - pluginVisible = false; + pluginVisible = false, + isDisplayedInViewer = false; item.variations.forEach(function(itemVar){ var visible = (isEdit || itemVar.isViewer && (itemVar.isDisplayedInViewer!==false)) && _.contains(itemVar.EditorsSupport, editor) && !itemVar.isSystem; if ( visible ) pluginVisible = true; + if (itemVar.isViewer && (itemVar.isDisplayedInViewer!==false)) + isDisplayedInViewer = true; if (item.isUICustomizer ) { visible && arrUI.push({ @@ -571,7 +593,8 @@ define([ groupName: (item.group) ? item.group.name : '', groupRank: (item.group) ? item.group.rank : 0, minVersion: item.minVersion, - original: item + original: item, + isDisplayedInViewer: isDisplayedInViewer })); } }); @@ -720,6 +743,19 @@ define([ }, funcComplete); } else funcComplete(); + }, + + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = this.getApplication().getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props && this.panelPlugins) { + this.panelPlugins._state.docProtection = props; + Common.Utils.lockControls(Common.enumLock.docLockView, props.isReadOnly, {array: this.panelPlugins.lockedControls}); + Common.Utils.lockControls(Common.enumLock.docLockForms, props.isFormsOnly, {array: this.panelPlugins.lockedControls}); + Common.Utils.lockControls(Common.enumLock.docLockComments, props.isCommentsOnly, {array: this.panelPlugins.lockedControls}); + } } }, Common.Controllers.Plugins || {})); }); diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index 9cd921188..74faea0ae 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -82,7 +82,8 @@ define([ 'reviewchange:view': _.bind(this.onReviewViewClick, this), 'reviewchange:compare': _.bind(this.onCompareClick, this), 'lang:document': _.bind(this.onDocLanguage, this), - 'collaboration:coauthmode': _.bind(this.onCoAuthMode, this) + 'collaboration:coauthmode': _.bind(this.onCoAuthMode, this), + 'protect:update': _.bind(this.onChangeProtectDocument, this) }, 'Common.Views.ReviewChangesDialog': { 'reviewchange:accept': _.bind(this.onAcceptClick, this), @@ -101,8 +102,18 @@ define([ this.collection = this.getApplication().getCollection('Common.Collections.ReviewChanges'); this.userCollection = this.getApplication().getCollection('Common.Collections.Users'); this.viewmode = false; + var filter = Common.localStorage.getKeysFilter(); + this.appPrefix = (filter && filter.length) ? filter.split(',')[0] : ''; - this._state = {posx: -1000, posy: -1000, popoverVisible: false, previewMode: false, compareSettings: null, wsLock: false, wsProps: []}; + this._state = { posx: -1000, posy: -1000, popoverVisible: false, previewMode: false, compareSettings: null, wsLock: false, wsProps: [], + disableEditing: false, // disable editing when disconnect/signed file/mail merge preview/review final or original/forms preview + docProtection: { + isReadOnly: false, + isReviewOnly: false, + isFormsOnly: false, + isCommentsOnly: false + } + }; Common.NotificationCenter.on('reviewchanges:turn', this.onTurnPreview.bind(this)); Common.NotificationCenter.on('spelling:turn', this.onTurnSpelling.bind(this)); @@ -164,26 +175,35 @@ define([ SetDisabled: function(state, reviewMode, fillFormMode) { if (this.dlgChanges) this.dlgChanges.close(); - if (reviewMode) + if (reviewMode) { this.lockToolbar(Common.enumLock.previewReviewMode, state); - else if (fillFormMode) + this.dlgChanges && Common.Utils.lockControls(Common.enumLock.previewReviewMode, state, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]}); + } else if (fillFormMode) { this.lockToolbar(Common.enumLock.viewFormMode, state); - else + this.dlgChanges && Common.Utils.lockControls(Common.enumLock.viewFormMode, state, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]}); + } else { this.lockToolbar(Common.enumLock.viewMode, state); - + } this.setPreviewMode(state); }, lockToolbar: function (causes, lock, opts) { - Common.Utils.lockControls(causes, lock, opts, this.view.getButtons()); + this.view && Common.Utils.lockControls(causes, lock, opts, this.view.getButtons()); }, setPreviewMode: function(mode) { //disable accept/reject in popover - if (this.viewmode === mode) return; - this.viewmode = mode; - if (mode) + this._state.disableEditing = mode; + this.updatePreviewMode(); + }, + + updatePreviewMode: function() { + var viewmode = this._state.disableEditing || this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly || this._state.docProtection.isCommentsOnly; + + if (this.viewmode === viewmode) return; + this.viewmode = viewmode; + if (viewmode) this.prevcanReview = this.appConfig.canReview; - this.appConfig.canReview = (mode) ? false : this.prevcanReview; + this.appConfig.canReview = (viewmode) ? false : this.prevcanReview; var me = this; this.popoverChanges && this.popoverChanges.each(function (model) { model.set('hint', !me.appConfig.canReview); @@ -207,19 +227,16 @@ define([ onApiShowChange: function (sdkchange, isShow) { var btnlock = true, changes; - if (this.appConfig.canReview && !this.appConfig.isReviewOnly) { + if (this.appConfig.canReview && !(this.appConfig.isReviewOnly || this._state.docProtection.isReviewOnly)) { if (sdkchange && sdkchange.length>0) { changes = this.readSDKChange(sdkchange); btnlock = this.isSelectedChangesLocked(changes, isShow); } if (this._state.lock !== btnlock) { Common.Utils.lockControls(Common.enumLock.reviewChangelock, btnlock, {array: [this.view.btnAccept, this.view.btnReject]}); - if (this.dlgChanges) { - this.dlgChanges.btnAccept.setDisabled(btnlock); - this.dlgChanges.btnReject.setDisabled(btnlock); - } + this.dlgChanges && Common.Utils.lockControls(Common.enumLock.reviewChangelock, btnlock, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]}); this._state.lock = btnlock; - Common.Utils.InternalSettings.set(this.view.appPrefix + "accept-reject-lock", btnlock); + Common.Utils.InternalSettings.set(this.appPrefix + "accept-reject-lock", btnlock); } } @@ -485,6 +502,7 @@ define([ } var date = (item.get_DateTime() == '') ? new Date() : new Date(item.get_DateTime()), user = me.userCollection.findOriginalUser(item.get_UserId()), + isProtectedReview = me._state.docProtection.isReviewOnly, change = new Common.Models.ReviewChange({ uid : Common.UI.getId(), userid : item.get_UserId(), @@ -499,8 +517,9 @@ define([ changedata : item, scope : me.view, hint : !me.appConfig.canReview, + docProtection: me._state.docProtection, goto : (item.get_MoveType() == Asc.c_oAscRevisionsMove.MoveTo || item.get_MoveType() == Asc.c_oAscRevisionsMove.MoveFrom), - editable : me.appConfig.isReviewOnly && (item.get_UserId() == me.currentUserId) || !me.appConfig.isReviewOnly && (!me.appConfig.canUseReviewPermissions || AscCommon.UserInfoParser.canEditReview(item.get_UserName())) + editable : (me.appConfig.isReviewOnly || isProtectedReview) && (item.get_UserId() == me.currentUserId) || !(me.appConfig.isReviewOnly || isProtectedReview) && (!me.appConfig.canUseReviewPermissions || AscCommon.UserInfoParser.canEditReview(item.get_UserName())) }); arr.push(change); @@ -589,7 +608,7 @@ define([ }, onTurnPreview: function(state, global, fromApi) { - if ( this.appConfig.isReviewOnly ) { + if ( this.appConfig.isReviewOnly) { this.view.turnChanges(true); } else if ( this.appConfig.canReview ) { @@ -603,13 +622,13 @@ define([ }, onApiTrackRevisionsChange: function(localFlag, globalFlag, userId) { - if ( this.appConfig.isReviewOnly ) { + if ( this.appConfig.isReviewOnly || this._state.docProtection.isReviewOnly) { this.view.turnChanges(true); } else if ( this.appConfig.canReview ) { var global = (localFlag===null), state = global ? globalFlag : localFlag; - Common.Utils.InternalSettings.set(this.view.appPrefix + "track-changes", (state ? 0 : 1) + (global ? 2 : 0)); + Common.Utils.InternalSettings.set(this.appPrefix + "track-changes", (state ? 0 : 1) + (global ? 2 : 0)); this.view.turnChanges(state, global); if (userId && this.userCollection) { var rec = this.userCollection.findOriginalUser(userId); @@ -624,18 +643,20 @@ define([ this.view && this.view.turnSpelling(state); if (Common.UI.FeaturesManager.canChange('spellcheck') && !suspend) { - Common.localStorage.setItem(this.view.appPrefix + "settings-spellcheck", state ? 1 : 0); + Common.localStorage.setItem(this.appPrefix + "settings-spellcheck", state ? 1 : 0); this.api.asc_setSpellCheck(state); - Common.Utils.InternalSettings.set(this.view.appPrefix + "settings-spellcheck", state); + Common.Utils.InternalSettings.set(this.appPrefix + "settings-spellcheck", state); } }, onReviewViewClick: function(menu, item, e) { this.turnDisplayMode(item.value); if (!this.appConfig.isEdit && !this.appConfig.isRestrictedEdit) - Common.localStorage.setItem(this.view.appPrefix + "review-mode", item.value); // for viewer - else if (item.value=='markup' || item.value=='simple') - Common.localStorage.setItem(this.view.appPrefix + "review-mode-editor", item.value); // for editor save only markup modes + Common.localStorage.setItem(this.appPrefix + "review-mode", item.value); // for viewer + else if (item.value=='markup' || item.value=='simple') { + Common.localStorage.setItem(this.appPrefix + "review-mode-editor", item.value); // for editor save only markup modes + Common.Utils.InternalSettings.set(this.appPrefix + "review-mode-editor", item.value); + } Common.NotificationCenter.trigger('edit:complete', this.view); }, @@ -766,14 +787,14 @@ define([ }, onCoAuthMode: function(menu, item, e) { - Common.localStorage.setItem(this.view.appPrefix + "settings-coauthmode", item.value); - Common.Utils.InternalSettings.set(this.view.appPrefix + "settings-coauthmode", item.value); + Common.localStorage.setItem(this.appPrefix + "settings-coauthmode", item.value); + Common.Utils.InternalSettings.set(this.appPrefix + "settings-coauthmode", item.value); if (this.api) { this.api.asc_SetFastCollaborative(item.value==1); if (this.api.SetCollaborativeMarksShowType) { - var value = Common.localStorage.getItem(item.value ? this.view.appPrefix + "settings-showchanges-fast" : this.view.appPrefix + "settings-showchanges-strict"); + var value = Common.localStorage.getItem(item.value ? this.appPrefix + "settings-showchanges-fast" : this.appPrefix + "settings-showchanges-strict"); if (value !== null) this.api.SetCollaborativeMarksShowType(value == 'all' ? Asc.c_oAscCollaborativeMarksShowType.All : value == 'none' ? Asc.c_oAscCollaborativeMarksShowType.None : Asc.c_oAscCollaborativeMarksShowType.LastChanges); @@ -781,13 +802,13 @@ define([ this.api.SetCollaborativeMarksShowType(item.value ? Asc.c_oAscCollaborativeMarksShowType.None : Asc.c_oAscCollaborativeMarksShowType.LastChanges); } - value = Common.localStorage.getItem(this.view.appPrefix + "settings-autosave"); + value = Common.localStorage.getItem(this.appPrefix + "settings-autosave"); if (value===null && this.appConfig.customization && this.appConfig.customization.autosave===false) value = 0; value = (!item.value && value!==null) ? parseInt(value) : 1; - Common.localStorage.setItem(this.view.appPrefix + "settings-autosave", value); - Common.Utils.InternalSettings.set(this.view.appPrefix + "settings-autosave", value); + Common.localStorage.setItem(this.appPrefix + "settings-autosave", value); + Common.Utils.InternalSettings.set(this.appPrefix + "settings-autosave", value); this.api.asc_setAutoSaveGap(value); } Common.NotificationCenter.trigger('edit:complete', this.view); @@ -805,7 +826,7 @@ define([ rightMenu: {clear: disable, disable: true}, statusBar: true, leftMenu: {disable: false, previewMode: true}, - fileMenu: {protect: true}, + fileMenu: {protect: true, info: true}, navigation: {disable: false, previewMode: true}, comments: {disable: false, previewMode: true}, chat: false, @@ -829,14 +850,14 @@ define([ onAppReady: function (config) { var me = this; - if ( config.canReview ) { - (new Promise(function (resolve) { - resolve(); - })).then(function () { + (new Promise(function (resolve) { + resolve(); + })).then(function () { + if ( config.canReview ) { // function _setReviewStatus(state, global) { // me.view.turnChanges(state, global); // !global && me.api.asc_SetLocalTrackRevisions(state); - // Common.Utils.InternalSettings.set(me.view.appPrefix + "track-changes", (state ? 0 : 1) + (global ? 2 : 0)); + // Common.Utils.InternalSettings.set(me.appPrefix + "track-changes", (state ? 0 : 1) + (global ? 2 : 0)); // }; var trackChanges = me.appConfig.customization && me.appConfig.customization.review ? me.appConfig.customization.review.trackChanges : undefined; @@ -848,13 +869,13 @@ define([ me.onApiTrackRevisionsChange(me.api.asc_GetLocalTrackRevisions(), me.api.asc_GetGlobalTrackRevisions()); me.api.asc_HaveRevisionsChanges() && me.view.markChanges(true); - var val = Common.localStorage.getItem(me.view.appPrefix + "review-mode-editor"); + var val = Common.localStorage.getItem(me.appPrefix + "review-mode-editor"); if (val===null) { val = me.appConfig.customization && me.appConfig.customization.review ? me.appConfig.customization.review.reviewDisplay : undefined; !val && (val = me.appConfig.customization ? me.appConfig.customization.reviewDisplay : undefined); val = /^(original|final|markup|simple)$/i.test(val) ? val.toLocaleLowerCase() : 'markup'; } - + Common.Utils.InternalSettings.set(me.appPrefix + "review-mode-editor", val); me.turnDisplayMode(val); // load display mode for all modes (viewer or editor) me.view.turnDisplayMode(val); @@ -862,51 +883,54 @@ define([ (!me.appConfig.customization.review || me.appConfig.customization.review.showReviewChanges===undefined) && me.appConfig.customization.showReviewChanges==true) ) { me.dlgChanges = (new Common.Views.ReviewChangesDialog({ popoverChanges : me.popoverChanges, - mode : me.appConfig + mode : me.appConfig, + docProtection : me._state.docProtection })); var sdk = $('#editor_sdk'), offset = sdk.offset(); me.dlgChanges.show(Math.max(10, offset.left + sdk.width() - 300), Math.max(10, offset.top + sdk.height() - 150)); } - }); - } else if (config.canViewReview) { - config.canViewReview = (config.isEdit || me.api.asc_HaveRevisionsChanges(true)); // check revisions from all users - if (config.canViewReview) { - var val = Common.localStorage.getItem(me.view.appPrefix + (config.isEdit || config.isRestrictedEdit ? "review-mode-editor" : "review-mode")); - if (val===null) { - val = me.appConfig.customization && me.appConfig.customization.review ? me.appConfig.customization.review.reviewDisplay : undefined; - !val && (val = me.appConfig.customization ? me.appConfig.customization.reviewDisplay : undefined); - val = /^(original|final|markup|simple)$/i.test(val) ? val.toLocaleLowerCase() : (config.isEdit || config.isRestrictedEdit ? 'markup' : 'original'); + } else if (config.canViewReview) { + config.canViewReview = (config.isEdit || me.api.asc_HaveRevisionsChanges(true)); // check revisions from all users + if (config.canViewReview) { + var val = Common.localStorage.getItem(me.appPrefix + (config.isEdit || config.isRestrictedEdit ? "review-mode-editor" : "review-mode")); + if (val===null) { + val = me.appConfig.customization && me.appConfig.customization.review ? me.appConfig.customization.review.reviewDisplay : undefined; + !val && (val = me.appConfig.customization ? me.appConfig.customization.reviewDisplay : undefined); + val = /^(original|final|markup|simple)$/i.test(val) ? val.toLocaleLowerCase() : (config.isEdit || config.isRestrictedEdit ? 'markup' : 'original'); + } + me.turnDisplayMode(val); + me.view.turnDisplayMode(val); } - me.turnDisplayMode(val); - me.view.turnDisplayMode(val); } - } - if (me.view && me.view.btnChat) { - me.getApplication().getController('LeftMenu').leftMenu.btnChat.on('toggle', function(btn, state){ - if (state !== me.view.btnChat.pressed) - me.view.turnChat(state); - }); - } - me.onChangeProtectSheet(); - if (me.view) { - me.lockToolbar(Common.enumLock.hideComments, !Common.localStorage.getBool(me.view.appPrefix + "settings-livecomment", true), {array: [me.view.btnCommentRemove, me.view.btnCommentResolve]}); - me.lockToolbar(Common.enumLock['Objects'], !!this._state.wsProps['Objects'], {array: [me.view.btnCommentRemove, me.view.btnCommentResolve]}); - } + if (me.view && me.view.btnChat) { + me.getApplication().getController('LeftMenu').leftMenu.btnChat.on('toggle', function(btn, state){ + if (state !== me.view.btnChat.pressed) + me.view.turnChat(state); + }); + } + me.onChangeProtectSheet(); + if (me.view) { + me.lockToolbar(Common.enumLock.hideComments, !Common.localStorage.getBool(me.appPrefix + "settings-livecomment", true), {array: [me.view.btnCommentRemove, me.view.btnCommentResolve]}); + me.lockToolbar(Common.enumLock['Objects'], !!me._state.wsProps['Objects'], {array: [me.view.btnCommentRemove, me.view.btnCommentResolve]}); + } - var val = Common.localStorage.getItem(me.view.appPrefix + "settings-review-hover-mode"); - if (val === null) { - val = me.appConfig.customization && me.appConfig.customization.review ? !!me.appConfig.customization.review.hoverMode : false; - } else - val = !!parseInt(val); - Common.Utils.InternalSettings.set(me.view.appPrefix + "settings-review-hover-mode", val); - me.appConfig.reviewHoverMode = val; + var val = Common.localStorage.getItem(me.appPrefix + "settings-review-hover-mode"); + if (val === null) { + val = me.appConfig.customization && me.appConfig.customization.review ? !!me.appConfig.customization.review.hoverMode : false; + } else + val = !!parseInt(val); + Common.Utils.InternalSettings.set(me.appPrefix + "settings-review-hover-mode", val); + me.appConfig.reviewHoverMode = val; + + me.view && me.view.onAppReady(config); + }); }, applySettings: function(menu) { - this.view && this.view.turnSpelling( Common.localStorage.getBool(this.view.appPrefix + "settings-spellcheck", true) ); - this.view && this.view.turnCoAuthMode( Common.localStorage.getBool(this.view.appPrefix + "settings-coauthmode", true) ); + this.view && this.view.turnSpelling( Common.localStorage.getBool(this.appPrefix + "settings-spellcheck", true) ); + this.view && this.view.turnCoAuthMode( Common.localStorage.getBool(this.appPrefix + "settings-coauthmode", true) ); if ((this.appConfig.canReview || this.appConfig.canViewReview) && this.appConfig.reviewHoverMode) this.onApiShowChange(); }, @@ -971,7 +995,8 @@ define([ }, onCoAuthoringDisconnect: function() { - this.lockToolbar(Common.enumLock.lostConnect, true) + this.lockToolbar(Common.enumLock.lostConnect, true); + this.dlgChanges && Common.Utils.lockControls(Common.enumLock.lostConnect, true, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]}); }, onUpdateUsers: function() { @@ -995,7 +1020,7 @@ define([ commentsShowHide: function(mode) { if (!this.view) return; - var value = Common.Utils.InternalSettings.get(this.view.appPrefix + "settings-livecomment"); + var value = Common.Utils.InternalSettings.get(this.appPrefix + "settings-livecomment"); (value!==undefined) && this.lockToolbar(Common.enumLock.hideComments, mode != 'show' && !value, {array: [this.view.btnCommentRemove, this.view.btnCommentResolve]}); }, @@ -1011,6 +1036,37 @@ define([ this.lockToolbar(Common.enumLock['Objects'], !!this._state.wsProps['Objects'], {array: [this.view.btnCommentRemove, this.view.btnCommentResolve]}); }, + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = this.getApplication().getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props) { + this._state.docProtection = props; + this.lockToolbar(Common.enumLock.docLockView, props.isReadOnly); + this.lockToolbar(Common.enumLock.docLockForms, props.isFormsOnly); + this.lockToolbar(Common.enumLock.docLockReview, props.isReviewOnly); + this.lockToolbar(Common.enumLock.docLockComments, props.isCommentsOnly); + if (this.dlgChanges) { + Common.Utils.lockControls(Common.enumLock.docLockView, props.isReadOnly, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]}); + Common.Utils.lockControls(Common.enumLock.docLockForms, props.isFormsOnly, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]}); + Common.Utils.lockControls(Common.enumLock.docLockReview, props.isReviewOnly, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]}); + Common.Utils.lockControls(Common.enumLock.docLockComments, props.isCommentsOnly, {array: [this.dlgChanges.btnAccept, this.dlgChanges.btnReject]}); + } + if (this.appConfig.canReview) { + if (props.isReviewOnly) { + this.onTurnPreview(true); + this.onApiShowChange(); + } else if (this._state.prevReviewProtected) { + this.onTurnPreview(false); + this.onApiShowChange(); + } + this._state.prevReviewProtected = props.isReviewOnly; + } + this.updatePreviewMode(); + } + }, + textInserted: 'Inserted:', textDeleted: 'Deleted:', textParaInserted: 'Paragraph Inserted ', diff --git a/apps/common/main/lib/model/Comment.js b/apps/common/main/lib/model/Comment.js index 9c570db91..5be4e352b 100644 --- a/apps/common/main/lib/model/Comment.js +++ b/apps/common/main/lib/model/Comment.js @@ -82,6 +82,7 @@ define([ hide : false, filtered : false, hint : false, + fullInfoInHint : false, dummy : undefined, editable : true, removable : true diff --git a/apps/common/main/lib/template/CommentsPopover.template b/apps/common/main/lib/template/CommentsPopover.template index a0d7b0854..8cc1e3389 100644 --- a/apps/common/main/lib/template/CommentsPopover.template +++ b/apps/common/main/lib/template/CommentsPopover.template @@ -7,11 +7,11 @@
<%= scope.getEncodedName(parsedName) %>
<%=date%>
- <% if (!editTextInPopover || hint || scope.viewmode) { %> + <% if (!editTextInPopover || (hint && !fullInfoInHint) || scope.viewmode) { %>
<%=scope.pickLink(comment)%>
<% } else { %>
- + <% if (hideAddReply) { %> <% } else { %> @@ -37,7 +37,7 @@
<%=item.get("date")%>
<% if (!item.get("editTextInPopover")) { %>
<%=scope.pickLink(item.get("reply"))%>
- <% if (!hint && !scope.viewmode) { %> + <% if ((fullInfoInHint || !hint) && !scope.viewmode) { %>
<% if (item.get("editable")) { %>
">
@@ -61,7 +61,7 @@ - <% if (!showReplyInPopover && !hideAddReply && !hint && !scope.viewmode) { %> + <% if (!showReplyInPopover && !hideAddReply && (fullInfoInHint || !hint) && !scope.viewmode) { %> <% if (replys.length && !add_arrow) { %> <% } else { %> @@ -73,7 +73,7 @@ <% if (!editTextInPopover && !lock) { %>
- <% if (!hint && !scope.viewmode) { %> + <% if ((fullInfoInHint || !hint) && !scope.viewmode) { %> <% if (editable) { %>
<% } %> @@ -81,9 +81,9 @@
<% } %> <% } %> - <% if (editable && !hint && !scope.viewmode) { %> + <% if (editable && (fullInfoInHint || !hint) && !scope.viewmode) { %>
- <% } else if (!hint && (!editable || scope.viewmode) && resolved) { %> + <% } else if ((fullInfoInHint || !hint) && (!editable || scope.viewmode) && resolved) { %>
<% } %>
@@ -93,7 +93,7 @@ <% if (showReplyInPopover) { %>
- +
diff --git a/apps/common/main/lib/template/ReviewChangesPopover.template b/apps/common/main/lib/template/ReviewChangesPopover.template index ddfe2c417..409e4c0e5 100644 --- a/apps/common/main/lib/template/ReviewChangesPopover.template +++ b/apps/common/main/lib/template/ReviewChangesPopover.template @@ -9,7 +9,7 @@
<% } %> <% if (!hint) { %> - <% if (scope.appConfig.isReviewOnly) { %> + <% if (scope.appConfig.isReviewOnly || docProtection.isReviewOnly) { %> <% if (editable) { %>
<% } %> diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index 57fc090ce..c5ea21b39 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -598,775 +598,474 @@ define(function(){ 'use strict'; } })(), Common.define.conditionalData || {}); - Common.define.effectData = _.extend(new (function () { + Common.define.smartArt = _.extend( new(function() { return { - textEntrance: 'Entrance Effect', - textEmphasis: 'Emphasis Effect', - textExit: 'Exit Effect', - textPath: 'Motion Path', - textAppear: 'Appear', - textFade: 'Fade', - textFlyIn: 'Fly in', - textFloatIn: 'Float In', - textSplit: 'Split', - textWipe: 'Wipe', - textShape: 'Shape', - textWheel: 'Wheel', - textRandomBars: 'Random Bars ', - textGrowTurn: 'Grow & Turn', - textZoom: 'Zoom', - textSwivel: 'Swivel', - textBounce: 'Bounce', - textPulse: 'Pulse', - textColorPulse: 'Color Pulse', - textTeeter: 'Teeter', - textSpin: 'Spin', - textGrowShrink: 'Grow/Shrink', - textShrinkTurn: 'Shrink & Turn', - textDesaturate: 'Desaturate', - textDarken: 'Darken', - textLighten: 'Lighten', - textTransparency: 'Transparency', - textObjectColor: 'Object Color', - textComplementaryColor: 'Complementary Color', - textComplementaryColor2: 'Complementary Color 2', - textLineColor: 'Line Color', - textFillColor: 'Fill Color', - textBrushColor: 'Brush Color', - textFontColor: 'Font Color', - textUnderline: 'Underline', - textBoldFlash: 'Bold Flash', - textBoldReveal: 'Bold Reveal', - textWave: 'Wave', - textDisappear: 'Disappear', - textFlyOut: 'Fly Out', - textFloatOut: 'Float Out', - textBasic: 'Basic', - textSubtle: 'Subtle', - textModerate: 'Moderate', - textExciting: 'Exciting', - textLinesCurves: 'Lines Curves', - textSpecial: 'Special', - textBox: 'Box', - textCircle: 'Circle', - textPlus: 'Plus', - textDiamond: 'Diamond', - textDissolveIn: 'Dissolve In', - textBlinds: 'Blinds', - textCheckerboard: 'Checkerboard', - textPeekIn: 'Peek In', - textStrips: 'Strips', - textExpand: 'Expand', - textBasicZoom: 'Basic Zoom', - textCompress: 'Compress', - textFloatUp: 'Float Up', - textRiseUp: 'Rise Up', - textStretch: 'Stretch', - textCenterRevolve: 'Center Revolve', - textFloatDown: 'Float Down', - textSpinner: 'Spinner', - textBasicSwivel: 'Basic Swivel', - textBoomerang: 'Boomerang', - textCredits: 'Credits', - textCuverUp: 'Cuver Up', - textDrop: 'Drop', - textFloat: 'Float', - textPinwheel: 'Pinwheel', - textSpiralIn: 'Spiral In', - textWhip: 'Whip', - textGrowWithColor: 'Grow With Color', - textShimmer: 'Shimmer', - textBlink: 'Blink', - textDissolveOut: 'Dissolve Out', - textPeekOut: 'Peek Out', - textContrast: 'Contrast', - textCollapse: 'Collapse', - textSinkDown: 'Sink Down', - textCurveDown: 'CurveDown', - textSpiralOut: 'Spiral Out', - textContrastingColor: 'Contrasting Color', - textPointStar4: '4 Point Star', - textPointStar5: '5 Point Star', - textPointStar6: '6 Point Star', - textPointStar8: '8 Point Star', - textCrescentMoon: 'Crescent Moon', - textEqualTriangle: 'Equal Triangle', - textFootball: 'Football', - textHeart: 'Heart', - textHexagon: 'Hexagon', - textOctagon: 'Octagon', - textParallelogram: 'Parallelogram', - textPentagon: 'Pentagon', - textSquare: 'Square', - textTeardrop: 'Teardrop', - textTrapezoid: 'Trapezoid', - textArcDown: 'Arc Down', - textArcLeft: 'Arc Left', - textArcRight: 'Arc Right', - textArcUp: 'Arc Up', - textBounceLeft: 'Bounce Left', - textBounceRight: 'Bounce Right', - textCurvyLeft: 'Curvy Left', - textCurvyRight: 'Curvy Right', - textDecayingWave: 'Decaying Wave', - textDiagonalDownRight: 'Diagonal Down Right', - textDiagonalUpRight: 'Diagonal Up Right', - textDown: 'Down', + textList: 'List', + textProcess: 'Process', + textCycle: 'Cycle', + textHierarchy: 'Hierarchy', + textRelationship: 'Relationship', + textMatrix: 'Matrix', + textPyramid: 'Pyramid', + textPicture: 'Picture', + textBasicBlockList: 'Basic Block List', + textAlternatingHexagons: 'Alternating Hexagons', + textPictureCaptionList: 'Picture Caption List', + textLinedList: 'Lined List', + textVerticalBulletList: 'Vertical Bullet List', + textVerticalBoxList: 'Vertical Box List', + textHorizontalBulletList: 'Horizontal Bullet List', + textSquareAccentList: 'Square Accent List', + textPictureAccentList: 'Picture Accent List', + textBendingPictureAccentList: 'Bending Picture Accent List', + textStackedList: 'Stacked List', + textIncreasingCircleProcess: 'Increasing Circle Process', + textPieProcess: 'Pie Process', + textDetailedProcess: 'Detailed Process', + textGroupedList: 'Grouped List', + textHorizontalPictureList: 'Horizontal Picture List', + textContinuousPictureList: 'Continuous Picture List', + textPictureStrips: 'Picture Strips', + textVerticalPictureList: 'Vertical Picture List', + textAlternatingPictureBlocks: 'Alternating Picture Blocks', + textVerticalPictureAccentList: 'Vertical Picture Accent List', + textTitledPictureAccentList: 'Titled Picture Accent List', + textVerticalBlockList: 'Vertical Block List', + textVerticalChevronList: 'Vertical Chevron List', + textVerticalAccentList: 'Vertical Accent List', + textVerticalArrowList: 'Vertical Arrow List', + textTrapezoidList: 'Trapezoid List', + textDescendingBlockList: 'Descending Block List', + textTableList: 'Table List', + textSegmentedProcess: 'Segmented Process', + textVerticalCurvedList: 'Vertical Curved List', + textPyramidList: 'Pyramid List', + textTargetList: 'Target List', + textHierarchyList: 'Hierarchy List', + textVerticalCircleList: 'Vertical Circle List', + textTableHierarchy: 'Table Hierarchy', + textBasicProcess: 'Basic Process', + textStepUpProcess: 'Step Up Process', + textStepDownProcess: 'Step Down Process', + textAccentProcess: 'Accent Process', + textPictureAccentProcess: 'Picture Accent Process', + textAlternatingFlow: 'Alternating Flow', + textContinuousBlockProcess: 'Continuous Block Process', + textIncreasingArrowProcess: 'Increasing Arrow Process', + textContinuousArrowProcess: 'Continuous Arrow Process', + textProcessArrows: 'Process Arrows', + textCircleAccentTimeline: 'Circle Accent Timeline', + textBasicTimeline: 'Basic Timeline', + textBasicChevronProcess: 'Basic Chevron Process', + textClosedChevronProcess: 'Closed Chevron Process', + textChevronList: 'Chevron List', + textSubStepProcess: 'Sub-Step Process', + textPhasedProcess: 'Phased Process', + textRandomToResultProcess: 'Random to Result Process', + textVerticalProcess: 'Vertical Process', + textStaggeredProcess: 'Staggered Process', + textProcessList: 'Process List', + textCircleArrowProcess: 'Circle Arrow Process', + textBasicBendingProcess: 'Basic Bending Process', + textRepeatingBendingProcess: 'Repeating Bending Process', + textVerticalBendingProcess: 'Vertical Bending Process', + textAscendingPictureAccentProcess: 'Ascending Picture Accent Process', + textUpwardArrow: 'Upward Arrow', + textDescendingProcess: 'Descending Process', + textCircularBendingProcess: 'Circular Bending Process', + textEquation: 'Equation', + textVerticalEquation: 'Vertical Equation', textFunnel: 'Funnel', - textHeartbeat: 'Heartbeat', - textLeft: 'Left', - textRight: 'Right', - textSCurve1: 'S Curve 1', - textSCurve2: 'S Curve 2', - textSineWave: 'Sine Wave', - textSpiralLeft: 'Spiral Left', - textSpiralRight: 'Spiral Right', - textSpring: 'Spring:', - textStairsDown: 'Stairs Down', - textTurnDown: 'Turn Down', - textTurnDownRight: 'Turn Down Right', - textTurnUp: 'Turn Up', - textTurnUpRight: 'Turn Up Right', - textUp: 'Up', - textZigzag: 'Zigzag', - textBean: 'Bean', - textCurvedSquare: 'CurvedSquare', - textCurvedX: 'Curved X', - textCurvyStar: 'Curvy Star', - textFigureFour: 'Figure 8 Four', - textHorizontalFigure: 'Horizontal Figure 8', - textInvertedSquare: 'Inverted Square', - textInvertedTriangle: 'Inverted Triangle', - textLoopDeLoop: 'Loop de Loop', - textNeutron: 'Neutron', - textPeanut: 'Peanut', - textPointStar: 'Point Star', - textSwoosh: 'Swoosh', - textVerticalFigure: 'Vertical Figure 8', - textRightTriangle: 'Right Triangle', - textAcross: 'Across', - textFromBottom: 'From Bottom', - textFromBottomLeft: 'From Bottom-Left', - textFromLeft: 'From Left', - textFromTopLeft: 'From Top-Left', - textFromTop: 'From Top', - textFromTopRight: 'From Top-Right', - textFromRight: 'From Right', - textFromBottomRight: 'From Bottom-Right', - textLeftDown: ' Left Down', - textLeftUp: ' Left Up', - textRightDown: ' Right Down', - textRightUp: ' Right Up', - textObjectCenter: 'Object Center', - textSlideCenter: 'Slide Center', - textInFromScreenCenter: 'In From Screen Center', - textOutFromScreenBottom: 'Out From Screen Bottom', - textInSlightly: 'In Slightly', - textInToScreenBottom: 'In To Screen Bottom', - textOutToScreenCenter: 'Out To Screen Center', - textOutSlightly: 'Out Slightly', - textToBottom: 'To Bottom', - textToBottomLeft: 'To Bottom-Left', - textToLeft: 'To Left', - textToTopLeft: 'To Top-Left', - textToTop: 'To Top', - textToTopRight: 'To Top-Right', - textToRight: 'To Right', - textToBottomRight: 'To Bottom-Right', - textSpoke1: '1 Spoke', - textSpoke2: '2 Spokes', - textSpoke3: '3 Spokes', - textSpoke4: '4 Spokes', - textSpoke8: '8 Spokes', - textCustomPath: 'Custom Path', - textHorizontalIn: 'Horizontal In', - textHorizontalOut: 'Horizontal Out', - textVerticalIn: 'Vertical In', - textVerticalOut: 'Vertical Out', - textVertical: 'Vertical', - textHorizontal: 'Horizontal', - textIn: 'In', - textOut: 'Out', - textWedge: 'Wedge', - textFlip: 'Flip', - textLines: 'Lines', - textArcs: 'Arcs', - textTurns: 'Turns', - textShapes: 'Shapes', - textLoops: 'Loops', - textPathCurve: 'Curve', - textPathLine: 'Line', - textPathScribble: 'Scribble', + textGear: 'Gear', + textArrowRibbon: 'Arrow Ribbon', + textOpposingArrows: 'Opposing Arrows', + textConvergingArrows: 'Converging Arrows', + textDivergingArrows: 'Diverging Arrows', + textBasicCycle: 'Basic Cycle', + textTextCycle: 'Text Cycle', + textBlockCycle: 'Block Cycle', + textNondirectionalCycle: 'Nondirectional Cycle', + textContinuousCycle: 'Continuous Cycle', + textMultidirectionalCycle: 'Multidirectional Cycle', + textSegmentedCycle: 'Segmented Cycle', + textBasicPie: 'Basic Pie', + textRadialCycle: 'Radial Cycle', + textBasicRadial: 'Basic Radial', + textDivergingRadial: 'Diverging Radial', + textRadialVenn: 'Radial Venn', + textCycleMatrix: 'Cycle Matrix', + textRadialCluster: 'Radial Cluster', + textOrganizationChart: 'Organization Chart', + textNameAndTitleOrganizationChart: 'Name and Title Organization Chart', + textHalfCircleOrganizationChart: 'Half Circle Organization Chart', + textCirclePictureHierarchy: 'Circle Picture Hierarchy', + textLabeledHierarchy: 'Labeled Hierarchy', + textHorizontalOrganizationChart: 'Horizontal Organization Chart', + textHorizontalMultiLevelHierarchy: 'Horizontal Multi-Level Hierarchy', + textHorizontalHierarchy: 'Horizontal Hierarchy', + textHorizontalLabeledHierarchy: 'Horizontal Labeled Hierarchy', + textBalance: 'Balance', + textCircleRelationship: 'Circle Relationship', + textHexagonCluster: 'Hexagon Cluster', + textOpposingIdeas: 'Opposing Ideas', + textPlusAndMinus: 'Plus and Minus', + textReverseList: 'Reverse List', + textCounterbalanceArrows: 'Counterbalance Arrows', + textSegmentedPyramid: 'Segmented Pyramid', + textNestedTarget: 'Nested Target', + textConvergingRadial: 'Converging Radial', + textRadialList: 'Radial List', + textBasicTarget: 'Basic Target', + textBasicVenn: 'Basic Venn', + textLinearVenn: 'Linear Venn', + textStackedVenn: 'Stacked Venn', + textBasicMatrix: 'Basic Matrix', + textTitledMatrix: 'Titled Matrix', + textGridMatrix: 'Grid Matrix', + textBasicPyramid: 'Basic Pyramid', + textInvertedPyramid: 'Inverted Pyramid', + textAccentedPicture: 'Accented Picture', + textCircularPictureCallout: 'Circular Picture Callout', + textSnapshotPictureList: 'Snapshot Picture List', + textSpiralPicture: 'Spiral Picture', + textCaptionedPictures: 'Captioned Pictures', + textBendingPictureCaption: 'Bending Picture Caption', + textBendingPictureSemiTranparentText: 'Bending Picture Semi-Tranparent Text', + textBendingPictureBlocks: 'Bending Picture Blocks', + textBendingPictureCaptionList: 'Bending Picture Caption List', + textTitledPictureBlocks: 'Titled Picture Blocks', + textPictureGrid: 'Picture Grid', + textPictureAccentBlocks: 'Picture Accent Blocks', + textAlternatingPictureCircles: 'Alternating Picture Circles', + textTitlePictureLineup: 'Title Picture Lineup', + textPictureLineup: 'Picture Lineup', + textFramedTextPicture: 'Framed Text Picture', + textBubblePictureList: 'Bubble Picture List', + textOther: 'Other', + textPictureOrganizationChart: 'Picture Organization Chart', + textChevronAccentProcess: 'Chevron Accent Process', + textRadialPictureList: 'Radial Picture List', + textVerticalBracketList: 'Vertical Bracket List', + textInterconnectedBlockProcess: 'Interconnected Block Process', + textTabbedArc: 'Tabbed Arc', + textThemePictureAccent: 'Theme Picture Accent', + textVaryingWidthList: 'Varying Width List', + textConvergingText: 'Converging Text', + textInterconnectedRings: 'Interconnected Rings', + textArchitectureLayout: 'Architecture Layout', + textThemePictureAlternatingAccent: 'Theme Picture Alternating Accent', + textThemePictureGrid: 'Theme Picture Grid', + textCircleProcess: 'Circle Process', + textHexagonRadial: 'Hexagon Radial', + textPictureFrame: 'PictureFrame', + textTabList: 'Tab List', - getEffectGroupData: function () { + getSmartArtData: function() { return [ - {id: 'menu-effect-group-entrance', value: AscFormat.PRESET_CLASS_ENTR, caption: this.textEntrance, iconClsCustom: 'animation-entrance-custom'}, - {id: 'menu-effect-group-emphasis', value: AscFormat.PRESET_CLASS_EMPH, caption: this.textEmphasis, iconClsCustom: 'animation-emphasis-custom'}, - {id: 'menu-effect-group-exit', value: AscFormat.PRESET_CLASS_EXIT, caption: this.textExit, iconClsCustom: 'animation-exit-custom'}, - {id: 'menu-effect-group-path', value: AscFormat.PRESET_CLASS_PATH, caption: this.textPath, iconClsCustom: 'animation-motion-paths-custom'} + // list + { + id: 'menu-smart-art-group-list', + sectionId: Asc.c_oAscSmartArtSectionNames.List, + caption: this.textList, + icon: 'smart-list', + items: [ + { type: Asc.c_oAscSmartArtTypes.BasicBlockList, tip: this.textBasicBlockList}, + { type: Asc.c_oAscSmartArtTypes.AlternatingHexagonList, tip: this.textAlternatingHexagons}, + { type: Asc.c_oAscSmartArtTypes.PictureCaptionList, tip: this.textPictureCaptionList}, + { type: Asc.c_oAscSmartArtTypes.LinedList, tip: this.textLinedList}, + { type: Asc.c_oAscSmartArtTypes.VerticalBulletList, tip: this.textVerticalBulletList}, + { type: Asc.c_oAscSmartArtTypes.VerticalBoxList, tip: this.textVerticalBoxList}, + { type: Asc.c_oAscSmartArtTypes.VerticalBracketList, tip: this.textVerticalBracketList}, + { type: Asc.c_oAscSmartArtTypes.VaryingWidthList, tip: this.textVaryingWidthList}, + { type: Asc.c_oAscSmartArtTypes.TabList, tip: this.textTabList}, + { type: Asc.c_oAscSmartArtTypes.HorizontalBulletList, tip: this.textHorizontalBulletList}, + { type: Asc.c_oAscSmartArtTypes.SquareAccentList, tip: this.textSquareAccentList}, + { type: Asc.c_oAscSmartArtTypes.PictureAccentList, tip: this.textPictureAccentList}, + { type: Asc.c_oAscSmartArtTypes.BendingPictureAccentList, tip: this.textBendingPictureAccentList}, + { type: Asc.c_oAscSmartArtTypes.StackedList, tip: this.textStackedList}, + { type: Asc.c_oAscSmartArtTypes.IncreasingCircleProcess, tip: this.textIncreasingCircleProcess}, + { type: Asc.c_oAscSmartArtTypes.PieProcess, tip: this.textPieProcess}, + { type: Asc.c_oAscSmartArtTypes.DetailedProcess, tip: this.textDetailedProcess}, + { type: Asc.c_oAscSmartArtTypes.GroupedList, tip: this.textGroupedList}, + { type: Asc.c_oAscSmartArtTypes.HorizontalPictureList, tip: this.textHorizontalPictureList}, + { type: Asc.c_oAscSmartArtTypes.ContinuousPictureList, tip: this.textContinuousPictureList}, + { type: Asc.c_oAscSmartArtTypes.PictureStrips, tip: this.textPictureStrips}, + { type: Asc.c_oAscSmartArtTypes.VerticalPictureList, tip: this.textVerticalPictureList}, + { type: Asc.c_oAscSmartArtTypes.AlternatingPictureBlocks, tip: this.textAlternatingPictureBlocks}, + { type: Asc.c_oAscSmartArtTypes.VerticalPictureAccentList, tip: this.textVerticalPictureAccentList}, + { type: Asc.c_oAscSmartArtTypes.TitledPictureAccentList, tip: this.textTitledPictureAccentList}, + { type: Asc.c_oAscSmartArtTypes.VerticalBlockList, tip: this.textVerticalBlockList}, + { type: Asc.c_oAscSmartArtTypes.VerticalChevronList, tip: this.textVerticalChevronList}, + { type: Asc.c_oAscSmartArtTypes.VerticalAccentList, tip: this.textVerticalAccentList}, + { type: Asc.c_oAscSmartArtTypes.VerticalArrowList, tip: this.textVerticalArrowList}, + { type: Asc.c_oAscSmartArtTypes.TrapezoidList, tip: this.textTrapezoidList}, + { type: Asc.c_oAscSmartArtTypes.DescendingBlockList, tip: this.textDescendingBlockList}, + { type: Asc.c_oAscSmartArtTypes.TableList, tip: this.textTableList}, + { type: Asc.c_oAscSmartArtTypes.SegmentedProcess, tip: this.textSegmentedProcess}, + { type: Asc.c_oAscSmartArtTypes.VerticalCurvedList, tip: this.textVerticalCurvedList}, + { type: Asc.c_oAscSmartArtTypes.PyramidList, tip: this.textPyramidList}, + { type: Asc.c_oAscSmartArtTypes.TargetList, tip: this.textTargetList}, + { type: Asc.c_oAscSmartArtTypes.HierarchyList, tip: this.textHierarchyList}, + { type: Asc.c_oAscSmartArtTypes.VerticalCircleList, tip: this.textVerticalCircleList}, + { type: Asc.c_oAscSmartArtTypes.TableHierarchy, tip: this.textTableHierarchy}, + { type: Asc.c_oAscSmartArtTypes.ArchitectureLayout, tip: this.textArchitectureLayout} + ] + }, + // process + { + id: 'menu-smart-art-group-process', + sectionId: Asc.c_oAscSmartArtSectionNames.Process, + caption: this.textProcess, + icon: 'smart-process', + items: [ + { type: Asc.c_oAscSmartArtTypes.BasicProcess, tip: this.textBasicProcess}, + { type: Asc.c_oAscSmartArtTypes.StepUpProcess, tip: this.textStepUpProcess}, + { type: Asc.c_oAscSmartArtTypes.StepDownProcess, tip: this.textStepDownProcess}, + { type: Asc.c_oAscSmartArtTypes.AccentProcess, tip: this.textAccentProcess}, + { type: Asc.c_oAscSmartArtTypes.PictureAccentProcess, tip: this.textPictureAccentProcess}, + { type: Asc.c_oAscSmartArtTypes.AlternatingFlow, tip: this.textAlternatingFlow}, + { type: Asc.c_oAscSmartArtTypes.IncreasingCircleProcess, tip: this.textIncreasingCircleProcess}, + { type: Asc.c_oAscSmartArtTypes.PieProcess, tip: this.textPieProcess}, + { type: Asc.c_oAscSmartArtTypes.ContinuousBlockProcess, tip: this.textContinuousBlockProcess}, + { type: Asc.c_oAscSmartArtTypes.IncreasingArrowsProcess, tip: this.textIncreasingArrowProcess}, + { type: Asc.c_oAscSmartArtTypes.InterconnectedBlockProcess, tip: this.textInterconnectedBlockProcess}, + { type: Asc.c_oAscSmartArtTypes.ContinuousArrowProcess, tip: this.textContinuousArrowProcess}, + { type: Asc.c_oAscSmartArtTypes.ConvergingText, tip: this.textConvergingText}, + { type: Asc.c_oAscSmartArtTypes.ProcessArrows, tip: this.textProcessArrows}, + { type: Asc.c_oAscSmartArtTypes.CircleAccentTimeline, tip: this.textCircleAccentTimeline}, + { type: Asc.c_oAscSmartArtTypes.BasicTimeline, tip: this.textBasicTimeline}, + { type: Asc.c_oAscSmartArtTypes.CircleProcess, tip: this.textCircleProcess}, + { type: Asc.c_oAscSmartArtTypes.BasicChevronProcess, tip: this.textBasicChevronProcess}, + { type: Asc.c_oAscSmartArtTypes.ChevronAccentProcess, tip: this.textChevronAccentProcess}, + { type: Asc.c_oAscSmartArtTypes.ClosedChevronProcess, tip: this.textClosedChevronProcess}, + { type: Asc.c_oAscSmartArtTypes.ChevronList, tip: this.textChevronList}, + { type: Asc.c_oAscSmartArtTypes.VerticalChevronList, tip: this.textVerticalChevronList}, + { type: Asc.c_oAscSmartArtTypes.SubStepProcess, tip: this.textSubStepProcess}, + { type: Asc.c_oAscSmartArtTypes.PhasedProcess, tip: this.textPhasedProcess}, + { type: Asc.c_oAscSmartArtTypes.RandomToResultProcess, tip: this.textRandomToResultProcess}, + { type: Asc.c_oAscSmartArtTypes.VerticalProcess, tip: this.textVerticalProcess}, + { type: Asc.c_oAscSmartArtTypes.StaggeredProcess, tip: this.textStaggeredProcess}, + { type: Asc.c_oAscSmartArtTypes.ProcessList, tip: this.textProcessList}, + { type: Asc.c_oAscSmartArtTypes.SegmentedProcess, tip: this.textSegmentedProcess}, + { type: Asc.c_oAscSmartArtTypes.CircleArrowProcess, tip: this.textCircleArrowProcess}, + { type: Asc.c_oAscSmartArtTypes.BasicBendingProcess, tip: this.textBasicBendingProcess}, + { type: Asc.c_oAscSmartArtTypes.RepeatingBendingProcess, tip: this.textRepeatingBendingProcess}, + { type: Asc.c_oAscSmartArtTypes.VerticalBendingProcess, tip: this.textVerticalBendingProcess}, + { type: Asc.c_oAscSmartArtTypes.ContinuousPictureList, tip: this.textContinuousPictureList}, + { type: Asc.c_oAscSmartArtTypes.DetailedProcess, tip: this.textDetailedProcess}, + { type: Asc.c_oAscSmartArtTypes.VerticalArrowList, tip: this.textVerticalArrowList}, + { type: Asc.c_oAscSmartArtTypes.AscendingPictureAccentProcess, tip: this.textAscendingPictureAccentProcess}, + { type: Asc.c_oAscSmartArtTypes.UpwardArrow, tip: this.textUpwardArrow}, + { type: Asc.c_oAscSmartArtTypes.DescendingProcess, tip: this.textDescendingProcess}, + { type: Asc.c_oAscSmartArtTypes.CircularBendingProcess, tip: this.textCircularBendingProcess}, + { type: Asc.c_oAscSmartArtTypes.Equation, tip: this.textEquation}, + { type: Asc.c_oAscSmartArtTypes.VerticalEquation, tip: this.textVerticalEquation}, + { type: Asc.c_oAscSmartArtTypes.Funnel, tip: this.textFunnel}, + { type: Asc.c_oAscSmartArtTypes.Gear, tip: this.textGear}, + { type: Asc.c_oAscSmartArtTypes.ArrowRibbon, tip: this.textArrowRibbon}, + { type: Asc.c_oAscSmartArtTypes.OpposingArrows, tip: this.textOpposingArrows}, + { type: Asc.c_oAscSmartArtTypes.ConvergingArrows, tip: this.textConvergingArrows}, + { type: Asc.c_oAscSmartArtTypes.DivergingArrows, tip: this.textDivergingArrows} + ] + }, + // cycle + { + id: 'menu-smart-art-group-cycle', + sectionId: Asc.c_oAscSmartArtSectionNames.Cycle, + caption: this.textCycle, + icon: 'smart-cycle', + items: [ + { type: Asc.c_oAscSmartArtTypes.BasicCycle, tip: this.textBasicCycle}, + { type: Asc.c_oAscSmartArtTypes.TextCycle, tip: this.textTextCycle}, + { type: Asc.c_oAscSmartArtTypes.BlockCycle, tip: this.textBlockCycle}, + { type: Asc.c_oAscSmartArtTypes.NonDirectionalCycle, tip: this.textNondirectionalCycle}, + { type: Asc.c_oAscSmartArtTypes.ContinuousCycle, tip: this.textContinuousCycle}, + { type: Asc.c_oAscSmartArtTypes.MultiDirectionalCycle, tip: this.textMultidirectionalCycle}, + { type: Asc.c_oAscSmartArtTypes.SegmentedCycle, tip: this.textSegmentedCycle}, + { type: Asc.c_oAscSmartArtTypes.BasicPie, tip: this.textBasicPie}, + { type: Asc.c_oAscSmartArtTypes.HexagonRadial, tip: this.textHexagonRadial}, + { type: Asc.c_oAscSmartArtTypes.RadialCycle, tip: this.textRadialCycle}, + { type: Asc.c_oAscSmartArtTypes.BasicRadial, tip: this.textBasicRadial}, + { type: Asc.c_oAscSmartArtTypes.DivergingRadial, tip: this.textDivergingRadial}, + { type: Asc.c_oAscSmartArtTypes.RadialVenn, tip: this.textRadialVenn}, + { type: Asc.c_oAscSmartArtTypes.CycleMatrix, tip: this.textCycleMatrix}, + { type: Asc.c_oAscSmartArtTypes.Gear, tip: this.textGear}, + { type: Asc.c_oAscSmartArtTypes.RadialCluster, tip: this.textRadialCluster}, + { type: Asc.c_oAscSmartArtTypes.CircleArrowProcess, tip: this.textCircleArrowProcess} + ] + }, + // hierarchy + { + id: 'menu-smart-art-group-hierarchy', + sectionId: Asc.c_oAscSmartArtSectionNames.Hierarchy, + caption: this.textHierarchy, + icon: 'smart-hierarchy', + items: [ + { type: Asc.c_oAscSmartArtTypes.OrganizationChart, tip: this.textOrganizationChart}, + { type: Asc.c_oAscSmartArtTypes.PictureOrganizationChart, tip: this.textPictureOrganizationChart}, + { type: Asc.c_oAscSmartArtTypes.NameAndTitleOrganizationChart, tip: this.textNameAndTitleOrganizationChart}, + { type: Asc.c_oAscSmartArtTypes.HalfCircleOrganizationChart, tip: this.textHalfCircleOrganizationChart}, + { type: Asc.c_oAscSmartArtTypes.CirclePictureHierarchy, tip: this.textCirclePictureHierarchy}, + { type: Asc.c_oAscSmartArtTypes.Hierarchy, tip: this.textHierarchy}, + { type: Asc.c_oAscSmartArtTypes.LabeledHierarchy, tip: this.textLabeledHierarchy}, + { type: Asc.c_oAscSmartArtTypes.TableHierarchy, tip: this.textTableHierarchy}, + { type: Asc.c_oAscSmartArtTypes.HorizontalOrganizationChart, tip: this.textHorizontalOrganizationChart}, + { type: Asc.c_oAscSmartArtTypes.ArchitectureLayout, tip: this.textArchitectureLayout}, + { type: Asc.c_oAscSmartArtTypes.HorizontalMultiLevelHierarchy, tip: this.textHorizontalMultiLevelHierarchy}, + { type: Asc.c_oAscSmartArtTypes.HorizontalHierarchy, tip: this.textHorizontalHierarchy}, + { type: Asc.c_oAscSmartArtTypes.HorizontalLabeledHierarchy, tip: this.textHorizontalLabeledHierarchy}, + { type: Asc.c_oAscSmartArtTypes.HierarchyList, tip: this.textHierarchyList}, + { type: Asc.c_oAscSmartArtTypes.LinedList, tip: this.textLinedList} + ] + }, + // relationship + { + id: 'menu-smart-art-group-relationship', + sectionId: Asc.c_oAscSmartArtSectionNames.Relationship, + caption: this.textRelationship, + icon: 'smart-relationship', + items: [ + { type: Asc.c_oAscSmartArtTypes.Balance, tip: this.textBalance}, + { type: Asc.c_oAscSmartArtTypes.CircleRelationship, tip: this.textCircleRelationship}, + { type: Asc.c_oAscSmartArtTypes.Funnel, tip: this.textFunnel}, + { type: Asc.c_oAscSmartArtTypes.Gear, tip: this.textGear}, + { type: Asc.c_oAscSmartArtTypes.HexagonCluster, tip: this.textHexagonCluster}, + { type: Asc.c_oAscSmartArtTypes.OpposingIdeas, tip: this.textOpposingIdeas}, + { type: Asc.c_oAscSmartArtTypes.PlusAndMinus, tip: this.textPlusAndMinus}, + { type: Asc.c_oAscSmartArtTypes.ReverseList, tip: this.textReverseList}, + { type: Asc.c_oAscSmartArtTypes.ArrowRibbon, tip: this.textArrowRibbon}, + { type: Asc.c_oAscSmartArtTypes.CounterbalanceArrows, tip: this.textCounterbalanceArrows}, + { type: Asc.c_oAscSmartArtTypes.ConvergingArrows, tip: this.textConvergingArrows}, + { type: Asc.c_oAscSmartArtTypes.DivergingArrows, tip: this.textDivergingArrows}, + { type: Asc.c_oAscSmartArtTypes.OpposingArrows, tip: this.textOpposingArrows}, + { type: Asc.c_oAscSmartArtTypes.SegmentedPyramid, tip: this.textSegmentedPyramid}, + { type: Asc.c_oAscSmartArtTypes.TableHierarchy, tip: this.textTableHierarchy}, + { type: Asc.c_oAscSmartArtTypes.ArchitectureLayout, tip: this.textArchitectureLayout}, + { type: Asc.c_oAscSmartArtTypes.TargetList, tip: this.textTargetList}, + { type: Asc.c_oAscSmartArtTypes.NestedTarget, tip: this.textNestedTarget}, + { type: Asc.c_oAscSmartArtTypes.GroupedList, tip: this.textGroupedList}, + { type: Asc.c_oAscSmartArtTypes.ContinuousPictureList, tip: this.textContinuousPictureList}, + { type: Asc.c_oAscSmartArtTypes.HierarchyList, tip: this.textHierarchyList}, + { type: Asc.c_oAscSmartArtTypes.PictureAccentList, tip: this.textPictureAccentList}, + { type: Asc.c_oAscSmartArtTypes.Equation, tip: this.textEquation}, + { type: Asc.c_oAscSmartArtTypes.VerticalEquation, tip: this.textVerticalEquation}, + { type: Asc.c_oAscSmartArtTypes.ConvergingRadial, tip: this.textConvergingRadial}, + { type: Asc.c_oAscSmartArtTypes.RadialCluster, tip: this.textRadialCluster}, + { type: Asc.c_oAscSmartArtTypes.RadialList, tip: this.textRadialList}, + { type: Asc.c_oAscSmartArtTypes.TabbedArc, tip: this.textTabbedArc}, + { type: Asc.c_oAscSmartArtTypes.RadialCycle, tip: this.textRadialCycle}, + { type: Asc.c_oAscSmartArtTypes.BasicRadial, tip: this.textBasicRadial}, + { type: Asc.c_oAscSmartArtTypes.DivergingRadial, tip: this.textDivergingRadial}, + { type: Asc.c_oAscSmartArtTypes.NonDirectionalCycle, tip: this.textNondirectionalCycle}, + { type: Asc.c_oAscSmartArtTypes.BasicTarget, tip: this.textBasicTarget}, + { type: Asc.c_oAscSmartArtTypes.CycleMatrix, tip: this.textCycleMatrix}, + { type: Asc.c_oAscSmartArtTypes.BasicPie, tip: this.textBasicPie}, + { type: Asc.c_oAscSmartArtTypes.BasicVenn, tip: this.textBasicVenn}, + { type: Asc.c_oAscSmartArtTypes.LinearVenn, tip: this.textLinearVenn}, + { type: Asc.c_oAscSmartArtTypes.StackedVenn, tip: this.textStackedVenn}, + { type: Asc.c_oAscSmartArtTypes.RadialVenn, tip: this.textRadialVenn}, + { type: Asc.c_oAscSmartArtTypes.InterconnectedRings, tip: this.textInterconnectedRings}, + ] + }, + // matrix + { + id: 'menu-smart-art-group-matrix', + sectionId: Asc.c_oAscSmartArtSectionNames.Matrix, + caption: this.textMatrix, + icon: 'smart-matrix', + items: [ + { type: Asc.c_oAscSmartArtTypes.BasicMatrix, tip: this.textBasicMatrix}, + { type: Asc.c_oAscSmartArtTypes.TitledMatrix, tip: this.textTitledMatrix}, + { type: Asc.c_oAscSmartArtTypes.GridMatrix, tip: this.textGridMatrix}, + { type: Asc.c_oAscSmartArtTypes.CycleMatrix, tip: this.textCycleMatrix} + ] + }, + // pyramid + { + id: 'menu-smart-art-group-pyramid', + sectionId: Asc.c_oAscSmartArtSectionNames.Pyramid, + caption: this.textPyramid, + icon: 'smart-pyramid', + items: [ + { type: Asc.c_oAscSmartArtTypes.BasicPyramid, tip: this.textBasicPyramid}, + { type: Asc.c_oAscSmartArtTypes.InvertedPyramid, tip: this.textInvertedPyramid}, + { type: Asc.c_oAscSmartArtTypes.PyramidList, tip: this.textPyramidList}, + { type: Asc.c_oAscSmartArtTypes.SegmentedPyramid, tip: this.textSegmentedPyramid} + ] + }, + // picture + { + id: 'menu-smart-art-group-picture', + sectionId: Asc.c_oAscSmartArtSectionNames.Picture, + caption: this.textPicture, + icon: 'btn-menu-image', + items: [ + { type: Asc.c_oAscSmartArtTypes.AccentedPicture, tip: this.textAccentedPicture}, + { type: Asc.c_oAscSmartArtTypes.CircularPictureCallout, tip: this.textCircularPictureCallout}, + { type: Asc.c_oAscSmartArtTypes.PictureCaptionList, tip: this.textPictureCaptionList}, + { type: Asc.c_oAscSmartArtTypes.RadialPictureList, tip: this.textRadialPictureList}, + { type: Asc.c_oAscSmartArtTypes.SnapshotPictureList, tip: this.textSnapshotPictureList}, + { type: Asc.c_oAscSmartArtTypes.SpiralPicture, tip: this.textSpiralPicture}, + { type: Asc.c_oAscSmartArtTypes.CaptionedPictures, tip: this.textCaptionedPictures}, + { type: Asc.c_oAscSmartArtTypes.BendingPictureCaption, tip: this.textBendingPictureCaption}, + { type: Asc.c_oAscSmartArtTypes.PictureFrame, tip: this.textPictureFrame}, + { type: Asc.c_oAscSmartArtTypes.BendingPictureSemiTransparentText, tip: this.textBendingPictureSemiTranparentText}, + { type: Asc.c_oAscSmartArtTypes.BendingPictureBlocks, tip: this.textBendingPictureBlocks}, + { type: Asc.c_oAscSmartArtTypes.BendingPictureCaptionList, tip: this.textBendingPictureCaptionList}, + { type: Asc.c_oAscSmartArtTypes.TitledPictureBlocks, tip: this.textTitledPictureBlocks}, + { type: Asc.c_oAscSmartArtTypes.PictureGrid, tip: this.textPictureGrid}, + { type: Asc.c_oAscSmartArtTypes.PictureAccentBlocks, tip: this.textPictureAccentBlocks}, + { type: Asc.c_oAscSmartArtTypes.PictureStrips, tip: this.textPictureStrips}, + { type: Asc.c_oAscSmartArtTypes.ThemePictureAccent, tip: this.textThemePictureAccent}, + { type: Asc.c_oAscSmartArtTypes.ThemePictureGrid, tip: this.textThemePictureGrid}, + { type: Asc.c_oAscSmartArtTypes.ThemePictureAlternatingAccent, tip: this.textThemePictureAlternatingAccent}, + { type: Asc.c_oAscSmartArtTypes.TitledPictureAccentList, tip: this.textTitledPictureAccentList}, + { type: Asc.c_oAscSmartArtTypes.AlternatingPictureBlocks, tip: this.textAlternatingPictureBlocks}, + { type: Asc.c_oAscSmartArtTypes.AscendingPictureAccentProcess, tip: this.textAscendingPictureAccentProcess}, + { type: Asc.c_oAscSmartArtTypes.AlternatingPictureCircles, tip: this.textAlternatingPictureCircles}, + { type: Asc.c_oAscSmartArtTypes.TitlePictureLineup, tip: this.textTitlePictureLineup}, + { type: Asc.c_oAscSmartArtTypes.PictureLineup, tip: this.textPictureLineup}, + { type: Asc.c_oAscSmartArtTypes.FramedTextPicture, tip: this.textFramedTextPicture}, + { type: Asc.c_oAscSmartArtTypes.HexagonCluster, tip: this.textHexagonCluster}, + { type: Asc.c_oAscSmartArtTypes.BubblePictureList, tip: this.textBubblePictureList}, + { type: Asc.c_oAscSmartArtTypes.CirclePictureHierarchy, tip: this.textCirclePictureHierarchy}, + { type: Asc.c_oAscSmartArtTypes.HorizontalPictureList, tip: this.textHorizontalPictureList}, + { type: Asc.c_oAscSmartArtTypes.ContinuousPictureList, tip: this.textContinuousPictureList}, + { type: Asc.c_oAscSmartArtTypes.VerticalPictureList, tip: this.textVerticalPictureList}, + { type: Asc.c_oAscSmartArtTypes.VerticalPictureAccentList, tip: this.textVerticalPictureAccentList}, + { type: Asc.c_oAscSmartArtTypes.BendingPictureAccentList, tip: this.textBendingPictureAccentList}, + { type: Asc.c_oAscSmartArtTypes.PictureAccentList, tip: this.textPictureAccentList}, + { type: Asc.c_oAscSmartArtTypes.PictureAccentProcess, tip: this.textPictureAccentProcess} + ] + }, + // Other + { + id: 'menu-smart-art-group-other', + sectionId: Asc.c_oAscSmartArtSectionNames.OfficeCom, + caption: this.textOther, + items: [ + { type: Asc.c_oAscSmartArtTypes.PictureOrganizationChart, tip: this.textPictureOrganizationChart}, + { type: Asc.c_oAscSmartArtTypes.ChevronAccentProcess, tip: this.textChevronAccentProcess}, + { type: Asc.c_oAscSmartArtTypes.RadialPictureList, tip: this.textRadialPictureList}, + { type: Asc.c_oAscSmartArtTypes.VerticalBracketList, tip: this.textVerticalBracketList}, + { type: Asc.c_oAscSmartArtTypes.InterconnectedBlockProcess, tip: this.textInterconnectedBlockProcess}, + { type: Asc.c_oAscSmartArtTypes.TabbedArc, tip: this.textTabbedArc}, + { type: Asc.c_oAscSmartArtTypes.ThemePictureAccent, tip: this.textThemePictureAccent}, + { type: Asc.c_oAscSmartArtTypes.VaryingWidthList, tip: this.textVaryingWidthList}, + { type: Asc.c_oAscSmartArtTypes.ConvergingText, tip: this.textConvergingText}, + { type: Asc.c_oAscSmartArtTypes.InterconnectedRings, tip: this.textInterconnectedRings}, + { type: Asc.c_oAscSmartArtTypes.ArchitectureLayout, tip: this.textArchitectureLayout}, + { type: Asc.c_oAscSmartArtTypes.ThemePictureAlternatingAccent, tip: this.textThemePictureAlternatingAccent}, + { type: Asc.c_oAscSmartArtTypes.ThemePictureGrid, tip: this.textThemePictureGrid}, + { type: Asc.c_oAscSmartArtTypes.CircleProcess, tip: this.textCircleProcess}, + { type: Asc.c_oAscSmartArtTypes.HexagonRadial, tip: this.textHexagonRadial}, + { type: Asc.c_oAscSmartArtTypes.PictureFrame, tip: this.textPictureFrame}, + { type: Asc.c_oAscSmartArtTypes.TabList, tip: this.textTabList} + ] + } ]; }, - - getEffectData: function () { - return [ - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_APPEAR, iconCls: 'animation-entrance-appear', displayValue: this.textAppear}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FADE, iconCls: 'animation-entrance-fade', displayValue: this.textFade}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLY_IN_FROM, iconCls: 'animation-entrance-fly-in', displayValue: this.textFlyIn}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLOAT_UP, iconCls: 'animation-entrance-float-in', displayValue: this.textFloatIn, familyEffect: 'entrfloat'}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_SPLIT, iconCls: 'animation-entrance-split', displayValue: this.textSplit}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WIPE_FROM, iconCls: 'animation-entrance-wipe', displayValue: this.textWipe}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_CIRCLE, iconCls: 'animation-entrance-shape', displayValue: this.textShape, familyEffect: 'entrshape'}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WHEEL, iconCls: 'animation-entrance-wheel', displayValue: this.textWheel}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_RANDOM_BARS, iconCls: 'animation-entrance-random-bars', displayValue: this.textRandomBars}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_GROW_AND_TURN, iconCls: 'animation-entrance-grow-turn', displayValue: this.textGrowTurn}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_ZOOM, iconCls: 'animation-entrance-zoom', displayValue: this.textZoom}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_SWIVEL, iconCls: 'animation-entrance-swivel', displayValue: this.textSwivel}, - {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_BOUNCE, iconCls: 'animation-entrance-bounce', displayValue: this.textBounce}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_PULSE, iconCls: 'animation-emphasis-pulse', displayValue: this.textPulse}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_COLOR_PULSE, iconCls: 'animation-emphasis-color-pulse', displayValue: this.textColorPulse}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_TEETER, iconCls: 'animation-emphasis-teeter', displayValue: this.textTeeter}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_SPIN, iconCls: 'animation-emphasis-spin', displayValue: this.textSpin}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_GROW_SHRINK, iconCls: 'animation-emphasis-grow-or-shrink', displayValue: this.textGrowShrink}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_DESATURATE, iconCls: 'animation-emphasis-desaturate', displayValue: this.textDesaturate}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_CONTRASTING_DARKEN, iconCls: 'animation-emphasis-darken', displayValue: this.textDarken}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_LIGHTEN, iconCls: 'animation-emphasis-lighten', displayValue: this.textLighten}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_TRANSPARENCY, iconCls: 'animation-emphasis-transparency', displayValue: this.textTransparency}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_OBJECT_COLOR, iconCls: 'animation-emphasis-object-color', displayValue: this.textObjectColor}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_COMPLEMENTARY_COLOR, iconCls: 'animation-emphasis-complementary-color', displayValue: this.textComplementaryColor}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_LINE_COLOR, iconCls: 'animation-emphasis-line-color', displayValue: this.textLineColor}, - {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_FILL_COLOR, iconCls: 'animation-emphasis-fill-color', displayValue: this.textFillColor}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_DISAPPEAR, iconCls: 'animation-exit-disappear', displayValue: this.textDisappear}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FADE, iconCls: 'animation-exit-fade', displayValue: this.textFade}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLY_OUT_TO, iconCls: 'animation-exit-fly-out', displayValue: this.textFlyOut}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLOAT_DOWN, iconCls: 'animation-exit-float-out', displayValue: this.textFloatOut, familyEffect: 'exitfloat'}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SPLIT, iconCls: 'animation-exit-split', displayValue: this.textSplit}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WIPE_FROM, iconCls: 'animation-exit-wipe', displayValue: this.textWipe}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_CIRCLE, iconCls: 'animation-exit-shape', displayValue: this.textShape, familyEffect: 'shape'}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WHEEL, iconCls: 'animation-exit-wheel', displayValue: this.textWheel}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_RANDOM_BARS, iconCls: 'animation-exit-random-bars', displayValue: this.textRandomBars}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SHRINK_AND_TURN, iconCls: 'animation-exit-shrink-turn', displayValue: this.textShrinkTurn}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_ZOOM, iconCls: 'animation-exit-zoom', displayValue: this.textZoom}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SWIVEL, iconCls: 'animation-exit-swivel', displayValue: this.textSwivel}, - {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOUNCE, iconCls: 'animation-exit-bounce', displayValue: this.textBounce}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_DOWN, iconCls: 'animation-motion-paths-lines', displayValue: this.textLines, familyEffect: 'pathlines'}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_DOWN, iconCls: 'animation-motion-paths-arcs', displayValue: this.textArcs, familyEffect: 'patharcs'}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN, iconCls: 'animation-motion-paths-turns', displayValue: this.textTurns, familyEffect: 'pathturns'}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_CIRCLE, iconCls: 'animation-motion-paths-shapes', displayValue: this.textShapes, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, iconCls: 'animation-motion-paths-loops', displayValue: this.textLoops, familyEffect: 'pathloops'}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_CUSTOM_PATH, iconCls: 'animation-motion-paths-custom-path', displayValue: this.textCustomPath} - ]; - }, - - getLevelEffect: function (isPath) { - - if (!isPath) - return [ - {id: 'menu-effect-level-basic', displayValue: this.textBasic}, - {id: 'menu-effect-level-subtle', displayValue: this.textSubtle}, - {id: 'menu-effect-level-moderate', displayValue: this.textModerate}, - {id: 'menu-effect-level-exciting', displayValue: this.textExciting} - ]; - else - return [ - {id: 'menu-effect-level-basic', displayValue: this.textBasic}, - {id: 'menu-effect-level-lines_curves', displayValue: this.textSubtle}, - {id: 'menu-effect-level-special', displayValue: this.textModerate} - ]; - }, - - getEffectFullData: function () { - return [ - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_APPEAR, displayValue: this.textAppear}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BLINDS, displayValue: this.textBlinds}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BOX, displayValue: this.textBox, familyEffect: 'entrshape'}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CHECKERBOARD, displayValue: this.textCheckerboard}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CIRCLE, displayValue: this.textCircle, familyEffect: 'entrshape'}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DIAMOND, displayValue: this.textDiamond, familyEffect: 'entrshape'}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DISSOLVE_IN, displayValue: this.textDissolveIn}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_FLY_IN_FROM, displayValue: this.textFlyIn}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PEEK_IN_FROM, displayValue: this.textPeekIn}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PLUS, displayValue: this.textPlus, familyEffect: 'entrshape'}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_RANDOM_BARS, displayValue: this.textRandomBars}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_SPLIT, displayValue: this.textSplit}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_STRIPS, displayValue: this.textStrips}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_WEDGE, displayValue: this.textWedge}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_WHEEL, displayValue: this.textWheel}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_WIPE_FROM, displayValue: this.textWipe}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_EXPAND, displayValue: this.textExpand}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_FADE, displayValue: this.textFade}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_SWIVEL, displayValue: this.textSwivel}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_ZOOM, displayValue: this.textZoom}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_BASIC_ZOOM, displayValue: this.textBasicZoom}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_CENTER_REVOLVE, displayValue: this.textCenterRevolve}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_CENTER_COMPRESS, displayValue: this.textCompress}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_DOWN, displayValue: this.textFloatDown, familyEffect: 'entrfloat'}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_UP, displayValue: this.textFloatUp, familyEffect: 'entrfloat'}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_GROW_AND_TURN, displayValue: this.textGrowTurn}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_RISE_UP, displayValue: this.textRiseUp}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_SPINNER, displayValue: this.textSpinner}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_STRETCH, displayValue: this.textStretch}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_BASIC_SWIVEL, displayValue: this.textBasicSwivel}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_BOOMERANG, displayValue: this.textBoomerang}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_BOUNCE, displayValue: this.textBounce}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_CREDITS, displayValue: this.textCredits}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_CURVE_UP, displayValue: this.textCuverUp}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_DROP, displayValue: this.textDrop}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_FLIP, displayValue: this.textFlip}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_FLOAT, displayValue: this.textFloat}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_PINWHEEL, displayValue: this.textPinwheel}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_SPIRAL_IN, displayValue: this.textSpiralIn}, - {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_WHIP, displayValue: this.textWhip}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_FILL_COLOR, displayValue: this.textFillColor}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_GROW_SHRINK, displayValue: this.textGrowShrink}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_FONT_COLOR, displayValue: this.textFontColor, notsupported: true}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_LINE_COLOR, displayValue: this.textLineColor}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_SPIN, displayValue: this.textSpin}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_TRANSPARENCY, displayValue: this.textTransparency}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_BOLD_FLASH, displayValue: this.textBoldFlash, notsupported: true}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_COMPLEMENTARY_COLOR, displayValue: this.textComplementaryColor}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_COMPLEMENTARY_COLOR_2, displayValue: this.textComplementaryColor2}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_CONTRASTING_COLOR, displayValue: this.textContrastingColor}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_CONTRASTING_DARKEN, displayValue: this.textDarken}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_DESATURATE, displayValue: this.textDesaturate}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_LIGHTEN, displayValue: this.textLighten}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_OBJECT_COLOR, displayValue: this.textObjectColor}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_PULSE, displayValue: this.textPulse}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_UNDERLINE, displayValue: this.textUnderline, notsupported: true}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_BRUSH_COLOR, displayValue: this.textBrushColor, notsupported: true}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_COLOR_PULSE, displayValue: this.textColorPulse}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_GROW_WITH_COLOR, displayValue: this.textGrowWithColor}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_SHIMMER, displayValue: this.textShimmer}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_TEETER, displayValue: this.textTeeter}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-exciting', value: AscFormat.EMPHASIS_BLINK, displayValue: this.textBlink}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-exciting', value: AscFormat.EMPHASIS_BOLD_REVEAL, displayValue: this.textBoldReveal, notsupported: true}, - {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-exciting', value: AscFormat.EMPHASIS_WAVE, displayValue: this.textWave, notsupported: true}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BLINDS, displayValue: this.textBlinds}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BOX, displayValue: this.textBox, familyEffect: 'shape'}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CHECKERBOARD, displayValue: this.textCheckerboard}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CIRCLE, displayValue: this.textCircle, familyEffect: 'shape'}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DIAMOND, displayValue: this.textDiamond, familyEffect: 'shape'}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DISAPPEAR, displayValue: this.textDisappear}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DISSOLVE_OUT, displayValue: this.textDissolveOut}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_FLY_OUT_TO, displayValue: this.textFlyOut}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PEEK_OUT_TO, displayValue: this.textPeekOut}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PLUS, displayValue: this.textPlus, familyEffect: 'shape'}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_RANDOM_BARS, displayValue: this.textRandomBars}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_SPLIT, displayValue: this.textSplit}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_STRIPS, displayValue: this.textStrips}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_WEDGE, displayValue: this.textWedge}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_WHEEL, displayValue: this.textWheel}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_WIPE_FROM, displayValue: this.textWipe}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_CONTRACT, displayValue: this.textContrast}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_FADE, displayValue: this.textFade}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_SWIVEL, displayValue: this.textSwivel}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_ZOOM, displayValue: this.textZoom}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_BASIC_ZOOM, displayValue: this.textBasicZoom}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_CENTER_REVOLVE, displayValue: this.textCenterRevolve}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_COLLAPSE, displayValue: this.textCollapse}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_DOWN, displayValue: this.textFloatDown, familyEffect: 'exitfloat'}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_UP, displayValue: this.textFloatUp, familyEffect: 'exitfloat'}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SHRINK_AND_TURN, displayValue: this.textShrinkTurn}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SINK_DOWN, displayValue: this.textSinkDown}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SPINNER, displayValue: this.textSpinner}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_STRETCHY, displayValue: this.textStretch}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_BASIC_SWIVEL, displayValue: this.textBasicSwivel}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_BOOMERANG, displayValue: this.textBoomerang}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_BOUNCE, displayValue: this.textBounce}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_CREDITS, displayValue: this.textCredits}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_CURVE_DOWN, displayValue: this.textCurveDown}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_DROP, displayValue: this.textDrop}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_FLIP, displayValue: this.textFlip}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_FLOAT, displayValue: this.textFloat}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_PINWHEEL, displayValue: this.textPinwheel}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_SPIRAL_OUT, displayValue: this.textSpiralOut}, - {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_WHIP, displayValue: this.textWhip}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_4_POINT_STAR, displayValue: this.textPointStar4}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_5_POINT_STAR, displayValue: this.textPointStar5}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_6_POINT_STAR, displayValue: this.textPointStar6}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_8_POINT_STAR, displayValue: this.textPointStar8}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CIRCLE, displayValue: this.textCircle, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CRESCENT_MOON, displayValue: this.textCrescentMoon}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_DIAMOND, displayValue: this.textDiamond, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_EQUAL_TRIANGLE, displayValue: this.textEqualTriangle, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_FOOTBALL, displayValue: this.textFootball}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEART, displayValue: this.textHeart}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEXAGON, displayValue: this.textHexagon, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_OCTAGON, displayValue: this.textOctagon, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PARALLELOGRAM, displayValue: this.textParallelogram, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PENTAGON, displayValue: this.textPentagon, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_RIGHT_TRIANGLE, displayValue: this.textRightTriangle, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_SQUARE, displayValue: this.textSquare, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TEARDROP, displayValue: this.textTeardrop}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TRAPEZOID, displayValue: this.textTrapezoid, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_DOWN, displayValue: this.textArcDown, familyEffect: 'patharcs'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_LEFT, displayValue: this.textArcLeft, familyEffect: 'patharcs'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_RIGHT, displayValue: this.textArcRight, familyEffect: 'patharcs'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_UP, displayValue: this.textArcUp, familyEffect: 'patharcs'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_BOUNCE_LEFT, displayValue: this.textBounceLeft}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_BOUNCE_RIGHT, displayValue: this.textBounceRight}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_CURVY_LEFT, displayValue: this.textCurvyLeft}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_CURVY_RIGHT, displayValue: this.textCurvyRight}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DECAYING_WAVE, displayValue: this.textDecayingWave}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DIAGONAL_DOWN_RIGHT, displayValue: this.textDiagonalDownRight}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DIAGONAL_UP_RIGHT, displayValue: this.textDiagonalUpRight}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DOWN, displayValue: this.textDown, familyEffect: 'pathlines'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_FUNNEL, displayValue: this.textFunnel}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_HEARTBEAT, displayValue: this.textHeartbeat}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_LEFT, displayValue: this.textLeft, familyEffect: 'pathlines'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_RIGHT, displayValue: this.textRight, familyEffect: 'pathlines'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_S_CURVE_1, displayValue: this.textSCurve1}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_S_CURVE_2, displayValue: this.textSCurve2}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_WAVE, displayValue: this.textSineWave}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_SPIRAL_LEFT, displayValue: this.textSpiralLeft}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_SPIRAL_RIGHT, displayValue: this.textSpiralRight}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SPRING, displayValue: this.textSpring}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_STAIRS_DOWN, displayValue: this.textStairsDown}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN, displayValue: this.textTurnDown, familyEffect: 'pathturns'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN_RIGHT, displayValue: this.textTurnDownRight, familyEffect: 'pathturns'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP, displayValue: this.textTurnUp, familyEffect: 'pathturns'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP_RIGHT, displayValue: this.textTurnUpRight, familyEffect: 'pathturns'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_UP, displayValue: this.textUp, familyEffect: 'pathlines'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_WAVE, displayValue: this.textWave}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ZIGZAG, displayValue: this.textZigzag}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_BEAN, displayValue: this.textBean}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVED_SQUARE, displayValue: this.textCurvedSquare}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVED_X, displayValue: this.textCurvedX}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVY_STAR, displayValue: this.textCurvyStar}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_FIGURE_8_FOUR, displayValue: this.textFigureFour}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, displayValue: this.textHorizontalFigure, familyEffect: 'pathloops'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_INVERTED_SQUARE, displayValue: this.textInvertedSquare}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_INVERTED_TRIANGLE, displayValue: this.textInvertedTriangle}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_LOOP_DE_LOOP, displayValue: this.textLoopDeLoop, familyEffect: 'pathloops'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_NEUTRON, displayValue: this.textNeutron}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_PEANUT, displayValue: this.textPeanut}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_POINTY_STAR, displayValue: this.textPointStar}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_SWOOSH, displayValue: this.textSwoosh}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_VERTICAL_FIGURE_8, displayValue: this.textVerticalFigure, familyEffect: 'pathloops'}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CUSTOM_PATH, displayValue: this.textCustomPath, notsupported: true} - - ]; - }, - - getEffectOptionsData: function (group, type) { - switch (group) { - case 'menu-effect-group-entrance': - switch (type) { - case AscFormat.ENTRANCE_BLINDS: - return [ - {value: AscFormat.ENTRANCE_BLINDS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, - {value: AscFormat.ENTRANCE_BLINDS_VERTICAL, caption: this.textVertical} - ]; - case AscFormat.ENTRANCE_BOX: - return [ - {value: AscFormat.ENTRANCE_BOX_IN, caption: this.textIn, defvalue: true}, - {value: AscFormat.ENTRANCE_BOX_OUT, caption: this.textOut} - ]; - case AscFormat.ENTRANCE_CHECKERBOARD: - return [ - {value: AscFormat.ENTRANCE_CHECKERBOARD_ACROSS, caption: this.textAcross, defvalue: true}, - {value: AscFormat.ENTRANCE_CHECKERBOARD_DOWN, caption: this.textDown} - ]; - case AscFormat.ENTRANCE_CIRCLE: - return [ - {value: AscFormat.ENTRANCE_CIRCLE_IN, caption: this.textIn, defvalue: true}, - {value: AscFormat.ENTRANCE_CIRCLE_OUT, caption: this.textOut} - ]; - case AscFormat.ENTRANCE_DIAMOND: - return [ - {value: AscFormat.ENTRANCE_DIAMOND_IN, caption: this.textIn, defvalue: true}, - {value: AscFormat.ENTRANCE_DIAMOND_OUT, caption: this.textOut} - ]; - - case AscFormat.ENTRANCE_FLY_IN_FROM: - return [ - {value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, - {value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM_LEFT, caption: this.textFromBottomLeft}, - {value: AscFormat.ENTRANCE_FLY_IN_FROM_LEFT, caption: this.textFromLeft}, - {value: AscFormat.ENTRANCE_FLY_IN_FROM_TOP_LEFT, caption: this.textFromTopLeft}, - {value: AscFormat.ENTRANCE_FLY_IN_FROM_TOP, caption: this.textFromTop}, - {value: AscFormat.ENTRANCE_FLY_IN_FROM_TOP_RIGHT, caption: this.textFromTopRight}, - {value: AscFormat.ENTRANCE_FLY_IN_FROM_RIGHT, caption: this.textFromRight}, - {value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM_RIGHT, caption: this.textFromBottomRight} - ]; - case AscFormat.ENTRANCE_PEEK_IN_FROM: - return [ - {value: AscFormat.ENTRANCE_PEEK_IN_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, - {value: AscFormat.ENTRANCE_PEEK_IN_FROM_LEFT, caption: this.textFromLeft}, - {value: AscFormat.ENTRANCE_PEEK_IN_FROM_RIGHT, caption: this.textFromRight}, - {value: AscFormat.ENTRANCE_PEEK_IN_FROM_TOP, caption: this.textFromTop} - ]; - case AscFormat.ENTRANCE_PLUS: - return [ - {value: AscFormat.ENTRANCE_PLUS_IN, caption: this.textIn, defvalue: true}, - {value: AscFormat.ENTRANCE_PLUS_OUT, caption: this.textOut} - ]; - case AscFormat.ENTRANCE_RANDOM_BARS: - return [ - {value: AscFormat.ENTRANCE_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, - {value: AscFormat.ENTRANCE_RANDOM_BARS_VERTICAL, caption: this.textVertical} - ]; - case AscFormat.ENTRANCE_SPLIT: - return [ - {value: AscFormat.ENTRANCE_SPLIT_HORIZONTAL_IN, caption: this.textHorizontalIn}, - {value: AscFormat.ENTRANCE_SPLIT_HORIZONTAL_OUT, caption: this.textHorizontalOut}, - {value: AscFormat.ENTRANCE_SPLIT_VERTICAL_IN, caption: this.textVerticalIn, defvalue: true}, - {value: AscFormat.ENTRANCE_SPLIT_VERTICAL_OUT, caption: this.textVerticalOut} - ]; - case AscFormat.ENTRANCE_STRIPS: - return [ - {value: AscFormat.ENTRANCE_STRIPS_LEFT_DOWN, caption: this.textLeftDown, defvalue: true}, - {value: AscFormat.ENTRANCE_STRIPS_LEFT_UP, caption: this.textLeftUp}, - {value: AscFormat.ENTRANCE_STRIPS_RIGHT_DOWN, caption: this.textRightDown}, - {value: AscFormat.ENTRANCE_STRIPS_RIGHT_UP, caption: this.textRightUp} - ]; - case AscFormat.ENTRANCE_WHEEL: - return [ - {value: AscFormat.ENTRANCE_WHEEL_1_SPOKE, caption: this.textSpoke1, defvalue: true}, - {value: AscFormat.ENTRANCE_WHEEL_2_SPOKES, caption: this.textSpoke2}, - {value: AscFormat.ENTRANCE_WHEEL_3_SPOKES, caption: this.textSpoke3}, - {value: AscFormat.ENTRANCE_WHEEL_4_SPOKES, caption: this.textSpoke4}, - {value: AscFormat.ENTRANCE_WHEEL_8_SPOKES, caption: this.textSpoke8} - ]; - case AscFormat.ENTRANCE_WIPE_FROM: - return [ - {value: AscFormat.ENTRANCE_WIPE_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, - {value: AscFormat.ENTRANCE_WIPE_FROM_LEFT, caption: this.textFromLeft}, - {value: AscFormat.ENTRANCE_WIPE_FROM_RIGHT, caption: this.textFromRight}, - {value: AscFormat.ENTRANCE_WIPE_FROM_TOP, caption: this.textFromTop} - ]; - case AscFormat.ENTRANCE_ZOOM: - return [ - {value: AscFormat.ENTRANCE_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter, defvalue: true}, - {value: AscFormat.ENTRANCE_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter} - ]; - case AscFormat.ENTRANCE_BASIC_ZOOM: - return [ - {value: AscFormat.ENTRANCE_BASIC_ZOOM_IN, caption: this.textIn, defvalue: true}, - {value: AscFormat.ENTRANCE_BASIC_ZOOM_IN_FROM_SCREEN_CENTER, caption: this.textInFromScreenCenter}, - {value: AscFormat.ENTRANCE_BASIC_ZOOM_IN_SLIGHTLY, caption: this.textInSlightly}, - {value: AscFormat.ENTRANCE_BASIC_ZOOM_OUT, caption: this.textOut}, - {value: AscFormat.ENTRANCE_BASIC_ZOOM_OUT_FROM_SCREEN_BOTTOM, caption: this.textOutFromScreenBottom}, - {value: AscFormat.ENTRANCE_BASIC_ZOOM_OUT_SLIGHTLY, caption: this.textOutSlightly} - ]; - case AscFormat.ENTRANCE_STRETCH: - return [ - {value: AscFormat.ENTRANCE_STRETCH_ACROSS, caption: this.textAcross, defvalue: true}, - {value: AscFormat.ENTRANCE_STRETCH_FROM_BOTTOM, caption: this.textFromBottom}, - {value: AscFormat.ENTRANCE_STRETCH_FROM_LEFT, caption: this.textFromLeft}, - {value: AscFormat.ENTRANCE_STRETCH_FROM_RIGHT, caption: this.textFromRight}, - {value: AscFormat.ENTRANCE_STRETCH_FROM_TOP, caption: this.textFromTop} - ]; - case AscFormat.ENTRANCE_BASIC_SWIVEL: - return [ - {value: AscFormat.ENTRANCE_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, - {value: AscFormat.ENTRANCE_BASIC_SWIVEL_VERTICAL, caption: this.textVertical} - ]; - default: - return undefined; - } - break; - - case 'menu-effect-group-exit': - switch (type){ - case AscFormat.EXIT_BLINDS: - return [ - {value: AscFormat.EXIT_BLINDS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, - {value: AscFormat.EXIT_BLINDS_VERTICAL, caption: this.textVertical} - ]; - case AscFormat.EXIT_BOX: - return [ - {value: AscFormat.EXIT_BOX_IN, caption: this.textIn}, - {value: AscFormat.EXIT_BOX_OUT, caption: this.textOut, defvalue: true} - ]; - case AscFormat.EXIT_CHECKERBOARD: - return [ - {value: AscFormat.EXIT_CHECKERBOARD_ACROSS, caption: this.textAcross, defvalue: true}, - {value: AscFormat.EXIT_CIRCLE_OUT, caption: this.textUp} - ]; - case AscFormat.EXIT_CIRCLE: - return [ - {value: AscFormat.EXIT_CIRCLE_IN, caption: this.textIn}, - {value: AscFormat.EXIT_CIRCLE_OUT, caption: this.textOut, defvalue: true} - ]; - case AscFormat.EXIT_DIAMOND: - return [ - {value: AscFormat.EXIT_DIAMOND_IN, caption: this.textIn}, - {value: AscFormat.EXIT_DIAMOND_OUT, caption: this.textOut, defvalue: true} - ]; - case AscFormat.EXIT_FLY_OUT_TO: - return [ - {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM, caption: this.textToBottom, defvalue: true}, - {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM_LEFT, caption: this.textToBottomLeft}, - {value: AscFormat.EXIT_FLY_OUT_TO_LEFT, caption: this.textToLeft}, - {value: AscFormat.EXIT_FLY_OUT_TO_TOP_LEFT, caption: this.textToTopLeft}, - {value: AscFormat.EXIT_FLY_OUT_TO_TOP, caption: this.textToTop}, - {value: AscFormat.EXIT_FLY_OUT_TO_TOP_RIGHT, caption: this.textToTopRight}, - {value: AscFormat.EXIT_FLY_OUT_TO_RIGHT, caption: this.textToRight}, - {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM_RIGHT, caption: this.textToBottomRight} - ]; - case AscFormat.EXIT_PEEK_OUT_TO: - return [ - {value: AscFormat.EXIT_PEEK_OUT_TO_BOTTOM, caption: this.textToBottom, defvalue: true}, - {value: AscFormat.EXIT_PEEK_OUT_TO_LEFT, caption: this.textToLeft}, - {value: AscFormat.EXIT_PEEK_OUT_TO_RIGHT, caption: this.textToRight}, - {value: AscFormat.EXIT_PEEK_OUT_TO_TOP, caption: this.textToTop} - ]; - case AscFormat.EXIT_PLUS: - return [ - {value: AscFormat.EXIT_PLUS_IN, caption: this.textIn}, - {value: AscFormat.EXIT_PLUS_OUT, caption: this.textOut, defvalue: true} - ]; - case AscFormat.EXIT_RANDOM_BARS: - return [ - {value: AscFormat.EXIT_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, - {value: AscFormat.EXIT_RANDOM_BARS_VERTICAL, caption: this.textVertical} - ]; - case AscFormat.EXIT_SPLIT: - return [ - {value: AscFormat.EXIT_SPLIT_HORIZONTAL_IN, caption: this.textHorizontalIn}, - {value: AscFormat.EXIT_SPLIT_HORIZONTAL_OUT, caption: this.textHorizontalOut}, - {value: AscFormat.EXIT_SPLIT_VERTICAL_IN, caption: this.textVerticalIn, defvalue: true}, - {value: AscFormat.EXIT_SPLIT_VERTICAL_OUT, caption: this.textVerticalOut} - ]; - case AscFormat.EXIT_STRIPS: - return [ - {value: AscFormat.EXIT_STRIPS_LEFT_DOWN, caption: this.textLeftDown, defvalue: true}, - {value: AscFormat.EXIT_STRIPS_LEFT_UP, caption: this.textLeftUp}, - {value: AscFormat.EXIT_STRIPS_RIGHT_DOWN, caption: this.textRightDown}, - {value: AscFormat.EXIT_STRIPS_RIGHT_UP, caption: this.textRightUp} - ]; - case AscFormat.EXIT_WHEEL: - return [ - {value: AscFormat.EXIT_WHEEL_1_SPOKE, caption: this.textSpoke1, defvalue: true}, - {value: AscFormat.EXIT_WHEEL_2_SPOKES, caption: this.textSpoke2}, - {value: AscFormat.EXIT_WHEEL_3_SPOKES, caption: this.textSpoke3}, - {value: AscFormat.EXIT_WHEEL_4_SPOKES, caption: this.textSpoke4}, - {value: AscFormat.EXIT_WHEEL_8_SPOKES, caption: this.textSpoke8} - ]; - case AscFormat.EXIT_WIPE_FROM: - return [ - {value: AscFormat.EXIT_WIPE_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, - {value: AscFormat.EXIT_WIPE_FROM_LEFT, caption: this.textFromLeft}, - {value: AscFormat.EXIT_WIPE_FROM_RIGHT, caption: this.textFromRight}, - {value: AscFormat.EXIT_WIPE_FROM_TOP, caption: this.textFromTop} - ]; - case AscFormat.EXIT_ZOOM: - return [ - {value: AscFormat.EXIT_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter, defvalue: true}, - {value: AscFormat.EXIT_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter} - ]; - case AscFormat.EXIT_BASIC_ZOOM: - return [ - {value: AscFormat.EXIT_BASIC_ZOOM_OUT, caption: this.textOut, defvalue: true}, - {value: AscFormat.EXIT_BASIC_ZOOM_OUT_TO_SCREEN_CENTER, caption: this.textOutToScreenCenter}, - {value: AscFormat.EXIT_BASIC_ZOOM_OUT_SLIGHTLY, caption: this.textOutSlightly}, - {value: AscFormat.EXIT_BASIC_ZOOM_IN, caption: this.textIn}, - {value: AscFormat.EXIT_BASIC_ZOOM_IN_TO_SCREEN_BOTTOM, caption: this.textInToScreenBottom}, - {value: AscFormat.EXIT_BASIC_ZOOM_IN_SLIGHTLY, caption: this.textInSlightly} - ]; - case AscFormat.EXIT_COLLAPSE: - return [ - {value: AscFormat.EXIT_COLLAPSE_ACROSS, caption: this.textAcross, defvalue: true}, - {value: AscFormat.EXIT_COLLAPSE_TO_BOTTOM, caption: this.textToBottom}, - {value: AscFormat.EXIT_COLLAPSE_TO_LEFT, caption: this.textToLeft}, - {value: AscFormat.EXIT_COLLAPSE_TO_RIGHT, caption: this.textToRight}, - {value: AscFormat.EXIT_COLLAPSE_TO_TOP, caption: this.textToTop} - ]; - case AscFormat.EXIT_BASIC_SWIVEL: - return [ - {value: AscFormat.EXIT_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, - {value: AscFormat.EXIT_BASIC_SWIVEL_VERTICAL, caption: this.textVertical} - ]; - default: - return undefined; - } - break; - case 'menu-effect-group-path': - switch (type) { - case AscFormat.MOTION_CUSTOM_PATH: - return [ - {value: AscFormat.MOTION_CUSTOM_PATH_CURVE, caption: this.textPathCurve, isCustom: true}, - {value: AscFormat.MOTION_CUSTOM_PATH_LINE, caption: this.textPathLine, isCustom: true}, - {value: AscFormat.MOTION_CUSTOM_PATH_SCRIBBLE, caption: this.textPathScribble, isCustom: true} - ]; - } - break; - default: - return undefined; - } - }, - getSimilarEffectsArray: function (familyEffect) { - switch (familyEffect){ - case 'shape': - return [ - {value: AscFormat.EXIT_CIRCLE, caption: this.textCircle}, - {value: AscFormat.EXIT_BOX, caption: this.textBox}, - {value: AscFormat.EXIT_DIAMOND, caption: this.textDiamond}, - {value: AscFormat.EXIT_PLUS, caption: this.textPlus} - ]; - case 'entrshape': - return [ - {value: AscFormat.ENTRANCE_CIRCLE, caption: this.textCircle}, - {value: AscFormat.ENTRANCE_BOX, caption: this.textBox}, - {value: AscFormat.ENTRANCE_DIAMOND, caption: this.textDiamond}, - {value: AscFormat.ENTRANCE_PLUS, caption: this.textPlus} - ]; - case 'pathlines': - return[ - {value: AscFormat.MOTION_DOWN, caption: this.textDown}, - {value: AscFormat.MOTION_LEFT, caption: this.textLeft}, - {value: AscFormat.MOTION_RIGHT, caption: this.textRight}, - {value: AscFormat.MOTION_UP, caption: this.textUp} - ]; - case 'patharcs': - return [ - {value: AscFormat.MOTION_ARC_DOWN, caption: this.textArcDown}, - {value: AscFormat.MOTION_ARC_LEFT, caption: this.textArcLeft}, - {value: AscFormat.MOTION_ARC_RIGHT, caption: this.textArcRight}, - {value: AscFormat.MOTION_ARC_UP, caption: this.textArcUp} - ]; - case 'pathturns': - return [ - {value: AscFormat.MOTION_TURN_DOWN, caption: this.textTurnDown}, - {value: AscFormat.MOTION_TURN_DOWN_RIGHT, caption: this.textTurnDownRight}, - {value: AscFormat.MOTION_TURN_UP, caption: this.textTurnUp}, - {value: AscFormat.MOTION_TURN_UP_RIGHT, caption: this.textTurnUpRight} - ]; - case 'pathshapes': - return [ - {value: AscFormat.MOTION_CIRCLE, caption: this.textCircle}, - {value: AscFormat.MOTION_DIAMOND, caption: this.textDiamond}, - {value: AscFormat.MOTION_EQUAL_TRIANGLE, caption: this.textEqualTriangle}, - {value: AscFormat.MOTION_HEXAGON, caption: this.textHexagon}, - {value: AscFormat.MOTION_OCTAGON, caption: this.textOctagon}, - {value: AscFormat.MOTION_PARALLELOGRAM, caption: this.textParallelogram}, - {value: AscFormat.MOTION_PENTAGON, caption: this.textPentagon}, - {value: AscFormat.MOTION_RIGHT_TRIANGLE, caption: this.textRightTriangle}, - {value: AscFormat.MOTION_SQUARE, caption: this.textSquare}, - {value: AscFormat.MOTION_TRAPEZOID, caption: this.textTrapezoid} - - ]; - case 'pathloops': - return [ - {value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, caption: this.textHorizontalFigure}, - {value: AscFormat.MOTION_VERTICAL_FIGURE_8, caption: this.textVerticalFigure}, - {value: AscFormat.MOTION_LOOP_DE_LOOP, caption: this.textLoopDeLoop} - ]; - case 'entrfloat': - return [ - {value: AscFormat.ENTRANCE_FLOAT_UP, caption: this.textFloatUp}, - {value: AscFormat.ENTRANCE_FLOAT_DOWN, caption: this.textFloatDown} - ]; - case 'exitfloat': - return [ - {value: AscFormat.EXIT_FLOAT_UP, caption: this.textFloatUp}, - {value: AscFormat.EXIT_FLOAT_DOWN, caption: this.textFloatDown} - ]; - default: - return []; - } - } } - })(), Common.define.effectData || {}); + })(), Common.define.smartArt || {}); }); \ No newline at end of file diff --git a/apps/common/main/lib/util/htmlutils.js b/apps/common/main/lib/util/htmlutils.js index d75a54d0a..aa0312061 100644 --- a/apps/common/main/lib/util/htmlutils.js +++ b/apps/common/main/lib/util/htmlutils.js @@ -68,6 +68,7 @@ if ( window.desktop ) { delete params.uitheme; } else { localStorage.setItem("ui-theme-id", theme.id); + localStorage.removeItem("ui-theme-use-system"); } localStorage.removeItem("ui-theme"); diff --git a/apps/common/main/lib/util/utils.js b/apps/common/main/lib/util/utils.js index b1d58e132..bab0f3cff 100644 --- a/apps/common/main/lib/util/utils.js +++ b/apps/common/main/lib/util/utils.js @@ -1095,4 +1095,4 @@ Common.Utils.getKeyByValue = function(obj, value) { return prop; } } -}; \ No newline at end of file +}; diff --git a/apps/common/main/lib/view/Chat.js b/apps/common/main/lib/view/Chat.js index 583c90461..4a9f78722 100644 --- a/apps/common/main/lib/view/Chat.js +++ b/apps/common/main/lib/view/Chat.js @@ -336,9 +336,24 @@ define([ // text box setup autosize input text this.setupAutoSizingTextBox(); - this.txtMessage.bind('input propertychange', _.bind(this.updateHeightTextBox, this)); + this.disableTextBoxButton($(this.txtMessage)); + this.txtMessage.bind('input propertychange', _.bind(this.onTextareaInput, this)); }, + onTextareaInput: function(event) { + this.updateHeightTextBox(event); + this.disableTextBoxButton($(event.target)); + }, + disableTextBoxButton: function(textboxEl) { + var button = $(textboxEl.siblings('#chat-msg-btn-add')[0]); + if(textboxEl.val().trim().length > 0) { + button.removeAttr('disabled'); + button.removeClass('disabled'); + } else { + button.attr('disabled', true); + button.addClass('disabled'); + } + }, updateLayout: function (applyUsersAutoSizig) { var me = this; var height = this.panelBox.height(); diff --git a/apps/common/main/lib/view/Comments.js b/apps/common/main/lib/view/Comments.js index 21732dd11..2cee62927 100644 --- a/apps/common/main/lib/view/Comments.js +++ b/apps/common/main/lib/view/Comments.js @@ -98,6 +98,17 @@ define([ var text = $(this.el).find('textarea'); return (text && text.length) ? text.val().trim() : ''; }, + disableTextBoxButton: function(textboxEl) { + var button = $(textboxEl.siblings('#id-comments-change')[0]); + + if(textboxEl.val().trim().length > 0) { + button.removeAttr('disabled'); + button.removeClass('disabled'); + } else { + button.attr('disabled', true); + button.addClass('disabled'); + } + }, autoHeightTextBox: function () { var view = this, textBox = $(this.el).find('textarea'), @@ -127,13 +138,19 @@ define([ view.autoScrollToEditButtons(); } + function onTextareaInput(event) { + updateTextBoxHeight(); + view.disableTextBoxButton($(event.target)); + } + if (textBox && textBox.length) { domTextBox = textBox.get(0); + view.disableTextBoxButton(textBox); if (domTextBox) { lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25; updateTextBoxHeight(); - textBox.bind('input propertychange', updateTextBoxHeight) + textBox.bind('input propertychange', onTextareaInput) } } @@ -171,7 +188,7 @@ define([ addCommentHeight: 45, newCommentHeight: 110, - textBoxAutoSizeLocked: undefined, // disable autosize textbox + textBoxAutoSizeLocked: undefined, // disable autoHeightTextBoxsize textbox viewmode: false, _commentsViewOnItemClick: function (picker, item, record, e) { @@ -694,7 +711,17 @@ define([ this.layout.setResizeValue(0, container.height() - this.addCommentHeight); } }, + disableTextBoxButton: function(textboxEl) { + var button = $(textboxEl.parent().siblings('.add')[0]); + if(textboxEl.val().trim().length > 0) { + button.removeAttr('disabled'); + button.removeClass('disabled'); + } else { + button.attr('disabled', true); + button.addClass('disabled'); + } + }, autoHeightTextBox: function () { var me = this, domTextBox = null, lineHeight = 0, minHeight = 44; var textBox = $('#comment-msg-new', this.el); @@ -736,9 +763,15 @@ define([ Math.min(height - contentHeight - textBoxMinHeightIndent, height - me.newCommentHeight))); } + function onTextareaInput(event) { + updateTextBoxHeight(); + me.disableTextBoxButton($(event.target)); + } + + me.disableTextBoxButton(textBox); lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25; updateTextBoxHeight(); - textBox.bind('input propertychange', updateTextBoxHeight); + textBox.bind('input propertychange', onTextareaInput); this.textBox = textBox; }, @@ -806,11 +839,19 @@ define([ return str_res; }, - pickEMail: function (commentId, message) { + pickEMail: function (commentId, message, oldMessage) { + var old_arr = []; + if (oldMessage) { + old_arr = Common.Utils.String.htmlEncode(oldMessage).match(/\B[@+][A-Z0-9._%+-]+@[A-Z0-9._-]+\.[A-Z]+\b/gi); + old_arr = _.map(old_arr, function(str){ + return str.slice(1, str.length); + }); + } var arr = Common.Utils.String.htmlEncode(message).match(/\B[@+][A-Z0-9._%+-]+@[A-Z0-9._-]+\.[A-Z]+\b/gi); arr = _.map(arr, function(str){ return str.slice(1, str.length); }); + arr = _.difference(arr, old_arr); (arr.length>0) && Common.Gateway.requestSendNotify({ emails: arr, actionId: commentId, // comment id diff --git a/apps/common/main/lib/view/ExternalDiagramEditor.js b/apps/common/main/lib/view/ExternalDiagramEditor.js index 596c925c2..e977ec4d0 100644 --- a/apps/common/main/lib/view/ExternalDiagramEditor.js +++ b/apps/common/main/lib/view/ExternalDiagramEditor.js @@ -39,59 +39,29 @@ */ define([ - 'common/main/lib/component/Window' + 'common/main/lib/view/ExternalEditor' ], function () { 'use strict'; - Common.Views.ExternalDiagramEditor = Common.UI.Window.extend(_.extend({ + Common.Views.ExternalDiagramEditor = Common.Views.ExternalEditor.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) + storageName: 'diagram-editor', + sdkplaceholder: 'id-diagram-editor-placeholder', + initwidth: 900, + initheight: 700, + minwidth: 730, + minheight: 275 }, options); - this.template = [ - '
', - '
', - '
', - '
', - '' - ].join(''); - - _options.tpl = _.template(this.template)(_options); - - this.handler = _options.handler; this._chartData = null; - this._isNewChart = 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-diagram-editor-apply'), - disabled: true - }); - this.btnCancel = new Common.UI.Button({ - el: $('#id-btn-diagram-editor-cancel') - }); - - this.$window.find('.dlg-btn').on('click', _.bind(this.onDlgBtnClick, this)); + Common.Views.ExternalEditor.prototype.initialize.call(this, _options); }, show: function() { this.setPlaceholder(); - Common.UI.Window.prototype.show.apply(this, arguments); + Common.Views.ExternalEditor.prototype.show.apply(this, arguments); }, setChartData: function(data) { @@ -100,55 +70,6 @@ define([ this.fireEvent('setchartdata', this); }, - setEditMode: function(mode) { - this._isNewChart = !mode; - }, - - isEditMode: function() { - return !this._isNewChart; - }, - - 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; }, @@ -157,8 +78,6 @@ define([ return this._placeholder; }, - textSave: 'Save & Exit', - textClose: 'Close', textTitle: 'Chart Editor' }, Common.Views.ExternalDiagramEditor || {})); }); diff --git a/apps/common/main/lib/view/ExternalEditor.js b/apps/common/main/lib/view/ExternalEditor.js new file mode 100644 index 000000000..050292454 --- /dev/null +++ b/apps/common/main/lib/view/ExternalEditor.js @@ -0,0 +1,195 @@ +/* + * + * (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 + * +*/ +/** + * ExternalEditor.js + * + * Created by Julia Radzhabova on 22/06/22 + * Copyright (c) 2022 Ascensio System SIA. All rights reserved. + * + */ + +define([ + 'common/main/lib/component/Window' +], function () { 'use strict'; + + Common.Views.ExternalEditor = Common.UI.Window.extend(_.extend({ + initialize : function(options) { + var filter = Common.localStorage.getKeysFilter(), + appPrefix = (filter && filter.length) ? filter.split(',')[0] : ''; + this.storageName = appPrefix + (options.storageName || 'external-editor'); + + var _options = {}, + width = options.initwidth || 900, + height = options.initheight || 700; + var value = Common.localStorage.getItem(this.storageName + '-width'); + value && (width = parseInt(value)); + value = Common.localStorage.getItem(this.storageName + '-height'); + value && (height = parseInt(value)); + + var _inner_height = Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top'); + _.extend(_options, { + width: width, + height: (_inner_height - height)<0 ? _inner_height : height, + cls: 'advanced-settings-dlg', + header: true, + toolclose: 'hide', + toolcallback: _.bind(this.onToolClose, this), + resizable: true + }, options); + + this._headerFooterHeight = 85; + + this.template = [ + '
', + '
', + '
', + '
', + '' + ].join(''); + + _options.tpl = _.template(this.template)(_options); + + this.handler = _options.handler; + this._isNewObject = true; + this.on('resize', _.bind(this.onWindowResize, this)); + Common.UI.Window.prototype.initialize.call(this, _options); + }, + + render: function() { + Common.UI.Window.prototype.render.call(this); + this.boxEl = this.$window.find('.body > .box'); + + this.btnSave = new Common.UI.Button({ + el: this.$window.find('#id-btn-editor-apply'), + disabled: true + }); + this.btnCancel = new Common.UI.Button({ + el: this.$window.find('#id-btn-editor-cancel') + }); + + this.$window.find('.dlg-btn').on('click', _.bind(this.onDlgBtnClick, this)); + }, + + show: function() { + Common.UI.Window.prototype.show.apply(this, arguments); + }, + + setEditMode: function(mode) { + this._isNewObject = !mode; + }, + + isEditMode: function() { + return !this._isNewObject; + }, + + 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-this._headerFooterHeight); + } + }, + + setInCenter: function() { + var height = this.$window.height(), + top = (Common.Utils.innerHeight() - Common.Utils.InternalSettings.get('window-inactive-area-top') - parseInt(height)) / 2, + 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); + }, + + setInnerSize: function(width, height) { + var maxHeight = Common.Utils.innerHeight(), + maxWidth = Common.Utils.innerWidth(), + borders_width = (parseInt(this.$window.css('border-left-width')) + parseInt(this.$window.css('border-right-width'))), + paddings = (parseInt(this.boxEl.css('padding-left')) + parseInt(this.boxEl.css('padding-right'))); + height += 90; // add toolbar and statusbar height + if (maxHeight', - '
', - '
', - '
', - '' - ].join(''); - - _options.tpl = _.template(this.template)(_options); - - this.handler = _options.handler; this._mergeData = null; - this._isNewMerge = 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-merge-editor-apply'), - disabled: true - }); - this.btnCancel = new Common.UI.Button({ - el: $('#id-btn-merge-editor-cancel'), - disabled: true - }); - - this.$window.find('.tool.close').addClass('disabled'); - this.$window.find('.dlg-btn').on('click', _.bind(this.onDlgBtnClick, this)); + Common.Views.ExternalEditor.prototype.initialize.call(this, _options); }, setMergeData: function(data) { @@ -96,54 +65,6 @@ define([ this.fireEvent('setmergedata', this); }, - setEditMode: function(mode) { - this._isNewMerge = !mode; - }, - - isEditMode: function() { - return !this._isNewMerge; - }, - - 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) { - var state = event.currentTarget.attributes['result'].value; - if ( this.handler && this.handler.call(this, state) ) - 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() - parseInt(height)) / 2; - var left = (Common.Utils.innerWidth() - parseInt(this.initConfig.width)) / 2; - - this.$window.css('left',left); - this.$window.css('top',top); - } - }, - - textSave: 'Save & Exit', - textClose: 'Close', textTitle: 'Mail Merge Recipients' }, Common.Views.ExternalMergeEditor || {})); }); \ No newline at end of file diff --git a/apps/common/main/lib/view/ExternalOleEditor.js b/apps/common/main/lib/view/ExternalOleEditor.js index 00260f675..415705b13 100644 --- a/apps/common/main/lib/view/ExternalOleEditor.js +++ b/apps/common/main/lib/view/ExternalOleEditor.js @@ -39,59 +39,24 @@ */ define([ - 'common/main/lib/component/Window' + 'common/main/lib/view/ExternalEditor' ], function () { 'use strict'; - Common.Views.ExternalOleEditor = Common.UI.Window.extend(_.extend({ + Common.Views.ExternalOleEditor = Common.Views.ExternalEditor.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) + storageName: 'ole-editor', + sdkplaceholder: 'id-ole-editor-placeholder', + initwidth: 900, + initheight: 700, + minwidth: 860, + minheight: 275 }, 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); + Common.Views.ExternalEditor.prototype.initialize.call(this, _options); }, setOleData: function(data) { @@ -100,65 +65,6 @@ define([ 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/Header.js b/apps/common/main/lib/view/Header.js index f433be058..97a4a9c0f 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -123,9 +123,10 @@ define([ '' + ''; - var templateTitleBox = '
' + + var templateTitleBox = '
' + '
' + '
' + + '
' + '
' + '
' + '
' + diff --git a/apps/common/main/lib/view/OpenDialog.js b/apps/common/main/lib/view/OpenDialog.js index ad039555a..1e2f7fa3f 100644 --- a/apps/common/main/lib/view/OpenDialog.js +++ b/apps/common/main/lib/view/OpenDialog.js @@ -207,6 +207,7 @@ define([ type: 'password', showCls: (this.options.iconType==='svg' ? 'svg-icon' : 'toolbar__icon') + ' btn-sheet-view', hideCls: (this.options.iconType==='svg' ? 'svg-icon' : 'toolbar__icon') + ' hide-password', + maxLength: this.options.maxPasswordLength, validateOnBlur: false, showPwdOnClick: true, validation : function(value) { diff --git a/apps/common/main/lib/view/OptionsDialog.js b/apps/common/main/lib/view/OptionsDialog.js index 4eb89ba3f..ea67e32e9 100644 --- a/apps/common/main/lib/view/OptionsDialog.js +++ b/apps/common/main/lib/view/OptionsDialog.js @@ -101,7 +101,10 @@ define([ this.checkedIndex = i; } } - (this.checkedIndex>=0) && this.radio[this.checkedIndex].setValue(true); + if (this.checkedIndex>=0) { + this.radio[this.checkedIndex].setValue(true); + this.currentCell = this.radio[this.checkedIndex].options.value; + } } $window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); }, diff --git a/apps/common/main/lib/view/PluginDlg.js b/apps/common/main/lib/view/PluginDlg.js index 3fc614de0..12abd51b2 100644 --- a/apps/common/main/lib/view/PluginDlg.js +++ b/apps/common/main/lib/view/PluginDlg.js @@ -154,6 +154,8 @@ define([ this.$window.css('left',(maxWidth - width - borders_width) / 2); this.$window.css('top',(maxHeight - height - this._headerFooterHeight) / 2); + + this._restoreHeight = this._restoreWidth = undefined; }, onWindowResize: function() { @@ -162,26 +164,38 @@ define([ win_width = this.getWidth(), win_height = this.getHeight(), bordersOffset = (this.resizable) ? 0 : this.bordersOffset; - if (win_height0 && win_height < this._restoreHeight) { + var height = Math.max(Math.min(this._restoreHeight, main_height-bordersOffset*2), this.initConfig.minheight); + this.setHeight(height); + this.boxEl.css('height', height - this._headerFooterHeight); + } + var top = this.getTop(); if (topmain_height-bordersOffset) this.$window.css('top', main_height-bordersOffset - win_height); + } else { + if (this._restoreHeight===undefined) { + this._restoreHeight = win_height; + } + this.setHeight(Math.max(main_height-bordersOffset*2, this.initConfig.minheight)); + this.boxEl.css('height', Math.max(main_height-bordersOffset*2, this.initConfig.minheight) - this._headerFooterHeight); + this.$window.css('top', bordersOffset); + } + if (win_width0 && win_width < this._restoreWidth) { + this.setWidth(Math.max(Math.min(this._restoreWidth, main_width-bordersOffset*2), this.initConfig.minwidth)); + } + var left = this.getLeft(); if (leftmain_width-bordersOffset) this.$window.css('left', main_width-bordersOffset-win_width); } else { - if (win_height>main_height-bordersOffset*2) { - this.setHeight(Math.max(main_height-bordersOffset*2, this.initConfig.minheight)); - this.boxEl.css('height', Math.max(main_height-bordersOffset*2, this.initConfig.minheight) - this._headerFooterHeight); - this.$window.css('top', bordersOffset); - } - if (win_width>main_width-bordersOffset*2) { - this.setWidth(Math.max(main_width-bordersOffset*2, this.initConfig.minwidth)); - this.$window.css('left', bordersOffset); + if (this._restoreWidth===undefined) { + this._restoreWidth = win_width; } + this.setWidth(Math.max(main_width-bordersOffset*2, this.initConfig.minwidth)); + this.$window.css('left', bordersOffset); } }, diff --git a/apps/common/main/lib/view/Plugins.js b/apps/common/main/lib/view/Plugins.js index 37c97cc1d..fdc530457 100644 --- a/apps/common/main/lib/view/Plugins.js +++ b/apps/common/main/lib/view/Plugins.js @@ -74,14 +74,16 @@ define([ _.extend(this, options); this._locked = false; this._state = { - DisabledControls: false + DisabledControls: false, + docProtection: { + isReadOnly: false, + isReviewOnly: false, + isFormsOnly: false, + isCommentsOnly: false + } }; this.lockedControls = []; Common.UI.BaseView.prototype.initialize.call(this, arguments); - - Common.NotificationCenter.on('app:ready', function (mode) { - Common.Utils.asyncCall(this._onAppReady, this, mode); - }.bind(this)); }, render: function(el) { @@ -153,6 +155,7 @@ define([ if ( !this.storePlugins.isEmpty() ) { var me = this; var _group = $('
'); + var _set = Common.enumLock; this.storePlugins.each(function (model) { if (model.get('visible')) { var modes = model.get('variations'), @@ -167,6 +170,7 @@ define([ split: modes && modes.length > 1, value: guid, hint: model.get('name'), + lock: model.get('isDisplayedInViewer') ? [_set.viewMode, _set.previewReviewMode, _set.viewFormMode, _set.selRangeEdit, _set.editFormula] : [_set.viewMode, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.selRangeEdit, _set.editFormula], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -179,6 +183,10 @@ define([ me.lockedControls.push(btn); } }); + var docProtection = me._state.docProtection + Common.Utils.lockControls(Common.enumLock.docLockView, docProtection.isReadOnly, {array: me.lockedControls}); + Common.Utils.lockControls(Common.enumLock.docLockForms, docProtection.isFormsOnly, {array: me.lockedControls}); + Common.Utils.lockControls(Common.enumLock.docLockComments, docProtection.isCommentsOnly, {array: me.lockedControls}); parent.html(_group); $('
').prependTo(parent); @@ -204,6 +212,16 @@ define([ } }, + SetDisabled: function(disable, reviewMode, fillFormMode) { + if (reviewMode) { + Common.Utils.lockControls(Common.enumLock.previewReviewMode, disable, {array: this.lockedControls}); + } else if (fillFormMode) { + Common.Utils.lockControls(Common.enumLock.viewFormMode, disable, {array: this.lockedControls}); + } else { + Common.Utils.lockControls(Common.enumLock.viewMode, disable, {array: this.lockedControls}); + } + }, + openInsideMode: function(name, url, frameId) { if (!this.pluginsPanel) return false; @@ -289,9 +307,6 @@ define([ this.loadMask.hide(); }, - _onAppReady: function (mode) { - }, - parseIcons: function(icons) { if (icons.length && typeof icons[0] !== 'string') { var theme = Common.UI.Themes.currentThemeId().toLowerCase(), @@ -389,6 +404,7 @@ define([ }); }); + var _set = Common.enumLock; var btn = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconImg: icon_url, @@ -397,6 +413,7 @@ define([ split: _menu_items.length > 1, value: guid, hint: model.get('name'), + lock: model.get('isDisplayedInViewer') ? [_set.viewMode, _set.previewReviewMode, _set.viewFormMode, _set.selRangeEdit, _set.editFormula] : [_set.viewMode, _set.previewReviewMode, _set.viewFormMode, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.selRangeEdit, _set.editFormula ], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' diff --git a/apps/common/main/lib/view/Protection.js b/apps/common/main/lib/view/Protection.js index f9b22360a..3e160a629 100644 --- a/apps/common/main/lib/view/Protection.js +++ b/apps/common/main/lib/view/Protection.js @@ -78,6 +78,9 @@ define([ }); }); + this.btnPwd.on('click', function (b, e) { + !b.pressed && me.fireEvent('protect:password', [b, 'delete']); + }); this.btnPwd.menu.on('item:click', function (menu, item, e) { me.fireEvent('protect:password', [menu, item.value]); }); @@ -132,6 +135,8 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-ic-protect', caption: this.txtEncrypt, + split: true, + enableToggle: true, menu: true, visible: false, dataHint : '1', @@ -172,7 +177,7 @@ define([ if ( config.canProtect) { if ( config.isPasswordSupport) { me.btnAddPwd.updateHint(me.hintAddPwd); - me.btnPwd.updateHint(me.hintPwd); + me.btnPwd.updateHint([me.hintDelPwd, me.hintPwd]); me.btnPwd.setMenu( new Common.UI.Menu({ @@ -342,6 +347,7 @@ define([ } }, this); this.btnPwd.setVisible(hasPassword); + this.btnPwd.toggle(hasPassword, true); }, txtEncrypt: 'Encrypt', @@ -353,7 +359,8 @@ define([ txtDeletePwd: 'Delete password', txtAddPwd: 'Add password', txtInvisibleSignature: 'Add digital signature', - txtSignatureLine: 'Add Signature line' + txtSignatureLine: 'Add Signature line', + hintDelPwd: 'Delete password' } }()), Common.Views.Protection || {})); }); \ No newline at end of file diff --git a/apps/common/main/lib/view/ReviewChanges.js b/apps/common/main/lib/view/ReviewChanges.js index baba01435..4c4c1239f 100644 --- a/apps/common/main/lib/view/ReviewChanges.js +++ b/apps/common/main/lib/view/ReviewChanges.js @@ -238,6 +238,10 @@ define([ me.fireEvent('comment:resolveComments', [item.value]); }); } + Common.NotificationCenter.on('protect:doclock', function (e) { + me.fireEvent('protect:update'); + }); + me.fireEvent('protect:update'); } return { @@ -259,7 +263,7 @@ define([ caption: this.txtAccept, split: !this.appConfig.canUseReviewPermissions, iconCls: 'toolbar__icon btn-review-save', - lock: [_set.reviewChangelock, _set.isReviewOnly, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect], + lock: [_set.reviewChangelock, _set.isReviewOnly, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.docLockReview], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -271,7 +275,7 @@ define([ caption: this.txtReject, split: !this.appConfig.canUseReviewPermissions, iconCls: 'toolbar__icon btn-review-deny', - lock: [_set.reviewChangelock, _set.isReviewOnly, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect], + lock: [_set.reviewChangelock, _set.isReviewOnly, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.docLockReview], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -284,7 +288,7 @@ define([ caption: this.txtCompare, split: true, iconCls: 'toolbar__icon btn-compare', - lock: [_set.hasCoeditingUsers, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect], + lock: [_set.hasCoeditingUsers, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.docLockView, _set.docLockForms, _set.docLockComments], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -294,7 +298,7 @@ define([ this.btnTurnOn = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-ic-review', - lock: [_set.previewReviewMode, _set.viewFormMode, _set.lostConnect], + lock: [_set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.docLockReview], caption: this.txtTurnon, split: !this.appConfig.isReviewOnly, enableToggle: true, @@ -309,7 +313,7 @@ define([ this.btnPrev = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-review-prev', - lock: [_set.previewReviewMode, _set.viewFormMode, _set.lostConnect], + lock: [_set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.txtPrev, dataHint: '1', dataHintDirection: 'bottom', @@ -320,7 +324,7 @@ define([ this.btnNext = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-review-next', - lock: [_set.previewReviewMode, _set.viewFormMode, _set.lostConnect], + lock: [_set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.txtNext, dataHint: '1', dataHintDirection: 'bottom', @@ -336,7 +340,7 @@ define([ this.btnReviewView = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-ic-reviewview', - lock: [_set.viewFormMode, _set.lostConnect], + lock: [_set.viewFormMode, _set.lostConnect, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.txtView, menu: new Common.UI.Menu({ cls: 'ppm-toolbar', @@ -404,7 +408,7 @@ define([ this.btnCoAuthMode = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-ic-coedit', - lock: [_set.viewFormMode, _set.lostConnect], + lock: [_set.viewFormMode, _set.lostConnect, _set.docLockView], caption: this.txtCoAuthMode, menu: true, dataHint: '1', @@ -445,12 +449,13 @@ define([ } if ( this.appConfig.canCoAuthoring && this.appConfig.canComments ) { + this.canComments = true; // fix for loading protected document this.btnCommentRemove = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', caption: this.txtCommentRemove, split: true, iconCls: 'toolbar__icon btn-rem-comment', - lock: [_set.previewReviewMode, _set.viewFormMode, _set.hideComments, _set['Objects'], _set.lostConnect], + lock: [_set.previewReviewMode, _set.viewFormMode, _set.hideComments, _set['Objects'], _set.lostConnect, _set.docLockView, _set.docLockForms], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -461,15 +466,13 @@ define([ caption: this.txtCommentResolve, split: true, iconCls: 'toolbar__icon btn-resolve-all', - lock: [_set.previewReviewMode, _set.viewFormMode, _set.hideComments, _set['Objects'], _set.lostConnect], + lock: [_set.previewReviewMode, _set.viewFormMode, _set.hideComments, _set['Objects'], _set.lostConnect, _set.docLockView, _set.docLockForms], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' }); this.lockedControls.push(this.btnCommentResolve); } - - Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, render: function (el) { @@ -658,7 +661,7 @@ define([ } var separator_sharing = !(me.btnSharing || me.btnCoAuthMode) ? me.$el.find('.separator.sharing') : '.separator.sharing', - separator_comments = !(config.canComments && config.canCoAuthoring) ? me.$el.find('.separator.comments') : '.separator.comments', + separator_comments = !(me.btnCommentRemove || me.btnCommentResolve) ? me.$el.find('.separator.comments') : '.separator.comments', separator_review = !(config.canReview || config.canViewReview) ? me.$el.find('.separator.review') : '.separator.review', separator_compare = !(config.canReview && config.canFeatureComparison) ? me.$el.find('.separator.compare') : '.separator.compare', separator_chat = !me.btnChat ? me.$el.find('.separator.chat') : '.separator.chat', @@ -692,8 +695,7 @@ define([ if (!me.btnHistory && separator_last) me.$el.find(separator_last).hide(); - Common.NotificationCenter.trigger('tab:visible', 'review', (config.isEdit || config.canViewReview || config.canCoAuthoring && config.canComments) && Common.UI.LayoutManager.isElementVisible('toolbar-collaboration')); - + Common.NotificationCenter.trigger('tab:visible', 'review', (config.isEdit || config.canViewReview || me.canComments) && Common.UI.LayoutManager.isElementVisible('toolbar-collaboration')); setEvents.call(me); }); }, @@ -731,7 +733,7 @@ define([ var button = new Common.UI.Button({ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-ic-review', - lock: [Common.enumLock.viewMode, Common.enumLock.previewReviewMode, Common.enumLock.viewFormMode, Common.enumLock.lostConnect], + lock: [Common.enumLock.viewMode, Common.enumLock.previewReviewMode, Common.enumLock.viewFormMode, Common.enumLock.lostConnect, Common.enumLock.docLockView, Common.enumLock.docLockForms, Common.enumLock.docLockComments, Common.enumLock.docLockReview], hintAnchor : 'top', hint : this.tipReview, split : !this.appConfig.isReviewOnly, @@ -778,7 +780,7 @@ define([ button = new Common.UI.Button({ cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-ic-docspell', - lock: [Common.enumLock.viewMode, Common.enumLock.viewFormMode, Common.enumLock.previewReviewMode], + lock: [Common.enumLock.viewMode, Common.enumLock.viewFormMode, Common.enumLock.previewReviewMode, Common.enumLock.docLockView, Common.enumLock.docLockForms, Common.enumLock.docLockComments], hintAnchor : 'top', hint: this.tipSetSpelling, enableToggle: true, @@ -794,7 +796,7 @@ define([ button = new Common.UI.Button({ cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-ic-doclang', - lock: [Common.enumLock.viewMode, Common.enumLock.previewReviewMode, Common.enumLock.viewFormMode, Common.enumLock.noSpellcheckLangs, Common.enumLock.lostConnect], + lock: [Common.enumLock.viewMode, Common.enumLock.previewReviewMode, Common.enumLock.viewFormMode, Common.enumLock.noSpellcheckLangs, Common.enumLock.lostConnect, Common.enumLock.docLockView, Common.enumLock.docLockForms, Common.enumLock.docLockComments], hintAnchor : 'top', hint: this.tipSetDocLang, dataHint: '0', @@ -973,6 +975,7 @@ define([ this.options.tpl = _.template(this.template)(this.options); this.popoverChanges = this.options.popoverChanges; this.mode = this.options.mode; + this.docProtection = this.options.docProtection; var filter = Common.localStorage.getKeysFilter(); this.appPrefix = (filter && filter.length) ? filter.split(',')[0] : ''; @@ -983,6 +986,7 @@ define([ render: function() { Common.UI.Window.prototype.render.call(this); + var _set = Common.enumLock; this.btnPrev = new Common.UI.Button({ cls: 'dlg-btn iconic', iconCls: 'img-commonctrl prev', @@ -1003,7 +1007,8 @@ define([ cls : 'btn-toolbar', caption : this.txtAccept, split : true, - disabled : this.mode.isReviewOnly || !!Common.Utils.InternalSettings.get(this.appPrefix + "accept-reject-lock"), + disabled : this.mode.isReviewOnly || this.docProtection.isReviewOnly || !!Common.Utils.InternalSettings.get(this.appPrefix + "accept-reject-lock"), + lock : [_set.reviewChangelock, _set.isReviewOnly, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.docLockReview], menu : this.mode.canUseReviewPermissions ? false : new Common.UI.Menu({ items: [ this.mnuAcceptCurrent = new Common.UI.MenuItem({ @@ -1023,7 +1028,7 @@ define([ cls : 'btn-toolbar', caption : this.txtReject, split : true, - disabled : this.mode.isReviewOnly || !!Common.Utils.InternalSettings.get(this.appPrefix + "accept-reject-lock"), + lock : [_set.reviewChangelock, _set.isReviewOnly, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.docLockView, _set.docLockForms, _set.docLockComments, _set.docLockReview], menu : this.mode.canUseReviewPermissions ? false : new Common.UI.Menu({ items: [ this.mnuRejectCurrent = new Common.UI.MenuItem({ @@ -1038,6 +1043,13 @@ define([ }) }); this.btnReject.render(this.$window.find('#id-review-button-reject')); + var arr = [this.btnAccept, this.btnReject]; + Common.Utils.lockControls(Common.enumLock.isReviewOnly, this.mode.isReviewOnly, {array: arr}); + Common.Utils.lockControls(Common.enumLock.docLockView, this.docProtection.isReadOnly, {array: arr}); + Common.Utils.lockControls(Common.enumLock.docLockForms, this.docProtection.isFormsOnly, {array: arr}); + Common.Utils.lockControls(Common.enumLock.docLockReview, this.docProtection.isReviewOnly, {array: arr}); + Common.Utils.lockControls(Common.enumLock.docLockComments, this.docProtection.isCommentsOnly, {array: arr}); + Common.Utils.lockControls(Common.enumLock.reviewChangelock, !!Common.Utils.InternalSettings.get(this.appPrefix + "accept-reject-lock"), {array: arr}); var me = this; this.btnPrev.on('click', function (e) { diff --git a/apps/common/main/lib/view/ReviewPopover.js b/apps/common/main/lib/view/ReviewPopover.js index 0c8c31b42..2d26dec68 100644 --- a/apps/common/main/lib/view/ReviewPopover.js +++ b/apps/common/main/lib/view/ReviewPopover.js @@ -173,6 +173,17 @@ define([ var text = $(this.el).find('textarea'); return (text && text.length) ? text.val().trim() : ''; }, + disableTextBoxButton: function(textboxEl) { + var button = $(textboxEl.siblings('#id-comments-change-popover')[0]); + + if(textboxEl.val().trim().length > 0) { + button.removeAttr('disabled'); + button.removeClass('disabled'); + } else { + button.attr('disabled', true); + button.addClass('disabled'); + } + }, autoHeightTextBox: function () { var view = this, textBox = this.$el.find('textarea'), @@ -183,6 +194,7 @@ define([ oldHeight = 0, newHeight = 0; + function updateTextBoxHeight() { scrollPos = parentView.scroller.getScrollTop(); if (domTextBox.scrollHeight > domTextBox.clientHeight) { @@ -211,13 +223,20 @@ define([ parentView.autoScrollToEditButtons(); } + function onTextareaInput(event) { + updateTextBoxHeight(); + view.disableTextBoxButton($(event.target)); + } + + if (textBox && textBox.length && parentView.scroller) { domTextBox = textBox.get(0); + view.disableTextBoxButton(textBox); if (domTextBox) { lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25; updateTextBoxHeight(); - textBox.bind('input propertychange', updateTextBoxHeight) + textBox.bind('input propertychange', onTextareaInput) } } @@ -240,13 +259,14 @@ define([ el: $('#id-comments-popover'), itemTemplate: _.template(replaceWords(commentsTemplate, { textAddReply: me.textAddReply, + textMentionReply: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : me.textAddReply, textAdd: me.textAdd, textCancel: me.textCancel, textEdit: me.textEdit, textReply: me.textReply, textClose: me.textClose, maxCommLength: Asc.c_oAscMaxCellOrCommentLength, - textMention: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : '' + textMentionComment: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : me.textEnterComment }) ) }); @@ -321,7 +341,9 @@ define([ if (record.get('hint')) { me.fireEvent('comment:disableHint', [record]); - return; + + if(!record.get('fullInfoInHint')) + return; } if (btn.hasClass('btn-edit')) { @@ -516,8 +538,10 @@ define([ }, 'animate:before': function () { var text = me.$window.find('textarea'); - if (text && text.length) + if (text && text.length){ text.focus(); + me.commentsView.disableTextBoxButton(text); + } } }); } @@ -1292,6 +1316,7 @@ define([ textFollowMove : 'Follow Move', textMention : '+mention will provide access to the document and send an email', textMentionNotify : '+mention will notify the user via email', + textEnterComment : 'Enter your comment here', textViewResolved : 'You have not permission for reopen comment', txtAccept: 'Accept', txtReject: 'Reject', diff --git a/apps/common/main/lib/view/SignSettingsDialog.js b/apps/common/main/lib/view/SignSettingsDialog.js index 47347c24e..a23fec07e 100644 --- a/apps/common/main/lib/view/SignSettingsDialog.js +++ b/apps/common/main/lib/view/SignSettingsDialog.js @@ -63,10 +63,7 @@ define([ }, options || {}); this.template = [ - '
', - '
', - '', - '
', + '
', '
', '', '
', @@ -125,6 +122,7 @@ define([ }); me.textareaInstructions = this.$window.find('textarea'); + me.textareaInstructions.val(this.textDefInstruction); me.textareaInstructions.keydown(function (event) { if (event.keyCode == Common.UI.Keys.RETURN) { event.stopPropagation(); @@ -136,7 +134,8 @@ define([ this.chDate = new Common.UI.CheckBox({ el: $('#id-dlg-sign-settings-date'), labelText: this.textShowDate, - disabled: this.type=='view' + disabled: this.type=='view', + value: 'checked' }); $window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); @@ -198,13 +197,14 @@ define([ }, textInfo: 'Signer Info', - textInfoName: 'Name', - textInfoTitle: 'Signer Title', - textInfoEmail: 'E-mail', - textInstructions: 'Instructions for Signer', + textInfoName: 'Suggested signer', + textInfoTitle: 'Suggested signer\'s title', + textInfoEmail: 'Suggested signer\'s e-mail', + textInstructions: 'Instructions for signer', txtEmpty: 'This field is required', textAllowComment: 'Allow signer to add comment in the signature dialog', textShowDate: 'Show sign date in signature line', - textTitle: 'Signature Setup' + textTitle: 'Signature Setup', + textDefInstruction: 'Before signing this document, verify that the content you are signing is correct.' }, Common.Views.SignSettingsDialog || {})) }); \ No newline at end of file diff --git a/apps/common/main/resources/img/doc-formats/djvu.svg b/apps/common/main/resources/img/doc-formats/djvu.svg index a318cff21..7cd4e08d6 100644 --- a/apps/common/main/resources/img/doc-formats/djvu.svg +++ b/apps/common/main/resources/img/doc-formats/djvu.svg @@ -1,5 +1,4 @@ - @@ -14,5 +13,4 @@ - diff --git a/apps/common/main/resources/img/doc-formats/oxps.svg b/apps/common/main/resources/img/doc-formats/oxps.svg index 58d22cca5..98a42b7d7 100644 --- a/apps/common/main/resources/img/doc-formats/oxps.svg +++ b/apps/common/main/resources/img/doc-formats/oxps.svg @@ -1,5 +1,4 @@ - @@ -7,5 +6,4 @@ - diff --git a/apps/common/main/resources/img/doc-formats/xps.svg b/apps/common/main/resources/img/doc-formats/xps.svg index 97a062128..d69b7e945 100644 --- a/apps/common/main/resources/img/doc-formats/xps.svg +++ b/apps/common/main/resources/img/doc-formats/xps.svg @@ -1,5 +1,4 @@ - @@ -7,5 +6,4 @@ - diff --git a/apps/common/main/resources/img/toolbar/1.25x/big/btn-text-vertical.png b/apps/common/main/resources/img/toolbar/1.25x/big/btn-text-vertical.png new file mode 100644 index 000000000..1850634ab Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/big/btn-text-vertical.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/big/btn-text.png b/apps/common/main/resources/img/toolbar/1.25x/big/btn-text.png index 26147828b..b06d5aa0e 100644 Binary files a/apps/common/main/resources/img/toolbar/1.25x/big/btn-text.png and b/apps/common/main/resources/img/toolbar/1.25x/big/btn-text.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/big/smart-art.png b/apps/common/main/resources/img/toolbar/1.25x/big/smart-art.png new file mode 100644 index 000000000..7d02e1a19 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/big/smart-art.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-home.png b/apps/common/main/resources/img/toolbar/1.25x/btn-home.png new file mode 100644 index 000000000..f7e24f025 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/btn-home.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-merge-cells.png b/apps/common/main/resources/img/toolbar/1.25x/btn-merge-cells.png index ac6fa48f9..16327491b 100644 Binary files a/apps/common/main/resources/img/toolbar/1.25x/btn-merge-cells.png and b/apps/common/main/resources/img/toolbar/1.25x/btn-merge-cells.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-mode-dark.png b/apps/common/main/resources/img/toolbar/1.25x/btn-mode-dark.png deleted file mode 100644 index f92340e51..000000000 Binary files a/apps/common/main/resources/img/toolbar/1.25x/btn-mode-dark.png and /dev/null differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-mode-light.png b/apps/common/main/resources/img/toolbar/1.25x/btn-mode-light.png deleted file mode 100644 index ddf6413b4..000000000 Binary files a/apps/common/main/resources/img/toolbar/1.25x/btn-mode-light.png and /dev/null differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-print.png b/apps/common/main/resources/img/toolbar/1.25x/btn-print.png index 0dcdf890e..ac9fc12f5 100644 Binary files a/apps/common/main/resources/img/toolbar/1.25x/btn-print.png and b/apps/common/main/resources/img/toolbar/1.25x/btn-print.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-down.png b/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-down.png new file mode 100644 index 000000000..4714ec06d Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-down.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-up.png b/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-up.png new file mode 100644 index 000000000..8d2bd9cf3 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-up.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-y-clockwise.png b/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-y-clockwise.png new file mode 100644 index 000000000..02a4ff521 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-y-clockwise.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-y-counterclockwise.png b/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-y-counterclockwise.png new file mode 100644 index 000000000..a14a6b47f Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/btn-rotate-y-counterclockwise.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-save.png b/apps/common/main/resources/img/toolbar/1.25x/btn-save.png index 9d7fe5b5f..28f0e9caa 100644 Binary files a/apps/common/main/resources/img/toolbar/1.25x/btn-save.png and b/apps/common/main/resources/img/toolbar/1.25x/btn-save.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-text-vertical.png b/apps/common/main/resources/img/toolbar/1.25x/btn-text-vertical.png new file mode 100644 index 000000000..4d5c53bf6 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/btn-text-vertical.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-text.png b/apps/common/main/resources/img/toolbar/1.25x/btn-text.png new file mode 100644 index 000000000..0ab41f1ff Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/btn-text.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/smart-cycle.png b/apps/common/main/resources/img/toolbar/1.25x/smart-cycle.png new file mode 100644 index 000000000..0915f8450 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/smart-cycle.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/smart-hierarchy.png b/apps/common/main/resources/img/toolbar/1.25x/smart-hierarchy.png new file mode 100644 index 000000000..2d64e5f08 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/smart-hierarchy.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/smart-list.png b/apps/common/main/resources/img/toolbar/1.25x/smart-list.png new file mode 100644 index 000000000..d3f7fb50e Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/smart-list.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/smart-matrix.png b/apps/common/main/resources/img/toolbar/1.25x/smart-matrix.png new file mode 100644 index 000000000..a807a3933 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/smart-matrix.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/smart-process.png b/apps/common/main/resources/img/toolbar/1.25x/smart-process.png new file mode 100644 index 000000000..c46ab3474 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/smart-process.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/smart-pyramid.png b/apps/common/main/resources/img/toolbar/1.25x/smart-pyramid.png new file mode 100644 index 000000000..bb6010d0d Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/smart-pyramid.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/smart-relationship.png b/apps/common/main/resources/img/toolbar/1.25x/smart-relationship.png new file mode 100644 index 000000000..dc8c6a8fc Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.25x/smart-relationship.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/big/btn-text-vertical.png b/apps/common/main/resources/img/toolbar/1.5x/big/btn-text-vertical.png new file mode 100644 index 000000000..ce930c005 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/big/btn-text-vertical.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/big/btn-text.png b/apps/common/main/resources/img/toolbar/1.5x/big/btn-text.png index 54077238a..3da7ffbc2 100644 Binary files a/apps/common/main/resources/img/toolbar/1.5x/big/btn-text.png and b/apps/common/main/resources/img/toolbar/1.5x/big/btn-text.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/big/smart-art.png b/apps/common/main/resources/img/toolbar/1.5x/big/smart-art.png new file mode 100644 index 000000000..2c37a9391 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/big/smart-art.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-home.png b/apps/common/main/resources/img/toolbar/1.5x/btn-home.png new file mode 100644 index 000000000..1650fd23f Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/btn-home.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-merge-cells.png b/apps/common/main/resources/img/toolbar/1.5x/btn-merge-cells.png index f4b36345d..3f43b1af6 100644 Binary files a/apps/common/main/resources/img/toolbar/1.5x/btn-merge-cells.png and b/apps/common/main/resources/img/toolbar/1.5x/btn-merge-cells.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-mode-dark.png b/apps/common/main/resources/img/toolbar/1.5x/btn-mode-dark.png deleted file mode 100644 index 8e9eb385e..000000000 Binary files a/apps/common/main/resources/img/toolbar/1.5x/btn-mode-dark.png and /dev/null differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-mode-light.png b/apps/common/main/resources/img/toolbar/1.5x/btn-mode-light.png deleted file mode 100644 index 082fd4640..000000000 Binary files a/apps/common/main/resources/img/toolbar/1.5x/btn-mode-light.png and /dev/null differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-print.png b/apps/common/main/resources/img/toolbar/1.5x/btn-print.png index da832c324..27245d77a 100644 Binary files a/apps/common/main/resources/img/toolbar/1.5x/btn-print.png and b/apps/common/main/resources/img/toolbar/1.5x/btn-print.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-down.png b/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-down.png new file mode 100644 index 000000000..b212389a5 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-down.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-up.png b/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-up.png new file mode 100644 index 000000000..4e41c78fd Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-up.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-y-clockwise.png b/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-y-clockwise.png new file mode 100644 index 000000000..4dee2fd2a Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-y-clockwise.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-y-counterclockwise.png b/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-y-counterclockwise.png new file mode 100644 index 000000000..b8380e2c5 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/btn-rotate-y-counterclockwise.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-save.png b/apps/common/main/resources/img/toolbar/1.5x/btn-save.png index 399f2a2da..3866526f0 100644 Binary files a/apps/common/main/resources/img/toolbar/1.5x/btn-save.png and b/apps/common/main/resources/img/toolbar/1.5x/btn-save.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-text-vertical.png b/apps/common/main/resources/img/toolbar/1.5x/btn-text-vertical.png new file mode 100644 index 000000000..e220bbeb9 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/btn-text-vertical.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/btn-text.png b/apps/common/main/resources/img/toolbar/1.5x/btn-text.png new file mode 100644 index 000000000..43cb7a918 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/btn-text.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/smart-cycle.png b/apps/common/main/resources/img/toolbar/1.5x/smart-cycle.png new file mode 100644 index 000000000..8b2c46408 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/smart-cycle.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/smart-hierarchy.png b/apps/common/main/resources/img/toolbar/1.5x/smart-hierarchy.png new file mode 100644 index 000000000..3e1b76c58 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/smart-hierarchy.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/smart-list.png b/apps/common/main/resources/img/toolbar/1.5x/smart-list.png new file mode 100644 index 000000000..db094335f Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/smart-list.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/smart-matrix.png b/apps/common/main/resources/img/toolbar/1.5x/smart-matrix.png new file mode 100644 index 000000000..7edb556b4 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/smart-matrix.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/smart-process.png b/apps/common/main/resources/img/toolbar/1.5x/smart-process.png new file mode 100644 index 000000000..ad525bfcc Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/smart-process.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/smart-pyramid.png b/apps/common/main/resources/img/toolbar/1.5x/smart-pyramid.png new file mode 100644 index 000000000..da1046fef Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/smart-pyramid.png differ diff --git a/apps/common/main/resources/img/toolbar/1.5x/smart-relationship.png b/apps/common/main/resources/img/toolbar/1.5x/smart-relationship.png new file mode 100644 index 000000000..37ead4f26 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.5x/smart-relationship.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/big/btn-text-vertical.png b/apps/common/main/resources/img/toolbar/1.75x/big/btn-text-vertical.png new file mode 100644 index 000000000..b22e55c57 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/big/btn-text-vertical.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/big/btn-text.png b/apps/common/main/resources/img/toolbar/1.75x/big/btn-text.png index 2ef059516..244eff7bc 100644 Binary files a/apps/common/main/resources/img/toolbar/1.75x/big/btn-text.png and b/apps/common/main/resources/img/toolbar/1.75x/big/btn-text.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/big/smart-art.png b/apps/common/main/resources/img/toolbar/1.75x/big/smart-art.png new file mode 100644 index 000000000..23dcfb9df Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/big/smart-art.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-home.png b/apps/common/main/resources/img/toolbar/1.75x/btn-home.png new file mode 100644 index 000000000..39447cec0 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/btn-home.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-merge-cells.png b/apps/common/main/resources/img/toolbar/1.75x/btn-merge-cells.png index 6a9bb9adc..dc298f6a4 100644 Binary files a/apps/common/main/resources/img/toolbar/1.75x/btn-merge-cells.png and b/apps/common/main/resources/img/toolbar/1.75x/btn-merge-cells.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-mode-dark.png b/apps/common/main/resources/img/toolbar/1.75x/btn-mode-dark.png deleted file mode 100644 index af78431f1..000000000 Binary files a/apps/common/main/resources/img/toolbar/1.75x/btn-mode-dark.png and /dev/null differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-mode-light.png b/apps/common/main/resources/img/toolbar/1.75x/btn-mode-light.png deleted file mode 100644 index 420564ff3..000000000 Binary files a/apps/common/main/resources/img/toolbar/1.75x/btn-mode-light.png and /dev/null differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-print.png b/apps/common/main/resources/img/toolbar/1.75x/btn-print.png index f427948fb..1ae4e22da 100644 Binary files a/apps/common/main/resources/img/toolbar/1.75x/btn-print.png and b/apps/common/main/resources/img/toolbar/1.75x/btn-print.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-down.png b/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-down.png new file mode 100644 index 000000000..f3d4e2348 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-down.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-up.png b/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-up.png new file mode 100644 index 000000000..3a9dd79b5 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-up.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-y-clockwise.png b/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-y-clockwise.png new file mode 100644 index 000000000..c3f40271e Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-y-clockwise.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-y-counterclockwise.png b/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-y-counterclockwise.png new file mode 100644 index 000000000..310d95c2c Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/btn-rotate-y-counterclockwise.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-save.png b/apps/common/main/resources/img/toolbar/1.75x/btn-save.png index 4c5325307..060ab5e7f 100644 Binary files a/apps/common/main/resources/img/toolbar/1.75x/btn-save.png and b/apps/common/main/resources/img/toolbar/1.75x/btn-save.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-text-vertical.png b/apps/common/main/resources/img/toolbar/1.75x/btn-text-vertical.png new file mode 100644 index 000000000..64e713b3f Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/btn-text-vertical.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-text.png b/apps/common/main/resources/img/toolbar/1.75x/btn-text.png new file mode 100644 index 000000000..05f63a78d Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/btn-text.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/smart-cycle.png b/apps/common/main/resources/img/toolbar/1.75x/smart-cycle.png new file mode 100644 index 000000000..5612b313d Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/smart-cycle.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/smart-hierarchy.png b/apps/common/main/resources/img/toolbar/1.75x/smart-hierarchy.png new file mode 100644 index 000000000..21347fa56 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/smart-hierarchy.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/smart-list.png b/apps/common/main/resources/img/toolbar/1.75x/smart-list.png new file mode 100644 index 000000000..bad73d083 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/smart-list.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/smart-matrix.png b/apps/common/main/resources/img/toolbar/1.75x/smart-matrix.png new file mode 100644 index 000000000..a0ddf2f41 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/smart-matrix.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/smart-process.png b/apps/common/main/resources/img/toolbar/1.75x/smart-process.png new file mode 100644 index 000000000..ccc4b2105 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/smart-process.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/smart-pyramid.png b/apps/common/main/resources/img/toolbar/1.75x/smart-pyramid.png new file mode 100644 index 000000000..098559a54 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/smart-pyramid.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/smart-relationship.png b/apps/common/main/resources/img/toolbar/1.75x/smart-relationship.png new file mode 100644 index 000000000..5d55ff559 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1.75x/smart-relationship.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/big/.css.handlebars b/apps/common/main/resources/img/toolbar/1x/big/.css.handlebars index c97af05b1..66c848fb0 100644 --- a/apps/common/main/resources/img/toolbar/1x/big/.css.handlebars +++ b/apps/common/main/resources/img/toolbar/1x/big/.css.handlebars @@ -25,7 +25,7 @@ } {{/spritesheet}} {{#sprites}} -{{#parselang name}}.x-huge .{{name}}{{/parselang}}, +{{#parselang name}}.x-huge .{{name}}{{/parselang}}:not(.menu__icon), .toolbar__icon-big.{{name}} { background-position: 0 {{px.offset_y}}; diff --git a/apps/common/main/resources/img/toolbar/1x/big/btn-text-vertical.png b/apps/common/main/resources/img/toolbar/1x/big/btn-text-vertical.png new file mode 100644 index 000000000..267ec2ec3 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/big/btn-text-vertical.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/big/btn-text.png b/apps/common/main/resources/img/toolbar/1x/big/btn-text.png index 630b2c47c..448117d31 100644 Binary files a/apps/common/main/resources/img/toolbar/1x/big/btn-text.png and b/apps/common/main/resources/img/toolbar/1x/big/btn-text.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/big/smart-art.png b/apps/common/main/resources/img/toolbar/1x/big/smart-art.png new file mode 100644 index 000000000..fc5d5ceb4 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/big/smart-art.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-home.png b/apps/common/main/resources/img/toolbar/1x/btn-home.png new file mode 100644 index 000000000..221b057a3 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/btn-home.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-merge-cells.png b/apps/common/main/resources/img/toolbar/1x/btn-merge-cells.png index 67872ed2c..c2fed157c 100644 Binary files a/apps/common/main/resources/img/toolbar/1x/btn-merge-cells.png and b/apps/common/main/resources/img/toolbar/1x/btn-merge-cells.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-mode-dark.png b/apps/common/main/resources/img/toolbar/1x/btn-mode-dark.png deleted file mode 100644 index 5a6041484..000000000 Binary files a/apps/common/main/resources/img/toolbar/1x/btn-mode-dark.png and /dev/null differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-mode-light.png b/apps/common/main/resources/img/toolbar/1x/btn-mode-light.png deleted file mode 100644 index 52e381f58..000000000 Binary files a/apps/common/main/resources/img/toolbar/1x/btn-mode-light.png and /dev/null differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-print.png b/apps/common/main/resources/img/toolbar/1x/btn-print.png index 89e8aa53b..626a4f244 100644 Binary files a/apps/common/main/resources/img/toolbar/1x/btn-print.png and b/apps/common/main/resources/img/toolbar/1x/btn-print.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-rotate-down.png b/apps/common/main/resources/img/toolbar/1x/btn-rotate-down.png new file mode 100644 index 000000000..bb8884a3c Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/btn-rotate-down.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-rotate-up.png b/apps/common/main/resources/img/toolbar/1x/btn-rotate-up.png new file mode 100644 index 000000000..8312c4328 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/btn-rotate-up.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-rotate-y-clockwise.png b/apps/common/main/resources/img/toolbar/1x/btn-rotate-y-clockwise.png new file mode 100644 index 000000000..b28afbe37 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/btn-rotate-y-clockwise.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-rotate-y-counterclockwise.png b/apps/common/main/resources/img/toolbar/1x/btn-rotate-y-counterclockwise.png new file mode 100644 index 000000000..93e1ad70b Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/btn-rotate-y-counterclockwise.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-save.png b/apps/common/main/resources/img/toolbar/1x/btn-save.png index 7f9b5fbba..b7c188efb 100644 Binary files a/apps/common/main/resources/img/toolbar/1x/btn-save.png and b/apps/common/main/resources/img/toolbar/1x/btn-save.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-text-vertical.png b/apps/common/main/resources/img/toolbar/1x/btn-text-vertical.png new file mode 100644 index 000000000..0aa4448aa Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/btn-text-vertical.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-text.png b/apps/common/main/resources/img/toolbar/1x/btn-text.png new file mode 100644 index 000000000..4dbaf0d6e Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/btn-text.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/huge/.css.handlebars b/apps/common/main/resources/img/toolbar/1x/huge/.css.handlebars index a516dc0e9..e6105c00d 100644 --- a/apps/common/main/resources/img/toolbar/1x/huge/.css.handlebars +++ b/apps/common/main/resources/img/toolbar/1x/huge/.css.handlebars @@ -1,15 +1,14 @@ {{#spritesheet}} .btn { .options__icon.options__icon-huge { - background-position-x: -40px; + background-position-x: 0; background-position-x: var(--button-huge-normal-icon-offset-x,0); } &.active, &:active { &:not(:disabled):not(.disabled) { .options__icon.options__icon-huge { - @btn-active-icon-offset: -40px; - background-position-x: @btn-active-icon-offset; + background-position-x: 0; background-position-x: var(--button-huge-active-icon-offset-x,0); } } diff --git a/apps/common/main/resources/img/toolbar/1x/smart-cycle.png b/apps/common/main/resources/img/toolbar/1x/smart-cycle.png new file mode 100644 index 000000000..b06b0ade6 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/smart-cycle.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/smart-hierarchy.png b/apps/common/main/resources/img/toolbar/1x/smart-hierarchy.png new file mode 100644 index 000000000..56a16be59 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/smart-hierarchy.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/smart-list.png b/apps/common/main/resources/img/toolbar/1x/smart-list.png new file mode 100644 index 000000000..08abecc03 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/smart-list.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/smart-matrix.png b/apps/common/main/resources/img/toolbar/1x/smart-matrix.png new file mode 100644 index 000000000..0e9a87c39 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/smart-matrix.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/smart-process.png b/apps/common/main/resources/img/toolbar/1x/smart-process.png new file mode 100644 index 000000000..d8d712cb7 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/smart-process.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/smart-pyramid.png b/apps/common/main/resources/img/toolbar/1x/smart-pyramid.png new file mode 100644 index 000000000..c438ae0f5 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/smart-pyramid.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/smart-relationship.png b/apps/common/main/resources/img/toolbar/1x/smart-relationship.png new file mode 100644 index 000000000..44b354b02 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/smart-relationship.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/big/btn-text-vertical.png b/apps/common/main/resources/img/toolbar/2x/big/btn-text-vertical.png new file mode 100644 index 000000000..795419397 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/big/btn-text-vertical.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/big/btn-text.png b/apps/common/main/resources/img/toolbar/2x/big/btn-text.png index 65e28009c..d62565581 100644 Binary files a/apps/common/main/resources/img/toolbar/2x/big/btn-text.png and b/apps/common/main/resources/img/toolbar/2x/big/btn-text.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/big/smart-art.png b/apps/common/main/resources/img/toolbar/2x/big/smart-art.png new file mode 100644 index 000000000..40493c4f1 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/big/smart-art.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-home.png b/apps/common/main/resources/img/toolbar/2x/btn-home.png new file mode 100644 index 000000000..9e320a42e Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/btn-home.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-merge-cells.png b/apps/common/main/resources/img/toolbar/2x/btn-merge-cells.png index 454135117..4a560c10a 100644 Binary files a/apps/common/main/resources/img/toolbar/2x/btn-merge-cells.png and b/apps/common/main/resources/img/toolbar/2x/btn-merge-cells.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-mode-dark.png b/apps/common/main/resources/img/toolbar/2x/btn-mode-dark.png deleted file mode 100644 index 9235e2101..000000000 Binary files a/apps/common/main/resources/img/toolbar/2x/btn-mode-dark.png and /dev/null differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-mode-light.png b/apps/common/main/resources/img/toolbar/2x/btn-mode-light.png deleted file mode 100644 index ff4ce3510..000000000 Binary files a/apps/common/main/resources/img/toolbar/2x/btn-mode-light.png and /dev/null differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-print.png b/apps/common/main/resources/img/toolbar/2x/btn-print.png index cfae9c141..7ecdef8d7 100644 Binary files a/apps/common/main/resources/img/toolbar/2x/btn-print.png and b/apps/common/main/resources/img/toolbar/2x/btn-print.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-rotate-down.png b/apps/common/main/resources/img/toolbar/2x/btn-rotate-down.png new file mode 100644 index 000000000..fe5bd0a01 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/btn-rotate-down.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-rotate-up.png b/apps/common/main/resources/img/toolbar/2x/btn-rotate-up.png new file mode 100644 index 000000000..fbe974a9c Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/btn-rotate-up.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-rotate-y-clockwise.png b/apps/common/main/resources/img/toolbar/2x/btn-rotate-y-clockwise.png new file mode 100644 index 000000000..42917ea79 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/btn-rotate-y-clockwise.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-rotate-y-counterclockwise.png b/apps/common/main/resources/img/toolbar/2x/btn-rotate-y-counterclockwise.png new file mode 100644 index 000000000..8fb1cd5f8 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/btn-rotate-y-counterclockwise.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-save.png b/apps/common/main/resources/img/toolbar/2x/btn-save.png index 39ad87756..cba2c59f8 100644 Binary files a/apps/common/main/resources/img/toolbar/2x/btn-save.png and b/apps/common/main/resources/img/toolbar/2x/btn-save.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-text-vertical.png b/apps/common/main/resources/img/toolbar/2x/btn-text-vertical.png new file mode 100644 index 000000000..4dd250109 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/btn-text-vertical.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-text.png b/apps/common/main/resources/img/toolbar/2x/btn-text.png new file mode 100644 index 000000000..a3a4da53f Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/btn-text.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/smart-cycle.png b/apps/common/main/resources/img/toolbar/2x/smart-cycle.png new file mode 100644 index 000000000..f45e0c29c Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/smart-cycle.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/smart-hierarchy.png b/apps/common/main/resources/img/toolbar/2x/smart-hierarchy.png new file mode 100644 index 000000000..184559427 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/smart-hierarchy.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/smart-list.png b/apps/common/main/resources/img/toolbar/2x/smart-list.png new file mode 100644 index 000000000..4f1fc5ee3 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/smart-list.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/smart-matrix.png b/apps/common/main/resources/img/toolbar/2x/smart-matrix.png new file mode 100644 index 000000000..98c0301c4 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/smart-matrix.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/smart-process.png b/apps/common/main/resources/img/toolbar/2x/smart-process.png new file mode 100644 index 000000000..13109ae01 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/smart-process.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/smart-pyramid.png b/apps/common/main/resources/img/toolbar/2x/smart-pyramid.png new file mode 100644 index 000000000..54f4c665b Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/smart-pyramid.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/smart-relationship.png b/apps/common/main/resources/img/toolbar/2x/smart-relationship.png new file mode 100644 index 000000000..75783f6d0 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/smart-relationship.png differ diff --git a/apps/common/main/resources/img/toolbar/equationicons.svg b/apps/common/main/resources/img/toolbar/equationicons.svg new file mode 100644 index 000000000..90479d415 --- /dev/null +++ b/apps/common/main/resources/img/toolbar/equationicons.svg @@ -0,0 +1,41 @@ + \ No newline at end of file diff --git a/apps/common/main/resources/less/buttons.less b/apps/common/main/resources/less/buttons.less index f5731901f..350f1130c 100644 --- a/apps/common/main/resources/less/buttons.less +++ b/apps/common/main/resources/less/buttons.less @@ -39,6 +39,7 @@ } &[disabled], &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } @@ -215,6 +216,12 @@ &.split { > .inner-box-icon { .box-shadow(none); + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + } + > .inner-box-caption { + border-top-left-radius: 0; + border-top-right-radius: 0; } } } @@ -232,14 +239,14 @@ .inner-box-caption { line-height: 18px; - padding: 1px 3px; + padding: 1px 4px 1px 3px; display: flex; //align-items: center; align-items: start; height: 24px; .caption { - max-width: 85px; + max-width: 160px;//85px; max-height: 24px; text-overflow: ellipsis; @@ -505,6 +512,7 @@ &[disabled], &.disabled { //color: #000; btn-category has no text + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } } @@ -575,6 +583,7 @@ } &[disabled], &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } } @@ -592,6 +601,7 @@ .dropdown-menu { &.scale-menu { li.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } } @@ -687,6 +697,7 @@ &[disabled], &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } @@ -823,6 +834,7 @@ &[disabled], &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } } @@ -862,6 +874,7 @@ &[disabled], &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } } @@ -875,6 +888,10 @@ border: @scaled-one-px-value solid @border-regular-control; .border-radius(@border-radius-small); + &.auto { + width: auto; + } + &.dropdown-toggle { width: 13px; } @@ -901,6 +918,7 @@ &[disabled], &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } } @@ -941,6 +959,7 @@ &[disabled], &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } } @@ -997,6 +1016,7 @@ width: 52px; padding: 5px; + fill: @icon-normal-ie; fill: @icon-normal; .btn& { @@ -1029,6 +1049,7 @@ &[disabled], &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } @@ -1079,6 +1100,7 @@ } &[disabled] { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } diff --git a/apps/common/main/resources/less/combo-dataview.less b/apps/common/main/resources/less/combo-dataview.less index 23cb1a058..745b348ae 100644 --- a/apps/common/main/resources/less/combo-dataview.less +++ b/apps/common/main/resources/less/combo-dataview.less @@ -78,20 +78,26 @@ } } } + + .masked & { + &.disabled { + opacity: 1; + } + } } -.combo-styles { +.combo-styles(@combo-dataview-height: 46px, @item-height: 46px, @row-count: 1) { @combo-dataview-button-width: 30px; - @combo-dataview-height: 46px; - @combo-dataview-height-calc: calc(40px + 2 * @scaled-two-px-value + 2 * @scaled-one-px-value); - + @item-height-calc: calc(@item-height - 6px + 2 * @scaled-two-px-value + 2 * @scaled-one-px-value); + @combo-dataview-height-calc: calc(@combo-dataview-height - ((@row-count - 1) * @scaled-one-px-value) - @row-count * (6px - 2 * @scaled-two-px-value - 2 * @scaled-one-px-value)); + height: @combo-dataview-height; height: @combo-dataview-height-calc; .view { margin-right: -@combo-dataview-button-width; - padding-right: @combo-dataview-button-width; + padding-right: calc(@combo-dataview-button-width - @scaled-two-px-value); .border-left-radius(0); @@ -116,8 +122,8 @@ @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; - height: @combo-dataview-height-calc; + height: @item-height; + height: @item-height-calc; background-color: @background-normal-ie; background-color: @background-normal; display: flex; @@ -216,6 +222,14 @@ } } +.combo-styles { + .combo-styles() +} + +.combo-cell-styles { + .combo-styles(52px, 26px, 2); +} + .combo-template(@combo-dataview-height: 64px) { @combo-dataview-button-width: 18px; @@ -344,17 +358,42 @@ .combo-template(60px); top: -4px; - padding-right: 12px; position: absolute; + padding-right: 12px; .more-container & { - padding-right: 0; position: static; } .view .dataview, .dropdown-menu { padding: 1px; } + + .dataview { + .item { + &:hover { + .box-shadow(0 0 0 2px @border-preview-hover-ie) !important; + .box-shadow(0 0 0 @scaled-two-px-value @border-preview-hover) !important; + } + + &.selected { + .box-shadow(0 0 0 2px @border-preview-select-ie) !important; + .box-shadow(0 0 0 @scaled-two-px-value @border-preview-select) !important; + } + } + } + + .dropdown-menu { + padding: 5px 1px 5px 1px; + + .dataview { + .group-description { + padding: 3px 0 3px 10px; + .font-weight-bold(); + } + } + } + } .combo-slicer-style { @@ -372,7 +411,7 @@ .view { margin-right: -@combo-dataview-button-width; - padding-right: @combo-dataview-button-width; + padding-right: calc(@combo-dataview-button-width - @scaled-one-px-value); } .view .dataview, .dropdown-menu { diff --git a/apps/common/main/resources/less/comments.less b/apps/common/main/resources/less/comments.less index 0044cf2f2..97782a53e 100644 --- a/apps/common/main/resources/less/comments.less +++ b/apps/common/main/resources/less/comments.less @@ -70,7 +70,7 @@ label { color: @text-normal-ie; color: @text-normal; - font: 12px arial; + font-size: 12px; line-height: normal; border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie; border-bottom: @scaled-one-px-value dotted @text-normal; @@ -120,7 +120,7 @@ .dataview-ct { width: 100%; height: 100%; - font: 12px arial; + font-size: 12px; line-height: normal; position: relative; overflow: hidden; @@ -364,6 +364,7 @@ } &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; cursor: default; } diff --git a/apps/common/main/resources/less/common.less b/apps/common/main/resources/less/common.less index 6e37abbb4..b7c6f6918 100644 --- a/apps/common/main/resources/less/common.less +++ b/apps/common/main/resources/less/common.less @@ -23,6 +23,12 @@ label { opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } + + &.fixed { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + } } .menu-shapes { @@ -211,6 +217,7 @@ label { height: 100%; &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; cursor: default !important; } @@ -229,6 +236,10 @@ textarea { background-color: @background-normal; color: @text-normal-ie; color: @text-normal; + &:-ms-input-placeholder { + color: @text-tertiary-ie; + } + .placeholder(); } .btn-edit-table, @@ -287,4 +298,7 @@ body { &.pixel-ratio__1_75 { image-rendering: crisp-edges; // FF only } + + font-family: @font-family-sans-serif; + font-family: @font-family-base; } \ No newline at end of file diff --git a/apps/common/main/resources/less/dataview.less b/apps/common/main/resources/less/dataview.less index 14c376c4d..2c5e026cd 100644 --- a/apps/common/main/resources/less/dataview.less +++ b/apps/common/main/resources/less/dataview.less @@ -62,6 +62,7 @@ } &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } diff --git a/apps/common/main/resources/less/dropdown-menu.less b/apps/common/main/resources/less/dropdown-menu.less index 840465c8d..ae214c7ae 100644 --- a/apps/common/main/resources/less/dropdown-menu.less +++ b/apps/common/main/resources/less/dropdown-menu.less @@ -119,6 +119,7 @@ color: @text-normal-ie; color: @text-normal; + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; &:hover, &:focus { diff --git a/apps/common/main/resources/less/header.less b/apps/common/main/resources/less/header.less index 9b39a3684..999193ce3 100644 --- a/apps/common/main/resources/less/header.less +++ b/apps/common/main/resources/less/header.less @@ -236,6 +236,7 @@ .btn&[disabled], &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } @@ -311,6 +312,7 @@ } &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; pointer-events: none; } diff --git a/apps/common/main/resources/less/input.less b/apps/common/main/resources/less/input.less index 84218bb34..f0478c568 100644 --- a/apps/common/main/resources/less/input.less +++ b/apps/common/main/resources/less/input.less @@ -9,7 +9,9 @@ border: @scaled-one-px-value solid @border-regular-control; background-color: @background-normal-ie; background-color: @background-normal; - + &:-ms-input-placeholder { + color: @text-tertiary-ie; + } &:focus { border-color: @border-control-focus-ie; border-color: @border-control-focus; @@ -96,6 +98,7 @@ input.error { } .disabled .form-control { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; cursor: default !important; } diff --git a/apps/common/main/resources/less/listview.less b/apps/common/main/resources/less/listview.less index 8997ea0a0..ff462c1f3 100644 --- a/apps/common/main/resources/less/listview.less +++ b/apps/common/main/resources/less/listview.less @@ -76,6 +76,7 @@ &.disabled { > .item { cursor: default; + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } } diff --git a/apps/common/main/resources/less/plugins.less b/apps/common/main/resources/less/plugins.less index 1bba907aa..607d738d8 100644 --- a/apps/common/main/resources/less/plugins.less +++ b/apps/common/main/resources/less/plugins.less @@ -132,7 +132,7 @@ .x-huge.icon-top { .caption { text-overflow: ellipsis; - max-width: 85px; + max-width: 160px; } } diff --git a/apps/common/main/resources/less/slider.less b/apps/common/main/resources/less/slider.less index 240da9c2b..a89656601 100644 --- a/apps/common/main/resources/less/slider.less +++ b/apps/common/main/resources/less/slider.less @@ -81,6 +81,7 @@ } &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } } \ No newline at end of file diff --git a/apps/common/main/resources/less/spinner.less b/apps/common/main/resources/less/spinner.less index e33fb2b65..981dbffcd 100644 --- a/apps/common/main/resources/less/spinner.less +++ b/apps/common/main/resources/less/spinner.less @@ -59,6 +59,7 @@ button { &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; } diff --git a/apps/common/main/resources/less/toolbar.less b/apps/common/main/resources/less/toolbar.less index 7166cb578..c98122d75 100644 --- a/apps/common/main/resources/less/toolbar.less +++ b/apps/common/main/resources/less/toolbar.less @@ -641,10 +641,13 @@ } .btn-toolbar { - &:active { - svg.icon { - fill: @icon-toolbar-header-ie; - fill: @icon-toolbar-header; + &:active, + &.active { + &:not(.disabled) { + svg.icon { + fill: @icon-normal-pressed-ie; + fill: @icon-normal-pressed; + } } } diff --git a/apps/common/main/resources/less/variables.less b/apps/common/main/resources/less/variables.less index 5ebe3b98a..0fd142adc 100644 --- a/apps/common/main/resources/less/variables.less +++ b/apps/common/main/resources/less/variables.less @@ -60,7 +60,7 @@ @font-family-serif: Georgia, "Times New Roman", Times, serif; @font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace; @font-family-tahoma: tahoma, arial, verdana, sans-serif; -@font-family-base: @font-family-sans-serif; +@font-family-base: var(--font-family-base-custom, @font-family-sans-serif), @font-family-sans-serif; @font-size-base: 11px; @font-size-large: 13px; @@ -194,7 +194,7 @@ //** Small `.form-control` border radius @input-border-radius-small: @border-radius-small; -@input-color-placeholder: #cfcfcf; // @gray; +@input-color-placeholder: @text-tertiary; //#cfcfcf; // @gray; @input-height-base: (floor(@font-size-base * @line-height-base) + (@padding-base-vertical * 2) + 5); @input-height-large: (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2); diff --git a/apps/common/main/resources/less/window.less b/apps/common/main/resources/less/window.less index b28731c8c..5ba0d02e7 100644 --- a/apps/common/main/resources/less/window.less +++ b/apps/common/main/resources/less/window.less @@ -139,6 +139,7 @@ } &.disabled { + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; cursor: default; } diff --git a/apps/common/mobile/lib/component/ThemeColorPalette.jsx b/apps/common/mobile/lib/component/ThemeColorPalette.jsx index 814c0e899..a43fad9e7 100644 --- a/apps/common/mobile/lib/component/ThemeColorPalette.jsx +++ b/apps/common/mobile/lib/component/ThemeColorPalette.jsx @@ -62,15 +62,15 @@ const CustomColors = ({ options, customColors, isTypeColors, onColorClick, curCo return (
- {colors?.length && colors.map((color, index) => { - return( + {colors && colors.length > 0 ? colors.map((color, index) => { + return ( {onColorClick(color)}} > ) - })} + }) : null} {emptyItems.length > 0 && emptyItems}
) diff --git a/apps/common/mobile/lib/controller/Themes.js b/apps/common/mobile/lib/controller/Themes.js index 2c076a15f..f71656086 100644 --- a/apps/common/mobile/lib/controller/Themes.js +++ b/apps/common/mobile/lib/controller/Themes.js @@ -1,5 +1,5 @@ import { Dom7 } from 'framework7' -import { LocalStorage } from "../../utils/LocalStorage"; +import { LocalStorage } from "../../utils/LocalStorage.mjs"; class ThemesController { constructor() { diff --git a/apps/common/mobile/lib/controller/collaboration/Collaboration.jsx b/apps/common/mobile/lib/controller/collaboration/Collaboration.jsx index 31e8b7b5f..f7eee5b16 100644 --- a/apps/common/mobile/lib/controller/collaboration/Collaboration.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Collaboration.jsx @@ -1,7 +1,7 @@ import React, { Component } from 'react' import { f7 } from 'framework7-react'; import {observer, inject} from "mobx-react" -import { LocalStorage } from '../../../utils/LocalStorage'; +import { LocalStorage } from '../../../utils/LocalStorage.mjs'; import { withTranslation } from 'react-i18next'; class CollaborationController extends Component { diff --git a/apps/common/mobile/lib/controller/collaboration/Comments.jsx b/apps/common/mobile/lib/controller/collaboration/Comments.jsx index 47a72a6b6..55eae7387 100644 --- a/apps/common/mobile/lib/controller/collaboration/Comments.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Comments.jsx @@ -3,7 +3,7 @@ import { inject, observer } from "mobx-react"; import { f7 } from 'framework7-react'; import {Device} from '../../../../../common/mobile/utils/device'; import { withTranslation} from 'react-i18next'; -import { LocalStorage } from '../../../utils/LocalStorage'; +import { LocalStorage } from '../../../utils/LocalStorage.mjs'; import {AddComment, EditComment, AddReply, EditReply, ViewComments, ViewCurrentComments} from '../../view/collaboration/Comments'; diff --git a/apps/common/mobile/lib/controller/collaboration/Review.jsx b/apps/common/mobile/lib/controller/collaboration/Review.jsx index 3fe87e560..d6db4d966 100644 --- a/apps/common/mobile/lib/controller/collaboration/Review.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Review.jsx @@ -4,7 +4,7 @@ import {observer, inject} from "mobx-react" import { withTranslation } from 'react-i18next'; import {PageReview, PageReviewChange} from "../../view/collaboration/Review"; -import {LocalStorage} from "../../../utils/LocalStorage"; +import {LocalStorage} from "../../../utils/LocalStorage.mjs"; class InitReview extends Component { constructor(props){ diff --git a/apps/common/mobile/lib/view/About.jsx b/apps/common/mobile/lib/view/About.jsx index 8ba3d0484..00910018e 100644 --- a/apps/common/mobile/lib/view/About.jsx +++ b/apps/common/mobile/lib/view/About.jsx @@ -53,7 +53,7 @@ const PageAbout = props => { {addressCustomer && addressCustomer.length ? (

- {addressCustomer} + {addressCustomer}

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

- {urlCustomer} @@ -90,7 +90,7 @@ const PageAbout = props => {

{publisherName}

- {publisherPrintUrl} + {publisherPrintUrl}

@@ -118,7 +118,7 @@ const PageAbout = props => { {__PUBLISHER_PHONE__}

- {publisherPrintUrl} + {publisherPrintUrl}

diff --git a/apps/common/mobile/lib/view/Search.jsx b/apps/common/mobile/lib/view/Search.jsx index 6fb8d59b5..7123cd6ed 100644 --- a/apps/common/mobile/lib/view/Search.jsx +++ b/apps/common/mobile/lib/view/Search.jsx @@ -1,9 +1,6 @@ import React, { Component } from 'react'; -import { Searchbar, Popover, Popup, View, Page, List, ListItem, Navbar, NavRight, Link } from 'framework7-react'; -import { Toggle } from 'framework7-react'; -import { f7 } from 'framework7-react'; -import { Dom7 } from 'framework7'; +import { Popover, Popup, View, f7 } from 'framework7-react'; import { Device } from '../../../../common/mobile/utils/device'; import { observable, runInAction } from "mobx"; import { observer } from "mobx-react"; @@ -105,18 +102,19 @@ class SearchView extends Component { $editor.on('pointerdown', this.onEditorTouchStart); $editor.on('pointerup', this.onEditorTouchEnd); - if( !this.searchbar ) { - this.searchbar = f7.searchbar.get('.searchbar'); - } - - if( !this.searchbar ) { + if(!this.searchbar) { this.searchbar = f7.searchbar.create({ el: '.searchbar', customSearch: true, expandable: true, backdrop: false, on: { - search: (bar, curval, prevval) => { + search: (sb, query, previousQuery) => { + const api = Common.EditorApi.get(); + + if(!query) { + api.asc_selectSearchingResults(false); + } }, } }); diff --git a/apps/common/mobile/lib/view/SharingSettings.jsx b/apps/common/mobile/lib/view/SharingSettings.jsx new file mode 100644 index 000000000..22f60e4b8 --- /dev/null +++ b/apps/common/mobile/lib/view/SharingSettings.jsx @@ -0,0 +1,22 @@ +import React, { Component, useEffect } from 'react'; +import { observer, inject } from "mobx-react"; +import { f7, Popover, List, ListItem, Navbar, NavRight, Sheet, BlockTitle, Page, View, Icon, Link } from 'framework7-react'; +import { useTranslation } from 'react-i18next'; +import { Device } from "../../utils/device"; + +const SharingSettings = props => { + const { t } = useTranslation(); + const _t = t('Common.Collaboration', {returnObjects: true}); + const url = 'https://nct.onlyoffice.com/Products/Files/Share.aspx?fileid=142278'; + + return ( + + +
+ +
+
+ ) +} + +export default SharingSettings; \ No newline at end of file diff --git a/apps/common/mobile/lib/view/collaboration/Collaboration.jsx b/apps/common/mobile/lib/view/collaboration/Collaboration.jsx index 713b19e08..d029838b9 100644 --- a/apps/common/mobile/lib/view/collaboration/Collaboration.jsx +++ b/apps/common/mobile/lib/view/collaboration/Collaboration.jsx @@ -25,7 +25,6 @@ const PageUsers = inject("users")(observer(props => { } - {_t.textEditUser} {storeUsers.editUsers.map((user, i) => ( 1 ? ` (${user.count})` : '')} key={i}> diff --git a/apps/common/mobile/lib/view/collaboration/Comments.jsx b/apps/common/mobile/lib/view/collaboration/Comments.jsx index 4ccb89031..55d9a621f 100644 --- a/apps/common/mobile/lib/view/collaboration/Comments.jsx +++ b/apps/common/mobile/lib/view/collaboration/Comments.jsx @@ -616,7 +616,7 @@ const pickLink = (message) => { arrayComment = arrayComment.sort(function(item1,item2){ return item1.start - item2.start; }); - let str_res = (arrayComment.length>0) ? : ; + let str_res = (arrayComment.length>0) ? : ; for (var i=1; i{str_res}{Common.Utils.String.htmlEncode(message.substring(arrayComment[i-1].end, arrayComment[i].start))}{arrayComment[i].str}; @@ -637,6 +637,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o const isAndroid = Device.android; const displayMode = storeReview.displayMode; const isViewer = storeAppOptions.isViewer; + const canEditComments = storeAppOptions.canEditComments; const viewMode = !storeAppOptions.canComments; const comments = storeComments.groupCollectionFilter || storeComments.collectionComments; const isEdit = storeAppOptions.isEdit || storeAppOptions.isRestrictedEdit; @@ -677,8 +678,8 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o
{isEdit && !viewMode &&
- {(comment.editable && displayMode === 'markup' && !wsProps?.Objects && !isViewer) &&
{onResolveComment(comment);}}>
} - {(displayMode === 'markup' && !wsProps?.Objects && !isViewer) && + {(comment.editable && displayMode === 'markup' && !wsProps?.Objects && (!isViewer || canEditComments)) &&
{onResolveComment(comment);}}>
} + {(displayMode === 'markup' && !wsProps?.Objects && (!isViewer || canEditComments)) &&
{setComment(comment); openActionComment(true);}}> @@ -708,7 +709,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o
{reply.date}
- {isEdit && !viewMode && reply.editable && !isViewer && + {isEdit && !viewMode && reply.editable && (!isViewer || canEditComments) &&
{setComment(comment); setReply(reply); openActionReply(true);}} @@ -748,6 +749,7 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob const isAndroid = Device.android; const displayMode = storeReview.displayMode; const isViewer = storeAppOptions.isViewer; + const canEditComments = storeAppOptions.canEditComments; const viewMode = !storeAppOptions.canComments; const isEdit = storeAppOptions.isEdit || storeAppOptions.isRestrictedEdit; const comments = storeComments.showComments; @@ -787,7 +789,7 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob {isEdit && !viewMode && - {onCommentMenuClick('addReply', comment);}}>{_t.textAddReply} + {onCommentMenuClick('addReply', comment);}}>{_t.textAddReply} }
@@ -808,8 +810,8 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
{isEdit && !viewMode &&
- {(comment.editable && displayMode === 'markup' && !wsProps?.Objects && !isViewer) &&
{onResolveComment(comment);}}>
} - {(displayMode === 'markup' && !wsProps?.Objects && !isViewer) && + {(comment.editable && displayMode === 'markup' && !wsProps?.Objects && (!isViewer || canEditComments)) &&
{onResolveComment(comment);}}>
} + {(displayMode === 'markup' && !wsProps?.Objects && (!isViewer || canEditComments)) &&
{openActionComment(true);}}> @@ -839,7 +841,7 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
{reply.date}
- {isEdit && !viewMode && reply.editable && !isViewer && + {isEdit && !viewMode && reply.editable && (!isViewer || canEditComments) &&
{setReply(reply); openActionReply(true);}} diff --git a/apps/common/mobile/resources/css/skeleton.css b/apps/common/mobile/resources/css/skeleton.css index 0ac99096e..85c8c2031 100644 --- a/apps/common/mobile/resources/css/skeleton.css +++ b/apps/common/mobile/resources/css/skeleton.css @@ -116,3 +116,31 @@ body.theme-type-dark { 50% { opacity:1; } 100% { opacity:0.1; } } + +.md .navbar.navbar-with-logo { + height: 34px; +} + +.ios .navbar.navbar-with-logo { + height: 26px; +} + +:root .theme-type-dark { + --f7-navbar-bg-color: #232323; + --f7-subnavbar-bg-color: #232323; +} + +.md .word-editor { + --f7-navbar-bg-color: var(--background-navbar-word, #446995); + --f7-subnavbar-bg-color: var(--background-navbar-word, #446995); +} + +.md .cell-editor { + --f7-navbar-bg-color: var(--background-navbar-word, #40865c); + --f7-subnavbar-bg-color: var(--background-navbar-word, #40865c); +} + +.md .slide-editor { + --f7-navbar-bg-color: var(--background-navbar-word, #aa5252); + --f7-subnavbar-bg-color: var(--background-navbar-word, #aa5252); +} \ No newline at end of file diff --git a/apps/common/mobile/resources/less/common-ios.less b/apps/common/mobile/resources/less/common-ios.less index da10ab1a5..dc3f735bc 100644 --- a/apps/common/mobile/resources/less/common-ios.less +++ b/apps/common/mobile/resources/less/common-ios.less @@ -552,6 +552,15 @@ .toggle-icon { background: transparent; } + + // Edit Comment Popup + + .edit-comment-popup { + .navbar .title { + line-height: normal; + } + } + } diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index f86d8a78e..570d53285 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -313,7 +313,10 @@ border-radius: 4px; margin-top: -3px; box-shadow: 0 0 0 1px rgba(0, 0, 0, .15) inset; - background: @fill-white; + background-color: @fill-white; + &.auto { + background-color: @autoColor; + } } } } @@ -523,4 +526,15 @@ margin-right: 0; } } + + // Navbar link settings + + .navbar-link-settings { + .navbar-inner { + background: @background-primary; + } + .title, a { + color: @text-normal; + } + } } diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 08fb1a4e2..1e80ac7d0 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -25,12 +25,12 @@ } } -.navbar { - .title { - text-overflow: initial; - white-space: normal; - } -} +//.navbar { +// .title { +// text-overflow: initial; +// white-space: normal; +// } +//} .navbar-hidden { transform: translate3d(0, calc(-1 * (var(--f7-navbar-height) + var(--f7-subnavbar-height))), 0); @@ -48,9 +48,12 @@ .subnavbar-inner { padding: 0; .title { - white-space: nowrap; + //white-space: nowrap; overflow: hidden; - text-overflow: ellipsis; + text-overflow: initial; + margin: 0; + padding: 0; + flex-shrink: initial; } } .icon-back { @@ -130,11 +133,6 @@ background-color: @button-active-opacity; } } - .item-content { - .color-preview.auto { - background-color: @autoColor; - } - } .item-link .item-inner { width: 100%; } @@ -624,65 +622,7 @@ } } -// Cell styles - -.cell-styles-list { - ul { - display: flex; - justify-content: space-around; - flex-wrap: wrap; - padding-left: 5px; - padding-right: 5px; - padding-top: 5px; - background-color: @background-tertiary; - li.item-theme { - // border: 0.5px solid #c8c7cc; - border: 2px solid @fill-white; - padding: 1px; - background-repeat: no-repeat; - width: 108px; - height: 53px; - margin-bottom: 8px; - background-position: center; - .item-content { - width: 100%; - height: 100%; - padding: 0; - .item-inner { - width: 100%; - height: 100%; - padding: 0; - &:after { - display: none; - } - .thumb { - width: 100%; - height: 100%; - padding: 0; - background-size: contain; - background-color: var(--canvas-content-background); - } - } - } - &.active:before { - content: ''; - position: absolute; - width: 22px; - height: 22px; - right: 2px; - bottom: 2px; - z-index: 1; - .encoded-svg-background(''); - } - } - &:after { - display: none; - } - } -} - // input[type="number"] - input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; @@ -690,7 +630,6 @@ input[type="number"]::-webkit-inner-spin-button { } // Regional Settings - .icon.lang-flag { background-size: 48px auto; background-image: ~'url(@{common-image-path}/controls/flags@2x.png)'; @@ -1120,9 +1059,9 @@ input[type="number"]::-webkit-inner-spin-button { } // Swiper -//.swiper-container { -// height: 100%; -//} +.swiper-wrapper .swiper-slide .list ul { + background-color: transparent; +} .swiper-pagination-bullet { background: @background-menu-divider; @@ -1133,10 +1072,11 @@ input[type="number"]::-webkit-inner-spin-button { } .swiper-pagination-bullets { - position: relative; - margin-top: 10px; + position: fixed; + width: 100%; + bottom: 9px; .swiper-pagination-bullet { - margin: 0 8px; + margin: 0 5.5px; } } @@ -1151,14 +1091,9 @@ input[type="number"]::-webkit-inner-spin-button { border: 0.5px solid @background-menu-divider; } -// Navigation list - -.list.navigation-list { - overflow-y: auto; - height: 265px; - .item-title { - color: @text-normal; - } +// Sharing Settings +.sharing-placeholder { + height: 100%; } // Comment List @@ -1172,6 +1107,3 @@ input[type="number"]::-webkit-inner-spin-button { - - - diff --git a/apps/common/mobile/resources/less/icons.less b/apps/common/mobile/resources/less/icons.less index 1521fdcca..6efda00eb 100644 --- a/apps/common/mobile/resources/less/icons.less +++ b/apps/common/mobile/resources/less/icons.less @@ -35,6 +35,11 @@ i.icon { height: 24px; .encoded-svg-background('') } + &.icon-image { + width: 24px; + height: 24px; + .encoded-svg-mask('') + } // Formats @@ -78,4 +83,10 @@ i.icon { &.icon-numbers-7 { .encoded-svg-background(''); } + + &.icon-sharing-settings { + width: 24px; + height: 24px; + .encoded-svg-mask('') + } } diff --git a/apps/common/mobile/resources/less/material/icons.less b/apps/common/mobile/resources/less/material/icons.less index d047cf12d..df8e84146 100644 --- a/apps/common/mobile/resources/less/material/icons.less +++ b/apps/common/mobile/resources/less/material/icons.less @@ -39,6 +39,21 @@ height: 22px; .encoded-svg-mask('', @toolbar-icons); } + &.icon-close { + width: 24px; + height: 24px; + .encoded-svg-mask('', @text-normal); + } + &.icon-done-disabled { + width: 24px; + height: 24px; + .encoded-svg-mask('', @text-tertiary); + } + &.icon-done { + width: 24px; + height: 24px; + .encoded-svg-mask(''); + } } } } diff --git a/apps/common/mobile/utils/LocalStorage.js b/apps/common/mobile/utils/LocalStorage.mjs similarity index 100% rename from apps/common/mobile/utils/LocalStorage.js rename to apps/common/mobile/utils/LocalStorage.mjs diff --git a/apps/common/mobile/utils/htmlutils.js b/apps/common/mobile/utils/htmlutils.js index 6f04e0041..7c1cbc0b5 100644 --- a/apps/common/mobile/utils/htmlutils.js +++ b/apps/common/mobile/utils/htmlutils.js @@ -15,11 +15,11 @@ if ( localStorage && localStorage.getItem('mobile-mode-direction') === 'rtl' ) { load_stylesheet('./css/framework7.css') } -let obj = !localStorage ? {id: 'theme-light', type: 'light'} : JSON.parse(localStorage.getItem("ui-theme")); +let obj = !localStorage ? {id: 'theme-light', type: 'light'} : JSON.parse(localStorage.getItem("mobile-ui-theme")); if ( !obj ) { obj = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? {id: 'theme-dark', type: 'dark'} : {id: 'theme-light', type: 'light'}; - localStorage && localStorage.setItem("ui-theme", JSON.stringify(obj)); + localStorage && localStorage.setItem("mobile-ui-theme", JSON.stringify(obj)); } -document.body.classList.add(`theme-type-${obj.type}`); +document.body.classList.add(`theme-type-${obj.type}`, `${window.asceditor}-editor`); diff --git a/apps/documenteditor/embed/index.html b/apps/documenteditor/embed/index.html index da514210f..c28c66285 100644 --- a/apps/documenteditor/embed/index.html +++ b/apps/documenteditor/embed/index.html @@ -229,7 +229,7 @@ - + diff --git a/apps/documenteditor/embed/index.html.deploy b/apps/documenteditor/embed/index.html.deploy index 0bc36adf3..f2ec69cef 100644 --- a/apps/documenteditor/embed/index.html.deploy +++ b/apps/documenteditor/embed/index.html.deploy @@ -220,7 +220,7 @@ - + - + diff --git a/apps/documenteditor/embed/index_loader.html.deploy b/apps/documenteditor/embed/index_loader.html.deploy index a944efbb8..f7ffdb523 100644 --- a/apps/documenteditor/embed/index_loader.html.deploy +++ b/apps/documenteditor/embed/index_loader.html.deploy @@ -320,7 +320,7 @@ - + diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index ae1d89786..9bd89517b 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -753,6 +753,19 @@ DE.ApplicationController = new(function(){ message = me.errorTokenExpire; break; + case Asc.c_oAscError.ID.ConvertationOpenFormat: + if (errData === 'pdf') + message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || ''); + else if (errData === 'docx') + message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || ''); + else if (errData === 'xlsx') + message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || ''); + else if (errData === 'pptx') + message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || ''); + else + message = me.errorInconsistentExt; + break; + default: message = me.errorDefaultMessage.replace('%1', id); break; @@ -962,6 +975,11 @@ DE.ApplicationController = new(function(){ errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.', errorTokenExpire: 'The document security token has expired.
Please contact your Document Server administrator.', openErrorText: 'An error has occurred while opening the file', - textCtrl: 'Ctrl' + textCtrl: 'Ctrl', + errorInconsistentExtDocx: 'An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.', + errorInconsistentExtXlsx: 'An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPptx: 'An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPdf: 'An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.', + errorInconsistentExt: 'An error has occurred while opening the file.
The file content does not match the file extension.' } })(); \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/be.json b/apps/documenteditor/embed/locale/be.json index f5a0614ab..93fd5b56c 100644 --- a/apps/documenteditor/embed/locale/be.json +++ b/apps/documenteditor/embed/locale/be.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Вышыня", "common.view.modals.txtShare": "Падзяліцца спасылкай", "common.view.modals.txtWidth": "Шырыня", + "common.view.SearchBar.textFind": "Пошук", "DE.ApplicationController.convertationErrorText": "Пераўтварыць не атрымалася.", "DE.ApplicationController.convertationTimeoutText": "Час чакання пераўтварэння сышоў.", "DE.ApplicationController.criticalErrorTitle": "Памылка", @@ -25,6 +26,7 @@ "DE.ApplicationController.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", "DE.ApplicationController.textAnonymous": "Ананімны карыстальнік", "DE.ApplicationController.textClear": "Ачысціць усе палі", + "DE.ApplicationController.textCtrl": "Ctrl", "DE.ApplicationController.textGotIt": "Добра", "DE.ApplicationController.textGuest": "Госць", "DE.ApplicationController.textLoadingDocument": "Загрузка дакумента", @@ -45,6 +47,7 @@ "DE.ApplicationView.txtEmbed": "Убудаваць", "DE.ApplicationView.txtFileLocation": "Перайсці да дакументаў", "DE.ApplicationView.txtFullScreen": "Поўнаэкранны рэжым", - "DE.ApplicationView.txtPrint": "Друк", + "DE.ApplicationView.txtPrint": "Друкаванне", + "DE.ApplicationView.txtSearch": "Пошук", "DE.ApplicationView.txtShare": "Падзяліцца" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/da.json b/apps/documenteditor/embed/locale/da.json index 92df1ff24..d507362a0 100644 --- a/apps/documenteditor/embed/locale/da.json +++ b/apps/documenteditor/embed/locale/da.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Højde", "common.view.modals.txtShare": "Del link", "common.view.modals.txtWidth": "Bredde", + "common.view.SearchBar.textFind": "Find", "DE.ApplicationController.convertationErrorText": "Konvertering fejlede.", "DE.ApplicationController.convertationTimeoutText": "Konverteringstidsfrist er overskredet", "DE.ApplicationController.criticalErrorTitle": "Fejl", @@ -18,13 +19,14 @@ "DE.ApplicationController.errorLoadingFont": "Skrifttyper er ikke indlæst.
Kontakt din dokument server administrator.", "DE.ApplicationController.errorSubmit": "Send mislykkedes.", "DE.ApplicationController.errorTokenExpire": "Dokumentets sikkerhedstoken er udløbet.
Kontakt venligst din Document Server administrator. ", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet, og filversionen er blevet ændret.
Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet og filversionen er blevet ændret.
Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.", "DE.ApplicationController.errorUserDrop": "Der kan ikke opnås adgang til filen lige nu. ", "DE.ApplicationController.notcriticalErrorTitle": "Advarsel", "DE.ApplicationController.openErrorText": "Der skete en fejl under åbningen af filen", "DE.ApplicationController.scriptLoadError": "Forbindelsen er for langsom, og nogle komponenter kunne ikke indlæses. Indlæs siden igen.", "DE.ApplicationController.textAnonymous": "Anonym", "DE.ApplicationController.textClear": "Ryd alle felter", + "DE.ApplicationController.textCtrl": "Ctrl", "DE.ApplicationController.textGotIt": "Forstået", "DE.ApplicationController.textGuest": "Gæst", "DE.ApplicationController.textLoadingDocument": "Indlæser dokument", @@ -46,5 +48,6 @@ "DE.ApplicationView.txtFileLocation": "Åben filplacering", "DE.ApplicationView.txtFullScreen": "Fuld skærm", "DE.ApplicationView.txtPrint": "Udskriv", + "DE.ApplicationView.txtSearch": "Søg", "DE.ApplicationView.txtShare": "Del" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/de.json b/apps/documenteditor/embed/locale/de.json index 84108feb6..778900559 100644 --- a/apps/documenteditor/embed/locale/de.json +++ b/apps/documenteditor/embed/locale/de.json @@ -16,6 +16,11 @@ "DE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "DE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.
Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", "DE.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.", + "DE.ApplicationController.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.", + "DE.ApplicationController.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.", + "DE.ApplicationController.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.", + "DE.ApplicationController.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.", + "DE.ApplicationController.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.", "DE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "DE.ApplicationController.errorSubmit": "Fehler beim Senden.", "DE.ApplicationController.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.
Wenden Sie sich an Ihren Serveradministrator.", diff --git a/apps/documenteditor/embed/locale/el.json b/apps/documenteditor/embed/locale/el.json index ce18851e5..c03b0a138 100644 --- a/apps/documenteditor/embed/locale/el.json +++ b/apps/documenteditor/embed/locale/el.json @@ -26,6 +26,7 @@ "DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", "DE.ApplicationController.textAnonymous": "Ανώνυμος", "DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων", + "DE.ApplicationController.textCtrl": "Ctrl", "DE.ApplicationController.textGotIt": "Ελήφθη", "DE.ApplicationController.textGuest": "Επισκέπτης", "DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου", diff --git a/apps/documenteditor/embed/locale/en.json b/apps/documenteditor/embed/locale/en.json index 19ebd329f..7e4bf26f8 100644 --- a/apps/documenteditor/embed/locale/en.json +++ b/apps/documenteditor/embed/locale/en.json @@ -16,6 +16,11 @@ "DE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", "DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "DE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "DE.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "DE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "DE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "DE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "DE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.ApplicationController.errorSubmit": "Submit failed.", "DE.ApplicationController.errorTokenExpire": "The document security token has expired.
Please contact your Document Server administrator.", diff --git a/apps/documenteditor/embed/locale/id.json b/apps/documenteditor/embed/locale/id.json index 315592123..c1ceeb819 100644 --- a/apps/documenteditor/embed/locale/id.json +++ b/apps/documenteditor/embed/locale/id.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Tinggi", "common.view.modals.txtShare": "Bagi tautan", "common.view.modals.txtWidth": "Lebar", + "common.view.SearchBar.textFind": "Temukan", "DE.ApplicationController.convertationErrorText": "Konversi gagal.", "DE.ApplicationController.convertationTimeoutText": "Waktu konversi habis.", "DE.ApplicationController.criticalErrorTitle": "Kesalahan", @@ -18,13 +19,14 @@ "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.errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu mengunduh file atau salin konten untuk memastikan tidak ada yang hilang, lalu 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.textCtrl": "Ctrl", "DE.ApplicationController.textGotIt": "Mengerti", "DE.ApplicationController.textGuest": "Tamu", "DE.ApplicationController.textLoadingDocument": "Memuat dokumen", @@ -46,5 +48,6 @@ "DE.ApplicationView.txtFileLocation": "Buka Dokumen", "DE.ApplicationView.txtFullScreen": "Layar penuh", "DE.ApplicationView.txtPrint": "Cetak", + "DE.ApplicationView.txtSearch": "Cari", "DE.ApplicationView.txtShare": "Bagikan" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/nl.json b/apps/documenteditor/embed/locale/nl.json index 2300047bc..0f1281312 100644 --- a/apps/documenteditor/embed/locale/nl.json +++ b/apps/documenteditor/embed/locale/nl.json @@ -26,6 +26,7 @@ "DE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", "DE.ApplicationController.textAnonymous": "Anoniem", "DE.ApplicationController.textClear": "Wis Alle Velden", + "DE.ApplicationController.textCtrl": "Ctrl", "DE.ApplicationController.textGotIt": "OK", "DE.ApplicationController.textGuest": "Gast", "DE.ApplicationController.textLoadingDocument": "Document wordt geladen", @@ -47,5 +48,6 @@ "DE.ApplicationView.txtFileLocation": "Open bestandslocatie", "DE.ApplicationView.txtFullScreen": "Volledig scherm", "DE.ApplicationView.txtPrint": "Afdrukken", + "DE.ApplicationView.txtSearch": "Zoeken", "DE.ApplicationView.txtShare": "Delen" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/ru.json b/apps/documenteditor/embed/locale/ru.json index 64800605c..aa7c76edd 100644 --- a/apps/documenteditor/embed/locale/ru.json +++ b/apps/documenteditor/embed/locale/ru.json @@ -16,6 +16,11 @@ "DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", "DE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", + "DE.ApplicationController.errorInconsistentExt": "При открытии файла произошла ошибка.
Содержимое файла не соответствует расширению файла.", + "DE.ApplicationController.errorInconsistentExtDocx": "При открытии файла произошла ошибка.
Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.", + "DE.ApplicationController.errorInconsistentExtPdf": "При открытии файла произошла ошибка.
Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.", + "DE.ApplicationController.errorInconsistentExtPptx": "При открытии файла произошла ошибка.
Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.", + "DE.ApplicationController.errorInconsistentExtXlsx": "При открытии файла произошла ошибка.
Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.", "DE.ApplicationController.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "DE.ApplicationController.errorSubmit": "Не удалось отправить.", "DE.ApplicationController.errorTokenExpire": "Истек срок действия токена безопасности документа.
Пожалуйста, обратитесь к администратору Сервера документов.", diff --git a/apps/documenteditor/embed/locale/sv.json b/apps/documenteditor/embed/locale/sv.json index bdc39927a..b4edf5def 100644 --- a/apps/documenteditor/embed/locale/sv.json +++ b/apps/documenteditor/embed/locale/sv.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Höjd", "common.view.modals.txtShare": "Dela länk", "common.view.modals.txtWidth": "Bredd", + "common.view.SearchBar.textFind": "Sök", "DE.ApplicationController.convertationErrorText": "Fel vid konvertering", "DE.ApplicationController.convertationTimeoutText": "Konverteringstiden har överskridits.", "DE.ApplicationController.criticalErrorTitle": "Fel", @@ -25,6 +26,7 @@ "DE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", "DE.ApplicationController.textAnonymous": "Anonym", "DE.ApplicationController.textClear": "Rensa alla fält", + "DE.ApplicationController.textCtrl": "Ctrl", "DE.ApplicationController.textGotIt": "Uppfattat", "DE.ApplicationController.textGuest": "Gäst", "DE.ApplicationController.textLoadingDocument": "Laddar dokument", @@ -46,5 +48,6 @@ "DE.ApplicationView.txtFileLocation": "Öppna filens plats", "DE.ApplicationView.txtFullScreen": "Helskärm", "DE.ApplicationView.txtPrint": "Skriv ut", + "DE.ApplicationView.txtSearch": "Sök", "DE.ApplicationView.txtShare": "Dela" } \ No newline at end of file diff --git a/apps/documenteditor/forms/app.js b/apps/documenteditor/forms/app.js index 99b5479f7..2a10cb3f4 100644 --- a/apps/documenteditor/forms/app.js +++ b/apps/documenteditor/forms/app.js @@ -46,7 +46,7 @@ require.config({ perfectscrollbar: 'common/main/lib/mods/perfect-scrollbar', jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel', xregexp : '../vendor/xregexp/xregexp-all-min', - sockjs : '../vendor/sockjs/sockjs.min', + socketio : '../vendor/socketio/socket.io.min', allfonts : '../../sdkjs/common/AllFonts', sdk : '../../sdkjs/word/sdk-all-min', api : 'api/documents/api', @@ -100,7 +100,7 @@ require.config({ 'underscore', 'allfonts', 'xregexp', - 'sockjs' + 'socketio' ] }, gateway: { diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 2f86dcea2..3938469ce 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -301,6 +301,20 @@ define([ config.msg = this.errorTextFormWrongFormat; break; + case Asc.c_oAscError.ID.ConvertationOpenFormat: + config.maxwidth = 600; + if (errData === 'pdf') + config.msg = this.errorInconsistentExtPdf.replace('%1', this.document.fileType || ''); + else if (errData === 'docx') + config.msg = this.errorInconsistentExtDocx.replace('%1', this.document.fileType || ''); + else if (errData === 'xlsx') + config.msg = this.errorInconsistentExtXlsx.replace('%1', this.document.fileType || ''); + else if (errData === 'pptx') + config.msg = this.errorInconsistentExtPptx.replace('%1', this.document.fileType || ''); + else + config.msg = this.errorInconsistentExt; + break; + default: config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id); break; @@ -1909,7 +1923,12 @@ define([ textSaveAsDesktop: 'Save as...', warnLicenseExp: 'Your license has expired.
Please update your license and refresh the page.', titleLicenseExp: 'License expired', - errorTextFormWrongFormat: 'The value entered does not match the format of the field.' + errorTextFormWrongFormat: 'The value entered does not match the format of the field.', + errorInconsistentExtDocx: 'An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.', + errorInconsistentExtXlsx: 'An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPptx: 'An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPdf: 'An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.', + errorInconsistentExt: 'An error has occurred while opening the file.
The file content does not match the file extension.' }, DE.Controllers.ApplicationController)); diff --git a/apps/documenteditor/forms/app_dev.js b/apps/documenteditor/forms/app_dev.js index 5511ef754..d85f0b468 100644 --- a/apps/documenteditor/forms/app_dev.js +++ b/apps/documenteditor/forms/app_dev.js @@ -46,7 +46,7 @@ require.config({ perfectscrollbar: 'common/main/lib/mods/perfect-scrollbar', jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel', xregexp : '../vendor/xregexp/xregexp-all-min', - sockjs : '../vendor/sockjs/sockjs.min', + socketio : '../vendor/socketio/socket.io.min', api : 'api/documents/api', core : 'common/main/lib/core/application', notification : 'common/main/lib/core/NotificationCenter', @@ -113,7 +113,7 @@ require([ 'analytics', 'gateway', 'locale', - 'sockjs', + 'socketio', 'underscore' ], function (Backbone, Bootstrap, Core) { if (Backbone.History && Backbone.History.started) diff --git a/apps/documenteditor/forms/locale/ca.json b/apps/documenteditor/forms/locale/ca.json index d87380af1..a7fb0f315 100644 --- a/apps/documenteditor/forms/locale/ca.json +++ b/apps/documenteditor/forms/locale/ca.json @@ -53,7 +53,7 @@ "Common.UI.Window.yesButtonText": "Sí", "Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge", "Common.Views.CopyWarningDialog.textMsg": "Les accions de copia, retalla i enganxa utilitzant el menú contextual només es realitzaran dins d'aquesta pestanya de l'editor.

Per copiar o enganxar a o des d'aplicacions fora de la pestanya de l'editor utilitza les següents combinacions de teclat:", - "Common.Views.CopyWarningDialog.textTitle": "Accions de copia, talla i enganxa ", + "Common.Views.CopyWarningDialog.textTitle": "Accions de Copiar, Tallar i Enganxar ", "Common.Views.CopyWarningDialog.textToCopy": "Per copiar", "Common.Views.CopyWarningDialog.textToCut": "Per tallar", "Common.Views.CopyWarningDialog.textToPaste": "Per enganxar", @@ -65,7 +65,7 @@ "Common.Views.ImageFromUrlDialog.textUrl": "Enganxa un URL d'imatge:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.example.com\"", - "Common.Views.OpenDialog.closeButtonText": "Tanca el fitxer", + "Common.Views.OpenDialog.closeButtonText": "Tancar fitxer", "Common.Views.OpenDialog.txtEncoding": "Codificació", "Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya no és correcta.", "Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer", @@ -73,11 +73,11 @@ "Common.Views.OpenDialog.txtPreview": "Visualització prèvia", "Common.Views.OpenDialog.txtProtected": "Un cop introduïu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual del fitxer.", "Common.Views.OpenDialog.txtTitle": "Tria les opcions %1", - "Common.Views.OpenDialog.txtTitleProtected": "El fitxer està protegit", + "Common.Views.OpenDialog.txtTitleProtected": "Arxiu Protegit", "Common.Views.SaveAsDlg.textLoading": "S'està carregant", "Common.Views.SaveAsDlg.textTitle": "Carpeta per desar", "Common.Views.SelectFileDlg.textLoading": "S'està carregant", - "Common.Views.SelectFileDlg.textTitle": "Seleccioneu l'origen de les dades", + "Common.Views.SelectFileDlg.textTitle": "Selecciona l'origen de les dades", "Common.Views.ShareDialog.textTitle": "Comparteix l'enllaç", "Common.Views.ShareDialog.txtCopy": "Copia al porta-retalls", "Common.Views.ShareDialog.warnCopy": "Error del navegador! Utilitzeu la drecera de teclat [Ctrl] + [C]", diff --git a/apps/documenteditor/forms/locale/da.json b/apps/documenteditor/forms/locale/da.json index 6d0800d02..4ffba34b1 100644 --- a/apps/documenteditor/forms/locale/da.json +++ b/apps/documenteditor/forms/locale/da.json @@ -32,9 +32,15 @@ "Common.UI.Calendar.textShortTuesday": "Ti", "Common.UI.Calendar.textShortWednesday": "Ons", "Common.UI.Calendar.textYears": "år", + "Common.UI.SearchBar.textFind": "Find", + "Common.UI.SearchBar.tipCloseSearch": "Luk søgning", + "Common.UI.SearchBar.tipNextResult": "Næste resultat", + "Common.UI.SearchBar.tipPreviousResult": "Forrige resultat", "Common.UI.Themes.txtThemeClassicLight": "Klassisk lys", + "Common.UI.Themes.txtThemeContrastDark": "Mørk kontrast", "Common.UI.Themes.txtThemeDark": "Mørk", "Common.UI.Themes.txtThemeLight": "Lys", + "Common.UI.Themes.txtThemeSystem": "Samme som system", "Common.UI.Window.cancelButtonText": "Annuller", "Common.UI.Window.closeButtonText": "Luk", "Common.UI.Window.noButtonText": "Nej", @@ -96,10 +102,11 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "Dokumentet er ikke blevet redigeret i et stykke tid. Genindlæs venligst siden.", "DE.Controllers.ApplicationController.errorSessionToken": "Forbindelsen til serveren er blevet afbrudt. Venligst genindlæs siden.", "DE.Controllers.ApplicationController.errorSubmit": "Send mislykkedes.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "Den indtastede værdi stemmer ikke overens med feltets format.", "DE.Controllers.ApplicationController.errorToken": "Dokumentets sikkerhedstoken er ikke oprettet korrekt.
Kontakt venligst din administrator for Document Server.", "DE.Controllers.ApplicationController.errorTokenExpire": "Dokumentets sikkerhedstoken er udløbet.
Kontakt venligst din Document Server administrator. ", "DE.Controllers.ApplicationController.errorUpdateVersion": "Filversionen er blevet ændret. Siden genindlæses.", - "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet, og filversionen er blevet ændret.
Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.", + "DE.Controllers.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet og filversionen er blevet ændret.
Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.", "DE.Controllers.ApplicationController.errorUserDrop": "Der kan ikke opnås adgang til filen lige nu. ", "DE.Controllers.ApplicationController.errorViewerDisconnect": "Forbindesen er tabt. Du kan stadig se dokumentet,
men du vil ikke være i stand til at hente eller udskrive det, før forbindelsen er genetableret. ", "DE.Controllers.ApplicationController.mniImageFromFile": "Billede fra fil", @@ -123,6 +130,7 @@ "DE.Controllers.ApplicationController.textSaveAs": "Gem som PDF", "DE.Controllers.ApplicationController.textSaveAsDesktop": "Gem som...", "DE.Controllers.ApplicationController.textSubmited": "Formularen blev indsendt
Klik for at lukke tippet", + "DE.Controllers.ApplicationController.titleLicenseExp": "Licens er udløbet", "DE.Controllers.ApplicationController.titleServerVersion": "Redigeringsværktøj opdateret", "DE.Controllers.ApplicationController.titleUpdateVersion": "Version ændret", "DE.Controllers.ApplicationController.txtArt": "Din tekst her", @@ -139,6 +147,7 @@ "DE.Controllers.ApplicationController.uploadImageSizeMessage": "Billedet er for stort. Den maksimale størrelse er 25 MB.", "DE.Controllers.ApplicationController.waitText": "Vent venligst...", "DE.Controllers.ApplicationController.warnLicenseExceeded": "Antallet af samtidige forbindelser til serveren overstiger det tilladte antal, og dokumentet åbnes i visningstilstand.
Kontakt venligst din administrator for mere information.", + "DE.Controllers.ApplicationController.warnLicenseExp": "Din licens er udløbet
Venligst opdatér din licens og genindlæs siden.", "DE.Controllers.ApplicationController.warnLicenseLimitedNoAccess": "Licens udløbet.
Du har ikke adgang til at redigere.
Kontakt venligst din administrator.", "DE.Controllers.ApplicationController.warnLicenseLimitedRenewed": "Licens skal fornyes.
Du har begrænset adgang til at redigere dokumenter.
Kontakt venligst din administrator for at få fuld adgang.", "DE.Controllers.ApplicationController.warnLicenseUsersExceeded": "Det tilladte antal af samtidige brugere er oversteget, og dokumentet vil blive åbnet i visningstilstand.
Kontakt venligst din administrator for mere information. ", @@ -164,6 +173,7 @@ "DE.Views.ApplicationView.txtFileLocation": "Åben filplacering", "DE.Views.ApplicationView.txtFullScreen": "Fuld skærm", "DE.Views.ApplicationView.txtPrint": "Udskriv", + "DE.Views.ApplicationView.txtSearch": "Søg", "DE.Views.ApplicationView.txtShare": "Del", "DE.Views.ApplicationView.txtTheme": "Tema" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/de.json b/apps/documenteditor/forms/locale/de.json index fd6304784..b10b424a5 100644 --- a/apps/documenteditor/forms/locale/de.json +++ b/apps/documenteditor/forms/locale/de.json @@ -96,12 +96,18 @@ "DE.Controllers.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.
Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", "DE.Controllers.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.", + "DE.Controllers.ApplicationController.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.", + "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.", + "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.", + "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.", + "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.", "DE.Controllers.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "DE.Controllers.ApplicationController.errorServerVersion": "Version des Editors wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.", "DE.Controllers.ApplicationController.errorSessionIdle": "Das Dokument wurde lange nicht bearbeitet. Laden Sie die Seite neu.", "DE.Controllers.ApplicationController.errorSessionToken": "Die Verbindung zum Server wurde unterbrochen. Laden Sie die Seite neu.", "DE.Controllers.ApplicationController.errorSubmit": "Fehler beim Senden.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "Der eingegebene Wert stimmt nicht mit dem Format des Feldes überein.", "DE.Controllers.ApplicationController.errorToken": "Sicherheitstoken des Dokuments ist nicht korrekt.
Wenden Sie sich an Ihren Serveradministrator.", "DE.Controllers.ApplicationController.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.
Wenden Sie sich an Ihren Serveradministrator.", "DE.Controllers.ApplicationController.errorUpdateVersion": "Die Dateiversion wurde geändert. Die Seite wird neu geladen.", diff --git a/apps/documenteditor/forms/locale/el.json b/apps/documenteditor/forms/locale/el.json index 75062c883..c7ed14e8f 100644 --- a/apps/documenteditor/forms/locale/el.json +++ b/apps/documenteditor/forms/locale/el.json @@ -37,8 +37,10 @@ "Common.UI.SearchBar.tipNextResult": "Επόμενο αποτέλεσμα", "Common.UI.SearchBar.tipPreviousResult": "Προηγούμενο αποτέλεσμα", "Common.UI.Themes.txtThemeClassicLight": "Κλασικό Ανοιχτό", + "Common.UI.Themes.txtThemeContrastDark": "Αντίθεση Σκοτεινή", "Common.UI.Themes.txtThemeDark": "Σκούρο", "Common.UI.Themes.txtThemeLight": "Ανοιχτό", + "Common.UI.Themes.txtThemeSystem": "Ίδιο με το σύστημα", "Common.UI.Window.cancelButtonText": "Ακύρωση", "Common.UI.Window.closeButtonText": "Κλείσιμο", "Common.UI.Window.noButtonText": "Όχι", @@ -63,7 +65,7 @@ "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.closeButtonText": "Κλείσιμο αρχείου", "Common.Views.OpenDialog.txtEncoding": "Κωδικοποίηση", "Common.Views.OpenDialog.txtIncorrectPwd": "Το συνθηματικό είναι εσφαλμένο.", "Common.Views.OpenDialog.txtOpenFile": "Εισάγετε συνθηματικό για να ανοίξετε το αρχείο", @@ -100,6 +102,7 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "Το έγγραφο δεν έχει επεξεργαστεί εδώ και πολύ ώρα. Παρακαλούμε φορτώστε ξανά τη σελίδα.", "DE.Controllers.ApplicationController.errorSessionToken": "Η σύνδεση με το διακομιστή έχει διακοπεί. Παρακαλούμε φορτώστε ξανά τη σελίδα.", "DE.Controllers.ApplicationController.errorSubmit": "Η υποβολή απέτυχε.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "Η τιμή που εισαγάγατε δεν ταιριάζει με τη μορφή του πεδίου.", "DE.Controllers.ApplicationController.errorToken": "Το κλειδί ασφαλείας του εγγράφου δεν είναι σωστά σχηματισμένο.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων.", "DE.Controllers.ApplicationController.errorTokenExpire": "Το κλειδί ασφαλείας του εγγράφου έληξε.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων.", "DE.Controllers.ApplicationController.errorUpdateVersion": "Η έκδοση του αρχείου έχει αλλάξει. Η σελίδα θα φορτωθεί ξανά.", diff --git a/apps/documenteditor/forms/locale/en.json b/apps/documenteditor/forms/locale/en.json index 35aae0701..b0e29eb68 100644 --- a/apps/documenteditor/forms/locale/en.json +++ b/apps/documenteditor/forms/locale/en.json @@ -53,7 +53,7 @@ "Common.UI.Window.yesButtonText": "Yes", "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using 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.textTitle": "Copy, Cut and Paste actions", "Common.Views.CopyWarningDialog.textToCopy": "for Copy", "Common.Views.CopyWarningDialog.textToCut": "for Cut", "Common.Views.CopyWarningDialog.textToPaste": "for Paste", @@ -65,7 +65,7 @@ "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.OpenDialog.closeButtonText": "Close File", + "Common.Views.OpenDialog.closeButtonText": "Close file", "Common.Views.OpenDialog.txtEncoding": "Encoding ", "Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.", "Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file", @@ -73,12 +73,12 @@ "Common.Views.OpenDialog.txtPreview": "Preview", "Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", - "Common.Views.OpenDialog.txtTitleProtected": "Protected File", + "Common.Views.OpenDialog.txtTitleProtected": "Protected file", "Common.Views.SaveAsDlg.textLoading": "Loading", "Common.Views.SaveAsDlg.textTitle": "Folder for save", "Common.Views.SelectFileDlg.textLoading": "Loading", - "Common.Views.SelectFileDlg.textTitle": "Select Data Source", - "Common.Views.ShareDialog.textTitle": "Share Link", + "Common.Views.SelectFileDlg.textTitle": "Select data source", + "Common.Views.ShareDialog.textTitle": "Share link", "Common.Views.ShareDialog.txtCopy": "Copy to clipboard", "Common.Views.ShareDialog.warnCopy": "Browser's error! Use keyboard shortcut [Ctrl] + [C]", "DE.Controllers.ApplicationController.convertationErrorText": "Conversion failed.", @@ -96,6 +96,11 @@ "DE.Controllers.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", "DE.Controllers.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "DE.Controllers.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "DE.Controllers.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.Controllers.ApplicationController.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", diff --git a/apps/documenteditor/forms/locale/hu.json b/apps/documenteditor/forms/locale/hu.json index 8655a83a9..fa95fa64e 100644 --- a/apps/documenteditor/forms/locale/hu.json +++ b/apps/documenteditor/forms/locale/hu.json @@ -37,8 +37,10 @@ "Common.UI.SearchBar.tipNextResult": "Következő eredmény", "Common.UI.SearchBar.tipPreviousResult": "Előző eredmény", "Common.UI.Themes.txtThemeClassicLight": "Klasszikus Világos", + "Common.UI.Themes.txtThemeContrastDark": "Sötét kontraszt", "Common.UI.Themes.txtThemeDark": "Sötét", "Common.UI.Themes.txtThemeLight": "Világos", + "Common.UI.Themes.txtThemeSystem": "A rendszerrel megegyező", "Common.UI.Window.cancelButtonText": "Mégse", "Common.UI.Window.closeButtonText": "Bezár", "Common.UI.Window.noButtonText": "Nem", @@ -100,6 +102,7 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "A dokumentumot sokáig nem szerkesztették. Kérjük, töltse újra az oldalt.", "DE.Controllers.ApplicationController.errorSessionToken": "A szerverrel való kapcsolat megszakadt. Töltse újra az oldalt.", "DE.Controllers.ApplicationController.errorSubmit": "A beküldés nem sikerült.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "A megadott érték nem felel meg a mező formátumának.", "DE.Controllers.ApplicationController.errorToken": "A dokumentum biztonsági tokenje nem megfelelő.
Kérjük, lépjen kapcsolatba a Dokumentumszerver rendszergazdájával.", "DE.Controllers.ApplicationController.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", "DE.Controllers.ApplicationController.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", diff --git a/apps/documenteditor/forms/locale/hy.json b/apps/documenteditor/forms/locale/hy.json index 91a272de0..f62b524a0 100644 --- a/apps/documenteditor/forms/locale/hy.json +++ b/apps/documenteditor/forms/locale/hy.json @@ -48,7 +48,7 @@ "Common.UI.Window.textConfirmation": "Հաստատում", "Common.UI.Window.textDontShow": "Այս գրությունն այլևս ցույց չտալ", "Common.UI.Window.textError": "Սխալ", - "Common.UI.Window.textInformation": "Տեղեկատվություն", + "Common.UI.Window.textInformation": "Տեղեկատվություն ", "Common.UI.Window.textWarning": "Զգուշացում", "Common.UI.Window.yesButtonText": "Այո", "Common.Views.CopyWarningDialog.textDontShow": "Այս գրությունն այլևս ցույց չտալ", diff --git a/apps/documenteditor/forms/locale/id.json b/apps/documenteditor/forms/locale/id.json index 995e1320f..43700c0d1 100644 --- a/apps/documenteditor/forms/locale/id.json +++ b/apps/documenteditor/forms/locale/id.json @@ -32,9 +32,15 @@ "Common.UI.Calendar.textShortTuesday": "Sel", "Common.UI.Calendar.textShortWednesday": "Rab", "Common.UI.Calendar.textYears": "tahun", + "Common.UI.SearchBar.textFind": "Temukan", + "Common.UI.SearchBar.tipCloseSearch": "Tutup pencarian", + "Common.UI.SearchBar.tipNextResult": "Hasil selanjutnya", + "Common.UI.SearchBar.tipPreviousResult": "Hasil sebelumnya", "Common.UI.Themes.txtThemeClassicLight": "Terang Klasik", + "Common.UI.Themes.txtThemeContrastDark": "Gelap Kontras", "Common.UI.Themes.txtThemeDark": "Gelap", "Common.UI.Themes.txtThemeLight": "Cerah", + "Common.UI.Themes.txtThemeSystem": "Sama seperti sistem", "Common.UI.Window.cancelButtonText": "Batalkan", "Common.UI.Window.closeButtonText": "Tutup", "Common.UI.Window.noButtonText": "Tidak", @@ -96,10 +102,11 @@ "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.errorTextFormWrongFormat": "Nilai yang dimasukkan tidak cocok dengan format bidang.", "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.errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu mengunduh file atau salin konten untuk memastikan tidak ada yang hilang, lalu 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", @@ -166,6 +173,7 @@ "DE.Views.ApplicationView.txtFileLocation": "Buka Dokumen", "DE.Views.ApplicationView.txtFullScreen": "Layar penuh", "DE.Views.ApplicationView.txtPrint": "Cetak", + "DE.Views.ApplicationView.txtSearch": "Cari", "DE.Views.ApplicationView.txtShare": "Bagikan", "DE.Views.ApplicationView.txtTheme": "Tema interface" } \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/ja.json b/apps/documenteditor/forms/locale/ja.json index 4c813a3c5..f30908fb7 100644 --- a/apps/documenteditor/forms/locale/ja.json +++ b/apps/documenteditor/forms/locale/ja.json @@ -37,8 +37,10 @@ "Common.UI.SearchBar.tipNextResult": "次の結果", "Common.UI.SearchBar.tipPreviousResult": "前の結果", "Common.UI.Themes.txtThemeClassicLight": "ライト(クラシック)", + "Common.UI.Themes.txtThemeContrastDark": "ダークコントラスト", "Common.UI.Themes.txtThemeDark": "ダーク", "Common.UI.Themes.txtThemeLight": "ライト", + "Common.UI.Themes.txtThemeSystem": "システム設定と同じ", "Common.UI.Window.cancelButtonText": "キャンセル", "Common.UI.Window.closeButtonText": "閉じる", "Common.UI.Window.noButtonText": "いいえ", @@ -113,7 +115,7 @@ "DE.Controllers.ApplicationController.notcriticalErrorTitle": "警告", "DE.Controllers.ApplicationController.openErrorText": "ファイルの読み込み中にエラーが発生しました", "DE.Controllers.ApplicationController.saveErrorText": "ファイルの保存中にエラーが発生しました。", - "DE.Controllers.ApplicationController.saveErrorTextDesktop": "このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. ファイルが読み取り専用です。
2. ファイルが他のユーザーによって編集されています。
3. ディスクに空きスペースがないか破損しています。", + "DE.Controllers.ApplicationController.saveErrorTextDesktop": "このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。", "DE.Controllers.ApplicationController.scriptLoadError": "接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。", "DE.Controllers.ApplicationController.textAnonymous": "匿名", "DE.Controllers.ApplicationController.textBuyNow": "ウェブサイトを訪問する", diff --git a/apps/documenteditor/forms/locale/pt-pt.json b/apps/documenteditor/forms/locale/pt-pt.json index 699121ae8..ceaa7ec48 100644 --- a/apps/documenteditor/forms/locale/pt-pt.json +++ b/apps/documenteditor/forms/locale/pt-pt.json @@ -102,6 +102,7 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "Este documento não foi editado durante muito tempo. Tente recarregar a página.", "DE.Controllers.ApplicationController.errorSessionToken": "A ligação ao servidor foi interrompida. Tente recarregar a página.", "DE.Controllers.ApplicationController.errorSubmit": "Falha ao submeter.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "O valor introduzido não corresponde ao formato do campo.", "DE.Controllers.ApplicationController.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.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.", diff --git a/apps/documenteditor/forms/locale/ru.json b/apps/documenteditor/forms/locale/ru.json index 5f1b7b09d..989280ef5 100644 --- a/apps/documenteditor/forms/locale/ru.json +++ b/apps/documenteditor/forms/locale/ru.json @@ -96,6 +96,11 @@ "DE.Controllers.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", "DE.Controllers.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", + "DE.Controllers.ApplicationController.errorInconsistentExt": "При открытии файла произошла ошибка.
Содержимое файла не соответствует расширению файла.", + "DE.Controllers.ApplicationController.errorInconsistentExtDocx": "При открытии файла произошла ошибка.
Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.", + "DE.Controllers.ApplicationController.errorInconsistentExtPdf": "При открытии файла произошла ошибка.
Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.", + "DE.Controllers.ApplicationController.errorInconsistentExtPptx": "При открытии файла произошла ошибка.
Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.", + "DE.Controllers.ApplicationController.errorInconsistentExtXlsx": "При открытии файла произошла ошибка.
Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.", "DE.Controllers.ApplicationController.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "DE.Controllers.ApplicationController.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.", diff --git a/apps/documenteditor/forms/locale/sv.json b/apps/documenteditor/forms/locale/sv.json index 0bd22bb18..f13472e7e 100644 --- a/apps/documenteditor/forms/locale/sv.json +++ b/apps/documenteditor/forms/locale/sv.json @@ -32,9 +32,15 @@ "Common.UI.Calendar.textShortTuesday": "Tis", "Common.UI.Calendar.textShortWednesday": "Ons", "Common.UI.Calendar.textYears": "år", + "Common.UI.SearchBar.textFind": "Sök", + "Common.UI.SearchBar.tipCloseSearch": "Stäng sökning", + "Common.UI.SearchBar.tipNextResult": "Nästa resultat", + "Common.UI.SearchBar.tipPreviousResult": "Föregående resultat", "Common.UI.Themes.txtThemeClassicLight": "Classic Light", + "Common.UI.Themes.txtThemeContrastDark": "Mörk kontrast", "Common.UI.Themes.txtThemeDark": "Mörk", "Common.UI.Themes.txtThemeLight": "Ljus", + "Common.UI.Themes.txtThemeSystem": "Samma som systemet", "Common.UI.Window.cancelButtonText": "Avbryt", "Common.UI.Window.closeButtonText": "Stäng", "Common.UI.Window.noButtonText": "Nov", @@ -96,6 +102,7 @@ "DE.Controllers.ApplicationController.errorSessionIdle": "Dokumentet har inte redigerats under en längre tid. Vänligen att ladda om sidan.", "DE.Controllers.ApplicationController.errorSessionToken": "Anslutningen till servern har avbrutits. Vänligen ladda om sidan.", "DE.Controllers.ApplicationController.errorSubmit": "Gick ej att verkställa.", + "DE.Controllers.ApplicationController.errorTextFormWrongFormat": "Det angivna värdet stämmer inte överens med fältets format.", "DE.Controllers.ApplicationController.errorToken": "Dokumentets säkerhetstoken är inte korrekt.
Vänligen kontakta din dokumentservers administratör.", "DE.Controllers.ApplicationController.errorTokenExpire": "Dokumentets säkerhetstoken har upphört att gälla.
Vänligen kontakta dokumentserverns administratör.", "DE.Controllers.ApplicationController.errorUpdateVersion": "Denna version av filen har ändrats. Sidan kommer att laddas om.", @@ -166,6 +173,7 @@ "DE.Views.ApplicationView.txtFileLocation": "Gå till filens plats", "DE.Views.ApplicationView.txtFullScreen": "Fullskärm", "DE.Views.ApplicationView.txtPrint": "Skriva ut", + "DE.Views.ApplicationView.txtSearch": "Sök", "DE.Views.ApplicationView.txtShare": "Dela", "DE.Views.ApplicationView.txtTheme": "Gränssnittstema" } \ No newline at end of file diff --git a/apps/documenteditor/main/app.js b/apps/documenteditor/main/app.js index 190281919..8e57bd105 100644 --- a/apps/documenteditor/main/app.js +++ b/apps/documenteditor/main/app.js @@ -53,7 +53,7 @@ require.config({ perfectscrollbar: 'common/main/lib/mods/perfect-scrollbar', jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel', xregexp : '../vendor/xregexp/xregexp-all-min', - sockjs : '../vendor/sockjs/sockjs.min', + socketio : '../vendor/socketio/socket.io.min', allfonts : '../../sdkjs/common/AllFonts', sdk : '../../sdkjs/word/sdk-all-min', api : 'api/documents/api', @@ -107,7 +107,7 @@ require.config({ 'underscore', 'allfonts', 'xregexp', - 'sockjs' + 'socketio' ] }, gateway: { @@ -157,6 +157,7 @@ require([ 'Main', 'ViewTab', 'Search', + 'DocProtection', 'Common.Controllers.Fonts', 'Common.Controllers.History' /** coauthoring begin **/ @@ -191,6 +192,7 @@ require([ 'documenteditor/main/app/controller/Main', 'documenteditor/main/app/controller/ViewTab', 'documenteditor/main/app/controller/Search', + 'documenteditor/main/app/controller/DocProtection', 'documenteditor/main/app/view/FileMenuPanels', 'documenteditor/main/app/view/ParagraphSettings', 'documenteditor/main/app/view/HeaderFooterSettings', diff --git a/apps/documenteditor/main/app/controller/DocProtection.js b/apps/documenteditor/main/app/controller/DocProtection.js new file mode 100644 index 000000000..3174987a1 --- /dev/null +++ b/apps/documenteditor/main/app/controller/DocProtection.js @@ -0,0 +1,253 @@ +/* + * + * (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 + * + */ + +/** + * DocProtection.js + * + * Created by Julia Radzhabova on 21.09.2022 + * Copyright (c) 2022 Ascensio System SIA. All rights reserved. + * + */ +define([ + 'core', + 'common/main/lib/view/Protection', + 'documenteditor/main/app/view/DocProtection', + 'documenteditor/main/app/view/ProtectDialog' +], function () { + 'use strict'; + + if (!Common.enumLock) + Common.enumLock = {}; + + var enumLock = { + docLockView: 'lock-mode-view', + docLockForms: 'lock-mode-forms', + docLockReview: 'lock-mode-review', + docLockComments: 'lock-mode-comments', + protectLock: 'protect-lock' + }; + for (var key in enumLock) { + if (enumLock.hasOwnProperty(key)) { + Common.enumLock[key] = enumLock[key]; + } + } + + DE.Controllers.DocProtection = Backbone.Controller.extend(_.extend({ + models : [], + collections : [ + ], + views : [ + 'DocProtection' + ], + + initialize: function () { + + this.addListeners({ + 'DocProtection': { + 'protect:document': _.bind(this.onProtectDocClick, this) + } + }); + }, + onLaunch: function () { + this._state = {}; + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); + }, + setConfig: function (data, api) { + this.setApi(api); + }, + setApi: function (api) { + if (api) { + this.api = api; + this.api.asc_registerCallback('asc_onChangeDocumentProtection',_.bind(this.onChangeProtectDocument, this)); + this.api.asc_registerCallback('asc_onLockDocumentProtection',_.bind(this.onLockDocumentProtection, this)); + } + }, + + setMode: function(mode) { + this.appConfig = mode; + + this.appConfig.isEdit && (this.view = this.createView('DocProtection', { + mode: mode + })); + + return this; + }, + + createToolbarPanel: function() { + if (this.view) + return this.view.getPanel(); + }, + + getView: function(name) { + return !name && this.view ? + this.view : Backbone.Controller.prototype.getView.call(this, name); + }, + + onProtectDocClick: function(state) { + this.view.btnProtectDoc.toggle(!state, true); + if (state) { + var me = this, + btn, + win = new DE.Views.ProtectDialog({ + props: me.appConfig, + handler: function(result, value, props) { + btn = result; + if (result == 'ok') { + var protection = me.api.asc_getDocumentProtection() || new AscCommonWord.CDocProtect(); + protection.asc_setEditType(props); + protection.asc_setPassword(value); + me.api.asc_setDocumentProtection(protection); + } + Common.NotificationCenter.trigger('edit:complete'); + } + }).on('close', function() { + if (btn!=='ok') + me.view.btnProtectDoc.toggle(false, true); + }); + + win.show(); + } else { + var me = this, + btn, + props = me.api.asc_getDocumentProtection(); + if (props && props.asc_getIsPassword()) { + var win = new Common.Views.OpenDialog({ + title: me.view.txtWBUnlockTitle, + closable: true, + type: Common.Utils.importTextType.DRM, + txtOpenFile: me.view.txtWBUnlockDescription, + validatePwd: false, + maxPasswordLength: 15, + handler: function (result, value) { + btn = result; + if (result == 'ok') { + if (me.api) { + props.asc_setEditType(Asc.c_oAscEDocProtect.None); + value && value.drmOptions && props.asc_setPassword(value.drmOptions.asc_getPassword()); + me.api.asc_setDocumentProtection(props); + } + Common.NotificationCenter.trigger('edit:complete'); + } + } + }).on('close', function() { + if (btn!=='ok') + me.view.btnProtectDoc.toggle(true, true); + }); + + win.show(); + } else { + if (!props) + props = new AscCommonWord.CDocProtect(); + props.asc_setEditType(Asc.c_oAscEDocProtect.None); + me.api.asc_setDocumentProtection(props); + } + } + }, + + onAppReady: function (config) { + if (!this.view) return; + + var me = this; + (new Promise(function (resolve) { + resolve(); + })).then(function () { + var props = me.api.asc_getDocumentProtection(), + type = props ? props.asc_getEditType() : Asc.c_oAscEDocProtect.None, + isProtected = (type === Asc.c_oAscEDocProtect.ReadOnly || type === Asc.c_oAscEDocProtect.Comments || + type === Asc.c_oAscEDocProtect.TrackedChanges || type === Asc.c_oAscEDocProtect.Forms); + me.view.btnProtectDoc.toggle(!!isProtected, true); + props && me.applyRestrictions(type); + }); + }, + + onChangeProtectDocument: function() { + var props = this.getDocProps(true), + isProtected = props && (props.isReadOnly || props.isCommentsOnly || props.isFormsOnly || props.isReviewOnly); + this.view && this.view.btnProtectDoc.toggle(isProtected, true); + + // off preview forms + var forms = this.getApplication().getController('FormsTab'); + forms && forms.changeViewFormMode(false); + + // off preview review changes + var review = this.getApplication().getController('Common.Controllers.ReviewChanges'); + if (review && review.isPreviewChangesMode()) { + var value = Common.Utils.InternalSettings.get("de-review-mode-editor") || 'markup'; + review.turnDisplayMode(value); + review.view && review.view.turnDisplayMode(value); + } + + props && this.applyRestrictions(props.type); + Common.NotificationCenter.trigger('protect:doclock', props); + }, + + getDocProps: function(update) { + if (!this.appConfig || !this.appConfig.isEdit && !this.appConfig.isRestrictedEdit) return; + + if (update || !this._state.docProtection) { + var props = this.api.asc_getDocumentProtection(), + type = props ? props.asc_getEditType() : Asc.c_oAscEDocProtect.None; + this._state.docProtection = { + type: type, + isReadOnly: type===Asc.c_oAscEDocProtect.ReadOnly, + isCommentsOnly: type===Asc.c_oAscEDocProtect.Comments, + isReviewOnly: type===Asc.c_oAscEDocProtect.TrackedChanges, + isFormsOnly: type===Asc.c_oAscEDocProtect.Forms + }; + } + return this._state.docProtection; + }, + + applyRestrictions: function(type) { + if (type === Asc.c_oAscEDocProtect.ReadOnly) { + this.api.asc_setRestriction(Asc.c_oAscRestrictionType.View); + } else if (type === Asc.c_oAscEDocProtect.Comments) { + this.api.asc_setRestriction(this.appConfig.canComments ? Asc.c_oAscRestrictionType.OnlyComments : Asc.c_oAscRestrictionType.View); + } else if (type === Asc.c_oAscEDocProtect.Forms) { + this.api.asc_setRestriction(this.appConfig.canFillForms ? Asc.c_oAscRestrictionType.OnlyForms : Asc.c_oAscRestrictionType.View); + } else { // none or tracked changes + if (this.appConfig.isRestrictedEdit) { + this.appConfig.canComments && this.api.asc_setRestriction(Asc.c_oAscRestrictionType.OnlyComments); + this.appConfig.canFillForms && this.api.asc_setRestriction(Asc.c_oAscRestrictionType.OnlyForms); + } else + this.api.asc_setRestriction(Asc.c_oAscRestrictionType.None); + } + this.view && this.view.updateProtectionTips(type); + }, + + onLockDocumentProtection: function(state) { + this.view && Common.Utils.lockControls(Common.enumLock.protectLock, state, {array: [this.view.btnProtectDoc]}); + } + + }, DE.Controllers.DocProtection || {})); +}); \ No newline at end of file diff --git a/apps/documenteditor/main/app/controller/DocumentHolder.js b/apps/documenteditor/main/app/controller/DocumentHolder.js index 9aa1bd3f6..1dfdd92a6 100644 --- a/apps/documenteditor/main/app/controller/DocumentHolder.js +++ b/apps/documenteditor/main/app/controller/DocumentHolder.js @@ -187,6 +187,7 @@ define([ me.onDocumentHolderResize(); } }); + Common.NotificationCenter.on('protect:doclock', _.bind(me.onChangeProtectDocument, me)); }, setApi: function(o) { @@ -211,6 +212,8 @@ define([ this.api.asc_registerCallback('asc_ChangeCropState', _.bind(this.onChangeCropState, this)); this.api.asc_registerCallback('asc_onLockDocumentProps', _.bind(this.onApiLockDocumentProps, this)); this.api.asc_registerCallback('asc_onUnLockDocumentProps', _.bind(this.onApiUnLockDocumentProps, this)); + this.api.asc_registerCallback('asc_onShowMathTrack', _.bind(this.onShowMathTrack, this)); + this.api.asc_registerCallback('asc_onHideMathTrack', _.bind(this.onHideMathTrack, this)); } this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onCoAuthoringDisconnect, this)); Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this)); @@ -226,7 +229,6 @@ define([ this.api.asc_registerCallback('asc_onShowContentControlsActions',_.bind(this.onShowContentControlsActions, this)); this.api.asc_registerCallback('asc_onHideContentControlsActions',_.bind(this.onHideContentControlsActions, this)); } - this.documentHolder.setApi(this.api); } @@ -423,6 +425,10 @@ define([ view.menuTableTOC.menu.on('item:click', _.bind(me.onTOCMenu, me)); view.menuParaTOCRefresh.menu.on('item:click', _.bind(me.onTOCMenu, me)); view.menuParaTOCSettings.on('click', _.bind(me.onParaTOCSettings, me)); + view.menuTableEquation.menu.on('item:click', _.bind(me.convertEquation, me)); + view.menuParagraphEquation.menu.on('item:click', _.bind(me.convertEquation, me)); + + me.onChangeProtectDocument(); }, getView: function (name) { @@ -583,7 +589,9 @@ define([ showObjectMenu: function(event, docElement, eOpts){ var me = this; if (me.api){ - var obj = (me.mode.isEdit && !me._isDisabled) ? me.fillMenuProps(me.api.getSelectedElements()) : me.fillViewMenuProps(me.api.getSelectedElements()); + var docProtection = me.documentHolder._docProtection; + var obj = (me.mode.isEdit && !(me._isDisabled || docProtection.isReadOnly || docProtection.isFormsOnly || docProtection.isCommentsOnly)) ? + me.fillMenuProps(me.api.getSelectedElements()) : me.fillViewMenuProps(me.api.getSelectedElements()); if (obj) me.showPopupMenu(obj.menu_to_show, obj.menu_props, event, docElement, eOpts); } }, @@ -610,7 +618,9 @@ define([ var me = this, currentMenu = me.documentHolder.currentMenu; if (currentMenu && currentMenu.isVisible() && currentMenu !== me.documentHolder.hdrMenu){ - var obj = (me.mode.isEdit && !me._isDisabled) ? me.fillMenuProps(selectedElements) : me.fillViewMenuProps(selectedElements); + var docProtection = me.documentHolder._docProtection; + var obj = (me.mode.isEdit && !(me._isDisabled || docProtection.isReadOnly || docProtection.isFormsOnly || docProtection.isCommentsOnly)) ? + me.fillMenuProps(selectedElements) : me.fillViewMenuProps(selectedElements); if (obj) { if (obj.menu_to_show===currentMenu) { currentMenu.options.initMenu(obj.menu_props); @@ -618,6 +628,25 @@ define([ } } } + + if (this.mode && this.mode.isEdit) { + var i = -1, + in_equation = false, + locked = false; + while (++i < selectedElements.length) { + var type = selectedElements[i].get_ObjectType(); + if (type === Asc.c_oAscTypeSelectElement.Math) { + in_equation = true; + } else if (type === Asc.c_oAscTypeSelectElement.Paragraph || type === Asc.c_oAscTypeSelectElement.Table || type === Asc.c_oAscTypeSelectElement.Header) { + var value = selectedElements[i].get_ObjectValue(); + value && (locked = locked || value.get_Locked()); + } + } + if (in_equation) { + this._state.equationLocked = locked; + this.disableEquationBar(); + } + } }, handleDocumentWheel: function(event) { @@ -689,6 +718,7 @@ define([ me.documentHolder.cmpEl.offset().top - $(window).scrollTop() ]; me._Height = me.documentHolder.cmpEl.height(); + me._Width = me.documentHolder.cmpEl.width(); me._BodyWidth = $('body').width(); }, @@ -822,7 +852,8 @@ define([ onDialogAddHyperlink: function() { var me = this; var win, props, text; - if (me.api && me.mode.isEdit && !me._isDisabled && !me.getApplication().getController('LeftMenu').leftMenu.menuFile.isVisible()){ + var docProtection = me.documentHolder._docProtection; + if (me.api && me.mode.isEdit && !(me._isDisabled || docProtection.isReadOnly || docProtection.isFormsOnly || docProtection.isCommentsOnly) && !me.getApplication().getController('LeftMenu').leftMenu.menuFile.isVisible()){ var handlerDlg = function(dlg, result) { if (result == 'ok') { props = dlg.getSettings(); @@ -951,6 +982,7 @@ define([ cmpEl.offset().top - $(window).scrollTop() ]; me._Height = cmpEl.height(); + me._Width = cmpEl.width(); me._BodyWidth = $('body').width(); } @@ -1178,7 +1210,8 @@ define([ }, onDoubleClickOnChart: function(chart) { - if (this.mode.isEdit && !this._isDisabled) { + var docProtection = this.documentHolder._docProtection; + if (this.mode.isEdit && !(this._isDisabled || docProtection.isReadOnly || docProtection.isFormsOnly || docProtection.isCommentsOnly)) { var diagramEditor = this.getApplication().getController('Common.Controllers.ExternalDiagramEditor').getView('Common.Views.ExternalDiagramEditor'); if (diagramEditor && chart) { diagramEditor.setEditMode(true); @@ -1189,7 +1222,8 @@ define([ }, onDoubleClickOnTableOleObject: function(chart) { - if (this.mode.isEdit && !this._isDisabled) { + var docProtection = this.documentHolder._docProtection; + if (this.mode.isEdit && !(this._isDisabled || docProtection.isReadOnly || docProtection.isFormsOnly || docProtection.isCommentsOnly)) { var oleEditor = this.getApplication().getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); if (oleEditor && chart) { oleEditor.setEditMode(true); @@ -1227,7 +1261,7 @@ define([ }, onChangeCropState: function(state) { - this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true); + this.documentHolder.menuImgCrop && this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true); }, onRulerDblClick: function(type) { @@ -1487,6 +1521,7 @@ define([ SetDisabled: function(state, canProtect, fillFormMode) { this._isDisabled = state; this.documentHolder.SetDisabled(state, canProtect, fillFormMode); + this.disableEquationBar(); }, onTextLanguage: function(langid) { @@ -1577,6 +1612,7 @@ define([ cmpEl.offset().top - $(window).scrollTop() ]; me._Height = cmpEl.height(); + me._Width = cmpEl.width(); me._BodyWidth = $('body').width(); me.onMouseMoveStart(); }, @@ -1893,7 +1929,8 @@ define([ this.api.asc_ViewCertificate(datavalue); //certificate id break; case 2: - Common.NotificationCenter.trigger('protect:signature', 'visible', this._isDisabled, datavalue);//guid, can edit settings for requested signature + var docProtection = this.documentHolder._docProtection; + Common.NotificationCenter.trigger('protect:signature', 'visible', this._isDisabled || docProtection.isReadOnly || docProtection.isFormsOnly || docProtection.isCommentsOnly, datavalue);//guid, can edit settings for requested signature break; case 3: var me = this; @@ -2295,6 +2332,173 @@ define([ return false; }, + onShowMathTrack: function(bounds) { + if (bounds[3] < 0) { + this.onHideMathTrack(); + return; + } + var me = this, + documentHolder = me.documentHolder, + eqContainer = documentHolder.cmpEl.find('#equation-container'); + + // Prepare menu container + if (eqContainer.length < 1) { + var equationsStore = me.getApplication().getCollection('EquationGroups'), + eqStr = '
'; + + me.getApplication().getController('Toolbar').onMathTypes(); + + me.equationBtns = []; + for (var i = 0; i < equationsStore.length; ++i) { + var style = 'margin-right: 8px;' + (i==0 ? 'margin-left: 5px;' : ''); + eqStr += ''; + } + eqStr += '
'; + eqStr += ''; + eqStr += '
'; + eqContainer = $(eqStr); + documentHolder.cmpEl.find('#id_main_view').append(eqContainer); + var onShowBefore = function (menu) { + var index = menu.options.value, + group = equationsStore.at(index); + var equationPicker = new Common.UI.DataViewSimple({ + el: $('#id-document-holder-btn-equation-menu-' + index, menu.cmpEl), + parentMenu: menu, + store: group.get('groupStore'), + scrollAlwaysVisible: true, + showLast: false, + restoreHeight: 450, + itemTemplate: _.template( + '
' + + '
' + + '
') + }); + equationPicker.on('item:click', function(picker, item, record, e) { + if (me.api) { + if (record) + me.api.asc_AddMath(record.get('data').equationType); + } + }); + menu.off('show:before', onShowBefore); + }; + var bringForward = function (menu) { + eqContainer.addClass('has-open-menu'); + }; + var sendBackward = function (menu) { + eqContainer.removeClass('has-open-menu'); + }; + for (var i = 0; i < equationsStore.length; ++i) { + var equationGroup = equationsStore.at(i); + var btn = new Common.UI.Button({ + parentEl: $('#id-document-holder-btn-equation-' + i, documentHolder.cmpEl), + cls : 'btn-toolbar no-caret', + iconCls : 'svgicon ' + equationGroup.get('groupIcon'), + hint : equationGroup.get('groupName'), + menu : new Common.UI.Menu({ + cls: 'menu-shapes', + value: i, + items: [ + { template: _.template('') } + ] + }) + }); + btn.menu.on('show:before', onShowBefore); + btn.menu.on('show:before', bringForward); + btn.menu.on('hide:after', sendBackward); + me.equationBtns.push(btn); + } + + me.equationSettingsBtn = new Common.UI.Button({ + parentEl: $('#id-document-holder-btn-equation-settings', documentHolder.cmpEl), + cls : 'btn-toolbar no-caret', + iconCls : 'toolbar__icon more-vertical', + hint : me.documentHolder.advancedEquationText, + menu : me.documentHolder.createEquationMenu('popuptbeqinput', 'tl-bl') + }); + me.equationSettingsBtn.menu.options.initMenu = function() { + var eq = me.api.asc_GetMathInputType(); + var menu = me.equationSettingsBtn.menu; + menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode); + menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX); + menu.items[8].setChecked(me.api.asc_IsInlineMath()); + }; + me.equationSettingsBtn.menu.on('item:click', _.bind(me.convertEquation, me)); + me.equationSettingsBtn.menu.on('show:before', function(menu) { + menu.options.initMenu(); + }); + } + + var showPoint = [(bounds[0] + bounds[2])/2 - eqContainer.outerWidth()/2, bounds[1] - eqContainer.outerHeight() - 10]; + if (!Common.Utils.InternalSettings.get("de-hidden-rulers")) { + showPoint = [showPoint[0] - 19, showPoint[1] - 26]; + } + if (showPoint[1]<0) { + showPoint[1] = bounds[3] + 10; + !Common.Utils.InternalSettings.get("de-hidden-rulers") && (showPoint[1] -= 26); + } + showPoint[1] = Math.min(me._Height - eqContainer.outerHeight(), Math.max(0, showPoint[1])); + eqContainer.css({left: showPoint[0], top : showPoint[1]}); + + var menuAlign = (me._Height - showPoint[1] - eqContainer.outerHeight() < 220) ? 'bl-tl' : 'tl-bl'; + me.equationBtns.forEach(function(item){ + item && (item.menu.menuAlign = menuAlign); + }); + me.equationSettingsBtn.menu.menuAlign = menuAlign; + if (eqContainer.is(':visible')) { + if (me.equationSettingsBtn.menu.isVisible()) { + me.equationSettingsBtn.menu.options.initMenu(); + me.equationSettingsBtn.menu.alignPosition(); + } + } else { + eqContainer.show(); + } + me.disableEquationBar(); + }, + + onHideMathTrack: function() { + var eqContainer = this.documentHolder.cmpEl.find('#equation-container'); + if (eqContainer.is(':visible')) { + eqContainer.hide(); + } + }, + + disableEquationBar: function() { + var eqContainer = this.documentHolder.cmpEl.find('#equation-container'), + docProtection = this.documentHolder._docProtection, + disabled = this._isDisabled || this._state.equationLocked || docProtection.isReadOnly || docProtection.isFormsOnly || docProtection.isCommentsOnly; + + if (eqContainer.length>0 && eqContainer.is(':visible')) { + this.equationBtns.forEach(function(item){ + item && item.setDisabled(!!disabled); + }); + this.equationSettingsBtn.setDisabled(!!disabled); + } + }, + + convertEquation: function(menu, item, e) { + if (this.api) { + if (item.options.type=='input') + this.api.asc_SetMathInputType(item.value); + else if (item.options.type=='view') + this.api.asc_ConvertMathView(item.value.linear, item.value.all); + else if (item.options.type=='mode') + this.api.asc_ConvertMathDisplayMode(item.checked); + } + }, + + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = this.getApplication().getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props && this.documentHolder) { + this.documentHolder._docProtection = props; + this.disableEquationBar(); + } + }, + editComplete: function() { this.documentHolder && this.documentHolder.fireEvent('editcomplete', this.documentHolder); } diff --git a/apps/documenteditor/main/app/controller/FormsTab.js b/apps/documenteditor/main/app/controller/FormsTab.js index 456c25627..0a6809912 100644 --- a/apps/documenteditor/main/app/controller/FormsTab.js +++ b/apps/documenteditor/main/app/controller/FormsTab.js @@ -76,6 +76,7 @@ define([ // this.api.asc_registerCallback('asc_onShowContentControlsActions',_.bind(this.onShowContentControlsActions, this)); // this.api.asc_registerCallback('asc_onHideContentControlsActions',_.bind(this.onHideContentControlsActions, this)); } + Common.NotificationCenter.on('protect:doclock', _.bind(this.onChangeProtectDocument, this)); return this; }, @@ -216,6 +217,13 @@ define([ Common.NotificationCenter.trigger('edit:complete', this.toolbar); }, + changeViewFormMode: function(state) { + if (this.view && (state !== this.view.btnViewForm.isActive())) { + this.view.btnViewForm.toggle(state, true); + this.onModeClick(state); + } + }, + onClearClick: function() { if (this.api) { this.api.asc_ClearAllSpecialForms(); @@ -316,7 +324,7 @@ define([ rightMenu: {clear: disable, disable: true}, statusBar: true, leftMenu: {disable: false, previewMode: true}, - fileMenu: false, + fileMenu: {info: true}, navigation: {disable: false, previewMode: true}, comments: {disable: false, previewMode: true}, chat: false, @@ -377,6 +385,7 @@ define([ me.view.btnHighlight.currentColor = clr; } config.isEdit && config.canFeatureContentControl && config.isFormCreator && me.showCreateFormTip(); // show tip only when create form in docxf + me.onChangeProtectDocument(); }); }, @@ -430,6 +439,23 @@ define([ if (tab !== 'forms') { this.tipSaveForm && this.tipSaveForm.close(); } + }, + + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = this.getApplication().getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props) { + this._state.docProtection = props; + if (this.view) { + var arr = this.view.getButtons(); + Common.Utils.lockControls(Common.enumLock.docLockView, props.isReadOnly, {array: arr}); + Common.Utils.lockControls(Common.enumLock.docLockForms, props.isFormsOnly, {array: arr}); + Common.Utils.lockControls(Common.enumLock.docLockReview, props.isReviewOnly, {array: arr}); + Common.Utils.lockControls(Common.enumLock.docLockComments, props.isCommentsOnly, {array: arr}); + } + } } }, DE.Controllers.FormsTab || {})); diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 41a64ae92..995a75f9d 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -100,7 +100,8 @@ define([ 'collaboration:chat': _.bind(this.onShowHideChat, this) }, 'ViewTab': { - 'viewtab:navigation': _.bind(this.onShowHideNavigation, this) + 'viewtab:navigation': _.bind(this.onShowHideNavigation, this), + 'leftmenu:hide': _.bind(this.onLeftMenuHide, this) }, 'SearchBar': { 'search:show': _.bind(this.onShowHideSearch, this) @@ -113,12 +114,21 @@ define([ if ( !this.leftMenu.panelHistory.isVisible() ) this.clickMenuFileItem(null, 'history'); }, this)); + Common.NotificationCenter.on('protect:doclock', _.bind(this.onChangeProtectDocument, this)); }, onLaunch: function() { this.leftMenu = this.createView('LeftMenu').render(); this.leftMenu.btnSearchBar.on('toggle', _.bind(this.onMenuSearchBar, this)); - + this._state = { + disableEditing: false, + docProtection: { + isReadOnly: false, + isReviewOnly: false, + isFormsOnly: false, + isCommentsOnly: false + } + }; Common.util.Shortcuts.delegateShortcuts({ shortcuts: { 'command+shift+s,ctrl+shift+s': _.bind(this.onShortcut, this, 'save'), @@ -208,14 +218,13 @@ define([ this.leftMenu.setOptionsPanel('navigation', this.getApplication().getController('Navigation').getView('Navigation')); if (this.mode.canUseThumbnails) { - this.leftMenu.btnThumbnails.show(); this.leftMenu.setOptionsPanel('thumbnails', this.getApplication().getController('PageThumbnails').getView('PageThumbnails')); } else { this.leftMenu.btnThumbnails.hide(); } (this.mode.trialMode || this.mode.isBeta) && this.leftMenu.setDeveloperMode(this.mode.trialMode, this.mode.isBeta, this.mode.buildVersion); - + this.onChangeProtectDocument(); Common.util.Shortcuts.resumeEvents(); return this; }, @@ -463,7 +472,7 @@ define([ Common.Utils.InternalSettings.set("de-settings-livecomment", value); var resolved = Common.localStorage.getBool("de-settings-resolvedcomment"); Common.Utils.InternalSettings.set("de-settings-resolvedcomment", resolved); - if (this.mode.canViewComments && this.leftMenu.panelComments.isVisible()) + if (this.mode.canViewComments && this.leftMenu.panelComments && this.leftMenu.panelComments.isVisible()) value = resolved = true; (value) ? this.api.asc_showComments(resolved) : this.api.asc_hideComments(); this.getApplication().getController('Common.Controllers.ReviewChanges').commentsShowHide(value ? 'show' : 'hide'); @@ -580,8 +589,14 @@ define([ }, setPreviewMode: function(mode) { - if (this.viewmode === mode) return; - this.viewmode = mode; + this._state.disableEditing = mode; + this.updatePreviewMode(); + }, + + updatePreviewMode: function() { + var viewmode = this._state.disableEditing || this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly; + if (this.viewmode === viewmode) return; + this.viewmode = viewmode; this.leftMenu.panelSearch && this.leftMenu.panelSearch.setSearchMode(this.viewmode ? 'no-replace' : 'search'); }, @@ -816,6 +831,7 @@ define([ onPluginOpen: function(panel, type, action) { if ( type == 'onboard' ) { if ( action == 'open' ) { + this.tryToShowLeftMenu(); this.leftMenu.close(); this.leftMenu.panelPlugins.show(); this.leftMenu.onBtnMenuClick({pressed:true, options: {action: 'plugins'}}); @@ -842,6 +858,7 @@ define([ if (this.mode.canCoAuthoring && this.mode.canChat && !this.mode.isLightVersion) { if (state) { Common.UI.Menu.Manager.hideAll(); + this.tryToShowLeftMenu(); this.leftMenu.showMenu('chat'); } else { this.leftMenu.btnChat.toggle(false, true); @@ -853,6 +870,7 @@ define([ onShowHideNavigation: function(state) { if (state) { Common.UI.Menu.Manager.hideAll(); + this.tryToShowLeftMenu(); this.leftMenu.showMenu('navigation'); } else { this.leftMenu.btnNavigation.toggle(false, true); @@ -886,6 +904,35 @@ define([ return this.leftMenu && this.leftMenu.panelComments && this.leftMenu.panelComments.isVisible(); }, + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = this.getApplication().getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props) { + this._state.docProtection = props; + this.updatePreviewMode(); + } + }, + + onLeftMenuHide: function (view, status) { + if (this.leftMenu) { + !status && this.leftMenu.close(); + status ? this.leftMenu.show() : this.leftMenu.hide(); + Common.localStorage.setBool('de-hidden-leftmenu', !status); + + !view && this.leftMenu.fireEvent('view:hide', [this, !status]); + } + + Common.NotificationCenter.trigger('layout:changed', 'main'); + Common.NotificationCenter.trigger('edit:complete', this.leftMenu); + }, + + tryToShowLeftMenu: function() { + if ((!this.mode.canBrandingExt || !this.mode.customization || this.mode.customization.leftMenu !== false) && Common.UI.LayoutManager.isElementVisible('leftMenu')) + this.onLeftMenuHide(null, true); + }, + textNoTextFound : 'Text not found', newDocumentTitle : 'Unnamed document', requestEditRightsText : 'Requesting editing rights...', diff --git a/apps/documenteditor/main/app/controller/Links.js b/apps/documenteditor/main/app/controller/Links.js index cd3577712..fb16e6a22 100644 --- a/apps/documenteditor/main/app/controller/Links.js +++ b/apps/documenteditor/main/app/controller/Links.js @@ -94,6 +94,7 @@ define([ Common.Gateway.on('setactionlink', function (url) { console.log('url with actions: ' + url); }.bind(this)); + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, setApi: function (api) { @@ -108,6 +109,7 @@ define([ this.api.asc_registerCallback('asc_onAscReplaceCurrentTOF',_.bind(this.onAscReplaceCurrentTOF, this)); this.api.asc_registerCallback('asc_onAscTOFUpdate',_.bind(this.onAscTOFUpdate, this)); } + Common.NotificationCenter.on('protect:doclock', _.bind(this.onChangeProtectDocument, this)); return this; }, @@ -203,7 +205,7 @@ define([ }, lockToolbar: function (causes, lock, opts) { - Common.Utils.lockControls(causes, lock, opts, this.view.getButtons()); + this.view && Common.Utils.lockControls(causes, lock, opts, this.view.getButtons()); }, onApiCanAddHyperlink: function(value) { @@ -570,6 +572,32 @@ define([ Common.NotificationCenter.trigger('edit:complete', me.toolbar); } })).show(); + }, + + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = this.getApplication().getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props) { + this._state.docProtection = props; + this.lockToolbar(Common.enumLock.docLockView, props.isReadOnly); + this.lockToolbar(Common.enumLock.docLockForms, props.isFormsOnly); + this.lockToolbar(Common.enumLock.docLockReview, props.isReviewOnly); + this.lockToolbar(Common.enumLock.docLockComments, props.isCommentsOnly); + } + }, + + onAppReady: function (config) { + var me = this; + (new Promise(function (accept, reject) { + accept(); + })).then(function(){ + if (me.view) { + me.view.onAppReady(config); + me.onChangeProtectDocument(); + } + }); } }, DE.Controllers.Links || {})); diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 99971b70b..f2dd0f5fa 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -380,6 +380,19 @@ define([ Common.Utils.InternalSettings.set("guest-username", value); Common.Utils.InternalSettings.set("save-guest-username", !!value); } + if (this.appOptions.customization.font) { + if (this.appOptions.customization.font.name && typeof this.appOptions.customization.font.name === 'string') { + var arr = this.appOptions.customization.font.name.split(','); + for (var i=0; iVerify that the CAPS LOCK key is off and be sure to use the correct capitalization.', confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.
Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).', textUndo: 'Undo', - textContinue: 'Continue' + textContinue: 'Continue', + errorInconsistentExtDocx: 'An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.', + errorInconsistentExtXlsx: 'An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPptx: 'An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPdf: 'An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.', + errorInconsistentExt: 'An error has occurred while opening the file.
The file content does not match the file extension.' } })(), DE.Controllers.Main || {})) }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/controller/PageLayout.js b/apps/documenteditor/main/app/controller/PageLayout.js index efac3b1f7..46dd5b769 100644 --- a/apps/documenteditor/main/app/controller/PageLayout.js +++ b/apps/documenteditor/main/app/controller/PageLayout.js @@ -57,7 +57,7 @@ define([ onLaunch: function (view) { this.toolbar = view; this.editMode = true; - + this._state = {}; return this; }, @@ -98,7 +98,6 @@ define([ this.api.asc_registerCallback('asc_onImgWrapStyleChanged', this.onApiWrappingStyleChanged.bind(this)); this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', this.onApiCoAuthoringDisconnect.bind(this)); this.api.asc_registerCallback('asc_onFocusObject', this.onApiFocusObject.bind(this)); - return this; }, diff --git a/apps/documenteditor/main/app/controller/RightMenu.js b/apps/documenteditor/main/app/controller/RightMenu.js index a9542d217..1261c0156 100644 --- a/apps/documenteditor/main/app/controller/RightMenu.js +++ b/apps/documenteditor/main/app/controller/RightMenu.js @@ -54,10 +54,20 @@ define([ initialize: function() { this.editMode = true; this._initSettings = true; - + this._state = { + docProtection: { + isReadOnly: false, + isReviewOnly: false, + isFormsOnly: false, + isCommentsOnly: false + } + }; this.addListeners({ 'RightMenu': { 'rightmenuclick': this.onRightMenuClick + }, + 'ViewTab': { + 'rightmenu:hide': _.bind(this.onRightMenuHide, this) } }); @@ -89,6 +99,7 @@ define([ setApi: function(api) { this.api = api; this.api.asc_registerCallback('asc_onUpdateSignatures', _.bind(this.onApiUpdateSignatures, this)); + Common.NotificationCenter.on('protect:doclock', _.bind(this.onChangeProtectDocument, this)); this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onCoAuthoringDisconnect, this)); Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this)); }, @@ -156,7 +167,9 @@ define([ this._settings[Common.Utils.documentSettingsType.Signature].locked = false; var isChart = false, - isSmartArtInternal = false; + isSmartArtInternal = false, + isProtected = this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly || this._state.docProtection.isCommentsOnly; + var control_props = this.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null, control_lock = false; for (i=0; i 0) + this.onFocusObject(selectedElements); + } + } + }, + + onRightMenuHide: function (view, status) { + if (this.rightmenu) { + !status && this.rightmenu.clearSelection(); + status ? this.rightmenu.show() : this.rightmenu.hide(); + Common.localStorage.setBool('de-hidden-rightmenu', !status); + } + + Common.NotificationCenter.trigger('layout:changed', 'main'); + Common.NotificationCenter.trigger('edit:complete', this.rightmenu); } }); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/controller/Search.js b/apps/documenteditor/main/app/controller/Search.js index 1de24a685..aa35b2b1b 100644 --- a/apps/documenteditor/main/app/controller/Search.js +++ b/apps/documenteditor/main/app/controller/Search.js @@ -118,6 +118,29 @@ define([ this.view : Backbone.Controller.prototype.getView.call(this, name); }, + checkPunctuation: function (text) { + if (!!text) { + var isPunctuation = false; + for (var l = 0; l < text.length; l++) { + var charCode = text.charCodeAt(l), + char = text.charAt(l); + if (AscCommon.g_aPunctuation[charCode] !== undefined || char.trim() === '') { + isPunctuation = true; + break; + } + } + if (isPunctuation) { + if (this._state.matchWord) { + this.view.chMatchWord.setValue(false, true); + this._state.matchWord = false; + } + this.view.chMatchWord.setDisabled(true); + } else if (this.view.chMatchWord.isDisabled()) { + this.view.chMatchWord.setDisabled(false); + } + } + }, + onChangeSearchOption: function (option, checked) { switch (option) { case 'case-sensitive': @@ -138,6 +161,7 @@ define([ onSearchNext: function (type, text, e) { var isReturnKey = type === 'keydown' && e.keyCode === Common.UI.Keys.RETURN; if (text && text.length > 0 && (isReturnKey || type !== 'keydown')) { + this.checkPunctuation(text); this._state.searchText = text; this.onQuerySearch(type, !(this.searchTimer || isReturnKey)); } @@ -152,6 +176,7 @@ define([ this.searchTimer = setInterval(function(){ if ((new Date()) - me._lastInputChange < 400) return; + me.checkPunctuation(me._state.newSearchText); me._state.searchText = me._state.newSearchText; if (!(me._state.newSearchText !== '' && me.onQuerySearch()) && me._state.newSearchText === '') { me.api.asc_endFindText(); @@ -372,6 +397,7 @@ define([ var selectedText = this.api.asc_GetSelectedText(), text = typeof findText === 'string' ? findText : (selectedText && selectedText.trim() || this._state.searchText); + this.checkPunctuation(text); if (this.resultItems && this.resultItems.length > 0 && (!this._state.matchCase && text && text.toLowerCase() === this.view.inputText.getValue().toLowerCase() || this._state.matchCase && text === this.view.inputText.getValue())) { // show old results diff --git a/apps/documenteditor/main/app/controller/Statusbar.js b/apps/documenteditor/main/app/controller/Statusbar.js index d751f39db..8f6629628 100644 --- a/apps/documenteditor/main/app/controller/Statusbar.js +++ b/apps/documenteditor/main/app/controller/Statusbar.js @@ -122,7 +122,6 @@ define([ me.statusbar.$el.find('.hide-select-tools').removeClass('hide-select-tools'); } }); - Common.NotificationCenter.on('app:ready', me.onAppReady.bind(me)); }, diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 6812ef505..77710f0bd 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -118,7 +118,9 @@ define([ 'change:compact' : this.onClickChangeCompact, 'home:open' : this.onHomeOpen, 'add:chart' : this.onSelectChart, - 'insert:textart' : this.onInsertTextart + 'insert:textart' : this.onInsertTextart, + 'generate:smartart' : this.generateSmartArt, + 'insert:smartart' : this.onInsertSmartArt }, 'FileMenu': { 'menu:hide': this.onFileMenu.bind(this, 'hide'), @@ -212,8 +214,10 @@ define([ if (this.toolbar.btnInsertShape.pressed) this.toolbar.btnInsertShape.toggle(false, true); - if (this.toolbar.btnInsertText.pressed) + if (this.toolbar.btnInsertText.pressed) { this.toolbar.btnInsertText.toggle(false, true); + this.toolbar.btnInsertText.menu.clearAll(); + } $(document.body).off('mouseup', checkInsertAutoshape); }; @@ -335,6 +339,7 @@ define([ toolbar.mnuInsertTable.on('show:after', _.bind(this.onInsertTableShow, this)); toolbar.mnuInsertImage.on('item:click', _.bind(this.onInsertImageClick, this)); toolbar.btnInsertText.on('click', _.bind(this.onBtnInsertTextClick, this)); + toolbar.btnInsertText.menu.on('item:click', _.bind(this.onMenuInsertTextClick, this)); toolbar.btnInsertShape.menu.on('hide:after', _.bind(this.onInsertShapeHide, this)); toolbar.btnDropCap.menu.on('item:click', _.bind(this.onDropCapSelect, this)); toolbar.btnContentControls.menu.on('item:click', _.bind(this.onControlsSelect, this)); @@ -425,11 +430,15 @@ define([ Common.NotificationCenter.on('storage:image-load', _.bind(this.openImageFromStorage, this)); Common.NotificationCenter.on('storage:image-insert', _.bind(this.insertImageFromStorage, this)); Common.NotificationCenter.on('dropcap:settings', _.bind(this.onDropCapAdvancedClick, this)); + this.api.asc_registerCallback('asc_onBeginSmartArtPreview', _.bind(this.onApiBeginSmartArtPreview, this)); + this.api.asc_registerCallback('asc_onAddSmartArtPreview', _.bind(this.onApiAddSmartArtPreview, this)); + this.api.asc_registerCallback('asc_onEndSmartArtPreview', _.bind(this.onApiEndSmartArtPreview, this)); } else if (this.mode.isRestrictedEdit) { this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onApiFocusObjectRestrictedEdit, this)); this.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(this.onApiCoAuthoringDisconnect, this)); Common.NotificationCenter.on('api:disconnect', _.bind(this.onApiCoAuthoringDisconnect, this)); } + Common.NotificationCenter.on('protect:doclock', _.bind(this.onChangeProtectDocument, this)); }, onChangeCompactView: function(view, compact) { @@ -833,7 +842,7 @@ define([ this.toolbar.lockToolbar(Common.enumLock.inSmartart, in_smart_art, {array: toolbar.textOnlyControls.concat([toolbar.btnClearStyle])}); this.toolbar.lockToolbar(Common.enumLock.inSmartartInternal, in_smart_art_internal, {array: toolbar.textOnlyControls.concat([toolbar.btnClearStyle, toolbar.btnDecLeftOffset, toolbar.btnIncLeftOffset])}); this.toolbar.lockToolbar(Common.enumLock.inEquation, in_equation, {array: toolbar.btnsPageBreak.concat([toolbar.btnDropCap, toolbar.btnInsertTable, toolbar.btnBlankPage, toolbar.btnInsertShape, - toolbar.btnInsertText, toolbar.btnInsertTextArt, toolbar.btnInsertImage, toolbar.btnSuperscript, toolbar.btnSubscript, toolbar.btnEditHeader])}); + toolbar.btnInsertText, toolbar.btnInsertTextArt, toolbar.btnInsertImage, toolbar.btnInsertSmartArt, toolbar.btnSuperscript, toolbar.btnSubscript, toolbar.btnEditHeader])}); in_control = this.api.asc_IsContentControl(); var control_props = in_control ? this.api.asc_GetContentControlProperties() : null, @@ -852,7 +861,7 @@ define([ } this.toolbar.lockToolbar(Common.enumLock.controlPlain, control_plain, {array: [toolbar.btnInsertTable, toolbar.btnInsertImage, toolbar.btnInsertChart, toolbar.btnInsertText, toolbar.btnInsertTextArt, - toolbar.btnInsertShape, toolbar.btnInsertEquation, toolbar.btnDropCap, toolbar.btnColumns, toolbar.mnuInsertPageNum ]}); + toolbar.btnInsertShape, toolbar.btnInsertSmartArt, toolbar.btnInsertEquation, toolbar.btnDropCap, toolbar.btnColumns, toolbar.mnuInsertPageNum ]}); if (enable_dropcap && frame_pr) { var value = frame_pr.get_FramePr(), drop_value = Asc.c_oAscDropCap.None; @@ -877,8 +886,8 @@ define([ this.toolbar.lockToolbar(Common.enumLock.inHeader, in_header, {array: toolbar.btnsPageBreak.concat([toolbar.btnBlankPage])}); this.toolbar.lockToolbar(Common.enumLock.inControl, in_control, {array: toolbar.btnsPageBreak.concat([toolbar.btnBlankPage])}); this.toolbar.lockToolbar(Common.enumLock.cantPageBreak, in_image && !btn_eq_state, {array: toolbar.btnsPageBreak.concat([toolbar.btnBlankPage])}); - this.toolbar.lockToolbar(Common.enumLock.contentLock, content_locked, {array: [toolbar.btnInsertShape, toolbar.btnInsertText, toolbar.btnInsertImage, toolbar.btnInsertTextArt, toolbar.btnInsertChart ]}); - this.toolbar.lockToolbar(Common.enumLock.inFootnote, in_footnote, {array: toolbar.btnsPageBreak.concat([toolbar.btnBlankPage, toolbar.btnInsertShape, toolbar.btnInsertText, toolbar.btnInsertTextArt ])}); + this.toolbar.lockToolbar(Common.enumLock.contentLock, content_locked, {array: [toolbar.btnInsertShape, toolbar.btnInsertText, toolbar.btnInsertImage, toolbar.btnInsertTextArt, toolbar.btnInsertChart, toolbar.btnInsertSmartArt ]}); + this.toolbar.lockToolbar(Common.enumLock.inFootnote, in_footnote, {array: toolbar.btnsPageBreak.concat([toolbar.btnBlankPage, toolbar.btnInsertShape, toolbar.btnInsertText, toolbar.btnInsertTextArt, toolbar.btnInsertSmartArt ])}); this.toolbar.lockToolbar(Common.enumLock.cantAddImagePara, in_para && !can_add_image, {array: [toolbar.btnInsertImage, toolbar.btnInsertTextArt]}); if (in_chart !== this._state.in_chart) { @@ -1649,8 +1658,35 @@ define([ }, onBtnInsertTextClick: function(btn, e) { + btn.menu.items.forEach(function(item) { + if(item.value == btn.options.textboxType) + item.setChecked(true); + }); + if(!this.toolbar.btnInsertText.pressed) { + this.toolbar.btnInsertText.menu.clearAll(); + } + this.onInsertText(btn.options.textboxType, btn, e); + }, + + onMenuInsertTextClick: function(btn, e) { + var oldType = this.toolbar.btnInsertText.options.textboxType; + var newType = e.value; + this.toolbar.btnInsertText.toggle(true); + + if(newType != oldType){ + this.toolbar.btnInsertText.changeIcon({ + next: e.options.iconClsForMainBtn, + curr: this.toolbar.btnInsertText.menu.items.filter(function(item){return item.value == oldType})[0].options.iconClsForMainBtn + }); + this.toolbar.btnInsertText.updateHint([e.caption, this.views.Toolbar.prototype.tipInsertText]); + this.toolbar.btnInsertText.options.textboxType = newType; + } + this.onInsertText(newType, btn, e); + }, + + onInsertText: function(type, btn, e) { if (this.api) - this._addAutoshape(btn.pressed, 'textRect'); + this._addAutoshape(this.toolbar.btnInsertText.pressed, type); if (this.toolbar.btnInsertShape.pressed) this.toolbar.btnInsertShape.toggle(false, true); @@ -2740,7 +2776,7 @@ define([ items: [ { template: _.template('') } + equationGroup.get('groupHeightStr') + 'margin-left:5px;">
') } ] }) }); @@ -2791,16 +2827,21 @@ define([ var me = this; var onShowBefore = function(menu) { me.onMathTypes(me._equationTemp); + if (me._equationTemp && me._equationTemp.get_Data().length>0) + me.fillEquations(); me.toolbar.btnInsertEquation.menu.off('show:before', onShowBefore); }; me.toolbar.btnInsertEquation.menu.on('show:before', onShowBefore); }, onMathTypes: function(equation) { + equation = equation || this._equationTemp; + var equationgrouparray = [], equationsStore = this.getCollection('EquationGroups'); - equationsStore.reset(); + if (equationsStore.length>0) + return; // equations groups @@ -2808,18 +2849,18 @@ define([ // [translate, count cells, scroll] - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Symbol ] = [this.textSymbols, 11]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Fraction ] = [this.textFraction, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Script ] = [this.textScript, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Radical ] = [this.textRadical, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Integral ] = [this.textIntegral, 3, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LargeOperator] = [this.textLargeOperator, 5, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Bracket ] = [this.textBracket, 4, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Function ] = [this.textFunction, 3, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Accent ] = [this.textAccent, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LimitLog ] = [this.textLimitAndLog, 3]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Operator ] = [this.textOperator, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Matrix ] = [this.textMatrix, 4, true]; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Symbol ] = [this.textSymbols, 11, false, 'svg-icon-symbols']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Fraction ] = [this.textFraction, 4, false, 'svg-icon-fraction']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Script ] = [this.textScript, 4, false, 'svg-icon-script']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Radical ] = [this.textRadical, 4, false, 'svg-icon-radical']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Integral ] = [this.textIntegral, 3, true, 'svg-icon-integral']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LargeOperator] = [this.textLargeOperator, 5, true, 'svg-icon-largeOperator']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Bracket ] = [this.textBracket, 4, true, 'svg-icon-bracket']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Function ] = [this.textFunction, 3, true, 'svg-icon-function']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Accent ] = [this.textAccent, 4, false, 'svg-icon-accent']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LimitLog ] = [this.textLimitAndLog, 3, false, 'svg-icon-limAndLog']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Operator ] = [this.textOperator, 4, false, 'svg-icon-operator']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Matrix ] = [this.textMatrix, 4, true, 'svg-icon-matrix']; // equations sub groups @@ -2889,12 +2930,14 @@ define([ groupName : c_oAscMathMainTypeStrings[id][0], groupStore : store, groupWidth : width, - groupHeight : c_oAscMathMainTypeStrings[id][2] ? ' height:'+ normHeight +'px!important; ' : '' + groupHeight : normHeight, + groupHeightStr : c_oAscMathMainTypeStrings[id][2] ? ' height:'+ normHeight +'px!important; ' : '', + groupIcon: c_oAscMathMainTypeStrings[id][3] }); } } equationsStore.add(equationgrouparray); - this.fillEquations(); + // this.fillEquations(); } } }, @@ -3161,6 +3204,7 @@ define([ createDelayedElements: function() { this.toolbar.createDelayedElements(); this.attachUIEvents(this.toolbar); + this.onChangeProtectDocument(); }, onAppShowed: function (config) { @@ -3203,13 +3247,24 @@ define([ me.toolbar.processPanelVisible(null, true, true); } - if ( config.isDesktopApp ) { - if ( config.canProtect ) { - tab = {action: 'protect', caption: me.toolbar.textTabProtect, dataHintTitle: 'T', layoutname: 'toolbar-protect'}; - $panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel(); + // if ( config.isDesktopApp ) { + // if ( config.canProtect ) { + // tab = {action: 'protect', caption: me.toolbar.textTabProtect, dataHintTitle: 'T', layoutname: 'toolbar-protect'}; + // $panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel(); + // + // if ($panel) me.toolbar.addTab(tab, $panel, 6); + // } + // } - if ($panel) me.toolbar.addTab(tab, $panel, 6); - } + tab = {action: 'protect', caption: me.toolbar.textTabProtect, layoutname: 'toolbar-protect', dataHintTitle: 'T'}; + $panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel(); + if ($panel) { + config.canProtect && $panel.append($('
')); + var doctab = me.getApplication().getController('DocProtection'); + $panel.append(doctab.createToolbarPanel()); + me.toolbar.addTab(tab, $panel, 6); + me.toolbar.setVisible('protect', Common.UI.LayoutManager.isElementVisible('toolbar-protect')); + Array.prototype.push.apply(me.toolbar.lockControls, doctab.getView('DocProtection').getButtons()); } var links = me.getApplication().getController('Links'); @@ -3252,7 +3307,7 @@ define([ this.btnsComment = Common.Utils.injectButtons(this.toolbar.$el.find('.slot-comment'), 'tlbtn-addcomment-', 'toolbar__icon btn-menu-comments', this.toolbar.capBtnComment, [ Common.enumLock.paragraphLock, Common.enumLock.headerLock, Common.enumLock.richEditLock, Common.enumLock.plainEditLock, Common.enumLock.richDelLock, Common.enumLock.plainDelLock, Common.enumLock.cantAddQuotedComment, Common.enumLock.imageLock, Common.enumLock.inSpecificForm, Common.enumLock.inImage, Common.enumLock.lostConnect, Common.enumLock.disableOnStart, - Common.enumLock.previewReviewMode, Common.enumLock.viewFormMode ], + Common.enumLock.previewReviewMode, Common.enumLock.viewFormMode, Common.enumLock.docLockView, Common.enumLock.docLockForms ], undefined, undefined, undefined, '1', 'bottom'); if ( this.btnsComment.length ) { var _comments = DE.getController('Common.Controllers.Comments').getView(); @@ -3320,6 +3375,65 @@ define([ })).show(); }, + generateSmartArt: function (groupName) { + this.api.asc_generateSmartArtPreviews(groupName); + }, + + onApiBeginSmartArtPreview: function () { + this.smartArtGroups = this.toolbar.btnInsertSmartArt.menu.items; + this.smartArtData = Common.define.smartArt.getSmartArtData(); + }, + + onApiAddSmartArtPreview: function (previews) { + previews.forEach(_.bind(function (preview) { + var image = preview.asc_getImage(), + sectionId = preview.asc_getSectionId(), + section = _.findWhere(this.smartArtData, {sectionId: sectionId}), + item = _.findWhere(section.items, {type: image.asc_getName()}), + menu = _.findWhere(this.smartArtGroups, {value: sectionId}), + menuPicker = menu.menuPicker; + if (item) { + var arr = [{ + tip: item.tip, + value: item.type, + imageUrl: image.asc_getImage() + }]; + if (menuPicker.store.length < 1) { + menuPicker.store.reset(arr); + } else { + menuPicker.store.add(arr); + } + } + this.currentSmartArtMenu = menu; + }, this)); + }, + + onApiEndSmartArtPreview: function () { + if (this.currentSmartArtMenu) { + this.currentSmartArtMenu.menu.alignPosition(); + } + }, + + onInsertSmartArt: function (value) { + if (this.api) { + this.api.asc_createSmartArt(value); + } + }, + + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = this.getApplication().getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props) { + this._state.docProtection = props; + this.toolbar.lockToolbar(Common.enumLock.docLockView, props.isReadOnly); + this.toolbar.lockToolbar(Common.enumLock.docLockForms, props.isFormsOnly); + this.toolbar.lockToolbar(Common.enumLock.docLockReview, props.isReviewOnly); + this.toolbar.lockToolbar(Common.enumLock.docLockComments, props.isCommentsOnly); + } + }, + textEmptyImgUrl : 'You need to specify image URL.', textWarning : 'Warning', textFontSizeErr : 'The entered value is incorrect.
Please enter a numeric value between 1 and 300', diff --git a/apps/documenteditor/main/app/controller/ViewTab.js b/apps/documenteditor/main/app/controller/ViewTab.js index 2c83c6d2e..2b9958fc2 100644 --- a/apps/documenteditor/main/app/controller/ViewTab.js +++ b/apps/documenteditor/main/app/controller/ViewTab.js @@ -98,6 +98,11 @@ define([ 'view:hide': _.bind(function (statusbar, state) { this.view.chStatusbar.setValue(!state, true); }, this) + }, + 'LeftMenu': { + 'view:hide': _.bind(function (leftmenu, state) { + this.view.chLeftMenu.setValue(!state, true); + }, this) } }); }, @@ -131,18 +136,35 @@ define([ me.view.btnInterfaceTheme.$el.closest('.group').remove(); me.view.$el.find('.separator-theme').remove(); } + var emptyGroup = []; if (config.canBrandingExt && config.customization && config.customization.statusBar === false || !Common.UI.LayoutManager.isElementVisible('statusBar')) { + emptyGroup.push(me.view.chStatusbar.$el.closest('.elset')); me.view.chStatusbar.$el.remove(); - var slotChkRulers = me.view.chRulers.$el, - groupRulers = slotChkRulers.closest('.group'), - groupToolbar = me.view.chToolbar.$el.closest('.group'); - groupToolbar.find('.elset')[1].append(slotChkRulers[0]); - groupRulers.remove(); - me.view.$el.find('.separator-rulers').remove(); } - if (!config.isEdit) { // if view tab will be visible in view/restricted-editing mode - me.view.chRulers.hide(); + if (config.canBrandingExt && config.customization && config.customization.leftMenu === false || !Common.UI.LayoutManager.isElementVisible('leftMenu')) { + emptyGroup.push(me.view.chLeftMenu.$el.closest('.elset')); + me.view.chLeftMenu.$el.remove(); + } else if (emptyGroup.length>0) { + emptyGroup.push(me.view.chLeftMenu.$el.closest('.elset')); + emptyGroup.shift().append(me.view.chLeftMenu.$el[0]); + } + + if (!config.isEdit || config.canBrandingExt && config.customization && config.customization.rightMenu === false || !Common.UI.LayoutManager.isElementVisible('rightMenu')) { + emptyGroup.push(me.view.chRightMenu.$el.closest('.elset')); + me.view.chRightMenu.$el.remove(); + } else if (emptyGroup.length>0) { + emptyGroup.push(me.view.chRightMenu.$el.closest('.elset')); + emptyGroup.shift().append(me.view.chRightMenu.$el[0]); + } + + if (emptyGroup.length>1) { // remove empty group + emptyGroup[emptyGroup.length-1].closest('.group').remove(); + } + + if (!config.isEdit) { + me.view.chRulers.$el.closest('.group').remove(); + me.view.chRulers.$el.remove(); me.view.$el.find('.separator-rulers').remove(); } diff --git a/apps/documenteditor/main/app/template/ChartSettings.template b/apps/documenteditor/main/app/template/ChartSettings.template index 751395f99..6cd8a6740 100644 --- a/apps/documenteditor/main/app/template/ChartSettings.template +++ b/apps/documenteditor/main/app/template/ChartSettings.template @@ -57,6 +57,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+ +
+
+ +
+', '', '', + '', + '', + '', + '', '', '', '', @@ -1297,7 +1302,16 @@ define([ this.menu = options.menu; this.coreProps = null; this.authors = []; - this._locked = false; + this._state = { + _locked: false, + docProtection: { + isReadOnly: false, + isReviewOnly: false, + isFormsOnly: false, + isCommentsOnly: false + }, + disableEditing: false + }; }, render: function(node) { @@ -1339,6 +1353,15 @@ define([ dataHintDirection: 'left', dataHintOffset: 'small' }).on('keydown:before', keyDownBefore); + this.inputTags = new Common.UI.InputField({ + el : $markup.findById('#id-info-tags'), + style : 'width: 200px;', + placeHolder : this.txtAddText, + validateOnBlur: false, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' + }).on('keydown:before', keyDownBefore); this.inputSubject = new Common.UI.InputField({ el : $markup.findById('#id-info-subject'), style : 'width: 200px;', @@ -1556,6 +1579,8 @@ define([ value = props.asc_getTitle(); this.inputTitle.setValue(value || ''); + value = props.asc_getKeywords(); + this.inputTags.setValue(value || ''); value = props.asc_getSubject(); this.inputSubject.setValue(value || ''); value = props.asc_getDescription(); @@ -1571,7 +1596,7 @@ define([ me.authors.push(item); }); this.tblAuthor.find('.close').toggleClass('hidden', !this.mode.isEdit); - !this.mode.isEdit && this._ShowHideInfoItem(this.tblAuthor, !!this.authors.length); + this._ShowHideInfoItem(this.tblAuthor, this.mode.isEdit || !!this.authors.length); } this.SetDisabled(); }, @@ -1699,6 +1724,8 @@ define([ this.api.asc_registerCallback('asc_onGetDocInfoEnd', _.bind(this._onGetDocInfoEnd, this)); // this.api.asc_registerCallback('asc_onDocumentName', _.bind(this.onDocumentName, this)); this.api.asc_registerCallback('asc_onLockCore', _.bind(this.onLockCore, this)); + Common.NotificationCenter.on('protect:doclock', _.bind(this.onChangeProtectDocument, this)); + this.onChangeProtectDocument(); this.updateInfo(this.doc); return this; }, @@ -1708,16 +1735,19 @@ define([ this.inputAuthor.setVisible(mode.isEdit); this.pnlApply.toggleClass('hidden', !mode.isEdit); this.tblAuthor.find('.close').toggleClass('hidden', !mode.isEdit); - if (!mode.isEdit) { - this.inputTitle._input.attr('placeholder', ''); - this.inputSubject._input.attr('placeholder', ''); - this.inputComment._input.attr('placeholder', ''); - this.inputAuthor._input.attr('placeholder', ''); - } + this.inputTitle._input.attr('placeholder', mode.isEdit ? this.txtAddText : ''); + this.inputTags._input.attr('placeholder', mode.isEdit ? this.txtAddText : ''); + this.inputSubject._input.attr('placeholder', mode.isEdit ? this.txtAddText : ''); + this.inputComment._input.attr('placeholder', mode.isEdit ? this.txtAddText : ''); + this.inputAuthor._input.attr('placeholder', mode.isEdit ? this.txtAddAuthor : ''); this.SetDisabled(); return this; }, + setPreviewMode: function(mode) { + this._state.disableEditing = mode; + }, + _onGetDocInfoStart: function() { var me = this; this.infoObj = {PageCount: 0, WordsCount: 0, ParagraphCount: 0, SymbolsCount: 0, SymbolsWSCount:0}; @@ -1773,24 +1803,37 @@ define([ }, onLockCore: function(lock) { - this._locked = lock; + this._state._locked = lock; this.updateFileInfo(); }, + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = DE.getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props) { + this._state.docProtection = props; + } + }, + SetDisabled: function() { - var disable = !this.mode.isEdit || this._locked; + var isProtected = this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly || this._state.docProtection.isCommentsOnly; + var disable = !this.mode.isEdit || this._state._locked || isProtected || this._state.disableEditing; this.inputTitle.setDisabled(disable); + this.inputTags.setDisabled(disable); this.inputSubject.setDisabled(disable); this.inputComment.setDisabled(disable); this.inputAuthor.setDisabled(disable); - this.tblAuthor.find('.close').toggleClass('disabled', this._locked); + this.tblAuthor.find('.close').toggleClass('disabled', this._state._locked); this.tblAuthor.toggleClass('disabled', disable); - this.btnApply.setDisabled(this._locked); + this.btnApply.setDisabled(this._state._locked); }, applySettings: function() { if (this.coreProps && this.api) { this.coreProps.asc_putTitle(this.inputTitle.getValue()); + this.coreProps.asc_putKeywords(this.inputTags.getValue()); this.coreProps.asc_putSubject(this.inputSubject.getValue()); this.coreProps.asc_putDescription(this.inputComment.getValue()); this.coreProps.asc_putCreator(this.authors.join(';')); @@ -1811,6 +1854,7 @@ define([ txtAppName: 'Application', txtEditTime: 'Total Editing time', txtTitle: 'Title', + txtTags: 'Tags', txtSubject: 'Subject', txtComment: 'Comment', txtModifyDate: 'Last Modified', @@ -1975,7 +2019,14 @@ define([ this.menu = options.menu; this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; this.openUrl = null; - this.urlHelpCenter = '{{HELP_CENTER_WEB_DE}}'; + + if ( !Common.Utils.isIE ) { + if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_DE}}') ) { + const _url_obj = new URL('{{HELP_CENTER_WEB_DE}}'); + _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); + this.urlHelpCenter = _url_obj.toString(); + } + } this.en_data = [ {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Document Editor user interface", "headername": "Program Interface"}, diff --git a/apps/documenteditor/main/app/view/FormsTab.js b/apps/documenteditor/main/app/view/FormsTab.js index 10524186c..83a9a10ed 100644 --- a/apps/documenteditor/main/app/view/FormsTab.js +++ b/apps/documenteditor/main/app/view/FormsTab.js @@ -169,7 +169,7 @@ define([ this.btnTextField = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-text-field', - lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnText, dataHint: '1', dataHintDirection: 'bottom', @@ -180,7 +180,7 @@ define([ this.btnComboBox = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-combo-box', - lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnComboBox, dataHint: '1', dataHintDirection: 'bottom', @@ -191,7 +191,7 @@ define([ this.btnDropDown = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-dropdown', - lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnDropDown, dataHint: '1', dataHintDirection: 'bottom', @@ -202,7 +202,7 @@ define([ this.btnCheckBox = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-checkbox', - lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnCheckBox, dataHint: '1', dataHintDirection: 'bottom', @@ -213,7 +213,7 @@ define([ this.btnRadioBox = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-radio-button', - lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnRadioBox, dataHint: '1', dataHintDirection: 'bottom', @@ -224,7 +224,7 @@ define([ this.btnImageField = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-insertimage', - lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.complexForm, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.complexForm, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnImage, dataHint: '1', dataHintDirection: 'bottom', @@ -235,7 +235,7 @@ define([ this.btnEmailField = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-email', - lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnEmail, dataHint: '1', dataHintDirection: 'bottom', @@ -246,7 +246,7 @@ define([ this.btnPhoneField = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-phone', - lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnPhone, dataHint: '1', dataHintDirection: 'bottom', @@ -257,7 +257,7 @@ define([ this.btnComplexField = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon complex-field', - lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.complexForm, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.contentLock, _set.complexForm, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnComplex, dataHint: '1', dataHintDirection: 'bottom', @@ -268,7 +268,7 @@ define([ this.btnViewForm = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-sheet-view', - lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart], + lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnView, enableToggle: true, dataHint: '1', @@ -280,7 +280,7 @@ define([ this.btnClearFields = new Common.UI.Button({ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-clearstyle', - lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart], + lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockComments], caption : this.textClearFields, dataHint : '1', dataHintDirection: 'left', @@ -291,7 +291,7 @@ define([ this.btnHighlight = new Common.UI.ButtonColored({ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-highlight', - lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption : this.textHighlight, menu : true, additionalItems: [ this.mnuNoFormsColor = new Common.UI.MenuItem({ @@ -316,7 +316,7 @@ define([ this.btnPrevForm = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon previous-field', - lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart], + lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockComments], caption: this.capBtnPrev, // disabled: this.appConfig.isEdit && this.appConfig.canFeatureContentControl && this.appConfig.canFeatureForms, // disable only for edit mode dataHint: '1', @@ -328,7 +328,7 @@ define([ this.btnNextForm = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon next-field', - lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart], + lock: [ _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockComments], caption: this.capBtnNext, // disabled: this.appConfig.isEdit && this.appConfig.canFeatureContentControl && this.appConfig.canFeatureForms, // disable only for edit mode, dataHint: '1', @@ -355,7 +355,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', lock: [_set.lostConnect, _set.disableOnStart], iconCls: 'toolbar__icon save-form', - caption: this.appConfig.canRequestSaveAs || !!this.appConfig.saveAsUrl ? this.capBtnSaveForm : this.capBtnDownloadForm, + caption: this.appConfig.canRequestSaveAs || !!this.appConfig.saveAsUrl || this.appConfig.isOffline ? this.capBtnSaveForm : this.capBtnDownloadForm, // disabled: this.appConfig.isEdit && this.appConfig.canFeatureContentControl && this.appConfig.canFeatureForms, // disable only for edit mode, dataHint: '1', dataHintDirection: 'bottom', diff --git a/apps/documenteditor/main/app/view/LeftMenu.js b/apps/documenteditor/main/app/view/LeftMenu.js index 55f2eb040..2595719d3 100644 --- a/apps/documenteditor/main/app/view/LeftMenu.js +++ b/apps/documenteditor/main/app/view/LeftMenu.js @@ -202,7 +202,8 @@ define([ this.$el.width(parseInt(Common.localStorage.getItem('de-mainmenu-width')) || MENU_SCALE_PART); } } else if (!this._state.pluginIsRunning) { - this.isVisible() && Common.localStorage.setItem('de-mainmenu-width',this.$el.width()); + var width = this.$el.width(); + this.isVisible() && (width>SCALE_MIN) && Common.localStorage.setItem('de-mainmenu-width', width); this.$el.width(SCALE_MIN); } @@ -327,7 +328,7 @@ define([ } if (this.panelNavigation) { this.panelNavigation['hide'](); - this.btnNavigation.toggle(false, true); + this.btnNavigation.toggle(false); } if (this.panelSearch) { this.panelSearch['hide'](); @@ -414,6 +415,7 @@ define([ setMode: function(mode) { this.mode = mode; this.btnAbout.panel.setMode(mode); + mode.canUseThumbnails && this.btnThumbnails.show(); return this; }, diff --git a/apps/documenteditor/main/app/view/Links.js b/apps/documenteditor/main/app/view/Links.js index 8ea79d0eb..4f5de8e50 100644 --- a/apps/documenteditor/main/app/view/Links.js +++ b/apps/documenteditor/main/app/view/Links.js @@ -169,13 +169,13 @@ define([ $host = me.toolbar.$el; this.btnsContents = Common.Utils.injectButtons($host.find('.btn-slot.btn-contents'), '', 'toolbar__icon btn-contents', me.capBtnInsContents, - [_set.inHeader, _set.richEditLock, _set.plainEditLock, _set.richDelLock, _set.plainDelLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + [_set.inHeader, _set.richEditLock, _set.plainEditLock, _set.richDelLock, _set.plainDelLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], true, true, undefined, '1', 'bottom', 'small'); this.btnsNotes = Common.Utils.injectButtons($host.find('.btn-slot.slot-notes'), '', 'toolbar__icon btn-notes', me.capBtnInsFootnote, - [_set.paragraphLock, _set.inEquation, _set.inImage, _set.inHeader, _set.controlPlain, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + [_set.paragraphLock, _set.inEquation, _set.inImage, _set.inHeader, _set.controlPlain, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], true, true, undefined, '1', 'bottom', 'small'); this.btnsHyperlink = Common.Utils.injectButtons($host.find('.btn-slot.slot-inshyperlink'), '', 'toolbar__icon btn-inserthyperlink', me.capBtnInsLink, - [_set.paragraphLock, _set.headerLock, _set.hyperlinkLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + [_set.paragraphLock, _set.headerLock, _set.hyperlinkLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], undefined, undefined, undefined, '1', 'bottom', 'small'); Array.prototype.push.apply(this.paragraphControls, this.btnsContents.concat(this.btnsNotes, this.btnsHyperlink)); @@ -183,7 +183,7 @@ define([ parentEl: $host.find('#slot-btn-contents-update'), cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-update', - lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockForms, _set.docLockComments], caption: this.capBtnContentsUpdate, split: true, menu: true, @@ -197,7 +197,7 @@ define([ 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], + lock: [ _set.cantAddTextTOF, _set.inHeader, _set.inFootnote, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnAddText, menu: new Common.UI.Menu({ items: [] @@ -212,7 +212,7 @@ define([ parentEl: $host.find('#slot-btn-bookmarks'), cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-bookmarks', - lock: [_set.paragraphLock, _set.inHeader, _set.headerLock, _set.controlPlain, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.inHeader, _set.headerLock, _set.controlPlain, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnBookmarks, dataHint: '1', dataHintDirection: 'bottom', @@ -224,7 +224,7 @@ define([ parentEl: $host.find('#slot-btn-caption'), cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-caption', - lock: [_set.inHeader, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.inHeader, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnCaption, dataHint: '1', dataHintDirection: 'bottom', @@ -236,7 +236,7 @@ define([ parentEl: $host.find('#slot-btn-crossref'), cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-cross-reference', - lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.richEditLock, _set.plainEditLock, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.controlPlain, _set.richEditLock, _set.plainEditLock, _set.contentLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnCrossRef, dataHint: '1', dataHintDirection: 'bottom', @@ -248,7 +248,7 @@ define([ parentEl: $host.find('#slot-btn-tof'), cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-contents', - lock: [_set.inHeader, _set.richEditLock, _set.plainEditLock, _set.richDelLock, _set.plainDelLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.inHeader, _set.richEditLock, _set.plainEditLock, _set.richDelLock, _set.plainDelLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnTOF, dataHint: '1', dataHintDirection: 'left', @@ -260,7 +260,7 @@ define([ parentEl: $host.find('#slot-btn-tof-update'), cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-update', - lock: [_set.paragraphLock, _set.inHeader, _set.richEditLock, _set.plainEditLock, _set.richDelLock, _set.plainDelLock, _set.cantUpdateTOF, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.inHeader, _set.richEditLock, _set.plainEditLock, _set.richDelLock, _set.plainDelLock, _set.cantUpdateTOF, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: this.capBtnContentsUpdate, dataHint: '1', dataHintDirection: 'left', @@ -269,7 +269,6 @@ define([ this.paragraphControls.push(this.btnTableFiguresUpdate); Common.Utils.lockControls(Common.enumLock.disableOnStart, true, {array: this.paragraphControls}); this._state = {disabled: false}; - Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, render: function (el) { diff --git a/apps/documenteditor/main/app/view/ProtectDialog.js b/apps/documenteditor/main/app/view/ProtectDialog.js new file mode 100644 index 000000000..8c41dccea --- /dev/null +++ b/apps/documenteditor/main/app/view/ProtectDialog.js @@ -0,0 +1,225 @@ +/* + * + * (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 + * + */ +/** + * ProtectDialog.js + * + * Created by Julia Radzhabova on 21.09.2022 + * Copyright (c) 2022 Ascensio System SIA. All rights reserved. + * + */ + +define([ + 'common/main/lib/component/Window' +], function () { + 'use strict'; + + DE.Views.ProtectDialog = Common.UI.Window.extend(_.extend({ + + initialize : function (options) { + var t = this, + _options = {}; + + _.extend(_options, { + title: options.title ? options.title : this.txtTitle, + cls: 'modal-dlg', + width: 350, + height: 'auto', + buttons: options.buttons ? options.buttons : [{ + value: 'ok', + caption: this.txtProtect + }, 'cancel'] + }, options); + + this.handler = options.handler; + this.props = options.props; + + this.template = options.template || [ + '
', + '
', + '', + '
', + '
', + '
', + '', + '
', + '
', + '
', + '', + '
', + '
', + '
', + '
', + '
', + '', + '
' + ].join(''); + + _options.tpl = _.template(this.template)(_options); + + Common.UI.Window.prototype.initialize.call(this, _options); + }, + render: function () { + Common.UI.Window.prototype.render.call(this); + + var me = this; + this.$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); + + this.repeatPwd = new Common.UI.InputField({ + el: this.$window.find('#id-protect-repeat-txt'), + type: 'password', + allowBlank : true, + style : 'width: 100%;', + maxLength: 15, + validateOnBlur: false, + validation : function(value) { + return me.txtIncorrectPwd; + } + }); + + this.inputPwd = new Common.UI.InputFieldBtnPassword({ + el: this.$window.find('#id-protect-password-txt'), + type: 'password', + allowBlank : true, + style : 'width: 100%;', + maxLength: 15, + validateOnBlur: false, + repeatInput: this.repeatPwd, + showPwdOnClick: true + }); + + this.rbView = new Common.UI.RadioBox({ + el: this.$window.find('#id-protect-radio-view'), + labelText: this.textView, + name: 'asc-radio-protect-mode', + value: Asc.c_oAscEDocProtect.ReadOnly, + checked: true + }); + + this.rbForms = new Common.UI.RadioBox({ + el: this.$window.find('#id-protect-radio-forms'), + labelText: this.textForms, + name: 'asc-radio-protect-mode', + value: Asc.c_oAscEDocProtect.Forms + }); + + this.rbReview = new Common.UI.RadioBox({ + el: this.$window.find('#id-protect-radio-review'), + labelText: this.textReview, + name: 'asc-radio-protect-mode', + value: Asc.c_oAscEDocProtect.TrackedChanges + }); + + this.rbComments = new Common.UI.RadioBox({ + el: this.$window.find('#id-protect-radio-comment'), + labelText: this.textComments, + name: 'asc-radio-protect-mode', + value: Asc.c_oAscEDocProtect.Comments + }); + + this.afterRender(); + }, + + getFocusedComponents: function() { + return [this.inputPwd, this.repeatPwd, this.rbView, this.rbForms, this.rbReview, this.rbComments]; + }, + + getDefaultFocusableComponent: function () { + return this.inputPwd; + }, + + afterRender: function() { + this._setDefaults(this.props); + }, + + onPrimary: function(event) { + this._handleInput('ok'); + return false; + }, + + onBtnClick: function(event) { + this._handleInput(event.currentTarget.attributes['result'].value); + }, + + _handleInput: function(state) { + if (this.handler) { + if (state == 'ok') { + if (this.inputPwd.checkValidate() !== true) { + this.inputPwd.focus(); + return; + } + if (this.inputPwd.getValue() !== this.repeatPwd.getValue()) { + this.repeatPwd.checkValidate(); + this.repeatPwd.focus(); + return; + } + } + this.handler.call(this, state, this.inputPwd.getValue(), (state == 'ok') ? this.getSettings() : undefined); + } + + this.close(); + }, + + _setDefaults: function (props) { + if (props) { + this.rbReview.setDisabled(!props.canReview); + this.rbForms.setDisabled(!props.canFillForms); + this.rbComments.setDisabled(!props.canComments); + } + }, + + getSettings: function() { + if (this.rbView.getValue()) + return Asc.c_oAscEDocProtect.ReadOnly; + if (this.rbForms.getValue()) + return Asc.c_oAscEDocProtect.Forms; + if (this.rbReview.getValue()) + return Asc.c_oAscEDocProtect.TrackedChanges; + if (this.rbComments.getValue()) + return Asc.c_oAscEDocProtect.Comments; + }, + + txtPassword : "Password", + txtRepeat: 'Repeat password', + txtOptional: 'optional', + txtIncorrectPwd: 'Confirmation password is not identical', + txtWarning: 'Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.', + txtProtect: 'Protect', + txtTitle: 'Protect', + txtAllow: 'Allow only this type of editing in the document', + textView: 'No changes (Read only)', + textForms: 'Filling forms', + textReview: 'Tracked changes', + textComments: 'Comments' + + }, DE.Views.ProtectDialog || {})); +}); diff --git a/apps/documenteditor/main/app/view/Statusbar.js b/apps/documenteditor/main/app/view/Statusbar.js index 95b0d8d17..072bc49c4 100644 --- a/apps/documenteditor/main/app/view/Statusbar.js +++ b/apps/documenteditor/main/app/view/Statusbar.js @@ -160,6 +160,8 @@ define([ me.zoomMenu.on('item:click', function(menu, item) { me.fireEvent('zoom:value', [item.value]); }); + + me.onChangeProtectDocument(); } DE.Views.Statusbar = Backbone.View.extend(_.extend({ @@ -176,7 +178,15 @@ define([ _.extend(this, options); this.pages = new DE.Models.Pages({current:1, count:1}); this.pages.on('change', _.bind(_updatePagesCaption,this)); - this.state = {}; + this._state = { + docProtection: { + isReadOnly: false, + isReviewOnly: false, + isFormsOnly: false, + isCommentsOnly: false + } + }; + this._isDisabled = false; var me = this; this.$layout = $(this.template({ @@ -333,6 +343,7 @@ define([ this.api.asc_registerCallback('asc_onCurrentPage', _.bind(_onCurrentPage, this)); this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onApiCoAuthoringDisconnect, this)); Common.NotificationCenter.on('api:disconnect', _.bind(this.onApiCoAuthoringDisconnect, this)); + Common.NotificationCenter.on('protect:doclock', _.bind(this.onChangeProtectDocument, this)); } return this; @@ -367,7 +378,8 @@ define([ }); this.langMenu.resetItems(arr); if (this.langMenu.items.length>0) { - this.btnLanguage.setDisabled(!!this.mode.isDisconnected); + var isProtected = this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly || this._state.docProtection.isCommentsOnly; + this.btnLanguage.setDisabled(this._isDisabled || !!this.mode.isDisconnected || isProtected); } }, @@ -399,8 +411,21 @@ define([ }, SetDisabled: function(disable) { - this.btnLanguage.setDisabled(disable || this.langMenu.items.length<1); - this.btnTurnReview && this.btnTurnReview.setDisabled(disable); + this._isDisabled = disable; + var isProtected = this._state.docProtection.isReadOnly || this._state.docProtection.isFormsOnly || this._state.docProtection.isCommentsOnly; + this.btnLanguage.setDisabled(disable || this.langMenu.items.length<1 || isProtected); + this.btnTurnReview && this.btnTurnReview.setDisabled(disable || isProtected); + }, + + onChangeProtectDocument: function(props) { + if (!props) { + var docprotect = DE.getController('DocProtection'); + props = docprotect ? docprotect.getDocProps() : null; + } + if (props) { + this._state.docProtection = props; + this.SetDisabled(this._isDisabled); + } }, onApiCoAuthoringDisconnect: function() { diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index 161595d01..33335fbbf 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -761,6 +761,14 @@ define([ this._state.beginPreviewStyles = true; this._state.currentStyleFound = false; this._state.previewStylesCount = count; + this._state.groups = { + 'menu-table-group-custom': {id: 'menu-table-group-custom', caption: this.txtGroupTable_Custom, index: 0, templateCount: 0}, + 'menu-table-group-plain': {id: 'menu-table-group-plain', caption: this.txtGroupTable_Plain, index: 1, templateCount: 0}, + 'menu-table-group-grid': {id: 'menu-table-group-grid', caption: this.txtGroupTable_Grid, index: 2, templateCount: 0}, + 'menu-table-group-list': {id: 'menu-table-group-list', caption: this.txtGroupTable_List, index: 3, templateCount: 0}, + 'menu-table-group-bordered-and-lined': {id: 'menu-table-group-bordered-and-lined', caption: this.txtGroupTable_BorderedAndLined, index: 4, templateCount: 0}, + 'menu-table-group-no-name': {id: 'menu-table-group-no-name', caption: ' ', index: 5, templateCount: 0}, + }; }, onEndTableStylesPreview: function(){ @@ -774,29 +782,73 @@ define([ onAddTableStylesPreview: function(Templates){ var self = this; - var arr = []; + _.each(Templates, function(template){ var tip = template.asc_getDisplayName(); + var groupItem = ''; + if (template.asc_getType()==0) { - ['Table Grid', 'Plain Table', 'Grid Table', 'List Table', 'Light', 'Dark', 'Colorful', 'Accent'].forEach(function(item){ - var str = 'txtTable_' + item.replace(' ', ''); + var arr = tip.split(' '); + + if(new RegExp('Table Grid', 'i').test(tip)){ + groupItem = 'menu-table-group-plain'; + } + else if(new RegExp('Lined|Bordered', 'i').test(tip)) { + groupItem = 'menu-table-group-bordered-and-lined'; + } + else{ + if(arr[0]){ + groupItem = 'menu-table-group-' + arr[0].toLowerCase(); + } + if(self._state.groups.hasOwnProperty(groupItem) == false) { + groupItem = 'menu-table-group-no-name'; + } + + } + + ['Table Grid', 'Plain Table', 'Grid Table', 'List Table', 'Light', 'Dark', 'Colorful', 'Accent', 'Bordered & Lined', 'Bordered', 'Lined'].forEach(function(item){ + var str = 'txtTable_' + item.replace('&', 'And').replace(new RegExp(' ', 'g'), ''); if (self[str]) tip = tip.replace(item, self[str]); }); } - arr.push({ + else { + groupItem = 'menu-table-group-custom' + } + + var templateObj = { imageUrl: template.asc_getImage(), id : Common.UI.getId(), + group : groupItem, templateId: template.asc_getId(), tip : tip - }); + }; + var templateIndex = 0; + + for(var group in self._state.groups) { + if(self._state.groups[group].index <= self._state.groups[groupItem].index) { + templateIndex += self._state.groups[group].templateCount; + } + } + + if (self._state.beginPreviewStyles) { + self._state.beginPreviewStyles = false; + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.groups.reset(self._state.groups[groupItem]); + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.reset(templateObj); + self.mnuTableTemplatePicker.groups.comparator = function(item) { + return item.get('index'); + }; + } + else { + if(self._state.groups[groupItem].templateCount == 0) { + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.groups.add(self._state.groups[groupItem]); + } + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.add(templateObj, {at: templateIndex}); + } + + self._state.groups[groupItem].templateCount += 1; }); - if (this._state.beginPreviewStyles) { - this._state.beginPreviewStyles = false; - self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.reset(arr); - } else - self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.add(arr); !this._state.currentStyleFound && this.selectCurrentTableStyle(); }, @@ -989,7 +1041,15 @@ define([ txtTable_Dark: 'Dark', txtTable_Colorful: 'Colorful', txtTable_Accent: 'Accent', - textConvert: 'Convert Table to Text' + txtTable_Lined: 'Lined', + txtTable_Bordered: 'Bordered', + txtTable_BorderedAndLined: 'Bordered & Lined', + txtGroupTable_Custom: 'Custom', + txtGroupTable_Plain: 'Plain Tables', + txtGroupTable_Grid: 'Grid Tables', + txtGroupTable_List: 'List Tables', + txtGroupTable_BorderedAndLined: 'Bordered & Lined Tables', + textConvert: 'Convert Table to Text', }, DE.Views.TableSettings || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index d495b0f92..41c7e6b9f 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -192,7 +192,7 @@ define([ lock: [_set.cantPrint, _set.disableOnStart], signals: ['disabled'], dataHint: '1', - dataHintDirection: 'top', + dataHintDirection: 'bottom', dataHintTitle: 'P' }); this.toolbarControls.push(this.btnPrint); @@ -204,7 +204,7 @@ define([ lock: [_set.lostConnect, _set.disableOnStart], signals: ['disabled'], dataHint: '1', - dataHintDirection: 'bottom', + dataHintDirection: 'top', dataHintTitle: 'S' }); this.toolbarControls.push(this.btnSave); @@ -214,7 +214,7 @@ define([ id: 'id-toolbar-btn-undo', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-undo', - lock: [_set.undoLock, _set.previewReviewMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.undoLock, _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView], signals: ['disabled'], dataHint: '1', dataHintDirection: 'bottom', @@ -226,7 +226,7 @@ define([ id: 'id-toolbar-btn-redo', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-redo', - lock: [_set.redoLock, _set.previewReviewMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.redoLock, _set.previewReviewMode, _set.lostConnect, _set.disableOnStart, _set.docLockView], signals: ['disabled'], dataHint: '1', dataHintDirection: 'bottom', @@ -249,7 +249,7 @@ define([ id: 'id-toolbar-btn-paste', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-paste', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockComments], dataHint: '1', dataHintDirection: 'top', dataHintTitle: 'V' @@ -260,7 +260,7 @@ define([ id: 'id-toolbar-btn-cut', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-cut', - lock: [_set.copyLock, _set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.imageLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.copyLock, _set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.imageLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockComments], dataHint: '1', dataHintDirection: 'top', dataHintTitle: 'X' @@ -281,7 +281,7 @@ define([ id: 'id-toolbar-btn-incfont', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-incfont', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], dataHint: '1', dataHintDirection: 'top' }); @@ -291,7 +291,7 @@ define([ id: 'id-toolbar-btn-decfont', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-decfont', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], dataHint: '1', dataHintDirection: 'top' }); @@ -301,7 +301,7 @@ define([ id: 'id-toolbar-btn-bold', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-bold', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, dataHint: '1', dataHintDirection: 'bottom' @@ -312,7 +312,7 @@ define([ id: 'id-toolbar-btn-italic', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-italic', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, dataHint: '1', dataHintDirection: 'bottom' @@ -323,7 +323,7 @@ define([ id: 'id-toolbar-btn-underline', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-underline', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, dataHint: '1', dataHintDirection: 'bottom' @@ -334,7 +334,7 @@ define([ id: 'id-toolbar-btn-strikeout', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-strikeout', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, dataHint: '1', dataHintDirection: 'bottom' @@ -345,7 +345,7 @@ define([ id: 'id-toolbar-btn-superscript', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-superscript', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inEquation, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inEquation, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, toggleGroup: 'superscriptGroup', dataHint: '1', @@ -357,7 +357,7 @@ define([ id: 'id-toolbar-btn-subscript', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-subscript', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inEquation, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inEquation, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, toggleGroup: 'superscriptGroup', dataHint: '1', @@ -370,7 +370,7 @@ define([ cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-highlight', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inChart, _set.inSmartart, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, - _set.lostConnect, _set.disableOnStart], + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, allowDepress: true, split: true, @@ -395,7 +395,7 @@ define([ id: 'id-toolbar-btn-fontcolor', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-fontcolor', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], split: true, menu: true, auto: true, @@ -410,7 +410,7 @@ define([ cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-paracolor', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inChart, _set.inSmartart, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, - _set.lostConnect, _set.disableOnStart], + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], split: true, transparent: true, menu: true, @@ -425,7 +425,7 @@ define([ id: 'id-toolbar-btn-case', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-change-case', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], menu: new Common.UI.Menu({ items: [ {caption: this.mniSentenceCase, value: Asc.c_oAscChangeTextCaseType.SentenceCase}, @@ -444,7 +444,7 @@ define([ id: 'id-toolbar-btn-align-left', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-align-left', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, toggleGroup: 'alignGroup', dataHint: '1', @@ -456,7 +456,7 @@ define([ id: 'id-toolbar-btn-align-center', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-align-center', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, toggleGroup: 'alignGroup', dataHint: '1', @@ -468,7 +468,7 @@ define([ id: 'id-toolbar-btn-align-right', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-align-right', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, toggleGroup: 'alignGroup', dataHint: '1', @@ -480,7 +480,7 @@ define([ id: 'id-toolbar-btn-align-just', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-align-just', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, toggleGroup: 'alignGroup', dataHint: '1', @@ -492,7 +492,7 @@ define([ id: 'id-toolbar-btn-decoffset', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-decoffset', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], dataHint: '1', dataHintDirection: 'top' }); @@ -502,7 +502,7 @@ define([ id: 'id-toolbar-btn-incoffset', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-incoffset', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], dataHint: '1', dataHintDirection: 'top' }); @@ -512,7 +512,7 @@ define([ id: 'id-toolbar-btn-linespace', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-linespace', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], menu: new Common.UI.Menu({ style: 'min-width: 60px;', items: [ @@ -534,7 +534,7 @@ define([ id: 'id-toolbar-btn-hidenchars', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-paragraph', - lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, split: true, menu: new Common.UI.Menu({ @@ -555,7 +555,7 @@ define([ cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-setmarkers', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inChart, _set.inSmartart, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, - _set.lostConnect, _set.disableOnStart], + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, toggleGroup: 'markersGroup', split: true, @@ -572,7 +572,7 @@ define([ cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-numbering', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inChart, _set.inSmartart, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, - _set.lostConnect, _set.disableOnStart], + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, toggleGroup: 'markersGroup', split: true, @@ -589,7 +589,7 @@ define([ cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-multilevels', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inChart, _set.inSmartart, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, - _set.lostConnect, _set.disableOnStart], + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], menu: true, dataHint: '1', dataHintDirection: 'top', @@ -622,7 +622,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-inserttable', lock: [_set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inEquation, _set.controlPlain, _set.richDelLock, _set.plainDelLock, _set.cantAddTable, _set.previewReviewMode, - _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnInsTable, menu: new Common.UI.Menu({ items: [ @@ -645,7 +645,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-insertimage', lock: [_set.paragraphLock, _set.headerLock, _set.inEquation, _set.controlPlain, _set.richDelLock, _set.plainDelLock, _set.contentLock, _set.cantAddImagePara, - _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnInsImage, menu: new Common.UI.Menu({ items: [ @@ -666,7 +666,7 @@ define([ caption: me.capBtnInsChart, iconCls: 'toolbar__icon btn-insertchart', lock: [ _set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.controlPlain, _set.richDelLock, _set.plainDelLock, _set.contentLock, - _set.chartLock, _set.cantAddChart, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + _set.chartLock, _set.cantAddChart, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], menu: true, dataHint: '1', dataHintDirection: 'bottom', @@ -679,12 +679,14 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-text', lock: [_set.paragraphLock, _set.headerLock, _set.inEquation, _set.controlPlain, _set.contentLock, _set.inFootnote, _set.previewReviewMode, _set.viewFormMode, - _set.lostConnect, _set.disableOnStart], + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnInsTextbox, enableToggle: true, + split: true, dataHint: '1', dataHintDirection: 'bottom', - dataHintOffset: 'small' + dataHintOffset: 'small', + textboxType: 'textRect' }); this.paragraphControls.push(this.btnInsertText); @@ -693,7 +695,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-textart', lock: [_set.paragraphLock, _set.headerLock, _set.inEquation, _set.controlPlain, _set.richDelLock, _set.plainDelLock, _set.contentLock, _set.inFootnote, _set.cantAddImagePara, - _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnInsTextart, menu: new Common.UI.Menu({ cls: 'menu-shapes', @@ -711,7 +713,7 @@ define([ id: 'id-toolbar-btn-editheader', cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-editheader', - lock: [ _set.previewReviewMode, _set.viewFormMode, _set.inEquation, _set.lostConnect, _set.disableOnStart], + lock: [ _set.previewReviewMode, _set.viewFormMode, _set.inEquation, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnInsHeader, menu: true, dataHint: '1', @@ -745,7 +747,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-datetime', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.richDelLock, _set.plainDelLock, _set.noParagraphSelected, _set.previewReviewMode, - _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnDateTime, dataHint: '1', dataHintDirection: 'bottom', @@ -758,7 +760,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-blankpage', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inEquation, _set.richDelLock, _set.plainDelLock, _set.inHeader, _set.inFootnote, _set.inControl, - _set.cantPageBreak, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + _set.cantPageBreak, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnBlankPage, dataHint: '1', dataHintDirection: 'bottom', @@ -771,7 +773,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-insertshape', lock: [_set.paragraphLock, _set.headerLock, _set.inEquation, _set.controlPlain, _set.contentLock, _set.inFootnote, _set.previewReviewMode, _set.viewFormMode, - _set.lostConnect, _set.disableOnStart], + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnInsShape, enableToggle: true, menu: new Common.UI.Menu({cls: 'menu-shapes menu-insert-shape'}), @@ -781,12 +783,26 @@ define([ }); this.paragraphControls.push(this.btnInsertShape); + this.btnInsertSmartArt = new Common.UI.Button({ + id: 'tlbtn-insertsmartart', + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon smart-art', + lock: [_set.paragraphLock, _set.headerLock, _set.inEquation, _set.controlPlain, _set.contentLock, _set.inFootnote, _set.previewReviewMode, _set.viewFormMode, + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], + caption: me.capBtnInsSmartArt, + menu: true, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + this.paragraphControls.push(this.btnInsertSmartArt); + this.btnInsertEquation = new Common.UI.Button({ id: 'tlbtn-insertequation', cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-insertequation', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inChart, _set.controlPlain, _set.richDelLock, _set.plainDelLock, _set.cantAddEquation, - _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnInsEquation, split: true, menu: new Common.UI.Menu({cls: 'menu-shapes'}), @@ -801,7 +817,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-symbol', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.richDelLock, _set.plainDelLock, _set.noParagraphSelected, _set.previewReviewMode, - _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnInsSymbol, dataHint: '1', dataHintDirection: 'bottom', @@ -814,7 +830,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-dropcap', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inEquation, _set.controlPlain, _set.dropcapLock, _set.previewReviewMode, _set.viewFormMode, - _set.lostConnect, _set.disableOnStart], + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnInsDropcap, menu: new Common.UI.Menu({ cls: 'ppm-toolbar shifted-right', @@ -858,7 +874,7 @@ define([ id: 'tlbtn-controls', cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-controls', - lock: [_set.paragraphLock, _set.headerLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnInsControls, menu: new Common.UI.Menu({ cls: 'ppm-toolbar shifted-right', @@ -944,7 +960,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-columns', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.controlPlain, _set.inImage, _set.docPropsLock, _set.previewReviewMode, _set.viewFormMode, - _set.lostConnect, _set.disableOnStart], + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnColumns, menu: new Common.UI.Menu({ cls: 'ppm-toolbar shifted-right', @@ -1003,7 +1019,7 @@ define([ id: 'tlbtn-pageorient', cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-pageorient', - lock: [_set.docPropsLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.docPropsLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnPageOrient, menu: new Common.UI.Menu({ cls: 'ppm-toolbar', @@ -1045,7 +1061,7 @@ define([ id: 'tlbtn-pagemargins', cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-pagemargins', - lock: [_set.docPropsLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.docPropsLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnMargins, menu: new Common.UI.Menu({ items: [ @@ -1108,7 +1124,7 @@ define([ id: 'tlbtn-pagesize', cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-pagesize', - lock: [_set.docPropsLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.docPropsLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnPageSize, menu: new Common.UI.Menu({ restoreHeight: true, @@ -1232,7 +1248,7 @@ define([ id: 'tlbtn-line-numbers', cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-line-numbering', - lock: [_set.docPropsLock, _set.inImagePara, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.docPropsLock, _set.inImagePara, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnLineNumbers, menu: new Common.UI.Menu({ cls: 'ppm-toolbar', @@ -1285,7 +1301,7 @@ define([ cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-clearstyle', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inChart, _set.inSmartart, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, - _set.lostConnect, _set.disableOnStart], + _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], dataHint: '1', dataHintDirection: 'top' }); @@ -1295,7 +1311,7 @@ define([ id: 'id-toolbar-btn-copystyle', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-copystyle', - lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [ _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], enableToggle: true, dataHint: '1', dataHintDirection: 'bottom' @@ -1306,7 +1322,7 @@ define([ id: 'id-toolbar-btn-colorschemas', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-colorschemas', - lock: [_set.docSchemaLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.docSchemaLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], menu: new Common.UI.Menu({ cls: 'shifted-left', items: [], @@ -1322,7 +1338,7 @@ define([ id: 'id-toolbar-btn-mailrecepients', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-mailmerge', - lock: [_set.mmergeLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.mmergeLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], dataHint: '1', dataHintDirection: 'bottom', menu: new Common.UI.Menu({ @@ -1338,7 +1354,7 @@ define([ me.btnImgAlign = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-img-align', - lock: [_set.imageLock, _set.contentLock, _set.inImageInline, _set.noObjectSelected, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.imageLock, _set.contentLock, _set.inImageInline, _set.noObjectSelected, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capImgAlign, menu: true, dataHint: '1', @@ -1349,7 +1365,7 @@ define([ me.btnImgGroup = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-img-group', - lock: [_set.imageLock, _set.contentLock, _set.inImageInline, _set.noObjectSelected, _set.cantGroup, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.imageLock, _set.contentLock, _set.inImageInline, _set.noObjectSelected, _set.cantGroup, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capImgGroup, menu: true, dataHint: '1', @@ -1359,7 +1375,7 @@ define([ me.btnImgForward = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-img-frwd', - lock: [_set.cantArrange, _set.lostConnect, _set.contentLock, _set.noObjectSelected, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, _set.disableOnStart], + lock: [_set.cantArrange, _set.lostConnect, _set.contentLock, _set.noObjectSelected, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capImgForward, split: true, menu: true, @@ -1370,7 +1386,7 @@ define([ me.btnImgBackward = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-img-bkwd', - lock: [_set.cantArrange, _set.lostConnect, _set.contentLock, _set.noObjectSelected, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, _set.disableOnStart], + lock: [_set.cantArrange, _set.lostConnect, _set.contentLock, _set.noObjectSelected, _set.inSmartartInternal, _set.previewReviewMode, _set.viewFormMode, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capImgBackward, split: true, menu: true, @@ -1381,7 +1397,7 @@ define([ me.btnImgWrapping = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-img-wrap', - lock: [_set.cantWrap, _set.imageLock, _set.contentLock, _set.noObjectSelected, _set.lostConnect, _set.previewReviewMode, _set.viewFormMode, _set.disableOnStart], + lock: [_set.cantWrap, _set.imageLock, _set.contentLock, _set.noObjectSelected, _set.lostConnect, _set.previewReviewMode, _set.viewFormMode, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capImgWrapping, menu: true, dataHint: '1', @@ -1392,7 +1408,7 @@ define([ me.btnWatermark = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-watermark', - lock: [_set.headerLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.headerLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], caption: me.capBtnWatermark, menu: new Common.UI.Menu({ cls: 'ppm-toolbar', @@ -1431,7 +1447,7 @@ define([ this.cmbFontSize = new Common.UI.ComboBox({ cls: 'input-group-nr', menuStyle: 'min-width: 55px;', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], hint: this.tipFontSize, data: [ {value: 8, displayValue: "8"}, @@ -1461,7 +1477,7 @@ define([ cls: 'input-group-nr', menuCls: 'scrollable-menu', menuStyle: 'min-width: 325px;', - lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.previewReviewMode, _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], hint: this.tipFontName, store: new Common.Collections.Fonts(), dataHint: '1', @@ -1480,10 +1496,10 @@ define([ this.listStyles = new Common.UI.ComboDataView({ cls: 'combo-styles', lock: [_set.paragraphLock, _set.headerLock, _set.richEditLock, _set.plainEditLock, _set.inChart, _set.inSmartart, _set.inSmartartInternal, _set.previewReviewMode, - _set.viewFormMode, _set.lostConnect, _set.disableOnStart], + _set.viewFormMode, _set.lostConnect, _set.disableOnStart, _set.docLockView, _set.docLockForms, _set.docLockComments], itemWidth: itemWidth, itemHeight: itemHeight, - style: 'min-width:150px;', + style: 'min-width:139px;', // hint : this.tipParagraphStyle, dataHint: '1', dataHintDirection: 'bottom', @@ -1491,6 +1507,7 @@ define([ enableKeyEvents: true, additionalMenuItems: [this.listStylesAdditionalMenuItem], delayRenderTips: true, + autoWidth: true, itemTemplate: _.template([ '
', '
', @@ -1717,6 +1734,7 @@ define([ _injectComponent('#slot-btn-datetime', this.btnInsDateTime); _injectComponent('#slot-btn-blankpage', this.btnBlankPage); _injectComponent('#slot-btn-insshape', this.btnInsertShape); + _injectComponent('#slot-btn-inssmartart', this.btnInsertSmartArt); _injectComponent('#slot-btn-insequation', this.btnInsertEquation); _injectComponent('#slot-btn-inssymbol', this.btnInsertSymbol); _injectComponent('#slot-btn-pageorient', this.btnPageOrient); @@ -1738,7 +1756,7 @@ define([ this.btnsPageBreak = Common.Utils.injectButtons($host.find('.btn-slot.btn-pagebreak'), '', 'toolbar__icon btn-pagebreak', this.capBtnInsPagebreak, [Common.enumLock.paragraphLock, Common.enumLock.headerLock, Common.enumLock.richEditLock, Common.enumLock.plainEditLock, Common.enumLock.inEquation, Common.enumLock.richDelLock, Common.enumLock.plainDelLock, Common.enumLock.inHeader, Common.enumLock.inFootnote, Common.enumLock.inControl, Common.enumLock.cantPageBreak, Common.enumLock.previewReviewMode, - Common.enumLock.viewFormMode, Common.enumLock.lostConnect, Common.enumLock.disableOnStart], + Common.enumLock.viewFormMode, Common.enumLock.lostConnect, Common.enumLock.disableOnStart, Common.enumLock.docLockView, Common.enumLock.docLockForms, Common.enumLock.docLockComments], true, true, undefined, '1', 'bottom', 'small'); Array.prototype.push.apply(this.paragraphControls, this.btnsPageBreak); Array.prototype.push.apply(this.lockControls, this.btnsPageBreak); @@ -2010,12 +2028,13 @@ define([ this.btnInsertTable.updateHint(this.tipInsertTable); this.btnInsertImage.updateHint(this.tipInsertImage); this.btnInsertChart.updateHint(this.tipInsertChart); - this.btnInsertText.updateHint(this.tipInsertText); + this.btnInsertText.updateHint([this.tipInsertHorizontalText ,this.tipInsertText]); this.btnInsertTextArt.updateHint(this.tipInsertTextArt); this.btnEditHeader.updateHint(this.tipEditHeader); this.btnInsDateTime.updateHint(this.tipDateTime); this.btnBlankPage.updateHint(this.tipBlankPage); this.btnInsertShape.updateHint(this.tipInsertShape); + this.btnInsertSmartArt.updateHint(this.tipInsertSmartArt); this.btnInsertEquation.updateHint(this.tipInsertEquation); this.btnInsertSymbol.updateHint(this.tipInsertSymbol); this.btnDropCap.updateHint(this.tipDropCap); @@ -2200,6 +2219,60 @@ define([ }; this.btnInsertChart.menu.on('show:before', onShowBefore); + this.btnInsertSmartArt.setMenu(new Common.UI.Menu({ + cls: 'shifted-right', + items: [] + })); + + var smartArtData = Common.define.smartArt.getSmartArtData(); + smartArtData.forEach(function (item, index) { + var length = item.items.length, + width = 399; + if (length < 5) { + width = length * (70 + 8) + 9; // 4px margin + 4px margin + } + me.btnInsertSmartArt.menu.addItem({ + caption: item.caption, + value: item.sectionId, + itemId: item.id, + iconCls: item.icon ? 'menu__icon ' + item.icon : undefined, + menu: new Common.UI.Menu({ + items: [ + {template: _.template('')} + ], + menuAlign: 'tl-tr', + })}); + }); + var onShowBeforeSmartArt = function (menu) { // + <% if(typeof imageUrl === "undefined" || imageUrl===null || imageUrl==="") { %> style="visibility: hidden;" <% } %>/>', + me.btnInsertSmartArt.menu.items.forEach(function (item, index) { + item.$el.one('mouseenter', function () { + me.fireEvent('generate:smartart', [item.value]); + item.$el.mouseenter(); + }); + item.menuPicker = new Common.UI.DataView({ + el: $('#' + item.options.itemId), + parentMenu: me.btnInsertSmartArt.menu.items[index].menu, + itemTemplate: _.template([ + '
', + '', + '
' + ].join('')), + store: new Common.UI.DataViewStore(), + delayRenderTips: true, + scrollAlwaysVisible: true, + showLast: false + }); + item.menuPicker.on('item:click', function(picker, item, record, e) { + if (record) { + me.fireEvent('insert:smartart', [record.get('value')]); + } + Common.NotificationCenter.trigger('edit:complete', me); + }); + }); + menu.off('show:before', onShowBeforeSmartArt); + }; + this.btnInsertSmartArt.menu.on('show:before', onShowBeforeSmartArt); + var onShowBeforeTextArt = function (menu) { var collection = DE.getCollection('Common.Collections.TextArt'); if (collection.length<1) @@ -2220,6 +2293,29 @@ define([ }; this.btnInsertTextArt.menu.on('show:before', onShowBeforeTextArt); + this.btnInsertText.setMenu(new Common.UI.Menu({ + items: [ + { + caption: this.tipInsertHorizontalText, + checkable: true, + checkmark: false, + iconCls : 'menu__icon btn-text', + toggleGroup: 'textbox', + value: 'textRect', + iconClsForMainBtn: 'btn-text' + }, + { + caption: this.tipInsertVerticalText, + checkable: true, + checkmark: false, + iconCls : 'menu__icon btn-text-vertical', + toggleGroup: 'textbox', + value: 'textRectVertical', + iconClsForMainBtn: 'btn-text-vertical' + }, + ] + })); + // set dataviews var _conf = this.mnuMarkersPicker.conf; @@ -2461,8 +2557,11 @@ define([ this.synchTooltip.hide(); if (!mode.enableDownload) this.lockToolbar(Common.enumLock.cantPrint, true, {array: [this.btnPrint]}); - } else + } else { this.lockToolbar(Common.enumLock.cantPrint, !mode.canPrint, {array: [this.btnPrint]}); + !mode.canPrint && this.btnPrint.hide(); + } + this.mode = mode; @@ -2690,6 +2789,7 @@ define([ tipBack: 'Back', tipInsertShape: 'Insert Autoshape', tipInsertEquation: 'Insert Equation', + tipInsertSmartArt: 'Insert SmartArt', mniImageFromFile: 'Image from File', mniImageFromUrl: 'Image from URL', mniCustomTable: 'Insert Custom Table', @@ -2706,7 +2806,9 @@ define([ textAutoColor: 'Automatic', tipInsertChart: 'Insert Chart', tipColorSchemas: 'Change Color Scheme', - tipInsertText: 'Insert Text', + tipInsertHorizontalText: 'Insert horizontal text box', + tipInsertVerticalText: 'Insert vertical text box', + tipInsertText: 'Insert text box', tipInsertTextArt: 'Insert Text Art', mniEditDropCap: 'Drop Cap Settings', textNone: 'None', @@ -2791,6 +2893,7 @@ define([ capBtnPageOrient: 'Orientation', capBtnMargins: 'Margins', capBtnPageSize: 'Size', + capBtnInsSmartArt: 'SmartArt', tipImgAlign: 'Align objects', tipImgGroup: 'Group objects', tipImgWrapping: 'Wrap text', diff --git a/apps/documenteditor/main/app/view/ViewTab.js b/apps/documenteditor/main/app/view/ViewTab.js index fb300ead9..8f1d05ee0 100644 --- a/apps/documenteditor/main/app/view/ViewTab.js +++ b/apps/documenteditor/main/app/view/ViewTab.js @@ -82,6 +82,14 @@ define([ '' + '
' + '' + + '
' + + '
' + + '' + + '
' + + '
' + + '' + + '
' + + '
' + '
' + '
' + '
' + @@ -114,6 +122,12 @@ define([ me.chRulers.on('change', _.bind(function (checkbox, state) { me.fireEvent('rulers:change', [me.chRulers, state === 'checked']); }, me)); + me.chLeftMenu.on('change', _.bind(function (checkbox, state) { + me.fireEvent('leftmenu:hide', [me.chLeftMenu, state === 'checked']); + }, me)); + me.chRightMenu.on('change', _.bind(function (checkbox, state) { + me.fireEvent('rightmenu:hide', [me.chRightMenu, state === 'checked']); + }, me)); me.btnDarkDocument.on('click', _.bind(function () { me.fireEvent('darkmode:change'); }, me)); @@ -237,6 +251,24 @@ define([ }); this.lockedControls.push(this.chToolbar); + this.chRightMenu = new Common.UI.CheckBox({ + lock: [_set.lostConnect, _set.disableOnStart], + labelText: this.textRightMenu, + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chRightMenu); + + this.chLeftMenu = new Common.UI.CheckBox({ + lock: [_set.lostConnect, _set.disableOnStart], + labelText: this.textLeftMenu, + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chLeftMenu); + this.chRulers = new Common.UI.CheckBox({ lock: [_set.lostConnect, _set.disableOnStart], labelText: this.textRulers, @@ -271,6 +303,8 @@ define([ this.chStatusbar.render($host.find('#slot-chk-statusbar')); this.chToolbar.render($host.find('#slot-chk-toolbar')); this.chRulers.render($host.find('#slot-chk-rulers')); + this.chLeftMenu.render($host.find('#slot-chk-leftmenu')); + this.chRightMenu.render($host.find('#slot-chk-rightmenu')); return this.$el; }, @@ -280,6 +314,14 @@ define([ this.btnFitToWidth.updateHint(this.tipFitToWidth); this.btnInterfaceTheme.updateHint(this.tipInterfaceTheme); this.btnDarkDocument.updateHint(this.tipDarkDocument); + + var value = Common.UI.LayoutManager.getInitValue('leftMenu'); + value = (value!==undefined) ? !value : false; + this.chLeftMenu.setValue(!Common.localStorage.getBool("de-hidden-leftmenu", value)); + + value = Common.UI.LayoutManager.getInitValue('rightMenu'); + value = (value!==undefined) ? !value : false; + this.chRightMenu.setValue(!Common.localStorage.getBool("de-hidden-rightmenu", value)); }, show: function () { @@ -327,7 +369,9 @@ define([ tipFitToPage: 'Fit to page', tipFitToWidth: 'Fit to width', tipInterfaceTheme: 'Interface theme', - tipDarkDocument: 'Dark document' + tipDarkDocument: 'Dark document', + textLeftMenu: 'Left panel', + textRightMenu: 'Right panel' } }()), DE.Views.ViewTab || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/Viewport.js b/apps/documenteditor/main/app/view/Viewport.js index a90ad6f6b..2ee5fcc65 100644 --- a/apps/documenteditor/main/app/view/Viewport.js +++ b/apps/documenteditor/main/app/view/Viewport.js @@ -141,9 +141,18 @@ define([ rightMenuView = DE.getController('RightMenu').getView('RightMenu'); me._rightMenu = rightMenuView.render(this.mode); + var value = Common.UI.LayoutManager.getInitValue('rightMenu'); + value = (value!==undefined) ? !value : false; + Common.localStorage.getBool("de-hidden-rightmenu", value) && me._rightMenu.hide(); + }, + applyCommonMode: function() { if ( Common.localStorage.getBool('de-hidden-status') ) DE.getController('Statusbar').getView('Statusbar').setVisible(false); + + var value = Common.UI.LayoutManager.getInitValue('leftMenu'); + value = (value!==undefined) ? !value : false; + Common.localStorage.getBool("de-hidden-leftmenu", value) && DE.getController('LeftMenu').getView('LeftMenu').hide(); }, setMode: function(mode) { diff --git a/apps/documenteditor/main/app_dev.js b/apps/documenteditor/main/app_dev.js index 242a4d947..fcf7ac26f 100644 --- a/apps/documenteditor/main/app_dev.js +++ b/apps/documenteditor/main/app_dev.js @@ -53,7 +53,7 @@ require.config({ perfectscrollbar: 'common/main/lib/mods/perfect-scrollbar', jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel', xregexp : '../vendor/xregexp/xregexp-all-min', - sockjs : '../vendor/sockjs/sockjs.min', + socketio : '../vendor/socketio/socket.io.min', api : 'api/documents/api', core : 'common/main/lib/core/application', notification : 'common/main/lib/core/NotificationCenter', @@ -120,7 +120,7 @@ require([ 'analytics', 'gateway', 'locale', - 'sockjs', + 'socketio', 'underscore' ], function (Backbone, Bootstrap, Core) { if (Backbone.History && Backbone.History.started) @@ -147,6 +147,7 @@ require([ 'Main', 'ViewTab', 'Search', + 'DocProtection', 'Common.Controllers.Fonts', 'Common.Controllers.History' /** coauthoring begin **/ @@ -181,6 +182,7 @@ require([ 'documenteditor/main/app/controller/Main', 'documenteditor/main/app/controller/ViewTab', 'documenteditor/main/app/controller/Search', + 'documenteditor/main/app/controller/DocProtection', 'documenteditor/main/app/view/FileMenuPanels', 'documenteditor/main/app/view/ParagraphSettings', 'documenteditor/main/app/view/HeaderFooterSettings', diff --git a/apps/documenteditor/main/index.html b/apps/documenteditor/main/index.html index c5d3b2cc3..e0a2a1814 100644 --- a/apps/documenteditor/main/index.html +++ b/apps/documenteditor/main/index.html @@ -331,6 +331,7 @@ + diff --git a/apps/documenteditor/main/index_loader.html b/apps/documenteditor/main/index_loader.html index 72095a3aa..80c10c94a 100644 --- a/apps/documenteditor/main/index_loader.html +++ b/apps/documenteditor/main/index_loader.html @@ -271,6 +271,7 @@ + diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json index 16c153350..efff53ac5 100644 --- a/apps/documenteditor/main/locale/az.json +++ b/apps/documenteditor/main/locale/az.json @@ -9,6 +9,7 @@ "Common.Controllers.ExternalMergeEditor.textClose": "Bağla", "Common.Controllers.ExternalMergeEditor.warningText": "Obyekt deaktiv edilib, çünki o, başqa istifadəçi tərəfindən redaktə olunur.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Xəbərdarlıq", + "Common.Controllers.ExternalOleEditor.textAnonymous": "Anonim", "Common.Controllers.History.notcriticalErrorTitle": "Xəbərdarlıq", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Sənədləri müqayisə etmək üçün edilən bütün dəyişikliklər qəbul edilmiş hesab ediləcək. Davam etmək istəyirsiniz?", "Common.Controllers.ReviewChanges.textAtLeast": "ən azı", @@ -242,6 +243,7 @@ "Common.Views.Comments.textAddComment": "Şərh Əlavə Et", "Common.Views.Comments.textAddCommentToDoc": "Sənədə şərh əlavə et", "Common.Views.Comments.textAddReply": "Cavab əlavə edin", + "Common.Views.Comments.textAll": "Bütün", "Common.Views.Comments.textAnonym": "Qonaq", "Common.Views.Comments.textCancel": "Ləğv et", "Common.Views.Comments.textClose": "Bağla", @@ -263,11 +265,7 @@ "Common.Views.CopyWarningDialog.textToPaste": "Yerləşdirmək üçün", "Common.Views.DocumentAccessDialog.textLoading": "Yüklənir...", "Common.Views.DocumentAccessDialog.textTitle": "Paylaşım Parametrləri", - "Common.Views.ExternalDiagramEditor.textClose": "Bağla", - "Common.Views.ExternalDiagramEditor.textSave": "Yadda Saxla və Çıx", "Common.Views.ExternalDiagramEditor.textTitle": "Diaqram Redaktoru", - "Common.Views.ExternalMergeEditor.textClose": "Bağla", - "Common.Views.ExternalMergeEditor.textSave": "Yadda Saxla və Çıx", "Common.Views.ExternalMergeEditor.textTitle": "Poçt Birləşməsi Alıcıları", "Common.Views.Header.labelCoUsersDescr": "Faylı redaktə edən istifadəçilər:", "Common.Views.Header.textAddFavorite": "Sevimli kimi işarələ", @@ -437,6 +435,7 @@ "Common.Views.ReviewPopover.txtReject": "Rədd edin", "Common.Views.SaveAsDlg.textLoading": "Yüklənir", "Common.Views.SaveAsDlg.textTitle": "Yadda saxlama üçün qovluq", + "Common.Views.SearchPanel.textCaseSensitive": "Böyük-kiçik hərflərə diqqət", "Common.Views.SelectFileDlg.textLoading": "Yüklənir", "Common.Views.SelectFileDlg.textTitle": "Verilənlər Mənbəyini Seçin", "Common.Views.SignDialog.textBold": "Qalın", @@ -455,7 +454,6 @@ "Common.Views.SignDialog.tipFontName": "Şrift Adı", "Common.Views.SignDialog.tipFontSize": "Şrift Ölçüsü", "Common.Views.SignSettingsDialog.textAllowComment": "İmzalayana imza dialoq qutusuna şərh əlavə etmək icazəsi verin", - "Common.Views.SignSettingsDialog.textInfo": "İmzalayan haqqında məlumat", "Common.Views.SignSettingsDialog.textInfoEmail": "E-poçt", "Common.Views.SignSettingsDialog.textInfoName": "Ad", "Common.Views.SignSettingsDialog.textInfoTitle": "İmzalayanın Adı", @@ -1983,6 +1981,7 @@ "DE.Views.LineNumbersDialog.textStartAt": "Başlayın", "DE.Views.LineNumbersDialog.textTitle": "Sətir Nömrələri", "DE.Views.LineNumbersDialog.txtAutoText": "Avto", + "DE.Views.Links.capBtnAddText": "Mətn əlavə edin", "DE.Views.Links.capBtnBookmarks": "Əlfəcin", "DE.Views.Links.capBtnCaption": "Başlıq", "DE.Views.Links.capBtnContentsUpdate": "Təzələyin", @@ -2667,6 +2666,7 @@ "DE.Views.Toolbar.textTabLinks": "İstinadlar", "DE.Views.Toolbar.textTabProtect": "Qoruma", "DE.Views.Toolbar.textTabReview": "Nəzərdən keçir", + "DE.Views.Toolbar.textTabView": "Görünüş", "DE.Views.Toolbar.textTitleError": "Xəta", "DE.Views.Toolbar.textToCurrent": "Cari mövqeyə qədər", "DE.Views.Toolbar.textTop": "Yuxarı:", @@ -2758,6 +2758,8 @@ "DE.Views.Toolbar.txtScheme7": "Bərabərlik", "DE.Views.Toolbar.txtScheme8": "Axın", "DE.Views.Toolbar.txtScheme9": "Emalatxana", + "DE.Views.ViewTab.textInterfaceTheme": "İnterfeys mövzusu", + "DE.Views.ViewTab.tipInterfaceTheme": "İnterfeys mövzusu", "DE.Views.WatermarkSettingsDialog.textAuto": "Avto", "DE.Views.WatermarkSettingsDialog.textBold": "Qalın", "DE.Views.WatermarkSettingsDialog.textColor": "Mətn rəngi", diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index d854dbb45..a1c3e29f5 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -9,6 +9,8 @@ "Common.Controllers.ExternalMergeEditor.textClose": "Закрыць", "Common.Controllers.ExternalMergeEditor.warningText": "Аб’ект недаступны, бо рэдагуецца іншым карыстальнікам.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Увага", + "Common.Controllers.ExternalOleEditor.textAnonymous": "Ананімны карыстальнік", + "Common.Controllers.ExternalOleEditor.textClose": "Закрыць", "Common.Controllers.History.notcriticalErrorTitle": "Увага", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Для параўнання дакументаў усе адсочваемыя змены будуць лічыцца ўхваленымі. Працягнуць?", "Common.Controllers.ReviewChanges.textAtLeast": "мінімум", @@ -79,21 +81,34 @@ "Common.Controllers.ReviewChanges.textUrl": "Устаўце URL-адрас дакумента", "Common.Controllers.ReviewChanges.textWidow": "Кіраванне акном", "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": "Трохвымерная гістаграма з групаваннем", "Common.define.chartData.textBarNormal3dPerspective": "Трохвымерная гістаграма", + "Common.define.chartData.textBarStacked": "Слупкі са зводкай", "Common.define.chartData.textBarStacked3d": "Трохвымерная састаўная гістаграма", "Common.define.chartData.textBarStackedPer": "100% слупкі са зводкай", "Common.define.chartData.textBarStackedPer3d": "Трохвымерная састаўная гістаграма 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": "Трохвымерная лінейная з групаваннем", + "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.textLineStacked": "Лініі са зводкай", + "Common.define.chartData.textLineStackedMarker": "Лініі са зводкай і адзнакамі", "Common.define.chartData.textLineStackedPer": "100% лініі са зводкай", "Common.define.chartData.textLineStackedPerMarker": "100% лініі са зводкай і адзнакамі", "Common.define.chartData.textPie": "Па крузе", @@ -102,6 +117,7 @@ "Common.define.chartData.textStock": "Біржа", "Common.define.chartData.textSurface": "Паверхня", "Common.Translation.warnFileLocked": "Дакумент зараз выкарыстоўваецца іншай праграмай.", + "Common.Translation.warnFileLockedBtnEdit": "Стварыць копію", "Common.UI.ButtonColored.textAutoColor": "Аўтаматычна", "Common.UI.ButtonColored.textNewColor": "Адвольны колер", "Common.UI.Calendar.textApril": "Красавік", @@ -146,6 +162,8 @@ "Common.UI.ExtendedColorDialog.textNew": "Новы", "Common.UI.ExtendedColorDialog.textRGBErr": "Уведзена хібнае значэнне.
Калі ласка, ўвядзіце лік ад 0 да 255.", "Common.UI.HSBColorPicker.textNoColor": "Без колеру", + "Common.UI.SearchBar.textFind": "Пошук", + "Common.UI.SearchBar.tipCloseSearch": "Закрыць пошук", "Common.UI.SearchDialog.textHighlight": "Падсвятліць вынікі", "Common.UI.SearchDialog.textMatchCase": "Улічваць рэгістр", "Common.UI.SearchDialog.textReplaceDef": "Увядзіце тэкст для замены", @@ -160,6 +178,8 @@ "Common.UI.SynchronizeTip.textSynchronize": "Дакумент быў зменены іншым карыстальнікам.
Націсніце, каб захаваць свае змены і загрузіць абнаўленні.", "Common.UI.ThemeColorPalette.textStandartColors": "Стандартныя колеры", "Common.UI.ThemeColorPalette.textThemeColors": "Колеры тэмы", + "Common.UI.Themes.txtThemeClassicLight": "Класічная светлая", + "Common.UI.Themes.txtThemeContrastDark": "Кантрасная цёмная", "Common.UI.Themes.txtThemeDark": "Цёмная", "Common.UI.Themes.txtThemeLight": "Светлая", "Common.UI.Window.cancelButtonText": "Скасаваць", @@ -174,6 +194,8 @@ "Common.UI.Window.yesButtonText": "Так", "Common.Utils.Metric.txtCm": "см", "Common.Utils.Metric.txtPt": "пт", + "Common.Utils.String.textAlt": "Alt", + "Common.Utils.String.textCtrl": "Ctrl", "Common.Views.About.txtAddress": "адрас:", "Common.Views.About.txtLicensee": "ЛІЦЭНЗІЯТ", "Common.Views.About.txtLicensor": "ЛІЦЭНЗІЯР", @@ -187,6 +209,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.textHyphens": "Злучкі (--) на працяжнік (—)", @@ -210,6 +233,7 @@ "Common.Views.Chat.textSend": "Адправіць", "Common.Views.Comments.mniAuthorAsc": "Аўтары ад А да Я", "Common.Views.Comments.mniAuthorDesc": "Аўтары ад Я да А", + "Common.Views.Comments.mniFilterGroups": "Фільтраваць па групе", "Common.Views.Comments.textAdd": "Дадаць", "Common.Views.Comments.textAddComment": "Дадаць каментар", "Common.Views.Comments.textAddCommentToDoc": "Дадаць каментар да дакумента", @@ -218,6 +242,7 @@ "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": "Увядзіце сюды свой каментар", @@ -234,11 +259,7 @@ "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.textAdvSettings": "Дадатковыя налады", @@ -294,6 +315,7 @@ "Common.Views.PluginDlg.textLoading": "Загрузка", "Common.Views.Plugins.groupCaption": "Убудовы", "Common.Views.Plugins.strPlugins": "Убудовы", + "Common.Views.Plugins.textClosePanel": "Закрыць убудову", "Common.Views.Plugins.textLoading": "Загрузка", "Common.Views.Plugins.textStart": "Запуск", "Common.Views.Plugins.textStop": "Спыніць", @@ -320,6 +342,7 @@ "Common.Views.ReviewChanges.strStrict": "Строгі", "Common.Views.ReviewChanges.strStrictDesc": "Выкарыстоўвайце кнопку \"Захаваць\" для сінхранізацыі вашых змен і змен іншых карыстальнікаў.", "Common.Views.ReviewChanges.textEnable": "Уключыць", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Уключыць адсочванне зменаў для ўсіх? ", "Common.Views.ReviewChanges.tipAcceptCurrent": "Ухваліць бягучыя змены", "Common.Views.ReviewChanges.tipCoAuthMode": "Уключыць рэжым сумеснага рэдагавання", "Common.Views.ReviewChanges.tipCommentRem": "Выдаліць каментары", @@ -393,6 +416,12 @@ "Common.Views.ReviewPopover.txtReject": "Адхіліць", "Common.Views.SaveAsDlg.textLoading": "Загрузка", "Common.Views.SaveAsDlg.textTitle": "Каталог для захавання", + "Common.Views.SearchPanel.textCaseSensitive": "Улічваць рэгістр", + "Common.Views.SearchPanel.textCloseSearch": "Закрыць пошук", + "Common.Views.SearchPanel.textContentChanged": "Дакумент зменены.", + "Common.Views.SearchPanel.textFind": "Пошук", + "Common.Views.SearchPanel.textFindAndReplace": "Пошук і замена", + "Common.Views.SearchPanel.textSearchAgain": "{0}Выканаць новы пошук{1}, каб атрымаць дакладныя вынікі.", "Common.Views.SelectFileDlg.textLoading": "Загрузка", "Common.Views.SelectFileDlg.textTitle": "Абраць крыніцу даных", "Common.Views.SignDialog.textBold": "Тоўсты", @@ -410,13 +439,12 @@ "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.textTitle": "Наладжванне подпісу", "Common.Views.SignSettingsDialog.txtEmpty": "Гэтае поле неабходна запоўніць", "Common.Views.SymbolTableDialog.textCharacter": "Знак", "Common.Views.SymbolTableDialog.textCode": "Шаснаццатковы код Юнікод", @@ -445,6 +473,7 @@ "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": "Усе незахаваныя змены ў гэтым дакуменце страцяцца.
Націсніце \"Скасаваць\" і \"Захаваць\", каб захаваць іх. Націсніце \"Добра\", каб адкінуць незахаваныя змены.", @@ -459,6 +488,7 @@ "DE.Controllers.LeftMenu.txtUntitled": "Без назвы", "DE.Controllers.LeftMenu.warnDownloadAs": "Калі вы працягнеце захаванне ў гэты фармат, усе функцыі, апроч тэксту страцяцца.
Сапраўды хочаце працягнуць?", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Калі вы працягнеце захаванне ў гэты фармат, то частка фарматавання страціцца.
Сапраўды працягнуць?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} не пасуе ў якасці адмысловага сімвала ў поле замены.", "DE.Controllers.Main.applyChangesTextText": "Загрузка змен...", "DE.Controllers.Main.applyChangesTitleText": "Загрузка змен", "DE.Controllers.Main.convertationTimeoutText": "Час чакання пераўтварэння сышоў.", @@ -548,9 +578,13 @@ "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.textRenameLabel": "Увядзіце назву, якая будзе выкарыстоўвацца для сумеснай працы.", + "DE.Controllers.Main.textRequestMacros": "Макрас робіць запыт да URL. Хочаце дазволіць запыт да %1?", "DE.Controllers.Main.textShape": "Фігура", "DE.Controllers.Main.textStrict": "Строгі рэжым", "DE.Controllers.Main.textTryUndoRedo": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.
Націсніце кнопку \"Строгі рэжым\", каб пераключыцца ў строгі рэжым сумеснага рэдагавання, каб рэдагаваць файл без іншых карыстальнікаў і адпраўляць змены толькі пасля іх захавання. Пераключацца паміж рэжымамі сумеснага рэдагавання можна з дапамогай дадатковых налад рэдактара.", @@ -567,6 +601,7 @@ "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": "Актывацыя рэжыму рэдагавання…", @@ -771,6 +806,7 @@ "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", @@ -791,6 +827,7 @@ "DE.Controllers.Main.txtSyntaxError": "Сінтаксічная памылка", "DE.Controllers.Main.txtTableInd": "Індэкс табліцы не можа быць нулём", "DE.Controllers.Main.txtTableOfContents": "Змест", + "DE.Controllers.Main.txtTableOfFigures": "Спіс ілюстрацый", "DE.Controllers.Main.txtTooLarge": "Лік занадта вялікі для фарматавання", "DE.Controllers.Main.txtTypeEquation": "Месца для раўнання.", "DE.Controllers.Main.txtUndefBookmark": "Закладка не вызначаная", @@ -820,6 +857,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Вам адмоўлена ў правах на рэдагаванне гэтага файла.", "DE.Controllers.Navigation.txtBeginning": "Пачатак дакумента", "DE.Controllers.Navigation.txtGotoBeginning": "Перайсці да пачатку дакумента", + "DE.Controllers.Search.warnReplaceString": "{0} не пасуе ў якасці адмысловага сімвала для поля \"Замяніць на\".", "DE.Controllers.Statusbar.textDisconnect": "Злучэнне страчана
Выконваецца спроба падлучэння. Праверце налады.", "DE.Controllers.Statusbar.textHasChanges": "Адсочаны новыя змены", "DE.Controllers.Statusbar.textTrackChanges": "Дакумент адкрыты з уключаным рэжымам адсочвання зменаў.", @@ -1162,8 +1200,9 @@ "DE.Controllers.Toolbar.txtSymbol_vdots": "Вертыкальнае шматкроп’е", "DE.Controllers.Toolbar.txtSymbol_xsi": "Ксі", "DE.Controllers.Toolbar.txtSymbol_zeta": "Дзэта", - "DE.Controllers.Viewport.textFitPage": "Па памерах старонкі", + "DE.Controllers.Viewport.textFitPage": "Па памеры старонкі", "DE.Controllers.Viewport.textFitWidth": "Па шырыні", + "DE.Controllers.Viewport.txtDarkMode": "Цёмны рэжым", "DE.Views.AddNewCaptionLabelDialog.textLabel": "Адмеціна:", "DE.Views.AddNewCaptionLabelDialog.textLabelError": "Адмеціна не можа быць пустой", "DE.Views.BookmarksDialog.textAdd": "Дадаць", @@ -1372,10 +1411,11 @@ "DE.Views.DocumentHolder.splitCellTitleText": "Падзяліць ячэйку", "DE.Views.DocumentHolder.strDelete": "Выдаліць подпіс", "DE.Views.DocumentHolder.strDetails": "Падрабязнасці подпісу", - "DE.Views.DocumentHolder.strSetup": "Наладка подпісу", + "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": "Перамясціць у фон", @@ -1394,6 +1434,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": "Адлюстраваць па вертыкалі", @@ -1507,6 +1548,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": "Выдаліць верхні індэкс", @@ -1526,6 +1568,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": "Межы і заліўка", @@ -1575,12 +1618,13 @@ "DE.Views.EditListItemDialog.textValueError": "Элемент з такой назвай ужо існуе.", "DE.Views.FileMenu.btnBackCaption": "Перайсці да дакументаў", "DE.Views.FileMenu.btnCloseMenuCaption": "Закрыць меню", - "DE.Views.FileMenu.btnCreateNewCaption": "Стварыць новы", + "DE.Views.FileMenu.btnCreateNewCaption": "Стварыць", "DE.Views.FileMenu.btnDownloadCaption": "Спампаваць як", + "DE.Views.FileMenu.btnExitCaption": "Закрыць", "DE.Views.FileMenu.btnHelpCaption": "Даведка", "DE.Views.FileMenu.btnHistoryCaption": "Гісторыя версій", "DE.Views.FileMenu.btnInfoCaption": "Інфармацыя пра дакумент", - "DE.Views.FileMenu.btnPrintCaption": "Друк", + "DE.Views.FileMenu.btnPrintCaption": "Друкаванне", "DE.Views.FileMenu.btnProtectCaption": "Абараніць", "DE.Views.FileMenu.btnRecentFilesCaption": "Адкрыць апошнія", "DE.Views.FileMenu.btnRenameCaption": "Змяніць назву", @@ -1593,7 +1637,7 @@ "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": "Дадаць тэкст", @@ -1602,6 +1646,7 @@ "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": "Апошняя змена", @@ -1638,6 +1683,7 @@ "DE.Views.FileMenuPanels.Settings.strPasteButton": "Паказваць кнопку параметраў устаўкі падчас устаўкі", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Адлюстроўваць змены падчас сумеснай працы", "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 хвілін", @@ -1655,7 +1701,9 @@ "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Параметры аўтазамены…", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Прадвызначаны рэжым кэшу", "DE.Views.FileMenuPanels.Settings.txtCm": "Сантыметр", - "DE.Views.FileMenuPanels.Settings.txtFitPage": "Па памерах старонкі", + "DE.Views.FileMenuPanels.Settings.txtCollaboration": "Сумесная праца", + "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Рэдагаванне і захаванне", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "Па памеры старонкі", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Па шырыні", "DE.Views.FileMenuPanels.Settings.txtInch": "Цаля", "DE.Views.FileMenuPanels.Settings.txtLast": "Праглядзець апошнія", @@ -1674,26 +1722,49 @@ "DE.Views.FileMenuPanels.Settings.txtWin": "як Windows", "DE.Views.FormSettings.textAlways": "Заўсёды", "DE.Views.FormSettings.textAspect": "Захоўваць прапорцыі", + "DE.Views.FormSettings.textAtLeast": "Мінімум", + "DE.Views.FormSettings.textAuto": "Аўта", "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.textComplex": "Складанае поле", + "DE.Views.FormSettings.textConnected": "Падлучаныя палі", "DE.Views.FormSettings.textDelete": "Выдаліць", + "DE.Views.FormSettings.textDigits": "Лічбы", + "DE.Views.FormSettings.textDisconnect": "Адключыць", + "DE.Views.FormSettings.textDropDown": "Выплыўны спіс", + "DE.Views.FormSettings.textExact": "Дакладна", + "DE.Views.FormSettings.textFormatSymbols": "Дазволеныя сімвалы", "DE.Views.FormSettings.textFromFile": "З файла", "DE.Views.FormSettings.textFromStorage": "Са сховішча", "DE.Views.FormSettings.textFromUrl": "Па URL", + "DE.Views.FormSettings.textMask": "Адвольная маска", + "DE.Views.FormSettings.textMaxChars": "Ліміт знакаў", "DE.Views.FormSettings.textNever": "Ніколі", "DE.Views.FormSettings.textNoBorder": "Без межаў", "DE.Views.FormSettings.textPlaceholder": "Запаўняльнік", "DE.Views.FormSettings.textRequired": "Патрабуецца", "DE.Views.FormSettings.textSelectImage": "Абраць выяву", "DE.Views.FormSettings.textTipAdd": "Дадаць новае значэнне", + "DE.Views.FormSettings.textTipDelete": "Выдаліць значэнне", "DE.Views.FormSettings.textTipDown": "Перамясціць уніз", "DE.Views.FormSettings.textTipUp": "Перамясціць уверх", "DE.Views.FormSettings.textWidth": "Шырыня ячэйкі", + "DE.Views.FormsTab.capBtnCheckBox": "Адзнака", "DE.Views.FormsTab.capBtnComboBox": "Поле са спісам", + "DE.Views.FormsTab.capBtnComplex": "Складанае поле", + "DE.Views.FormsTab.capBtnDownloadForm": "Спампаваць як oform", + "DE.Views.FormsTab.capBtnDropDown": "Выплыўны спіс", + "DE.Views.FormsTab.capBtnEmail": "Адрас электроннай пошты", + "DE.Views.FormsTab.textClear": "Ачысціць палі", + "DE.Views.FormsTab.textClearFields": "Ачысціць усе палі", "DE.Views.FormsTab.textCreateForm": "Дадайце палі і стварыце запаўняльны дакумент OFORM", "DE.Views.FormsTab.textNoHighlight": "Без падсвятлення", + "DE.Views.FormsTab.textRequired": "Запоўніце ўсе абавязковыя палі, патрэбныя для адпраўлення формы. ", + "DE.Views.FormsTab.tipDownloadForm": "Спампаваць файл як дакумент OFORM", "DE.Views.FormsTab.tipImageField": "Уставіць выяву", "DE.Views.FormsTab.txtUntitled": "Без назвы", "DE.Views.HeaderFooterSettings.textBottomCenter": "Знізу па цэнтры", @@ -1732,6 +1803,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": "Упісаць", @@ -1843,6 +1915,7 @@ "DE.Views.LeftMenu.tipSupport": "Зваротная сувязь і падтрымка", "DE.Views.LeftMenu.tipTitles": "Загалоўкі", "DE.Views.LeftMenu.txtDeveloper": "РЭЖЫМ РАСПРАЦОЎШЧЫКА", + "DE.Views.LeftMenu.txtEditor": "Рэдактар дакументаў", "DE.Views.LeftMenu.txtTrial": "ПРОБНЫ РЭЖЫМ", "DE.Views.LineNumbersDialog.textAddLineNumbering": "Дадаць нумарацыю радкоў", "DE.Views.LineNumbersDialog.textApplyTo": "Ужыць змены", @@ -1858,6 +1931,7 @@ "DE.Views.LineNumbersDialog.textStartAt": "Пачаць з", "DE.Views.LineNumbersDialog.textTitle": "Нумарацыя радкоў", "DE.Views.LineNumbersDialog.txtAutoText": "Аўта", + "DE.Views.Links.capBtnAddText": "Дадаць тэкст", "DE.Views.Links.capBtnBookmarks": "Закладка", "DE.Views.Links.capBtnCaption": "Назва", "DE.Views.Links.capBtnContentsUpdate": "Абнавіць табліцу", @@ -1865,7 +1939,9 @@ "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": "Уставіць канцавую зноску", @@ -1887,6 +1963,7 @@ "DE.Views.Links.tipCrossRef": "Уставіць скрыжаваную спасылку", "DE.Views.Links.tipInsertHyperlink": "Дадаць гіперспасылку", "DE.Views.Links.tipNotes": "Уставіць альбо рэдагаваць зноскі", + "DE.Views.Links.txtDontShowTof": "Не ўключаць у змест", "DE.Views.ListSettingsDialog.textAuto": "Аўтаматычна", "DE.Views.ListSettingsDialog.textCenter": "Па цэнтры", "DE.Views.ListSettingsDialog.textLeft": "Па леваму краю", @@ -1951,6 +2028,7 @@ "DE.Views.MailMergeSettings.txtPrev": "Папярэдні запіс", "DE.Views.MailMergeSettings.txtUntitled": "Без назвы", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Не атрымалася распачаць аб’яднанне", + "DE.Views.Navigation.txtClosePanel": "Закрыць загалоўкі", "DE.Views.Navigation.txtCollapse": "Згарнуць усе", "DE.Views.Navigation.txtDemote": "Панізіць узровень", "DE.Views.Navigation.txtEmpty": "У гэтага дакумента няма загалоўка
Выкарыстайце стыль загалоўка да тэксту, каб ён з’явіўся ў змесце.", @@ -1967,6 +2045,7 @@ "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": "У кожным раздзеле", @@ -2006,10 +2085,11 @@ "DE.Views.PageMarginsDialog.txtMarginsH": "Верхняе і ніжняе палі занадта высокія для вызначанай вышыні старонкі", "DE.Views.PageMarginsDialog.txtMarginsW": "Левае і правае поле занадта шырокія для гэтай шырыні старонкі", "DE.Views.PageSizeDialog.textHeight": "Вышыня", - "DE.Views.PageSizeDialog.textPreset": "Перадналадка", + "DE.Views.PageSizeDialog.textPreset": "Папярэдняе наладжванне", "DE.Views.PageSizeDialog.textTitle": "Памер старонкі", "DE.Views.PageSizeDialog.textWidth": "Шырыня", "DE.Views.PageSizeDialog.txtCustom": "Адвольны", + "DE.Views.PageThumbnails.textClosePanel": "Закрыць мініяцюры старонак", "DE.Views.ParagraphSettings.strIndent": "Водступы", "DE.Views.ParagraphSettings.strIndentsLeftText": "Злева", "DE.Views.ParagraphSettings.strIndentsRightText": "Справа", @@ -2058,6 +2138,7 @@ "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Забараніць нумарацыю радкоў", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Табуляцыя", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Выраўноўванне", + "DE.Views.ParagraphSettingsAdvanced.textAll": "Усе", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Мінімум", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Множнік", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Колер фону", @@ -2068,7 +2149,12 @@ "DE.Views.ParagraphSettingsAdvanced.textBottom": "Знізу", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Па цэнтры", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Прамежак паміж знакамі", + "DE.Views.ParagraphSettingsAdvanced.textContext": "Кантэкстныя", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Кантэкстныя і дыскрэцыйныя", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Кантэкстныя, гістарычныя і дыскрэцыйныя", + "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Кантэкстныя і гістарычныя", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Прадвызначана", + "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Дыскрэцыйныя", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Эфекты", "DE.Views.ParagraphSettingsAdvanced.textExact": "Дакладна", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Першы радок", @@ -2179,19 +2265,20 @@ "DE.Views.SignatureSettings.strDetails": "Падрабязнасці подпісу", "DE.Views.SignatureSettings.strInvalid": "Хібныя подпісы", "DE.Views.SignatureSettings.strRequested": "Запытаныя подпісы", - "DE.Views.SignatureSettings.strSetup": "Наладка подпісу", + "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.tipFitPage": "Па памеры старонкі", "DE.Views.Statusbar.tipFitWidth": "Па шырыні", "DE.Views.Statusbar.tipSetLang": "Абраць мову тэксту", "DE.Views.Statusbar.tipZoomFactor": "Маштаб", @@ -2227,9 +2314,11 @@ "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.txtModern": "Сучасны", "DE.Views.TableOfContentsSettings.txtOnline": "Анлайн", "DE.Views.TableOfContentsSettings.txtSimple": "Просты", @@ -2257,6 +2346,7 @@ "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": "Радкі і слупкі", @@ -2361,7 +2451,9 @@ "DE.Views.TableSettingsAdvanced.txtNoBorders": "Без межаў", "DE.Views.TableSettingsAdvanced.txtPercent": "Адсотак", "DE.Views.TableSettingsAdvanced.txtPt": "Пункт", + "DE.Views.TableToTextDialog.textNested": "Пераўтварэнне ўкладзеных табліц", "DE.Views.TableToTextDialog.textOther": "Іншае", + "DE.Views.TableToTextDialog.textTitle": "Пераўтварыць табліцу ў тэкст", "DE.Views.TextArtSettings.strColor": "Колер", "DE.Views.TextArtSettings.strFill": "Заліўка", "DE.Views.TextArtSettings.strSize": "Памер", @@ -2391,6 +2483,7 @@ "DE.Views.TextToTableDialog.textOther": "Іншае", "DE.Views.TextToTableDialog.textPara": "Абзацы", "DE.Views.TextToTableDialog.textTableSize": "Памеры табліцы", + "DE.Views.TextToTableDialog.textTitle": "Пераўтварыць тэкст у табліцу", "DE.Views.TextToTableDialog.textWindow": "Аўтазапаўненне па шырыні акна", "DE.Views.TextToTableDialog.txtAutoText": "Аўта", "DE.Views.Toolbar.capBtnAddComment": "Дадаць каментар", @@ -2432,15 +2525,17 @@ "DE.Views.Toolbar.mniFromStorage": "Са сховішча", "DE.Views.Toolbar.mniFromUrl": "Па URL", "DE.Views.Toolbar.mniHiddenBorders": "Схаваныя межы табліц", - "DE.Views.Toolbar.mniHiddenChars": "Недрукуемыя сімвалы", + "DE.Views.Toolbar.mniHiddenChars": "Сімвалы, якія не друкуюцца", "DE.Views.Toolbar.mniHighlightControls": "Налады падсвятлення", "DE.Views.Toolbar.mniImageFromFile": "Выява з файла", "DE.Views.Toolbar.mniImageFromStorage": "Выява са сховішча", "DE.Views.Toolbar.mniImageFromUrl": "Выява па URL", + "DE.Views.Toolbar.mniTextToTable": "Пераўтварыць тэкст у табліцу", "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": "Злева", @@ -2526,6 +2621,7 @@ "DE.Views.Toolbar.tipControls": "Уставіць элемент кіравання змесцівам", "DE.Views.Toolbar.tipCopy": "Капіяваць", "DE.Views.Toolbar.tipCopyStyle": "Скапіяваць стыль", + "DE.Views.Toolbar.tipCut": "Выразаць", "DE.Views.Toolbar.tipDateTime": "Уставіць быгучую назву і час", "DE.Views.Toolbar.tipDecFont": "Паменшыць памер шрыфту", "DE.Views.Toolbar.tipDecPrLeft": "Паменшыць водступ", @@ -2554,6 +2650,11 @@ "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.tipMultilevels": "Шматузроўневы спіс", "DE.Views.Toolbar.tipNumbers": "Пранумараваны спіс", "DE.Views.Toolbar.tipPageBreak": "Уставіць разрыў старонкі альбо раздзела", @@ -2563,13 +2664,13 @@ "DE.Views.Toolbar.tipParagraphStyle": "Стыль абзаца", "DE.Views.Toolbar.tipPaste": "Уставіць", "DE.Views.Toolbar.tipPrColor": "Колер фону абзаца", - "DE.Views.Toolbar.tipPrint": "Друк", + "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.tipShowHiddenChars": "Сімвалы, якія не друкуюцца", "DE.Views.Toolbar.tipSynchronize": "Дакумент быў зменены іншым карыстальнікам. Націсніце, каб захаваць свае змены і загрузіць абнаўленні.", "DE.Views.Toolbar.tipUndo": "Адрабіць", "DE.Views.Toolbar.tipWatermark": "Рэдагаваць падкладку", @@ -2600,8 +2701,15 @@ "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.textNavigation": "Навігацыя", "DE.Views.ViewTab.textZoom": "Маштаб", + "DE.Views.ViewTab.tipDarkDocument": "Цёмны дакумент", + "DE.Views.ViewTab.tipFitToPage": "Па памеры старонкі", + "DE.Views.ViewTab.tipFitToWidth": "Па шырыні", + "DE.Views.ViewTab.tipInterfaceTheme": "Тэма інтэрфейсу", "DE.Views.WatermarkSettingsDialog.textAuto": "Аўта", "DE.Views.WatermarkSettingsDialog.textBold": "Тоўсты", "DE.Views.WatermarkSettingsDialog.textColor": "Колер тэксту", diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json index 8ba08d473..2d9f26f80 100644 --- a/apps/documenteditor/main/locale/bg.json +++ b/apps/documenteditor/main/locale/bg.json @@ -170,11 +170,7 @@ "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.textAdvSettings": "Разширени настройки", @@ -327,7 +323,6 @@ "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": "Заглавие на подписващия", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index b235a9c97..9d06a7e85 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -125,6 +125,61 @@ "Common.define.chartData.textScatterSmoothMarker": "Dispersió amb línies suaus i marcadors", "Common.define.chartData.textStock": "Accions", "Common.define.chartData.textSurface": "Superfície", + "Common.define.smartArt.textAccentedPicture": "Imatge amb èmfasi", + "Common.define.smartArt.textAccentProcess": "Procés d'èmfasi", + "Common.define.smartArt.textAlternatingFlow": "Flux alternatiu", + "Common.define.smartArt.textAlternatingHexagons": "Hexàgons alternants", + "Common.define.smartArt.textAlternatingPictureBlocks": "Blocs d'imatges alternatius", + "Common.define.smartArt.textAlternatingPictureCircles": "Cercles d'imatges alternatius", + "Common.define.smartArt.textArchitectureLayout": "Disposició de l'arquitectura", + "Common.define.smartArt.textArrowRibbon": "Banda amb fletxes", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Procés d'èmfasi d'imatge ascendent", + "Common.define.smartArt.textBalance": "Saldo", + "Common.define.smartArt.textBasicBendingProcess": "Procés corb bàsic", + "Common.define.smartArt.textBasicBlockList": "Llista de blocs bàsica", + "Common.define.smartArt.textBasicChevronProcess": "Procés angular bàsic", + "Common.define.smartArt.textBasicCycle": "Cicle bàsic", + "Common.define.smartArt.textBasicMatrix": "Matriu bàsica", + "Common.define.smartArt.textBasicPie": "Circular bàsic", + "Common.define.smartArt.textBasicProcess": "Procés bàsic", + "Common.define.smartArt.textBasicPyramid": "Piràmide bàsica", + "Common.define.smartArt.textBasicRadial": "Radial bàsic", + "Common.define.smartArt.textBasicTarget": "Destinació bàsica", + "Common.define.smartArt.textBasicTimeline": "Cronologia bàsica", + "Common.define.smartArt.textBasicVenn": "Venn bàsic", + "Common.define.smartArt.textBendingPictureAccentList": "Llista d'èmfasi d'imatges corba", + "Common.define.smartArt.textBendingPictureBlocks": "Blocs d'imatges corbes", + "Common.define.smartArt.textBendingPictureCaption": "Llegenda d'imatge corba", + "Common.define.smartArt.textBendingPictureCaptionList": "Llista de llegendes d'imatges corba", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "Text d'imatge semitransparent corb", + "Common.define.smartArt.textBlockCycle": "Cicle de blocs", + "Common.define.smartArt.textBubblePictureList": "Llista d'imatges de bombolla", + "Common.define.smartArt.textCaptionedPictures": "Imatges amb llegenda", + "Common.define.smartArt.textChevronAccentProcess": "Procés d'èmfasi angular", + "Common.define.smartArt.textChevronList": "Llista angular", + "Common.define.smartArt.textCircleAccentTimeline": "Cronologia d'èmfasi de cercle", + "Common.define.smartArt.textCircleArrowProcess": "Procés de fletxa circular", + "Common.define.smartArt.textCirclePictureHierarchy": "Jerarquia d'imatge circular", + "Common.define.smartArt.textCircleProcess": "Procés circular", + "Common.define.smartArt.textCircleRelationship": "Relació circular", + "Common.define.smartArt.textCircularBendingProcess": "Procés corb circular", + "Common.define.smartArt.textCircularPictureCallout": "Crida d'imatge circular", + "Common.define.smartArt.textClosedChevronProcess": "Procés angular tancat", + "Common.define.smartArt.textContinuousArrowProcess": "Procés de fletxes continu", + "Common.define.smartArt.textContinuousBlockProcess": "Procés de blocs continu", + "Common.define.smartArt.textContinuousCycle": "Cicle continu", + "Common.define.smartArt.textContinuousPictureList": "Llista d'imatges contínua", + "Common.define.smartArt.textConvergingArrows": "Fletxes convergents", + "Common.define.smartArt.textConvergingRadial": "Radial convergent", + "Common.define.smartArt.textConvergingText": "Text convergent", + "Common.define.smartArt.textCounterbalanceArrows": "Fletxes de contrapès", + "Common.define.smartArt.textCycle": "Cicle", + "Common.define.smartArt.textCycleMatrix": "Matriu de cicle", + "Common.define.smartArt.textDescendingBlockList": "Llista de blocs descendents", + "Common.define.smartArt.textDescendingProcess": "Procés descendent", + "Common.define.smartArt.textDetailedProcess": "Procés detallat", + "Common.define.smartArt.textDivergingArrows": "Fletxes divergents", + "Common.define.smartArt.textDivergingRadial": "Radial divergent", "Common.Translation.textMoreButton": "Més", "Common.Translation.warnFileLocked": "No pots editar aquest fitxer perquè és obert en una altra aplicació.", "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", @@ -287,14 +342,9 @@ "Common.Views.CopyWarningDialog.textToPaste": "Per enganxar", "Common.Views.DocumentAccessDialog.textLoading": "S'està carregant...", "Common.Views.DocumentAccessDialog.textTitle": "Configuració per compartir", - "Common.Views.ExternalDiagramEditor.textClose": "Tanca", - "Common.Views.ExternalDiagramEditor.textSave": "Desa i surt", "Common.Views.ExternalDiagramEditor.textTitle": "Editor de gràfics", - "Common.Views.ExternalMergeEditor.textClose": "Tanca", - "Common.Views.ExternalMergeEditor.textSave": "Desa i surt", + "Common.Views.ExternalEditor.textClose": "Tanca", "Common.Views.ExternalMergeEditor.textTitle": "Destinataris de la combinació de la correspondència", - "Common.Views.ExternalOleEditor.textClose": "Tancar", - "Common.Views.ExternalOleEditor.textSave": "Desar i Surtir", "Common.Views.ExternalOleEditor.textTitle": "Editor del full de càlcul", "Common.Views.Header.labelCoUsersDescr": "Usuaris que editen el fitxer:", "Common.Views.Header.textAddFavorite": "Marca-ho com a preferit", @@ -360,6 +410,7 @@ "Common.Views.Plugins.textStart": "Inici", "Common.Views.Plugins.textStop": "Atura", "Common.Views.Protection.hintAddPwd": "Xifra amb contrasenya", + "Common.Views.Protection.hintDelPwd": "Suprimeix la contrasenya", "Common.Views.Protection.hintPwd": "Canvia o suprimeix la contrasenya", "Common.Views.Protection.hintSignature": "Afegeix una signatura digital o una línia de signatura", "Common.Views.Protection.txtAddPwd": "Afegeix una contrasenya", @@ -505,7 +556,7 @@ "Common.Views.SignDialog.tipFontName": "Nom de la lletra", "Common.Views.SignDialog.tipFontSize": "Mida de la lletra", "Common.Views.SignSettingsDialog.textAllowComment": "Permet al signant afegir comentaris al diàleg de signatura", - "Common.Views.SignSettingsDialog.textInfo": "Informació del signant", + "Common.Views.SignSettingsDialog.textDefInstruction": "Abans de signar aquest document, comproveu que el contingut és correcte.", "Common.Views.SignSettingsDialog.textInfoEmail": "Correu electrònic", "Common.Views.SignSettingsDialog.textInfoName": "Nom", "Common.Views.SignSettingsDialog.textInfoTitle": "Títol del signant", @@ -647,6 +698,7 @@ "DE.Controllers.Main.textClose": "Tanca", "DE.Controllers.Main.textCloseTip": "Feu clic per tancar el consell", "DE.Controllers.Main.textContactUs": "Contacta amb vendes", + "DE.Controllers.Main.textContinue": "Continua", "DE.Controllers.Main.textConvertEquation": "Aquesta equació es va crear amb una versió antiga de l'editor d'equacions que ja no és compatible. Per editar-la, converteix l’equació al format d’Office Math ML.
Vols convertir-ho ara?", "DE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu dret a canviar el carregador.
Contacteu amb el nostre departament de vendes per obtenir un pressupost.", "DE.Controllers.Main.textDisconnect": "S'ha perdut la connexió", @@ -1336,8 +1388,13 @@ "DE.Views.CellsAddDialog.textRow": "Files", "DE.Views.CellsAddDialog.textTitle": "Insereix diversos", "DE.Views.CellsAddDialog.textUp": "Per damunt del cursor", + "DE.Views.ChartSettings.text3dDepth": "Profunditat (% de la base)", + "DE.Views.ChartSettings.text3dRotation": "Rotació 3D", "DE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada", + "DE.Views.ChartSettings.textAutoscale": "Escala automàtica", "DE.Views.ChartSettings.textChartType": "Canvia el tipus de gràfic", + "DE.Views.ChartSettings.textDefault": "Rotació per defecte", + "DE.Views.ChartSettings.textDown": "Avall", "DE.Views.ChartSettings.textEditData": "Edita les dades", "DE.Views.ChartSettings.textHeight": "Alçada", "DE.Views.ChartSettings.textOriginalSize": "Mida real", @@ -1435,6 +1492,8 @@ "DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textUpdate": "Actualitza automàticament", "DE.Views.DateTimeDialog.txtTitle": "Hora i data", + "DE.Views.DocProtection.hintProtectDoc": "Protegir document", + "DE.Views.DocProtection.txtProtectDoc": "Protegir document", "DE.Views.DocumentHolder.aboveText": "A dalt", "DE.Views.DocumentHolder.addCommentText": "Afegeix un comentari", "DE.Views.DocumentHolder.advancedDropCapText": "Configuració de la lletra de caixa alta", @@ -1443,6 +1502,8 @@ "DE.Views.DocumentHolder.advancedTableText": "Configuració avançada de la taula", "DE.Views.DocumentHolder.advancedText": "Configuració avançada", "DE.Views.DocumentHolder.alignmentText": "Alineació", + "DE.Views.DocumentHolder.allLinearText": "Tot lineal", + "DE.Views.DocumentHolder.allProfText": "Tot professional", "DE.Views.DocumentHolder.belowText": "Més avall", "DE.Views.DocumentHolder.breakBeforeText": "Salt de pàgina anterior", "DE.Views.DocumentHolder.bulletsText": "Pics i numeració", @@ -1451,6 +1512,8 @@ "DE.Views.DocumentHolder.centerText": "Centra", "DE.Views.DocumentHolder.chartText": "Configuració avançada del gràfic", "DE.Views.DocumentHolder.columnText": "Columna", + "DE.Views.DocumentHolder.currLinearText": "Lineal - actual", + "DE.Views.DocumentHolder.currProfText": "Professional - actual", "DE.Views.DocumentHolder.deleteColumnText": "Suprimeix la columna", "DE.Views.DocumentHolder.deleteRowText": "Suprimeix la fila", "DE.Views.DocumentHolder.deleteTableText": "Suprimeix la taula", @@ -1463,6 +1526,7 @@ "DE.Views.DocumentHolder.editFooterText": "Edita el peu de pàgina", "DE.Views.DocumentHolder.editHeaderText": "Edita la capçalera", "DE.Views.DocumentHolder.editHyperlinkText": "Edita l'enllaç", + "DE.Views.DocumentHolder.eqToInlineText": "Canvia a Inline", "DE.Views.DocumentHolder.guestText": "Convidat", "DE.Views.DocumentHolder.hyperlinkText": "Enllaç", "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignora-ho tot", @@ -2380,6 +2444,11 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Estableix només la vora superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sense vores", + "DE.Views.ProtectDialog.textComments": "Comentaris", + "DE.Views.ProtectDialog.txtAllow": "Només permet aquest tipus d'edició del document", + "DE.Views.ProtectDialog.txtIncorrectPwd": "La contrasenya de confirmació no és idèntica", + "DE.Views.ProtectDialog.txtProtect": "Protegir", + "DE.Views.ProtectDialog.txtTitle": "Protegir", "DE.Views.RightMenu.txtChartSettings": "Configuració del gràfic", "DE.Views.RightMenu.txtFormSettings": "Configuració del formulari\n\t", "DE.Views.RightMenu.txtHeaderFooterSettings": "Configuració de la capçalera i el peu de pàgina", @@ -2570,8 +2639,12 @@ "DE.Views.TableSettings.tipOuter": "Estableix només la vora exterior", "DE.Views.TableSettings.tipRight": "Estableix només la vora exterior dreta", "DE.Views.TableSettings.tipTop": "Estableix només la vora superior externa", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Taules amb vores i línies", + "DE.Views.TableSettings.txtGroupTable_Custom": "personalitzat", "DE.Views.TableSettings.txtNoBorders": "Sense vores", "DE.Views.TableSettings.txtTable_Accent": "Accent", + "DE.Views.TableSettings.txtTable_Bordered": "Amb vores", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "Amb vores i línies", "DE.Views.TableSettings.txtTable_Colorful": "Multicolor", "DE.Views.TableSettings.txtTable_Dark": "Fosc", "DE.Views.TableSettings.txtTable_GridTable": "Taula amb quadrícula", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index 36ccc5671..d86081414 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -286,14 +286,8 @@ "Common.Views.CopyWarningDialog.textToPaste": "pro vložení", "Common.Views.DocumentAccessDialog.textLoading": "Načítání…", "Common.Views.DocumentAccessDialog.textTitle": "Nastavení sdílení", - "Common.Views.ExternalDiagramEditor.textClose": "Zavřít", - "Common.Views.ExternalDiagramEditor.textSave": "Uložit a odejít", "Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu", - "Common.Views.ExternalMergeEditor.textClose": "Zavřít", - "Common.Views.ExternalMergeEditor.textSave": "Uložit a odejít", "Common.Views.ExternalMergeEditor.textTitle": "Příjemci korespondence", - "Common.Views.ExternalOleEditor.textClose": "Zavřít", - "Common.Views.ExternalOleEditor.textSave": "Uložit a ukončit", "Common.Views.ExternalOleEditor.textTitle": "Tabulkový editor", "Common.Views.Header.labelCoUsersDescr": "Uživatelé, kteří soubor právě upravují:", "Common.Views.Header.textAddFavorite": "Označit jako oblíbené", @@ -502,7 +496,6 @@ "Common.Views.SignDialog.tipFontName": "Název písma", "Common.Views.SignDialog.tipFontSize": "Velikost písma", "Common.Views.SignSettingsDialog.textAllowComment": "Umožnit podepisujícímu přidat komentář", - "Common.Views.SignSettingsDialog.textInfo": "Informace o podepisujícím", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Název", "Common.Views.SignSettingsDialog.textInfoTitle": "Nadpis podepisujícího", diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json index 4e03c266d..49340958d 100644 --- a/apps/documenteditor/main/locale/da.json +++ b/apps/documenteditor/main/locale/da.json @@ -9,6 +9,10 @@ "Common.Controllers.ExternalMergeEditor.textClose": "Luk", "Common.Controllers.ExternalMergeEditor.warningText": "Objektet er slået fra da det bliver redigeret af en anden bruger. ", "Common.Controllers.ExternalMergeEditor.warningTitle": "Advarsel", + "Common.Controllers.ExternalOleEditor.textAnonymous": "Anonym", + "Common.Controllers.ExternalOleEditor.textClose": "Afslut", + "Common.Controllers.ExternalOleEditor.warningText": "Objektet er deaktiveret, da det redigeres af en anden bruger.", + "Common.Controllers.ExternalOleEditor.warningTitle": "Advarsel", "Common.Controllers.History.notcriticalErrorTitle": "Advarsel", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "For at sammenligne dokumenter vil alle noterede ændringer i dokumenterne opfattes som godkendt. Ønsker du at fortsætte?", "Common.Controllers.ReviewChanges.textAtLeast": "Mindst", @@ -21,14 +25,14 @@ "Common.Controllers.ReviewChanges.textChar": "Tegn-niveau", "Common.Controllers.ReviewChanges.textChart": "Diagram", "Common.Controllers.ReviewChanges.textColor": "Skriftfarve", - "Common.Controllers.ReviewChanges.textContextual": "Tilføj ikke intervaller imellem afsnit af samme type", + "Common.Controllers.ReviewChanges.textContextual": "Tilføj ikke intervaller imellem afsnit af samme typografi", "Common.Controllers.ReviewChanges.textDeleted": "Slettet:", "Common.Controllers.ReviewChanges.textDStrikeout": "Dobbelt gennemstregning", "Common.Controllers.ReviewChanges.textEquation": "Formel", "Common.Controllers.ReviewChanges.textExact": "Præcis", "Common.Controllers.ReviewChanges.textFirstLine": "Første linie", "Common.Controllers.ReviewChanges.textFontSize": "Skriftstørrelse", - "Common.Controllers.ReviewChanges.textFormatted": "Formatteret", + "Common.Controllers.ReviewChanges.textFormatted": "Formateret", "Common.Controllers.ReviewChanges.textHighlight": "Fremhæv farve", "Common.Controllers.ReviewChanges.textImage": "Billede", "Common.Controllers.ReviewChanges.textIndentLeft": "Indryk fra venstre", @@ -42,7 +46,7 @@ "Common.Controllers.ReviewChanges.textLineSpacing": "Linie afstand", "Common.Controllers.ReviewChanges.textMultiple": "Flere", "Common.Controllers.ReviewChanges.textNoBreakBefore": "Ingen sideskift før", - "Common.Controllers.ReviewChanges.textNoContextual": "Tilføj interval imellem", + "Common.Controllers.ReviewChanges.textNoContextual": "Tilføj interval mellem afsnit af samme typografi", "Common.Controllers.ReviewChanges.textNoKeepLines": "Hold ikke linier sammen", "Common.Controllers.ReviewChanges.textNoKeepNext": "Hold ikke med næste", "Common.Controllers.ReviewChanges.textNot": "Ikke", @@ -161,15 +165,21 @@ "Common.UI.Calendar.textYears": "år", "Common.UI.ComboBorderSize.txtNoBorders": "Ingen rammer", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ingen rammer", - "Common.UI.ComboDataView.emptyComboText": "Ingen stilarter", + "Common.UI.ComboDataView.emptyComboText": "Ingen typografier", "Common.UI.ExtendedColorDialog.addButtonText": "Tilføj", "Common.UI.ExtendedColorDialog.textCurrent": "Nuværende", "Common.UI.ExtendedColorDialog.textHexErr": "Den indtastede værdi er ikke korrekt.
Venligst indtast en værdi mellem 000000 og FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Ny", "Common.UI.ExtendedColorDialog.textRGBErr": "Den indtastede værdi er ikke korrekt.
Venligst indtast en numerisk værdi mellem 0 og 255.", "Common.UI.HSBColorPicker.textNoColor": "Ingen farve", + "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Gem kodeord", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Vis kodeord", + "Common.UI.SearchBar.textFind": "Find", + "Common.UI.SearchBar.tipCloseSearch": "Luk søgning", + "Common.UI.SearchBar.tipNextResult": "Næste resultat", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Åben avancerede indstillinger", "Common.UI.SearchDialog.textHighlight": "Fremhæv resultater", - "Common.UI.SearchDialog.textMatchCase": "Afhængigt af store og små bokstaver", + "Common.UI.SearchDialog.textMatchCase": "Afhængigt af store og små bogstaver", "Common.UI.SearchDialog.textReplaceDef": "Skriv din erstatningstekst", "Common.UI.SearchDialog.textSearchStart": "Skriv din tekst her", "Common.UI.SearchDialog.textTitle": "Find og erstat", @@ -185,7 +195,8 @@ "Common.UI.Themes.txtThemeClassicLight": "Klassisk lys", "Common.UI.Themes.txtThemeDark": "Mørk", "Common.UI.Themes.txtThemeLight": "Lys", - "Common.UI.Window.cancelButtonText": "Afbryd", + "Common.UI.Themes.txtThemeSystem": "Samme som system", + "Common.UI.Window.cancelButtonText": "Annuller", "Common.UI.Window.closeButtonText": "Luk", "Common.UI.Window.noButtonText": "Nej", "Common.UI.Window.okButtonText": "OK", @@ -197,6 +208,8 @@ "Common.UI.Window.yesButtonText": "Ja", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textAlt": "Alternativ", + "Common.Utils.String.textCtrl": "Ctrl", "Common.Views.About.txtAddress": "Adresse:", "Common.Views.About.txtLicensee": "Licenstager", "Common.Views.About.txtLicensor": "Licensgiver", @@ -211,6 +224,8 @@ "Common.Views.AutoCorrectDialog.textBulleted": "Automatiske punktlister", "Common.Views.AutoCorrectDialog.textBy": "Af", "Common.Views.AutoCorrectDialog.textDelete": "Slet", + "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Tilføj punktum med dobbelt mellemrum", + "Common.Views.AutoCorrectDialog.textFLCells": "Gør det første bogstav i tabeller stort", "Common.Views.AutoCorrectDialog.textFLSentence": "Sæt første bogstav i sætninger med stort", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet- og netværksstier med hyperlinks", "Common.Views.AutoCorrectDialog.textHyphens": "Bindestreger (--) med streg (-)", @@ -236,12 +251,14 @@ "Common.Views.Comments.mniAuthorDesc": "Forfatter Z til A", "Common.Views.Comments.mniDateAsc": "Ældste", "Common.Views.Comments.mniDateDesc": "Nyeste", + "Common.Views.Comments.mniFilterGroups": "Filtrer på baggrund af gruppe", "Common.Views.Comments.mniPositionAsc": "Fra toppen", "Common.Views.Comments.mniPositionDesc": "Fra bunden", "Common.Views.Comments.textAdd": "Tilføj", "Common.Views.Comments.textAddComment": "Tilføj kommentar", "Common.Views.Comments.textAddCommentToDoc": "Tilføj kommentar til dokument", "Common.Views.Comments.textAddReply": "Tilføj svar", + "Common.Views.Comments.textAll": "Alle", "Common.Views.Comments.textAnonym": "Gæst", "Common.Views.Comments.textCancel": "Annuller", "Common.Views.Comments.textClose": "Luk", @@ -255,6 +272,8 @@ "Common.Views.Comments.textResolve": "Løs", "Common.Views.Comments.textResolved": "Løst", "Common.Views.Comments.textSort": "Sorter kommentarer", + "Common.Views.Comments.textViewResolved": "Du har ikke tilladelse til at genåbne kommentaren", + "Common.Views.Comments.txtEmpty": "Der er ingen kommentarer i dokumentet", "Common.Views.CopyWarningDialog.textDontShow": "Vis ikke denne meddelelse igen", "Common.Views.CopyWarningDialog.textMsg": "Kopier, klip og sæt ind handlinger ved brug af redigeringsværktøjets værktøjsbarknapper og kontekst menu handlinger vil kun blive foretaget i redigeringsfanen.

for at kopier og sætte ind til eller fra programmer uden for redigeringsværktøjet, skal du bruge følgende tastaturtaster: ", "Common.Views.CopyWarningDialog.textTitle": "Kopier, Klip og Indsæt handlinger", @@ -263,11 +282,9 @@ "Common.Views.CopyWarningDialog.textToPaste": "for sæt ind", "Common.Views.DocumentAccessDialog.textLoading": "Indlæser...", "Common.Views.DocumentAccessDialog.textTitle": "Indstillinger for deling", - "Common.Views.ExternalDiagramEditor.textClose": "Luk", - "Common.Views.ExternalDiagramEditor.textSave": "Gem og luk", "Common.Views.ExternalDiagramEditor.textTitle": "Diagram redigering", - "Common.Views.ExternalMergeEditor.textClose": "Luk", - "Common.Views.ExternalMergeEditor.textSave": "Gem og luk", + "Common.Views.ExternalEditor.textClose": "Afslut", + "Common.Views.ExternalEditor.textSave": "Gem og luk", "Common.Views.ExternalMergeEditor.textTitle": "Modtagere af mailfletning", "Common.Views.Header.labelCoUsersDescr": "Brugere som redigerer dokumentet:", "Common.Views.Header.textAddFavorite": "Markér som favorit", @@ -277,6 +294,7 @@ "Common.Views.Header.textHideLines": "Skjul lineal", "Common.Views.Header.textHideStatusBar": "Skjul statuslinie", "Common.Views.Header.textRemoveFavorite": "Fjern fra Favoritter", + "Common.Views.Header.textShare": "Del", "Common.Views.Header.textZoom": "Zoom", "Common.Views.Header.tipAccessRights": " Håndter adgangsrettigheder for dokument", "Common.Views.Header.tipDownload": "Hent fil", @@ -284,7 +302,9 @@ "Common.Views.Header.tipPrint": "Udskriv fil", "Common.Views.Header.tipRedo": "Fortryd", "Common.Views.Header.tipSave": "Gem", + "Common.Views.Header.tipSearch": "Søg", "Common.Views.Header.tipUndo": "Fortryd", + "Common.Views.Header.tipUsers": "Vis brugere", "Common.Views.Header.tipViewSettings": "Vis indstillinger", "Common.Views.Header.tipViewUsers": "Vis brugere og håndter dokumentrettighederne ", "Common.Views.Header.txtAccessRights": "Skift adgangsrettigheder", @@ -325,10 +345,12 @@ "Common.Views.PluginDlg.textLoading": "Indlæser", "Common.Views.Plugins.groupCaption": "Tilføjelsesprogrammer", "Common.Views.Plugins.strPlugins": "Tilføjelsesprogrammer", + "Common.Views.Plugins.textClosePanel": "Luk tilføjelser", "Common.Views.Plugins.textLoading": "Indlæser", "Common.Views.Plugins.textStart": "Start", "Common.Views.Plugins.textStop": "Stop", "Common.Views.Protection.hintAddPwd": "Krypter med adgangskode", + "Common.Views.Protection.hintDelPwd": "Slet kodeord", "Common.Views.Protection.hintPwd": "Ændre eller slet kodeord", "Common.Views.Protection.hintSignature": "Tilføj digital underskrift eller underskiftslinje", "Common.Views.Protection.txtAddPwd": "Tilføj kodeord", @@ -349,7 +371,7 @@ "Common.Views.ReviewChanges.strFast": "Hurtig", "Common.Views.ReviewChanges.strFastDesc": "Realtids co-redigering. Alle ændringer bliver gemt automatisk", "Common.Views.ReviewChanges.strStrict": "Striks", - "Common.Views.ReviewChanges.strStrictDesc": "Brug \"gem\" knappen for at synkronisere ændringer du og andre laver. ", + "Common.Views.ReviewChanges.strStrictDesc": "Brug \"gem\"-knappen for at synkronisere ændringer du og andre laver", "Common.Views.ReviewChanges.textEnable": "Aktivér", "Common.Views.ReviewChanges.textWarnTrackChanges": "Spor Ændringer slås TIL for alle brugere med fuld adgang. Næste gang en bruger åbner dokumentet, vil Spor Ændringer være aktiveret.", "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Aktivér spor ændringer for alle?", @@ -431,12 +453,28 @@ "Common.Views.ReviewPopover.textOpenAgain": "Åben igen", "Common.Views.ReviewPopover.textReply": "Svar", "Common.Views.ReviewPopover.textResolve": "Løs", + "Common.Views.ReviewPopover.textViewResolved": "Du har ikke tilladelse til at genåbne kommentaren", "Common.Views.ReviewPopover.txtAccept": "Accepter", "Common.Views.ReviewPopover.txtDeleteTip": "Slet", "Common.Views.ReviewPopover.txtEditTip": "Rediger", "Common.Views.ReviewPopover.txtReject": "Afvis", "Common.Views.SaveAsDlg.textLoading": "Indlæser", - "Common.Views.SaveAsDlg.textTitle": "Mappe til at gemme", + "Common.Views.SaveAsDlg.textTitle": "Mappe at gemme i", + "Common.Views.SearchPanel.textCaseSensitive": "Afhængigt af store og små bogstaver", + "Common.Views.SearchPanel.textCloseSearch": "Luk søgning", + "Common.Views.SearchPanel.textFind": "Find", + "Common.Views.SearchPanel.textFindAndReplace": "Find og erstat", + "Common.Views.SearchPanel.textNoMatches": "Ingen resultater", + "Common.Views.SearchPanel.textNoSearchResults": "Ingen søgeresultater", + "Common.Views.SearchPanel.textReplace": "Erstat", + "Common.Views.SearchPanel.textReplaceAll": "Erstat alle", + "Common.Views.SearchPanel.textReplaceWith": "Erstat med", + "Common.Views.SearchPanel.textSearchAgain": "{0}Udfør en ny søgning{1} efter præcise resultater.", + "Common.Views.SearchPanel.textSearchHasStopped": "Søgningen er afsluttet", + "Common.Views.SearchPanel.textSearchResults": "Søgeresultater: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Der er for mange resultater", + "Common.Views.SearchPanel.textWholeWords": "Kun hele ord", + "Common.Views.SearchPanel.tipNextResult": "Næste resultat", "Common.Views.SelectFileDlg.textLoading": "Indlæser", "Common.Views.SelectFileDlg.textTitle": "Vælg datakilde", "Common.Views.SignDialog.textBold": "Fed", @@ -455,7 +493,7 @@ "Common.Views.SignDialog.tipFontName": "Skrifttypenavn", "Common.Views.SignDialog.tipFontSize": "Skriftstørrelse", "Common.Views.SignSettingsDialog.textAllowComment": "Tillad underskrier at tilføje en kommentar i underskrift dialogen", - "Common.Views.SignSettingsDialog.textInfo": "Underskrivers info", + "Common.Views.SignSettingsDialog.textDefInstruction": "Før der skrives under, bør du verificere, at materialet du skriver under, er korrekt. ", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Navn", "Common.Views.SignSettingsDialog.textInfoTitle": "Underskrivers titel", @@ -504,7 +542,9 @@ "DE.Controllers.LeftMenu.txtCompatible": "Dokumentet bliver gemt i nyt format. Det vil tillade dig at bruge alle redigeringsfunktioner, men det kan påvirke dokumentlayoutet.
Brug \"kompatibilitet\" indstillingen fra avancerede indstillinger hvis du ønsker at gøre filer kompatible med ældre MS Word versioner.", "DE.Controllers.LeftMenu.txtUntitled": "Unavngivet", "DE.Controllers.LeftMenu.warnDownloadAs": "Hvis du fortsætter med at gemme i dette format, vil alle funktioner på nær teksten blive tabt.
Er du sikker på at du vil fortsætte?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "Din {0} vil blive konverteret til et formater, der kan redigeres. Dette kan tage et stykke tid. Det endelige dokument vil blive optimeret til at give dig mulighed for at redigere teksten, hvorfor den ikke nødvendigviser ligner den originale {0}. Dette er specielt, hvis den originale fil indeholder masser af grafik.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Hvis du fortsætter med at gemme i dette format, kan noget af den nuværende formattering gå tabt.
Er du sikker på at du vil fortsætte?", + "DE.Controllers.LeftMenu.warnReplaceString": "{0} er ikke et gyldigt tegn i erstatningsfeltet.", "DE.Controllers.Main.applyChangesTextText": "Indlæser ændringerne", "DE.Controllers.Main.applyChangesTitleText": "Indlæser ændringerne", "DE.Controllers.Main.convertationTimeoutText": "Konverteringstidsfrist er overskredet", @@ -529,6 +569,7 @@ "DE.Controllers.Main.errorEditingDownloadas": "Der opstod en fejl under arbejdet med dokumentet.
Brug \"download som\" valgmuligheden for at gemme en sikkerhedsversion til din computers harddisk.", "DE.Controllers.Main.errorEditingSaveas": "Der opstod en fejl under arbejdet med dokumentet.
Brug \"gem som...\" valgmuligheden for at gemme en sikkerhedsversion til din computers harddisk.", "DE.Controllers.Main.errorEmailClient": "Ingen e-mail klient fundet.", + "DE.Controllers.Main.errorEmptyTOC": "Opret en indholdsfortegnelse ved at anvende en overskriftstypografi fra typografigalleriet på den valgte tekst.", "DE.Controllers.Main.errorFilePassProtect": "Dokumentet er beskyttet af et kodeord og kunne ikke åbnes.", "DE.Controllers.Main.errorFileSizeExceed": "Filens størrelse overgår begrænsningen, som er sat for din server.
Kontakt venligst til dokumentserver administrator for detaljer.", "DE.Controllers.Main.errorForceSave": "Der skete en fejl under gemning af filen. Brug venligst 'Download som' for at gemme filen på din computers harddisk eller prøv igen senere.", @@ -537,6 +578,7 @@ "DE.Controllers.Main.errorLoadingFont": "Skrifttyper er ikke indlæst.
Kontakt din dokument server administrator.", "DE.Controllers.Main.errorMailMergeLoadFile": "Indlæsning fejlede. Vælg en anden fil.", "DE.Controllers.Main.errorMailMergeSaveFile": "Fusionering fejlede", + "DE.Controllers.Main.errorNoTOC": "Der er ingen indholdsfortegnelse at opdatere. Du kan indsætte en fra fanen \"Referencer\".", "DE.Controllers.Main.errorProcessSaveResult": "Kunne ikke gemme", "DE.Controllers.Main.errorServerVersion": "Redigeringsversionen er blevet opdatere. Siden vil blive genindlæst for at anvende ændringerne. ", "DE.Controllers.Main.errorSessionAbsolute": "Sessionen for dokumentredigering er udløbet. Genindlæs venligst siden. ", @@ -545,6 +587,7 @@ "DE.Controllers.Main.errorSetPassword": "Kodeord kunne ikke gemmes.", "DE.Controllers.Main.errorStockChart": "Forkert rækkefølge. For at bygge et aktiediagram placer dataen på arket i følgende orden:
Åbningspris, maks pris, min. pris, lukke pris. ", "DE.Controllers.Main.errorSubmit": "Send mislykkedes.", + "DE.Controllers.Main.errorTextFormWrongFormat": "Den indtastede værdi stemmer ikke overens med feltets format.", "DE.Controllers.Main.errorToken": "Dokumentets sikkerhedstoken er ikke lavet korrekt.
Kontakt venligst din administrator på Document Server.", "DE.Controllers.Main.errorTokenExpire": "Dokumentets sikkerhedstoken er udløbet.
Kontakt venligst din administrator på Document Server. ", "DE.Controllers.Main.errorUpdateVersion": "Filversionen er blevet ændret. Siden vil blive genindlæst.", @@ -602,9 +645,11 @@ "DE.Controllers.Main.textLongName": "Indtast tekst mindre end 128 bogstaver.", "DE.Controllers.Main.textNoLicenseTitle": "Licensbegrænsning nået", "DE.Controllers.Main.textPaidFeature": "Betalt funktion", + "DE.Controllers.Main.textReconnect": "Forbindelsen er genoprettet", "DE.Controllers.Main.textRemember": "Husk mit valg til alle filer", "DE.Controllers.Main.textRenameError": "Brugernavn må ikke være tomt.", "DE.Controllers.Main.textRenameLabel": "Indtast et navn til brug ved samarbejde", + "DE.Controllers.Main.textRequestMacros": "En makro foretager en anmodning til URL. Vil du tillade anmodningen til %1?", "DE.Controllers.Main.textShape": "Form", "DE.Controllers.Main.textStrict": "Striks tilstand", "DE.Controllers.Main.textTryUndoRedo": "Fortryd funktionen er blevet slået fra i den hurtige co-redigerngstilstand.Tryk på 'Striks tilstand' knappen for at skifte til den strikse co-redigeringstilstand for at redigere filen uden at andre brugere kan foretage ændringer før efter du har gemt dem. Du kan skifte i mellem co-redigeringstilstanden ved at bruge de avancerede indstillinger. ", @@ -643,9 +688,9 @@ "DE.Controllers.Main.txtMissOperator": "Manglende operatør", "DE.Controllers.Main.txtNeedSynchronize": "Du har opdateringer", "DE.Controllers.Main.txtNone": "Ingen", - "DE.Controllers.Main.txtNoTableOfContents": "Der er ingen overskrifter i dokumentet. Anvend en overskriftstil på teksten, så den vises i indholdsfortegnelsen.", + "DE.Controllers.Main.txtNoTableOfContents": "Der er ingen overskrifter i dokumentet. Anvend en overskriftstypografi på teksten, så den vises i indholdsfortegnelsen.", "DE.Controllers.Main.txtNoTableOfFigures": "Ingen tabel med figurer fundet.", - "DE.Controllers.Main.txtNoText": "Fejl! Ingen tekst af den specificerede type i dokumentet.", + "DE.Controllers.Main.txtNoText": "Fejl! Ingen tekst med den specificerede typografi i dokumentet.", "DE.Controllers.Main.txtNotInTable": "Er ikke i tabel", "DE.Controllers.Main.txtNotValidBookmark": "Fejl! Ikke en gyldig bogmærke selv-reference", "DE.Controllers.Main.txtOddPage": "Ulige side", @@ -879,12 +924,17 @@ "DE.Controllers.Main.warnProcessRightsChange": "Du er blevet nægtet rettighederne til at redigere denne fil.", "DE.Controllers.Navigation.txtBeginning": "Starten af dokumentet", "DE.Controllers.Navigation.txtGotoBeginning": "Gå til starten af dokumentet", + "DE.Controllers.Search.notcriticalErrorTitle": "Advarsel", + "DE.Controllers.Search.textNoTextFound": "Informationen du søger efter kan ikke findes. Juster venligst søgeindstillingerne.", + "DE.Controllers.Search.textReplaceSuccess": "Søgning er afsluttet. {0} forekomster er blevet erstattet", + "DE.Controllers.Search.warnReplaceString": "{0} er ikke et gyldigt specialtegn i feltet \"Erstat med\".", + "DE.Controllers.Statusbar.textDisconnect": "Forbindelsen er tabt
Forsøger at genoprette forbindelse. Tjek venligst forbindelsesindstillingerne.", "DE.Controllers.Statusbar.textHasChanges": "Nye ændringer er blevet sporet", "DE.Controllers.Statusbar.textSetTrackChanges": "Du bruger Spor Ændringer-tilstand", "DE.Controllers.Statusbar.textTrackChanges": "Dokumentet er åbnet med ændringssporingstilstand slået til ", "DE.Controllers.Statusbar.tipReview": "Spor ændringer", "DE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "DE.Controllers.Toolbar.confirmAddFontName": "Skrifttypen du gemmer er ikke tilgængeligt på din nuværende enhed.
Skrifttypen vil blive vist som en af dem dit system understøtter, den gemte skrifttype vil bruge brugt når den er tilgængelig.
Vil du fortsætte?", + "DE.Controllers.Toolbar.confirmAddFontName": "Skrifttypen du gemmer er ikke tilgængeligt på din nuværende enhed.
Typografien vil blive vist ved brug af en systemets skrifttyper. Den gemte skrifttype vil blive brugt, når den er tilgængelig.
Vil du fortsætte?", "DE.Controllers.Toolbar.dataUrl": "Indsæt en data-URL", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Advarsel", "DE.Controllers.Toolbar.textAccent": "Accenter", @@ -902,6 +952,7 @@ "DE.Controllers.Toolbar.textMatrix": "Matricer", "DE.Controllers.Toolbar.textOperator": "Operatører ", "DE.Controllers.Toolbar.textRadical": "Radikaler", + "DE.Controllers.Toolbar.textRecentlyUsed": "Anvendt for nyligt", "DE.Controllers.Toolbar.textScript": "Scripts", "DE.Controllers.Toolbar.textSymbols": "Symboler", "DE.Controllers.Toolbar.textTabForms": "Formularer", @@ -943,7 +994,7 @@ "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Enkelt klamme", "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Enkelt klamme", "DE.Controllers.Toolbar.txtBracket_Custom_1": "Tilfælde (To betingelser)", - "DE.Controllers.Toolbar.txtBracket_Custom_2": "Sager (Tre betingelser)", + "DE.Controllers.Toolbar.txtBracket_Custom_2": "Sager (tre betingelser)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "Stak objekt", "DE.Controllers.Toolbar.txtBracket_Custom_4": "Stak objekt", "DE.Controllers.Toolbar.txtBracket_Custom_5": "Eksempel", @@ -1246,7 +1297,7 @@ "DE.Views.CaptionDialog.textAfter": "efter", "DE.Views.CaptionDialog.textBefore": "Før", "DE.Views.CaptionDialog.textCaption": "Overskrift", - "DE.Views.CaptionDialog.textChapter": "Kapitler starter med stil", + "DE.Views.CaptionDialog.textChapter": "Kapitler starter med typografi", "DE.Views.CaptionDialog.textChapterInc": "Inkluder kapitelnummer", "DE.Views.CaptionDialog.textColon": "Kolon", "DE.Views.CaptionDialog.textDash": "bindestreg", @@ -1271,16 +1322,27 @@ "DE.Views.CellsAddDialog.textRow": "Rækker", "DE.Views.CellsAddDialog.textTitle": "Indsæt flere", "DE.Views.CellsAddDialog.textUp": "Over markøren", + "DE.Views.ChartSettings.text3dHeight": "Højde (% af udgangspunkt)", + "DE.Views.ChartSettings.text3dRotation": "3D-rotation", "DE.Views.ChartSettings.textAdvanced": "Vis avancerede indstillinger", + "DE.Views.ChartSettings.textAutoscale": "Autoskalering", "DE.Views.ChartSettings.textChartType": "Skift diagramtype", + "DE.Views.ChartSettings.textDown": "Ned", "DE.Views.ChartSettings.textEditData": "Rediger data", "DE.Views.ChartSettings.textHeight": "Højde", + "DE.Views.ChartSettings.textLeft": "Venstre", + "DE.Views.ChartSettings.textNarrow": "Indsnævr synsvinkel", "DE.Views.ChartSettings.textOriginalSize": "Faktisk størrelse", + "DE.Views.ChartSettings.textRight": "Højre", "DE.Views.ChartSettings.textSize": "Størrelse", - "DE.Views.ChartSettings.textStyle": "Stilart", + "DE.Views.ChartSettings.textStyle": "Typografi", "DE.Views.ChartSettings.textUndock": "Fjern fra panel", + "DE.Views.ChartSettings.textUp": "Op", + "DE.Views.ChartSettings.textWiden": "Udvid synsvinkel", "DE.Views.ChartSettings.textWidth": "Bredde", - "DE.Views.ChartSettings.textWrap": "Obrydningsstil", + "DE.Views.ChartSettings.textWrap": "Obrydningstypografi", + "DE.Views.ChartSettings.textX": "X-rotation", + "DE.Views.ChartSettings.textY": "Y-rotation", "DE.Views.ChartSettings.txtBehind": "Bagved", "DE.Views.ChartSettings.txtInFront": "Foran", "DE.Views.ChartSettings.txtInline": "inline", @@ -1327,7 +1389,7 @@ "DE.Views.CrossReferenceDialog.textEmpty": "Forespørgselshenvisningen er tom.", "DE.Views.CrossReferenceDialog.textEndnote": "Slut-note", "DE.Views.CrossReferenceDialog.textEndNoteNum": "Slut-note nummer", - "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Slut-note nummer (formatteret)", + "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Slutnotenummer (formateret)", "DE.Views.CrossReferenceDialog.textEquation": "Formel", "DE.Views.CrossReferenceDialog.textFigure": "Figur", "DE.Views.CrossReferenceDialog.textFootnote": "Fodnote", @@ -1341,7 +1403,7 @@ "DE.Views.CrossReferenceDialog.textInsertAs": "Indsæt som hyperlink", "DE.Views.CrossReferenceDialog.textLabelNum": "Kun mærkat og antal", "DE.Views.CrossReferenceDialog.textNoteNum": "Fodnote nummer", - "DE.Views.CrossReferenceDialog.textNoteNumForm": "Fodnote nummer (formatteret)", + "DE.Views.CrossReferenceDialog.textNoteNumForm": "Fodnotenummer (formateret)", "DE.Views.CrossReferenceDialog.textOnlyCaption": "Kun billedtekst", "DE.Views.CrossReferenceDialog.textPageNum": "Sidetal", "DE.Views.CrossReferenceDialog.textParagraph": "Nummereret emne", @@ -1372,12 +1434,14 @@ "DE.Views.DateTimeDialog.txtTitle": "Dato og tid", "DE.Views.DocumentHolder.aboveText": "Over", "DE.Views.DocumentHolder.addCommentText": "Tilføj kommentar", - "DE.Views.DocumentHolder.advancedDropCapText": "Indstillinger for drop cap", + "DE.Views.DocumentHolder.advancedDropCapText": "Indstillinger for unical", "DE.Views.DocumentHolder.advancedFrameText": "Ramme avancerede indstillinger", "DE.Views.DocumentHolder.advancedParagraphText": "Afsnit avancerede indstillinger", "DE.Views.DocumentHolder.advancedTableText": "Tabel avancerede indstillinger", "DE.Views.DocumentHolder.advancedText": "Avancerede indstillinger", "DE.Views.DocumentHolder.alignmentText": "Tilpasning", + "DE.Views.DocumentHolder.allLinearText": "Alle - Lineært", + "DE.Views.DocumentHolder.allProfText": "Alle - Professionelt", "DE.Views.DocumentHolder.belowText": "Under", "DE.Views.DocumentHolder.breakBeforeText": "Sideskift før", "DE.Views.DocumentHolder.bulletsText": "Prikekr og nummering", @@ -1398,6 +1462,7 @@ "DE.Views.DocumentHolder.editFooterText": "Rediger sidefod", "DE.Views.DocumentHolder.editHeaderText": "Rediger overskrift", "DE.Views.DocumentHolder.editHyperlinkText": "Rediger hyperlink", + "DE.Views.DocumentHolder.eqToInlineText": "Skift til inline", "DE.Views.DocumentHolder.guestText": "Gæst", "DE.Views.DocumentHolder.hyperlinkText": "Hyperlink", "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorer alt", @@ -1412,6 +1477,7 @@ "DE.Views.DocumentHolder.insertText": "indsæt", "DE.Views.DocumentHolder.keepLinesText": "Hold linierne sammen", "DE.Views.DocumentHolder.langText": "Vælg sprog", + "DE.Views.DocumentHolder.latexText": "LaTeX", "DE.Views.DocumentHolder.leftText": "Venstre", "DE.Views.DocumentHolder.loadSpellText": "Indlæser variationer...", "DE.Views.DocumentHolder.mergeCellsText": "Fusioner celler", @@ -1423,7 +1489,7 @@ "DE.Views.DocumentHolder.removeHyperlinkText": "Slet Hyperlink", "DE.Views.DocumentHolder.rightText": "Højre", "DE.Views.DocumentHolder.rowText": "Række", - "DE.Views.DocumentHolder.saveStyleText": "Opret ny formattering", + "DE.Views.DocumentHolder.saveStyleText": "Opret ny typografi", "DE.Views.DocumentHolder.selectCellText": "Vælg celle", "DE.Views.DocumentHolder.selectColumnText": "Vælg kolonne", "DE.Views.DocumentHolder.selectRowText": "Vælg række", @@ -1437,8 +1503,9 @@ "DE.Views.DocumentHolder.strDetails": "Underskrift detaljer", "DE.Views.DocumentHolder.strSetup": "underskrifts opsætning", "DE.Views.DocumentHolder.strSign": "Signer", - "DE.Views.DocumentHolder.styleText": "Formattering som stilart", + "DE.Views.DocumentHolder.styleText": "Formatér som typografier", "DE.Views.DocumentHolder.tableText": "Tabel", + "DE.Views.DocumentHolder.textAccept": "Accepter ændring", "DE.Views.DocumentHolder.textAlign": "Tilpas", "DE.Views.DocumentHolder.textArrange": "Arranger", "DE.Views.DocumentHolder.textArrangeBack": "Flyt til baggrund", @@ -1503,7 +1570,7 @@ "DE.Views.DocumentHolder.textUpdateAll": "Genindlæs hele tabellen", "DE.Views.DocumentHolder.textUpdatePages": "Genindlæs kun sidetal", "DE.Views.DocumentHolder.textUpdateTOC": "Genindlæs indholdsfortegnelse", - "DE.Views.DocumentHolder.textWrap": "Ombrydningsstil", + "DE.Views.DocumentHolder.textWrap": "Ombrydningstypografi", "DE.Views.DocumentHolder.tipIsLocked": "Elementet bliver redigeret af en anden bruger.", "DE.Views.DocumentHolder.toDictionaryText": "Tilføj til Ordbog", "DE.Views.DocumentHolder.txtAddBottom": "Tilføj nederste ramme ", @@ -1596,10 +1663,11 @@ "DE.Views.DocumentHolder.txtUnderbar": "Linie under tekst", "DE.Views.DocumentHolder.txtUngroup": "Fjern fra gruppe", "DE.Views.DocumentHolder.txtWarnUrl": "Hvis du klikker på dette link, kan det være skadeligt for din enhed og dine data.
Er du sikker på, at du vil fortsætte?", - "DE.Views.DocumentHolder.updateStyleText": "Opdater %1 stilart", + "DE.Views.DocumentHolder.unicodeText": "Unicode", + "DE.Views.DocumentHolder.updateStyleText": "Opdater %1 typografi", "DE.Views.DocumentHolder.vertAlignText": "Lodret justering", "DE.Views.DropcapSettingsAdvanced.strBorders": "Rammer og fyld", - "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap", + "DE.Views.DropcapSettingsAdvanced.strDropcap": "Unical", "DE.Views.DropcapSettingsAdvanced.strMargins": "Margener", "DE.Views.DropcapSettingsAdvanced.textAlign": "Tilpasning", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Mindst", @@ -1632,7 +1700,7 @@ "DE.Views.DropcapSettingsAdvanced.textRelative": "Relativt til", "DE.Views.DropcapSettingsAdvanced.textRight": "Højre", "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Højde i rækker", - "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop Cap - Avancerde indstillinger", + "DE.Views.DropcapSettingsAdvanced.textTitle": "Unical - Avancerede indstillinger", "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Ramme - avancerede indstillinger", "DE.Views.DropcapSettingsAdvanced.textTop": "Top", "DE.Views.DropcapSettingsAdvanced.textVertical": "Vertikal", @@ -1677,9 +1745,12 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Indlæser...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Sidst redigeret af", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Sidst redigeret", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Nej", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Ejer", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Sider", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Sideindstillinger", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Afsnit", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF-verison", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokation", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personer der har rettigheder", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboler med mellemrum", @@ -1689,6 +1760,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Dokumenttitel", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Overført", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Ord", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Ja", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Skift adgangsrettigheder", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personer der har rettigheder", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Advarsel", @@ -1706,9 +1778,14 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Fællesredigeringstilstand", "DE.Views.FileMenuPanels.Settings.strFast": "Hurtig", "DE.Views.FileMenuPanels.Settings.strFontRender": "Skrifttype hentydning", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorer ord med STORE BOGSTAVER", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorer ord med tal", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroindstillinger", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Vis knappen for Indsæt-optioner når indhold indsættes", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Real tids samarbejdsændringer", + "DE.Views.FileMenuPanels.Settings.strShowComments": "Vis kommentarer i tekst", + "DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Vis ændringer fra andet", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Vis løste kommentarer", "DE.Views.FileMenuPanels.Settings.strStrict": "Striks", "DE.Views.FileMenuPanels.Settings.strTheme": "Interface tema", "DE.Views.FileMenuPanels.Settings.strUnit": "Måleenhed", @@ -1730,7 +1807,9 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Vis ved klik i balloner", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Vis ved at svæve i værktøjstip", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", + "DE.Views.FileMenuPanels.Settings.txtCollaboration": "Samarbejde", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Slå mørk tilstand dokument til", + "DE.Views.FileMenuPanels.Settings.txtFastTip": "Realtidssamarbejde. Alle ændringer gemmes automatisk", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Tilpas til side", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Tilpas til bredde", "DE.Views.FileMenuPanels.Settings.txtInch": "Tomme", @@ -1742,14 +1821,19 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Punkt", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Aktivér alle", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktivér alle makroer uden meddelelse", + "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Vis \"spor ændringer\"", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Stavekontrol", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Deaktiver Alle", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Deaktivér alle makroer uden besked", + "DE.Views.FileMenuPanels.Settings.txtStrictTip": "Brug \"Gem\"-knappen for at synkronisere ændringerne du og andre laver", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Vis besked", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deaktiver alle makroer med en besked", "DE.Views.FileMenuPanels.Settings.txtWin": "som Windows", + "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Arbejdsområde", "DE.Views.FormSettings.textAlways": "Altid", "DE.Views.FormSettings.textAspect": "Lås billedformat", + "DE.Views.FormSettings.textAtLeast": "Mindst", + "DE.Views.FormSettings.textAuto": "Automatisk", "DE.Views.FormSettings.textAutofit": "AutoTilpas", "DE.Views.FormSettings.textBackgroundColor": "Baggrundsfarve", "DE.Views.FormSettings.textCheckbox": "Afkrydsningsfelt", @@ -1762,17 +1846,22 @@ "DE.Views.FormSettings.textDropDown": "Dropdown", "DE.Views.FormSettings.textField": "Tekstfelt", "DE.Views.FormSettings.textFixed": "Felt med fast størrelse", + "DE.Views.FormSettings.textFormat": "Formatér", + "DE.Views.FormSettings.textFormatSymbols": "Tilladte symboler", "DE.Views.FormSettings.textFromFile": "Fra fil", "DE.Views.FormSettings.textFromStorage": "Fra lager", "DE.Views.FormSettings.textFromUrl": "Fra URL", "DE.Views.FormSettings.textGroupKey": "Gruppenøgle", "DE.Views.FormSettings.textImage": "Billede", "DE.Views.FormSettings.textKey": "Nøgle", + "DE.Views.FormSettings.textLetters": "Breve", "DE.Views.FormSettings.textLock": "Lås", + "DE.Views.FormSettings.textMask": "Vilkårlig maske", "DE.Views.FormSettings.textMaxChars": "Tegnbegrænsning", "DE.Views.FormSettings.textMulti": "Flerlinjefelt", "DE.Views.FormSettings.textNever": "Aldrig", "DE.Views.FormSettings.textNoBorder": "Ingen kant", + "DE.Views.FormSettings.textNone": "Ingen", "DE.Views.FormSettings.textPlaceholder": "Pladsholder", "DE.Views.FormSettings.textRadiobox": "Radioknap", "DE.Views.FormSettings.textRequired": "Påkrævet", @@ -1793,6 +1882,7 @@ "DE.Views.FormsTab.capBtnDropDown": "Dropdown", "DE.Views.FormsTab.capBtnImage": "Billede", "DE.Views.FormsTab.capBtnNext": "Næste felt", + "DE.Views.FormsTab.capBtnPhone": "Telefonnummer", "DE.Views.FormsTab.capBtnPrev": "Foregående felt", "DE.Views.FormsTab.capBtnRadioBox": "Radioknap", "DE.Views.FormsTab.capBtnSaveForm": "Gem som oform", @@ -1870,11 +1960,12 @@ "DE.Views.ImageSettings.textHintFlipV": "Vend lodret", "DE.Views.ImageSettings.textInsert": "Erstat billede", "DE.Views.ImageSettings.textOriginalSize": "Faktisk størrelse", + "DE.Views.ImageSettings.textRecentlyUsed": "Anvendt for nyligt", "DE.Views.ImageSettings.textRotate90": "Roter 90°", "DE.Views.ImageSettings.textRotation": "Rotation", "DE.Views.ImageSettings.textSize": "Størrelse", "DE.Views.ImageSettings.textWidth": "Bredde", - "DE.Views.ImageSettings.textWrap": "Ombrydningsstil", + "DE.Views.ImageSettings.textWrap": "Ombrydningstypografi", "DE.Views.ImageSettings.txtBehind": "Bagved", "DE.Views.ImageSettings.txtInFront": "Foran", "DE.Views.ImageSettings.txtInline": "inline", @@ -1894,7 +1985,7 @@ "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Lås billedformat", "DE.Views.ImageSettingsAdvanced.textAutofit": "AutoTilpas", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Begynd størrelse", - "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begynd stil", + "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begynd typografi", "DE.Views.ImageSettingsAdvanced.textBelow": "Under", "DE.Views.ImageSettingsAdvanced.textBevel": "Facet", "DE.Views.ImageSettingsAdvanced.textBottom": "Bund", @@ -1906,7 +1997,7 @@ "DE.Views.ImageSettingsAdvanced.textColumn": "Kolonne", "DE.Views.ImageSettingsAdvanced.textDistance": "Afstand fra tekst", "DE.Views.ImageSettingsAdvanced.textEndSize": "Afslutning størrelse", - "DE.Views.ImageSettingsAdvanced.textEndStyle": "Afslutning formattering", + "DE.Views.ImageSettingsAdvanced.textEndStyle": "Afslutning typografi", "DE.Views.ImageSettingsAdvanced.textFlat": "Flad", "DE.Views.ImageSettingsAdvanced.textFlipped": "Vendt", "DE.Views.ImageSettingsAdvanced.textHeight": "Højde", @@ -1917,7 +2008,7 @@ "DE.Views.ImageSettingsAdvanced.textLeft": "Venstre", "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Venstre margen", "DE.Views.ImageSettingsAdvanced.textLine": "Linie", - "DE.Views.ImageSettingsAdvanced.textLineStyle": "Linie stil", + "DE.Views.ImageSettingsAdvanced.textLineStyle": "Linjetypografi", "DE.Views.ImageSettingsAdvanced.textMargin": "margen", "DE.Views.ImageSettingsAdvanced.textMiter": "Miter", "DE.Views.ImageSettingsAdvanced.textMove": "Flyt okbjekt med tekst", @@ -1949,7 +2040,7 @@ "DE.Views.ImageSettingsAdvanced.textVertically": "Lodret", "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Vægte og pile", "DE.Views.ImageSettingsAdvanced.textWidth": "Bredde", - "DE.Views.ImageSettingsAdvanced.textWrap": "Ombrydningsstil", + "DE.Views.ImageSettingsAdvanced.textWrap": "Ombrydningstypografi", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Bagved", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Foran", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "inline", @@ -1961,6 +2052,8 @@ "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "kommentarer", "DE.Views.LeftMenu.tipNavigation": "Navigering", + "DE.Views.LeftMenu.tipOutline": "Overskrifter", + "DE.Views.LeftMenu.tipPageThumbnails": "Sideminiaturebilleder", "DE.Views.LeftMenu.tipPlugins": "Tilføjelsesprogrammer", "DE.Views.LeftMenu.tipSearch": "Søg", "DE.Views.LeftMenu.tipSupport": "Feedback & support", @@ -1982,7 +2075,8 @@ "DE.Views.LineNumbersDialog.textSection": "Nuværende sektion", "DE.Views.LineNumbersDialog.textStartAt": "Start ved", "DE.Views.LineNumbersDialog.textTitle": "Linjenumre", - "DE.Views.LineNumbersDialog.txtAutoText": "Auto", + "DE.Views.LineNumbersDialog.txtAutoText": "Automatisk", + "DE.Views.Links.capBtnAddText": "Tilføj tekst", "DE.Views.Links.capBtnBookmarks": "Bogmærke", "DE.Views.Links.capBtnCaption": "Overskrift", "DE.Views.Links.capBtnContentsUpdate": "Genindlæs", @@ -2017,6 +2111,8 @@ "DE.Views.Links.tipTableFigures": "Indsæt figurtabel", "DE.Views.Links.tipTableFiguresUpdate": "Opdatér figurtabel", "DE.Views.Links.titleUpdateTOF": "Opdatér figurtabel", + "DE.Views.Links.txtDontShowTof": "Vis ikke i indholdsfortegnelsen", + "DE.Views.Links.txtLevel": "Niveau", "DE.Views.ListSettingsDialog.textAuto": "Automatisk", "DE.Views.ListSettingsDialog.textCenter": "Centrum", "DE.Views.ListSettingsDialog.textLeft": "Venstre", @@ -2081,18 +2177,24 @@ "DE.Views.MailMergeSettings.txtPrev": "Til forrige instans", "DE.Views.MailMergeSettings.txtUntitled": "Unavngivet", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Begyndelsesfletning fejlet", + "DE.Views.Navigation.strNavigate": "Overskrifter", + "DE.Views.Navigation.txtClosePanel": "Sluk overskrifter", "DE.Views.Navigation.txtCollapse": "Sammenklap alt", "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.txtEmpty": "Der er ingen overskrifter i dokumentet.
Anvend en overskriftstypografi 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.txtFontSize": "Skriftstørrelse", "DE.Views.Navigation.txtHeadingAfter": "Ny overskrift efter", "DE.Views.Navigation.txtHeadingBefore": "Ny overskrift før", + "DE.Views.Navigation.txtLarge": "Stor", "DE.Views.Navigation.txtNewHeading": "Ny underoverskrift", "DE.Views.Navigation.txtPromote": "Forfrem", "DE.Views.Navigation.txtSelect": "Vælg indhold", + "DE.Views.Navigation.txtSettings": "Overskriftsindstillinger", + "DE.Views.Navigation.txtWrapHeadings": "Ombryd lange overskrifter", "DE.Views.NoteSettingsDialog.textApply": "Anvend", "DE.Views.NoteSettingsDialog.textApplyTo": "Anvend ændringer på", "DE.Views.NoteSettingsDialog.textContinue": "kontinuerlig", @@ -2103,7 +2205,7 @@ "DE.Views.NoteSettingsDialog.textEachSection": "Genstart hver sektion", "DE.Views.NoteSettingsDialog.textEndnote": "Slut-note", "DE.Views.NoteSettingsDialog.textFootnote": "Fodnote", - "DE.Views.NoteSettingsDialog.textFormat": "Format", + "DE.Views.NoteSettingsDialog.textFormat": "Formatér", "DE.Views.NoteSettingsDialog.textInsert": "indsæt", "DE.Views.NoteSettingsDialog.textLocation": "Lokation", "DE.Views.NoteSettingsDialog.textNumbering": "Nummerering", @@ -2141,13 +2243,15 @@ "DE.Views.PageSizeDialog.textTitle": "Side størrelse", "DE.Views.PageSizeDialog.textWidth": "Bredde", "DE.Views.PageSizeDialog.txtCustom": "Brugerdefineret", + "DE.Views.PageThumbnails.textClosePanel": "Luk sideminiaturebilleder", + "DE.Views.PageThumbnails.textPageThumbnails": "Sideminiaturebilleder", "DE.Views.ParagraphSettings.strIndent": "Indryk", "DE.Views.ParagraphSettings.strIndentsLeftText": "Venstre", "DE.Views.ParagraphSettings.strIndentsRightText": "Højre", "DE.Views.ParagraphSettings.strIndentsSpecial": "Speciel", "DE.Views.ParagraphSettings.strLineHeight": "Linie afstand", "DE.Views.ParagraphSettings.strParagraphSpacing": "Afsnit afstand", - "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Tilføj ikke intervaller imellem afsnit af samme type", + "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Tilføj ikke intervaller imellem afsnit af samme typografi", "DE.Views.ParagraphSettings.strSpacingAfter": "Efter", "DE.Views.ParagraphSettings.strSpacingBefore": "Før", "DE.Views.ParagraphSettings.textAdvanced": "Vis avancerede indstillinger", @@ -2182,7 +2286,7 @@ "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Linje & side mellemrum", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Placering", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", - "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Tilføj ikke intervaller imellem afsnit af samme type", + "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Tilføj ikke intervaller imellem afsnit af samme typografi", "DE.Views.ParagraphSettingsAdvanced.strSpacing": "Afstand", "DE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", @@ -2190,12 +2294,13 @@ "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Udelad linjenumre", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Faner", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Tilpasning", + "DE.Views.ParagraphSettingsAdvanced.textAll": "Alle", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Mindst", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Flere", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Baggrundsfarve", "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basal Tekst", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Rammefarve", - "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Klik på diagrammet eller brug knapperne til at vælge rammer og anvend den valgte formatering på dem", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Vælg diagram eller brug knapper til at vælge rammer og anvend den ønskede typografi herpå", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Rammestørrelse", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Bund", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centreret", @@ -2231,7 +2336,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Vælg kun ydre rammer", "DE.Views.ParagraphSettingsAdvanced.tipRight": "Vælg kun højre ramme", "DE.Views.ParagraphSettingsAdvanced.tipTop": "Vælg kun øverste ramme", - "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "automatisk", + "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisk", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Ingen rammer", "DE.Views.RightMenu.txtChartSettings": "Diagram indstillinger", "DE.Views.RightMenu.txtFormSettings": "Formularindstillinger", @@ -2276,15 +2381,16 @@ "DE.Views.ShapeSettings.textPatternFill": "Mønster", "DE.Views.ShapeSettings.textPosition": "Placering", "DE.Views.ShapeSettings.textRadial": "Radial", + "DE.Views.ShapeSettings.textRecentlyUsed": "Anvendt for nyligt", "DE.Views.ShapeSettings.textRotate90": "Roter 90°", "DE.Views.ShapeSettings.textRotation": "Rotation", "DE.Views.ShapeSettings.textSelectImage": "Vælg billede", "DE.Views.ShapeSettings.textSelectTexture": "Vælg", "DE.Views.ShapeSettings.textStretch": "Stræk", - "DE.Views.ShapeSettings.textStyle": "Stilart", + "DE.Views.ShapeSettings.textStyle": "Typografi", "DE.Views.ShapeSettings.textTexture": "Fra struktur", "DE.Views.ShapeSettings.textTile": "Flise", - "DE.Views.ShapeSettings.textWrap": "Ombrydningsstil", + "DE.Views.ShapeSettings.textWrap": "Ombrydningstypografi", "DE.Views.ShapeSettings.tipAddGradientPoint": "Tilføj gradientpunkt", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Fjern gradientpunkt", "DE.Views.ShapeSettings.txtBehind": "Bagved", @@ -2326,17 +2432,18 @@ "DE.Views.Statusbar.pageIndexText": "Side {0} af {1}", "DE.Views.Statusbar.tipFitPage": "Tilpas til side", "DE.Views.Statusbar.tipFitWidth": "Tilpas til bredde", + "DE.Views.Statusbar.tipSelectTool": "Markeringsværktøj", "DE.Views.Statusbar.tipSetLang": "Vælg tekstsprog", "DE.Views.Statusbar.tipZoomFactor": "Zoom", "DE.Views.Statusbar.tipZoomIn": "Zoom ind", "DE.Views.Statusbar.tipZoomOut": "Zoom ud", "DE.Views.Statusbar.txtPageNumInvalid": "Sidetal er ugyldigt", - "DE.Views.StyleTitleDialog.textHeader": "Opret ny formattering", - "DE.Views.StyleTitleDialog.textNextStyle": "Næste afsnit formattering", + "DE.Views.StyleTitleDialog.textHeader": "Opret ny typografi", + "DE.Views.StyleTitleDialog.textNextStyle": "Næste afsnitstypografi", "DE.Views.StyleTitleDialog.textTitle": "Titel", "DE.Views.StyleTitleDialog.txtEmpty": "Dette felt er nødvendigt", "DE.Views.StyleTitleDialog.txtNotEmpty": "Felt må ikke være tomt", - "DE.Views.StyleTitleDialog.txtSameAs": "Samme som nyskabt tema", + "DE.Views.StyleTitleDialog.txtSameAs": "Samme som nyskabt typografi", "DE.Views.TableFormulaDialog.textBookmark": "Indsæt bogmærke", "DE.Views.TableFormulaDialog.textFormat": "Tal format", "DE.Views.TableFormulaDialog.textFormula": "Formular", @@ -2344,8 +2451,8 @@ "DE.Views.TableFormulaDialog.textTitle": "Formular indstillinger", "DE.Views.TableOfContentsSettings.strAlign": "Højre juster sidetal", "DE.Views.TableOfContentsSettings.strFullCaption": "Inkludér mærkat og antal", - "DE.Views.TableOfContentsSettings.strLinks": "Formatter indholdsfortegnelse", - "DE.Views.TableOfContentsSettings.strLinksOF": "Formattér figurtabel som links", + "DE.Views.TableOfContentsSettings.strLinks": "Formatér indholdsfortegnelse", + "DE.Views.TableOfContentsSettings.strLinksOF": "Formatér tabel med figurer som links", "DE.Views.TableOfContentsSettings.strShowPages": "Vis sidetal", "DE.Views.TableOfContentsSettings.textBuildTable": "Byg indholdsfortegnelsen udfra", "DE.Views.TableOfContentsSettings.textBuildTableOF": "Lav tabel med figurer fra", @@ -2357,10 +2464,10 @@ "DE.Views.TableOfContentsSettings.textNone": "ingen", "DE.Views.TableOfContentsSettings.textRadioCaption": "Overskrift", "DE.Views.TableOfContentsSettings.textRadioLevels": "Yderlinieniveu", - "DE.Views.TableOfContentsSettings.textRadioStyle": "Stilart", - "DE.Views.TableOfContentsSettings.textRadioStyles": "Valgte stilarter", - "DE.Views.TableOfContentsSettings.textStyle": "Stilart", - "DE.Views.TableOfContentsSettings.textStyles": "Stilarter", + "DE.Views.TableOfContentsSettings.textRadioStyle": "Typografi", + "DE.Views.TableOfContentsSettings.textRadioStyles": "Markerede typografier", + "DE.Views.TableOfContentsSettings.textStyle": "Typografi", + "DE.Views.TableOfContentsSettings.textStyles": "Typografier", "DE.Views.TableOfContentsSettings.textTable": "Tabel", "DE.Views.TableOfContentsSettings.textTitle": "Indholdsfortegnelse", "DE.Views.TableOfContentsSettings.textTitleTOF": "Figurtabel", @@ -2406,7 +2513,7 @@ "DE.Views.TableSettings.textHeight": "Højde", "DE.Views.TableSettings.textLast": "sidste", "DE.Views.TableSettings.textRows": "Rækker", - "DE.Views.TableSettings.textSelectBorders": "Vælg rammer som du vil ændre til stilarten valgt ovenover", + "DE.Views.TableSettings.textSelectBorders": "Vælg rammerne som du vil ændre til typografien valgt ovenfor", "DE.Views.TableSettings.textTemplate": "Vælg fra skabelon", "DE.Views.TableSettings.textTotal": "I alt", "DE.Views.TableSettings.textWidth": "Bredde", @@ -2420,8 +2527,11 @@ "DE.Views.TableSettings.tipOuter": "Vælg kun ydre rammer", "DE.Views.TableSettings.tipRight": "Vælg kun højre ramme", "DE.Views.TableSettings.tipTop": "Vælg kun ydre øverste ramme", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Indrammede og farvede tabeller", "DE.Views.TableSettings.txtNoBorders": "Ingen rammer", "DE.Views.TableSettings.txtTable_Accent": "Accent", + "DE.Views.TableSettings.txtTable_Bordered": "Indrammet", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "Indrammet og farvet", "DE.Views.TableSettings.txtTable_Colorful": "Farverig", "DE.Views.TableSettings.txtTable_Dark": "Mørk", "DE.Views.TableSettings.txtTable_GridTable": "Gitter tabel", @@ -2441,7 +2551,7 @@ "DE.Views.TableSettingsAdvanced.textBackColor": "Celle baggrund", "DE.Views.TableSettingsAdvanced.textBelow": "Under", "DE.Views.TableSettingsAdvanced.textBorderColor": "Rammefarve", - "DE.Views.TableSettingsAdvanced.textBorderDesc": "Klik på diagrammet eller brug knapperne til at vælge rammer og anvend den valgte formatering på dem", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "Vælg diagram eller brug knapper til at vælge rammer og anvend den ønskede typografi herpå", "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Rammer og baggrunde", "DE.Views.TableSettingsAdvanced.textBorderWidth": "Rammestørrelse", "DE.Views.TableSettingsAdvanced.textBottom": "Bund", @@ -2484,7 +2594,7 @@ "DE.Views.TableSettingsAdvanced.textWrap": "Tekst indpakning", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "inline tabel", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Flow tabel", - "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Ombrydningsstil", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Ombrydningstypografi", "DE.Views.TableSettingsAdvanced.textWrapText": "Ombryd tekst", "DE.Views.TableSettingsAdvanced.tipAll": "Vælg ydre ramme og alle indre linier", "DE.Views.TableSettingsAdvanced.tipCellAll": "Sæt kun rammer for de inderste celler.", @@ -2526,7 +2636,7 @@ "DE.Views.TextArtSettings.textPosition": "Placering", "DE.Views.TextArtSettings.textRadial": "Radial", "DE.Views.TextArtSettings.textSelectTexture": "Vælg", - "DE.Views.TextArtSettings.textStyle": "Stilart", + "DE.Views.TextArtSettings.textStyle": "Typografi", "DE.Views.TextArtSettings.textTemplate": "Skabelon", "DE.Views.TextArtSettings.textTransform": "Transformer", "DE.Views.TextArtSettings.tipAddGradientPoint": "Tilføj gradientpunkt", @@ -2546,7 +2656,7 @@ "DE.Views.TextToTableDialog.textTableSize": "Tabel størrelse", "DE.Views.TextToTableDialog.textTitle": "Konverter tekst til tabel", "DE.Views.TextToTableDialog.textWindow": "Autotilpas til vindue", - "DE.Views.TextToTableDialog.txtAutoText": "automatisk", + "DE.Views.TextToTableDialog.txtAutoText": "Automatisk", "DE.Views.Toolbar.capBtnAddComment": "Tilføj kommentar", "DE.Views.Toolbar.capBtnBlankPage": "Blank side", "DE.Views.Toolbar.capBtnColumns": "Kolonner", @@ -2554,11 +2664,11 @@ "DE.Views.Toolbar.capBtnDateTime": "Dato og tid", "DE.Views.Toolbar.capBtnInsChart": "Diagram", "DE.Views.Toolbar.capBtnInsControls": "Indholdsindstillinger", - "DE.Views.Toolbar.capBtnInsDropcap": "Drop cap", + "DE.Views.Toolbar.capBtnInsDropcap": "Unical", "DE.Views.Toolbar.capBtnInsEquation": "Formel", "DE.Views.Toolbar.capBtnInsHeader": "Sidehoved/sidefod", "DE.Views.Toolbar.capBtnInsImage": "Billede", - "DE.Views.Toolbar.capBtnInsPagebreak": "Brud", + "DE.Views.Toolbar.capBtnInsPagebreak": "Sideskift", "DE.Views.Toolbar.capBtnInsShape": "Form", "DE.Views.Toolbar.capBtnInsSymbol": "Symbol", "DE.Views.Toolbar.capBtnInsTable": "Tabel", @@ -2578,7 +2688,7 @@ "DE.Views.Toolbar.mniCustomTable": "Indsæt brugerdefineret tabel", "DE.Views.Toolbar.mniDrawTable": "Tegn tabel", "DE.Views.Toolbar.mniEditControls": "Kontrolindstillinger", - "DE.Views.Toolbar.mniEditDropCap": "Drop Cap indstillinger", + "DE.Views.Toolbar.mniEditDropCap": "Indstillinger for unical", "DE.Views.Toolbar.mniEditFooter": "Rediger sidefod", "DE.Views.Toolbar.mniEditHeader": "Rediger overskrift", "DE.Views.Toolbar.mniEraseTable": "Slet tabel", @@ -2592,6 +2702,8 @@ "DE.Views.Toolbar.mniImageFromStorage": "Billede fra opbevaring", "DE.Views.Toolbar.mniImageFromUrl": "Billede fra URL", "DE.Views.Toolbar.mniLowerCase": "små bogstaver", + "DE.Views.Toolbar.mniRemoveFooter": "Fjern sidefod", + "DE.Views.Toolbar.mniRemoveHeader": "Fjern overskrift", "DE.Views.Toolbar.mniSentenceCase": "Sætning store/små bogstaver.", "DE.Views.Toolbar.mniTextToTable": "Konverter tekst til tabel", "DE.Views.Toolbar.mniToggleCase": "Skift store/små bogstaver", @@ -2650,11 +2762,11 @@ "DE.Views.Toolbar.textRichControl": "Indsæt indholdskontrol af formatteret tekst", "DE.Views.Toolbar.textRight": "Højre:", "DE.Views.Toolbar.textStrikeout": "Strikethrough", - "DE.Views.Toolbar.textStyleMenuDelete": "Slet formattering", - "DE.Views.Toolbar.textStyleMenuDeleteAll": "Slet alle brugerdefinerede formatteringer", - "DE.Views.Toolbar.textStyleMenuNew": "Ny stilart fra udvalg", + "DE.Views.Toolbar.textStyleMenuDelete": "Slet typografi", + "DE.Views.Toolbar.textStyleMenuDeleteAll": "Slet alle brugerdefinerede typografier", + "DE.Views.Toolbar.textStyleMenuNew": "Ny typografi fra markering", "DE.Views.Toolbar.textStyleMenuRestore": "Gendan til standard", - "DE.Views.Toolbar.textStyleMenuRestoreAll": "Gendan alt til standard stilarter", + "DE.Views.Toolbar.textStyleMenuRestoreAll": "Gendan alle typografier til standard", "DE.Views.Toolbar.textStyleMenuUpdate": "Opdater fra valg", "DE.Views.Toolbar.textSubscript": "Subscript", "DE.Views.Toolbar.textSuperscript": "Superscript", @@ -2667,6 +2779,7 @@ "DE.Views.Toolbar.textTabLinks": "Referencer", "DE.Views.Toolbar.textTabProtect": "Beskyttelse", "DE.Views.Toolbar.textTabReview": "Gennemse", + "DE.Views.Toolbar.textTabView": "Vis", "DE.Views.Toolbar.textTitleError": "Fejl", "DE.Views.Toolbar.textToCurrent": "Til nuværende position", "DE.Views.Toolbar.textTop": "Top:", @@ -2679,16 +2792,17 @@ "DE.Views.Toolbar.tipBlankPage": "Indsæt tom side", "DE.Views.Toolbar.tipChangeCase": "Ændre store/små bogstaver", "DE.Views.Toolbar.tipChangeChart": "Skift diagramtype", - "DE.Views.Toolbar.tipClearStyle": "Ryd formatering", + "DE.Views.Toolbar.tipClearStyle": "Ryd typografi", "DE.Views.Toolbar.tipColorSchemas": "Skift farveskema", "DE.Views.Toolbar.tipColumns": "Indsæt kolonner", "DE.Views.Toolbar.tipControls": "Indsæt indholdskontrol", "DE.Views.Toolbar.tipCopy": "Kopier", - "DE.Views.Toolbar.tipCopyStyle": "Kopier formatering", + "DE.Views.Toolbar.tipCopyStyle": "Kopier typografi", + "DE.Views.Toolbar.tipCut": "Klip", "DE.Views.Toolbar.tipDateTime": "Indsæt nuværende dato og tid", "DE.Views.Toolbar.tipDecFont": "Formindsk skriftstørrelsen", "DE.Views.Toolbar.tipDecPrLeft": "Formindsk indrykning", - "DE.Views.Toolbar.tipDropCap": "Indsæt Drop cap", + "DE.Views.Toolbar.tipDropCap": "Indsæt unical", "DE.Views.Toolbar.tipEditHeader": "Rediger header eller sidefod", "DE.Views.Toolbar.tipFontColor": "Skriftfarve", "DE.Views.Toolbar.tipFontName": "Skrifttype", @@ -2712,19 +2826,22 @@ "DE.Views.Toolbar.tipLineSpace": "Afsnit linie afstand", "DE.Views.Toolbar.tipMailRecepients": "Mailfletning", "DE.Views.Toolbar.tipMarkers": "Punkter", + "DE.Views.Toolbar.tipMarkersArrow": "Pilepunkter", + "DE.Views.Toolbar.tipMarkersCheckmark": "Fluebenspunkter", "DE.Views.Toolbar.tipMultilevels": "Liste med flere niveauer", "DE.Views.Toolbar.tipNumbers": "Nummerering", "DE.Views.Toolbar.tipPageBreak": "Indsæt side eller sektion", "DE.Views.Toolbar.tipPageMargins": "Side margener", "DE.Views.Toolbar.tipPageOrient": "Sideorientering", "DE.Views.Toolbar.tipPageSize": "Side størrelse", - "DE.Views.Toolbar.tipParagraphStyle": "Afsnit stilart", + "DE.Views.Toolbar.tipParagraphStyle": "Afsnitstypografi", "DE.Views.Toolbar.tipPaste": "Indsæt", "DE.Views.Toolbar.tipPrColor": "Afsnit baggrund", "DE.Views.Toolbar.tipPrint": "Print", "DE.Views.Toolbar.tipRedo": "Fortryd", "DE.Views.Toolbar.tipSave": "Gem", "DE.Views.Toolbar.tipSaveCoauth": "Gem dine ændringer så de andre brugere kan se dem.", + "DE.Views.Toolbar.tipSelectAll": "Vælg alt", "DE.Views.Toolbar.tipSendBackward": "Send tilbage", "DE.Views.Toolbar.tipSendForward": "Ryk frem", "DE.Views.Toolbar.tipShowHiddenChars": "Ikkeprintende tegn", @@ -2758,7 +2875,16 @@ "DE.Views.Toolbar.txtScheme7": "Egenkapital", "DE.Views.Toolbar.txtScheme8": "Flow", "DE.Views.Toolbar.txtScheme9": "Støberi", - "DE.Views.WatermarkSettingsDialog.textAuto": "automatisk", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Vis altid værktøjslinje", + "DE.Views.ViewTab.textFitToPage": "Tilpas til side", + "DE.Views.ViewTab.textFitToWidth": "Tilpas til bredde", + "DE.Views.ViewTab.textOutline": "Overskrifter", + "DE.Views.ViewTab.textRulers": "Linealer", + "DE.Views.ViewTab.textZoom": "Zoom", + "DE.Views.ViewTab.tipFitToPage": "Tilpas til side", + "DE.Views.ViewTab.tipFitToWidth": "Tilpas til bredde", + "DE.Views.ViewTab.tipHeadings": "Overskrifter", + "DE.Views.WatermarkSettingsDialog.textAuto": "Automatisk", "DE.Views.WatermarkSettingsDialog.textBold": "Fed", "DE.Views.WatermarkSettingsDialog.textColor": "Tekstfarve", "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index b67e63176..6263be9c3 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -125,6 +125,13 @@ "Common.define.chartData.textScatterSmoothMarker": "Punkte mit interpolierten Linien und Datenpunkten", "Common.define.chartData.textStock": "Kurs", "Common.define.chartData.textSurface": "Oberfläche", + "Common.define.smartArt.textBalance": "Kontostand", + "Common.define.smartArt.textEquation": "Gleichung", + "Common.define.smartArt.textFunnel": "Trichter", + "Common.define.smartArt.textList": "Liste", + "Common.define.smartArt.textMatrix": "Matrix", + "Common.define.smartArt.textOther": "Sonstiges", + "Common.define.smartArt.textPicture": "Bild", "Common.Translation.textMoreButton": "Mehr", "Common.Translation.warnFileLocked": "Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.", "Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen", @@ -287,14 +294,10 @@ "Common.Views.CopyWarningDialog.textToPaste": "zum Einfügen", "Common.Views.DocumentAccessDialog.textLoading": "Ladevorgang...", "Common.Views.DocumentAccessDialog.textTitle": "Freigabeeinstellungen", - "Common.Views.ExternalDiagramEditor.textClose": "Schließen", - "Common.Views.ExternalDiagramEditor.textSave": "Speichern und beenden", "Common.Views.ExternalDiagramEditor.textTitle": "Diagramm bearbeiten", - "Common.Views.ExternalMergeEditor.textClose": "Schließen", - "Common.Views.ExternalMergeEditor.textSave": "Speichern und beenden", + "Common.Views.ExternalEditor.textClose": "Schließen", + "Common.Views.ExternalEditor.textSave": "Speichern und beenden", "Common.Views.ExternalMergeEditor.textTitle": "Seriendruckempfänger", - "Common.Views.ExternalOleEditor.textClose": "Schließen", - "Common.Views.ExternalOleEditor.textSave": "Speichern und beenden", "Common.Views.ExternalOleEditor.textTitle": "Editor der Tabellenkalkulationen", "Common.Views.Header.labelCoUsersDescr": "Das Dokument wird gerade von mehreren Benutzern bearbeitet.", "Common.Views.Header.textAddFavorite": "Als Favorit kennzeichnen", @@ -360,6 +363,7 @@ "Common.Views.Plugins.textStart": "Starten", "Common.Views.Plugins.textStop": "Beenden", "Common.Views.Protection.hintAddPwd": "Mit Kennwort verschlüsseln", + "Common.Views.Protection.hintDelPwd": "Kennwort löschen", "Common.Views.Protection.hintPwd": "Das Kennwort ändern oder löschen", "Common.Views.Protection.hintSignature": "Digitale Signatur oder Unterschriftenzeile hinzufügen", "Common.Views.Protection.txtAddPwd": "Kennwort hinzufügen", @@ -471,6 +475,7 @@ "Common.Views.SaveAsDlg.textTitle": "Ordner fürs Speichern", "Common.Views.SearchPanel.textCaseSensitive": "Groß-/Kleinschreibung beachten", "Common.Views.SearchPanel.textCloseSearch": "Suche schließen", + "Common.Views.SearchPanel.textContentChanged": "Dokument verändert.", "Common.Views.SearchPanel.textFind": "Suchen", "Common.Views.SearchPanel.textFindAndReplace": "Suchen und ersetzen", "Common.Views.SearchPanel.textMatchUsingRegExp": "Über reguläre Ausdrücke abgleichen", @@ -479,6 +484,7 @@ "Common.Views.SearchPanel.textReplace": "Ersetzen", "Common.Views.SearchPanel.textReplaceAll": "Alle ersetzen", "Common.Views.SearchPanel.textReplaceWith": "Ersetzen durch", + "Common.Views.SearchPanel.textSearchAgain": "{0}Neue Suche durchführen{1} für genaue Ergebnisse.", "Common.Views.SearchPanel.textSearchHasStopped": "Suche abgebrochen", "Common.Views.SearchPanel.textSearchResults": "Suchergebnisse: {0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "Es gibt zu viele Ergebnisse, um sie hier zu zeigen", @@ -503,7 +509,6 @@ "Common.Views.SignDialog.tipFontName": "Schriftart", "Common.Views.SignDialog.tipFontSize": "Schriftgrad", "Common.Views.SignSettingsDialog.textAllowComment": "Signaturgeber verfügt über die Möglichkeit, einen Kommentar im Signaturdialog hinzuzufügen", - "Common.Views.SignSettingsDialog.textInfo": "Signaturgeberinformationen", "Common.Views.SignSettingsDialog.textInfoEmail": "Email Adresse", "Common.Views.SignSettingsDialog.textInfoName": "Name", "Common.Views.SignSettingsDialog.textInfoTitle": "Titel des Signatureingebers", @@ -589,6 +594,7 @@ "DE.Controllers.Main.errorMailMergeLoadFile": "Fehler beim Laden des Dokuments. Bitte wählen Sie eine andere Datei.", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge ist fehlgeschlagen.", "DE.Controllers.Main.errorNoTOC": "Es gibt kein Inhaltsverzeichnis. Sie können es auf der Registerkarte \"Verweise\" einfügen.", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "Das eingegebene Kennwort ist ungültig.
Stellen Sie sicher, dass die FESTSTELLTASTE nicht aktiviert ist und dass Sie die korrekte Groß-/Kleinschreibung verwenden.", "DE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen.", "DE.Controllers.Main.errorServerVersion": "Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.", "DE.Controllers.Main.errorSessionAbsolute": "Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.", @@ -597,6 +603,7 @@ "DE.Controllers.Main.errorSetPassword": "Das Passwort konnte nicht festgelegt werden.", "DE.Controllers.Main.errorStockChart": "Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, ordnen Sie die Daten auf dem Blatt folgendermaßen an:
Eröffnungspreis, Höchstpreis, Tiefstpreis, Schlusskurs.", "DE.Controllers.Main.errorSubmit": "Fehler beim Senden.", + "DE.Controllers.Main.errorTextFormWrongFormat": "Der eingegebene Wert stimmt nicht mit dem Format des Feldes überein.", "DE.Controllers.Main.errorToken": "Sicherheitstoken des Dokuments ist nicht korrekt.
Wenden Sie sich an Ihren Serveradministrator.", "DE.Controllers.Main.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.
Wenden Sie sich an Ihren Serveradministrator.", "DE.Controllers.Main.errorUpdateVersion": "Die Dateiversion wurde geändert. Die Seite wird neu geladen.", @@ -644,6 +651,7 @@ "DE.Controllers.Main.textClose": "Schließen", "DE.Controllers.Main.textCloseTip": "Klicken Sie, um den Tipp zu schließen", "DE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren", + "DE.Controllers.Main.textContinue": "Fortsetzen", "DE.Controllers.Main.textConvertEquation": "Diese Gleichung wurde in einer alten Version des Gleichungseditors erstellt, die nicht mehr unterstützt wird. Um die Gleichung zu bearbeiten, konvertieren Sie diese ins Format Office Math ML.
Jetzt konvertieren?", "DE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln.
Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.", "DE.Controllers.Main.textDisconnect": "Verbindung wurde unterbrochen", @@ -664,6 +672,7 @@ "DE.Controllers.Main.textStrict": "Formaler Modus", "DE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.
Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.", "DE.Controllers.Main.textTryUndoRedoWarn": "Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.", + "DE.Controllers.Main.textUndo": "Rückgängig", "DE.Controllers.Main.titleLicenseExp": "Lizenz ist abgelaufen", "DE.Controllers.Main.titleServerVersion": "Editor wurde aktualisiert", "DE.Controllers.Main.titleUpdateVersion": "Version wurde geändert", @@ -1335,12 +1344,17 @@ "DE.Views.CellsAddDialog.textUp": "Über dem Cursor", "DE.Views.ChartSettings.textAdvanced": "Erweiterte Einstellungen anzeigen", "DE.Views.ChartSettings.textChartType": "Diagrammtyp ändern", + "DE.Views.ChartSettings.textDown": "Unten", "DE.Views.ChartSettings.textEditData": "Daten ändern", "DE.Views.ChartSettings.textHeight": "Höhe", + "DE.Views.ChartSettings.textLeft": "Links", "DE.Views.ChartSettings.textOriginalSize": "Tatsächliche Größe", + "DE.Views.ChartSettings.textPerspective": "Perspektive", + "DE.Views.ChartSettings.textRight": "Rechts", "DE.Views.ChartSettings.textSize": "Größe", "DE.Views.ChartSettings.textStyle": "Stil", "DE.Views.ChartSettings.textUndock": "Seitenbereich abdocken", + "DE.Views.ChartSettings.textUp": "Aufwärts", "DE.Views.ChartSettings.textWidth": "Breite", "DE.Views.ChartSettings.textWrap": "Textumbruch", "DE.Views.ChartSettings.txtBehind": "Hinter dem Text", @@ -1432,6 +1446,8 @@ "DE.Views.DateTimeDialog.textLang": "Sprache", "DE.Views.DateTimeDialog.textUpdate": "Automatisch aktualisieren", "DE.Views.DateTimeDialog.txtTitle": "Datum & Uhrzeit", + "DE.Views.DocProtection.hintProtectDoc": "Datei schützen", + "DE.Views.DocProtection.txtProtectDoc": "Datei schützen", "DE.Views.DocumentHolder.aboveText": "Oben", "DE.Views.DocumentHolder.addCommentText": "Kommentar hinzufügen", "DE.Views.DocumentHolder.advancedDropCapText": "Initialformatierung", @@ -1757,6 +1773,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiken", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Thema", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbole", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Hochgeladen", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Wörter", @@ -1844,6 +1861,7 @@ "DE.Views.FormSettings.textColor": "Rahmenfarbe", "DE.Views.FormSettings.textComb": "Zeichenanzahl in Textfeld", "DE.Views.FormSettings.textCombobox": "Combobox", + "DE.Views.FormSettings.textComplex": "Komplexes Feld", "DE.Views.FormSettings.textConnected": "Verbundene Felder", "DE.Views.FormSettings.textDelete": "Löschen", "DE.Views.FormSettings.textDigits": "Zahlen", @@ -1852,19 +1870,25 @@ "DE.Views.FormSettings.textExact": "Genau", "DE.Views.FormSettings.textField": "Textfeld", "DE.Views.FormSettings.textFixed": "Feste Feldgröße", + "DE.Views.FormSettings.textFormat": "Format", + "DE.Views.FormSettings.textFormatSymbols": "Erlaubte Symbole", "DE.Views.FormSettings.textFromFile": "Aus einer Datei", "DE.Views.FormSettings.textFromStorage": "Aus dem Speicher", "DE.Views.FormSettings.textFromUrl": "Aus einer URL", "DE.Views.FormSettings.textGroupKey": "Gruppenschlüssel", "DE.Views.FormSettings.textImage": "Bild", "DE.Views.FormSettings.textKey": "Schlüssel", + "DE.Views.FormSettings.textLetters": "Buchstaben", "DE.Views.FormSettings.textLock": "Sperren", + "DE.Views.FormSettings.textMask": "Beliebige Maske", "DE.Views.FormSettings.textMaxChars": "Zeichengrenze", "DE.Views.FormSettings.textMulti": "Mehrzeiliges Feld", "DE.Views.FormSettings.textNever": "Nie", "DE.Views.FormSettings.textNoBorder": "Kein Rahmen", + "DE.Views.FormSettings.textNone": "Kein", "DE.Views.FormSettings.textPlaceholder": "Platzhalter", "DE.Views.FormSettings.textRadiobox": "Radiobutton", + "DE.Views.FormSettings.textReg": "Regulärer Ausdruck", "DE.Views.FormSettings.textRequired": "Erforderlich", "DE.Views.FormSettings.textScale": "Wann skalieren", "DE.Views.FormSettings.textSelectImage": "Bild auswählen", @@ -1881,10 +1905,13 @@ "DE.Views.FormSettings.textWidth": "Zeilenbreite", "DE.Views.FormsTab.capBtnCheckBox": "Kontrollkästchen", "DE.Views.FormsTab.capBtnComboBox": "Combobox", + "DE.Views.FormsTab.capBtnComplex": "Komplexes Feld", "DE.Views.FormsTab.capBtnDownloadForm": "Als OFORM herunterladen", "DE.Views.FormsTab.capBtnDropDown": "Dropdown", + "DE.Views.FormsTab.capBtnEmail": "E-Mail-Adresse", "DE.Views.FormsTab.capBtnImage": "Bild", "DE.Views.FormsTab.capBtnNext": "Nächstes Feld", + "DE.Views.FormsTab.capBtnPhone": "Telefonnummer", "DE.Views.FormsTab.capBtnPrev": "Vorheriges Feld", "DE.Views.FormsTab.capBtnRadioBox": "Radiobutton", "DE.Views.FormsTab.capBtnSaveForm": "Als OFORM speichern", @@ -1901,10 +1928,13 @@ "DE.Views.FormsTab.textSubmited": "Das Formular wurde erfolgreich versandt", "DE.Views.FormsTab.tipCheckBox": "Checkbox einfügen", "DE.Views.FormsTab.tipComboBox": "Combobox einfügen", + "DE.Views.FormsTab.tipComplexField": "Komplexes Feld einfügen", "DE.Views.FormsTab.tipDownloadForm": "Die Datei als ausfüllbares OFORM-Dokument herunterladen", "DE.Views.FormsTab.tipDropDown": "Dropdown-Liste einfügen", + "DE.Views.FormsTab.tipEmailField": "E-Mail Adresse einfügen", "DE.Views.FormsTab.tipImageField": "Bild einfügen", "DE.Views.FormsTab.tipNextForm": "Zum nächsten Feld wechseln", + "DE.Views.FormsTab.tipPhoneField": "Telefonnummer einfügen", "DE.Views.FormsTab.tipPrevForm": "Zum vorherigen Feld wechseln", "DE.Views.FormsTab.tipRadioBox": "Radiobutton einfügen", "DE.Views.FormsTab.tipSaveForm": "Als eine ausfüllbare OFORM-Datei speichern", @@ -2057,6 +2087,7 @@ "DE.Views.LeftMenu.tipComments": "Kommentare", "DE.Views.LeftMenu.tipNavigation": "Navigation", "DE.Views.LeftMenu.tipOutline": "Überschriften", + "DE.Views.LeftMenu.tipPageThumbnails": "Miniaturansichten", "DE.Views.LeftMenu.tipPlugins": "Plugins", "DE.Views.LeftMenu.tipSearch": "Suchen", "DE.Views.LeftMenu.tipSupport": "Feedback und Support", @@ -2364,6 +2395,14 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Nur obere Rahmenlinie festlegen", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Keine Rahmen", + "DE.Views.ProtectDialog.textComments": "Kommentare", + "DE.Views.ProtectDialog.txtIncorrectPwd": "Bestätigungseingabe ist nicht identisch", + "DE.Views.ProtectDialog.txtOptional": "optional", + "DE.Views.ProtectDialog.txtPassword": "Kennwort", + "DE.Views.ProtectDialog.txtProtect": "Schützen", + "DE.Views.ProtectDialog.txtRepeat": "Kennwort wiederholen", + "DE.Views.ProtectDialog.txtTitle": "Schützen", + "DE.Views.ProtectDialog.txtWarning": "Vorsicht: Wenn Sie das Kennwort verlieren oder vergessen, lässt es sich nicht mehr wiederherstellen. Bewahren Sie es an einem sicheren Ort auf.", "DE.Views.RightMenu.txtChartSettings": "Diagrammeinstellungen", "DE.Views.RightMenu.txtFormSettings": "Einstellungen des Formulars", "DE.Views.RightMenu.txtHeaderFooterSettings": "Kopf- und Fußzeileneinstellungen", @@ -2554,6 +2593,7 @@ "DE.Views.TableSettings.tipOuter": "Nur äußere Rahmenlinie festlegen", "DE.Views.TableSettings.tipRight": "Nur äußere rechte Rahmenlinie festlegen", "DE.Views.TableSettings.tipTop": "Nur äußere obere Rahmenlinie festlegen", + "DE.Views.TableSettings.txtGroupTable_Custom": "Einstellbar", "DE.Views.TableSettings.txtNoBorders": "Keine Rahmen", "DE.Views.TableSettings.txtTable_Accent": "Akzent", "DE.Views.TableSettings.txtTable_Colorful": "Farbig", @@ -2681,7 +2721,7 @@ "DE.Views.TextToTableDialog.textTitle": "Text in Tabelle umwandeln", "DE.Views.TextToTableDialog.textWindow": "An Fenster autoanpassen", "DE.Views.TextToTableDialog.txtAutoText": "Automatisch", - "DE.Views.Toolbar.capBtnAddComment": "Kommentar hinzufügen", + "DE.Views.Toolbar.capBtnAddComment": "Kommentar Hinzufügen", "DE.Views.Toolbar.capBtnBlankPage": "Leere Seite", "DE.Views.Toolbar.capBtnColumns": "Spalten", "DE.Views.Toolbar.capBtnComment": "Kommentar", @@ -2694,6 +2734,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Bild", "DE.Views.Toolbar.capBtnInsPagebreak": "Umbrüche", "DE.Views.Toolbar.capBtnInsShape": "Form", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Symbol", "DE.Views.Toolbar.capBtnInsTable": "Tabelle", "DE.Views.Toolbar.capBtnInsTextart": "Text Art", @@ -2859,6 +2900,10 @@ "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.tipMultiLevelArticl": "Mehrstufig nummerierte Artikel", + "DE.Views.Toolbar.tipMultiLevelChapter": "Mehrstufig nummerierte Kapitel", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Mehrstufig nummerierte Überschriften", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Unterschiedliche mehrstufig nummerierte Überschriften", "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", @@ -2919,8 +2964,11 @@ "DE.Views.ViewTab.textRulers": "Lineale", "DE.Views.ViewTab.textStatusBar": "Statusleiste", "DE.Views.ViewTab.textZoom": "Zoom", + "DE.Views.ViewTab.tipDarkDocument": "Dunkles Dokument", "DE.Views.ViewTab.tipFitToPage": "Seite anpassen", + "DE.Views.ViewTab.tipFitToWidth": "An Breite anpassen", "DE.Views.ViewTab.tipHeadings": "Überschriften", + "DE.Views.ViewTab.tipInterfaceTheme": "Thema der Benutzeroberfläche", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatisch", "DE.Views.WatermarkSettingsDialog.textBold": "Fett", "DE.Views.WatermarkSettingsDialog.textColor": "Textfarbe", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index 7100629f6..9e3d44221 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -194,6 +194,7 @@ "Common.UI.ThemeColorPalette.textStandartColors": "Τυπικά Χρώματα", "Common.UI.ThemeColorPalette.textThemeColors": "Χρώματα Θέματος", "Common.UI.Themes.txtThemeClassicLight": "Κλασικό Ανοιχτό", + "Common.UI.Themes.txtThemeContrastDark": "Αντίθεση Σκοτεινή", "Common.UI.Themes.txtThemeDark": "Σκούρο", "Common.UI.Themes.txtThemeLight": "Ανοιχτό", "Common.UI.Themes.txtThemeSystem": "Ίδιο με το σύστημα", @@ -282,13 +283,8 @@ "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.ExternalOleEditor.textClose": "Κλείσιμο", "Common.Views.Header.labelCoUsersDescr": "Οι χρήστες που επεξεργάζονται το αρχείο:", "Common.Views.Header.textAddFavorite": "Σημείωση ως αγαπημένο", "Common.Views.Header.textAdvSettings": "Προηγμένες ρυθμίσεις", @@ -495,7 +491,6 @@ "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": "Τίτλος Υπογράφοντος", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 303e6e092..742f32423 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -125,6 +125,165 @@ "Common.define.chartData.textScatterSmoothMarker": "Scatter with smooth lines and markers", "Common.define.chartData.textStock": "Stock", "Common.define.chartData.textSurface": "Surface", + "Common.define.smartArt.textAccentedPicture": "Accented Picture", + "Common.define.smartArt.textAccentProcess": "Accent Process", + "Common.define.smartArt.textAlternatingFlow": "Alternating Flow", + "Common.define.smartArt.textAlternatingHexagons": "Alternating Hexagons", + "Common.define.smartArt.textAlternatingPictureBlocks": "Alternating Picture Blocks", + "Common.define.smartArt.textAlternatingPictureCircles": "Alternating Picture Circles", + "Common.define.smartArt.textArchitectureLayout": "Architecture Layout", + "Common.define.smartArt.textArrowRibbon": "Arrow Ribbon", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Ascending Picture Accent Process", + "Common.define.smartArt.textBalance": "Balance", + "Common.define.smartArt.textBasicBendingProcess": "Basic Bending Process", + "Common.define.smartArt.textBasicBlockList": "Basic Block List", + "Common.define.smartArt.textBasicChevronProcess": "Basic Chevron Process", + "Common.define.smartArt.textBasicCycle": "Basic Cycle", + "Common.define.smartArt.textBasicMatrix": "Basic Matrix", + "Common.define.smartArt.textBasicPie": "Basic Pie", + "Common.define.smartArt.textBasicProcess": "Basic Process", + "Common.define.smartArt.textBasicPyramid": "Basic Pyramid", + "Common.define.smartArt.textBasicRadial": "Basic Radial", + "Common.define.smartArt.textBasicTarget": "Basic Target", + "Common.define.smartArt.textBasicTimeline": "Basic Timeline", + "Common.define.smartArt.textBasicVenn": "Basic Venn", + "Common.define.smartArt.textBendingPictureAccentList": "Bending Picture Accent List", + "Common.define.smartArt.textBendingPictureBlocks": "Bending Picture Blocks", + "Common.define.smartArt.textBendingPictureCaption": "Bending Picture Caption", + "Common.define.smartArt.textBendingPictureCaptionList": "Bending Picture Caption List", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "Bending Picture Semi-Transparent Text", + "Common.define.smartArt.textBlockCycle": "Block Cycle", + "Common.define.smartArt.textBubblePictureList": "Bubble Picture List", + "Common.define.smartArt.textCaptionedPictures": "Captioned Pictures", + "Common.define.smartArt.textChevronAccentProcess": "Chevron Accent Process", + "Common.define.smartArt.textChevronList": "Chevron List", + "Common.define.smartArt.textCircleAccentTimeline": "Circle Accent Timeline", + "Common.define.smartArt.textCircleArrowProcess": "Circle Arrow Process", + "Common.define.smartArt.textCirclePictureHierarchy": "Circle Picture Hierarchy", + "Common.define.smartArt.textCircleProcess": "Circle Process", + "Common.define.smartArt.textCircleRelationship": "Circle Relationship", + "Common.define.smartArt.textCircularBendingProcess": "Circular Bending Process", + "Common.define.smartArt.textCircularPictureCallout": "Circular Picture Callout", + "Common.define.smartArt.textClosedChevronProcess": "Closed Chevron Process", + "Common.define.smartArt.textContinuousArrowProcess": "Continuous Arrow Process", + "Common.define.smartArt.textContinuousBlockProcess": "Continuous Block Process", + "Common.define.smartArt.textContinuousCycle": "Continuous Cycle", + "Common.define.smartArt.textContinuousPictureList": "Continuous Picture List", + "Common.define.smartArt.textConvergingArrows": "Converging Arrows", + "Common.define.smartArt.textConvergingRadial": "Converging Radial", + "Common.define.smartArt.textConvergingText": "Converging Text", + "Common.define.smartArt.textCounterbalanceArrows": "Counterbalance Arrows", + "Common.define.smartArt.textCycle": "Cycle", + "Common.define.smartArt.textCycleMatrix": "Cycle Matrix", + "Common.define.smartArt.textDescendingBlockList": "Descending Block List", + "Common.define.smartArt.textDescendingProcess": "Descending Process", + "Common.define.smartArt.textDetailedProcess": "Detailed Process", + "Common.define.smartArt.textDivergingArrows": "Diverging Arrows", + "Common.define.smartArt.textDivergingRadial": "Diverging Radial", + "Common.define.smartArt.textEquation": "Equation", + "Common.define.smartArt.textFramedTextPicture": "Framed Text Picture", + "Common.define.smartArt.textFunnel": "Funnel", + "Common.define.smartArt.textGear": "Gear", + "Common.define.smartArt.textGridMatrix": "Grid Matrix", + "Common.define.smartArt.textGroupedList": "Grouped List", + "Common.define.smartArt.textHalfCircleOrganizationChart": "Half Circle Organization Chart", + "Common.define.smartArt.textHexagonCluster": "Hexagon Cluster", + "Common.define.smartArt.textHexagonRadial": "Hexagon Radial", + "Common.define.smartArt.textHierarchy": "Hierarchy", + "Common.define.smartArt.textHierarchyList": "Hierarchy List", + "Common.define.smartArt.textHorizontalBulletList": "Horizontal Bullet List", + "Common.define.smartArt.textHorizontalHierarchy": "Horizontal Hierarchy", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "Horizontal Labeled Hierarchy", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Horizontal Multi-Level Hierarchy", + "Common.define.smartArt.textHorizontalOrganizationChart": "Horizontal Organization Chart", + "Common.define.smartArt.textHorizontalPictureList": "Horizontal Picture List", + "Common.define.smartArt.textIncreasingArrowProcess": "Increasing Arrow Process", + "Common.define.smartArt.textIncreasingCircleProcess": "Increasing Circle Process", + "Common.define.smartArt.textInterconnectedBlockProcess": "Interconnected Block Process", + "Common.define.smartArt.textInterconnectedRings": "Interconnected Rings", + "Common.define.smartArt.textInvertedPyramid": "Inverted Pyramid", + "Common.define.smartArt.textLabeledHierarchy": "Labeled Hierarchy", + "Common.define.smartArt.textLinearVenn": "Linear Venn", + "Common.define.smartArt.textLinedList": "Lined List", + "Common.define.smartArt.textList": "List", + "Common.define.smartArt.textMatrix": "Matrix", + "Common.define.smartArt.textMultidirectionalCycle": "Multidirectional Cycle", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "Name and Title Organization Chart", + "Common.define.smartArt.textNestedTarget": "Nested Target", + "Common.define.smartArt.textNondirectionalCycle": "Nondirectional Cycle", + "Common.define.smartArt.textOpposingArrows": "Opposing Arrows", + "Common.define.smartArt.textOpposingIdeas": "Opposing Ideas", + "Common.define.smartArt.textOrganizationChart": "Organization Chart", + "Common.define.smartArt.textOther": "Other", + "Common.define.smartArt.textPhasedProcess": "Phased Process", + "Common.define.smartArt.textPicture": "Picture", + "Common.define.smartArt.textPictureAccentBlocks": "Picture Accent Blocks", + "Common.define.smartArt.textPictureAccentList": "Picture Accent List", + "Common.define.smartArt.textPictureAccentProcess": "Picture Accent Process", + "Common.define.smartArt.textPictureCaptionList": "Picture Caption List", + "Common.define.smartArt.textPictureFrame": "PictureFrame", + "Common.define.smartArt.textPictureGrid": "Picture Grid", + "Common.define.smartArt.textPictureLineup": "Picture Lineup", + "Common.define.smartArt.textPictureOrganizationChart": "Picture Organization Chart", + "Common.define.smartArt.textPictureStrips": "Picture Strips", + "Common.define.smartArt.textPieProcess": "Pie Process", + "Common.define.smartArt.textPlusAndMinus": "Plus and Minus", + "Common.define.smartArt.textProcess": "Process", + "Common.define.smartArt.textProcessArrows": "Process Arrows", + "Common.define.smartArt.textProcessList": "Process List", + "Common.define.smartArt.textPyramid": "Pyramid", + "Common.define.smartArt.textPyramidList": "Pyramid List", + "Common.define.smartArt.textRadialCluster": "Radial Cluster", + "Common.define.smartArt.textRadialCycle": "Radial Cycle", + "Common.define.smartArt.textRadialList": "Radial List", + "Common.define.smartArt.textRadialPictureList": "Radial Picture List", + "Common.define.smartArt.textRadialVenn": "Radial Venn", + "Common.define.smartArt.textRandomToResultProcess": "Random to Result Process", + "Common.define.smartArt.textRelationship": "Relationship", + "Common.define.smartArt.textRepeatingBendingProcess": "Repeating Bending Process", + "Common.define.smartArt.textReverseList": "Reverse List", + "Common.define.smartArt.textSegmentedCycle": "Segmented Cycle", + "Common.define.smartArt.textSegmentedProcess": "Segmented Process", + "Common.define.smartArt.textSegmentedPyramid": "Segmented Pyramid", + "Common.define.smartArt.textSnapshotPictureList": "Snapshot Picture List", + "Common.define.smartArt.textSpiralPicture": "Spiral Picture", + "Common.define.smartArt.textSquareAccentList": "Square Accent List", + "Common.define.smartArt.textStackedList": "Stacked List", + "Common.define.smartArt.textStackedVenn": "Stacked Venn", + "Common.define.smartArt.textStaggeredProcess": "Staggered Process", + "Common.define.smartArt.textStepDownProcess": "Step Down Process", + "Common.define.smartArt.textStepUpProcess": "Step Up Process", + "Common.define.smartArt.textSubStepProcess": "Sub-Step Process", + "Common.define.smartArt.textTabbedArc": "Tabbed Arc", + "Common.define.smartArt.textTableHierarchy": "Table Hierarchy", + "Common.define.smartArt.textTableList": "Table List", + "Common.define.smartArt.textTabList": "Tab List", + "Common.define.smartArt.textTargetList": "Target List", + "Common.define.smartArt.textTextCycle": "Text Cycle", + "Common.define.smartArt.textThemePictureAccent": "Theme Picture Accent", + "Common.define.smartArt.textThemePictureAlternatingAccent": "Theme Picture Alternating Accent", + "Common.define.smartArt.textThemePictureGrid": "Theme Picture Grid", + "Common.define.smartArt.textTitledMatrix": "Titled Matrix", + "Common.define.smartArt.textTitledPictureAccentList": "Titled Picture Accent List", + "Common.define.smartArt.textTitledPictureBlocks": "Titled Picture Blocks", + "Common.define.smartArt.textTitlePictureLineup": "Title Picture Lineup", + "Common.define.smartArt.textTrapezoidList": "Trapezoid List", + "Common.define.smartArt.textUpwardArrow": "Upward Arrow", + "Common.define.smartArt.textVaryingWidthList": "Varying Width List", + "Common.define.smartArt.textVerticalAccentList": "Vertical Accent List", + "Common.define.smartArt.textVerticalArrowList": "Vertical Arrow List", + "Common.define.smartArt.textVerticalBendingProcess": "Vertical Bending Process", + "Common.define.smartArt.textVerticalBlockList": "Vertical Block List", + "Common.define.smartArt.textVerticalBoxList": "Vertical Box List", + "Common.define.smartArt.textVerticalBracketList": "Vertical Bracket List", + "Common.define.smartArt.textVerticalBulletList": "Vertical Bullet List", + "Common.define.smartArt.textVerticalChevronList": "Vertical Chevron List", + "Common.define.smartArt.textVerticalCircleList": "Vertical Circle List", + "Common.define.smartArt.textVerticalCurvedList": "Vertical Curved List", + "Common.define.smartArt.textVerticalEquation": "Vertical Equation", + "Common.define.smartArt.textVerticalPictureAccentList": "Vertical Picture Accent List", + "Common.define.smartArt.textVerticalPictureList": "Vertical Picture List", + "Common.define.smartArt.textVerticalProcess": "Vertical Process", "Common.Translation.textMoreButton": "More", "Common.Translation.warnFileLocked": "You can't edit this file because it's being edited in another app.", "Common.Translation.warnFileLockedBtnEdit": "Create a copy", @@ -184,12 +343,12 @@ "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.textTitle": "Find and replace", "Common.UI.SearchDialog.textTitle2": "Find", "Common.UI.SearchDialog.textWholeWords": "Whole words only", "Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace", "Common.UI.SearchDialog.txtBtnReplace": "Replace", - "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All", + "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.ThemeColorPalette.textRecentColors": "Recent Colors", @@ -223,9 +382,9 @@ "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Add", - "Common.Views.AutoCorrectDialog.textApplyText": "Apply As You Type", + "Common.Views.AutoCorrectDialog.textApplyText": "Apply as you type", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Text AutoCorrect", - "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat As You Type", + "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat as you type", "Common.Views.AutoCorrectDialog.textBulleted": "Automatic bulleted lists", "Common.Views.AutoCorrectDialog.textBy": "By", "Common.Views.AutoCorrectDialog.textDelete": "Delete", @@ -237,10 +396,10 @@ "Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect", "Common.Views.AutoCorrectDialog.textNumbered": "Automatic numbered lists", "Common.Views.AutoCorrectDialog.textQuotes": "\"Straight quotes\" with \"smart quotes\"", - "Common.Views.AutoCorrectDialog.textRecognized": "Recognized Functions", + "Common.Views.AutoCorrectDialog.textRecognized": "Recognized functions", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "The following expressions are recognized math expressions. They will not be automatically italicized.", "Common.Views.AutoCorrectDialog.textReplace": "Replace", - "Common.Views.AutoCorrectDialog.textReplaceText": "Replace As You Type", + "Common.Views.AutoCorrectDialog.textReplaceText": "Replace as you type", "Common.Views.AutoCorrectDialog.textReplaceType": "Replace text as you type", "Common.Views.AutoCorrectDialog.textReset": "Reset", "Common.Views.AutoCorrectDialog.textResetAll": "Reset to default", @@ -281,20 +440,16 @@ "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", + "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.DocumentAccessDialog.textTitle": "Sharing settings", "Common.Views.ExternalDiagramEditor.textTitle": "Chart Editor", - "Common.Views.ExternalMergeEditor.textClose": "Close", - "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", + "Common.Views.ExternalEditor.textClose": "Close", + "Common.Views.ExternalEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", - "Common.Views.ExternalOleEditor.textClose": "Close", - "Common.Views.ExternalOleEditor.textSave": "Save & Exit", "Common.Views.ExternalOleEditor.textTitle": "Spreadsheet Editor", "Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:", "Common.Views.Header.textAddFavorite": "Mark as favorite", @@ -330,14 +485,14 @@ "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 count.", - "Common.Views.InsertTableDialog.txtColumns": "Number of Columns", + "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.InsertTableDialog.txtTitleSplit": "Split Cell", + "Common.Views.InsertTableDialog.txtRows": "Number of rows", + "Common.Views.InsertTableDialog.txtTitle": "Table size", + "Common.Views.InsertTableDialog.txtTitleSplit": "Split cell", "Common.Views.LanguageDialog.labelSelect": "Select document language", - "Common.Views.OpenDialog.closeButtonText": "Close File", + "Common.Views.OpenDialog.closeButtonText": "Close file", "Common.Views.OpenDialog.txtEncoding": "Encoding ", "Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.", "Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file", @@ -345,12 +500,12 @@ "Common.Views.OpenDialog.txtPreview": "Preview", "Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", - "Common.Views.OpenDialog.txtTitleProtected": "Protected File", + "Common.Views.OpenDialog.txtTitleProtected": "Protected file", "Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document", "Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical", "Common.Views.PasswordDialog.txtPassword": "Password", "Common.Views.PasswordDialog.txtRepeat": "Repeat password", - "Common.Views.PasswordDialog.txtTitle": "Set Password", + "Common.Views.PasswordDialog.txtTitle": "Set password", "Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", "Common.Views.PluginDlg.textLoading": "Loading", "Common.Views.Plugins.groupCaption": "Plugins", @@ -360,6 +515,7 @@ "Common.Views.Plugins.textStart": "Start", "Common.Views.Plugins.textStop": "Stop", "Common.Views.Protection.hintAddPwd": "Encrypt with password", + "Common.Views.Protection.hintDelPwd": "Delete password", "Common.Views.Protection.hintPwd": "Change or delete password", "Common.Views.Protection.hintSignature": "Add digital signature or signature line", "Common.Views.Protection.txtAddPwd": "Add password", @@ -442,20 +598,21 @@ "Common.Views.ReviewChanges.txtSpelling": "Spell Checking", "Common.Views.ReviewChanges.txtTurnon": "Track Changes", "Common.Views.ReviewChanges.txtView": "Display Mode", - "Common.Views.ReviewChangesDialog.textTitle": "Review Changes", + "Common.Views.ReviewChangesDialog.textTitle": "Review changes", "Common.Views.ReviewChangesDialog.txtAccept": "Accept", - "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept All Changes", - "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accept Current Change", + "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept all changes", + "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accept current change", "Common.Views.ReviewChangesDialog.txtNext": "To next change", "Common.Views.ReviewChangesDialog.txtPrev": "To previous change", "Common.Views.ReviewChangesDialog.txtReject": "Reject", - "Common.Views.ReviewChangesDialog.txtRejectAll": "Reject All Changes", - "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Reject Current Change", + "Common.Views.ReviewChangesDialog.txtRejectAll": "Reject all changes", + "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Reject current change", "Common.Views.ReviewPopover.textAdd": "Add", "Common.Views.ReviewPopover.textAddReply": "Add Reply", "Common.Views.ReviewPopover.textCancel": "Cancel", "Common.Views.ReviewPopover.textClose": "Close", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textEnterComment": "Enter your comment here", "Common.Views.ReviewPopover.textFollowMove": "Follow Move", "Common.Views.ReviewPopover.textMention": "+mention will provide access to the document and send an email", "Common.Views.ReviewPopover.textMentionNotify": "+mention will notify the user via email", @@ -488,7 +645,7 @@ "Common.Views.SearchPanel.tipNextResult": "Next result", "Common.Views.SearchPanel.tipPreviousResult": "Previous result", "Common.Views.SelectFileDlg.textLoading": "Loading", - "Common.Views.SelectFileDlg.textTitle": "Select Data Source", + "Common.Views.SelectFileDlg.textTitle": "Select data source", "Common.Views.SignDialog.textBold": "Bold", "Common.Views.SignDialog.textCertificate": "Certificate", "Common.Views.SignDialog.textChange": "Change", @@ -497,49 +654,49 @@ "Common.Views.SignDialog.textNameError": "Signer name must not be empty.", "Common.Views.SignDialog.textPurpose": "Purpose for signing this document", "Common.Views.SignDialog.textSelect": "Select", - "Common.Views.SignDialog.textSelectImage": "Select Image", + "Common.Views.SignDialog.textSelectImage": "Select image", "Common.Views.SignDialog.textSignature": "Signature looks as", - "Common.Views.SignDialog.textTitle": "Sign Document", + "Common.Views.SignDialog.textTitle": "Sign document", "Common.Views.SignDialog.textUseImage": "or click 'Select Image' to use a picture as signature", "Common.Views.SignDialog.textValid": "Valid from %1 to %2", - "Common.Views.SignDialog.tipFontName": "Font Name", - "Common.Views.SignDialog.tipFontSize": "Font Size", + "Common.Views.SignDialog.tipFontName": "Font name", + "Common.Views.SignDialog.tipFontSize": "Font size", "Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog", - "Common.Views.SignSettingsDialog.textInfo": "Signer Info", - "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", - "Common.Views.SignSettingsDialog.textInfoName": "Name", - "Common.Views.SignSettingsDialog.textInfoTitle": "Signer Title", - "Common.Views.SignSettingsDialog.textInstructions": "Instructions for Signer", + "Common.Views.SignSettingsDialog.textDefInstruction": "Before signing this document, verify that the content you are signing is correct.", + "Common.Views.SignSettingsDialog.textInfoEmail": "Suggested signer's e-mail", + "Common.Views.SignSettingsDialog.textInfoName": "Suggested signer", + "Common.Views.SignSettingsDialog.textInfoTitle": "Suggested signer's title", + "Common.Views.SignSettingsDialog.textInstructions": "Instructions for signer", "Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line", - "Common.Views.SignSettingsDialog.textTitle": "Signature Setup", + "Common.Views.SignSettingsDialog.textTitle": "Signature setup", "Common.Views.SignSettingsDialog.txtEmpty": "This field is required", "Common.Views.SymbolTableDialog.textCharacter": "Character", "Common.Views.SymbolTableDialog.textCode": "Unicode HEX value", - "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign", - "Common.Views.SymbolTableDialog.textDCQuote": "Closing Double Quote", - "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote", - "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis", - "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.textCopyright": "Copyright sign", + "Common.Views.SymbolTableDialog.textDCQuote": "Closing double quote", + "Common.Views.SymbolTableDialog.textDOQuote": "Opening double quote", + "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal ellipsis", + "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": "Font", - "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking Hyphen", - "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space", - "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow Sign", - "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", + "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking hyphen", + "Common.Views.SymbolTableDialog.textNBSpace": "No-break space", + "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow sign", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em space", "Common.Views.SymbolTableDialog.textRange": "Range", "Common.Views.SymbolTableDialog.textRecent": "Recently used symbols", - "Common.Views.SymbolTableDialog.textRegistered": "Registered Sign", - "Common.Views.SymbolTableDialog.textSCQuote": "Closing Single Quote", - "Common.Views.SymbolTableDialog.textSection": "Section Sign", - "Common.Views.SymbolTableDialog.textShortcut": "Shortcut Key", - "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen", - "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote", + "Common.Views.SymbolTableDialog.textRegistered": "Registered sign", + "Common.Views.SymbolTableDialog.textSCQuote": "Closing single quote", + "Common.Views.SymbolTableDialog.textSection": "Section sign", + "Common.Views.SymbolTableDialog.textShortcut": "Shortcut key", + "Common.Views.SymbolTableDialog.textSHyphen": "Soft hyphen", + "Common.Views.SymbolTableDialog.textSOQuote": "Opening single quote", "Common.Views.SymbolTableDialog.textSpecial": "Special characters", "Common.Views.SymbolTableDialog.textSymbols": "Symbols", "Common.Views.SymbolTableDialog.textTitle": "Symbol", - "Common.Views.SymbolTableDialog.textTradeMark": "Trademark Symbol ", + "Common.Views.SymbolTableDialog.textTradeMark": "Trademark symbol ", "Common.Views.UserNameDialog.textDontShow": "Don't ask me again", "Common.Views.UserNameDialog.textLabel": "Label:", "Common.Views.UserNameDialog.textLabelError": "Label must not be empty.", @@ -559,6 +716,7 @@ "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.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", "DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", "DE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.", "DE.Controllers.Main.criticalErrorTitle": "Error", @@ -585,12 +743,18 @@ "DE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.", "DE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", "DE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to a drive or try again later.", + "DE.Controllers.Main.errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "DE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "DE.Controllers.Main.errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "DE.Controllers.Main.errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "DE.Controllers.Main.errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", "DE.Controllers.Main.errorKeyExpire": "Key descriptor expired", "DE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.Controllers.Main.errorMailMergeLoadFile": "Loading the document failed. Please select a different file.", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.", "DE.Controllers.Main.errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "The password you supplied is not correct.
Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.", "DE.Controllers.Main.errorProcessSaveResult": "Saving failed.", "DE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", "DE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", @@ -647,6 +811,7 @@ "DE.Controllers.Main.textClose": "Close", "DE.Controllers.Main.textCloseTip": "Click to close the tip", "DE.Controllers.Main.textContactUs": "Contact sales", + "DE.Controllers.Main.textContinue": "Continue", "DE.Controllers.Main.textConvertEquation": "This equation was created with an old version of the equation editor which is no longer supported. To edit it, convert the equation to the Office Math ML format.
Convert now?", "DE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.
Please contact our Sales Department to get a quote.", "DE.Controllers.Main.textDisconnect": "Connection is lost", @@ -667,6 +832,7 @@ "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.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "DE.Controllers.Main.textUndo": "Undo", "DE.Controllers.Main.titleLicenseExp": "License expired", "DE.Controllers.Main.titleServerVersion": "Editor updated", "DE.Controllers.Main.titleUpdateVersion": "Version changed", @@ -935,9 +1101,6 @@ "DE.Controllers.Main.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.", "DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "DE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "DE.Controllers.Main.textUndo": "Undo", - "DE.Controllers.Main.textContinue": "Continue", "DE.Controllers.Navigation.txtBeginning": "Beginning of document", "DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document", "DE.Controllers.Search.notcriticalErrorTitle": "Warning", @@ -1302,7 +1465,7 @@ "DE.Views.BookmarksDialog.textClose": "Close", "DE.Views.BookmarksDialog.textCopy": "Copy", "DE.Views.BookmarksDialog.textDelete": "Delete", - "DE.Views.BookmarksDialog.textGetLink": "Get Link", + "DE.Views.BookmarksDialog.textGetLink": "Get link", "DE.Views.BookmarksDialog.textGoto": "Go to", "DE.Views.BookmarksDialog.textHidden": "Hidden bookmarks", "DE.Views.BookmarksDialog.textLocation": "Location", @@ -1331,24 +1494,39 @@ "DE.Views.CaptionDialog.textPeriod": "period", "DE.Views.CaptionDialog.textSeparator": "Use separator", "DE.Views.CaptionDialog.textTable": "Table", - "DE.Views.CaptionDialog.textTitle": "Insert Caption", + "DE.Views.CaptionDialog.textTitle": "Insert caption", "DE.Views.CellsAddDialog.textCol": "Columns", "DE.Views.CellsAddDialog.textDown": "Below the cursor", "DE.Views.CellsAddDialog.textLeft": "To the left", "DE.Views.CellsAddDialog.textRight": "To the right", "DE.Views.CellsAddDialog.textRow": "Rows", - "DE.Views.CellsAddDialog.textTitle": "Insert Several", + "DE.Views.CellsAddDialog.textTitle": "Insert several", "DE.Views.CellsAddDialog.textUp": "Above the cursor", + "DE.Views.ChartSettings.text3dDepth": "Depth (% of base)", + "DE.Views.ChartSettings.text3dHeight": "Height (% of base)", + "DE.Views.ChartSettings.text3dRotation": "3D Rotation", "DE.Views.ChartSettings.textAdvanced": "Show advanced settings", + "DE.Views.ChartSettings.textAutoscale": "Autoscale", "DE.Views.ChartSettings.textChartType": "Change Chart Type", + "DE.Views.ChartSettings.textDefault": "Default Rotation", + "DE.Views.ChartSettings.textDown": "Down", "DE.Views.ChartSettings.textEditData": "Edit Data", "DE.Views.ChartSettings.textHeight": "Height", + "DE.Views.ChartSettings.textLeft": "Left", + "DE.Views.ChartSettings.textNarrow": "Narrow field of view", "DE.Views.ChartSettings.textOriginalSize": "Actual Size", + "DE.Views.ChartSettings.textPerspective": "Perspective", + "DE.Views.ChartSettings.textRight": "Right", + "DE.Views.ChartSettings.textRightAngle": "Right Angle Axes", "DE.Views.ChartSettings.textSize": "Size", "DE.Views.ChartSettings.textStyle": "Style", "DE.Views.ChartSettings.textUndock": "Undock from panel", + "DE.Views.ChartSettings.textUp": "Up", + "DE.Views.ChartSettings.textWiden": "Widen field of view", "DE.Views.ChartSettings.textWidth": "Width", "DE.Views.ChartSettings.textWrap": "Wrapping Style", + "DE.Views.ChartSettings.textX": "X rotation", + "DE.Views.ChartSettings.textY": "Y rotation", "DE.Views.ChartSettings.txtBehind": "Behind Text", "DE.Views.ChartSettings.txtInFront": "In Front of Text", "DE.Views.ChartSettings.txtInline": "In Line with Text", @@ -1360,7 +1538,7 @@ "DE.Views.ControlSettingsDialog.strGeneral": "General", "DE.Views.ControlSettingsDialog.textAdd": "Add", "DE.Views.ControlSettingsDialog.textAppearance": "Appearance", - "DE.Views.ControlSettingsDialog.textApplyAll": "Apply to All", + "DE.Views.ControlSettingsDialog.textApplyAll": "Apply to all", "DE.Views.ControlSettingsDialog.textBox": "Bounding box", "DE.Views.ControlSettingsDialog.textChange": "Edit", "DE.Views.ControlSettingsDialog.textCheckbox": "Check box", @@ -1381,7 +1559,7 @@ "DE.Views.ControlSettingsDialog.textShowAs": "Show as", "DE.Views.ControlSettingsDialog.textSystemColor": "System", "DE.Views.ControlSettingsDialog.textTag": "Tag", - "DE.Views.ControlSettingsDialog.textTitle": "Content Control Settings", + "DE.Views.ControlSettingsDialog.textTitle": "Content control settings", "DE.Views.ControlSettingsDialog.textUnchecked": "Unchecked symbol", "DE.Views.ControlSettingsDialog.textUp": "Up", "DE.Views.ControlSettingsDialog.textValue": "Value", @@ -1438,14 +1616,24 @@ "DE.Views.DateTimeDialog.textLang": "Language", "DE.Views.DateTimeDialog.textUpdate": "Update automatically", "DE.Views.DateTimeDialog.txtTitle": "Date & Time", + "DE.Views.DocProtection.hintProtectDoc": "Protect document", + "DE.Views.DocProtection.txtDocProtectedComment": "Document is protected.
You may only insert comments to this document.", + "DE.Views.DocProtection.txtDocProtectedForms": "Document is protected.
You may only fill in forms in this document.", + "DE.Views.DocProtection.txtDocProtectedTrack": "Document is protected.
You may edit this document, but all changes will be tracked.", + "DE.Views.DocProtection.txtDocProtectedView": "Document is protected.
You may only view this document.", + "DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document", + "DE.Views.DocProtection.txtProtectDoc": "Protect Document", "DE.Views.DocumentHolder.aboveText": "Above", "DE.Views.DocumentHolder.addCommentText": "Add Comment", "DE.Views.DocumentHolder.advancedDropCapText": "Drop Cap Settings", + "DE.Views.DocumentHolder.advancedEquationText": "Equation Settings", "DE.Views.DocumentHolder.advancedFrameText": "Frame Advanced Settings", "DE.Views.DocumentHolder.advancedParagraphText": "Paragraph Advanced Settings", "DE.Views.DocumentHolder.advancedTableText": "Table Advanced Settings", "DE.Views.DocumentHolder.advancedText": "Advanced Settings", "DE.Views.DocumentHolder.alignmentText": "Alignment", + "DE.Views.DocumentHolder.allLinearText": "All - Linear", + "DE.Views.DocumentHolder.allProfText": "All - Professional", "DE.Views.DocumentHolder.belowText": "Below", "DE.Views.DocumentHolder.breakBeforeText": "Page break before", "DE.Views.DocumentHolder.bulletsText": "Bullets and Numbering", @@ -1454,6 +1642,8 @@ "DE.Views.DocumentHolder.centerText": "Center", "DE.Views.DocumentHolder.chartText": "Chart Advanced Settings", "DE.Views.DocumentHolder.columnText": "Column", + "DE.Views.DocumentHolder.currLinearText": "Current - Linear", + "DE.Views.DocumentHolder.currProfText": "Current - Professional", "DE.Views.DocumentHolder.deleteColumnText": "Delete Column", "DE.Views.DocumentHolder.deleteRowText": "Delete Row", "DE.Views.DocumentHolder.deleteTableText": "Delete Table", @@ -1466,6 +1656,7 @@ "DE.Views.DocumentHolder.editFooterText": "Edit Footer", "DE.Views.DocumentHolder.editHeaderText": "Edit Header", "DE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", + "DE.Views.DocumentHolder.eqToInlineText": "Change to Inline", "DE.Views.DocumentHolder.guestText": "Guest", "DE.Views.DocumentHolder.hyperlinkText": "Hyperlink", "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignore All", @@ -1480,6 +1671,7 @@ "DE.Views.DocumentHolder.insertText": "Insert", "DE.Views.DocumentHolder.keepLinesText": "Keep lines together", "DE.Views.DocumentHolder.langText": "Select Language", + "DE.Views.DocumentHolder.latexText": "LaTeX", "DE.Views.DocumentHolder.leftText": "Left", "DE.Views.DocumentHolder.loadSpellText": "Loading variants...", "DE.Views.DocumentHolder.mergeCellsText": "Merge Cells", @@ -1667,18 +1859,19 @@ "DE.Views.DocumentHolder.txtUnderbar": "Bar under text", "DE.Views.DocumentHolder.txtUngroup": "Ungroup", "DE.Views.DocumentHolder.txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "DE.Views.DocumentHolder.unicodeText": "Unicode", "DE.Views.DocumentHolder.updateStyleText": "Update %1 style", "DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", "DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill", - "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap", + "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop cap", "DE.Views.DropcapSettingsAdvanced.strMargins": "Margins", "DE.Views.DropcapSettingsAdvanced.textAlign": "Alignment", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "At least", "DE.Views.DropcapSettingsAdvanced.textAuto": "Auto", - "DE.Views.DropcapSettingsAdvanced.textBackColor": "Background Color", - "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Border Color", + "DE.Views.DropcapSettingsAdvanced.textBackColor": "Background color", + "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Border color", "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Click on diagram or use buttons to select borders", - "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Border Size", + "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Border size", "DE.Views.DropcapSettingsAdvanced.textBottom": "Bottom", "DE.Views.DropcapSettingsAdvanced.textCenter": "Center", "DE.Views.DropcapSettingsAdvanced.textColumn": "Column", @@ -1703,8 +1896,8 @@ "DE.Views.DropcapSettingsAdvanced.textRelative": "Relative to", "DE.Views.DropcapSettingsAdvanced.textRight": "Right", "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Height in rows", - "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop Cap - Advanced Settings", - "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Frame - Advanced Settings", + "DE.Views.DropcapSettingsAdvanced.textTitle": "Drop cap - Advanced settings", + "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Frame - Advanced settings", "DE.Views.DropcapSettingsAdvanced.textTop": "Top", "DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical", "DE.Views.DropcapSettingsAdvanced.textWidth": "Width", @@ -1763,6 +1956,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistics", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbols", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Words", @@ -1953,9 +2147,9 @@ "DE.Views.HeaderFooterSettings.textTopRight": "Top right", "DE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Display", - "DE.Views.HyperlinkSettingsDialog.textExternal": "External Link", - "DE.Views.HyperlinkSettingsDialog.textInternal": "Place in Document", - "DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings", + "DE.Views.HyperlinkSettingsDialog.textExternal": "External link", + "DE.Views.HyperlinkSettingsDialog.textInternal": "Place in document", + "DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink settings", "DE.Views.HyperlinkSettingsDialog.textTooltip": "ScreenTip text", "DE.Views.HyperlinkSettingsDialog.textUrl": "Link to", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Beginning of document", @@ -1996,10 +2190,10 @@ "DE.Views.ImageSettings.txtThrough": "Through", "DE.Views.ImageSettings.txtTight": "Tight", "DE.Views.ImageSettings.txtTopAndBottom": "Top and bottom", - "DE.Views.ImageSettingsAdvanced.strMargins": "Text Padding", + "DE.Views.ImageSettingsAdvanced.strMargins": "Text padding", "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolute", "DE.Views.ImageSettingsAdvanced.textAlignment": "Alignment", - "DE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text", + "DE.Views.ImageSettingsAdvanced.textAlt": "Alternative text", "DE.Views.ImageSettingsAdvanced.textAltDescription": "Description", "DE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Title", @@ -2007,36 +2201,36 @@ "DE.Views.ImageSettingsAdvanced.textArrows": "Arrows", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Lock aspect ratio", "DE.Views.ImageSettingsAdvanced.textAutofit": "AutoFit", - "DE.Views.ImageSettingsAdvanced.textBeginSize": "Begin Size", - "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begin Style", + "DE.Views.ImageSettingsAdvanced.textBeginSize": "Begin size", + "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begin style", "DE.Views.ImageSettingsAdvanced.textBelow": "below", "DE.Views.ImageSettingsAdvanced.textBevel": "Bevel", "DE.Views.ImageSettingsAdvanced.textBottom": "Bottom", - "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Bottom Margin", - "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Text Wrapping", - "DE.Views.ImageSettingsAdvanced.textCapType": "Cap Type", + "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Bottom margin", + "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Text wrapping", + "DE.Views.ImageSettingsAdvanced.textCapType": "Cap type", "DE.Views.ImageSettingsAdvanced.textCenter": "Center", "DE.Views.ImageSettingsAdvanced.textCharacter": "Character", "DE.Views.ImageSettingsAdvanced.textColumn": "Column", - "DE.Views.ImageSettingsAdvanced.textDistance": "Distance from Text", - "DE.Views.ImageSettingsAdvanced.textEndSize": "End Size", - "DE.Views.ImageSettingsAdvanced.textEndStyle": "End Style", + "DE.Views.ImageSettingsAdvanced.textDistance": "Distance from text", + "DE.Views.ImageSettingsAdvanced.textEndSize": "End size", + "DE.Views.ImageSettingsAdvanced.textEndStyle": "End style", "DE.Views.ImageSettingsAdvanced.textFlat": "Flat", "DE.Views.ImageSettingsAdvanced.textFlipped": "Flipped", "DE.Views.ImageSettingsAdvanced.textHeight": "Height", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal", "DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally", - "DE.Views.ImageSettingsAdvanced.textJoinType": "Join Type", + "DE.Views.ImageSettingsAdvanced.textJoinType": "Join type", "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Constant proportions", "DE.Views.ImageSettingsAdvanced.textLeft": "Left", - "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Left Margin", + "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Left margin", "DE.Views.ImageSettingsAdvanced.textLine": "Line", - "DE.Views.ImageSettingsAdvanced.textLineStyle": "Line Style", + "DE.Views.ImageSettingsAdvanced.textLineStyle": "Line style", "DE.Views.ImageSettingsAdvanced.textMargin": "Margin", "DE.Views.ImageSettingsAdvanced.textMiter": "Miter", "DE.Views.ImageSettingsAdvanced.textMove": "Move object with text", "DE.Views.ImageSettingsAdvanced.textOptions": "Options", - "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Actual Size", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Actual size", "DE.Views.ImageSettingsAdvanced.textOverlap": "Allow overlap", "DE.Views.ImageSettingsAdvanced.textPage": "Page", "DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraph", @@ -2046,27 +2240,27 @@ "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relative", "DE.Views.ImageSettingsAdvanced.textResizeFit": "Resize shape to fit text", "DE.Views.ImageSettingsAdvanced.textRight": "Right", - "DE.Views.ImageSettingsAdvanced.textRightMargin": "Right Margin", + "DE.Views.ImageSettingsAdvanced.textRightMargin": "Right margin", "DE.Views.ImageSettingsAdvanced.textRightOf": "to the right of", "DE.Views.ImageSettingsAdvanced.textRotation": "Rotation", "DE.Views.ImageSettingsAdvanced.textRound": "Round", - "DE.Views.ImageSettingsAdvanced.textShape": "Shape Settings", + "DE.Views.ImageSettingsAdvanced.textShape": "Shape settings", "DE.Views.ImageSettingsAdvanced.textSize": "Size", "DE.Views.ImageSettingsAdvanced.textSquare": "Square", - "DE.Views.ImageSettingsAdvanced.textTextBox": "Text Box", - "DE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings", - "DE.Views.ImageSettingsAdvanced.textTitleChart": "Chart - Advanced Settings", - "DE.Views.ImageSettingsAdvanced.textTitleShape": "Shape - Advanced Settings", + "DE.Views.ImageSettingsAdvanced.textTextBox": "Text box", + "DE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced settings", + "DE.Views.ImageSettingsAdvanced.textTitleChart": "Chart - Advanced settings", + "DE.Views.ImageSettingsAdvanced.textTitleShape": "Shape - Advanced settings", "DE.Views.ImageSettingsAdvanced.textTop": "Top", - "DE.Views.ImageSettingsAdvanced.textTopMargin": "Top Margin", + "DE.Views.ImageSettingsAdvanced.textTopMargin": "Top margin", "DE.Views.ImageSettingsAdvanced.textVertical": "Vertical", "DE.Views.ImageSettingsAdvanced.textVertically": "Vertically", "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Weights & Arrows", "DE.Views.ImageSettingsAdvanced.textWidth": "Width", - "DE.Views.ImageSettingsAdvanced.textWrap": "Wrapping Style", - "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Behind Text", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "In Front of Text", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "In Line with Text", + "DE.Views.ImageSettingsAdvanced.textWrap": "Wrapping style", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Behind text", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "In front of text", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "In line with text", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Square", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Through", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tight", @@ -2076,11 +2270,11 @@ "DE.Views.LeftMenu.tipComments": "Comments", "DE.Views.LeftMenu.tipNavigation": "Navigation", "DE.Views.LeftMenu.tipOutline": "Headings", + "DE.Views.LeftMenu.tipPageThumbnails": "Page Thumbnails", "DE.Views.LeftMenu.tipPlugins": "Plugins", "DE.Views.LeftMenu.tipSearch": "Search", "DE.Views.LeftMenu.tipSupport": "Feedback & Support", "DE.Views.LeftMenu.tipTitles": "Titles", - "DE.Views.LeftMenu.tipPageThumbnails": "Page Thumbnails", "DE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE", "DE.Views.LeftMenu.txtEditor": "Document Editor", "DE.Views.LeftMenu.txtLimit": "Limit Access", @@ -2094,11 +2288,11 @@ "DE.Views.LineNumbersDialog.textForward": "This point forward", "DE.Views.LineNumbersDialog.textFromText": "From text", "DE.Views.LineNumbersDialog.textNumbering": "Numbering", - "DE.Views.LineNumbersDialog.textRestartEachPage": "Restart Each Page", - "DE.Views.LineNumbersDialog.textRestartEachSection": "Restart Each Section", + "DE.Views.LineNumbersDialog.textRestartEachPage": "Restart each page", + "DE.Views.LineNumbersDialog.textRestartEachSection": "Restart each section", "DE.Views.LineNumbersDialog.textSection": "Current section", "DE.Views.LineNumbersDialog.textStartAt": "Start at", - "DE.Views.LineNumbersDialog.textTitle": "Line Numbers", + "DE.Views.LineNumbersDialog.textTitle": "Line numbers", "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnAddText": "Add Text", "DE.Views.Links.capBtnBookmarks": "Bookmark", @@ -2147,13 +2341,13 @@ "DE.Views.ListSettingsDialog.txtAlign": "Alignment", "DE.Views.ListSettingsDialog.txtBullet": "Bullet", "DE.Views.ListSettingsDialog.txtColor": "Color", - "DE.Views.ListSettingsDialog.txtFont": "Font and Symbol", + "DE.Views.ListSettingsDialog.txtFont": "Font and symbol", "DE.Views.ListSettingsDialog.txtLikeText": "Like a text", "DE.Views.ListSettingsDialog.txtNewBullet": "New bullet", "DE.Views.ListSettingsDialog.txtNone": "None", "DE.Views.ListSettingsDialog.txtSize": "Size", "DE.Views.ListSettingsDialog.txtSymbol": "Symbol", - "DE.Views.ListSettingsDialog.txtTitle": "List Settings", + "DE.Views.ListSettingsDialog.txtTitle": "List settings", "DE.Views.ListSettingsDialog.txtType": "Type", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Send", @@ -2165,8 +2359,8 @@ "DE.Views.MailMergeEmailDlg.textFrom": "From", "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.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.", @@ -2225,7 +2419,7 @@ "DE.Views.NoteSettingsDialog.textApply": "Apply", "DE.Views.NoteSettingsDialog.textApplyTo": "Apply changes to", "DE.Views.NoteSettingsDialog.textContinue": "Continuous", - "DE.Views.NoteSettingsDialog.textCustom": "Custom Mark", + "DE.Views.NoteSettingsDialog.textCustom": "Custom mark", "DE.Views.NoteSettingsDialog.textDocEnd": "End of document", "DE.Views.NoteSettingsDialog.textDocument": "Whole document", "DE.Views.NoteSettingsDialog.textEachPage": "Restart each page", @@ -2236,16 +2430,16 @@ "DE.Views.NoteSettingsDialog.textInsert": "Insert", "DE.Views.NoteSettingsDialog.textLocation": "Location", "DE.Views.NoteSettingsDialog.textNumbering": "Numbering", - "DE.Views.NoteSettingsDialog.textNumFormat": "Number Format", + "DE.Views.NoteSettingsDialog.textNumFormat": "Number format", "DE.Views.NoteSettingsDialog.textPageBottom": "Bottom of page", "DE.Views.NoteSettingsDialog.textSectEnd": "End of section", "DE.Views.NoteSettingsDialog.textSection": "Current section", "DE.Views.NoteSettingsDialog.textStart": "Start at", "DE.Views.NoteSettingsDialog.textTextBottom": "Below text", - "DE.Views.NoteSettingsDialog.textTitle": "Notes Settings", - "DE.Views.NotesRemoveDialog.textEnd": "Delete All Endnotes", - "DE.Views.NotesRemoveDialog.textFoot": "Delete All Footnotes", - "DE.Views.NotesRemoveDialog.textTitle": "Delete Notes", + "DE.Views.NoteSettingsDialog.textTitle": "Notes settings", + "DE.Views.NotesRemoveDialog.textEnd": "Delete all endnotes", + "DE.Views.NotesRemoveDialog.textFoot": "Delete all footnotes", + "DE.Views.NotesRemoveDialog.textTitle": "Delete notes", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning", "DE.Views.PageMarginsDialog.textBottom": "Bottom", "DE.Views.PageMarginsDialog.textGutter": "Gutter", @@ -2267,7 +2461,7 @@ "DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width", "DE.Views.PageSizeDialog.textHeight": "Height", "DE.Views.PageSizeDialog.textPreset": "Preset", - "DE.Views.PageSizeDialog.textTitle": "Page Size", + "DE.Views.PageSizeDialog.textTitle": "Page size", "DE.Views.PageSizeDialog.textWidth": "Width", "DE.Views.PageSizeDialog.txtCustom": "Custom", "DE.Views.PageThumbnails.textClosePanel": "Close page thumbnails", @@ -2301,7 +2495,7 @@ "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", "DE.Views.ParagraphSettingsAdvanced.strIndent": "Indents", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", - "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line spacing", "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Outline level", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After", @@ -2313,7 +2507,7 @@ "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Orphan control", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Spacing", - "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Line & Page Breaks", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Line & Page breaks", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Placement", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Don't add interval between paragraphs of the same style", @@ -2327,26 +2521,26 @@ "DE.Views.ParagraphSettingsAdvanced.textAll": "All", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "At least", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple", - "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Background Color", - "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basic Text", - "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Border Color", + "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Background color", + "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basic text", + "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Border color", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Click on diagram or use buttons to select borders and apply chosen style to them", - "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Border Size", + "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Border size", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Bottom", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centered", - "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", + "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character spacing", "DE.Views.ParagraphSettingsAdvanced.textContext": "Contextual", - "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, Historical and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual and Historical", - "DE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual and discretionary", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, historical and discretionary", + "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual and historical", + "DE.Views.ParagraphSettingsAdvanced.textDefault": "Default tab", "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discretionary", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", "DE.Views.ParagraphSettingsAdvanced.textExact": "Exactly", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging", "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Historical", - "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historical and Discretionary", + "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historical and discretionary", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Justified", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Left", @@ -2354,25 +2548,25 @@ "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatures", "DE.Views.ParagraphSettingsAdvanced.textNone": "None", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(none)", - "DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType Features", + "DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType features", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Position", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", - "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", + "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove all", "DE.Views.ParagraphSettingsAdvanced.textRight": "Right", "DE.Views.ParagraphSettingsAdvanced.textSet": "Specify", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spacing", "DE.Views.ParagraphSettingsAdvanced.textStandard": "Standard only", - "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard and Contextual", - "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, Contextual and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, Contextual and Historical", - "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, Historical and Discretionary", - "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard and Historical", + "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard and contextual", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, contextual and discretionary", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, contextual and historical", + "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard and discretionary", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, historical and discretionary", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard and historical", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left", - "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", + "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab position", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", - "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", + "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced settings", "DE.Views.ParagraphSettingsAdvanced.textTop": "Top", "DE.Views.ParagraphSettingsAdvanced.tipAll": "Set outer border and all inner lines", "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Set bottom border only", @@ -2384,6 +2578,18 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Set top border only", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "No borders", + "DE.Views.ProtectDialog.textComments": "Comments", + "DE.Views.ProtectDialog.textForms": "Filling forms", + "DE.Views.ProtectDialog.textReview": "Tracked changes", + "DE.Views.ProtectDialog.textView": "No changes (Read only)", + "DE.Views.ProtectDialog.txtAllow": "Allow only this type of editing in the document", + "DE.Views.ProtectDialog.txtIncorrectPwd": "Confirmation password is not identical", + "DE.Views.ProtectDialog.txtOptional": "optional", + "DE.Views.ProtectDialog.txtPassword": "Password", + "DE.Views.ProtectDialog.txtProtect": "Protect", + "DE.Views.ProtectDialog.txtRepeat": "Repeat password", + "DE.Views.ProtectDialog.txtTitle": "Protect", + "DE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", "DE.Views.RightMenu.txtChartSettings": "Chart settings", "DE.Views.RightMenu.txtFormSettings": "Form Settings", "DE.Views.RightMenu.txtHeaderFooterSettings": "Header and footer settings", @@ -2485,20 +2691,20 @@ "DE.Views.Statusbar.tipZoomIn": "Zoom in", "DE.Views.Statusbar.tipZoomOut": "Zoom out", "DE.Views.Statusbar.txtPageNumInvalid": "Page number invalid", - "DE.Views.StyleTitleDialog.textHeader": "Create New Style", + "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.StyleTitleDialog.txtSameAs": "Same as created new style", - "DE.Views.TableFormulaDialog.textBookmark": "Paste Bookmark", - "DE.Views.TableFormulaDialog.textFormat": "Number Format", + "DE.Views.TableFormulaDialog.textBookmark": "Paste bookmark", + "DE.Views.TableFormulaDialog.textFormat": "Number format", "DE.Views.TableFormulaDialog.textFormula": "Formula", - "DE.Views.TableFormulaDialog.textInsertFunction": "Paste Function", - "DE.Views.TableFormulaDialog.textTitle": "Formula Settings", + "DE.Views.TableFormulaDialog.textInsertFunction": "Paste function", + "DE.Views.TableFormulaDialog.textTitle": "Formula settings", "DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers", "DE.Views.TableOfContentsSettings.strFullCaption": "Include label and number", - "DE.Views.TableOfContentsSettings.strLinks": "Format Table of Contents as links", + "DE.Views.TableOfContentsSettings.strLinks": "Format table of contents as links", "DE.Views.TableOfContentsSettings.strLinksOF": "Format table of figures as links", "DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers", "DE.Views.TableOfContentsSettings.textBuildTable": "Build table of contents from", @@ -2516,8 +2722,8 @@ "DE.Views.TableOfContentsSettings.textStyle": "Style", "DE.Views.TableOfContentsSettings.textStyles": "Styles", "DE.Views.TableOfContentsSettings.textTable": "Table", - "DE.Views.TableOfContentsSettings.textTitle": "Table of Contents", - "DE.Views.TableOfContentsSettings.textTitleTOF": "Table of Figures", + "DE.Views.TableOfContentsSettings.textTitle": "Table of contents", + "DE.Views.TableOfContentsSettings.textTitleTOF": "Table of figures", "DE.Views.TableOfContentsSettings.txtCentered": "Centered", "DE.Views.TableOfContentsSettings.txtClassic": "Classic", "DE.Views.TableOfContentsSettings.txtCurrent": "Current", @@ -2574,45 +2780,53 @@ "DE.Views.TableSettings.tipOuter": "Set outer border only", "DE.Views.TableSettings.tipRight": "Set outer right border only", "DE.Views.TableSettings.tipTop": "Set outer top border only", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Bordered & Lined Tables", + "DE.Views.TableSettings.txtGroupTable_Custom": "Custom", + "DE.Views.TableSettings.txtGroupTable_Grid": "Grid Tables", + "DE.Views.TableSettings.txtGroupTable_List": "List Tables", + "DE.Views.TableSettings.txtGroupTable_Plain": "Plain Tables", "DE.Views.TableSettings.txtNoBorders": "No borders", "DE.Views.TableSettings.txtTable_Accent": "Accent", + "DE.Views.TableSettings.txtTable_Bordered": "Bordered", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "Bordered & Lined", "DE.Views.TableSettings.txtTable_Colorful": "Colorful", "DE.Views.TableSettings.txtTable_Dark": "Dark", "DE.Views.TableSettings.txtTable_GridTable": "Grid Table", "DE.Views.TableSettings.txtTable_Light": "Light", + "DE.Views.TableSettings.txtTable_Lined": "Lined", "DE.Views.TableSettings.txtTable_ListTable": "List Table", "DE.Views.TableSettings.txtTable_PlainTable": "Plain Table", "DE.Views.TableSettings.txtTable_TableGrid": "Table Grid", "DE.Views.TableSettingsAdvanced.textAlign": "Alignment", "DE.Views.TableSettingsAdvanced.textAlignment": "Alignment", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells", - "DE.Views.TableSettingsAdvanced.textAlt": "Alternative Text", + "DE.Views.TableSettingsAdvanced.textAlt": "Alternative text", "DE.Views.TableSettingsAdvanced.textAltDescription": "Description", "DE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Title", "DE.Views.TableSettingsAdvanced.textAnchorText": "Text", "DE.Views.TableSettingsAdvanced.textAutofit": "Automatically resize to fit contents", - "DE.Views.TableSettingsAdvanced.textBackColor": "Cell Background", + "DE.Views.TableSettingsAdvanced.textBackColor": "Cell background", "DE.Views.TableSettingsAdvanced.textBelow": "below", - "DE.Views.TableSettingsAdvanced.textBorderColor": "Border Color", + "DE.Views.TableSettingsAdvanced.textBorderColor": "Border color", "DE.Views.TableSettingsAdvanced.textBorderDesc": "Click on diagram or use buttons to select borders and apply chosen style to them", "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Borders & Background", - "DE.Views.TableSettingsAdvanced.textBorderWidth": "Border Size", + "DE.Views.TableSettingsAdvanced.textBorderWidth": "Border size", "DE.Views.TableSettingsAdvanced.textBottom": "Bottom", - "DE.Views.TableSettingsAdvanced.textCellOptions": "Cell Options", + "DE.Views.TableSettingsAdvanced.textCellOptions": "Cell options", "DE.Views.TableSettingsAdvanced.textCellProps": "Cell", - "DE.Views.TableSettingsAdvanced.textCellSize": "Cell Size", + "DE.Views.TableSettingsAdvanced.textCellSize": "Cell size", "DE.Views.TableSettingsAdvanced.textCenter": "Center", "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Center", "DE.Views.TableSettingsAdvanced.textCheckMargins": "Use default margins", - "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Default Cell Margins", - "DE.Views.TableSettingsAdvanced.textDistance": "Distance from Text", + "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Default cell margins", + "DE.Views.TableSettingsAdvanced.textDistance": "Distance from text", "DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal", - "DE.Views.TableSettingsAdvanced.textIndLeft": "Indent from Left", + "DE.Views.TableSettingsAdvanced.textIndLeft": "Indent from left", "DE.Views.TableSettingsAdvanced.textLeft": "Left", "DE.Views.TableSettingsAdvanced.textLeftTooltip": "Left", "DE.Views.TableSettingsAdvanced.textMargin": "Margin", - "DE.Views.TableSettingsAdvanced.textMargins": "Cell Margins", + "DE.Views.TableSettingsAdvanced.textMargins": "Cell margins", "DE.Views.TableSettingsAdvanced.textMeasure": "Measure in", "DE.Views.TableSettingsAdvanced.textMove": "Move object with text", "DE.Views.TableSettingsAdvanced.textOnlyCells": "For selected cells only", @@ -2627,18 +2841,18 @@ "DE.Views.TableSettingsAdvanced.textRightOf": "to the right of", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Right", "DE.Views.TableSettingsAdvanced.textTable": "Table", - "DE.Views.TableSettingsAdvanced.textTableBackColor": "Table Background", - "DE.Views.TableSettingsAdvanced.textTablePosition": "Table Position", - "DE.Views.TableSettingsAdvanced.textTableSize": "Table Size", - "DE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings", + "DE.Views.TableSettingsAdvanced.textTableBackColor": "Table background", + "DE.Views.TableSettingsAdvanced.textTablePosition": "Table position", + "DE.Views.TableSettingsAdvanced.textTableSize": "Table size", + "DE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced settings", "DE.Views.TableSettingsAdvanced.textTop": "Top", "DE.Views.TableSettingsAdvanced.textVertical": "Vertical", "DE.Views.TableSettingsAdvanced.textWidth": "Width", "DE.Views.TableSettingsAdvanced.textWidthSpaces": "Width & Spaces", - "DE.Views.TableSettingsAdvanced.textWrap": "Text Wrapping", + "DE.Views.TableSettingsAdvanced.textWrap": "Text wrapping", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Inline table", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Flow table", - "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Wrapping Style", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Wrapping style", "DE.Views.TableSettingsAdvanced.textWrapText": "Wrap text", "DE.Views.TableSettingsAdvanced.tipAll": "Set outer border and all inner lines", "DE.Views.TableSettingsAdvanced.tipCellAll": "Set borders for inner cells only", @@ -2662,7 +2876,7 @@ "DE.Views.TableToTextDialog.textSemicolon": "Semicolons", "DE.Views.TableToTextDialog.textSeparator": "Separate text with", "DE.Views.TableToTextDialog.textTab": "Tabs", - "DE.Views.TableToTextDialog.textTitle": "Convert Table to Text", + "DE.Views.TableToTextDialog.textTitle": "Convert table to text", "DE.Views.TextArtSettings.strColor": "Color", "DE.Views.TextArtSettings.strFill": "Fill", "DE.Views.TextArtSettings.strSize": "Size", @@ -2686,7 +2900,7 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "Add gradient point", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove gradient point", "DE.Views.TextArtSettings.txtNoBorders": "No Line", - "DE.Views.TextToTableDialog.textAutofit": "Autofit Behavior", + "DE.Views.TextToTableDialog.textAutofit": "Autofit behavior", "DE.Views.TextToTableDialog.textColumns": "Columns", "DE.Views.TextToTableDialog.textContents": "Autofit to contents", "DE.Views.TextToTableDialog.textEmpty": "You must type a character for the custom separator.", @@ -2695,10 +2909,10 @@ "DE.Views.TextToTableDialog.textPara": "Paragraphs", "DE.Views.TextToTableDialog.textRows": "Rows", "DE.Views.TextToTableDialog.textSemicolon": "Semicolons", - "DE.Views.TextToTableDialog.textSeparator": "Separate Text at", + "DE.Views.TextToTableDialog.textSeparator": "Separate text at", "DE.Views.TextToTableDialog.textTab": "Tabs", - "DE.Views.TextToTableDialog.textTableSize": "Table Size", - "DE.Views.TextToTableDialog.textTitle": "Convert Text to Table", + "DE.Views.TextToTableDialog.textTableSize": "Table size", + "DE.Views.TextToTableDialog.textTitle": "Convert text to table", "DE.Views.TextToTableDialog.textWindow": "Autofit to window", "DE.Views.TextToTableDialog.txtAutoText": "Auto", "DE.Views.Toolbar.capBtnAddComment": "Add Comment", @@ -2714,6 +2928,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Image", "DE.Views.Toolbar.capBtnInsPagebreak": "Breaks", "DE.Views.Toolbar.capBtnInsShape": "Shape", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Symbol", "DE.Views.Toolbar.capBtnInsTable": "Table", "DE.Views.Toolbar.capBtnInsTextart": "Text Art", @@ -2860,13 +3075,16 @@ "DE.Views.Toolbar.tipIncPrLeft": "Increase indent", "DE.Views.Toolbar.tipInsertChart": "Insert chart", "DE.Views.Toolbar.tipInsertEquation": "Insert equation", + "DE.Views.Toolbar.tipInsertHorizontalText": "Insert horizontal text box", "DE.Views.Toolbar.tipInsertImage": "Insert image", "DE.Views.Toolbar.tipInsertNum": "Insert Page Number", "DE.Views.Toolbar.tipInsertShape": "Insert autoshape", + "DE.Views.Toolbar.tipInsertSmartArt": "Insert SmartArt", "DE.Views.Toolbar.tipInsertSymbol": "Insert symbol", "DE.Views.Toolbar.tipInsertTable": "Insert table", "DE.Views.Toolbar.tipInsertText": "Insert text box", "DE.Views.Toolbar.tipInsertTextArt": "Insert Text Art", + "DE.Views.Toolbar.tipInsertVerticalText": "Insert vertical text box", "DE.Views.Toolbar.tipLineNumbers": "Show line numbers", "DE.Views.Toolbar.tipLineSpace": "Paragraph line spacing", "DE.Views.Toolbar.tipMailRecepients": "Mail merge", @@ -2933,13 +3151,15 @@ "DE.Views.Toolbar.txtScheme7": "Equity", "DE.Views.Toolbar.txtScheme8": "Flow", "DE.Views.Toolbar.txtScheme9": "Foundry", - "DE.Views.ViewTab.textAlwaysShowToolbar": "Always show toolbar", - "DE.Views.ViewTab.textDarkDocument": "Dark document", + "DE.Views.ViewTab.textAlwaysShowToolbar": "Always Show Toolbar", + "DE.Views.ViewTab.textDarkDocument": "Dark Document", "DE.Views.ViewTab.textFitToPage": "Fit To Page", "DE.Views.ViewTab.textFitToWidth": "Fit To Width", - "DE.Views.ViewTab.textInterfaceTheme": "Interface theme", + "DE.Views.ViewTab.textInterfaceTheme": "Interface Theme", + "DE.Views.ViewTab.textLeftMenu": "Left Panel", "DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textOutline": "Headings", + "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Rulers", "DE.Views.ViewTab.textStatusBar": "Status Bar", "DE.Views.ViewTab.textZoom": "Zoom", @@ -2953,8 +3173,8 @@ "DE.Views.WatermarkSettingsDialog.textColor": "Text color", "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", "DE.Views.WatermarkSettingsDialog.textFont": "Font", - "DE.Views.WatermarkSettingsDialog.textFromFile": "From File", - "DE.Views.WatermarkSettingsDialog.textFromStorage": "From Storage", + "DE.Views.WatermarkSettingsDialog.textFromFile": "From file", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "From storage", "DE.Views.WatermarkSettingsDialog.textFromUrl": "From URL", "DE.Views.WatermarkSettingsDialog.textHor": "Horizontal", "DE.Views.WatermarkSettingsDialog.textImageW": "Image watermark", @@ -2963,13 +3183,13 @@ "DE.Views.WatermarkSettingsDialog.textLayout": "Layout", "DE.Views.WatermarkSettingsDialog.textNone": "None", "DE.Views.WatermarkSettingsDialog.textScale": "Scale", - "DE.Views.WatermarkSettingsDialog.textSelect": "Select Image", + "DE.Views.WatermarkSettingsDialog.textSelect": "Select image", "DE.Views.WatermarkSettingsDialog.textStrikeout": "Strikethrough", "DE.Views.WatermarkSettingsDialog.textText": "Text", "DE.Views.WatermarkSettingsDialog.textTextW": "Text watermark", - "DE.Views.WatermarkSettingsDialog.textTitle": "Watermark Settings", + "DE.Views.WatermarkSettingsDialog.textTitle": "Watermark settings", "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent", "DE.Views.WatermarkSettingsDialog.textUnderline": "Underline", - "DE.Views.WatermarkSettingsDialog.tipFontName": "Font Name", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font Size" + "DE.Views.WatermarkSettingsDialog.tipFontName": "Font name", + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 5630f94b6..f60545f79 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -125,6 +125,12 @@ "Common.define.chartData.textScatterSmoothMarker": "Dispersión con líneas suavizadas y marcadores", "Common.define.chartData.textStock": "De cotizaciones", "Common.define.chartData.textSurface": "Superficie", + "Common.define.smartArt.textBalance": "Saldo", + "Common.define.smartArt.textEquation": "Ecuación", + "Common.define.smartArt.textFunnel": "Embudo", + "Common.define.smartArt.textList": "Lista", + "Common.define.smartArt.textOther": "Otro", + "Common.define.smartArt.textPicture": "Imagen", "Common.Translation.textMoreButton": "Más", "Common.Translation.warnFileLocked": "No puede editar este archivo porque está siendo editado en otra aplicación.", "Common.Translation.warnFileLockedBtnEdit": "Crear una copia", @@ -287,14 +293,10 @@ "Common.Views.CopyWarningDialog.textToPaste": "para pegar", "Common.Views.DocumentAccessDialog.textLoading": "Cargando...", "Common.Views.DocumentAccessDialog.textTitle": "Ajustes de uso compartido", - "Common.Views.ExternalDiagramEditor.textClose": "Cerrar", - "Common.Views.ExternalDiagramEditor.textSave": "Guardar y salir", "Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico", - "Common.Views.ExternalMergeEditor.textClose": "Cerrar", - "Common.Views.ExternalMergeEditor.textSave": "Guardar y salir", + "Common.Views.ExternalEditor.textClose": "Cerrar", + "Common.Views.ExternalEditor.textSave": "Guardar y salir", "Common.Views.ExternalMergeEditor.textTitle": "Receptores de Fusión de Correo", - "Common.Views.ExternalOleEditor.textClose": "Cerrar", - "Common.Views.ExternalOleEditor.textSave": "Guardar y salir", "Common.Views.ExternalOleEditor.textTitle": "Editor de hojas de cálculo", "Common.Views.Header.labelCoUsersDescr": "Usuarios que están editando el archivo:", "Common.Views.Header.textAddFavorite": "Marcar como favorito", @@ -360,6 +362,7 @@ "Common.Views.Plugins.textStart": "Iniciar", "Common.Views.Plugins.textStop": "Detener", "Common.Views.Protection.hintAddPwd": "Encriptar con contraseña", + "Common.Views.Protection.hintDelPwd": "Eliminar contraseña", "Common.Views.Protection.hintPwd": "Cambie o elimine la contraseña", "Common.Views.Protection.hintSignature": "Agregar firma digital o línea de firma", "Common.Views.Protection.txtAddPwd": "Agregar contraseña", @@ -505,7 +508,6 @@ "Common.Views.SignDialog.tipFontName": "Nombre del tipo de letra", "Common.Views.SignDialog.tipFontSize": "Tamaño del tipo de letra", "Common.Views.SignSettingsDialog.textAllowComment": "Permitir al firmante agregar comentarios en el diálogo de firma", - "Common.Views.SignSettingsDialog.textInfo": "Información de quien firma", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Nombre", "Common.Views.SignSettingsDialog.textInfoTitle": "Título de quien firma", @@ -591,6 +593,7 @@ "DE.Controllers.Main.errorMailMergeLoadFile": "La carga del documento ha fallado. Por favor, seleccione un archivo diferente.", "DE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.", "DE.Controllers.Main.errorNoTOC": "No hay ninguna tabla de contenido para actualizar. Se puede insertar una desde la pestaña Referencias.", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "La contraseña que ha proporcionado no es correcta.
Verifique que la tecla Bloq Mayús está desactivada y asegúrese de utilizar las mayúsculas correctas.", "DE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar", "DE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", "DE.Controllers.Main.errorSessionAbsolute": "Sesión de editar el documento ha expirado. Por favor, recargue la página.", @@ -647,6 +650,7 @@ "DE.Controllers.Main.textClose": "Cerrar", "DE.Controllers.Main.textCloseTip": "Pulse para cerrar el consejo", "DE.Controllers.Main.textContactUs": "Contactar con equipo de ventas", + "DE.Controllers.Main.textContinue": "Continuar", "DE.Controllers.Main.textConvertEquation": "Esta ecuación fue creada con una versión antigua del editor de ecuaciones que ya no es compatible. Para editarla, convierta la ecuación al formato ML de Office Math.
¿Convertir ahora?", "DE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.
Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.", "DE.Controllers.Main.textDisconnect": "Se ha perdido la conexión", @@ -667,6 +671,7 @@ "DE.Controllers.Main.textStrict": "Modo estricto", "DE.Controllers.Main.textTryUndoRedo": "Las funciones Anular/Rehacer se desactivan para el modo co-edición rápido.
Haga Clic en el botón \"modo estricto\" para cambiar al modo de co-edición estricta para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.", "DE.Controllers.Main.textTryUndoRedoWarn": "Las funciones Deshacer/Rehacer son desactivados en el modo de co-edición rápido.", + "DE.Controllers.Main.textUndo": "Deshacer", "DE.Controllers.Main.titleLicenseExp": "Licencia ha expirado", "DE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado", "DE.Controllers.Main.titleUpdateVersion": "Versión ha cambiado", @@ -1338,12 +1343,16 @@ "DE.Views.CellsAddDialog.textUp": "Por encima del cursor", "DE.Views.ChartSettings.textAdvanced": "Mostrar ajustes avanzados", "DE.Views.ChartSettings.textChartType": "Cambiar tipo de gráfico", + "DE.Views.ChartSettings.textDown": "Abajo", "DE.Views.ChartSettings.textEditData": "Editar datos", "DE.Views.ChartSettings.textHeight": "Altura", + "DE.Views.ChartSettings.textLeft": "Izquierda", "DE.Views.ChartSettings.textOriginalSize": "Tamaño real", + "DE.Views.ChartSettings.textRight": "Derecha", "DE.Views.ChartSettings.textSize": "Tamaño", "DE.Views.ChartSettings.textStyle": "Estilo", "DE.Views.ChartSettings.textUndock": "Desacoplar de panel", + "DE.Views.ChartSettings.textUp": "Arriba", "DE.Views.ChartSettings.textWidth": "Ancho", "DE.Views.ChartSettings.textWrap": "Ajuste de texto", "DE.Views.ChartSettings.txtBehind": "Detrás del texto", @@ -1435,6 +1444,8 @@ "DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textUpdate": "Actualizar automáticamente", "DE.Views.DateTimeDialog.txtTitle": "Fecha y hora", + "DE.Views.DocProtection.hintProtectDoc": "Proteger documento", + "DE.Views.DocProtection.txtProtectDoc": "Proteger documento", "DE.Views.DocumentHolder.aboveText": "Encima", "DE.Views.DocumentHolder.addCommentText": "Agregar comentario", "DE.Views.DocumentHolder.advancedDropCapText": "Configuración de Capitalización", @@ -1760,6 +1771,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estadísticas", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palabras", @@ -2073,6 +2085,7 @@ "DE.Views.LeftMenu.tipComments": "Comentarios", "DE.Views.LeftMenu.tipNavigation": "Navegación", "DE.Views.LeftMenu.tipOutline": "Títulos", + "DE.Views.LeftMenu.tipPageThumbnails": "Miniaturas de página", "DE.Views.LeftMenu.tipPlugins": "Plugins", "DE.Views.LeftMenu.tipSearch": "Búsqueda", "DE.Views.LeftMenu.tipSupport": "Feedback y Soporte", @@ -2094,7 +2107,7 @@ "DE.Views.LineNumbersDialog.textRestartEachSection": "Reiniciar cada sección", "DE.Views.LineNumbersDialog.textSection": "Sección actual", "DE.Views.LineNumbersDialog.textStartAt": "Empezar en", - "DE.Views.LineNumbersDialog.textTitle": "Numeración de Líneas", + "DE.Views.LineNumbersDialog.textTitle": "Numeración de líneas", "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnAddText": "Agregar texto", "DE.Views.Links.capBtnBookmarks": "Marcador", @@ -2380,6 +2393,14 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Fijar sólo borde superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sin bordes", + "DE.Views.ProtectDialog.textComments": "Comentarios", + "DE.Views.ProtectDialog.txtIncorrectPwd": "La contraseña de confirmación no es idéntica", + "DE.Views.ProtectDialog.txtOptional": "opcional", + "DE.Views.ProtectDialog.txtPassword": "Contraseña", + "DE.Views.ProtectDialog.txtProtect": "Proteger", + "DE.Views.ProtectDialog.txtRepeat": "Repita la contraseña", + "DE.Views.ProtectDialog.txtTitle": "Proteger", + "DE.Views.ProtectDialog.txtWarning": "Precaución: Si pierde u olvida su contraseña, no podrá recuperarla. Guárdalo en un lugar seguro.", "DE.Views.RightMenu.txtChartSettings": "Ajustes de gráfico", "DE.Views.RightMenu.txtFormSettings": "Ajustes de formulario", "DE.Views.RightMenu.txtHeaderFooterSettings": "Ajustes de encabezado y pie de página", @@ -2570,6 +2591,7 @@ "DE.Views.TableSettings.tipOuter": "Fijar sólo borde exterior", "DE.Views.TableSettings.tipRight": "Fijar sólo borde exterior derecho", "DE.Views.TableSettings.tipTop": "Fijar sólo borde exterior superior", + "DE.Views.TableSettings.txtGroupTable_Custom": "Personalizado", "DE.Views.TableSettings.txtNoBorders": "Sin bordes", "DE.Views.TableSettings.txtTable_Accent": "Acento", "DE.Views.TableSettings.txtTable_Colorful": "Colorido", @@ -2710,6 +2732,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Imagen", "DE.Views.Toolbar.capBtnInsPagebreak": "Cambios de línea", "DE.Views.Toolbar.capBtnInsShape": "Forma", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Símbolo", "DE.Views.Toolbar.capBtnInsTable": "Tabla", "DE.Views.Toolbar.capBtnInsTextart": "Galería de Texto", diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json index 0cdfc02c2..d8547fa4a 100644 --- a/apps/documenteditor/main/locale/eu.json +++ b/apps/documenteditor/main/locale/eu.json @@ -287,14 +287,8 @@ "Common.Views.CopyWarningDialog.textToPaste": "itsasteko", "Common.Views.DocumentAccessDialog.textLoading": "Kargatzen...", "Common.Views.DocumentAccessDialog.textTitle": "Partekatzearen ezarpenak", - "Common.Views.ExternalDiagramEditor.textClose": "Itxi", - "Common.Views.ExternalDiagramEditor.textSave": "Gorde eta irten", "Common.Views.ExternalDiagramEditor.textTitle": "Diagrama-editorea", - "Common.Views.ExternalMergeEditor.textClose": "Itxi", - "Common.Views.ExternalMergeEditor.textSave": "Gorde eta irten", "Common.Views.ExternalMergeEditor.textTitle": "Posta-konbinazioaren hartzaileak", - "Common.Views.ExternalOleEditor.textClose": "Itxi", - "Common.Views.ExternalOleEditor.textSave": "Gorde eta irten", "Common.Views.ExternalOleEditor.textTitle": "Kalkulu-orri editorea", "Common.Views.Header.labelCoUsersDescr": "Fitxategia editatzen ari diren erabiltzaileak:", "Common.Views.Header.textAddFavorite": "Markatu gogoko bezala", @@ -505,7 +499,6 @@ "Common.Views.SignDialog.tipFontName": "Letra-tipoaren izena", "Common.Views.SignDialog.tipFontSize": "Letra-tamaina", "Common.Views.SignSettingsDialog.textAllowComment": "Onartu sinatzaileak sinaduraren elkarrizketa-koadroan iruzkina gehitzea", - "Common.Views.SignSettingsDialog.textInfo": "Sinatzailearen informazioa", "Common.Views.SignSettingsDialog.textInfoEmail": "Posta elektronikoa", "Common.Views.SignSettingsDialog.textInfoName": "Izena", "Common.Views.SignSettingsDialog.textInfoTitle": "Sinatzailearen titulua", diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index ed5ea34ae..3942e5d0c 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -133,11 +133,7 @@ "Common.Views.CopyWarningDialog.textToPaste": "Liittämistä varten", "Common.Views.DocumentAccessDialog.textLoading": "Ladataan...", "Common.Views.DocumentAccessDialog.textTitle": "Jakamisen asetukset", - "Common.Views.ExternalDiagramEditor.textClose": "Sulje", - "Common.Views.ExternalDiagramEditor.textSave": "Tallenna & Poistu", "Common.Views.ExternalDiagramEditor.textTitle": "Kaavio editori", - "Common.Views.ExternalMergeEditor.textClose": "Sulje", - "Common.Views.ExternalMergeEditor.textSave": "Tallenna & Poistu", "Common.Views.ExternalMergeEditor.textTitle": "Sähköpostin yhdistelmän vastaanottajat", "Common.Views.Header.labelCoUsersDescr": "Useat käyttäjät muokkaavat tällä hetkellä asiakirjaa.", "Common.Views.Header.textAdvSettings": "Laajennetut asetukset", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index d1c7d750e..503438817 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -125,6 +125,165 @@ "Common.define.chartData.textScatterSmoothMarker": "disperser avec des lignes lisses et marqueurs", "Common.define.chartData.textStock": "Boursier", "Common.define.chartData.textSurface": "Surface", + "Common.define.smartArt.textAccentedPicture": "Image accentuée", + "Common.define.smartArt.textAccentProcess": "Processus accentué", + "Common.define.smartArt.textAlternatingFlow": "Flux interactif", + "Common.define.smartArt.textAlternatingHexagons": "Hexagones alternés", + "Common.define.smartArt.textAlternatingPictureBlocks": "Blocs d'images alternées", + "Common.define.smartArt.textAlternatingPictureCircles": "Cercles d'images alternées", + "Common.define.smartArt.textArchitectureLayout": "Disposition architecture", + "Common.define.smartArt.textArrowRibbon": "Ruban flèche", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Processus accentué dans un ordre croissant avec images", + "Common.define.smartArt.textBalance": "Balance", + "Common.define.smartArt.textBasicBendingProcess": "Processus en lacet simple", + "Common.define.smartArt.textBasicBlockList": "Liste de blocs simple", + "Common.define.smartArt.textBasicChevronProcess": "Processus en chevrons simple", + "Common.define.smartArt.textBasicCycle": "Cycle simple", + "Common.define.smartArt.textBasicMatrix": "Matrice simple", + "Common.define.smartArt.textBasicPie": "Graphique en secteurs simple", + "Common.define.smartArt.textBasicProcess": "Processus simple", + "Common.define.smartArt.textBasicPyramid": "Pyramide simple", + "Common.define.smartArt.textBasicRadial": "Radial simple", + "Common.define.smartArt.textBasicTarget": "Cible simple", + "Common.define.smartArt.textBasicTimeline": "Chronologie simple", + "Common.define.smartArt.textBasicVenn": "Venn simple", + "Common.define.smartArt.textBendingPictureAccentList": "Liste accentuée en lacet avec images", + "Common.define.smartArt.textBendingPictureBlocks": "Blocs en lacet avec images", + "Common.define.smartArt.textBendingPictureCaption": "Images en lacet avec légendes", + "Common.define.smartArt.textBendingPictureCaptionList": "Liste d’images en lacet avec légendes", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "Texte semi-transparent en lacet avec images", + "Common.define.smartArt.textBlockCycle": "Cycle en blocs", + "Common.define.smartArt.textBubblePictureList": "Liste d’images avec bulles", + "Common.define.smartArt.textCaptionedPictures": "Images avec légende", + "Common.define.smartArt.textChevronAccentProcess": "Processus accentué en chevrons", + "Common.define.smartArt.textChevronList": "Liste de chevrons", + "Common.define.smartArt.textCircleAccentTimeline": "Barre de planning accentuée avec cercles", + "Common.define.smartArt.textCircleArrowProcess": "Processus en flèches circulaires", + "Common.define.smartArt.textCirclePictureHierarchy": "Hiérarchie avec images rondes", + "Common.define.smartArt.textCircleProcess": "Processus en cercles", + "Common.define.smartArt.textCircleRelationship": "Relation circulaire", + "Common.define.smartArt.textCircularBendingProcess": "Processus en lacets avec bulles", + "Common.define.smartArt.textCircularPictureCallout": "Images circulaires avec légende", + "Common.define.smartArt.textClosedChevronProcess": "Processus en chevrons fermés", + "Common.define.smartArt.textContinuousArrowProcess": "Processus en flèche continue", + "Common.define.smartArt.textContinuousBlockProcess": "Processus en bloc continu", + "Common.define.smartArt.textContinuousCycle": "Cycle continu", + "Common.define.smartArt.textContinuousPictureList": "Liste continue avec images", + "Common.define.smartArt.textConvergingArrows": "Flèches convergentes", + "Common.define.smartArt.textConvergingRadial": "Radial convergeant", + "Common.define.smartArt.textConvergingText": "Texte convergent", + "Common.define.smartArt.textCounterbalanceArrows": "Flèches d’équilibrage", + "Common.define.smartArt.textCycle": "Cycle", + "Common.define.smartArt.textCycleMatrix": "Matrice de cycle", + "Common.define.smartArt.textDescendingBlockList": "Liste de blocs décroissante", + "Common.define.smartArt.textDescendingProcess": "Processus décroissant", + "Common.define.smartArt.textDetailedProcess": "Processus détaillé", + "Common.define.smartArt.textDivergingArrows": "Flèches divergentes", + "Common.define.smartArt.textDivergingRadial": "Radial convergeant", + "Common.define.smartArt.textEquation": "Équation", + "Common.define.smartArt.textFramedTextPicture": "Images avec texte en encadré", + "Common.define.smartArt.textFunnel": "Entonnoir", + "Common.define.smartArt.textGear": "Engrenage", + "Common.define.smartArt.textGridMatrix": "Matrice avec grille", + "Common.define.smartArt.textGroupedList": "Liste groupée", + "Common.define.smartArt.textHalfCircleOrganizationChart": "Organigramme avec demi-cercles", + "Common.define.smartArt.textHexagonCluster": "Groupe d’hexagones", + "Common.define.smartArt.textHexagonRadial": "Hexagone radial", + "Common.define.smartArt.textHierarchy": "Hiérarchie", + "Common.define.smartArt.textHierarchyList": "Liste hiérarchique", + "Common.define.smartArt.textHorizontalBulletList": "Liste à puces horizontale", + "Common.define.smartArt.textHorizontalHierarchy": "Hiérarchie horizontale", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "Hiérarchie horizontale avec étiquettes", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Hiérarchie horizontale à plusieurs niveaux", + "Common.define.smartArt.textHorizontalOrganizationChart": "Organigramme horizontal", + "Common.define.smartArt.textHorizontalPictureList": "Liste horizontale avec images", + "Common.define.smartArt.textIncreasingArrowProcess": "Processus en flèches croissant", + "Common.define.smartArt.textIncreasingCircleProcess": "Processus ascendant avec cercles", + "Common.define.smartArt.textInterconnectedBlockProcess": "Processus en blocs interconnectés", + "Common.define.smartArt.textInterconnectedRings": "Anneaux interconnectés", + "Common.define.smartArt.textInvertedPyramid": "Pyramide inversée", + "Common.define.smartArt.textLabeledHierarchy": "Hiérarchie libellée", + "Common.define.smartArt.textLinearVenn": "Venn linéaire", + "Common.define.smartArt.textLinedList": "Liste alignée", + "Common.define.smartArt.textList": "Liste", + "Common.define.smartArt.textMatrix": "Matrice", + "Common.define.smartArt.textMultidirectionalCycle": "Cycle multidirectionnel", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "Organigramme avec titre et nom", + "Common.define.smartArt.textNestedTarget": "Cible imbriquée", + "Common.define.smartArt.textNondirectionalCycle": "Cycle non directionnel", + "Common.define.smartArt.textOpposingArrows": "Flèches opposées", + "Common.define.smartArt.textOpposingIdeas": "Idées opposées", + "Common.define.smartArt.textOrganizationChart": "Organigramme", + "Common.define.smartArt.textOther": "Autre", + "Common.define.smartArt.textPhasedProcess": "Processus à phases", + "Common.define.smartArt.textPicture": "Image", + "Common.define.smartArt.textPictureAccentBlocks": "Blocs accentués avec images", + "Common.define.smartArt.textPictureAccentList": "Liste accentuée avec images", + "Common.define.smartArt.textPictureAccentProcess": "Processus accentué avec images", + "Common.define.smartArt.textPictureCaptionList": "Liste de légendes d'images", + "Common.define.smartArt.textPictureFrame": "Cadre de l’image", + "Common.define.smartArt.textPictureGrid": "Grille d’images", + "Common.define.smartArt.textPictureLineup": "Alignement d’images", + "Common.define.smartArt.textPictureOrganizationChart": "Organigramme avec images", + "Common.define.smartArt.textPictureStrips": "Bandes avec images", + "Common.define.smartArt.textPieProcess": "Processus à secteurs", + "Common.define.smartArt.textPlusAndMinus": "Plus et moins", + "Common.define.smartArt.textProcess": "Processus", + "Common.define.smartArt.textProcessArrows": "Processus en flèches", + "Common.define.smartArt.textProcessList": "Liste de processus", + "Common.define.smartArt.textPyramid": "Pyramide", + "Common.define.smartArt.textPyramidList": "Liste pyramidale", + "Common.define.smartArt.textRadialCluster": "Groupe en rayon", + "Common.define.smartArt.textRadialCycle": "Cycle radial", + "Common.define.smartArt.textRadialList": "Liste radiale", + "Common.define.smartArt.textRadialPictureList": "Liste radiale avec images", + "Common.define.smartArt.textRadialVenn": "Venn radial", + "Common.define.smartArt.textRandomToResultProcess": "Processus d’idées aléatoires avec résultat", + "Common.define.smartArt.textRelationship": "Relation", + "Common.define.smartArt.textRepeatingBendingProcess": "Processus en lacets", + "Common.define.smartArt.textReverseList": "Liste inversée", + "Common.define.smartArt.textSegmentedCycle": "Cycle segmenté", + "Common.define.smartArt.textSegmentedProcess": "Processus segmenté", + "Common.define.smartArt.textSegmentedPyramid": "Pyramide segmentée", + "Common.define.smartArt.textSnapshotPictureList": "Liste d’images instantanées", + "Common.define.smartArt.textSpiralPicture": "Images en spirale", + "Common.define.smartArt.textSquareAccentList": "Liste accentuée avec carrés", + "Common.define.smartArt.textStackedList": "Liste empilée", + "Common.define.smartArt.textStackedVenn": "Venn empilé", + "Common.define.smartArt.textStaggeredProcess": "Processus décalé", + "Common.define.smartArt.textStepDownProcess": "Processus descendant", + "Common.define.smartArt.textStepUpProcess": "Processus ascendant", + "Common.define.smartArt.textSubStepProcess": "Processus avec sous-étapes", + "Common.define.smartArt.textTabbedArc": "Arc à onglets", + "Common.define.smartArt.textTableHierarchy": "Hiérarchie de tables", + "Common.define.smartArt.textTableList": "Liste de tables", + "Common.define.smartArt.textTabList": "Liste des onglets", + "Common.define.smartArt.textTargetList": "Liste cible", + "Common.define.smartArt.textTextCycle": "Cycle de texte", + "Common.define.smartArt.textThemePictureAccent": "Images de thème accentué", + "Common.define.smartArt.textThemePictureAlternatingAccent": "Images de thème alternées accentué", + "Common.define.smartArt.textThemePictureGrid": "Grille d’images de thème", + "Common.define.smartArt.textTitledMatrix": "Matrice avec titres", + "Common.define.smartArt.textTitledPictureAccentList": "Liste accentuée avec images et titre", + "Common.define.smartArt.textTitledPictureBlocks": "Blocs d’images avec titre", + "Common.define.smartArt.textTitlePictureLineup": "Alignement d’images avec titre", + "Common.define.smartArt.textTrapezoidList": "Liste trapézoïdale", + "Common.define.smartArt.textUpwardArrow": "Flèche vers le haut", + "Common.define.smartArt.textVaryingWidthList": "Liste à largeur variable", + "Common.define.smartArt.textVerticalAccentList": "Liste accentuée verticale", + "Common.define.smartArt.textVerticalArrowList": "Liste verticale avec flèches", + "Common.define.smartArt.textVerticalBendingProcess": "Processus vertical en lacet", + "Common.define.smartArt.textVerticalBlockList": "Liste de blocs verticale", + "Common.define.smartArt.textVerticalBoxList": "Liste de zones verticale", + "Common.define.smartArt.textVerticalBracketList": "Liste de crochets verticale", + "Common.define.smartArt.textVerticalBulletList": "Liste à puces verticale", + "Common.define.smartArt.textVerticalChevronList": "Liste de chevrons verticale", + "Common.define.smartArt.textVerticalCircleList": "Liste de cercles verticale", + "Common.define.smartArt.textVerticalCurvedList": "Liste courbe verticale", + "Common.define.smartArt.textVerticalEquation": "Équation verticale", + "Common.define.smartArt.textVerticalPictureAccentList": "Liste accentuée verticale avec images", + "Common.define.smartArt.textVerticalPictureList": "Liste d’images verticale", + "Common.define.smartArt.textVerticalProcess": "Processus vertical", "Common.Translation.textMoreButton": "Plus", "Common.Translation.warnFileLocked": "Vous ne pouvez pas modifier ce fichier car il a été modifié avec une autre application.", "Common.Translation.warnFileLockedBtnEdit": "Créer une copie", @@ -287,14 +446,10 @@ "Common.Views.CopyWarningDialog.textToPaste": "pour Coller", "Common.Views.DocumentAccessDialog.textLoading": "Chargement en cours...", "Common.Views.DocumentAccessDialog.textTitle": "Paramètres de partage", - "Common.Views.ExternalDiagramEditor.textClose": "Fermer", - "Common.Views.ExternalDiagramEditor.textSave": "Enregistrer et quitter", "Common.Views.ExternalDiagramEditor.textTitle": "Éditeur de graphique", - "Common.Views.ExternalMergeEditor.textClose": "Fermer", - "Common.Views.ExternalMergeEditor.textSave": "Enregistrer et quitter", + "Common.Views.ExternalEditor.textClose": "Fermer", + "Common.Views.ExternalEditor.textSave": "Enregistrer et quitter", "Common.Views.ExternalMergeEditor.textTitle": "Destinataires de fusion et publipostage", - "Common.Views.ExternalOleEditor.textClose": "Fermer", - "Common.Views.ExternalOleEditor.textSave": "Enregistrer et quitter", "Common.Views.ExternalOleEditor.textTitle": "Tableur", "Common.Views.Header.labelCoUsersDescr": "Le document est en cours de modification par les utilisateurs suivants :", "Common.Views.Header.textAddFavorite": "Marquer en tant que favori", @@ -360,6 +515,7 @@ "Common.Views.Plugins.textStart": "Démarrer", "Common.Views.Plugins.textStop": "Arrêter", "Common.Views.Protection.hintAddPwd": "Chiffrer avec mot de passe", + "Common.Views.Protection.hintDelPwd": "Supprimer le mot de passe", "Common.Views.Protection.hintPwd": "Modifier ou supprimer le mot de passe", "Common.Views.Protection.hintSignature": "Ajouter une signature électronique ou", "Common.Views.Protection.txtAddPwd": "Ajouter un mot de passe", @@ -505,10 +661,10 @@ "Common.Views.SignDialog.tipFontName": "Nom de la police", "Common.Views.SignDialog.tipFontSize": "Taille de la police", "Common.Views.SignSettingsDialog.textAllowComment": "Autoriser le signataire à ajouter un commentaire dans la boîte de dialogue de la signature", - "Common.Views.SignSettingsDialog.textInfo": "Information à propos du signataire", - "Common.Views.SignSettingsDialog.textInfoEmail": "Adresse de messagerie", - "Common.Views.SignSettingsDialog.textInfoName": "Nom", - "Common.Views.SignSettingsDialog.textInfoTitle": "Titre du signataire", + "Common.Views.SignSettingsDialog.textDefInstruction": "Avant de signer un document, vérifiez que le contenu que vous signez est correct.", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail du signataire suggéré", + "Common.Views.SignSettingsDialog.textInfoName": "Signataire suggéré", + "Common.Views.SignSettingsDialog.textInfoTitle": "Titre du signataire suggéré", "Common.Views.SignSettingsDialog.textInstructions": "Instructions pour les signataires", "Common.Views.SignSettingsDialog.textShowDate": "Afficher la date de signature à côté de la signature", "Common.Views.SignSettingsDialog.textTitle": "Mise en place de la signature", @@ -559,6 +715,7 @@ "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.confirmMaxChangesSize": "La taille des actions dépasse la limitation fixée pour votre serveur.
Appuyez sur \"Annuler\" pour annuler votre dernière action ou sur \"Continuer\" pour maintenir l'action en local (vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu).", "DE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.", "DE.Controllers.Main.criticalErrorExtText": "Cliquez sur \"OK\" pour revenir à la liste des documents.", "DE.Controllers.Main.criticalErrorTitle": "Erreur", @@ -591,6 +748,7 @@ "DE.Controllers.Main.errorMailMergeLoadFile": "Échec de chargement du document. Merci de choisir un autre fichier.", "DE.Controllers.Main.errorMailMergeSaveFile": "Fusion a échoué.", "DE.Controllers.Main.errorNoTOC": "Il n'y a pas de table des matières à mettre à jour. Vous pouvez en insérer une à partir de l'onglet Références.", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "Le mot de passe que vous avez fourni n'est pas correct.
Vérifiez que la touche CAPS LOCK est désactivée et assurez-vous d'utiliser la bonne majuscule.", "DE.Controllers.Main.errorProcessSaveResult": "Échec de l'enregistrement", "DE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", "DE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", @@ -647,6 +805,7 @@ "DE.Controllers.Main.textClose": "Fermer", "DE.Controllers.Main.textCloseTip": "Cliquez pour fermer le conseil", "DE.Controllers.Main.textContactUs": "Contacter l'équipe de ventes", + "DE.Controllers.Main.textContinue": "Continuer", "DE.Controllers.Main.textConvertEquation": "Cette équation a été créée avec une ancienne version de l'éditeur des équations qui n'est plus disponible. Pour modifier cette équation, convertissez-la au format Office Math ML.
Convertir maintenant ?", "DE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.
Veuillez contacter notre Service des Ventes pour obtenir le devis.", "DE.Controllers.Main.textDisconnect": "La connexion est perdue", @@ -667,6 +826,7 @@ "DE.Controllers.Main.textStrict": "Mode strict", "DE.Controllers.Main.textTryUndoRedo": "Les fonctions annuler/rétablir sont désactivées pour le mode de co-édition rapide.
Cliquez sur le bouton \"Mode strict\" pour passer au mode de la co-édition stricte pour modifier le fichier sans interférence d'autres utilisateurs et envoyer vos modifications seulement après que vous les enregistrez. Vous pouvez basculer entre les modes de co-édition à l'aide de paramètres avancés d'éditeur.", "DE.Controllers.Main.textTryUndoRedoWarn": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", + "DE.Controllers.Main.textUndo": "Annuler", "DE.Controllers.Main.titleLicenseExp": "Licence expirée", "DE.Controllers.Main.titleServerVersion": "L'éditeur est mis à jour", "DE.Controllers.Main.titleUpdateVersion": "Version a été modifiée", @@ -1336,16 +1496,31 @@ "DE.Views.CellsAddDialog.textRow": "Lignes", "DE.Views.CellsAddDialog.textTitle": "Inserer Plusieurs", "DE.Views.CellsAddDialog.textUp": "au-dessus du curseur", + "DE.Views.ChartSettings.text3dDepth": "Profondeur (% de la base)", + "DE.Views.ChartSettings.text3dHeight": "Hauteur (% de la base)", + "DE.Views.ChartSettings.text3dRotation": "Rotation 3D", "DE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés", + "DE.Views.ChartSettings.textAutoscale": "Mise à l'échelle automatique", "DE.Views.ChartSettings.textChartType": "Modifier le type de graphique", + "DE.Views.ChartSettings.textDefault": "Rotation par défaut", + "DE.Views.ChartSettings.textDown": "Bas", "DE.Views.ChartSettings.textEditData": "Modifier les données", "DE.Views.ChartSettings.textHeight": "Hauteur", + "DE.Views.ChartSettings.textLeft": "Gauche", + "DE.Views.ChartSettings.textNarrow": "Rétrécir le champ de vision", "DE.Views.ChartSettings.textOriginalSize": "Taille actuelle", + "DE.Views.ChartSettings.textPerspective": "Perspective", + "DE.Views.ChartSettings.textRight": "Droite", + "DE.Views.ChartSettings.textRightAngle": "Axes à angle droit", "DE.Views.ChartSettings.textSize": "Taille", "DE.Views.ChartSettings.textStyle": "Style", "DE.Views.ChartSettings.textUndock": "Détacher du panneau", + "DE.Views.ChartSettings.textUp": "En haut", + "DE.Views.ChartSettings.textWiden": "Élargir le champ de vision", "DE.Views.ChartSettings.textWidth": "Largeur", "DE.Views.ChartSettings.textWrap": "Style d'habillage", + "DE.Views.ChartSettings.textX": "Rotation X", + "DE.Views.ChartSettings.textY": "Rotation Y", "DE.Views.ChartSettings.txtBehind": "Derrière le texte", "DE.Views.ChartSettings.txtInFront": "Devant le texte", "DE.Views.ChartSettings.txtInline": "Aligné sur le texte", @@ -1435,14 +1610,24 @@ "DE.Views.DateTimeDialog.textLang": "Langue", "DE.Views.DateTimeDialog.textUpdate": "Mettre à jour automatiquement", "DE.Views.DateTimeDialog.txtTitle": "Date et heure", + "DE.Views.DocProtection.hintProtectDoc": "Protéger le document", + "DE.Views.DocProtection.txtDocProtectedComment": "Le document est protégé.
Vous ne pouvez que laisser des commentaires dans ce document.", + "DE.Views.DocProtection.txtDocProtectedForms": "Le document est protégé.
Vous ne pouvez que remplir les champs de ce document.", + "DE.Views.DocProtection.txtDocProtectedTrack": "Le document est protégé.
Vous pouvez modifier ce document, mais toutes les modifications seront suivies.", + "DE.Views.DocProtection.txtDocProtectedView": "Le document est protégé.
Vous ne pouvez que visualiser ce document.", + "DE.Views.DocProtection.txtDocUnlockDescription": "Saisissez le mot de passe pour déprotéger le document", + "DE.Views.DocProtection.txtProtectDoc": "Protéger le document", "DE.Views.DocumentHolder.aboveText": "Au-dessus", "DE.Views.DocumentHolder.addCommentText": "Ajouter un commentaire", "DE.Views.DocumentHolder.advancedDropCapText": "Paramètres de la lettrine", + "DE.Views.DocumentHolder.advancedEquationText": "Paramètres d'équations", "DE.Views.DocumentHolder.advancedFrameText": "Paramètres avancés du cadre", "DE.Views.DocumentHolder.advancedParagraphText": "Paramètres avancés du paragraphe", "DE.Views.DocumentHolder.advancedTableText": "Paramètres avancés du tableau", "DE.Views.DocumentHolder.advancedText": "Paramètres avancés", "DE.Views.DocumentHolder.alignmentText": "Alignement", + "DE.Views.DocumentHolder.allLinearText": "Toutes - Linéaire", + "DE.Views.DocumentHolder.allProfText": "Toutes - Professionnel", "DE.Views.DocumentHolder.belowText": "En dessous", "DE.Views.DocumentHolder.breakBeforeText": "Saut de page avant", "DE.Views.DocumentHolder.bulletsText": "Puces et Numéros", @@ -1451,6 +1636,8 @@ "DE.Views.DocumentHolder.centerText": "Centre", "DE.Views.DocumentHolder.chartText": "Paramètres avancés du graphique ", "DE.Views.DocumentHolder.columnText": "Colonne", + "DE.Views.DocumentHolder.currLinearText": "Actuelles - Linéaire", + "DE.Views.DocumentHolder.currProfText": "Actuelles - Professionnel", "DE.Views.DocumentHolder.deleteColumnText": "Supprimer la colonne", "DE.Views.DocumentHolder.deleteRowText": "Supprimer la ligne", "DE.Views.DocumentHolder.deleteTableText": "Supprimer le tableau", @@ -1463,6 +1650,7 @@ "DE.Views.DocumentHolder.editFooterText": "Modifier le pied de page", "DE.Views.DocumentHolder.editHeaderText": "Modifier l'en-tête", "DE.Views.DocumentHolder.editHyperlinkText": "Modifier le lien hypertexte", + "DE.Views.DocumentHolder.eqToInlineText": "Passer à Inline", "DE.Views.DocumentHolder.guestText": "Invité", "DE.Views.DocumentHolder.hyperlinkText": "Lien hypertexte", "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorer tout", @@ -1477,6 +1665,7 @@ "DE.Views.DocumentHolder.insertText": "Insérer", "DE.Views.DocumentHolder.keepLinesText": "Lignes solidaires", "DE.Views.DocumentHolder.langText": "Sélectionner la langue", + "DE.Views.DocumentHolder.latexText": "LaTeX", "DE.Views.DocumentHolder.leftText": "À gauche", "DE.Views.DocumentHolder.loadSpellText": "Chargement des variantes en cours...", "DE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules", @@ -1664,6 +1853,7 @@ "DE.Views.DocumentHolder.txtUnderbar": "Barre en dessous d'un texte", "DE.Views.DocumentHolder.txtUngroup": "Dissocier", "DE.Views.DocumentHolder.txtWarnUrl": "Cliquer sur ce lien peut être dangereux pour votre appareil et vos données.
Êtes-vous sûr de vouloir continuer ?", + "DE.Views.DocumentHolder.unicodeText": "Unicode", "DE.Views.DocumentHolder.updateStyleText": "Mettre à jour le style %1 ", "DE.Views.DocumentHolder.vertAlignText": "Alignement vertical", "DE.Views.DropcapSettingsAdvanced.strBorders": "Bordures et remplissage", @@ -1760,6 +1950,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiques", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Sujet", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboles", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titre du document", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Chargé", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Mots", @@ -2073,6 +2264,7 @@ "DE.Views.LeftMenu.tipComments": "Commentaires", "DE.Views.LeftMenu.tipNavigation": "Navigation", "DE.Views.LeftMenu.tipOutline": "Titres", + "DE.Views.LeftMenu.tipPageThumbnails": "Miniatures des pages", "DE.Views.LeftMenu.tipPlugins": "Plug-ins", "DE.Views.LeftMenu.tipSearch": "Rechercher", "DE.Views.LeftMenu.tipSupport": "Commentaires & assistance", @@ -2380,6 +2572,18 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Seulement bordure supérieure", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Pas de bordures", + "DE.Views.ProtectDialog.textComments": "Commentaires", + "DE.Views.ProtectDialog.textForms": "Remplissage des formulaires", + "DE.Views.ProtectDialog.textReview": "Modifications", + "DE.Views.ProtectDialog.textView": "Aucune modification (Lecture seule)", + "DE.Views.ProtectDialog.txtAllow": "Autoriser uniquement ce type de modification dans le document", + "DE.Views.ProtectDialog.txtIncorrectPwd": "Le mot de passe de confirmation n'est pas identique", + "DE.Views.ProtectDialog.txtOptional": "optionnel", + "DE.Views.ProtectDialog.txtPassword": "Mot de passe", + "DE.Views.ProtectDialog.txtProtect": "Protéger", + "DE.Views.ProtectDialog.txtRepeat": "Répéter le mot de passe", + "DE.Views.ProtectDialog.txtTitle": "Protéger", + "DE.Views.ProtectDialog.txtWarning": "Attention : si vous oubliez ou perdez votre mot de passe, il sera impossible de le récupérer. Conservez-le en lieu sûr.", "DE.Views.RightMenu.txtChartSettings": "Paramètres du graphique", "DE.Views.RightMenu.txtFormSettings": "Paramètres du formulaire", "DE.Views.RightMenu.txtHeaderFooterSettings": "Paramètres d'en-têtes et de pieds de page", @@ -2570,12 +2774,20 @@ "DE.Views.TableSettings.tipOuter": "Seulement bordure extérieure", "DE.Views.TableSettings.tipRight": "Seulement bordure extérieure droite", "DE.Views.TableSettings.tipTop": "Seulement bordure extérieure supérieure", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Tableaux à bordures et à lignes", + "DE.Views.TableSettings.txtGroupTable_Custom": "Personnalisé", + "DE.Views.TableSettings.txtGroupTable_Grid": "Tableaux Grille", + "DE.Views.TableSettings.txtGroupTable_List": "Tableaux Liste", + "DE.Views.TableSettings.txtGroupTable_Plain": "Tableaux simples", "DE.Views.TableSettings.txtNoBorders": "Pas de bordures", "DE.Views.TableSettings.txtTable_Accent": "Accentuation", + "DE.Views.TableSettings.txtTable_Bordered": "À bordure", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "À bordures et à lignes", "DE.Views.TableSettings.txtTable_Colorful": "En couleurs", "DE.Views.TableSettings.txtTable_Dark": "Foncé", "DE.Views.TableSettings.txtTable_GridTable": "Table Grille", "DE.Views.TableSettings.txtTable_Light": "Clair", + "DE.Views.TableSettings.txtTable_Lined": "À lignes", "DE.Views.TableSettings.txtTable_ListTable": "Tableau de listes", "DE.Views.TableSettings.txtTable_PlainTable": "Tableau simple", "DE.Views.TableSettings.txtTable_TableGrid": "Grille du tableau", @@ -2710,6 +2922,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Image", "DE.Views.Toolbar.capBtnInsPagebreak": "Sauts", "DE.Views.Toolbar.capBtnInsShape": "Forme", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Symbole", "DE.Views.Toolbar.capBtnInsTable": "Tableau", "DE.Views.Toolbar.capBtnInsTextart": "Text Art", @@ -2856,13 +3069,16 @@ "DE.Views.Toolbar.tipIncPrLeft": "Augmenter le retrait", "DE.Views.Toolbar.tipInsertChart": "Insérer un graphique", "DE.Views.Toolbar.tipInsertEquation": "Insérer une équation", + "DE.Views.Toolbar.tipInsertHorizontalText": "Insérer une zone de texte horizontale", "DE.Views.Toolbar.tipInsertImage": "Insérer une image", "DE.Views.Toolbar.tipInsertNum": "Insérer le numéro de page", "DE.Views.Toolbar.tipInsertShape": "Insérer une forme automatique", + "DE.Views.Toolbar.tipInsertSmartArt": "Insérer un graphique SmartArt", "DE.Views.Toolbar.tipInsertSymbol": "Insérer un symbole", "DE.Views.Toolbar.tipInsertTable": "Insérer un tableau", "DE.Views.Toolbar.tipInsertText": "Insérez zone de texte", "DE.Views.Toolbar.tipInsertTextArt": "Insérer Text Art", + "DE.Views.Toolbar.tipInsertVerticalText": "Insérer une zone de texte verticale", "DE.Views.Toolbar.tipLineNumbers": "Afficher les numéros des lignes", "DE.Views.Toolbar.tipLineSpace": "Interligne du paragraphe", "DE.Views.Toolbar.tipMailRecepients": "Fusion et publipostage", diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json index 15cfa74f0..472c52a75 100644 --- a/apps/documenteditor/main/locale/gl.json +++ b/apps/documenteditor/main/locale/gl.json @@ -279,11 +279,7 @@ "Common.Views.CopyWarningDialog.textToPaste": "para Pegar", "Common.Views.DocumentAccessDialog.textLoading": "Cargando...", "Common.Views.DocumentAccessDialog.textTitle": "Configuración para compartir", - "Common.Views.ExternalDiagramEditor.textClose": "Pechar", - "Common.Views.ExternalDiagramEditor.textSave": "Gardar e saír", "Common.Views.ExternalDiagramEditor.textTitle": "Editor do gráfico", - "Common.Views.ExternalMergeEditor.textClose": "Pechar", - "Common.Views.ExternalMergeEditor.textSave": "Gardar e saír", "Common.Views.ExternalMergeEditor.textTitle": "Receptores da Fusión do Correo", "Common.Views.Header.labelCoUsersDescr": "Usuarios que están editando o ficheiro:", "Common.Views.Header.textAddFavorite": "Marcar como favorito", @@ -490,7 +486,6 @@ "Common.Views.SignDialog.tipFontName": "Nome da fonte", "Common.Views.SignDialog.tipFontSize": "Tamaño da fonte", "Common.Views.SignSettingsDialog.textAllowComment": "Permitir a quen asine engadir comentarios no diálogo de sinatura", - "Common.Views.SignSettingsDialog.textInfo": "Información de quen asina", "Common.Views.SignSettingsDialog.textInfoEmail": "Correo electrónico", "Common.Views.SignSettingsDialog.textInfoName": "Nome", "Common.Views.SignSettingsDialog.textInfoTitle": "Título de quen asina", diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index 6cd6ffe92..112230d3a 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -125,6 +125,26 @@ "Common.define.chartData.textScatterSmoothMarker": "Szórás sima vonalakkal és jelölőkkel", "Common.define.chartData.textStock": "Részvény", "Common.define.chartData.textSurface": "Felület", + "Common.define.smartArt.textAccentedPicture": "Hangsúlyos kép", + "Common.define.smartArt.textAccentProcess": "Akcentus eljárás", + "Common.define.smartArt.textAlternatingFlow": "Váltakozó folyamat", + "Common.define.smartArt.textAlternatingHexagons": "Váltakozó hatszögek", + "Common.define.smartArt.textAlternatingPictureBlocks": "Váltakozó képblokkok", + "Common.define.smartArt.textAlternatingPictureCircles": "Váltakozó képkörök", + "Common.define.smartArt.textArchitectureLayout": "Tervezés Elrendezés", + "Common.define.smartArt.textArrowRibbon": "Nyilas szalag", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Felszálló kép hangsúlyozásának folyamata", + "Common.define.smartArt.textBalance": "Egyensúly", + "Common.define.smartArt.textBasicBendingProcess": "Alapvető elhajlítási folyamat", + "Common.define.smartArt.textBasicBlockList": "Alapvető blokkok listája", + "Common.define.smartArt.textBasicChevronProcess": "Alapvető Chevron folyamat", + "Common.define.smartArt.textBasicCycle": "Alapciklus", + "Common.define.smartArt.textBasicMatrix": "Alap mátrix", + "Common.define.smartArt.textBasicPie": "Egyszerű körforgás", + "Common.define.smartArt.textBasicProcess": "Alapfolyamat", + "Common.define.smartArt.textBasicPyramid": "Egyszerű piramis", + "Common.define.smartArt.textBasicRadial": "Alap sugárirányú", + "Common.define.smartArt.textBasicTarget": "Alapvető cél", "Common.Translation.textMoreButton": "Több", "Common.Translation.warnFileLocked": "Nem szerkesztheti ezt a fájlt, mert egy másik alkalmazásban szerkesztik.", "Common.Translation.warnFileLockedBtnEdit": "Másolat létrehozása", @@ -287,14 +307,10 @@ "Common.Views.CopyWarningDialog.textToPaste": "Beillesztésre", "Common.Views.DocumentAccessDialog.textLoading": "Betöltés...", "Common.Views.DocumentAccessDialog.textTitle": "Megosztási beállítások", - "Common.Views.ExternalDiagramEditor.textClose": "Bezár", - "Common.Views.ExternalDiagramEditor.textSave": "Mentés és kilépés", "Common.Views.ExternalDiagramEditor.textTitle": "Diagram szerkesztő", - "Common.Views.ExternalMergeEditor.textClose": "Bezár", - "Common.Views.ExternalMergeEditor.textSave": "Mentés és kilépés", + "Common.Views.ExternalEditor.textClose": "Bezár", + "Common.Views.ExternalEditor.textSave": "Mentés és kilépés", "Common.Views.ExternalMergeEditor.textTitle": "E-mail címzettek összevonása", - "Common.Views.ExternalOleEditor.textClose": "Bezár", - "Common.Views.ExternalOleEditor.textSave": "Mentés és kilépés", "Common.Views.ExternalOleEditor.textTitle": "Táblázat szerkesztő", "Common.Views.Header.labelCoUsersDescr": "A fájlt szerkesztő felhasználók:", "Common.Views.Header.textAddFavorite": "Megjelölés kedvencként", @@ -360,6 +376,7 @@ "Common.Views.Plugins.textStart": "Kezdés", "Common.Views.Plugins.textStop": "Stop", "Common.Views.Protection.hintAddPwd": "Jelszóval titkosít", + "Common.Views.Protection.hintDelPwd": "Jelszó törlése", "Common.Views.Protection.hintPwd": "Jelszó módosítása vagy törlése", "Common.Views.Protection.hintSignature": "Digitális aláírás vagy aláírás sor hozzáadása", "Common.Views.Protection.txtAddPwd": "Jelszó hozzáadása", @@ -471,6 +488,7 @@ "Common.Views.SaveAsDlg.textTitle": "Mentési mappa", "Common.Views.SearchPanel.textCaseSensitive": "Nagy- és kisbetű érzékeny", "Common.Views.SearchPanel.textCloseSearch": "Keresés bezárása", + "Common.Views.SearchPanel.textContentChanged": "Megváltozott a dokumentum.", "Common.Views.SearchPanel.textFind": "Keres", "Common.Views.SearchPanel.textFindAndReplace": "Keresés és csere", "Common.Views.SearchPanel.textMatchUsingRegExp": "Egyezés szabályos kifejezésekkel", @@ -479,6 +497,7 @@ "Common.Views.SearchPanel.textReplace": "Csere", "Common.Views.SearchPanel.textReplaceAll": "Minden cseréje", "Common.Views.SearchPanel.textReplaceWith": "A következővel helyettesítse", + "Common.Views.SearchPanel.textSearchAgain": "{0}Új keresést indítása{1} a pontosabb eredményekért.", "Common.Views.SearchPanel.textSearchHasStopped": "Keresés leállt", "Common.Views.SearchPanel.textSearchResults": "Keresés eredményei:", "Common.Views.SearchPanel.textTooManyResults": "Túl sok eredmény van, hogy bemutassuk őket itt", @@ -503,9 +522,9 @@ "Common.Views.SignDialog.tipFontName": "Betűtípus neve", "Common.Views.SignDialog.tipFontSize": "Betűméret", "Common.Views.SignSettingsDialog.textAllowComment": "Engedélyezi az aláírónak megjegyzés hozzáadását az aláírási párbeszédablakban", - "Common.Views.SignSettingsDialog.textInfo": "Aláíró infó", - "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", - "Common.Views.SignSettingsDialog.textInfoName": "Név", + "Common.Views.SignSettingsDialog.textDefInstruction": "A dokumentum aláírása előtt győződjön meg arról, hogy az aláírt tartalom helyes.", + "Common.Views.SignSettingsDialog.textInfoEmail": "Javasolt aláíró E-mai címel", + "Common.Views.SignSettingsDialog.textInfoName": "Javasolt aláíró", "Common.Views.SignSettingsDialog.textInfoTitle": "Aláíró titulus", "Common.Views.SignSettingsDialog.textInstructions": "Utasítások az aláírónak", "Common.Views.SignSettingsDialog.textShowDate": "Aláírási sorban az aláírás dátumának mutatása", @@ -597,6 +616,7 @@ "DE.Controllers.Main.errorSetPassword": "A jelszót nem lehet beállítani.", "DE.Controllers.Main.errorStockChart": "Helytelen sor sorrend. Részvénydiagram létrehozásához az adatokat az alábbi sorrendben vigye fel:
nyitó ár, maximum ár, minimum ár, záró ár.", "DE.Controllers.Main.errorSubmit": "A beküldés nem sikerült.", + "DE.Controllers.Main.errorTextFormWrongFormat": "A megadott érték nem felel meg a mező formátumának.", "DE.Controllers.Main.errorToken": "A dokumentum biztonsági tokenje nem megfelelő.
Kérjük, lépjen kapcsolatba a Dokumentumszerver rendszergazdájával.", "DE.Controllers.Main.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", "DE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", @@ -1333,16 +1353,31 @@ "DE.Views.CellsAddDialog.textRow": "Sorok", "DE.Views.CellsAddDialog.textTitle": "Több beszúrása", "DE.Views.CellsAddDialog.textUp": "A kurzor felett", + "DE.Views.ChartSettings.text3dDepth": "Mélység (az alap %-a)", + "DE.Views.ChartSettings.text3dHeight": "Magasság (az alap %-a)", + "DE.Views.ChartSettings.text3dRotation": "3D Forgatás", "DE.Views.ChartSettings.textAdvanced": "Speciális beállítások megjelenítése", + "DE.Views.ChartSettings.textAutoscale": "Automatikus méretezés", "DE.Views.ChartSettings.textChartType": "Diagramtípus módosítása", + "DE.Views.ChartSettings.textDefault": "Alapértelmezett forgatás", + "DE.Views.ChartSettings.textDown": "Le", "DE.Views.ChartSettings.textEditData": "Adat szerkesztése", "DE.Views.ChartSettings.textHeight": "Magasság", + "DE.Views.ChartSettings.textLeft": "Bal", + "DE.Views.ChartSettings.textNarrow": "Közeli ező nézet", "DE.Views.ChartSettings.textOriginalSize": "Aktuális méret", + "DE.Views.ChartSettings.textPerspective": "Perspektíva", + "DE.Views.ChartSettings.textRight": "Jobb", + "DE.Views.ChartSettings.textRightAngle": "Derékszögű tengelyek", "DE.Views.ChartSettings.textSize": "Méret", "DE.Views.ChartSettings.textStyle": "Stílus", "DE.Views.ChartSettings.textUndock": "Eltávolít a panelről", + "DE.Views.ChartSettings.textUp": "Fel", + "DE.Views.ChartSettings.textWiden": "Szélesebb mező nézet", "DE.Views.ChartSettings.textWidth": "Szélesség", "DE.Views.ChartSettings.textWrap": "Tördelés stílus", + "DE.Views.ChartSettings.textX": "X fogatás", + "DE.Views.ChartSettings.textY": "Y forgatás", "DE.Views.ChartSettings.txtBehind": "Szöveg mögött", "DE.Views.ChartSettings.txtInFront": "Szöveg előtt", "DE.Views.ChartSettings.txtInline": "Szöveggel egy sorban", @@ -1435,11 +1470,14 @@ "DE.Views.DocumentHolder.aboveText": "Felett", "DE.Views.DocumentHolder.addCommentText": "Megjegyzés hozzáadása", "DE.Views.DocumentHolder.advancedDropCapText": "Iniciálé beállításai", + "DE.Views.DocumentHolder.advancedEquationText": "Egyenlet beállításai", "DE.Views.DocumentHolder.advancedFrameText": "Speciális keret beállítások", "DE.Views.DocumentHolder.advancedParagraphText": "Haladó bekezdés beállítások", "DE.Views.DocumentHolder.advancedTableText": "Haladó táblázatbeállítások", "DE.Views.DocumentHolder.advancedText": "Haladó beállítások", "DE.Views.DocumentHolder.alignmentText": "Elrendezés", + "DE.Views.DocumentHolder.allLinearText": "Mind - Lineáris", + "DE.Views.DocumentHolder.allProfText": "Minden - Professzionális", "DE.Views.DocumentHolder.belowText": "Alatt", "DE.Views.DocumentHolder.breakBeforeText": "Oldaltörés előtte", "DE.Views.DocumentHolder.bulletsText": "Felsorolás és számozás", @@ -1448,6 +1486,8 @@ "DE.Views.DocumentHolder.centerText": "Közép", "DE.Views.DocumentHolder.chartText": "Speciális diagram beállítások", "DE.Views.DocumentHolder.columnText": "Oszlop", + "DE.Views.DocumentHolder.currLinearText": "Aktuális - Lineáris", + "DE.Views.DocumentHolder.currProfText": "Aktuális - Professzionális", "DE.Views.DocumentHolder.deleteColumnText": "Hasáb törlése", "DE.Views.DocumentHolder.deleteRowText": "Sor törlése", "DE.Views.DocumentHolder.deleteTableText": "Táblázat törlése", @@ -1460,6 +1500,7 @@ "DE.Views.DocumentHolder.editFooterText": "Lábléc szerkesztése", "DE.Views.DocumentHolder.editHeaderText": "Fejléc szerkesztése", "DE.Views.DocumentHolder.editHyperlinkText": "Hivatkozás szerkesztése", + "DE.Views.DocumentHolder.eqToInlineText": "Váltás Inline-re", "DE.Views.DocumentHolder.guestText": "Vendég", "DE.Views.DocumentHolder.hyperlinkText": "Hivatkozás", "DE.Views.DocumentHolder.ignoreAllSpellText": "Mindent mellőz", @@ -1474,6 +1515,7 @@ "DE.Views.DocumentHolder.insertText": "Beszúr", "DE.Views.DocumentHolder.keepLinesText": "Sorok egyben tartása", "DE.Views.DocumentHolder.langText": "Nyelv kiválsztása", + "DE.Views.DocumentHolder.latexText": "LaTeX", "DE.Views.DocumentHolder.leftText": "Bal", "DE.Views.DocumentHolder.loadSpellText": "Változatok betöltése", "DE.Views.DocumentHolder.mergeCellsText": "Cellák összevonása", @@ -1661,6 +1703,7 @@ "DE.Views.DocumentHolder.txtUnderbar": "Sáv a szöveg alatt", "DE.Views.DocumentHolder.txtUngroup": "Csoport szétválasztása", "DE.Views.DocumentHolder.txtWarnUrl": "A link megnyitása káros lehet az eszközére és adataira.
Biztosan folytatja?", + "DE.Views.DocumentHolder.unicodeText": "Unicode", "DE.Views.DocumentHolder.updateStyleText": "%1 stílust frissít", "DE.Views.DocumentHolder.vertAlignText": "Függőleges rendezés", "DE.Views.DropcapSettingsAdvanced.strBorders": "Szegélyek és kitöltés", @@ -1844,26 +1887,34 @@ "DE.Views.FormSettings.textColor": "Szegély színe", "DE.Views.FormSettings.textComb": "Karakterfésű", "DE.Views.FormSettings.textCombobox": "Legördülő lista", + "DE.Views.FormSettings.textComplex": "Komplex mező", "DE.Views.FormSettings.textConnected": "Csatlakoztatott mezők", "DE.Views.FormSettings.textDelete": "Törlés", + "DE.Views.FormSettings.textDigits": "Számjegyek", "DE.Views.FormSettings.textDisconnect": "Kapcsolat bontása", "DE.Views.FormSettings.textDropDown": "Legördülő", "DE.Views.FormSettings.textExact": "Pontosan", "DE.Views.FormSettings.textField": "Szövegmező", "DE.Views.FormSettings.textFixed": "Fix méretű mező", + "DE.Views.FormSettings.textFormat": "Formátum", + "DE.Views.FormSettings.textFormatSymbols": "Engedélyezett szimbólumok", "DE.Views.FormSettings.textFromFile": "Fájlból", "DE.Views.FormSettings.textFromStorage": "Tárolóból", "DE.Views.FormSettings.textFromUrl": "Hivatkozásból", "DE.Views.FormSettings.textGroupKey": "Csoportkulcs", "DE.Views.FormSettings.textImage": "Kép", "DE.Views.FormSettings.textKey": "Kulcs", + "DE.Views.FormSettings.textLetters": "Levelek", "DE.Views.FormSettings.textLock": "Lezárás", + "DE.Views.FormSettings.textMask": "Tetszőleges maszk", "DE.Views.FormSettings.textMaxChars": "Karakter limit", "DE.Views.FormSettings.textMulti": "Többsoros mező", "DE.Views.FormSettings.textNever": "Újabb", "DE.Views.FormSettings.textNoBorder": "Nincs szegély", + "DE.Views.FormSettings.textNone": "Egyik sem", "DE.Views.FormSettings.textPlaceholder": "Helyőrző", "DE.Views.FormSettings.textRadiobox": "Rádiógomb", + "DE.Views.FormSettings.textReg": "Szabályos kifejezés", "DE.Views.FormSettings.textRequired": "Kötelező", "DE.Views.FormSettings.textScale": "Mikor méretezze át", "DE.Views.FormSettings.textSelectImage": "Kép kiválasztása", @@ -1880,10 +1931,13 @@ "DE.Views.FormSettings.textWidth": "Cella szélesség", "DE.Views.FormsTab.capBtnCheckBox": "Jelölőnégyzet", "DE.Views.FormsTab.capBtnComboBox": "Legördülő lista", + "DE.Views.FormsTab.capBtnComplex": "Komplex mező", "DE.Views.FormsTab.capBtnDownloadForm": "Töltse le oformként", "DE.Views.FormsTab.capBtnDropDown": "Legördülő", + "DE.Views.FormsTab.capBtnEmail": "E-Mail cím", "DE.Views.FormsTab.capBtnImage": "Kép", "DE.Views.FormsTab.capBtnNext": "Következő mező", + "DE.Views.FormsTab.capBtnPhone": "Telefonszám", "DE.Views.FormsTab.capBtnPrev": "Előző mező", "DE.Views.FormsTab.capBtnRadioBox": "Rádiógomb", "DE.Views.FormsTab.capBtnSaveForm": "Mentés OFORM-ként", @@ -1900,10 +1954,13 @@ "DE.Views.FormsTab.textSubmited": "Az űrlap sikeresen elküldve", "DE.Views.FormsTab.tipCheckBox": "Jelölőnégyzet beszúrása", "DE.Views.FormsTab.tipComboBox": "Legördülő beszúrása", + "DE.Views.FormsTab.tipComplexField": "Komplex mező beillesztése", "DE.Views.FormsTab.tipDownloadForm": "Töltse le a fájlt kitölthető OFORM dokumentumként", "DE.Views.FormsTab.tipDropDown": "Legördülő lista beszúrása", + "DE.Views.FormsTab.tipEmailField": "Adja meg az e-mail címet", "DE.Views.FormsTab.tipImageField": "Kép beszúrása", "DE.Views.FormsTab.tipNextForm": "Ugrás a következő mezőre", + "DE.Views.FormsTab.tipPhoneField": "Telefonszám megadása", "DE.Views.FormsTab.tipPrevForm": "Ugrás az előző mezőre", "DE.Views.FormsTab.tipRadioBox": "Rádiógomb beszúrása", "DE.Views.FormsTab.tipSaveForm": "Fájl mentése kitölthető OFORM dokumentumként", @@ -2056,6 +2113,7 @@ "DE.Views.LeftMenu.tipComments": "Megjegyzések", "DE.Views.LeftMenu.tipNavigation": "Navigáció", "DE.Views.LeftMenu.tipOutline": "Címsorok", + "DE.Views.LeftMenu.tipPageThumbnails": "Oldal miniatűrök", "DE.Views.LeftMenu.tipPlugins": "Kiegészítők", "DE.Views.LeftMenu.tipSearch": "Keresés", "DE.Views.LeftMenu.tipSupport": "Visszajelzés és támogatás", @@ -2363,6 +2421,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Csak felső szegély beállítása", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek", + "DE.Views.ProtectDialog.txtAllow": "Csak ilyen típusú szerkesztés engedélyezése a dokumentumban", "DE.Views.RightMenu.txtChartSettings": "Diagram beállítások", "DE.Views.RightMenu.txtFormSettings": "Űrlapbeállítások", "DE.Views.RightMenu.txtHeaderFooterSettings": "Fejléc és lábléc beállítások", @@ -2553,12 +2612,20 @@ "DE.Views.TableSettings.tipOuter": "Csak külső szegély beállítása", "DE.Views.TableSettings.tipRight": "Csak külső, jobb szegély beállítása", "DE.Views.TableSettings.tipTop": "Csak külső, felső szegély beállítása", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Szegélyezett és vonalazott táblák", + "DE.Views.TableSettings.txtGroupTable_Custom": "Egyéni", + "DE.Views.TableSettings.txtGroupTable_Grid": "Rács táblázatok", + "DE.Views.TableSettings.txtGroupTable_List": "Táblázatok listája", + "DE.Views.TableSettings.txtGroupTable_Plain": "Sima táblák", "DE.Views.TableSettings.txtNoBorders": "Nincsenek szegélyek", "DE.Views.TableSettings.txtTable_Accent": "Akcentus", + "DE.Views.TableSettings.txtTable_Bordered": "Szegélyezett", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "Szegélyezett és vonalazott", "DE.Views.TableSettings.txtTable_Colorful": "Színes", "DE.Views.TableSettings.txtTable_Dark": "Sötét", "DE.Views.TableSettings.txtTable_GridTable": "Rács táblázat", "DE.Views.TableSettings.txtTable_Light": "Világos", + "DE.Views.TableSettings.txtTable_Lined": "Vonalazott", "DE.Views.TableSettings.txtTable_ListTable": "Lista táblázat", "DE.Views.TableSettings.txtTable_PlainTable": "Egyszerű táblázat", "DE.Views.TableSettings.txtTable_TableGrid": "Táblázat rács", @@ -2858,6 +2925,10 @@ "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.tipMultiLevelArticl": "Többszintű sorszámozott cikkek", + "DE.Views.Toolbar.tipMultiLevelChapter": "Többszintű számozott fejezetek", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Többszintű számozott címsorok", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Többszintű különböző számozott címsorok", "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", @@ -2918,6 +2989,11 @@ "DE.Views.ViewTab.textRulers": "Vonalzók", "DE.Views.ViewTab.textStatusBar": "Állapotsor", "DE.Views.ViewTab.textZoom": "Zoom", + "DE.Views.ViewTab.tipDarkDocument": "Sötét dokumentum", + "DE.Views.ViewTab.tipFitToPage": "Oldalhoz igazít", + "DE.Views.ViewTab.tipFitToWidth": "Szélességhez igazít", + "DE.Views.ViewTab.tipHeadings": "Címsorok", + "DE.Views.ViewTab.tipInterfaceTheme": "Interfész témája", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Félkövér", "DE.Views.WatermarkSettingsDialog.textColor": "Szöveg színe", diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index add0ca15a..dddfe700c 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -125,6 +125,93 @@ "Common.define.chartData.textScatterSmoothMarker": "Ցրել սահուն գծերով և նշիչներով", "Common.define.chartData.textStock": "Տվյալների տատանում", "Common.define.chartData.textSurface": "Մակերեսային", + "Common.define.smartArt.textAccentedPicture": "Շեշտված նկար", + "Common.define.smartArt.textAccentProcess": "Շեշտման ընթացք", + "Common.define.smartArt.textAlternatingFlow": "Այլընտրական հոսք", + "Common.define.smartArt.textAlternatingHexagons": "Այլընտրական վեցանկյունիներ", + "Common.define.smartArt.textAlternatingPictureBlocks": "Այլընտրական նկարների կազմեր", + "Common.define.smartArt.textAlternatingPictureCircles": "Այլընտրական նկարների շրջանակներ", + "Common.define.smartArt.textArchitectureLayout": "Ճարտարապետական դասավորություն", + "Common.define.smartArt.textArrowRibbon": "Սլաքի երիզ", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Աճող նկարների շեշտման ընթացք", + "Common.define.smartArt.textBalance": "Հաշվեկշիռ", + "Common.define.smartArt.textBasicBendingProcess": "Հիմնական ծռման ընթացք", + "Common.define.smartArt.textBasicBlockList": "Հիմնական բաժնի ցուցակ", + "Common.define.smartArt.textBasicChevronProcess": "Հիմնական ծպեղների ընթացք", + "Common.define.smartArt.textBasicCycle": "Հիմնական շրջան", + "Common.define.smartArt.textBasicMatrix": "Հիմնական մատրիցա", + "Common.define.smartArt.textBasicPie": "Հիմնական բլիթ", + "Common.define.smartArt.textBasicProcess": "Հիմնական ընթացք", + "Common.define.smartArt.textBasicPyramid": "Հիմնական բուրգ", + "Common.define.smartArt.textBasicRadial": "Հիմնական շառավիղ", + "Common.define.smartArt.textBasicTarget": "Հիմնական նպատակ", + "Common.define.smartArt.textBasicTimeline": "Հիմնական ժամագիծ", + "Common.define.smartArt.textBasicVenn": "Հիմնական վրածածք", + "Common.define.smartArt.textBendingPictureAccentList": "Ծռված նկարի շեշտման ցուցակ", + "Common.define.smartArt.textBendingPictureBlocks": "Ծռված նկարների կազմեր", + "Common.define.smartArt.textBendingPictureCaption": "Ծռված նկարի խորագիր", + "Common.define.smartArt.textBendingPictureCaptionList": "Ծռված նկարի խորագրերի ցուցակ", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "Ծռված նկարի կիսաթափանցիկ գրվածք", + "Common.define.smartArt.textBlockCycle": "Բաժնի շրջան", + "Common.define.smartArt.textBubblePictureList": "Դրսագրով նկարների ցուցակ", + "Common.define.smartArt.textCaptionedPictures": "Խորագրով նկարներ", + "Common.define.smartArt.textChevronAccentProcess": "Ծպեղների շեշտման ընթաց", + "Common.define.smartArt.textChevronList": "Ծպեղների ցուցակ", + "Common.define.smartArt.textCircleAccentTimeline": "Շրջանաձև շեշտման ժամագիծ", + "Common.define.smartArt.textCircleArrowProcess": "Շրջանաձև սլաքի ընթացք", + "Common.define.smartArt.textCirclePictureHierarchy": "Շրջանաձև նկարների աստիճանակարգություն", + "Common.define.smartArt.textCircleProcess": "Շրջանաձև ընթացք", + "Common.define.smartArt.textCircleRelationship": "Շրջանների հարաբերություն", + "Common.define.smartArt.textCircularBendingProcess": "Շրջանային ծռման ընթացք", + "Common.define.smartArt.textCircularPictureCallout": "Շրջանաձև նկարի դրսագիր", + "Common.define.smartArt.textClosedChevronProcess": "Փակ ծպեղների ընթացք", + "Common.define.smartArt.textContinuousArrowProcess": "Շարունակական սլաքի ընթացք", + "Common.define.smartArt.textContinuousBlockProcess": "Շարունակական բաժնի ընթացք", + "Common.define.smartArt.textContinuousCycle": "Շարունակական շրջան", + "Common.define.smartArt.textContinuousPictureList": "Շարունակական նկարի ցուցակ", + "Common.define.smartArt.textConvergingArrows": "Միակցող սլաքներ", + "Common.define.smartArt.textConvergingRadial": "Զուգահեռ շառավիղ", + "Common.define.smartArt.textConvergingText": "Զուգամետ գրվածք", + "Common.define.smartArt.textCounterbalanceArrows": "Հակակշիռ սլաքներ", + "Common.define.smartArt.textCycle": "Շրջան", + "Common.define.smartArt.textCycleMatrix": "Շրջանային մատրիցա", + "Common.define.smartArt.textDescendingBlockList": "Նվազող կազմերի ցուցակ", + "Common.define.smartArt.textDescendingProcess": "Նվազող ընթացք", + "Common.define.smartArt.textDetailedProcess": "Մանրամասն ընթացք", + "Common.define.smartArt.textDivergingArrows": "Հակադիր սլաքներ", + "Common.define.smartArt.textDivergingRadial": "Ցրված շառավիղ", + "Common.define.smartArt.textEquation": "Հավասարում", + "Common.define.smartArt.textFramedTextPicture": "Շրջանակված գրվածքով նկար", + "Common.define.smartArt.textFunnel": "Ձագարաձև", + "Common.define.smartArt.textGear": "Ատամնանիվ", + "Common.define.smartArt.textGridMatrix": "Ցանցավոր մատրիցա", + "Common.define.smartArt.textGroupedList": "Խմբավորված ցուցակ", + "Common.define.smartArt.textHalfCircleOrganizationChart": "Կիսաշրջանաձև կազմակերպության գծապատկեր", + "Common.define.smartArt.textHexagonCluster": "Վեցանկյունիների բույլ", + "Common.define.smartArt.textHexagonRadial": "Վեցանկյունիների շառավիղ", + "Common.define.smartArt.textHierarchy": "Ստորակարգ", + "Common.define.smartArt.textHierarchyList": "տորակարգի ցուցակ", + "Common.define.smartArt.textHorizontalBulletList": "Հորիզոնական պարբերակի ցուցակ", + "Common.define.smartArt.textHorizontalHierarchy": "Հորիզոնական ստորակարգ", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "Հորիզոնական պիտակված ստորակարգ", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Հորիզոնական բազմակակարդակ աստիճանակարգություն", + "Common.define.smartArt.textHorizontalOrganizationChart": "Հորիզոնական կազմակերպության գծապատկեր", + "Common.define.smartArt.textHorizontalPictureList": "Հորիզոնական նկարների ցուցակ", + "Common.define.smartArt.textIncreasingArrowProcess": "Աճող սլաքի ընթացք", + "Common.define.smartArt.textIncreasingCircleProcess": "Աճող շրջանաձև ընթացք", + "Common.define.smartArt.textInterconnectedBlockProcess": "Փոխկապակցված կազմերի ընթացք", + "Common.define.smartArt.textInterconnectedRings": "Փոխկապակցված օղակներ", + "Common.define.smartArt.textInvertedPyramid": "Հակադարձված բուրգ", + "Common.define.smartArt.textLabeledHierarchy": "Պիտակված ստորակարգ", + "Common.define.smartArt.textLinearVenn": "Գծային վրածածք", + "Common.define.smartArt.textLinedList": "Գծված ցուցակ", + "Common.define.smartArt.textList": "Ցուցակ", + "Common.define.smartArt.textMatrix": "Մատրիցա", + "Common.define.smartArt.textMultidirectionalCycle": "Բազմուղի շրջան", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "Անուններով և պաշտոններով կազմակերպության գծապատկեր", + "Common.define.smartArt.textNestedTarget": "Ներդրված թիրախ", + "Common.define.smartArt.textOther": "Այլ", + "Common.define.smartArt.textPicture": "Նկար", "Common.Translation.textMoreButton": "Ավել", "Common.Translation.warnFileLocked": "Դուք չեք կարող խմբագրել այս ֆայլը, քանի որ այն խմբագրվում է մեկ այլ հավելվածում:", "Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն", @@ -287,14 +374,10 @@ "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.ExternalEditor.textClose": "Փակել", + "Common.Views.ExternalEditor.textSave": "Պահպանել և դուրս գալ", "Common.Views.ExternalMergeEditor.textTitle": "Փոստի միավորման հաղորդագրություն ստացողներ", - "Common.Views.ExternalOleEditor.textClose": "Փակել", - "Common.Views.ExternalOleEditor.textSave": "Պահպանել և դուրս գալ", "Common.Views.ExternalOleEditor.textTitle": "Աղյուսակաթերթի խմբագիր", "Common.Views.Header.labelCoUsersDescr": "Փաստաթուղթը խմբագրողներ՝", "Common.Views.Header.textAddFavorite": "Նշել որպես հավանած տարբերակ", @@ -360,6 +443,7 @@ "Common.Views.Plugins.textStart": "Մեկնարկ", "Common.Views.Plugins.textStop": "Կանգ", "Common.Views.Protection.hintAddPwd": "Գաղտնագրել գաղտնաբառով", + "Common.Views.Protection.hintDelPwd": "Ջնջել գաղտնաբառը", "Common.Views.Protection.hintPwd": "Փոխել կամ ջնջել գաղտնաբառը", "Common.Views.Protection.hintSignature": "Դնել թվային ստորագրություն կամ ստորագրության տող", "Common.Views.Protection.txtAddPwd": "Դնել գաղտնաբառ", @@ -505,7 +589,7 @@ "Common.Views.SignDialog.tipFontName": "Տառատեսակի անուն", "Common.Views.SignDialog.tipFontSize": "Տառատեսակի չափ", "Common.Views.SignSettingsDialog.textAllowComment": "Թույլ տալ ստորագրողին ավելացնել մեկնաբանություն ստորագրության երկխոսության մեջ", - "Common.Views.SignSettingsDialog.textInfo": "Ստորագրողի տեղեկություն", + "Common.Views.SignSettingsDialog.textDefInstruction": "Նախքան այս փաստաթուղթը ստորագրելը, ստուգեք, որ Ձեր ստորագրած բովանդակությունը ճիշտ է:", "Common.Views.SignSettingsDialog.textInfoEmail": "Էլ․ հասցե", "Common.Views.SignSettingsDialog.textInfoName": "Անուն", "Common.Views.SignSettingsDialog.textInfoTitle": "Ստորագրողի անվանումը", @@ -585,12 +669,18 @@ "DE.Controllers.Main.errorFilePassProtect": "Ֆայլն ունի գաղտնաբառ և չի կարող բացվել։", "DE.Controllers.Main.errorFileSizeExceed": "Ֆայլի չափը գերազանցում է ձեր սերվերի համար սահմանված սահմանափակումը:
Մանրամասների համար խնդրում ենք կապվել Ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "DE.Controllers.Main.errorForceSave": "Փաստաթղթի պահպանման ժամանակ տեղի ունեցավ սխալ։ «Ներբեռնել որպես» հրամանով պահպանեք նիշքը Ձեր համակարգչի կոշտ սկավառակում կամ ավելի ուշ նորից փորձեք։", + "DE.Controllers.Main.errorInconsistentExt": "Ֆայլը բացելիս սխալ է տեղի ունեցել:
Ֆայլի բովանդակությունը չի համապատասխանում ֆայլի ընդլայնմանը:", + "DE.Controllers.Main.errorInconsistentExtDocx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:
Ֆայլի բովանդակությունը համապատասխանում է տեքստային փաստաթղթերին (օրինակ՝ docx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում՝ %1:", + "DE.Controllers.Main.errorInconsistentExtPdf": "Ֆայլը բացելիս սխալ է տեղի ունեցել:Ֆայլի բովանդակությունը համապատասխանում է հետևյալ ձևաչափերից մեկին՝pdf/djvu/xps/oxps,բայց ֆայլն ունի անհամապատասխան ընդլայնում. %1:", + "DE.Controllers.Main.errorInconsistentExtPptx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:
Ֆայլի բովանդակությունը համապատասխանում է ներկայացումներին (օրինակ՝ pptx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:", + "DE.Controllers.Main.errorInconsistentExtXlsx": "Ֆայլը բացելիս սխալ է տեղի ունեցել:
Ֆայլի բովանդակությունը համապատասխանում է աղյուսակներին (օր. xlsx), սակայն ֆայլն ունի անհամապատասխան ընդլայնում. %1:", "DE.Controllers.Main.errorKeyEncrypt": "Բանալու անհայտ նկարագրիչ", "DE.Controllers.Main.errorKeyExpire": "Բանալու նկարագրիչի ժամկետը սպառվել է", "DE.Controllers.Main.errorLoadingFont": "Տառատեսակները բեռնված չեն:
Խնդրում ենք կապվել ձեր փաստաթղթերի սերվերի ադմինիստրատորի հետ:", "DE.Controllers.Main.errorMailMergeLoadFile": "Փաստաթղթի բեռնումը խափանվեց։ Խնդրում ենք ընտրել մեկ այլ ֆայլ:", "DE.Controllers.Main.errorMailMergeSaveFile": "Միաձուլումը խափանվեց։", "DE.Controllers.Main.errorNoTOC": "Արդիացնելու համար բովանդակություն չկա: Կարող եք զետեղել այն հղումներ ներդիրից:", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "Ձեր տրամադրած գաղտնաբառը ճիշտ չէ:
Ստուգեք, որ CAPS LOCK ստեղնը անջատված է և օգտագործեք ճիշտ գլխատառացումը:", "DE.Controllers.Main.errorProcessSaveResult": "Պահումը ձախողվել է:", "DE.Controllers.Main.errorServerVersion": "Խմբագրիչի տարբերակը արդիացվել է։ Որպեսզի փոփոխումները տեղի ունենան, էջը նորից կբեռնվի։", "DE.Controllers.Main.errorSessionAbsolute": "Փաստաթղթի խմբագրման գործաժամը սպառվել է։ Նորի՛ց բեռնեք էջը։", @@ -647,6 +737,7 @@ "DE.Controllers.Main.textClose": "Փակել", "DE.Controllers.Main.textCloseTip": "Կտտացրեք՝ հուշումը փակելու համար", "DE.Controllers.Main.textContactUs": "Կապ վաճառքի բաժնի հետ", + "DE.Controllers.Main.textContinue": "Շարունակել", "DE.Controllers.Main.textConvertEquation": "Այս հավասարումը ստեղծվել է հավասարումների խմբագրիչի հին տարբերակով, որն այլևս չի աջակցվում:Այն խմբագրելու համար հավասարումը փոխարկեք Office Math ML ձևաչափի:Փոխակերպե՞լ հիմա:", "DE.Controllers.Main.textCustomLoader": "Խնդրում ենք նկատի ունենալ,որ ըստ թույլատրագրի պայմանների՝ Դուք իրավունք չունեք փոխելու բեռնման էկրանը։
Հարցման համար խնդրում ենք դիմել մեր վաճառքի բաժին։", "DE.Controllers.Main.textDisconnect": "Կապը կորել է", @@ -667,6 +758,7 @@ "DE.Controllers.Main.textStrict": "Խիստ աշխատակարգ", "DE.Controllers.Main.textTryUndoRedo": "Համախմբագրման արագ աշխատակարգում հետարկումն ու վերարկումն անջատված են։
«Խիստ աշխատակարգ»-ի սեղմումով անցեք համախմբագրման խիստ աշխատակարգին, որպեսզի նիշքը խմբագրեք առանց այլ օգտատերերի միջամտության և փոփոխումներն ուղարկեք միայն դրանք պահպանելուց հետո։ Կարող եք համախմբագրման աշխատակարգերը փոխել լրացուցիչ կարգավորումների միջոցով։", "DE.Controllers.Main.textTryUndoRedoWarn": "Հետարկումն ու վերարկումն գործառույթներն անջատված են արագ համատեղ խմբագրման ռեժիմի համար:", + "DE.Controllers.Main.textUndo": "Հետարկել", "DE.Controllers.Main.titleLicenseExp": "Լիցենզիայի ժամկետը լրացել է", "DE.Controllers.Main.titleServerVersion": "Խմբագրիչը արդիացվել է", "DE.Controllers.Main.titleUpdateVersion": "Տարբերակը փոխվել է", @@ -1336,14 +1428,24 @@ "DE.Views.CellsAddDialog.textRow": "Տողեր", "DE.Views.CellsAddDialog.textTitle": "Տեղադրեք մի քանիսը", "DE.Views.CellsAddDialog.textUp": "Նշորդի վերևում", + "DE.Views.ChartSettings.text3dDepth": "Խորությունը (բազայի %)", + "DE.Views.ChartSettings.text3dHeight": "Բարձրություն (բազայի %)", + "DE.Views.ChartSettings.text3dRotation": "3D Պտտում", "DE.Views.ChartSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները", + "DE.Views.ChartSettings.textAutoscale": "Ինքնասանդղակ", "DE.Views.ChartSettings.textChartType": "Փոխել գծապատկերի տեսակը", + "DE.Views.ChartSettings.textDefault": "Սկզբնադիր շրջում", + "DE.Views.ChartSettings.textDown": "Ներքև", "DE.Views.ChartSettings.textEditData": "Խմբագրել տվյալները", "DE.Views.ChartSettings.textHeight": "Բարձրություն", + "DE.Views.ChartSettings.textLeft": "Ձախ", + "DE.Views.ChartSettings.textNarrow": "Նեղ տեսադաշտ", "DE.Views.ChartSettings.textOriginalSize": "Իրական չափ", + "DE.Views.ChartSettings.textRight": "Աջ", "DE.Views.ChartSettings.textSize": "Չափ", "DE.Views.ChartSettings.textStyle": "Ոճ", "DE.Views.ChartSettings.textUndock": "Ապահարակցել վահանակից", + "DE.Views.ChartSettings.textUp": "Վեր", "DE.Views.ChartSettings.textWidth": "Լայնք", "DE.Views.ChartSettings.textWrap": "Ծալման ոճ", "DE.Views.ChartSettings.txtBehind": "Տեքստի հետևում", @@ -1435,14 +1537,24 @@ "DE.Views.DateTimeDialog.textLang": "Լեզու", "DE.Views.DateTimeDialog.textUpdate": "Ինքնաբար արդիացնել", "DE.Views.DateTimeDialog.txtTitle": "Ամիս-ամսաթիվ, ժամ", + "DE.Views.DocProtection.hintProtectDoc": "Պաշտպանել փաստաթուղթը", + "DE.Views.DocProtection.txtDocProtectedComment": "Փաստաթուղթը պաշտպանված է:
Դուք կարող եք միայն մեկնաբանություններ տեղադրել այս փաստաթղթում:", + "DE.Views.DocProtection.txtDocProtectedForms": "Փաստաթուղթը պաշտպանված է:
Այս փաստաթղթում կարող եք լրացնել միայն ձևերը:", + "DE.Views.DocProtection.txtDocProtectedTrack": "Փաստաթուղթը պաշտպանված է:
Դուք կարող եք խմբագրել այս փաստաթուղթը, բայց բոլոր փոփոխությունները կհետևվեն:", + "DE.Views.DocProtection.txtDocProtectedView": "Փաստաթուղթը պաշտպանված է:
Դուք կարող եք դիտել միայն այս փաստաթուղթը:", + "DE.Views.DocProtection.txtDocUnlockDescription": "Փաստաթուղթը չպաշտպանելու համար մուտքագրեք գաղտնաբառ։", + "DE.Views.DocProtection.txtProtectDoc": "Պաշտպանել փաստաթուղթը", "DE.Views.DocumentHolder.aboveText": "Վերև", "DE.Views.DocumentHolder.addCommentText": "Ավելացնել մեկնաբանություն", "DE.Views.DocumentHolder.advancedDropCapText": "Սկզբնատառի կարգավորումներ", + "DE.Views.DocumentHolder.advancedEquationText": "Հավասարման կարգավորումներ", "DE.Views.DocumentHolder.advancedFrameText": "Շրջանակի լրացուցիչ կարգավորումներ", "DE.Views.DocumentHolder.advancedParagraphText": "Պարբերության լրացուցիչ կարգավորումներ", "DE.Views.DocumentHolder.advancedTableText": "Աղյուսակի լրացուցիչ կարգավորումներ", "DE.Views.DocumentHolder.advancedText": "Լրացուցիչ կարգավորումներ", "DE.Views.DocumentHolder.alignmentText": "Հավասարեցում", + "DE.Views.DocumentHolder.allLinearText": "Ամբողջական գծային", + "DE.Views.DocumentHolder.allProfText": "Ամբողջական պրոֆեսիոնալ", "DE.Views.DocumentHolder.belowText": "Ներքևում", "DE.Views.DocumentHolder.breakBeforeText": "Սկզբից էջատում", "DE.Views.DocumentHolder.bulletsText": "Պարբերակներ և համարակալում", @@ -1451,6 +1563,8 @@ "DE.Views.DocumentHolder.centerText": "Կենտրոնով", "DE.Views.DocumentHolder.chartText": "Գծապատկերի լրացուցիչ կարգավորումներ", "DE.Views.DocumentHolder.columnText": "Սյունակ", + "DE.Views.DocumentHolder.currLinearText": "Ընթացիկ - Գծային", + "DE.Views.DocumentHolder.currProfText": "Ընթացիկ-Պրոֆեսիոնալ", "DE.Views.DocumentHolder.deleteColumnText": "Ջնջել սյունակ", "DE.Views.DocumentHolder.deleteRowText": "Ջնջել տող", "DE.Views.DocumentHolder.deleteTableText": "Ջնջել աղյուսակը", @@ -1463,6 +1577,7 @@ "DE.Views.DocumentHolder.editFooterText": "Խմբագրել էջատակը", "DE.Views.DocumentHolder.editHeaderText": "Խմբագրել էջագլուխը", "DE.Views.DocumentHolder.editHyperlinkText": "Խմբագրել գերհղումը", + "DE.Views.DocumentHolder.eqToInlineText": "Փոխել ներտող ", "DE.Views.DocumentHolder.guestText": "Հյուր", "DE.Views.DocumentHolder.hyperlinkText": "Գերհղում", "DE.Views.DocumentHolder.ignoreAllSpellText": "Անտեսել բոլորը", @@ -1477,6 +1592,7 @@ "DE.Views.DocumentHolder.insertText": "Զետեղել", "DE.Views.DocumentHolder.keepLinesText": "Տողերը պահել միասին ", "DE.Views.DocumentHolder.langText": "Ընտրել լեզուն", + "DE.Views.DocumentHolder.latexText": "LaTeX", "DE.Views.DocumentHolder.leftText": "Ձախ", "DE.Views.DocumentHolder.loadSpellText": "Տարբերակների բեռնում...", "DE.Views.DocumentHolder.mergeCellsText": "Միաձուլել վանդակները", @@ -2073,6 +2189,7 @@ "DE.Views.LeftMenu.tipComments": "Մեկնաբանություններ", "DE.Views.LeftMenu.tipNavigation": "Նավիգացիա", "DE.Views.LeftMenu.tipOutline": "Վերնագրեր", + "DE.Views.LeftMenu.tipPageThumbnails": "Էջի էսքիզներ", "DE.Views.LeftMenu.tipPlugins": "Պլագիններ", "DE.Views.LeftMenu.tipSearch": "Որոնել", "DE.Views.LeftMenu.tipSupport": "Հետադարձ կապ և աջակցություն", @@ -2380,6 +2497,17 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Սահմանել միայն վերին եզրագիծը", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Ինքնաշխատ", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Առանց եզրագծերի", + "DE.Views.ProtectDialog.textComments": "Մեկնաբանություններ", + "DE.Views.ProtectDialog.textForms": "Լրացվող ձևեր", + "DE.Views.ProtectDialog.textView": "Փոփոխություններ չկան (Միայն-կարդալու)", + "DE.Views.ProtectDialog.txtAllow": "Թույլատրել միայն այս տեսակի խմբագրումը փաստաթղթում", + "DE.Views.ProtectDialog.txtIncorrectPwd": "Հաստատման գաղտնաբառը նույնը չէ", + "DE.Views.ProtectDialog.txtOptional": "ընտրովի", + "DE.Views.ProtectDialog.txtPassword": "Գաղտնաբառ", + "DE.Views.ProtectDialog.txtProtect": "Պաշտպանել", + "DE.Views.ProtectDialog.txtRepeat": "Կրկնել գաղտնաբառը", + "DE.Views.ProtectDialog.txtTitle": "Պաշտպանել", + "DE.Views.ProtectDialog.txtWarning": "Զգուշացում․ գաղտնաբառը կորցնելու կամ մոռանալու դեպքում այն ​​չի կարող վերականգնվել։Խնդրում ենք պահել այն ապահով տեղում:", "DE.Views.RightMenu.txtChartSettings": "Գծապատկերի կարգավորումներ", "DE.Views.RightMenu.txtFormSettings": "Ձևի կարգավորումներ", "DE.Views.RightMenu.txtHeaderFooterSettings": "Էջագլխի և էջատակի կարգավորումներ", @@ -2570,12 +2698,19 @@ "DE.Views.TableSettings.tipOuter": "Սահմանել միայն արտաքին եզրագիծը", "DE.Views.TableSettings.tipRight": "Սահմանել միայն արտաքին աջ եզրագիծը", "DE.Views.TableSettings.tipTop": "Սահմանել միայն արտաքին վերին եզրագիծը", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Եզրագծած և Ընդգծված Աղյուսակներ", + "DE.Views.TableSettings.txtGroupTable_Custom": "Հարմարեցված", + "DE.Views.TableSettings.txtGroupTable_Grid": "Ցանցավոր աղյուսակներ", + "DE.Views.TableSettings.txtGroupTable_List": "Ցուցակային աղյուսակներ", "DE.Views.TableSettings.txtNoBorders": "Առանց եզրագծերի", "DE.Views.TableSettings.txtTable_Accent": "Շեշտ", + "DE.Views.TableSettings.txtTable_Bordered": "Եզրագծած", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "Եզրագծած և Ընդգծված", "DE.Views.TableSettings.txtTable_Colorful": "Գունավոր", "DE.Views.TableSettings.txtTable_Dark": "Մութ", "DE.Views.TableSettings.txtTable_GridTable": "Ցանցային աղյուսակ", "DE.Views.TableSettings.txtTable_Light": "Լույս", + "DE.Views.TableSettings.txtTable_Lined": "Գծավոր", "DE.Views.TableSettings.txtTable_ListTable": "Ցանկի աղյուսակ", "DE.Views.TableSettings.txtTable_PlainTable": "Պարզ աղյուսակ ", "DE.Views.TableSettings.txtTable_TableGrid": "Աղյուսակի կետացանց", @@ -2710,6 +2845,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Նկար", "DE.Views.Toolbar.capBtnInsPagebreak": "Ընդհատումներ", "DE.Views.Toolbar.capBtnInsShape": "Պատկեր", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Նշան", "DE.Views.Toolbar.capBtnInsTable": "Աղյուսակ", "DE.Views.Toolbar.capBtnInsTextart": "Տեքստարվեստ", @@ -2856,13 +2992,16 @@ "DE.Views.Toolbar.tipIncPrLeft": "Մեծացնել բացատը պարբերության սկզբում", "DE.Views.Toolbar.tipInsertChart": "Զետեղել գծապատկեր", "DE.Views.Toolbar.tipInsertEquation": "Դնել հավասարում", + "DE.Views.Toolbar.tipInsertHorizontalText": "Զետեղել հորիզոնական գրվածքի տուփ", "DE.Views.Toolbar.tipInsertImage": "Զետեղել նկար", "DE.Views.Toolbar.tipInsertNum": "Դնել էջի համարը", "DE.Views.Toolbar.tipInsertShape": "Զետեղել պատկեր", + "DE.Views.Toolbar.tipInsertSmartArt": "Զետեղել SmartArt", "DE.Views.Toolbar.tipInsertSymbol": "Տեղադրել նշան", "DE.Views.Toolbar.tipInsertTable": "Դնել աղյուսակ", "DE.Views.Toolbar.tipInsertText": "Դնել տեքստատուփ", "DE.Views.Toolbar.tipInsertTextArt": "Դնել տեքստարվեստից", + "DE.Views.Toolbar.tipInsertVerticalText": "Զետեղել ուղղահայաց գրվածքի տուփ", "DE.Views.Toolbar.tipLineNumbers": "Ցուցադրել տողերի համարները", "DE.Views.Toolbar.tipLineSpace": "Պարբերության տողամիջոց", "DE.Views.Toolbar.tipMailRecepients": "Փոստի միավորում", @@ -2934,6 +3073,7 @@ "DE.Views.ViewTab.textFitToPage": "Հարմարեցնել էջին", "DE.Views.ViewTab.textFitToWidth": "Լայնքով", "DE.Views.ViewTab.textInterfaceTheme": "Ինտերֆեյսի թեմա", + "DE.Views.ViewTab.textLeftMenu": "Ձախ վահանակ", "DE.Views.ViewTab.textNavigation": "Նավիգացիա", "DE.Views.ViewTab.textOutline": "Վերնագրեր", "DE.Views.ViewTab.textRulers": "Քանոններ", diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index 2543e5527..8a181c16d 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -9,6 +9,10 @@ "Common.Controllers.ExternalMergeEditor.textClose": "Tutup", "Common.Controllers.ExternalMergeEditor.warningText": "Obyek dinonaktifkan karena sedang diedit oleh pengguna lain.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Peringatan", + "Common.Controllers.ExternalOleEditor.textAnonymous": "Anonim", + "Common.Controllers.ExternalOleEditor.textClose": "Tutup", + "Common.Controllers.ExternalOleEditor.warningText": "Obyek dinonaktifkan karena sedang disunting oleh pengguna lain.", + "Common.Controllers.ExternalOleEditor.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", @@ -121,6 +125,166 @@ "Common.define.chartData.textScatterSmoothMarker": "Diagram sebar dengan garis mulus dan marker", "Common.define.chartData.textStock": "Diagram Garis", "Common.define.chartData.textSurface": "Permukaan", + "Common.define.smartArt.textAccentedPicture": "Gambar Beraksen", + "Common.define.smartArt.textAccentProcess": "Proses Aksen", + "Common.define.smartArt.textAlternatingFlow": "Alur Bolak-Balik", + "Common.define.smartArt.textAlternatingHexagons": "Segi Enam Bolak-Balik", + "Common.define.smartArt.textAlternatingPictureBlocks": "Blok Gambar Bolak-Balik", + "Common.define.smartArt.textAlternatingPictureCircles": "Lingkaran Gambar Bolak-Balik", + "Common.define.smartArt.textArchitectureLayout": "Tata Letak Arsitektur", + "Common.define.smartArt.textArrowRibbon": "Pita Anak Panah", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Proses Akses Gambar Naik", + "Common.define.smartArt.textBalance": "Seimbang", + "Common.define.smartArt.textBasicBendingProcess": "Proses Meliuk Dasar", + "Common.define.smartArt.textBasicBlockList": "Daftar Blok Dasar", + "Common.define.smartArt.textBasicChevronProcess": "Proses Chevron Dasar", + "Common.define.smartArt.textBasicCycle": "Lingkaran Dasar", + "Common.define.smartArt.textBasicMatrix": "Matriks Dasar", + "Common.define.smartArt.textBasicPie": "Pai Dasar", + "Common.define.smartArt.textBasicProcess": "Proses Dasar", + "Common.define.smartArt.textBasicPyramid": "Piramida Dasar", + "Common.define.smartArt.textBasicRadial": "Radial Dasar", + "Common.define.smartArt.textBasicTarget": "Target Dasar", + "Common.define.smartArt.textBasicTimeline": "Garis Waktu Dasar", + "Common.define.smartArt.textBasicVenn": "Venn Dasar", + "Common.define.smartArt.textBendingPictureAccentList": "Daftar Akses Gambar Meliuk", + "Common.define.smartArt.textBendingPictureBlocks": "Blok Gambar Meliuk", + "Common.define.smartArt.textBendingPictureCaption": "Keterangan Gambar Meliuk", + "Common.define.smartArt.textBendingPictureCaptionList": "Daftar Keterangan Gambar Meliuk", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "Teks Semi-Transparan Gambar Meliuk", + "Common.define.smartArt.textBlockCycle": "Lingkaran Blok", + "Common.define.smartArt.textBubblePictureList": "Daftar Gambar Gelembung", + "Common.define.smartArt.textCaptionedPictures": "Gambar Dengan Keterangan", + "Common.define.smartArt.textChevronAccentProcess": "Proses Aksen Chevron", + "Common.define.smartArt.textChevronList": "Daftar Chevron", + "Common.define.smartArt.textCircleAccentTimeline": "Garis Waktu Aksen Lingkaran", + "Common.define.smartArt.textCircleArrowProcess": "Proses Panah Lingkaran", + "Common.define.smartArt.textCirclePictureHierarchy": "Hierarki Gambar Lingkaran", + "Common.define.smartArt.textCircleProcess": "Proses Lingkaran", + "Common.define.smartArt.textCircleRelationship": "Hubungan Lingkaran", + "Common.define.smartArt.textCircularBendingProcess": "Proses Melingkar", + "Common.define.smartArt.textCircularPictureCallout": "Panggilan Gambar Melingkar", + "Common.define.smartArt.textClosedChevronProcess": "Proses Chevron Tertutup", + "Common.define.smartArt.textContinuousArrowProcess": "Proses Panah Berkelanjutan", + "Common.define.smartArt.textContinuousBlockProcess": "Proses Blok Berkelanjutan", + "Common.define.smartArt.textContinuousCycle": "Siklus Berkelanjutan", + "Common.define.smartArt.textContinuousPictureList": "Daftar Gambar Berkelanjutan", + "Common.define.smartArt.textConvergingArrows": "Panah Memusat", + "Common.define.smartArt.textConvergingRadial": "Radial Memusat", + "Common.define.smartArt.textConvergingText": "Teks Memusat", + "Common.define.smartArt.textCounterbalanceArrows": "Panah Pengimbang", + "Common.define.smartArt.textCycle": "Siklus", + "Common.define.smartArt.textCycleMatrix": "Matriks Siklus", + "Common.define.smartArt.textDescendingBlockList": "Daftar Blok Turun", + "Common.define.smartArt.textDescendingProcess": "Proses Menurun", + "Common.define.smartArt.textDetailedProcess": "Proses Terperinci", + "Common.define.smartArt.textDivergingArrows": "Panah Menyebar", + "Common.define.smartArt.textDivergingRadial": "Radial Menyebar", + "Common.define.smartArt.textEquation": "Persamaan", + "Common.define.smartArt.textFramedTextPicture": "Gambar Teks Terbingkai", + "Common.define.smartArt.textFunnel": "Corong", + "Common.define.smartArt.textGear": "Gerigi", + "Common.define.smartArt.textGridMatrix": "Matriks Kisi", + "Common.define.smartArt.textGroupedList": "Daftar yang Dikelompokkan", + "Common.define.smartArt.textHalfCircleOrganizationChart": "Bagan Organisasi Setengah Lingkaran", + "Common.define.smartArt.textHexagonCluster": "Kluster Segi Enam", + "Common.define.smartArt.textHexagonRadial": "Radial Segi Enam", + "Common.define.smartArt.textHierarchy": "Hierarki", + "Common.define.smartArt.textHierarchyList": "Daftar Hierarki", + "Common.define.smartArt.textHorizontalBulletList": "Daftar Poin Horizontal", + "Common.define.smartArt.textHorizontalHierarchy": "Hierarki Horizontal", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "Hierarki Berlabel Horizontal", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Hierarki Multi-Level Horizontal", + "Common.define.smartArt.textHorizontalOrganizationChart": "Bagan Organisasi Horizontal", + "Common.define.smartArt.textHorizontalPictureList": "Daftar Gambar Horizontal", + "Common.define.smartArt.textIncreasingArrowProcess": "Proses Panah Meningkat", + "Common.define.smartArt.textIncreasingCircleProcess": "Proses Lingkaran Meningkat", + "Common.define.smartArt.textInterconnectedBlockProcess": "Proses Blok yang Saling Terhubung", + "Common.define.smartArt.textInterconnectedRings": "Cincin yang Saling Terhubung", + "Common.define.smartArt.textInvertedPyramid": "Piramida Terbalik", + "Common.define.smartArt.textLabeledHierarchy": "Hierarki Berlabel", + "Common.define.smartArt.textLinearVenn": "Venn Linear", + "Common.define.smartArt.textLinedList": "Daftar Bergaris", + "Common.define.smartArt.textList": "Daftar", + "Common.define.smartArt.textMatrix": "Matriks", + "Common.define.smartArt.textMultidirectionalCycle": "Siklus Multiarah", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "Bagan Organisasi Nama dan Jabatan", + "Common.define.smartArt.textNestedTarget": "Target Bertumpuk", + "Common.define.smartArt.textNondirectionalCycle": "Siklus Tanpa Arah", + "Common.define.smartArt.textOpposingArrows": "Panah Berlawanan", + "Common.define.smartArt.textOpposingIdeas": "Ide Berlawanan", + "Common.define.smartArt.textOrganizationChart": "Bagan Organisasi", + "Common.define.smartArt.textOther": "Lainnya", + "Common.define.smartArt.textPhasedProcess": "Proses Berfase", + "Common.define.smartArt.textPicture": "Gambar", + "Common.define.smartArt.textPictureAccentBlocks": "Blok Aksen Gambar", + "Common.define.smartArt.textPictureAccentList": "Daftar Aksen Gambar", + "Common.define.smartArt.textPictureAccentProcess": "Proses Aksen Gambar", + "Common.define.smartArt.textPictureCaptionList": "Daftar Keterangan Gambar", + "Common.define.smartArt.textPictureFrame": "PictureFrame", + "Common.define.smartArt.textPictureGrid": "Kisi Gambar", + "Common.define.smartArt.textPictureLineup": "Deretan Gambar", + "Common.define.smartArt.textPictureOrganizationChart": "Bagan Organisasi Gambar", + "Common.define.smartArt.textPictureStrips": "Jalur Gambar", + "Common.define.smartArt.textPieProcess": "Proses Pai", + "Common.define.smartArt.textPlusAndMinus": "Plus dan Minus", + "Common.define.smartArt.textProcess": "Proses", + "Common.define.smartArt.textProcessArrows": "Panah Proses", + "Common.define.smartArt.textProcessList": "Daftar Proses", + "Common.define.smartArt.textPyramid": "Piramida", + "Common.define.smartArt.textPyramidList": "Daftar Piramida", + "Common.define.smartArt.textRadialCluster": "Kluster Radial", + "Common.define.smartArt.textRadialCycle": "Siklus Radial", + "Common.define.smartArt.textRadialList": "Daftar Radial", + "Common.define.smartArt.textRadialPictureList": "Daftar Gambar Radial", + "Common.define.smartArt.textRadialVenn": "Venn Radial", + "Common.define.smartArt.textRandomToResultProcess": "Proses Acak ke Hasil", + "Common.define.smartArt.textRelationship": "Hubungan", + "Common.define.smartArt.textRepeatingBendingProcess": "Proses Pengarahan Berulang", + "Common.define.smartArt.textReverseList": "Daftar Terbalik", + "Common.define.smartArt.textSegmentedCycle": "Siklus Bersegmen", + "Common.define.smartArt.textSegmentedProcess": "Proses Bersegmen", + "Common.define.smartArt.textSegmentedPyramid": "Piramida Bersegmen", + "Common.define.smartArt.textSnapshotPictureList": "Daftar Gambar Snapshot", + "Common.define.smartArt.textSpiralPicture": "Gambar Spiral", + "Common.define.smartArt.textSquareAccentList": "Daftar Aksen Persegi", + "Common.define.smartArt.textStackedList": "Daftar Bertumpuk", + "Common.define.smartArt.textStackedVenn": "Venn Bertumpuk", + "Common.define.smartArt.textStaggeredProcess": "Proses Pengaturan", + "Common.define.smartArt.textStepDownProcess": "Proses Mundur", + "Common.define.smartArt.textStepUpProcess": "Proses Meningkat", + "Common.define.smartArt.textSubStepProcess": "Proses Sub-Langkah", + "Common.define.smartArt.textTabbedArc": "Busur Bertab", + "Common.define.smartArt.textTableHierarchy": "Hierarki Tabel", + "Common.define.smartArt.textTableList": "Daftar Tabel", + "Common.define.smartArt.textTabList": "Daftar Tab", + "Common.define.smartArt.textTargetList": "Daftar Target", + "Common.define.smartArt.textTextCycle": "Siklus Teks", + "Common.define.smartArt.textThemePictureAccent": "Aksen Gambar Tema", + "Common.define.smartArt.textThemePictureAlternatingAccent": "Aksen Bolak-Balik Gambar Tema", + "Common.define.smartArt.textThemePictureGrid": "Kisi Gambar Tema", + "Common.define.smartArt.textTitledMatrix": "Matriks Berjudul", + "Common.define.smartArt.textTitledPictureAccentList": "Daftar Aksen Gambar Berjudul", + "Common.define.smartArt.textTitledPictureBlocks": "Blok Gambar Berjudul", + "Common.define.smartArt.textTitlePictureLineup": "Deretan Gambar Judul", + "Common.define.smartArt.textTrapezoidList": "Daftar Trapesium", + "Common.define.smartArt.textUpwardArrow": "Panah ke Atas", + "Common.define.smartArt.textVaryingWidthList": "Daftar dengan Lebar Bervariasi", + "Common.define.smartArt.textVerticalAccentList": "Daftar Aksen Vertikal", + "Common.define.smartArt.textVerticalArrowList": "Daftar Panah Vertikal", + "Common.define.smartArt.textVerticalBendingProcess": "Arah Proses Vertikal", + "Common.define.smartArt.textVerticalBlockList": "Daftar Blok Vertikal", + "Common.define.smartArt.textVerticalBoxList": "Daftar Kotak Vertikal", + "Common.define.smartArt.textVerticalBracketList": "Daftar Tanda Kurung Vertikal", + "Common.define.smartArt.textVerticalBulletList": "Daftar Poin Vertikal", + "Common.define.smartArt.textVerticalChevronList": "Daftar Chevron Vertikal", + "Common.define.smartArt.textVerticalCircleList": "Daftar Lingkaran Vertikal", + "Common.define.smartArt.textVerticalCurvedList": "Daftar Kurva Vertikal", + "Common.define.smartArt.textVerticalEquation": "Persamaan Vertikal", + "Common.define.smartArt.textVerticalPictureAccentList": "Daftar Aksen Gambar Vertikal", + "Common.define.smartArt.textVerticalPictureList": "Daftar Gambar Vertikal", + "Common.define.smartArt.textVerticalProcess": "Proses Vertikal", + "Common.Translation.textMoreButton": "Lainnya", "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", @@ -170,6 +334,11 @@ "Common.UI.HSBColorPicker.textNoColor": "Tidak ada Warna", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan password", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tampilkan password", + "Common.UI.SearchBar.textFind": "Temukan", + "Common.UI.SearchBar.tipCloseSearch": "Tutup pencarian", + "Common.UI.SearchBar.tipNextResult": "Hasil selanjutnya", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Buka pengaturan lanjutan", + "Common.UI.SearchBar.tipPreviousResult": "Hasil sebelumnya", "Common.UI.SearchDialog.textHighlight": "Sorot hasil", "Common.UI.SearchDialog.textMatchCase": "Harus sama persis", "Common.UI.SearchDialog.textReplaceDef": "Tuliskan teks pengganti", @@ -182,11 +351,14 @@ "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.textRecentColors": "Warna Terakhir", "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standar", "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", "Common.UI.Themes.txtThemeClassicLight": "Terang Klasik", + "Common.UI.Themes.txtThemeContrastDark": "Gelap Kontras", "Common.UI.Themes.txtThemeDark": "Gelap", "Common.UI.Themes.txtThemeLight": "Cerah", + "Common.UI.Themes.txtThemeSystem": "Sama seperti sistem", "Common.UI.Window.cancelButtonText": "Batalkan", "Common.UI.Window.closeButtonText": "Tutup", "Common.UI.Window.noButtonText": "Tidak", @@ -199,6 +371,9 @@ "Common.UI.Window.yesButtonText": "Ya", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textAlt": "Alt", + "Common.Utils.String.textCtrl": "Ctrl", + "Common.Utils.String.textShift": "Shift", "Common.Views.About.txtAddress": "alamat: ", "Common.Views.About.txtLicensee": "PEMEGANG LISENSI", "Common.Views.About.txtLicensor": "PEMBERI LISENSI", @@ -262,6 +437,7 @@ "Common.Views.Comments.textResolved": "Diselesaikan", "Common.Views.Comments.textSort": "Sortir komentar", "Common.Views.Comments.textViewResolved": "Anda tidak memiliki izin membuka kembali komentar", + "Common.Views.Comments.txtEmpty": "Tidak ada komentar pada dokumen.", "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", @@ -270,12 +446,11 @@ "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.ExternalMergeEditor.textClose": "Tutup", - "Common.Views.ExternalMergeEditor.textSave": "Simpan & Keluar", + "Common.Views.ExternalEditor.textClose": "Tutup", + "Common.Views.ExternalEditor.textSave": "Simpan & Keluar", "Common.Views.ExternalMergeEditor.textTitle": "Merge Email Penerima", + "Common.Views.ExternalOleEditor.textTitle": "Penyunting Spreadsheet", "Common.Views.Header.labelCoUsersDescr": "User yang sedang edit file:", "Common.Views.Header.textAddFavorite": "Tandai sebagai favorit", "Common.Views.Header.textAdvSettings": "Pengaturan Lanjut", @@ -284,6 +459,7 @@ "Common.Views.Header.textHideLines": "Sembunyikan Mistar", "Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status", "Common.Views.Header.textRemoveFavorite": "Hilangkan dari Favorit", + "Common.Views.Header.textShare": "Bagikan", "Common.Views.Header.textZoom": "Pembesaran", "Common.Views.Header.tipAccessRights": "Atur perizinan akses dokumen", "Common.Views.Header.tipDownload": "Unduh File", @@ -291,7 +467,9 @@ "Common.Views.Header.tipPrint": "Print file", "Common.Views.Header.tipRedo": "Ulangi", "Common.Views.Header.tipSave": "Simpan", + "Common.Views.Header.tipSearch": "Cari", "Common.Views.Header.tipUndo": "Batalkan", + "Common.Views.Header.tipUsers": "Lihat pengguna", "Common.Views.Header.tipViewSettings": "Lihat Pengaturan", "Common.Views.Header.tipViewUsers": "Tampilkan user dan atur hak akses dokumen", "Common.Views.Header.txtAccessRights": "Ubah hak akses", @@ -332,10 +510,12 @@ "Common.Views.PluginDlg.textLoading": "Memuat", "Common.Views.Plugins.groupCaption": "Plugins", "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textClosePanel": "Tutup plugin", "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.hintDelPwd": "Hapus kata sandi", "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", @@ -445,6 +625,24 @@ "Common.Views.ReviewPopover.txtReject": "Tolak", "Common.Views.SaveAsDlg.textLoading": "Memuat", "Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan", + "Common.Views.SearchPanel.textCaseSensitive": "Peka huruf besar-kecil", + "Common.Views.SearchPanel.textCloseSearch": "Tutup pencarian", + "Common.Views.SearchPanel.textContentChanged": "Dokumen telah diubah.", + "Common.Views.SearchPanel.textFind": "Temukan", + "Common.Views.SearchPanel.textFindAndReplace": "Temukan dan ganti", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Cocokkan dengan ekspresi reguler", + "Common.Views.SearchPanel.textNoMatches": "Tidak ada yang cocok", + "Common.Views.SearchPanel.textNoSearchResults": "Tidak ada hasil pencarian", + "Common.Views.SearchPanel.textReplace": "Ganti", + "Common.Views.SearchPanel.textReplaceAll": "Ganti Semua", + "Common.Views.SearchPanel.textReplaceWith": "Ganti dengan", + "Common.Views.SearchPanel.textSearchAgain": "{0}Lakukan pencarian baru{1} untuk hasil yang akurat.", + "Common.Views.SearchPanel.textSearchHasStopped": "Pencarian berhenti", + "Common.Views.SearchPanel.textSearchResults": "Hasil pencarian: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Terlalu banyak hasil untuk ditampilkan di sini", + "Common.Views.SearchPanel.textWholeWords": "Keseluruhan kata saja", + "Common.Views.SearchPanel.tipNextResult": "Hasil selanjutnya", + "Common.Views.SearchPanel.tipPreviousResult": "Hasil sebelumnya", "Common.Views.SelectFileDlg.textLoading": "Memuat", "Common.Views.SelectFileDlg.textTitle": "Pilih sumber data", "Common.Views.SignDialog.textBold": "Tebal", @@ -463,11 +661,11 @@ "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.textInfoTitle": "Gelar Penandatangan", - "Common.Views.SignSettingsDialog.textInstructions": "Instruksi untuk Penandatangan", + "Common.Views.SignSettingsDialog.textDefInstruction": "Sebelum menandatangani dokumen ini, pastikan konten yang akan Anda tanda tangani sudah benar.", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail penandatangan yang disarankan", + "Common.Views.SignSettingsDialog.textInfoName": "Penandatangan yang disarankan", + "Common.Views.SignSettingsDialog.textInfoTitle": "Gelar penandatangan yang disarankan", + "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", @@ -514,8 +712,10 @@ "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.LeftMenu.warnReplaceString": "{0} bukan karakter khusus yang valid untuk bidang penggantian.", "DE.Controllers.Main.applyChangesTextText": "Memuat perubahan...", "DE.Controllers.Main.applyChangesTitleText": "Memuat Perubahan", + "DE.Controllers.Main.confirmMaxChangesSize": "Ukuran tindakan melebihi batas yang ditetapkan untuk server Anda.
Tekan \"Batalkan\" untuk membatalkan tindakan terakhir Anda atau tekan \"Lanjutkan\" untuk menyimpan tindakan secara lokal (Anda perlu mengunduh file atau menyalin isinya untuk memastikan tidak ada yang hilang).", "DE.Controllers.Main.convertationTimeoutText": "Waktu konversi habis.", "DE.Controllers.Main.criticalErrorExtText": "Tekan \"OK\" untuk kembali ke daftar dokumen.", "DE.Controllers.Main.criticalErrorTitle": "Kesalahan", @@ -538,14 +738,17 @@ "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.errorEmptyTOC": "Mulai membuat daftar isi dengan menerapkan gaya judul dari galeri Gaya kepada teks terpilih.", "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.errorForceSave": "Ada kesalahan saat menyimpan file. Silakan gunakan opsi 'Unduh 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.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.errorNoTOC": "Tidak ada daftar isi yang harus diperbarui. Anda dapat menyisipkan satu daftar isi dari tab Referensi.", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "Kata sandi yang Anda masukkan tidak tepat.
Pastikan CAPS LOCK sudah mati dan pastikan telah menggunakan huruf besar dengan tepat.", "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.", @@ -554,10 +757,11 @@ "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.errorTextFormWrongFormat": "Nilai yang dimasukkan tidak cocok dengan format bidang.", "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.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.errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu mengunduh file atau salin konten untuk memastikan tidak ada yang hilang, lalu 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.errorViewerDisconnect": "Koneksi terputus. Anda tetap bisa melihat dokumen,
tapi tidak bisa download atau print sampai koneksi terhubung dan halaman dimuat ulang.", @@ -601,6 +805,7 @@ "DE.Controllers.Main.textClose": "Tutup", "DE.Controllers.Main.textCloseTip": "Klik untuk menutup tips", "DE.Controllers.Main.textContactUs": "Hubungi sales", + "DE.Controllers.Main.textContinue": "Lanjutkan", "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", @@ -613,12 +818,15 @@ "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.textRememberMacros": "Ingat pilihan saya untuk semua makro", "DE.Controllers.Main.textRenameError": "Nama user tidak boleh kosong.", "DE.Controllers.Main.textRenameLabel": "Masukkan nama untuk digunakan di kolaborasi", + "DE.Controllers.Main.textRequestMacros": "Sebuah makro melakukan permintaan ke URL. Apakah Anda akan mengizinkan permintaan ini ke %1?", "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.textUndo": "Batalkan", "DE.Controllers.Main.titleLicenseExp": "Lisensi kadaluwarsa", "DE.Controllers.Main.titleServerVersion": "Editor mengupdate", "DE.Controllers.Main.titleUpdateVersion": "Versi telah diubah", @@ -889,6 +1097,11 @@ "DE.Controllers.Main.warnProcessRightsChange": "Hak Anda untuk mengedit file ditolak.", "DE.Controllers.Navigation.txtBeginning": "Awal dokumen", "DE.Controllers.Navigation.txtGotoBeginning": "Pergi ke awal dokumen", + "DE.Controllers.Search.notcriticalErrorTitle": "Peringatan", + "DE.Controllers.Search.textNoTextFound": "Data yang Anda cari tidak ditemukan. Silakan atur opsi pencarian Anda.", + "DE.Controllers.Search.textReplaceSkipped": "Penggantian telah dilakukan. {0} kemunculan telah dilewatkan.", + "DE.Controllers.Search.textReplaceSuccess": "Pencarian telah dilakukan. {0} kemunculan telah diganti", + "DE.Controllers.Search.warnReplaceString": "{0} bukan karakter khusus yang valid untuk kotak Ganti Dengan.", "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", @@ -1283,19 +1496,34 @@ "DE.Views.CellsAddDialog.textRow": "Baris", "DE.Views.CellsAddDialog.textTitle": "Sisipkan Beberapa", "DE.Views.CellsAddDialog.textUp": "Diatas kursor", + "DE.Views.ChartSettings.text3dDepth": "Kedalaman (% dari dasar)", + "DE.Views.ChartSettings.text3dHeight": "Tinggi (% dari dasar)", + "DE.Views.ChartSettings.text3dRotation": "Rotasi 3D", "DE.Views.ChartSettings.textAdvanced": "Tampilkan pengaturan lanjut", + "DE.Views.ChartSettings.textAutoscale": "Skala Otomatis", "DE.Views.ChartSettings.textChartType": "Ubah Tipe Bagan", + "DE.Views.ChartSettings.textDefault": "Rotasi Bawaan", + "DE.Views.ChartSettings.textDown": "Bawah", "DE.Views.ChartSettings.textEditData": "Edit Data", "DE.Views.ChartSettings.textHeight": "Tinggi", + "DE.Views.ChartSettings.textLeft": "Kiri", + "DE.Views.ChartSettings.textNarrow": "Perkecil bidang tampilan", "DE.Views.ChartSettings.textOriginalSize": "Ukuran Sebenarnya", + "DE.Views.ChartSettings.textPerspective": "Perspektif", + "DE.Views.ChartSettings.textRight": "Kanan", + "DE.Views.ChartSettings.textRightAngle": "Sumbu Sudut Kanan", "DE.Views.ChartSettings.textSize": "Ukuran", "DE.Views.ChartSettings.textStyle": "Model", "DE.Views.ChartSettings.textUndock": "Lepaskan dari panel", + "DE.Views.ChartSettings.textUp": "Naik", + "DE.Views.ChartSettings.textWiden": "Perlebar bidang tampilan", "DE.Views.ChartSettings.textWidth": "Lebar", "DE.Views.ChartSettings.textWrap": "Bentuk Potongan", - "DE.Views.ChartSettings.txtBehind": "Di belakang", - "DE.Views.ChartSettings.txtInFront": "Di depan", - "DE.Views.ChartSettings.txtInline": "Berderet", + "DE.Views.ChartSettings.textX": "Rotasi X", + "DE.Views.ChartSettings.textY": "Rotasi Y", + "DE.Views.ChartSettings.txtBehind": "Di Belakang Teks", + "DE.Views.ChartSettings.txtInFront": "Di Depan Teks", + "DE.Views.ChartSettings.txtInline": "Sejajar dengan Teks", "DE.Views.ChartSettings.txtSquare": "Persegi", "DE.Views.ChartSettings.txtThrough": "Tembus", "DE.Views.ChartSettings.txtTight": "Ketat", @@ -1382,14 +1610,24 @@ "DE.Views.DateTimeDialog.textLang": "Bahasa", "DE.Views.DateTimeDialog.textUpdate": "Update secara otomatis", "DE.Views.DateTimeDialog.txtTitle": "Tanggal & Jam", + "DE.Views.DocProtection.hintProtectDoc": "Proteksi dokumen", + "DE.Views.DocProtection.txtDocProtectedComment": "Dokumen terproteksi.
Anda hanya bisa menyisipkan komentar pada dokumen ini.", + "DE.Views.DocProtection.txtDocProtectedForms": "Dokumen terproteksi.
Anda hanya bisa mengisi formulir pada dokumen ini.", + "DE.Views.DocProtection.txtDocProtectedTrack": "Dokumen terproteksi.
Anda dapat menyunting dokumen ini, tapi semua perubahan akan dilacak.", + "DE.Views.DocProtection.txtDocProtectedView": "Dokumen terproteksi.
Anda hanya bisa melihat dokumen ini.", + "DE.Views.DocProtection.txtDocUnlockDescription": "Masukkan kata sandi untuk membuka proteksi dokumen", + "DE.Views.DocProtection.txtProtectDoc": "Proteksi Dokumen", "DE.Views.DocumentHolder.aboveText": "Di atas", "DE.Views.DocumentHolder.addCommentText": "Tambahkan Komentar", "DE.Views.DocumentHolder.advancedDropCapText": "Pengaturan Drop Cap", + "DE.Views.DocumentHolder.advancedEquationText": "Pengaturan Persamaan", "DE.Views.DocumentHolder.advancedFrameText": "Pengaturan Lanjut untuk Kerangka", "DE.Views.DocumentHolder.advancedParagraphText": "Pengaturan Lanjut untuk Paragraf", "DE.Views.DocumentHolder.advancedTableText": "Pengaturan Lanjut untuk Tabel", "DE.Views.DocumentHolder.advancedText": "Pengaturan Lanjut", "DE.Views.DocumentHolder.alignmentText": "Perataan", + "DE.Views.DocumentHolder.allLinearText": "Semua - Linear", + "DE.Views.DocumentHolder.allProfText": "Semua - Profesional", "DE.Views.DocumentHolder.belowText": "Di bawah", "DE.Views.DocumentHolder.breakBeforeText": "Jeda halaman sebelum", "DE.Views.DocumentHolder.bulletsText": "Butir & Penomoran", @@ -1398,6 +1636,8 @@ "DE.Views.DocumentHolder.centerText": "Tengah", "DE.Views.DocumentHolder.chartText": "Pengaturan Lanjut untuk Bagan", "DE.Views.DocumentHolder.columnText": "Kolom", + "DE.Views.DocumentHolder.currLinearText": "Saat Ini - Linear", + "DE.Views.DocumentHolder.currProfText": "Saat Ini - Profesional", "DE.Views.DocumentHolder.deleteColumnText": "Hapus Kolom", "DE.Views.DocumentHolder.deleteRowText": "Hapus Baris", "DE.Views.DocumentHolder.deleteTableText": "Hapus Tabel", @@ -1410,6 +1650,7 @@ "DE.Views.DocumentHolder.editFooterText": "Edit Footer", "DE.Views.DocumentHolder.editHeaderText": "Edit Header", "DE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", + "DE.Views.DocumentHolder.eqToInlineText": "Ubah ke Sebaris", "DE.Views.DocumentHolder.guestText": "Tamu", "DE.Views.DocumentHolder.hyperlinkText": "Hyperlink", "DE.Views.DocumentHolder.ignoreAllSpellText": "Abaikan Semua", @@ -1424,6 +1665,7 @@ "DE.Views.DocumentHolder.insertText": "Sisipkan", "DE.Views.DocumentHolder.keepLinesText": "Tetap satukan garis", "DE.Views.DocumentHolder.langText": "Pilih Bahasa", + "DE.Views.DocumentHolder.latexText": "LaTex", "DE.Views.DocumentHolder.leftText": "Kiri", "DE.Views.DocumentHolder.loadSpellText": "Memuat varian...", "DE.Views.DocumentHolder.mergeCellsText": "Gabungkan Sel", @@ -1531,7 +1773,7 @@ "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.txtBehind": "Di Belakang Teks", "DE.Views.DocumentHolder.txtBorderProps": "Properti pembatas", "DE.Views.DocumentHolder.txtBottom": "Bawah", "DE.Views.DocumentHolder.txtColumnAlign": "Rata kolom", @@ -1567,8 +1809,8 @@ "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.txtInFront": "Di Depan Teks", + "DE.Views.DocumentHolder.txtInline": "Sejajar dengan Teks", "DE.Views.DocumentHolder.txtInsertArgAfter": "Sisipkan argumen setelah", "DE.Views.DocumentHolder.txtInsertArgBefore": "Sisipkan argumen sebelum", "DE.Views.DocumentHolder.txtInsertBreak": "Sisipkan break manual", @@ -1611,6 +1853,7 @@ "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.unicodeText": "Unicode", "DE.Views.DocumentHolder.updateStyleText": "Update %1 style", "DE.Views.DocumentHolder.vertAlignText": "Perataan Vertikal", "DE.Views.DropcapSettingsAdvanced.strBorders": "Pembatas & Isian", @@ -1658,7 +1901,7 @@ "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.btnBackCaption": "Buka lokasi file", "DE.Views.FileMenu.btnCloseMenuCaption": "Tutup Menu", "DE.Views.FileMenu.btnCreateNewCaption": "Buat Baru", "DE.Views.FileMenu.btnDownloadCaption": "Unduh sebagai", @@ -1689,6 +1932,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Ubah hak akses", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Dibuat", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Tampilan Web Cepat", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Memuat...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Terakhir Dimodifikasi Oleh", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Terakhir Dimodifikasi", @@ -1697,12 +1941,16 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Halaman", "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Ukuran Halaman", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraf", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "Pembuat PDF", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF Bertanda", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versi PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbol dengan spasi", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbol", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tag", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Kata", @@ -1724,9 +1972,14 @@ "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.strIgnoreWordsInUPPERCASE": "Abaikan kata dalam HURUF BESAR", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Abaikan kata dengan angka", "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.strShowComments": "Tampilkan komentar pada teks", + "DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Tampilkan perubahan dari pengguna lain", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Tampilkan komentar yang telah diselesaikan", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", "DE.Views.FileMenuPanels.Settings.strTheme": "Tema interface", "DE.Views.FileMenuPanels.Settings.strUnit": "Satuan Ukuran", @@ -1748,9 +2001,13 @@ "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.txtCollaboration": "Kolaborasi", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Hidupkan mode gelap dokumen", + "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Penyuntingan dan penyimpanan", + "DE.Views.FileMenuPanels.Settings.txtFastTip": "Penyuntingan bersama waktu-nyata. Semua perubahan disimpan secara otomatis", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Sesuaikan Halaman", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Sesuaikan Lebar", + "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglif", "DE.Views.FileMenuPanels.Settings.txtInch": "Inci", "DE.Views.FileMenuPanels.Settings.txtLast": "Lihat yang Terakhir", "DE.Views.FileMenuPanels.Settings.txtMac": "sebagai OS X", @@ -1760,42 +2017,59 @@ "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.txtShowTrackChanges": "Tampilkan pelacak perubahan", "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.txtStrictTip": "Gunakan tombol \"Simpan\" untuk menyinkronkan perubahan yang Anda dan orang lain lakukan", + "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Gunakan tombol Alt untuk menavigasi antarmuka pengguna menggunakan keyboard", + "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Gunakan tombol Option untuk menavigasi antarmuka pengguna menggunakan keyboard", "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.FileMenuPanels.Settings.txtWorkspace": "Ruang Kerja", "DE.Views.FormSettings.textAlways": "Selalu", "DE.Views.FormSettings.textAspect": "Kunci aspek rasio", + "DE.Views.FormSettings.textAtLeast": "Paling sedikit", + "DE.Views.FormSettings.textAuto": "Otomatis", "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.textComplex": "Bidang Kompleks", "DE.Views.FormSettings.textConnected": "Area terhubung", "DE.Views.FormSettings.textDelete": "Hapus", + "DE.Views.FormSettings.textDigits": "Digit", "DE.Views.FormSettings.textDisconnect": "Putuskan hubungan", "DE.Views.FormSettings.textDropDown": "Dropdown", + "DE.Views.FormSettings.textExact": "Persis", "DE.Views.FormSettings.textField": "Area Teks", "DE.Views.FormSettings.textFixed": "Area ukuran tetap", + "DE.Views.FormSettings.textFormat": "Format", + "DE.Views.FormSettings.textFormatSymbols": "Simbol yang Diizinkan", "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.textLetters": "Huruf", "DE.Views.FormSettings.textLock": "Kunci", + "DE.Views.FormSettings.textMask": "Samaran Arbitrer", "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.textNone": "Tidak ada", "DE.Views.FormSettings.textPlaceholder": "Placeholder", "DE.Views.FormSettings.textRadiobox": "Tombol Radio", + "DE.Views.FormSettings.textReg": "Ekspresi Reguler", "DE.Views.FormSettings.textRequired": "Dibutuhkan", "DE.Views.FormSettings.textScale": "Waktu untuk menskala", "DE.Views.FormSettings.textSelectImage": "Pilih Gambar", + "DE.Views.FormSettings.textTag": "Tandai", "DE.Views.FormSettings.textTip": "Tip", "DE.Views.FormSettings.textTipAdd": "Tambah nilai baru", "DE.Views.FormSettings.textTipDelete": "Hapus nilai", @@ -1808,9 +2082,13 @@ "DE.Views.FormSettings.textWidth": "Lebar sel", "DE.Views.FormsTab.capBtnCheckBox": "Kotak centang", "DE.Views.FormsTab.capBtnComboBox": "Kotak combo", + "DE.Views.FormsTab.capBtnComplex": "Bidang Kompleks", + "DE.Views.FormsTab.capBtnDownloadForm": "Unduh sebagai oform", "DE.Views.FormsTab.capBtnDropDown": "Dropdown", + "DE.Views.FormsTab.capBtnEmail": "Alamat Email", "DE.Views.FormsTab.capBtnImage": "Gambar", "DE.Views.FormsTab.capBtnNext": "Area Berikutnya", + "DE.Views.FormsTab.capBtnPhone": "Nomor Telepon", "DE.Views.FormsTab.capBtnPrev": "Area Sebelumnya", "DE.Views.FormsTab.capBtnRadioBox": "Tombol Radio", "DE.Views.FormsTab.capBtnSaveForm": "Simpan sebagai oform", @@ -1827,9 +2105,13 @@ "DE.Views.FormsTab.textSubmited": "Form berhasil disubmit", "DE.Views.FormsTab.tipCheckBox": "Sisipkan kotak centang", "DE.Views.FormsTab.tipComboBox": "Sisipkan kotak kombo", + "DE.Views.FormsTab.tipComplexField": "Sisipkan bidang kompleks", + "DE.Views.FormsTab.tipDownloadForm": "Unduh file sebagai dokumen OFORM yang dapat diisi", "DE.Views.FormsTab.tipDropDown": "Sisipkan list dropdown", + "DE.Views.FormsTab.tipEmailField": "Sisipkan alamat email", "DE.Views.FormsTab.tipImageField": "Sisipkan Gambar", "DE.Views.FormsTab.tipNextForm": "Pergi ke area berikutnya", + "DE.Views.FormsTab.tipPhoneField": "Sisipkan nomor telepon", "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", @@ -1895,9 +2177,9 @@ "DE.Views.ImageSettings.textSize": "Ukuran", "DE.Views.ImageSettings.textWidth": "Lebar", "DE.Views.ImageSettings.textWrap": "Bentuk Potongan", - "DE.Views.ImageSettings.txtBehind": "Di belakang", - "DE.Views.ImageSettings.txtInFront": "Di depan", - "DE.Views.ImageSettings.txtInline": "Berderet", + "DE.Views.ImageSettings.txtBehind": "Di Belakang Teks", + "DE.Views.ImageSettings.txtInFront": "Di Depan Teks", + "DE.Views.ImageSettings.txtInline": "Sejajar dengan Teks", "DE.Views.ImageSettings.txtSquare": "Persegi", "DE.Views.ImageSettings.txtThrough": "Tembus", "DE.Views.ImageSettings.txtTight": "Ketat", @@ -1970,9 +2252,9 @@ "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.textWrapBehindTooltip": "Di Belakang Teks", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Di depan", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Berderet", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Sejajar dengan Teks", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Persegi", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Tembus", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Ketat", @@ -1981,11 +2263,14 @@ "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "Komentar", "DE.Views.LeftMenu.tipNavigation": "Navigasi", + "DE.Views.LeftMenu.tipOutline": "Tajuk", + "DE.Views.LeftMenu.tipPageThumbnails": "Thumbnail Halaman", "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.txtEditor": "Penyunting Dokumen", "DE.Views.LeftMenu.txtLimit": "Batas Akses", "DE.Views.LeftMenu.txtTrial": "MODE TRIAL", "DE.Views.LeftMenu.txtTrialDev": "Mode Trial Developer", @@ -2003,6 +2288,7 @@ "DE.Views.LineNumbersDialog.textStartAt": "Dimulai pada", "DE.Views.LineNumbersDialog.textTitle": "Nomor Garis", "DE.Views.LineNumbersDialog.txtAutoText": "Otomatis", + "DE.Views.Links.capBtnAddText": "Tambahkan Teks", "DE.Views.Links.capBtnBookmarks": "Bookmark", "DE.Views.Links.capBtnCaption": "Caption", "DE.Views.Links.capBtnContentsUpdate": "Update Tabel", @@ -2027,6 +2313,7 @@ "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.tipAddText": "Sertakan tajuk pada Daftar Isi", "DE.Views.Links.tipBookmarks": "Buat bookmark", "DE.Views.Links.tipCaption": "Sisipkan Caption", "DE.Views.Links.tipContents": "Sisipkan daftar isi", @@ -2037,6 +2324,8 @@ "DE.Views.Links.tipTableFigures": "Sisipkan daftar gambar", "DE.Views.Links.tipTableFiguresUpdate": "Update Daftar Gambar", "DE.Views.Links.titleUpdateTOF": "Update Daftar Gambar", + "DE.Views.Links.txtDontShowTof": "Jangan Tampilkan pada Daftar Isi", + "DE.Views.Links.txtLevel": "Level", "DE.Views.ListSettingsDialog.textAuto": "Otomatis", "DE.Views.ListSettingsDialog.textCenter": "Tengah", "DE.Views.ListSettingsDialog.textLeft": "Kiri", @@ -2101,6 +2390,8 @@ "DE.Views.MailMergeSettings.txtPrev": "Ke rekaman sebelumnya", "DE.Views.MailMergeSettings.txtUntitled": "Tanpa Judul", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Gagal memulai merge", + "DE.Views.Navigation.strNavigate": "Tajuk", + "DE.Views.Navigation.txtClosePanel": "Tutup Tajuk", "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.", @@ -2108,11 +2399,17 @@ "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.txtFontSize": "Ukuran huruf", "DE.Views.Navigation.txtHeadingAfter": "Heading baru setelah", "DE.Views.Navigation.txtHeadingBefore": "Heading baru sebelum", + "DE.Views.Navigation.txtLarge": "Besar", + "DE.Views.Navigation.txtMedium": "Medium", "DE.Views.Navigation.txtNewHeading": "Subheading baru", "DE.Views.Navigation.txtPromote": "Promosi", "DE.Views.Navigation.txtSelect": "Pilih konten", + "DE.Views.Navigation.txtSettings": "Pengaturan tajuk", + "DE.Views.Navigation.txtSmall": "Kecil", + "DE.Views.Navigation.txtWrapHeadings": "Bungkus judul panjang", "DE.Views.NoteSettingsDialog.textApply": "Terapkan", "DE.Views.NoteSettingsDialog.textApplyTo": "Terapkan perubahan ke", "DE.Views.NoteSettingsDialog.textContinue": "Kontinyu", @@ -2215,6 +2512,7 @@ "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Menekan nomor garis", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tab", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Perataan", + "DE.Views.ParagraphSettingsAdvanced.textAll": "Semua", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Sekurang-kurangnya", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Banyak", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Warna Latar", @@ -2225,23 +2523,39 @@ "DE.Views.ParagraphSettingsAdvanced.textBottom": "Bawah", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Tengah", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spasi Antar Karakter", + "DE.Views.ParagraphSettingsAdvanced.textContext": "Kontekstual", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontekstual dan", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Kontekstual, Bersejarah, dan", + "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Kontekstual dan Bersejarah", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab Standar", + "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Diskresional", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efek", "DE.Views.ParagraphSettingsAdvanced.textExact": "Persis", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Menggantung", + "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Bersejarah", + "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Bersejarah dan Diskresional", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Level", + "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatur", "DE.Views.ParagraphSettingsAdvanced.textNone": "Tidak ada", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(tidak ada)", + "DE.Views.ParagraphSettingsAdvanced.textOpenType": "Fitur OpenType", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Posisi", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Hapus", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Hapus Semua", "DE.Views.ParagraphSettingsAdvanced.textRight": "Kanan", "DE.Views.ParagraphSettingsAdvanced.textSet": "Tentukan", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spasi", + "DE.Views.ParagraphSettingsAdvanced.textStandard": "Standar saja", + "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standar dan Kontekstual", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standar, Kontekstual, dan Diskresional", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standar, Kontekstual, dan Bersejarah", + "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standar dan Diskresional", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standar, Bersejarah, dan Diskresional", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standar dan Bersejarah", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Tengah", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Kiri", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posisi Tab", @@ -2258,6 +2572,18 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Buat Pembatas Atas Saja", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", + "DE.Views.ProtectDialog.textComments": "Komentar", + "DE.Views.ProtectDialog.textForms": "Formulir isian", + "DE.Views.ProtectDialog.textReview": "Perubahan terlacak", + "DE.Views.ProtectDialog.textView": "Tidak ada perubahan (Baca saja)", + "DE.Views.ProtectDialog.txtAllow": "Izinkan jenis penyuntingan ini saja pada dokumen", + "DE.Views.ProtectDialog.txtIncorrectPwd": "Kata sandi konfirmasi tidak sama", + "DE.Views.ProtectDialog.txtOptional": "opsional", + "DE.Views.ProtectDialog.txtPassword": "Kata Sandi", + "DE.Views.ProtectDialog.txtProtect": "Proteksi", + "DE.Views.ProtectDialog.txtRepeat": "Ulangi kata sandi", + "DE.Views.ProtectDialog.txtTitle": "Proteksi", + "DE.Views.ProtectDialog.txtWarning": "Peringatan: Tidak bisa dipulihkan jika Anda kehilangan atau lupa kata sandi. Simpan di tempat yang aman.", "DE.Views.RightMenu.txtChartSettings": "Pengaturan Bagan", "DE.Views.RightMenu.txtFormSettings": "Pengaturan Form", "DE.Views.RightMenu.txtHeaderFooterSettings": "Pengaturan Header dan Footer", @@ -2289,7 +2615,7 @@ "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.textGradient": "Titik 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", @@ -2313,7 +2639,7 @@ "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.txtBehind": "Di Belakang Teks", "DE.Views.ShapeSettings.txtBrownPaper": "Kertas Coklat", "DE.Views.ShapeSettings.txtCanvas": "Kanvas", "DE.Views.ShapeSettings.txtCarton": "Karton", @@ -2321,8 +2647,8 @@ "DE.Views.ShapeSettings.txtGrain": "Butiran", "DE.Views.ShapeSettings.txtGranite": "Granit", "DE.Views.ShapeSettings.txtGreyPaper": "Kertas Abu-Abu", - "DE.Views.ShapeSettings.txtInFront": "Di depan", - "DE.Views.ShapeSettings.txtInline": "Berderet", + "DE.Views.ShapeSettings.txtInFront": "Di Depan Teks", + "DE.Views.ShapeSettings.txtInline": "Sejajar dengan Teks", "DE.Views.ShapeSettings.txtKnit": "Rajut", "DE.Views.ShapeSettings.txtLeather": "Kulit", "DE.Views.ShapeSettings.txtNoBorders": "Tidak ada Garis", @@ -2448,12 +2774,20 @@ "DE.Views.TableSettings.tipOuter": "Buat Pembatas Luar Saja", "DE.Views.TableSettings.tipRight": "Buat Pembatas Kanan-Luar Saja", "DE.Views.TableSettings.tipTop": "Buat Pembatas Atas-Luar Saja", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Tabel Bergaris Tepi & Bergaris", + "DE.Views.TableSettings.txtGroupTable_Custom": "Kustom", + "DE.Views.TableSettings.txtGroupTable_Grid": "Tabel Kisi", + "DE.Views.TableSettings.txtGroupTable_List": "Tabel Daftar", + "DE.Views.TableSettings.txtGroupTable_Plain": "Tabel Biasa", "DE.Views.TableSettings.txtNoBorders": "Tidak ada pembatas", "DE.Views.TableSettings.txtTable_Accent": "Aksen", + "DE.Views.TableSettings.txtTable_Bordered": "Bergaris Tepi", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "Bergaris Tepi & Bergaris", "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_Lined": "Bergaris", "DE.Views.TableSettings.txtTable_ListTable": "List Tabel", "DE.Views.TableSettings.txtTable_PlainTable": "Tabel Biasa", "DE.Views.TableSettings.txtTable_TableGrid": "Gird Tabel", @@ -2588,6 +2922,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Gambar", "DE.Views.Toolbar.capBtnInsPagebreak": "Breaks", "DE.Views.Toolbar.capBtnInsShape": "Bentuk", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Simbol", "DE.Views.Toolbar.capBtnInsTable": "Tabel", "DE.Views.Toolbar.capBtnInsTextart": "Text Art", @@ -2619,7 +2954,10 @@ "DE.Views.Toolbar.mniImageFromFile": "Gambar dari File", "DE.Views.Toolbar.mniImageFromStorage": "Gambar dari Penyimpanan", "DE.Views.Toolbar.mniImageFromUrl": "Gambar dari URL", + "DE.Views.Toolbar.mniInsertSSE": "Sisipkan Spreadsheet", "DE.Views.Toolbar.mniLowerCase": "huruf kecil", + "DE.Views.Toolbar.mniRemoveFooter": "Hapus Footer", + "DE.Views.Toolbar.mniRemoveHeader": "Hapus Header", "DE.Views.Toolbar.mniSentenceCase": "Case kalimat.", "DE.Views.Toolbar.mniTextToTable": "Konversi Teks ke Tabel", "DE.Views.Toolbar.mniToggleCase": "tOGGLE cASE", @@ -2714,6 +3052,7 @@ "DE.Views.Toolbar.tipControls": "Sisipkan kontrol konten", "DE.Views.Toolbar.tipCopy": "Salin", "DE.Views.Toolbar.tipCopyStyle": "Salin Model", + "DE.Views.Toolbar.tipCut": "Potong", "DE.Views.Toolbar.tipDateTime": "Sisipkan tanggal dan jam sekarang", "DE.Views.Toolbar.tipDecFont": "Perkecil Ukuran Huruf", "DE.Views.Toolbar.tipDecPrLeft": "Kurangi Indentasi", @@ -2730,13 +3069,16 @@ "DE.Views.Toolbar.tipIncPrLeft": "Tambahkan Indentasi", "DE.Views.Toolbar.tipInsertChart": "Sisipkan Bagan", "DE.Views.Toolbar.tipInsertEquation": "Masukkan Persamaan", + "DE.Views.Toolbar.tipInsertHorizontalText": "Sisipkan kotak teks horizontal", "DE.Views.Toolbar.tipInsertImage": "Sisipkan Gambar", "DE.Views.Toolbar.tipInsertNum": "Sisipkan Nomor Halaman", "DE.Views.Toolbar.tipInsertShape": "Sisipkan Bentuk Otomatis", + "DE.Views.Toolbar.tipInsertSmartArt": "Sisipkan SmartArt", "DE.Views.Toolbar.tipInsertSymbol": "Sisipkan simbol", "DE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel", - "DE.Views.Toolbar.tipInsertText": "Sisipkan Teks", + "DE.Views.Toolbar.tipInsertText": "Sisipkan kotak teks", "DE.Views.Toolbar.tipInsertTextArt": "Sisipkan Text Art", + "DE.Views.Toolbar.tipInsertVerticalText": "Sisipkan kotak teks vertikal", "DE.Views.Toolbar.tipLineNumbers": "Tampilkan nomor garis", "DE.Views.Toolbar.tipLineSpace": "Spasi Antar Baris Paragraf", "DE.Views.Toolbar.tipMailRecepients": "Merge email", @@ -2749,6 +3091,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Butir persegi isi", "DE.Views.Toolbar.tipMarkersHRound": "Butir bundar hollow", "DE.Views.Toolbar.tipMarkersStar": "Butir bintang", + "DE.Views.Toolbar.tipMultiLevelArticl": "Artikel dengan penomoran bertingkat", + "DE.Views.Toolbar.tipMultiLevelChapter": "Bab dengan penomoran bertingkat", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Tajuk dengan penomoran bertingkat", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Tajuk dengan beragam penomoran bertingkat", "DE.Views.Toolbar.tipMultiLevelNumbered": "Butir nomor multi-level", "DE.Views.Toolbar.tipMultilevels": "Ikhtisar", "DE.Views.Toolbar.tipMultiLevelSymbols": "Butir simbol multi-level", @@ -2765,6 +3111,7 @@ "DE.Views.Toolbar.tipRedo": "Ulangi", "DE.Views.Toolbar.tipSave": "Simpan", "DE.Views.Toolbar.tipSaveCoauth": "Simpan perubahan yang Anda buat agar dapat dilihat oleh pengguna lain", + "DE.Views.Toolbar.tipSelectAll": "Pilih semua", "DE.Views.Toolbar.tipSendBackward": "Mundurkan", "DE.Views.Toolbar.tipSendForward": "Majukan", "DE.Views.Toolbar.tipShowHiddenChars": "Karakter Tidak Dicetak", @@ -2803,10 +3150,18 @@ "DE.Views.ViewTab.textFitToPage": "Sesuaikan Halaman", "DE.Views.ViewTab.textFitToWidth": "Sesuaikan Lebar", "DE.Views.ViewTab.textInterfaceTheme": "Tema interface", + "DE.Views.ViewTab.textLeftMenu": "Panel kiri", "DE.Views.ViewTab.textNavigation": "Navigasi", + "DE.Views.ViewTab.textOutline": "Tajuk", + "DE.Views.ViewTab.textRightMenu": "Panel kanan", "DE.Views.ViewTab.textRulers": "Penggaris", "DE.Views.ViewTab.textStatusBar": "Bar Status", "DE.Views.ViewTab.textZoom": "Pembesaran", + "DE.Views.ViewTab.tipDarkDocument": "Dokumen gelap", + "DE.Views.ViewTab.tipFitToPage": "Paskan dengan halaman", + "DE.Views.ViewTab.tipFitToWidth": "Paskan sesuai lebar", + "DE.Views.ViewTab.tipHeadings": "Tajuk", + "DE.Views.ViewTab.tipInterfaceTheme": "Tema antarmuka", "DE.Views.WatermarkSettingsDialog.textAuto": "Otomatis", "DE.Views.WatermarkSettingsDialog.textBold": "Tebal", "DE.Views.WatermarkSettingsDialog.textColor": "Warna teks", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index c7206dbb0..6656ea399 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -125,6 +125,13 @@ "Common.define.chartData.textScatterSmoothMarker": "Grafico a dispersione con linee e indicatori", "Common.define.chartData.textStock": "Azionario", "Common.define.chartData.textSurface": "Superficie", + "Common.define.smartArt.textBalance": "Equilibri", + "Common.define.smartArt.textEquation": "Equazione", + "Common.define.smartArt.textFunnel": "Imbuto", + "Common.define.smartArt.textList": "Elenco", + "Common.define.smartArt.textMatrix": "Matrice", + "Common.define.smartArt.textOther": "Altro", + "Common.define.smartArt.textPicture": "Immagine", "Common.Translation.textMoreButton": "più", "Common.Translation.warnFileLocked": "Non puoi modificare questo file perché è in fase di modifica in un'altra applicazione.", "Common.Translation.warnFileLockedBtnEdit": "Crea copia", @@ -287,14 +294,10 @@ "Common.Views.CopyWarningDialog.textToPaste": "per incollare", "Common.Views.DocumentAccessDialog.textLoading": "Caricamento in corso...", "Common.Views.DocumentAccessDialog.textTitle": "Impostazioni di condivisione", - "Common.Views.ExternalDiagramEditor.textClose": "Chiudi", - "Common.Views.ExternalDiagramEditor.textSave": "Salva ed esci", "Common.Views.ExternalDiagramEditor.textTitle": "Editor di grafici", - "Common.Views.ExternalMergeEditor.textClose": "Chiudi", - "Common.Views.ExternalMergeEditor.textSave": "Salva ed esci", + "Common.Views.ExternalEditor.textClose": "Chiudi", + "Common.Views.ExternalEditor.textSave": "Salva ed esci", "Common.Views.ExternalMergeEditor.textTitle": "Destinatari Stampa unione", - "Common.Views.ExternalOleEditor.textClose": "Chiudere", - "Common.Views.ExternalOleEditor.textSave": "Salvare ed uscire", "Common.Views.ExternalOleEditor.textTitle": "Editor di fogli di calcolo", "Common.Views.Header.labelCoUsersDescr": "Utenti che stanno modificando il file:", "Common.Views.Header.textAddFavorite": "Segna come preferito", @@ -360,6 +363,7 @@ "Common.Views.Plugins.textStart": "Inizia", "Common.Views.Plugins.textStop": "Termina", "Common.Views.Protection.hintAddPwd": "Crittografa con password", + "Common.Views.Protection.hintDelPwd": "Elimina password", "Common.Views.Protection.hintPwd": "Modifica o rimuovi password", "Common.Views.Protection.hintSignature": "Aggiungi firma digitale o riga di firma", "Common.Views.Protection.txtAddPwd": "Aggiungi password", @@ -441,7 +445,7 @@ "Common.Views.ReviewChanges.txtSharing": "Condivisione", "Common.Views.ReviewChanges.txtSpelling": "Controllo ortografico", "Common.Views.ReviewChanges.txtTurnon": "Traccia cambiamenti", - "Common.Views.ReviewChanges.txtView": "Modalità Visualizzazione", + "Common.Views.ReviewChanges.txtView": "Modalità di visualizzazione", "Common.Views.ReviewChangesDialog.textTitle": "Rivedi modifiche", "Common.Views.ReviewChangesDialog.txtAccept": "Accetta", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Accetta tutte le modifiche", @@ -504,7 +508,6 @@ "Common.Views.SignDialog.tipFontName": "Nome carattere", "Common.Views.SignDialog.tipFontSize": "Dimensione carattere", "Common.Views.SignSettingsDialog.textAllowComment": "Consenti al firmatario di aggiungere commenti nella finestra di dialogo della firma", - "Common.Views.SignSettingsDialog.textInfo": "Informazioni sul Firmatario", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Nome", "Common.Views.SignSettingsDialog.textInfoTitle": "Titolo del Firmatario", @@ -598,6 +601,7 @@ "DE.Controllers.Main.errorSetPassword": "Impossibile impostare la password.", "DE.Controllers.Main.errorStockChart": "Righe ordinate in modo errato. Per creare un grafico azionario posizionare i dati sul foglio nel seguente ordine:
prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.", "DE.Controllers.Main.errorSubmit": "Invio fallito.", + "DE.Controllers.Main.errorTextFormWrongFormat": "Il valore inserito non corrisponde al formato del campo.", "DE.Controllers.Main.errorToken": "Il token di sicurezza del documento non è stato creato correttamente.
Si prega di contattare l'amministratore del Server dei Documenti.", "DE.Controllers.Main.errorTokenExpire": "Il token di sicurezza del documento è scaduto.
Si prega di contattare l'amministratore del Server dei Documenti.", "DE.Controllers.Main.errorUpdateVersion": "La versione del file è stata modificata. La pagina verrà ricaricata.", @@ -645,6 +649,7 @@ "DE.Controllers.Main.textClose": "Chiudi", "DE.Controllers.Main.textCloseTip": "Clicca su per chiudere la notifica", "DE.Controllers.Main.textContactUs": "Contatta il team di vendite", + "DE.Controllers.Main.textContinue": "Continua", "DE.Controllers.Main.textConvertEquation": "Questa equazione è stata creata con una vecchia versione dell'editor di equazioni che non è più supportata.Per modificarla, convertire l'equazione nel formato ML di Office Math.
Convertire ora?", "DE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore.
Si prega di contattare il nostro reparto vendite per ottenere un preventivo.", "DE.Controllers.Main.textDisconnect": "Connessione persa", @@ -665,6 +670,7 @@ "DE.Controllers.Main.textStrict": "Modalità Rigorosa", "DE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripristina sono disabilitate per la Modalità di Co-editing Veloce.
Clicca il pulsante 'Modalità Rigorosa' per passare alla Modalità di Co-editing Rigorosa per poter modificare il file senza l'interferenza di altri utenti e inviare le modifiche solamente dopo averle salvate. Puoi passare da una modalità all'altra di co-editing utilizzando le Impostazioni avanzate dell'editor.", "DE.Controllers.Main.textTryUndoRedoWarn": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida in modifica collaborativa.", + "DE.Controllers.Main.textUndo": "Annulla", "DE.Controllers.Main.titleLicenseExp": "La licenza è scaduta", "DE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato", "DE.Controllers.Main.titleUpdateVersion": "Versione Modificata", @@ -1336,12 +1342,17 @@ "DE.Views.CellsAddDialog.textUp": "Sopra il cursore", "DE.Views.ChartSettings.textAdvanced": "Mostra impostazioni avanzate", "DE.Views.ChartSettings.textChartType": "Cambia tipo di grafico", + "DE.Views.ChartSettings.textDown": "Giù", "DE.Views.ChartSettings.textEditData": "Modifica dati", "DE.Views.ChartSettings.textHeight": "Altezza", + "DE.Views.ChartSettings.textLeft": "A sinistra", "DE.Views.ChartSettings.textOriginalSize": "Dimensione reale", + "DE.Views.ChartSettings.textPerspective": "Prospettiva", + "DE.Views.ChartSettings.textRight": "A destra", "DE.Views.ChartSettings.textSize": "Dimensione", "DE.Views.ChartSettings.textStyle": "Stile", "DE.Views.ChartSettings.textUndock": "Disancora dal pannello", + "DE.Views.ChartSettings.textUp": "Verso l'alto", "DE.Views.ChartSettings.textWidth": "Larghezza", "DE.Views.ChartSettings.textWrap": "Stile di disposizione testo", "DE.Views.ChartSettings.txtBehind": "Dietro al testo", @@ -1433,6 +1444,8 @@ "DE.Views.DateTimeDialog.textLang": "Lingua", "DE.Views.DateTimeDialog.textUpdate": "Aggiorna automaticamente", "DE.Views.DateTimeDialog.txtTitle": "Data e ora", + "DE.Views.DocProtection.hintProtectDoc": "Proteggi documento", + "DE.Views.DocProtection.txtProtectDoc": "Proteggi documento", "DE.Views.DocumentHolder.aboveText": "Al di sopra", "DE.Views.DocumentHolder.addCommentText": "Aggiungi commento", "DE.Views.DocumentHolder.advancedDropCapText": "Impostazioni di capolettera", @@ -1758,6 +1771,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiche", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboli", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichette", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo documento", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Parole", @@ -1766,7 +1780,7 @@ "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persone che hanno diritti", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avviso", "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "con Password", - "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteggi Documento", + "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteggi documento", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "con Firma", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Modifica documento", "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "La modifica eliminerà le firme dal documento.
Vuoi continuare?", @@ -1845,8 +1859,10 @@ "DE.Views.FormSettings.textColor": "Colore bordo", "DE.Views.FormSettings.textComb": "Combinazione di caratteri", "DE.Views.FormSettings.textCombobox": "Casella combinata", + "DE.Views.FormSettings.textComplex": "Campo complesso", "DE.Views.FormSettings.textConnected": "Campi collegati", "DE.Views.FormSettings.textDelete": "Elimina", + "DE.Views.FormSettings.textDigits": "Cifre", "DE.Views.FormSettings.textDisconnect": "Disconnetti", "DE.Views.FormSettings.textDropDown": "Menù a discesca", "DE.Views.FormSettings.textExact": "Esattamente", @@ -1865,6 +1881,7 @@ "DE.Views.FormSettings.textMulti": "Campo con molte righe", "DE.Views.FormSettings.textNever": "Mai", "DE.Views.FormSettings.textNoBorder": "Senza bordo", + "DE.Views.FormSettings.textNone": "Nessuno", "DE.Views.FormSettings.textPlaceholder": "Segnaposto", "DE.Views.FormSettings.textRadiobox": "Pulsante opzione", "DE.Views.FormSettings.textRequired": "Richiesto", @@ -1883,11 +1900,13 @@ "DE.Views.FormSettings.textWidth": "‎Larghezza cella‎", "DE.Views.FormsTab.capBtnCheckBox": "Casella di controllo", "DE.Views.FormsTab.capBtnComboBox": "Casella combinata", + "DE.Views.FormsTab.capBtnComplex": "Campo complesso", "DE.Views.FormsTab.capBtnDownloadForm": "Scarica come oform", "DE.Views.FormsTab.capBtnDropDown": "Menù a discesca", "DE.Views.FormsTab.capBtnEmail": "Indirizzo email", "DE.Views.FormsTab.capBtnImage": "Immagine", "DE.Views.FormsTab.capBtnNext": "Campo successivo", + "DE.Views.FormsTab.capBtnPhone": "Numero di telefono", "DE.Views.FormsTab.capBtnPrev": "Campo precedente", "DE.Views.FormsTab.capBtnRadioBox": "Pulsante opzione", "DE.Views.FormsTab.capBtnSaveForm": "Salvare come oform", @@ -1904,10 +1923,13 @@ "DE.Views.FormsTab.textSubmited": "Modulo inviato con successo", "DE.Views.FormsTab.tipCheckBox": "Inserisci casella di controllo", "DE.Views.FormsTab.tipComboBox": "Inserisci una cella combinata", + "DE.Views.FormsTab.tipComplexField": "Inserisci campo complesso", "DE.Views.FormsTab.tipDownloadForm": "Scaricare un file come un documento OFORM compilabile", "DE.Views.FormsTab.tipDropDown": "Inserisci lista in basso espandibile", + "DE.Views.FormsTab.tipEmailField": " Inserisci indirizzo email", "DE.Views.FormsTab.tipImageField": "Inserisci immagine", "DE.Views.FormsTab.tipNextForm": "Vai al campo successivo", + "DE.Views.FormsTab.tipPhoneField": "Inserisci numero di telefono", "DE.Views.FormsTab.tipPrevForm": "Vai al campo precedente", "DE.Views.FormsTab.tipRadioBox": "Inserisci pulsante di opzione", "DE.Views.FormsTab.tipSaveForm": "Salvare un file come documento OFORM compilabile", @@ -2060,6 +2082,7 @@ "DE.Views.LeftMenu.tipComments": "Commenti", "DE.Views.LeftMenu.tipNavigation": "Navigazione", "DE.Views.LeftMenu.tipOutline": "Intestazioni", + "DE.Views.LeftMenu.tipPageThumbnails": "Miniature delle pagine", "DE.Views.LeftMenu.tipPlugins": "Plugin", "DE.Views.LeftMenu.tipSearch": "Ricerca", "DE.Views.LeftMenu.tipSupport": "Feedback & Supporto", @@ -2367,6 +2390,14 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Imposta solo bordo superiore", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nessun bordo", + "DE.Views.ProtectDialog.textComments": "Commenti", + "DE.Views.ProtectDialog.txtIncorrectPwd": "La password di conferma non corrisponde", + "DE.Views.ProtectDialog.txtOptional": "opzionale", + "DE.Views.ProtectDialog.txtPassword": "Password", + "DE.Views.ProtectDialog.txtProtect": "Proteggere", + "DE.Views.ProtectDialog.txtRepeat": "Ripeti la password", + "DE.Views.ProtectDialog.txtTitle": "Proteggere", + "DE.Views.ProtectDialog.txtWarning": "Importante: una volta persa o dimenticata, la password non potrà più essere recuperata. Conservalo in un luogo sicuro.", "DE.Views.RightMenu.txtChartSettings": "Impostazioni grafico", "DE.Views.RightMenu.txtFormSettings": "‎Impostazioni modulo‎", "DE.Views.RightMenu.txtHeaderFooterSettings": "Impostazioni intestazione e piè di pagina", @@ -2557,6 +2588,7 @@ "DE.Views.TableSettings.tipOuter": "Imposta solo bordi esterni", "DE.Views.TableSettings.tipRight": "Imposta solo bordo esterno destro", "DE.Views.TableSettings.tipTop": "Imposta solo bordo esterno superiore", + "DE.Views.TableSettings.txtGroupTable_Custom": "Personalizzato", "DE.Views.TableSettings.txtNoBorders": "Nessun bordo", "DE.Views.TableSettings.txtTable_Accent": "Accento", "DE.Views.TableSettings.txtTable_Colorful": "Colorato", @@ -2685,7 +2717,7 @@ "DE.Views.TextToTableDialog.textWindow": "Autofit alla finestra", "DE.Views.TextToTableDialog.txtAutoText": "Automatico", "DE.Views.Toolbar.capBtnAddComment": "Aggiungi commento", - "DE.Views.Toolbar.capBtnBlankPage": "Pagina Vuota", + "DE.Views.Toolbar.capBtnBlankPage": "Pagina vuota", "DE.Views.Toolbar.capBtnColumns": "Colonne", "DE.Views.Toolbar.capBtnComment": "Commento", "DE.Views.Toolbar.capBtnDateTime": "Data e ora", @@ -2697,6 +2729,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Immagine", "DE.Views.Toolbar.capBtnInsPagebreak": "Interruzione di pagina", "DE.Views.Toolbar.capBtnInsShape": "Forma", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Simbolo", "DE.Views.Toolbar.capBtnInsTable": "Tabella", "DE.Views.Toolbar.capBtnInsTextart": "Text Art", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 48701aab3..963fa40a4 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -125,6 +125,165 @@ "Common.define.chartData.textScatterSmoothMarker": "マーカーと平滑線付き散布図", "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", + "Common.define.smartArt.textAccentedPicture": "アクセント付きの図", + "Common.define.smartArt.textAccentProcess": "アクセント・プロセス", + "Common.define.smartArt.textAlternatingFlow": "波型ステップ", + "Common.define.smartArt.textAlternatingHexagons": "左右交替積み上げ六角形", + "Common.define.smartArt.textAlternatingPictureBlocks": "左右交替積み上げ画像ブロック", + "Common.define.smartArt.textAlternatingPictureCircles": "円形付き画像ジグザグ表示", + "Common.define.smartArt.textArchitectureLayout": "アーキテクチャ レイアウト", + "Common.define.smartArt.textArrowRibbon": "リボン状の矢印", + "Common.define.smartArt.textAscendingPictureAccentProcess": "アクセント画像付き上昇ステップ", + "Common.define.smartArt.textBalance": "バランス", + "Common.define.smartArt.textBasicBendingProcess": "基本蛇行ステップ", + "Common.define.smartArt.textBasicBlockList": "カード型リスト", + "Common.define.smartArt.textBasicChevronProcess": "プロセス", + "Common.define.smartArt.textBasicCycle": "基本の循環", + "Common.define.smartArt.textBasicMatrix": "基本マトリックス", + "Common.define.smartArt.textBasicPie": "円グラフ", + "Common.define.smartArt.textBasicProcess": "基本ステップ", + "Common.define.smartArt.textBasicPyramid": "基本ピラミッド", + "Common.define.smartArt.textBasicRadial": "基本放射", + "Common.define.smartArt.textBasicTarget": "ターゲット", + "Common.define.smartArt.textBasicTimeline": "タイムライン", + "Common.define.smartArt.textBasicVenn": "基本ベン図", + "Common.define.smartArt.textBendingPictureAccentList": "画像付きカード型リスト", + "Common.define.smartArt.textBendingPictureBlocks": "自動配置の画像ブロック", + "Common.define.smartArt.textBendingPictureCaption": "自動配置の表題付き画像", + "Common.define.smartArt.textBendingPictureCaptionList": "自動配置の表題付き画像レイアウト", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "自動配置の半透明テキスト付き画像", + "Common.define.smartArt.textBlockCycle": "ボックス循環", + "Common.define.smartArt.textBubblePictureList": "バブル状画像リスト", + "Common.define.smartArt.textCaptionedPictures": "表題付き画像", + "Common.define.smartArt.textChevronAccentProcess": "アクセントステップ", + "Common.define.smartArt.textChevronList": "プロセス リスト", + "Common.define.smartArt.textCircleAccentTimeline": "円形組み合わせタイムライン", + "Common.define.smartArt.textCircleArrowProcess": "円形矢印プロセス", + "Common.define.smartArt.textCirclePictureHierarchy": "円形画像を使用した階層", + "Common.define.smartArt.textCircleProcess": "円形プロセス", + "Common.define.smartArt.textCircleRelationship": "円の関連付け", + "Common.define.smartArt.textCircularBendingProcess": "円形蛇行ステップ", + "Common.define.smartArt.textCircularPictureCallout": "円形画像を使った吹き出し", + "Common.define.smartArt.textClosedChevronProcess": "開始点強調型プロセス", + "Common.define.smartArt.textContinuousArrowProcess": "大きな矢印のプロセス", + "Common.define.smartArt.textContinuousBlockProcess": "矢印と長方形のプロセス", + "Common.define.smartArt.textContinuousCycle": "連続性強調循環", + "Common.define.smartArt.textContinuousPictureList": "矢印付き画像リスト", + "Common.define.smartArt.textConvergingArrows": "内向き矢印", + "Common.define.smartArt.textConvergingRadial": "集中", + "Common.define.smartArt.textConvergingText": "内向きテキスト", + "Common.define.smartArt.textCounterbalanceArrows": "対立とバランスの矢印", + "Common.define.smartArt.textCycle": "循環", + "Common.define.smartArt.textCycleMatrix": "循環マトリックス", + "Common.define.smartArt.textDescendingBlockList": "ブロックの降順リスト", + "Common.define.smartArt.textDescendingProcess": "降順プロセス", + "Common.define.smartArt.textDetailedProcess": "詳述プロセス", + "Common.define.smartArt.textDivergingArrows": "左右逆方向矢印", + "Common.define.smartArt.textDivergingRadial": "矢印付き放射", + "Common.define.smartArt.textEquation": "数式", + "Common.define.smartArt.textFramedTextPicture": "フレームに表示されるテキスト画像", + "Common.define.smartArt.textFunnel": "漏斗", + "Common.define.smartArt.textGear": "歯車", + "Common.define.smartArt.textGridMatrix": "グリッド マトリックス", + "Common.define.smartArt.textGroupedList": "グループ リスト", + "Common.define.smartArt.textHalfCircleOrganizationChart": "アーチ型線で飾られた組織図", + "Common.define.smartArt.textHexagonCluster": "蜂の巣状の六角形", + "Common.define.smartArt.textHexagonRadial": "六角形放射", + "Common.define.smartArt.textHierarchy": "階層", + "Common.define.smartArt.textHierarchyList": "階層リスト", + "Common.define.smartArt.textHorizontalBulletList": "横方向箇条書きリスト", + "Common.define.smartArt.textHorizontalHierarchy": "横方向階層", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "ラベル付き横方向階層", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "複数レベル対応の横方向階層", + "Common.define.smartArt.textHorizontalOrganizationChart": "水平方向の組織図", + "Common.define.smartArt.textHorizontalPictureList": "横方向画像リスト", + "Common.define.smartArt.textIncreasingArrowProcess": "上昇矢印のプロセス", + "Common.define.smartArt.textIncreasingCircleProcess": "上昇円プロセス", + "Common.define.smartArt.textInterconnectedBlockProcess": "相互接続された長方形のプロセス", + "Common.define.smartArt.textInterconnectedRings": "互いにつながったリング", + "Common.define.smartArt.textInvertedPyramid": "反転ピラミッド", + "Common.define.smartArt.textLabeledHierarchy": "ラベル付き階層", + "Common.define.smartArt.textLinearVenn": "横方向ベン図", + "Common.define.smartArt.textLinedList": "線区切りリスト", + "Common.define.smartArt.textList": "リスト", + "Common.define.smartArt.textMatrix": "マトリックス", + "Common.define.smartArt.textMultidirectionalCycle": "双方向循環", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "氏名/役職名付き組織図", + "Common.define.smartArt.textNestedTarget": "包含", + "Common.define.smartArt.textNondirectionalCycle": "矢印無し循環", + "Common.define.smartArt.textOpposingArrows": "上下逆方向矢印", + "Common.define.smartArt.textOpposingIdeas": "対立する案", + "Common.define.smartArt.textOrganizationChart": "組織図", + "Common.define.smartArt.textOther": "その他", + "Common.define.smartArt.textPhasedProcess": "フェーズ プロセス", + "Common.define.smartArt.textPicture": "画像", + "Common.define.smartArt.textPictureAccentBlocks": "画像アクセントのブロック", + "Common.define.smartArt.textPictureAccentList": "画像アクセントのリスト", + "Common.define.smartArt.textPictureAccentProcess": "画像アクセントのプロセス", + "Common.define.smartArt.textPictureCaptionList": "画像キャプションのリスト", + "Common.define.smartArt.textPictureFrame": "フォトフレーム", + "Common.define.smartArt.textPictureGrid": "画像グリッド", + "Common.define.smartArt.textPictureLineup": "画像ラインアップ", + "Common.define.smartArt.textPictureOrganizationChart": "画像付き組織図", + "Common.define.smartArt.textPictureStrips": "画像付きラベル", + "Common.define.smartArt.textPieProcess": "円グラフのプロセス", + "Common.define.smartArt.textPlusAndMinus": "プラスとマイナス", + "Common.define.smartArt.textProcess": "プロセス", + "Common.define.smartArt.textProcessArrows": "矢印型ステップ", + "Common.define.smartArt.textProcessList": "プロセスのリスト", + "Common.define.smartArt.textPyramid": "ピラミッド", + "Common.define.smartArt.textPyramidList": "ピラミッドのリスト", + "Common.define.smartArt.textRadialCluster": "放射ブロック", + "Common.define.smartArt.textRadialCycle": "中心付き循環", + "Common.define.smartArt.textRadialList": "放射リスト", + "Common.define.smartArt.textRadialPictureList": "放射画像リスト", + "Common.define.smartArt.textRadialVenn": "放射型ベン図", + "Common.define.smartArt.textRandomToResultProcess": "複数案をまとめるステップ", + "Common.define.smartArt.textRelationship": "関係", + "Common.define.smartArt.textRepeatingBendingProcess": "改行型蛇行ステップ", + "Common.define.smartArt.textReverseList": "逆順リスト", + "Common.define.smartArt.textSegmentedCycle": "円型循環", + "Common.define.smartArt.textSegmentedProcess": "分割ステップ", + "Common.define.smartArt.textSegmentedPyramid": "分割ピラミッド", + "Common.define.smartArt.textSnapshotPictureList": "スナップショット画像リスト", + "Common.define.smartArt.textSpiralPicture": "渦巻き画像", + "Common.define.smartArt.textSquareAccentList": "箇条書き記号アクセントのリスト", + "Common.define.smartArt.textStackedList": "積み上げリスト", + "Common.define.smartArt.textStackedVenn": "包含型ベン図", + "Common.define.smartArt.textStaggeredProcess": "段違いステップ", + "Common.define.smartArt.textStepDownProcess": "ステップ ダウンのプロセス", + "Common.define.smartArt.textStepUpProcess": "ステップアップのプロセス", + "Common.define.smartArt.textSubStepProcess": "サブステップのプロセス", + "Common.define.smartArt.textTabbedArc": "円弧状タブ", + "Common.define.smartArt.textTableHierarchy": "積み木型の階層", + "Common.define.smartArt.textTableList": "表型リスト", + "Common.define.smartArt.textTabList": "タブ付きリスト", + "Common.define.smartArt.textTargetList": "ターゲットのリスト", + "Common.define.smartArt.textTextCycle": "テキスト循環", + "Common.define.smartArt.textThemePictureAccent": "テーマ画像アクセント", + "Common.define.smartArt.textThemePictureAlternatingAccent": "テーマ画像交互のアクセント", + "Common.define.smartArt.textThemePictureGrid": "テーマ画像グリッド", + "Common.define.smartArt.textTitledMatrix": "タイトル付きマトリックス", + "Common.define.smartArt.textTitledPictureAccentList": "画像付き横方向リスト", + "Common.define.smartArt.textTitledPictureBlocks": "タイトル付き画像ブロック", + "Common.define.smartArt.textTitlePictureLineup": "タイトル付き画像ラインアップ", + "Common.define.smartArt.textTrapezoidList": "台形リスト", + "Common.define.smartArt.textUpwardArrow": "上向き矢印", + "Common.define.smartArt.textVaryingWidthList": "可変幅リスト", + "Common.define.smartArt.textVerticalAccentList": "縦方向アクセントのリスト", + "Common.define.smartArt.textVerticalArrowList": "縦方向矢印リスト", + "Common.define.smartArt.textVerticalBendingProcess": "縦型蛇行ステップ", + "Common.define.smartArt.textVerticalBlockList": "縦方向ボックス リスト", + "Common.define.smartArt.textVerticalBoxList": "縦方向リスト", + "Common.define.smartArt.textVerticalBracketList": "縦方向ブラケット リスト", + "Common.define.smartArt.textVerticalBulletList": "縦方向箇条書きリスト", + "Common.define.smartArt.textVerticalChevronList": "縦方向プロセス", + "Common.define.smartArt.textVerticalCircleList": "縦方向円リスト", + "Common.define.smartArt.textVerticalCurvedList": "縦方向カーブのリスト", + "Common.define.smartArt.textVerticalEquation": "縦型の数式", + "Common.define.smartArt.textVerticalPictureAccentList": "縦方向円形画像リスト", + "Common.define.smartArt.textVerticalPictureList": "縦方向画像リスト", + "Common.define.smartArt.textVerticalProcess": "縦方向ステップ", "Common.Translation.textMoreButton": "もっと", "Common.Translation.warnFileLocked": "このファイルは他のアプリで編集されているので、編集できません。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成する", @@ -287,14 +446,10 @@ "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.ExternalEditor.textClose": "閉じる", + "Common.Views.ExternalEditor.textSave": "保存&終了", "Common.Views.ExternalMergeEditor.textTitle": "差し込み印刷の宛先", - "Common.Views.ExternalOleEditor.textClose": "閉じる", - "Common.Views.ExternalOleEditor.textSave": "保存&終了", "Common.Views.ExternalOleEditor.textTitle": "スプレッドシートエディター", "Common.Views.Header.labelCoUsersDescr": "ファイルを編集しているユーザー:", "Common.Views.Header.textAddFavorite": "お気に入りとしてマークする", @@ -360,6 +515,7 @@ "Common.Views.Plugins.textStart": "開始", "Common.Views.Plugins.textStop": "停止", "Common.Views.Protection.hintAddPwd": "パスワードを使用して暗号化する", + "Common.Views.Protection.hintDelPwd": "パスワードを削除する", "Common.Views.Protection.hintPwd": "パスワードを変更か削除する", "Common.Views.Protection.hintSignature": "デジタル署名かデジタル署名行を追加", "Common.Views.Protection.txtAddPwd": "パスワードの追加", @@ -505,10 +661,10 @@ "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.textDefInstruction": "このドキュメントに署名する前に、署名するコンテンツが正しいことを確認してください。", + "Common.Views.SignSettingsDialog.textInfoEmail": "署名候補者のメールアドレス", + "Common.Views.SignSettingsDialog.textInfoName": "署名候補者", + "Common.Views.SignSettingsDialog.textInfoTitle": "署名候補者の役職", "Common.Views.SignSettingsDialog.textInstructions": "署名者への説明", "Common.Views.SignSettingsDialog.textShowDate": "署名欄に署名日を表示する", "Common.Views.SignSettingsDialog.textTitle": "署名の設定", @@ -559,6 +715,7 @@ "DE.Controllers.LeftMenu.warnReplaceString": "{0} は、置換フィールドに有効な特殊文字ではありません。", "DE.Controllers.Main.applyChangesTextText": "変更の読み込み中...", "DE.Controllers.Main.applyChangesTitleText": "変更の読み込み中", + "DE.Controllers.Main.confirmMaxChangesSize": "アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。", "DE.Controllers.Main.convertationTimeoutText": "変換タイムアウトを超過しました。", "DE.Controllers.Main.criticalErrorExtText": "OKボタンを押すとドキュメントリストに戻ることができます。", "DE.Controllers.Main.criticalErrorTitle": "エラー", @@ -591,6 +748,7 @@ "DE.Controllers.Main.errorMailMergeLoadFile": "ドキュメントの読み込みに失敗しました。別のファイルを選択してください。", "DE.Controllers.Main.errorMailMergeSaveFile": "結合に失敗しました。", "DE.Controllers.Main.errorNoTOC": "更新する目次がありません。「参考文献」タブから挿入できます", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "入力されたパスワードが正しくありません。
CAPS LOCKキーがオフになっていることを確認し、大文字を正しく使用するようにしてください。", "DE.Controllers.Main.errorProcessSaveResult": "保存に失敗しました", "DE.Controllers.Main.errorServerVersion": "エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。", "DE.Controllers.Main.errorSessionAbsolute": "ドキュメント編集セッションが終了しました。 ページを再度読み込みしてください。", @@ -631,7 +789,7 @@ "DE.Controllers.Main.requestEditFailedMessageText": "この文書は他のユーザによって編集されています。後でもう一度お試しください。", "DE.Controllers.Main.requestEditFailedTitleText": "アクセスが拒否されました", "DE.Controllers.Main.saveErrorText": "ファイルを保存中にエラーが発生しました。", - "DE.Controllers.Main.saveErrorTextDesktop": "このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. ファイルが読み取り専用です。
2. ファイルが他のユーザーによって編集されています。
3. ディスクに空きスペースがないか破損しています。", + "DE.Controllers.Main.saveErrorTextDesktop": "このファイルは作成または保存できません。
考えられる理由は次のとおりです:
1. 閲覧のみのファイルです。
2. ファイルが他のユーザーによって編集されています。
3. ディスクが満杯か破損しています。", "DE.Controllers.Main.saveTextText": "ドキュメントを保存しています...", "DE.Controllers.Main.saveTitleText": "ドキュメントの保存中", "DE.Controllers.Main.scriptLoadError": "インターネット接続が遅いため、一部のコンポーネントをロードできませんでした。ページを再読み込みしてください。", @@ -647,6 +805,7 @@ "DE.Controllers.Main.textClose": "閉じる", "DE.Controllers.Main.textCloseTip": "クリックでヒントを閉じる", "DE.Controllers.Main.textContactUs": "営業部に連絡する", + "DE.Controllers.Main.textContinue": "続ける", "DE.Controllers.Main.textConvertEquation": "この数式は、サポートされなくなった古いバージョンの数式エディタで作成されました。 編集するには、方程式をOffice Math ML形式に変換します。
今すぐ変換しますか?", "DE.Controllers.Main.textCustomLoader": "ライセンス条項により、ローダーを変更する権利がないことにご注意ください。
見積もりについては、弊社営業部門にお問い合わせください。", "DE.Controllers.Main.textDisconnect": "接続が切断されました", @@ -667,6 +826,7 @@ "DE.Controllers.Main.textStrict": "厳格モード", "DE.Controllers.Main.textTryUndoRedo": "高速共同編集モードでは、元に戻す/やり直し機能は無効になります。
「厳格モード」ボタンをクリックすると、他のユーザーの干渉を受けずにファイルを編集し、保存後に変更内容を送信する厳格共同編集モードに切り替わります。共同編集モードの切り替えは、エディタの詳細設定を使用して行うことができます。", "DE.Controllers.Main.textTryUndoRedoWarn": "高速共同編集モードでは、元に戻す/やり直し機能が無効になります。", + "DE.Controllers.Main.textUndo": "元に戻す", "DE.Controllers.Main.titleLicenseExp": "ライセンスの有効期限が切れています", "DE.Controllers.Main.titleServerVersion": "編集者が更新されました", "DE.Controllers.Main.titleUpdateVersion": "バージョンが変更されました", @@ -1336,16 +1496,31 @@ "DE.Views.CellsAddDialog.textRow": "行", "DE.Views.CellsAddDialog.textTitle": "複数を挿入する", "DE.Views.CellsAddDialog.textUp": "カーソルより上", + "DE.Views.ChartSettings.text3dDepth": "深さ(ベースに対する割合)", + "DE.Views.ChartSettings.text3dHeight": "高さ(ベースに対する割合)", + "DE.Views.ChartSettings.text3dRotation": "3D回転", "DE.Views.ChartSettings.textAdvanced": "詳細設定を表示", + "DE.Views.ChartSettings.textAutoscale": "自動スケーリング", "DE.Views.ChartSettings.textChartType": "グラフの種類の変更", + "DE.Views.ChartSettings.textDefault": "デフォルト回転", + "DE.Views.ChartSettings.textDown": "下", "DE.Views.ChartSettings.textEditData": "データの編集", "DE.Views.ChartSettings.textHeight": "高さ", + "DE.Views.ChartSettings.textLeft": "左", + "DE.Views.ChartSettings.textNarrow": "狭角", "DE.Views.ChartSettings.textOriginalSize": "実際のサイズ", + "DE.Views.ChartSettings.textPerspective": "分析観点", + "DE.Views.ChartSettings.textRight": "右", + "DE.Views.ChartSettings.textRightAngle": "軸の直交", "DE.Views.ChartSettings.textSize": "サイズ", "DE.Views.ChartSettings.textStyle": "スタイル", "DE.Views.ChartSettings.textUndock": "パネルからドッキング解除", + "DE.Views.ChartSettings.textUp": "上", + "DE.Views.ChartSettings.textWiden": "広角", "DE.Views.ChartSettings.textWidth": "幅", "DE.Views.ChartSettings.textWrap": "折り返しの種類と配置", + "DE.Views.ChartSettings.textX": "X 回転", + "DE.Views.ChartSettings.textY": "Y 回転", "DE.Views.ChartSettings.txtBehind": "テキストの背後に", "DE.Views.ChartSettings.txtInFront": "テキストの前に", "DE.Views.ChartSettings.txtInline": "テキストに沿って", @@ -1435,14 +1610,24 @@ "DE.Views.DateTimeDialog.textLang": "言語", "DE.Views.DateTimeDialog.textUpdate": "自動的に更新", "DE.Views.DateTimeDialog.txtTitle": "日付&時刻", + "DE.Views.DocProtection.hintProtectDoc": "文書を保護する", + "DE.Views.DocProtection.txtDocProtectedComment": "文書は保護されています。
この文書には、コメントしか挿入できません。", + "DE.Views.DocProtection.txtDocProtectedForms": "文書は保護されています。
この文書では、フォームにのみ記入することができます。", + "DE.Views.DocProtection.txtDocProtectedTrack": "文書は保護されています。
この文書を編集することは可能ですが、すべての変更は追跡されます。", + "DE.Views.DocProtection.txtDocProtectedView": "ドキュメントが保護されています。
このドキュメントは閲覧のみ可能です。", + "DE.Views.DocProtection.txtDocUnlockDescription": "パスワードを入力すると、文書の保護が解除されます", + "DE.Views.DocProtection.txtProtectDoc": "文書を保護する", "DE.Views.DocumentHolder.aboveText": "上", "DE.Views.DocumentHolder.addCommentText": "コメントの追加", "DE.Views.DocumentHolder.advancedDropCapText": "ドロップキャップの設定", + "DE.Views.DocumentHolder.advancedEquationText": "数式設定", "DE.Views.DocumentHolder.advancedFrameText": "フレームの詳細設定", "DE.Views.DocumentHolder.advancedParagraphText": "段落の詳細設定", "DE.Views.DocumentHolder.advancedTableText": "テーブルの詳細設定", "DE.Views.DocumentHolder.advancedText": "詳細設定", "DE.Views.DocumentHolder.alignmentText": "配置", + "DE.Views.DocumentHolder.allLinearText": "すべて - 線形", + "DE.Views.DocumentHolder.allProfText": "すべて - プロフェッショナル", "DE.Views.DocumentHolder.belowText": "下", "DE.Views.DocumentHolder.breakBeforeText": "前に改ページ", "DE.Views.DocumentHolder.bulletsText": "箇条書きと段落番号", @@ -1451,6 +1636,8 @@ "DE.Views.DocumentHolder.centerText": "中央揃え", "DE.Views.DocumentHolder.chartText": "チャートの詳細設定", "DE.Views.DocumentHolder.columnText": "列", + "DE.Views.DocumentHolder.currLinearText": "現在 - 線形", + "DE.Views.DocumentHolder.currProfText": "現在 - プロフェッショナル", "DE.Views.DocumentHolder.deleteColumnText": "列の削除", "DE.Views.DocumentHolder.deleteRowText": "行の削除", "DE.Views.DocumentHolder.deleteTableText": "表の削除", @@ -1463,6 +1650,7 @@ "DE.Views.DocumentHolder.editFooterText": "フッターの編集", "DE.Views.DocumentHolder.editHeaderText": "ヘッダーの編集", "DE.Views.DocumentHolder.editHyperlinkText": "ハイパーリンクの編集", + "DE.Views.DocumentHolder.eqToInlineText": "内臓に切り替える", "DE.Views.DocumentHolder.guestText": "ゲスト", "DE.Views.DocumentHolder.hyperlinkText": "ハイパーリンク", "DE.Views.DocumentHolder.ignoreAllSpellText": "全てを無視する", @@ -1477,6 +1665,7 @@ "DE.Views.DocumentHolder.insertText": "挿入", "DE.Views.DocumentHolder.keepLinesText": "段落を分割しない", "DE.Views.DocumentHolder.langText": "言語の選択", + "DE.Views.DocumentHolder.latexText": "LaTeX", "DE.Views.DocumentHolder.leftText": "左", "DE.Views.DocumentHolder.loadSpellText": "バリエーションの読み込み中...", "DE.Views.DocumentHolder.mergeCellsText": "セルの結合", @@ -1664,6 +1853,7 @@ "DE.Views.DocumentHolder.txtUnderbar": "テキストの下のバー", "DE.Views.DocumentHolder.txtUngroup": "グループ化解除", "DE.Views.DocumentHolder.txtWarnUrl": "このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。
本当に続けてよろしいですか?", + "DE.Views.DocumentHolder.unicodeText": "Unicode", "DE.Views.DocumentHolder.updateStyleText": "%1スタイルの更新", "DE.Views.DocumentHolder.vertAlignText": "垂直方向の配置", "DE.Views.DropcapSettingsAdvanced.strBorders": "罫線と塗りつぶし", @@ -1760,6 +1950,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "統計", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "件名", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "記号", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "タグ", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "タイトル", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "アップロード済み", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "単語", @@ -2073,6 +2264,7 @@ "DE.Views.LeftMenu.tipComments": "コメント", "DE.Views.LeftMenu.tipNavigation": "ナビゲーション", "DE.Views.LeftMenu.tipOutline": "見出し", + "DE.Views.LeftMenu.tipPageThumbnails": "ページサムネイル", "DE.Views.LeftMenu.tipPlugins": "プラグイン", "DE.Views.LeftMenu.tipSearch": "検索", "DE.Views.LeftMenu.tipSupport": "フィードバック&サポート", @@ -2380,6 +2572,18 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "上罫線だけを設定", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "罫線なし", + "DE.Views.ProtectDialog.textComments": "コメント", + "DE.Views.ProtectDialog.textForms": "フォームの入力", + "DE.Views.ProtectDialog.textReview": "変更履歴", + "DE.Views.ProtectDialog.textView": "変更不可 (閲覧のみ)", + "DE.Views.ProtectDialog.txtAllow": "ユーザーに許可する編集の種類を指定する", + "DE.Views.ProtectDialog.txtIncorrectPwd": "先に入力したパスワードと一致しません。", + "DE.Views.ProtectDialog.txtOptional": "任意", + "DE.Views.ProtectDialog.txtPassword": "パスワード", + "DE.Views.ProtectDialog.txtProtect": "保護する", + "DE.Views.ProtectDialog.txtRepeat": "パスワードを再入力", + "DE.Views.ProtectDialog.txtTitle": "保護する", + "DE.Views.ProtectDialog.txtWarning": "ご注意:パスワードを紛失したり、忘れたりした場合は、復旧できません。安全な場所に保管してください。", "DE.Views.RightMenu.txtChartSettings": "チャート設定", "DE.Views.RightMenu.txtFormSettings": "フォーム設定", "DE.Views.RightMenu.txtHeaderFooterSettings": "ヘッダーとフッターの設定", @@ -2570,12 +2774,20 @@ "DE.Views.TableSettings.tipOuter": "外枠の罫線だけを設定", "DE.Views.TableSettings.tipRight": "外部の罫線(右)だけを設定", "DE.Views.TableSettings.tipTop": "外部の罫線(上)だけを設定", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "境界&線付き表", + "DE.Views.TableSettings.txtGroupTable_Custom": "カスタム", + "DE.Views.TableSettings.txtGroupTable_Grid": "グリッド テーブル", + "DE.Views.TableSettings.txtGroupTable_List": "リストの表", + "DE.Views.TableSettings.txtGroupTable_Plain": "標準の表", "DE.Views.TableSettings.txtNoBorders": "罫線なし", "DE.Views.TableSettings.txtTable_Accent": "アクセント", + "DE.Views.TableSettings.txtTable_Bordered": "境界付き", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "境界&線付き", "DE.Views.TableSettings.txtTable_Colorful": "カラフル", "DE.Views.TableSettings.txtTable_Dark": "暗い", "DE.Views.TableSettings.txtTable_GridTable": "グリッドテーブル", "DE.Views.TableSettings.txtTable_Light": "明るい", + "DE.Views.TableSettings.txtTable_Lined": "線付き", "DE.Views.TableSettings.txtTable_ListTable": "リスト表", "DE.Views.TableSettings.txtTable_PlainTable": "通常のテーブル", "DE.Views.TableSettings.txtTable_TableGrid": "テーブルの枠線", @@ -2710,6 +2922,7 @@ "DE.Views.Toolbar.capBtnInsImage": "画像", "DE.Views.Toolbar.capBtnInsPagebreak": "区切り", "DE.Views.Toolbar.capBtnInsShape": "図形", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "記号", "DE.Views.Toolbar.capBtnInsTable": "テーブル", "DE.Views.Toolbar.capBtnInsTextart": "テキストアート", @@ -2856,13 +3069,16 @@ "DE.Views.Toolbar.tipIncPrLeft": "インデントを増やす", "DE.Views.Toolbar.tipInsertChart": "グラフの挿入", "DE.Views.Toolbar.tipInsertEquation": "数式の挿入", + "DE.Views.Toolbar.tipInsertHorizontalText": "横書きテキストボックスの挿入", "DE.Views.Toolbar.tipInsertImage": "画像の挿入", "DE.Views.Toolbar.tipInsertNum": "ページ番号の挿入", "DE.Views.Toolbar.tipInsertShape": "オートシェイプの挿入", + "DE.Views.Toolbar.tipInsertSmartArt": "SmartArtの挿入", "DE.Views.Toolbar.tipInsertSymbol": "記号の挿入", "DE.Views.Toolbar.tipInsertTable": "表の挿入", "DE.Views.Toolbar.tipInsertText": "テキストボックスの挿入", "DE.Views.Toolbar.tipInsertTextArt": "テキストアートの挿入", + "DE.Views.Toolbar.tipInsertVerticalText": "縦書きテキストボックスの挿入", "DE.Views.Toolbar.tipLineNumbers": "行番号を表示する", "DE.Views.Toolbar.tipLineSpace": "段落の行間", "DE.Views.Toolbar.tipMailRecepients": "差し込み印刷", @@ -2875,6 +3091,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "箇条書き(四角)", "DE.Views.Toolbar.tipMarkersHRound": "箇条書き(円)", "DE.Views.Toolbar.tipMarkersStar": "箇条書き(星)", + "DE.Views.Toolbar.tipMultiLevelArticl": "複数レベルの番号付き記事", + "DE.Views.Toolbar.tipMultiLevelChapter": "複数レベルの番号付き文章", + "DE.Views.Toolbar.tipMultiLevelHeadings": "複数レベルの番号付き見出し", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "複数レベルの番号付き各種見出し", "DE.Views.Toolbar.tipMultiLevelNumbered": "段落番号付き箇条書き", "DE.Views.Toolbar.tipMultilevels": "複数レベルのリスト", "DE.Views.Toolbar.tipMultiLevelSymbols": "記号付き箇条書き", diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json index e12bfd490..adb40bf00 100644 --- a/apps/documenteditor/main/locale/ko.json +++ b/apps/documenteditor/main/locale/ko.json @@ -271,11 +271,7 @@ "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": "즐겨찾기에 추가", @@ -464,7 +460,6 @@ "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": "서명자 타이틀", diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json index b751ea5a1..6954d9aab 100644 --- a/apps/documenteditor/main/locale/lo.json +++ b/apps/documenteditor/main/locale/lo.json @@ -271,11 +271,7 @@ "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": "ຫມາຍດາວເອກະສານ", @@ -464,7 +460,6 @@ "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": "ຊື່ຜູ້ລົງທະບຽນ", diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index af7f82487..c3974d4ce 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -130,11 +130,7 @@ "Common.Views.CopyWarningDialog.textToPaste": "ielīmēt", "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.ExternalMergeEditor.textClose": "Close", - "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", "Common.Views.Header.labelCoUsersDescr": "Šobrīd dokumentu rediģē vairāki lietotāji.", "Common.Views.Header.textAdvSettings": "Papildu iestatījumi", @@ -267,7 +263,6 @@ "Common.Views.SignDialog.tipFontName": "Fonts", "Common.Views.SignDialog.tipFontSize": "Fonta izmērs", "Common.Views.SignSettingsDialog.textAllowComment": "Atļaut parakstītājam pievienot komentāru paraksta logā", - "Common.Views.SignSettingsDialog.textInfo": "Informācija par parakstītāju", "Common.Views.SignSettingsDialog.textInfoEmail": "E-pasts", "Common.Views.SignSettingsDialog.textInfoName": "Vārds", "Common.Views.SignSettingsDialog.textInfoTitle": "Parakstītāja amats", diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json index 5771359be..728b28b3e 100644 --- a/apps/documenteditor/main/locale/ms.json +++ b/apps/documenteditor/main/locale/ms.json @@ -287,14 +287,8 @@ "Common.Views.CopyWarningDialog.textToPaste": "untuk Tampal", "Common.Views.DocumentAccessDialog.textLoading": "Memuatkan", "Common.Views.DocumentAccessDialog.textTitle": "Seting Perkongsian", - "Common.Views.ExternalDiagramEditor.textClose": "Tutup", - "Common.Views.ExternalDiagramEditor.textSave": "Simpan & Keluar", "Common.Views.ExternalDiagramEditor.textTitle": "Editor Carta", - "Common.Views.ExternalMergeEditor.textClose": "Tutup", - "Common.Views.ExternalMergeEditor.textSave": "Simpan & Keluar", "Common.Views.ExternalMergeEditor.textTitle": "Cantum Mel Penerima", - "Common.Views.ExternalOleEditor.textClose": "Tutup", - "Common.Views.ExternalOleEditor.textSave": "Simpan & Keluar", "Common.Views.ExternalOleEditor.textTitle": "Editor Hamparan", "Common.Views.Header.labelCoUsersDescr": "Pengguna yang mengedit fail:", "Common.Views.Header.textAddFavorite": "Tanda sebagai kegemaran", @@ -503,7 +497,6 @@ "Common.Views.SignDialog.tipFontName": "Nama Fon", "Common.Views.SignDialog.tipFontSize": "Saiz Fon", "Common.Views.SignSettingsDialog.textAllowComment": "Benarkan penandatangan untuk menambah komen dalam dialok tandatangan", - "Common.Views.SignSettingsDialog.textInfo": "Maklumat Penandatangan", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mel", "Common.Views.SignSettingsDialog.textInfoName": "Nama", "Common.Views.SignSettingsDialog.textInfoTitle": "Tajuk Penandatangan", diff --git a/apps/documenteditor/main/locale/nb.json b/apps/documenteditor/main/locale/nb.json index 7d426eec5..6f54e88b0 100644 --- a/apps/documenteditor/main/locale/nb.json +++ b/apps/documenteditor/main/locale/nb.json @@ -63,9 +63,7 @@ "Common.Views.Comments.textComments": "Kommentarer", "Common.Views.Comments.textHintAddComment": "Legg til kommentar", "Common.Views.CopyWarningDialog.textTitle": "Handlinger for Kopier, Klipp ut og Lim inn", - "Common.Views.ExternalDiagramEditor.textClose": "Lukk", "Common.Views.ExternalDiagramEditor.textTitle": "Diagramredigering", - "Common.Views.ExternalMergeEditor.textClose": "Lukk", "Common.Views.Header.textAdvSettings": "Avanserte innstillinger", "Common.Views.Header.tipGoEdit": "Rediger gjeldende fil", "Common.Views.Header.tipViewSettings": "Visningsinnstillinger", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 592be476f..fc5dd91d8 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -279,11 +279,7 @@ "Common.Views.CopyWarningDialog.textToPaste": "voor plakken", "Common.Views.DocumentAccessDialog.textLoading": "Laden...", "Common.Views.DocumentAccessDialog.textTitle": "Instellingen voor delen", - "Common.Views.ExternalDiagramEditor.textClose": "Sluiten", - "Common.Views.ExternalDiagramEditor.textSave": "Opslaan en afsluiten", "Common.Views.ExternalDiagramEditor.textTitle": "Grafiekeditor", - "Common.Views.ExternalMergeEditor.textClose": "Sluiten", - "Common.Views.ExternalMergeEditor.textSave": "Opslaan en afsluiten", "Common.Views.ExternalMergeEditor.textTitle": "Geadresseerden voor Afdruk samenvoegen", "Common.Views.Header.labelCoUsersDescr": "Gebruikers die het bestand bewerken:", "Common.Views.Header.textAddFavorite": "Markeer als favoriet", @@ -491,7 +487,6 @@ "Common.Views.SignDialog.tipFontName": "Lettertype", "Common.Views.SignDialog.tipFontSize": "Tekengrootte", "Common.Views.SignSettingsDialog.textAllowComment": "Sta ondertekenaar toe commentaar toe te voegen in het handtekening venster.", - "Common.Views.SignSettingsDialog.textInfo": "Ondertekenaar info", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Naam", "Common.Views.SignSettingsDialog.textInfoTitle": "Ondertekenaar titel", diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index 203346e07..0e1986c03 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -281,14 +281,8 @@ "Common.Views.CopyWarningDialog.textToPaste": "do wklejenia", "Common.Views.DocumentAccessDialog.textLoading": "Ładowanie...", "Common.Views.DocumentAccessDialog.textTitle": "Ustawienia udostępniania", - "Common.Views.ExternalDiagramEditor.textClose": "Zamknij", - "Common.Views.ExternalDiagramEditor.textSave": "Zapisz i wyjdź", "Common.Views.ExternalDiagramEditor.textTitle": "Edytor wykresu", - "Common.Views.ExternalMergeEditor.textClose": "Zamknij", - "Common.Views.ExternalMergeEditor.textSave": "Zapisz i wyjdź", "Common.Views.ExternalMergeEditor.textTitle": "Odbiorcy korespondencji seryjnej", - "Common.Views.ExternalOleEditor.textClose": "Zamknij", - "Common.Views.ExternalOleEditor.textSave": "Zapisz i wyjdź", "Common.Views.ExternalOleEditor.textTitle": "Edytor arkusza kalkulacyjnego", "Common.Views.Header.labelCoUsersDescr": "Użytkownicy obecnie edytujący plik:", "Common.Views.Header.textAddFavorite": "Dodaj do ulubionych", @@ -492,7 +486,6 @@ "Common.Views.SignDialog.tipFontName": "Nazwa czcionki", "Common.Views.SignDialog.tipFontSize": "Rozmiar czcionki", "Common.Views.SignSettingsDialog.textAllowComment": "Zezwól podpisującemu na dodawanie komentarza w oknie podpisu", - "Common.Views.SignSettingsDialog.textInfo": "Szczegóły osoby podpisującej", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Nazwa", "Common.Views.SignSettingsDialog.textInfoTitle": "Stanowisko osoby podpisującej", diff --git a/apps/documenteditor/main/locale/pt-pt.json b/apps/documenteditor/main/locale/pt-pt.json index 0380a9235..0bce6e2fe 100644 --- a/apps/documenteditor/main/locale/pt-pt.json +++ b/apps/documenteditor/main/locale/pt-pt.json @@ -27,7 +27,7 @@ "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.textDStrikeout": "Rasurado duplo", "Common.Controllers.ReviewChanges.textEquation": "Equação", "Common.Controllers.ReviewChanges.textExact": "exatamente", "Common.Controllers.ReviewChanges.textFirstLine": "Primeira linha", @@ -71,7 +71,7 @@ "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.textStrikeout": "Rasurado", "Common.Controllers.ReviewChanges.textSubScript": "Subscrito", "Common.Controllers.ReviewChanges.textSuperScript": "Sobrescrito", "Common.Controllers.ReviewChanges.textTableChanged": "Definições de tabela alteradas", @@ -125,6 +125,11 @@ "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.smartArt.textEquation": "Equação", + "Common.define.smartArt.textFunnel": "Funil", + "Common.define.smartArt.textList": "Lista", + "Common.define.smartArt.textOther": "Outro", + "Common.define.smartArt.textPicture": "Imagem", "Common.Translation.textMoreButton": "Mais", "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", @@ -199,7 +204,7 @@ "Common.UI.Themes.txtThemeContrastDark": "Contraste escuro", "Common.UI.Themes.txtThemeDark": "Escuro", "Common.UI.Themes.txtThemeLight": "Claro", - "Common.UI.Themes.txtThemeSystem": "O mesmo que o sistema", + "Common.UI.Themes.txtThemeSystem": "O mesmo do sistema", "Common.UI.Window.cancelButtonText": "Cancelar", "Common.UI.Window.closeButtonText": "Fechar", "Common.UI.Window.noButtonText": "Não", @@ -285,16 +290,12 @@ "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.textLoading": "A carregar...", "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.ExternalEditor.textClose": "Fechar", + "Common.Views.ExternalEditor.textSave": "Guardar e sair", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recepients", - "Common.Views.ExternalOleEditor.textClose": "Fechar", - "Common.Views.ExternalOleEditor.textSave": "Guardar e sair", "Common.Views.ExternalOleEditor.textTitle": "Editor de folhas de cálculo", "Common.Views.Header.labelCoUsersDescr": "Utilizadores que estão a editar o ficheiro:", "Common.Views.Header.textAddFavorite": "Marcar como favorito", @@ -360,6 +361,7 @@ "Common.Views.Plugins.textStart": "Iniciar", "Common.Views.Plugins.textStop": "Parar", "Common.Views.Protection.hintAddPwd": "Cifrar com palavra-passe", + "Common.Views.Protection.hintDelPwd": "Eliminar 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", @@ -505,10 +507,10 @@ "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.textDefInstruction": "Antes de assinar este documento, verifique se o conteúdo que está a assinar está correto.", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail do assinante sugerido", + "Common.Views.SignSettingsDialog.textInfoName": "Assinante sugerido", + "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", @@ -523,7 +525,7 @@ "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.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", @@ -557,8 +559,8 @@ "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.applyChangesTextText": "A carregar as alterações...", + "DE.Controllers.Main.applyChangesTitleText": "A carregar 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", @@ -591,6 +593,7 @@ "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.errorNoTOC": "Não existem alterações a fazer no índice remissivo. Pode introduzir alterações no separador Referências.", + "DE.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.", "DE.Controllers.Main.errorProcessSaveResult": "Falha ao guardar.", "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.", @@ -599,6 +602,7 @@ "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.errorTextFormWrongFormat": "O valor introduzido não corresponde ao formato do campo.", "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.", @@ -608,16 +612,16 @@ "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.loadFontsTextText": "A carregar dados...", + "DE.Controllers.Main.loadFontsTitleText": "A carregar dados", + "DE.Controllers.Main.loadFontTextText": "A carregar dados...", + "DE.Controllers.Main.loadFontTitleText": "A carregar 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.loadingDocumentTextText": "A carregar documento...", + "DE.Controllers.Main.loadingDocumentTitleText": "A carregar documento", "DE.Controllers.Main.mailMergeLoadFileText": "A carregar origem de dados...", "DE.Controllers.Main.mailMergeLoadFileTitle": "A carregar origem de dados", "DE.Controllers.Main.notcriticalErrorTitle": "Aviso", @@ -646,13 +650,14 @@ "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.textContinue": "Continuar", "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.textLoadingDocument": "A carregar 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", @@ -666,6 +671,7 @@ "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.textUndo": "Desfazer", "DE.Controllers.Main.titleLicenseExp": "Licença expirada", "DE.Controllers.Main.titleServerVersion": "Editor atualizado", "DE.Controllers.Main.titleUpdateVersion": "Versão alterada", @@ -854,7 +860,7 @@ "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_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", @@ -942,12 +948,12 @@ "DE.Controllers.Search.textReplaceSuccess": "A pesquisa foi concluída. {0} ocorrências foram substituídas", "DE.Controllers.Search.warnReplaceString": "{0} não é um carácter especial válido para a janela Substituir com.", "DE.Controllers.Statusbar.textDisconnect": "Sem ligação
A tentar ligar. Por favor, verifique as definições da ligação.", - "DE.Controllers.Statusbar.textHasChanges": "Novas alterações foram encontradas", + "DE.Controllers.Statusbar.textHasChanges": "Novas alterações foram rastreadas", "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.confirmAddFontName": "O tipo de letra que vai guardar não está disponível no dispositivo atual.
O estilo de texto será apresentado utilizando um dos tipos de letra do sistema, o tipo de letra guardado será utilizado quando estiver disponível.
Quer continuar?", "DE.Controllers.Toolbar.dataUrl": "Colar um URL de dados", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Aviso", "DE.Controllers.Toolbar.textAccent": "Destaques", @@ -1200,7 +1206,7 @@ "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.txtScriptSubSupLeft": "Subscrito-Sobrescrito Esquerdo", "DE.Controllers.Toolbar.txtScriptSup": "Sobrescrito", "DE.Controllers.Toolbar.txtSymbol_about": "Aproximadamente", "DE.Controllers.Toolbar.txtSymbol_additional": "Complemento", @@ -1335,16 +1341,31 @@ "DE.Views.CellsAddDialog.textRow": "Linhas", "DE.Views.CellsAddDialog.textTitle": "Insira vários", "DE.Views.CellsAddDialog.textUp": "Acima do cursor", + "DE.Views.ChartSettings.text3dDepth": "Profundidade (% da base)", + "DE.Views.ChartSettings.text3dHeight": "Altura (% da base)", + "DE.Views.ChartSettings.text3dRotation": "Rotação 3D", "DE.Views.ChartSettings.textAdvanced": "Mostrar definições avançadas", + "DE.Views.ChartSettings.textAutoscale": "Ajuste automático", "DE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico", + "DE.Views.ChartSettings.textDefault": "Rotação padrão", + "DE.Views.ChartSettings.textDown": "Para baixo", "DE.Views.ChartSettings.textEditData": "Editar dados", "DE.Views.ChartSettings.textHeight": "Altura", + "DE.Views.ChartSettings.textLeft": "Esquerda", + "DE.Views.ChartSettings.textNarrow": "Campo de visão estreito", "DE.Views.ChartSettings.textOriginalSize": "Tamanho real", + "DE.Views.ChartSettings.textPerspective": "Perspetiva", + "DE.Views.ChartSettings.textRight": "Direita", + "DE.Views.ChartSettings.textRightAngle": "Eixos de ângulo reto", "DE.Views.ChartSettings.textSize": "Tamanho", "DE.Views.ChartSettings.textStyle": "Estilo", "DE.Views.ChartSettings.textUndock": "Desafixar do painel", + "DE.Views.ChartSettings.textUp": "Para cima", + "DE.Views.ChartSettings.textWiden": "Ampliar o campo de visão", "DE.Views.ChartSettings.textWidth": "Largura", "DE.Views.ChartSettings.textWrap": "Estilo de moldagem", + "DE.Views.ChartSettings.textX": "Rotação X", + "DE.Views.ChartSettings.textY": "Rotação Y", "DE.Views.ChartSettings.txtBehind": "Atrás do texto", "DE.Views.ChartSettings.txtInFront": "À frente do texto", "DE.Views.ChartSettings.txtInline": "Em Linha com o Texto", @@ -1434,14 +1455,24 @@ "DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textUpdate": "Atualizar automaticamente", "DE.Views.DateTimeDialog.txtTitle": "Data e Hora", + "DE.Views.DocProtection.hintProtectDoc": "Proteger o documento", + "DE.Views.DocProtection.txtDocProtectedComment": "O documento está protegido.
Apenas pode inserir comentários a este documento.", + "DE.Views.DocProtection.txtDocProtectedForms": "O documento está protegido.
Apenas pode preencher formulários neste documento.", + "DE.Views.DocProtection.txtDocProtectedTrack": "O documento está protegido.
Pode editar este documento, mas todas as alterações serão rastreadas.", + "DE.Views.DocProtection.txtDocProtectedView": "O documento está protegido.
Apenas pode ver este documento.", + "DE.Views.DocProtection.txtDocUnlockDescription": "Introduzir uma palavra-passe para desproteger documento", + "DE.Views.DocProtection.txtProtectDoc": "Proteger o documento", "DE.Views.DocumentHolder.aboveText": "Acima", "DE.Views.DocumentHolder.addCommentText": "Adicionar comentário", "DE.Views.DocumentHolder.advancedDropCapText": "Definições de capitulares", + "DE.Views.DocumentHolder.advancedEquationText": "Definições de equações", "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.allLinearText": "Tudo - Linear", + "DE.Views.DocumentHolder.allProfText": "Tudo - Profissional", "DE.Views.DocumentHolder.belowText": "Abaixo", "DE.Views.DocumentHolder.breakBeforeText": "Quebra de página antes", "DE.Views.DocumentHolder.bulletsText": "Marcadores e numeração", @@ -1450,6 +1481,8 @@ "DE.Views.DocumentHolder.centerText": "Centro", "DE.Views.DocumentHolder.chartText": "Definições avançadas de gráfico", "DE.Views.DocumentHolder.columnText": "Coluna", + "DE.Views.DocumentHolder.currLinearText": "Atual - Linear", + "DE.Views.DocumentHolder.currProfText": "Atual - Profissional", "DE.Views.DocumentHolder.deleteColumnText": "Eliminar coluna", "DE.Views.DocumentHolder.deleteRowText": "Excluir linha", "DE.Views.DocumentHolder.deleteTableText": "Eliminar tabela", @@ -1462,6 +1495,7 @@ "DE.Views.DocumentHolder.editFooterText": "Editar rodapé", "DE.Views.DocumentHolder.editHeaderText": "Editar cabeçalho", "DE.Views.DocumentHolder.editHyperlinkText": "Editar hiperligação", + "DE.Views.DocumentHolder.eqToInlineText": "Mudar para Embutida", "DE.Views.DocumentHolder.guestText": "Visitante", "DE.Views.DocumentHolder.hyperlinkText": "Hiperligação", "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar tudo", @@ -1476,8 +1510,9 @@ "DE.Views.DocumentHolder.insertText": "Inserir", "DE.Views.DocumentHolder.keepLinesText": "Manter linhas juntas", "DE.Views.DocumentHolder.langText": "Selecionar idioma", + "DE.Views.DocumentHolder.latexText": "LaTex", "DE.Views.DocumentHolder.leftText": "Esquerda", - "DE.Views.DocumentHolder.loadSpellText": "Carregando variantes...", + "DE.Views.DocumentHolder.loadSpellText": "A carregar variantes...", "DE.Views.DocumentHolder.mergeCellsText": "Mesclar células", "DE.Views.DocumentHolder.moreText": "Mais variantes...", "DE.Views.DocumentHolder.noSpellVariantsText": "Sem varientes", @@ -1663,6 +1698,7 @@ "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.unicodeText": "Unicode", "DE.Views.DocumentHolder.updateStyleText": "Atualizar estilo %1", "DE.Views.DocumentHolder.vertAlignText": "Alinhamento vertical", "DE.Views.DropcapSettingsAdvanced.strBorders": "Contornos e Preenchimento", @@ -1681,7 +1717,7 @@ "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.textFont": "Tipo de letra", "DE.Views.DropcapSettingsAdvanced.textFrame": "Moldura", "DE.Views.DropcapSettingsAdvanced.textHeight": "Altura", "DE.Views.DropcapSettingsAdvanced.textHorizontal": "Horizontal", @@ -1704,7 +1740,7 @@ "DE.Views.DropcapSettingsAdvanced.textTop": "Cima", "DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical", "DE.Views.DropcapSettingsAdvanced.textWidth": "Largura", - "DE.Views.DropcapSettingsAdvanced.tipFontName": "Nome da fonte", + "DE.Views.DropcapSettingsAdvanced.tipFontName": "Tipo de letra", "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.", @@ -1742,7 +1778,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentário", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Criado", "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Visualização rápida da Web", - "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Carregando...", + "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "A carregar...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última modificação por", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última modificação", "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Não", @@ -1759,6 +1795,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palavras", @@ -1779,7 +1816,7 @@ "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Modo de co-edição", "DE.Views.FileMenuPanels.Settings.strFast": "Rápido", - "DE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de fonte", + "DE.Views.FileMenuPanels.Settings.strFontRender": "Dicas de tipo de letra", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorar palavras em MAÍSCULAS", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorar palavras com números", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Definições de macros", @@ -1846,27 +1883,34 @@ "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.textComplex": "Campo complexo", "DE.Views.FormSettings.textConnected": "Campos ligados", "DE.Views.FormSettings.textDelete": "Eliminar", + "DE.Views.FormSettings.textDigits": "Dígitos", "DE.Views.FormSettings.textDisconnect": "Desconectar", "DE.Views.FormSettings.textDropDown": "Suspenso", "DE.Views.FormSettings.textExact": "Exatamente", "DE.Views.FormSettings.textField": "Campo de texto", "DE.Views.FormSettings.textFixed": "Campo de tamanho fixo", "DE.Views.FormSettings.textFormat": "Formato", + "DE.Views.FormSettings.textFormatSymbols": "Símbolos permitidos", "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.textLetters": "Letras", "DE.Views.FormSettings.textLock": "Bloquear", + "DE.Views.FormSettings.textMask": "Máscara arbitrária", "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.textNone": "Nenhum", "DE.Views.FormSettings.textPlaceholder": "Marcador de posição", "DE.Views.FormSettings.textRadiobox": "Botão Seleção", + "DE.Views.FormSettings.textReg": "Expressão regular", "DE.Views.FormSettings.textRequired": "Necessário", "DE.Views.FormSettings.textScale": "Quando escalar", "DE.Views.FormSettings.textSelectImage": "Selecionar imagem", @@ -1883,6 +1927,7 @@ "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.capBtnComplex": "Campo complexo", "DE.Views.FormsTab.capBtnDownloadForm": "Descarregar como OFORM", "DE.Views.FormsTab.capBtnDropDown": "Suspenso", "DE.Views.FormsTab.capBtnEmail": "Endereço de e-mail", @@ -1905,10 +1950,13 @@ "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.tipComplexField": "Inserir campo complexo", "DE.Views.FormsTab.tipDownloadForm": "Descarregar um ficheiro no formato OFORM", "DE.Views.FormsTab.tipDropDown": "Inserir lista suspensa", + "DE.Views.FormsTab.tipEmailField": "Inserir endereço eletrónico", "DE.Views.FormsTab.tipImageField": "Inserir imagem", "DE.Views.FormsTab.tipNextForm": "Ir para o campo seguinte", + "DE.Views.FormsTab.tipPhoneField": "Inserir número de telefone", "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", @@ -2061,6 +2109,7 @@ "DE.Views.LeftMenu.tipComments": "Comentários", "DE.Views.LeftMenu.tipNavigation": "Navegação", "DE.Views.LeftMenu.tipOutline": "Títulos", + "DE.Views.LeftMenu.tipPageThumbnails": "Miniaturas de páginas", "DE.Views.LeftMenu.tipPlugins": "Plugins", "DE.Views.LeftMenu.tipSearch": "Pesquisa", "DE.Views.LeftMenu.tipSupport": "Feedback e Suporte", @@ -2087,7 +2136,7 @@ "DE.Views.Links.capBtnAddText": "Adicionar texto", "DE.Views.Links.capBtnBookmarks": "Marcador", "DE.Views.Links.capBtnCaption": "Legenda", - "DE.Views.Links.capBtnContentsUpdate": "Atualizar Tabela", + "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é", @@ -2253,7 +2302,7 @@ "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.PageSizeDialog.txtCustom": "Personalizado", "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", @@ -2282,7 +2331,7 @@ "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.strDoubleStrike": "Rasurado duplo", "DE.Views.ParagraphSettingsAdvanced.strIndent": "Recuos", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Esquerda", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Espaçamento entre linhas", @@ -2294,19 +2343,19 @@ "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.strOrphan": "Controlo de órfãos", + "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Tipo de letra", "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.strStrike": "Rasurado", "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.strTabs": "Separadores", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Alinhamento", "DE.Views.ParagraphSettingsAdvanced.textAll": "Tudo", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Pelo menos", @@ -2323,7 +2372,7 @@ "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual e Discricionário", "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, Histórico e Discricionário", "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual e Histórico", - "DE.Views.ParagraphSettingsAdvanced.textDefault": "Aba padrão", + "DE.Views.ParagraphSettingsAdvanced.textDefault": "Separador predefinido", "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discricionário", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efeitos", "DE.Views.ParagraphSettingsAdvanced.textExact": "Exatamente", @@ -2335,7 +2384,7 @@ "DE.Views.ParagraphSettingsAdvanced.textLeader": "Guia", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Esquerda", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Nível", - "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligaduras", + "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligaduras tipográficas", "DE.Views.ParagraphSettingsAdvanced.textNone": "Nenhum", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(nenhum)", "DE.Views.ParagraphSettingsAdvanced.textOpenType": "Funcionalidades do OpenType", @@ -2354,7 +2403,7 @@ "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Padrão e Histórico", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centro", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Esquerda", - "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posição da aba", + "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posição do separador", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Direita", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Parágrafo - Definições avançadas", "DE.Views.ParagraphSettingsAdvanced.textTop": "Cima", @@ -2368,6 +2417,18 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Definir apenas contorno superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sem contornos", + "DE.Views.ProtectDialog.textComments": "Comentários", + "DE.Views.ProtectDialog.textForms": "Preenchimento de formulários", + "DE.Views.ProtectDialog.textReview": "Alterações rastreadas", + "DE.Views.ProtectDialog.textView": "Sem alterações (apenas leitura)", + "DE.Views.ProtectDialog.txtAllow": "Permitir apenas este tipo de edição no documento", + "DE.Views.ProtectDialog.txtIncorrectPwd": "A palavra-passe de confirmação não é idêntica", + "DE.Views.ProtectDialog.txtOptional": "opcional", + "DE.Views.ProtectDialog.txtPassword": "Palavra-passe", + "DE.Views.ProtectDialog.txtProtect": "Proteger", + "DE.Views.ProtectDialog.txtRepeat": "Repetir palavra-passe", + "DE.Views.ProtectDialog.txtTitle": "Proteger", + "DE.Views.ProtectDialog.txtWarning": "Aviso: se perder ou esquecer a palavra-passe, não será possível recuperá-la. Guarde-a num local seguro.", "DE.Views.RightMenu.txtChartSettings": "Definições de gráfico", "DE.Views.RightMenu.txtFormSettings": "Definições de formulários", "DE.Views.RightMenu.txtHeaderFooterSettings": "Definições de cabeçalho/rodapé", @@ -2558,12 +2619,20 @@ "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.txtGroupTable_BorderedAndLined": "Tabelas Contornadas e Alinhadas", + "DE.Views.TableSettings.txtGroupTable_Custom": "Personalizado", + "DE.Views.TableSettings.txtGroupTable_Grid": "Tabelas de grelha", + "DE.Views.TableSettings.txtGroupTable_List": "Listar tabelas", + "DE.Views.TableSettings.txtGroupTable_Plain": "Tabelas simples", "DE.Views.TableSettings.txtNoBorders": "Sem contornos", "DE.Views.TableSettings.txtTable_Accent": "Destaque", + "DE.Views.TableSettings.txtTable_Bordered": "Contornado", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "Contornado e Alinhado", "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_Lined": "Alinhado", "DE.Views.TableSettings.txtTable_ListTable": "Tabela em lista", "DE.Views.TableSettings.txtTable_PlainTable": "Tabela simples", "DE.Views.TableSettings.txtTable_TableGrid": "Grelha da tabela", @@ -2698,6 +2767,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Imagem", "DE.Views.Toolbar.capBtnInsPagebreak": "Quebras", "DE.Views.Toolbar.capBtnInsShape": "Forma", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Símbolo", "DE.Views.Toolbar.capBtnInsTable": "Tabela", "DE.Views.Toolbar.capBtnInsTextart": "Lágrima", @@ -2790,7 +2860,7 @@ "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.textStrikeout": "Rasurado", "DE.Views.Toolbar.textStyleMenuDelete": "Delete style", "DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles", "DE.Views.Toolbar.textStyleMenuNew": "Novo estilo baseado na seleção", @@ -2834,7 +2904,7 @@ "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.tipFontName": "Tipo de letra", "DE.Views.Toolbar.tipFontSize": "Tamanho do tipo de letra", "DE.Views.Toolbar.tipHighlightColor": "Cor de destaque", "DE.Views.Toolbar.tipImgAlign": "Alinhar objetos", @@ -2844,6 +2914,7 @@ "DE.Views.Toolbar.tipIncPrLeft": "Aumentar recuo", "DE.Views.Toolbar.tipInsertChart": "Inserir gráfico", "DE.Views.Toolbar.tipInsertEquation": "Inserir equação", + "DE.Views.Toolbar.tipInsertHorizontalText": "Inserir caixa de texto horizontal", "DE.Views.Toolbar.tipInsertImage": "Inserir imagem", "DE.Views.Toolbar.tipInsertNum": "Inserir número da página", "DE.Views.Toolbar.tipInsertShape": "Inserir forma automática", @@ -2851,6 +2922,7 @@ "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.tipInsertVerticalText": "Inserir caixa de texto vertical", "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", @@ -2863,6 +2935,10 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Listas Quadradas Preenchidas", "DE.Views.Toolbar.tipMarkersHRound": "Marcas de lista redondas vazias", "DE.Views.Toolbar.tipMarkersStar": "Marcas em estrela", + "DE.Views.Toolbar.tipMultiLevelArticl": "Itens numerados de vários níveis", + "DE.Views.Toolbar.tipMultiLevelChapter": "Capítulos numerados de vários níveis", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Títulos numerados de vários níveis", + "DE.Views.Toolbar.tipMultiLevelHeadVarious": "Vários títulos numerados de vários níveis", "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", @@ -2932,7 +3008,7 @@ "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.textFont": "Tipo de letra", "DE.Views.WatermarkSettingsDialog.textFromFile": "De um ficheiro", "DE.Views.WatermarkSettingsDialog.textFromStorage": "De um armazenamento", "DE.Views.WatermarkSettingsDialog.textFromUrl": "De um URL", @@ -2944,7 +3020,7 @@ "DE.Views.WatermarkSettingsDialog.textNone": "Nenhum", "DE.Views.WatermarkSettingsDialog.textScale": "Redimensionar", "DE.Views.WatermarkSettingsDialog.textSelect": "Selecionar imagem", - "DE.Views.WatermarkSettingsDialog.textStrikeout": "Riscado", + "DE.Views.WatermarkSettingsDialog.textStrikeout": "Rasurado", "DE.Views.WatermarkSettingsDialog.textText": "Тexto", "DE.Views.WatermarkSettingsDialog.textTextW": "Marca d'água de texto", "DE.Views.WatermarkSettingsDialog.textTitle": "Definições de marcas d'água", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index dd337b84a..30edd05c0 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -125,6 +125,12 @@ "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.smartArt.textBalance": "Saldo", + "Common.define.smartArt.textEquation": "Equação", + "Common.define.smartArt.textFunnel": "Funil", + "Common.define.smartArt.textList": "Lista", + "Common.define.smartArt.textOther": "Outro", + "Common.define.smartArt.textPicture": "Imagem", "Common.Translation.textMoreButton": "Mais", "Common.Translation.warnFileLocked": "Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.", "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", @@ -287,14 +293,10 @@ "Common.Views.CopyWarningDialog.textToPaste": "para Colar", "Common.Views.DocumentAccessDialog.textLoading": "Carregando...", "Common.Views.DocumentAccessDialog.textTitle": "Configurações de compartilhamento", - "Common.Views.ExternalDiagramEditor.textClose": "Fechar", - "Common.Views.ExternalDiagramEditor.textSave": "Salvar e Sair", "Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico", - "Common.Views.ExternalMergeEditor.textClose": "Fechar", - "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", + "Common.Views.ExternalEditor.textClose": "Fechar", + "Common.Views.ExternalEditor.textSave": "Salvar e Sair", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recepients", - "Common.Views.ExternalOleEditor.textClose": "Fechar", - "Common.Views.ExternalOleEditor.textSave": "Salvar e Sair", "Common.Views.ExternalOleEditor.textTitle": "Editor de planilhas", "Common.Views.Header.labelCoUsersDescr": "Usuários que estão editando o arquivo:", "Common.Views.Header.textAddFavorite": "Marcar como favorito", @@ -360,6 +362,7 @@ "Common.Views.Plugins.textStart": "Iniciar", "Common.Views.Plugins.textStop": "Parar", "Common.Views.Protection.hintAddPwd": "Criptografar com senha", + "Common.Views.Protection.hintDelPwd": "Excluir senha", "Common.Views.Protection.hintPwd": "Alterar ou excluir senha", "Common.Views.Protection.hintSignature": "Inserir assinatura digital ou linha de assinatura", "Common.Views.Protection.txtAddPwd": "Inserir a senha", @@ -505,7 +508,7 @@ "Common.Views.SignDialog.tipFontName": "Nome da Fonte", "Common.Views.SignDialog.tipFontSize": "Tamanho da fonte", "Common.Views.SignSettingsDialog.textAllowComment": "Permitir ao signatário inserir comentários no diálogo de assinatura", - "Common.Views.SignSettingsDialog.textInfo": "Dados do signatário", + "Common.Views.SignSettingsDialog.textDefInstruction": "Antes de assinar este documento, verifique se o conteúdo que está a assinar está correto.", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Nome", "Common.Views.SignSettingsDialog.textInfoTitle": "Título do Signatário", @@ -579,7 +582,7 @@ "DE.Controllers.Main.errorDefaultMessage": "Código do erro: %1", "DE.Controllers.Main.errorDirectUrl": "Por favor, verifique o link para o documento.
Este link deve ser o link direto para baixar o arquivo.", "DE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro.
Use a opção 'Baixar como' para gravar a cópia de backup em seu computador.", - "DE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro.
Use a opção \"Salvar Como...\" para salvar uma cópia de backup em seu computador.", + "DE.Controllers.Main.errorEditingSaveas": "Ocorreu um erro durante o trabalho com o documento.
Use a opção 'Salvar como ...' para salvar a cópia de backup do arquivo no disco rígido do computador.", "DE.Controllers.Main.errorEmailClient": "Nenhum cliente de e-mail foi encontrado.", "DE.Controllers.Main.errorEmptyTOC": "Comece a criar um sumário aplicando um estilo de título da galeria Estilos ao texto selecionado.", "DE.Controllers.Main.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.", @@ -591,6 +594,7 @@ "DE.Controllers.Main.errorMailMergeLoadFile": "Carregamento falhou. Por favor, selecione um arquivo diferente.", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.", "DE.Controllers.Main.errorNoTOC": "Não há índice para atualizar. Você pode inserir um na guia Referências.", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "A senha fornecida não está correta.
Verifique se a tecla CAPS LOCK está desligada e use a capitalização correta.", "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 de documentos expirou. Por Favor atualize a página.", @@ -647,6 +651,7 @@ "DE.Controllers.Main.textClose": "Fechar", "DE.Controllers.Main.textCloseTip": "Clique para fechar a dica", "DE.Controllers.Main.textContactUs": "Contate as vendas", + "DE.Controllers.Main.textContinue": "Continuar", "DE.Controllers.Main.textConvertEquation": "Esta equação foi criada com uma versão antiga do editor de equação que não é mais compatível. Para editá-lo, converta a equação para o formato Office Math ML.
Converter agora?", "DE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador.
Por favor, contate o Departamento de Vendas para fazer cotação.", "DE.Controllers.Main.textDisconnect": "A conexão está perdida", @@ -667,6 +672,7 @@ "DE.Controllers.Main.textStrict": "Modo estrito", "DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.
Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",", "DE.Controllers.Main.textTryUndoRedoWarn": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido", + "DE.Controllers.Main.textUndo": "Desfazer", "DE.Controllers.Main.titleLicenseExp": "A licença expirou", "DE.Controllers.Main.titleServerVersion": "Editor atualizado", "DE.Controllers.Main.titleUpdateVersion": "Versão alterada", @@ -1336,16 +1342,31 @@ "DE.Views.CellsAddDialog.textRow": "Linhas", "DE.Views.CellsAddDialog.textTitle": "Insira vários", "DE.Views.CellsAddDialog.textUp": "Acima do cursor", + "DE.Views.ChartSettings.text3dDepth": "Profundidade (% da base)", + "DE.Views.ChartSettings.text3dHeight": "Altura (% da base)", + "DE.Views.ChartSettings.text3dRotation": "Rotação 3D", "DE.Views.ChartSettings.textAdvanced": "Exibir configurações avançadas", + "DE.Views.ChartSettings.textAutoscale": "Autoescala", "DE.Views.ChartSettings.textChartType": "Alterar tipo de gráfico", + "DE.Views.ChartSettings.textDefault": "Rotação padrão", + "DE.Views.ChartSettings.textDown": "Abaixo", "DE.Views.ChartSettings.textEditData": "Editar dados", "DE.Views.ChartSettings.textHeight": "Altura", + "DE.Views.ChartSettings.textLeft": "Esquerda", + "DE.Views.ChartSettings.textNarrow": "Campo de visão estreito", "DE.Views.ChartSettings.textOriginalSize": "Tamanho atual", + "DE.Views.ChartSettings.textPerspective": "Perspectiva", + "DE.Views.ChartSettings.textRight": "Direita", + "DE.Views.ChartSettings.textRightAngle": "Eixos de ângulo reto", "DE.Views.ChartSettings.textSize": "Tamanho", "DE.Views.ChartSettings.textStyle": "Estilo", "DE.Views.ChartSettings.textUndock": "Desencaixar do painel", + "DE.Views.ChartSettings.textUp": "Para cima", + "DE.Views.ChartSettings.textWiden": "Ampliar o campo de visão", "DE.Views.ChartSettings.textWidth": "Largura", "DE.Views.ChartSettings.textWrap": "Estilo da quebra automática", + "DE.Views.ChartSettings.textX": "Rotação X", + "DE.Views.ChartSettings.textY": "Rotação Y", "DE.Views.ChartSettings.txtBehind": "Atrás", "DE.Views.ChartSettings.txtInFront": "Em frente", "DE.Views.ChartSettings.txtInline": "Em linha", @@ -1435,14 +1456,24 @@ "DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textUpdate": "Atualizar automaticamente", "DE.Views.DateTimeDialog.txtTitle": "Data e Hora", + "DE.Views.DocProtection.hintProtectDoc": "Proteger o Documento", + "DE.Views.DocProtection.txtDocProtectedComment": "O documento está protegido.
Você só pode inserir comentários neste documento.", + "DE.Views.DocProtection.txtDocProtectedForms": "O documento está protegido.
Você só pode preencher formulários neste documento.", + "DE.Views.DocProtection.txtDocProtectedTrack": "O documento está protegido.
Você pode editar este documento, mas todas as alterações serão rastreadas.", + "DE.Views.DocProtection.txtDocProtectedView": "O documento está protegido.
Você só pode visualizar este documento.", + "DE.Views.DocProtection.txtDocUnlockDescription": "Digite uma senha para desproteger o documento", + "DE.Views.DocProtection.txtProtectDoc": "Proteger o Documento", "DE.Views.DocumentHolder.aboveText": "Acima", "DE.Views.DocumentHolder.addCommentText": "Adicionar comentário", "DE.Views.DocumentHolder.advancedDropCapText": "Configurações de capitulação", + "DE.Views.DocumentHolder.advancedEquationText": "Definições de equações", "DE.Views.DocumentHolder.advancedFrameText": "Configurações avançadas de moldura", "DE.Views.DocumentHolder.advancedParagraphText": "Configurações avançadas de parágrafo", "DE.Views.DocumentHolder.advancedTableText": "Configurações avançadas de tabela", "DE.Views.DocumentHolder.advancedText": "Configurações avançadas", "DE.Views.DocumentHolder.alignmentText": "Alinhamento", + "DE.Views.DocumentHolder.allLinearText": "Tudo - Linear", + "DE.Views.DocumentHolder.allProfText": "Tudo - Profissional", "DE.Views.DocumentHolder.belowText": "Abaixo", "DE.Views.DocumentHolder.breakBeforeText": "Quebra de página antes", "DE.Views.DocumentHolder.bulletsText": "Marcadores e numeração", @@ -1451,6 +1482,8 @@ "DE.Views.DocumentHolder.centerText": "Centro", "DE.Views.DocumentHolder.chartText": "Configurações avançadas de gráfico", "DE.Views.DocumentHolder.columnText": "Coluna", + "DE.Views.DocumentHolder.currLinearText": "Atual - Linear", + "DE.Views.DocumentHolder.currProfText": "Atual - Profissional", "DE.Views.DocumentHolder.deleteColumnText": "Excluir coluna", "DE.Views.DocumentHolder.deleteRowText": "Excluir linha", "DE.Views.DocumentHolder.deleteTableText": "Excluir tabela", @@ -1463,6 +1496,7 @@ "DE.Views.DocumentHolder.editFooterText": "Editar rodapé", "DE.Views.DocumentHolder.editHeaderText": "Editar cabeçalho", "DE.Views.DocumentHolder.editHyperlinkText": "Editar hiperlink", + "DE.Views.DocumentHolder.eqToInlineText": "Alterar para em linha", "DE.Views.DocumentHolder.guestText": "Visitante", "DE.Views.DocumentHolder.hyperlinkText": "Hiperlink", "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorar tudo", @@ -1477,6 +1511,7 @@ "DE.Views.DocumentHolder.insertText": "Inserir", "DE.Views.DocumentHolder.keepLinesText": "Manter as linhas juntas", "DE.Views.DocumentHolder.langText": "Selecionar idioma", + "DE.Views.DocumentHolder.latexText": "LaTex", "DE.Views.DocumentHolder.leftText": "Esquerda", "DE.Views.DocumentHolder.loadSpellText": "Carregando variantes...", "DE.Views.DocumentHolder.mergeCellsText": "Mesclar células", @@ -1664,6 +1699,7 @@ "DE.Views.DocumentHolder.txtUnderbar": "Barra abaixo de texto", "DE.Views.DocumentHolder.txtUngroup": "Desagrupar", "DE.Views.DocumentHolder.txtWarnUrl": "Clicar neste link pode ser prejudicial ao seu dispositivo e dados.
Você tem certeza de que quer continuar?", + "DE.Views.DocumentHolder.unicodeText": "Unicode", "DE.Views.DocumentHolder.updateStyleText": "Update %1 style", "DE.Views.DocumentHolder.vertAlignText": "Alinhamento vertical", "DE.Views.DropcapSettingsAdvanced.strBorders": "Bordas e preenchimento", @@ -1760,6 +1796,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título do documento", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Palavras", @@ -2073,6 +2110,7 @@ "DE.Views.LeftMenu.tipComments": "Comentários", "DE.Views.LeftMenu.tipNavigation": "Navegação", "DE.Views.LeftMenu.tipOutline": "Cabeçalhos", + "DE.Views.LeftMenu.tipPageThumbnails": "Miniaturas de página", "DE.Views.LeftMenu.tipPlugins": "Plug-ins", "DE.Views.LeftMenu.tipSearch": "Pesquisar", "DE.Views.LeftMenu.tipSupport": "Feedback e Suporte", @@ -2380,6 +2418,18 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Definir apenas borda superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sem bordas", + "DE.Views.ProtectDialog.textComments": "Comentários", + "DE.Views.ProtectDialog.textForms": "Preenchimento de formulários", + "DE.Views.ProtectDialog.textReview": "Mudanças rastreadas", + "DE.Views.ProtectDialog.textView": "Sem alterações (somente leitura)", + "DE.Views.ProtectDialog.txtAllow": "Permitir apenas este tipo de edição no documento", + "DE.Views.ProtectDialog.txtIncorrectPwd": "A confirmação da senha não é idêntica", + "DE.Views.ProtectDialog.txtOptional": "Opcional", + "DE.Views.ProtectDialog.txtPassword": "Senha", + "DE.Views.ProtectDialog.txtProtect": "Proteger", + "DE.Views.ProtectDialog.txtRepeat": "Repetir a senha", + "DE.Views.ProtectDialog.txtTitle": "Proteger", + "DE.Views.ProtectDialog.txtWarning": "Cuidado: se você perder ou esquecer a senha, não será possível recuperá-la. Guarde-o em local seguro.", "DE.Views.RightMenu.txtChartSettings": "Configurações de gráfico", "DE.Views.RightMenu.txtFormSettings": "Configurações do formulário", "DE.Views.RightMenu.txtHeaderFooterSettings": "Configurações de cabeçalho e rodapé", @@ -2570,12 +2620,20 @@ "DE.Views.TableSettings.tipOuter": "Definir apenas borda externa", "DE.Views.TableSettings.tipRight": "Definir apenas borda direita externa", "DE.Views.TableSettings.tipTop": "Definir apenas borda superior externa", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Tabelas Contornadas e Alinhadas", + "DE.Views.TableSettings.txtGroupTable_Custom": "Personalizado", + "DE.Views.TableSettings.txtGroupTable_Grid": "Tabelas de grade", + "DE.Views.TableSettings.txtGroupTable_List": "Listar tabelas", + "DE.Views.TableSettings.txtGroupTable_Plain": "Tabelas simples", "DE.Views.TableSettings.txtNoBorders": "Sem bordas", "DE.Views.TableSettings.txtTable_Accent": "Destacar", + "DE.Views.TableSettings.txtTable_Bordered": "Delimitado", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "Contornado e Alinhado", "DE.Views.TableSettings.txtTable_Colorful": "Colorido", "DE.Views.TableSettings.txtTable_Dark": "Escuro", "DE.Views.TableSettings.txtTable_GridTable": "Tabela de grade", "DE.Views.TableSettings.txtTable_Light": "Claro", + "DE.Views.TableSettings.txtTable_Lined": "Alinhado", "DE.Views.TableSettings.txtTable_ListTable": "Tabela de Lista", "DE.Views.TableSettings.txtTable_PlainTable": "Tabela Normal", "DE.Views.TableSettings.txtTable_TableGrid": "Grid da Tabela", @@ -2710,6 +2768,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Imagem", "DE.Views.Toolbar.capBtnInsPagebreak": "Quebras", "DE.Views.Toolbar.capBtnInsShape": "Forma", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Símbolo", "DE.Views.Toolbar.capBtnInsTable": "Tabela", "DE.Views.Toolbar.capBtnInsTextart": "Arte de texto", @@ -2856,6 +2915,7 @@ "DE.Views.Toolbar.tipIncPrLeft": "Aumentar recuo", "DE.Views.Toolbar.tipInsertChart": "Inserir gráfico", "DE.Views.Toolbar.tipInsertEquation": "Inserir equação", + "DE.Views.Toolbar.tipInsertHorizontalText": "Inserir caixa de texto horizontal", "DE.Views.Toolbar.tipInsertImage": "Inserir imagem", "DE.Views.Toolbar.tipInsertNum": "Inserir número da página", "DE.Views.Toolbar.tipInsertShape": "Inserir forma automática", @@ -2863,6 +2923,7 @@ "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.tipInsertVerticalText": "Inserir caixa de texto vertical", "DE.Views.Toolbar.tipLineNumbers": "Mostrar números de linha", "DE.Views.Toolbar.tipLineSpace": "Espaçamento entre linhas do parágrafo", "DE.Views.Toolbar.tipMailRecepients": "Select Recepients", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index 781a19caa..af60eaebd 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -287,14 +287,8 @@ "Common.Views.CopyWarningDialog.textToPaste": "pentru lipire", "Common.Views.DocumentAccessDialog.textLoading": "Se incarca...", "Common.Views.DocumentAccessDialog.textTitle": "Setări partajare", - "Common.Views.ExternalDiagramEditor.textClose": "Închidere", - "Common.Views.ExternalDiagramEditor.textSave": "Salvare și ieșire", "Common.Views.ExternalDiagramEditor.textTitle": "Editor diagramă", - "Common.Views.ExternalMergeEditor.textClose": "Închidere", - "Common.Views.ExternalMergeEditor.textSave": "Salvare și ieșire", "Common.Views.ExternalMergeEditor.textTitle": "Destinatari pentru îmbinare corespondență", - "Common.Views.ExternalOleEditor.textClose": "Închide", - "Common.Views.ExternalOleEditor.textSave": "Salvare și ieșire", "Common.Views.ExternalOleEditor.textTitle": "Editor de foi de calcul", "Common.Views.Header.labelCoUsersDescr": "Fișierul este editat de către:", "Common.Views.Header.textAddFavorite": "Marcare ca preferat", @@ -503,7 +497,6 @@ "Common.Views.SignDialog.tipFontName": "Denumire font", "Common.Views.SignDialog.tipFontSize": "Dimensiune font", "Common.Views.SignSettingsDialog.textAllowComment": "Se permite semnatarului să adauge comentarii în dialogul Semnare", - "Common.Views.SignSettingsDialog.textInfo": "Informații semnatar", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Nume", "Common.Views.SignSettingsDialog.textInfoTitle": "Funcția semnatarului", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 7960e3973..846ea2958 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -125,6 +125,165 @@ "Common.define.chartData.textScatterSmoothMarker": "Точечная с гладкими кривыми и маркерами", "Common.define.chartData.textStock": "Биржевая", "Common.define.chartData.textSurface": "Поверхность", + "Common.define.smartArt.textAccentedPicture": "Акцентируемый рисунок", + "Common.define.smartArt.textAccentProcess": "Процесс со смещением", + "Common.define.smartArt.textAlternatingFlow": "Переменный поток", + "Common.define.smartArt.textAlternatingHexagons": "Чередующиеся шестиугольники", + "Common.define.smartArt.textAlternatingPictureBlocks": "Чередующиеся блоки рисунков", + "Common.define.smartArt.textAlternatingPictureCircles": "Чередующиеся круги рисунков", + "Common.define.smartArt.textArchitectureLayout": "Архитектурный макет", + "Common.define.smartArt.textArrowRibbon": "Лента со стрелками", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Процесс со смещенными по возрастанию рисунками", + "Common.define.smartArt.textBalance": "Баланс", + "Common.define.smartArt.textBasicBendingProcess": "Простой ломаный процесс", + "Common.define.smartArt.textBasicBlockList": "Простой блочный список", + "Common.define.smartArt.textBasicChevronProcess": "Простой уголковый процесс", + "Common.define.smartArt.textBasicCycle": "Простой цикл", + "Common.define.smartArt.textBasicMatrix": "Простая матрица", + "Common.define.smartArt.textBasicPie": "Простая круговая", + "Common.define.smartArt.textBasicProcess": "Простой процесс", + "Common.define.smartArt.textBasicPyramid": "Простая пирамида", + "Common.define.smartArt.textBasicRadial": "Простая радиальная", + "Common.define.smartArt.textBasicTarget": "Простая целевая", + "Common.define.smartArt.textBasicTimeline": "Простая временная шкала", + "Common.define.smartArt.textBasicVenn": "Простая Венна", + "Common.define.smartArt.textBendingPictureAccentList": "Ломаный список со смещенными рисунками", + "Common.define.smartArt.textBendingPictureBlocks": "Нелинейные рисунки с блоками", + "Common.define.smartArt.textBendingPictureCaption": "Нелинейные рисунки с подписями", + "Common.define.smartArt.textBendingPictureCaptionList": "Ломаный список рисунков с подписями", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "Нелинейные рисунки с полупрозрачным текстом", + "Common.define.smartArt.textBlockCycle": "Блочный цикл", + "Common.define.smartArt.textBubblePictureList": "Список рисунков с выносками", + "Common.define.smartArt.textCaptionedPictures": "Подписанные рисунки", + "Common.define.smartArt.textChevronAccentProcess": "Уголковый процесс со смещением", + "Common.define.smartArt.textChevronList": "Уголковый список", + "Common.define.smartArt.textCircleAccentTimeline": "Круглая временная шкала", + "Common.define.smartArt.textCircleArrowProcess": "Стрелка процесса с кругами", + "Common.define.smartArt.textCirclePictureHierarchy": "Иерархия с круглыми рисунками", + "Common.define.smartArt.textCircleProcess": "Процесс с кругами", + "Common.define.smartArt.textCircleRelationship": "Круг связей", + "Common.define.smartArt.textCircularBendingProcess": "Круглый ломаный процесс", + "Common.define.smartArt.textCircularPictureCallout": "Выноска с круглыми рисунками", + "Common.define.smartArt.textClosedChevronProcess": "Закрытый уголковый процесс", + "Common.define.smartArt.textContinuousArrowProcess": "Стрелка непрерывного процесса", + "Common.define.smartArt.textContinuousBlockProcess": "Непрерывный блочный процесс", + "Common.define.smartArt.textContinuousCycle": "Непрерывный цикл", + "Common.define.smartArt.textContinuousPictureList": "Непрерывный список с рисунками", + "Common.define.smartArt.textConvergingArrows": "Сходящиеся стрелки", + "Common.define.smartArt.textConvergingRadial": "Сходящаяся радиальная", + "Common.define.smartArt.textConvergingText": "Сходящийся текст", + "Common.define.smartArt.textCounterbalanceArrows": "Уравновешивающие стрелки", + "Common.define.smartArt.textCycle": "Цикл", + "Common.define.smartArt.textCycleMatrix": "Циклическая матрица", + "Common.define.smartArt.textDescendingBlockList": "Нисходящий блочный список", + "Common.define.smartArt.textDescendingProcess": "Убывающий процесс", + "Common.define.smartArt.textDetailedProcess": "Подробный процесс", + "Common.define.smartArt.textDivergingArrows": "Расходящиеся стрелки", + "Common.define.smartArt.textDivergingRadial": "Расходящаяся радиальная", + "Common.define.smartArt.textEquation": "Уравнение", + "Common.define.smartArt.textFramedTextPicture": "Рисунок с текстом в рамке", + "Common.define.smartArt.textFunnel": "Воронка", + "Common.define.smartArt.textGear": "Шестеренка", + "Common.define.smartArt.textGridMatrix": "Сетчатая матрица", + "Common.define.smartArt.textGroupedList": "Сгруппированный список", + "Common.define.smartArt.textHalfCircleOrganizationChart": "Полукруглая организационная диаграмма", + "Common.define.smartArt.textHexagonCluster": "Кластер шестиугольников", + "Common.define.smartArt.textHexagonRadial": "Радиальный шестиугольник", + "Common.define.smartArt.textHierarchy": "Иерархия", + "Common.define.smartArt.textHierarchyList": "Иерархический список", + "Common.define.smartArt.textHorizontalBulletList": "Горизонтальный маркированный список", + "Common.define.smartArt.textHorizontalHierarchy": "Горизонтальная иерархия", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "Горизонтальная иерархия с подписями", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Горизонтальная многоуровневая иерархия", + "Common.define.smartArt.textHorizontalOrganizationChart": "Горизонтальная организационная диаграмма", + "Common.define.smartArt.textHorizontalPictureList": "Горизонтальный список рисунков", + "Common.define.smartArt.textIncreasingArrowProcess": "Стрелка нарастающего процесса", + "Common.define.smartArt.textIncreasingCircleProcess": "Нарастающий процесс с кругами", + "Common.define.smartArt.textInterconnectedBlockProcess": "Процесс со взаимосвязанными блоками", + "Common.define.smartArt.textInterconnectedRings": "Взаимосвязанные кольца", + "Common.define.smartArt.textInvertedPyramid": "Инвертированная пирамида", + "Common.define.smartArt.textLabeledHierarchy": "Иерархия с подписями", + "Common.define.smartArt.textLinearVenn": "Линейная Венна", + "Common.define.smartArt.textLinedList": "Список с линиями", + "Common.define.smartArt.textList": "Список", + "Common.define.smartArt.textMatrix": "Матрица", + "Common.define.smartArt.textMultidirectionalCycle": "Разнонаправленный цикл", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "Организационная диаграмма с именами и должностями", + "Common.define.smartArt.textNestedTarget": "Вложенная целевая", + "Common.define.smartArt.textNondirectionalCycle": "Ненаправленный цикл", + "Common.define.smartArt.textOpposingArrows": "Противостоящие стрелки", + "Common.define.smartArt.textOpposingIdeas": "Противоположные идеи", + "Common.define.smartArt.textOrganizationChart": "Организационная диаграмма", + "Common.define.smartArt.textOther": "Другое", + "Common.define.smartArt.textPhasedProcess": "Поэтапный процесс", + "Common.define.smartArt.textPicture": "Рисунок", + "Common.define.smartArt.textPictureAccentBlocks": "Блоки со смещенными рисунками", + "Common.define.smartArt.textPictureAccentList": "Список со смещенными рисунками", + "Common.define.smartArt.textPictureAccentProcess": "Процесс со смещенными рисунками", + "Common.define.smartArt.textPictureCaptionList": "Список названий рисунков", + "Common.define.smartArt.textPictureFrame": "Фоторамка", + "Common.define.smartArt.textPictureGrid": "Сетка рисунков", + "Common.define.smartArt.textPictureLineup": "Линия рисунков", + "Common.define.smartArt.textPictureOrganizationChart": "Организационная диаграмма с рисунками", + "Common.define.smartArt.textPictureStrips": "Полосы рисунков", + "Common.define.smartArt.textPieProcess": "Процесс с круговой диаграммой", + "Common.define.smartArt.textPlusAndMinus": "Плюс и минус", + "Common.define.smartArt.textProcess": "Процесс", + "Common.define.smartArt.textProcessArrows": "Стрелки процесса", + "Common.define.smartArt.textProcessList": "Список процессов", + "Common.define.smartArt.textPyramid": "Пирамида", + "Common.define.smartArt.textPyramidList": "Пирамидальный список", + "Common.define.smartArt.textRadialCluster": "Радиальный кластер", + "Common.define.smartArt.textRadialCycle": "Радиальная циклическая", + "Common.define.smartArt.textRadialList": "Радиальный список", + "Common.define.smartArt.textRadialPictureList": "Радиальный список рисунков", + "Common.define.smartArt.textRadialVenn": "Радиальная Венна", + "Common.define.smartArt.textRandomToResultProcess": "Процесс от случайности к результату", + "Common.define.smartArt.textRelationship": "Связь", + "Common.define.smartArt.textRepeatingBendingProcess": "Повторяющийся ломаный процесс", + "Common.define.smartArt.textReverseList": "Обратный список", + "Common.define.smartArt.textSegmentedCycle": "Сегментированный цикл", + "Common.define.smartArt.textSegmentedProcess": "Сегментированный процесс", + "Common.define.smartArt.textSegmentedPyramid": "Сегментированная пирамида", + "Common.define.smartArt.textSnapshotPictureList": "Список со снимками", + "Common.define.smartArt.textSpiralPicture": "Спираль рисунков", + "Common.define.smartArt.textSquareAccentList": "Список с квадратиками", + "Common.define.smartArt.textStackedList": "Список в столбик", + "Common.define.smartArt.textStackedVenn": "Венна в столбик", + "Common.define.smartArt.textStaggeredProcess": "Ступенчатый процесс", + "Common.define.smartArt.textStepDownProcess": "Нисходящий процесс", + "Common.define.smartArt.textStepUpProcess": "Восходящий процесс", + "Common.define.smartArt.textSubStepProcess": "Процесс с вложенными шагами", + "Common.define.smartArt.textTabbedArc": "Дуга с вкладками", + "Common.define.smartArt.textTableHierarchy": "Табличная иерархия", + "Common.define.smartArt.textTableList": "Табличный список", + "Common.define.smartArt.textTabList": "Список вкладок", + "Common.define.smartArt.textTargetList": "Целевой список", + "Common.define.smartArt.textTextCycle": "Текстовый цикл", + "Common.define.smartArt.textThemePictureAccent": "Смещенные рисунки темы", + "Common.define.smartArt.textThemePictureAlternatingAccent": "Чередующиеся смещенные рисунки темы", + "Common.define.smartArt.textThemePictureGrid": "Сетка рисунков темы", + "Common.define.smartArt.textTitledMatrix": "Матрица с заголовками", + "Common.define.smartArt.textTitledPictureAccentList": "Список со смещенными рисунками и заголовком", + "Common.define.smartArt.textTitledPictureBlocks": "Блоки рисунков с названиями", + "Common.define.smartArt.textTitlePictureLineup": "Линия рисунков с названиями", + "Common.define.smartArt.textTrapezoidList": "Трапециевидный список", + "Common.define.smartArt.textUpwardArrow": "Восходящая стрелка", + "Common.define.smartArt.textVaryingWidthList": "Список переменной ширины", + "Common.define.smartArt.textVerticalAccentList": "Вертикальный список со смещением", + "Common.define.smartArt.textVerticalArrowList": "Вертикальный список со стрелкой", + "Common.define.smartArt.textVerticalBendingProcess": "Вертикальный ломаный процесс", + "Common.define.smartArt.textVerticalBlockList": "Вертикальный блочный список", + "Common.define.smartArt.textVerticalBoxList": "Вертикальный список", + "Common.define.smartArt.textVerticalBracketList": "Вертикальный список со скобками", + "Common.define.smartArt.textVerticalBulletList": "Вертикальный маркированный список", + "Common.define.smartArt.textVerticalChevronList": "Вертикальный уголковый список", + "Common.define.smartArt.textVerticalCircleList": "Вертикальный список с кругами", + "Common.define.smartArt.textVerticalCurvedList": "Вертикальный нелинейный список", + "Common.define.smartArt.textVerticalEquation": "Вертикальное уравнение", + "Common.define.smartArt.textVerticalPictureAccentList": "Вертикальный список со смещенными рисунками", + "Common.define.smartArt.textVerticalPictureList": "Вертикальный список рисунков", + "Common.define.smartArt.textVerticalProcess": "Вертикальный процесс", "Common.Translation.textMoreButton": "Ещё", "Common.Translation.warnFileLocked": "Вы не можете редактировать этот файл, потому что он уже редактируется в другом приложении.", "Common.Translation.warnFileLockedBtnEdit": "Создать копию", @@ -287,14 +446,10 @@ "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.ExternalEditor.textClose": "Закрыть", + "Common.Views.ExternalEditor.textSave": "Сохранить и выйти", "Common.Views.ExternalMergeEditor.textTitle": "Получатели слияния", - "Common.Views.ExternalOleEditor.textClose": "Закрыть", - "Common.Views.ExternalOleEditor.textSave": "Сохранить и выйти", "Common.Views.ExternalOleEditor.textTitle": "Редактор таблиц", "Common.Views.Header.labelCoUsersDescr": "Пользователи, редактирующие документ:", "Common.Views.Header.textAddFavorite": "Добавить в избранное", @@ -360,6 +515,7 @@ "Common.Views.Plugins.textStart": "Запустить", "Common.Views.Plugins.textStop": "Остановить", "Common.Views.Protection.hintAddPwd": "Зашифровать с помощью пароля", + "Common.Views.Protection.hintDelPwd": "Удалить пароль", "Common.Views.Protection.hintPwd": "Изменить или удалить пароль", "Common.Views.Protection.hintSignature": "Добавить цифровую подпись или строку подписи", "Common.Views.Protection.txtAddPwd": "Добавить пароль", @@ -456,6 +612,7 @@ "Common.Views.ReviewPopover.textCancel": "Отмена", "Common.Views.ReviewPopover.textClose": "Закрыть", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textEnterComment": "Введите здесь свой комментарий", "Common.Views.ReviewPopover.textFollowMove": "Перейти на прежнее место", "Common.Views.ReviewPopover.textMention": "+упоминание предоставит доступ к документу и отправит оповещение по почте", "Common.Views.ReviewPopover.textMentionNotify": "+упоминание отправит пользователю оповещение по почте", @@ -505,10 +662,10 @@ "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.textDefInstruction": "Перед подписанием документа убедитесь, что подписываемое содержимое является правильным.", + "Common.Views.SignSettingsDialog.textInfoEmail": "Адрес электронной почты предложенного подписывающего", + "Common.Views.SignSettingsDialog.textInfoName": "Предложенный подписывающий", + "Common.Views.SignSettingsDialog.textInfoTitle": "Должность предложенного подписывающего", "Common.Views.SignSettingsDialog.textInstructions": "Инструкции для подписывающего", "Common.Views.SignSettingsDialog.textShowDate": "Показывать дату подписи в строке подписи", "Common.Views.SignSettingsDialog.textTitle": "Настройка подписи", @@ -559,6 +716,7 @@ "DE.Controllers.LeftMenu.warnReplaceString": "{0} нельзя использовать как специальный символ в поле замены.", "DE.Controllers.Main.applyChangesTextText": "Загрузка изменений...", "DE.Controllers.Main.applyChangesTitleText": "Загрузка изменений", + "DE.Controllers.Main.confirmMaxChangesSize": "Размер внесенных изменений превышает ограничение, установленное для вашего сервера.
Нажмите \"Отменить\" для отмены последнего действия или нажмите \"Продолжить\", чтобы сохранить действие локально (потребуется скачать файл или скопировать его содержимое чтобы ничего не потерялось).", "DE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.", "DE.Controllers.Main.criticalErrorExtText": "Нажмите \"OK\", чтобы вернуться к списку документов.", "DE.Controllers.Main.criticalErrorTitle": "Ошибка", @@ -585,12 +743,18 @@ "DE.Controllers.Main.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.Controllers.Main.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", "DE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на диск или повторите попытку позже.", + "DE.Controllers.Main.errorInconsistentExt": "При открытии файла произошла ошибка.
Содержимое файла не соответствует расширению файла.", + "DE.Controllers.Main.errorInconsistentExtDocx": "При открытии файла произошла ошибка.
Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.", + "DE.Controllers.Main.errorInconsistentExtPdf": "При открытии файла произошла ошибка.
Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.", + "DE.Controllers.Main.errorInconsistentExtPptx": "При открытии файла произошла ошибка.
Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.", + "DE.Controllers.Main.errorInconsistentExtXlsx": "При открытии файла произошла ошибка.
Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.", "DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа", "DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", "DE.Controllers.Main.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "DE.Controllers.Main.errorMailMergeLoadFile": "Загрузка документа не удалась. Выберите другой файл.", "DE.Controllers.Main.errorMailMergeSaveFile": "Не удалось выполнить слияние.", "DE.Controllers.Main.errorNoTOC": "Нет оглавления, которое нужно обновить. Вы можете вставить его на вкладке Ссылки.", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "Неверный пароль.
Убедитесь, что отключена клавиша CAPS LOCK и используется правильный регистр.", "DE.Controllers.Main.errorProcessSaveResult": "Сбой при сохранении.", "DE.Controllers.Main.errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", "DE.Controllers.Main.errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.", @@ -647,6 +811,7 @@ "DE.Controllers.Main.textClose": "Закрыть", "DE.Controllers.Main.textCloseTip": "Щелкните, чтобы закрыть эту подсказку", "DE.Controllers.Main.textContactUs": "Связаться с отделом продаж", + "DE.Controllers.Main.textContinue": "Продолжить", "DE.Controllers.Main.textConvertEquation": "Это уравнение создано в старой версии редактора уравнений, которая больше не поддерживается. Чтобы изменить это уравнение, его необходимо преобразовать в формат Office Math ML.
Преобразовать сейчас?", "DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.
Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.", "DE.Controllers.Main.textDisconnect": "Соединение потеряно", @@ -667,6 +832,7 @@ "DE.Controllers.Main.textStrict": "Строгий режим", "DE.Controllers.Main.textTryUndoRedo": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.
Нажмите на кнопку 'Строгий режим' для переключения в Строгий режим совместного редактирования, чтобы редактировать файл без вмешательства других пользователей и отправлять изменения только после того, как вы их сохраните. Переключаться между режимами совместного редактирования можно с помощью Дополнительных параметров редактора.", "DE.Controllers.Main.textTryUndoRedoWarn": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.", + "DE.Controllers.Main.textUndo": "Отменить", "DE.Controllers.Main.titleLicenseExp": "Истек срок действия лицензии", "DE.Controllers.Main.titleServerVersion": "Редактор обновлен", "DE.Controllers.Main.titleUpdateVersion": "Версия изменилась", @@ -1336,16 +1502,31 @@ "DE.Views.CellsAddDialog.textRow": "Строки", "DE.Views.CellsAddDialog.textTitle": "Вставить несколько", "DE.Views.CellsAddDialog.textUp": "Над курсором", + "DE.Views.ChartSettings.text3dDepth": "Глубина (% от базовой)", + "DE.Views.ChartSettings.text3dHeight": "Высота (% от базовой)", + "DE.Views.ChartSettings.text3dRotation": "Трехмерный поворот", "DE.Views.ChartSettings.textAdvanced": "Дополнительные параметры", + "DE.Views.ChartSettings.textAutoscale": "Автомасштабирование", "DE.Views.ChartSettings.textChartType": "Изменить тип диаграммы", + "DE.Views.ChartSettings.textDefault": "Поворот по умолчанию", + "DE.Views.ChartSettings.textDown": "Вниз", "DE.Views.ChartSettings.textEditData": "Изменить данные", "DE.Views.ChartSettings.textHeight": "Высота", + "DE.Views.ChartSettings.textLeft": "Влево", + "DE.Views.ChartSettings.textNarrow": "Сузить поле зрения", "DE.Views.ChartSettings.textOriginalSize": "Реальный размер", + "DE.Views.ChartSettings.textPerspective": "Перспектива", + "DE.Views.ChartSettings.textRight": "Вправо", + "DE.Views.ChartSettings.textRightAngle": "Оси под прямым углом", "DE.Views.ChartSettings.textSize": "Размер", "DE.Views.ChartSettings.textStyle": "Стиль", "DE.Views.ChartSettings.textUndock": "Открепить от панели", + "DE.Views.ChartSettings.textUp": "Вверх", + "DE.Views.ChartSettings.textWiden": "Расширить поле зрения", "DE.Views.ChartSettings.textWidth": "Ширина", "DE.Views.ChartSettings.textWrap": "Стиль обтекания", + "DE.Views.ChartSettings.textX": "Поворот по оси X", + "DE.Views.ChartSettings.textY": "Поворот по оси Y", "DE.Views.ChartSettings.txtBehind": "За текстом", "DE.Views.ChartSettings.txtInFront": "Перед текстом", "DE.Views.ChartSettings.txtInline": "В тексте", @@ -1435,14 +1616,24 @@ "DE.Views.DateTimeDialog.textLang": "Язык", "DE.Views.DateTimeDialog.textUpdate": "Обновлять автоматически", "DE.Views.DateTimeDialog.txtTitle": "Дата и время", + "DE.Views.DocProtection.hintProtectDoc": "Защитить документ", + "DE.Views.DocProtection.txtDocProtectedComment": "Документ защищен.
Вы можете только добавлять комментарии к этому документу.", + "DE.Views.DocProtection.txtDocProtectedForms": "Документ защищен.
Вы можете только заполнять формы в этом документе.", + "DE.Views.DocProtection.txtDocProtectedTrack": "Документ защищен.
Вы можете редактировать этот документ, но все изменения будут отслеживаться.", + "DE.Views.DocProtection.txtDocProtectedView": "Документ защищен.
Вы можете только просматривать этот документ.", + "DE.Views.DocProtection.txtDocUnlockDescription": "Введите пароль, чтобы снять защиту документа", + "DE.Views.DocProtection.txtProtectDoc": "Защитить документ", "DE.Views.DocumentHolder.aboveText": "Выше", "DE.Views.DocumentHolder.addCommentText": "Добавить комментарий", "DE.Views.DocumentHolder.advancedDropCapText": "Параметры буквицы", + "DE.Views.DocumentHolder.advancedEquationText": "Параметры уравнений", "DE.Views.DocumentHolder.advancedFrameText": "Дополнительные параметры рамки", "DE.Views.DocumentHolder.advancedParagraphText": "Дополнительные параметры абзаца", "DE.Views.DocumentHolder.advancedTableText": "Дополнительные параметры таблицы", "DE.Views.DocumentHolder.advancedText": "Дополнительные параметры", "DE.Views.DocumentHolder.alignmentText": "Выравнивание", + "DE.Views.DocumentHolder.allLinearText": "Все - линейный", + "DE.Views.DocumentHolder.allProfText": "Все - профессиональный", "DE.Views.DocumentHolder.belowText": "Ниже", "DE.Views.DocumentHolder.breakBeforeText": "С новой страницы", "DE.Views.DocumentHolder.bulletsText": "Маркеры и нумерация", @@ -1451,6 +1642,8 @@ "DE.Views.DocumentHolder.centerText": "По центру", "DE.Views.DocumentHolder.chartText": "Дополнительные параметры диаграммы", "DE.Views.DocumentHolder.columnText": "Столбец", + "DE.Views.DocumentHolder.currLinearText": "Текущее - линейный", + "DE.Views.DocumentHolder.currProfText": "Текущее - Профессиональный", "DE.Views.DocumentHolder.deleteColumnText": "Удалить столбец", "DE.Views.DocumentHolder.deleteRowText": "Удалить строку", "DE.Views.DocumentHolder.deleteTableText": "Удалить таблицу", @@ -1463,6 +1656,7 @@ "DE.Views.DocumentHolder.editFooterText": "Изменить нижний колонтитул", "DE.Views.DocumentHolder.editHeaderText": "Изменить верхний колонтитул", "DE.Views.DocumentHolder.editHyperlinkText": "Изменить гиперссылку", + "DE.Views.DocumentHolder.eqToInlineText": "Изменить на встроенный", "DE.Views.DocumentHolder.guestText": "Гость", "DE.Views.DocumentHolder.hyperlinkText": "Гиперссылка", "DE.Views.DocumentHolder.ignoreAllSpellText": "Пропустить все", @@ -1477,6 +1671,7 @@ "DE.Views.DocumentHolder.insertText": "Добавить", "DE.Views.DocumentHolder.keepLinesText": "Не разрывать абзац", "DE.Views.DocumentHolder.langText": "Выбрать язык", + "DE.Views.DocumentHolder.latexText": "LaTeX", "DE.Views.DocumentHolder.leftText": "По левому краю", "DE.Views.DocumentHolder.loadSpellText": "Загрузка вариантов...", "DE.Views.DocumentHolder.mergeCellsText": "Объединить ячейки", @@ -1664,6 +1859,7 @@ "DE.Views.DocumentHolder.txtUnderbar": "Черта под текстом", "DE.Views.DocumentHolder.txtUngroup": "Разгруппировать", "DE.Views.DocumentHolder.txtWarnUrl": "Переход по этой ссылке может нанести вред вашему устройству и данным.
Вы действительно хотите продолжить?", + "DE.Views.DocumentHolder.unicodeText": "Юникод", "DE.Views.DocumentHolder.updateStyleText": "Обновить стиль %1", "DE.Views.DocumentHolder.vertAlignText": "Вертикальное выравнивание", "DE.Views.DropcapSettingsAdvanced.strBorders": "Границы и заливка", @@ -1760,6 +1956,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Статистика", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Символы", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Теги", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Загружен", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Слова", @@ -2073,6 +2270,7 @@ "DE.Views.LeftMenu.tipComments": "Комментарии", "DE.Views.LeftMenu.tipNavigation": "Навигация", "DE.Views.LeftMenu.tipOutline": "Заголовки", + "DE.Views.LeftMenu.tipPageThumbnails": "Эскизы страниц", "DE.Views.LeftMenu.tipPlugins": "Плагины", "DE.Views.LeftMenu.tipSearch": "Поиск", "DE.Views.LeftMenu.tipSupport": "Обратная связь и поддержка", @@ -2380,6 +2578,18 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Задать только верхнюю границу", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Авто", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Без границ", + "DE.Views.ProtectDialog.textComments": "Комментарии", + "DE.Views.ProtectDialog.textForms": "Заполнение форм", + "DE.Views.ProtectDialog.textReview": "Отслеживаемые изменения", + "DE.Views.ProtectDialog.textView": "Только чтение", + "DE.Views.ProtectDialog.txtAllow": "Разрешить только указанный способ редактирования документа", + "DE.Views.ProtectDialog.txtIncorrectPwd": "Пароль и его подтверждение не совпадают", + "DE.Views.ProtectDialog.txtOptional": "необязательно", + "DE.Views.ProtectDialog.txtPassword": "Пароль", + "DE.Views.ProtectDialog.txtProtect": "Защитить", + "DE.Views.ProtectDialog.txtRepeat": "Повторить пароль", + "DE.Views.ProtectDialog.txtTitle": "Защитить", + "DE.Views.ProtectDialog.txtWarning": "Внимание: Если пароль забыт или утерян, его нельзя восстановить. Храните его в надежном месте.", "DE.Views.RightMenu.txtChartSettings": "Параметры диаграммы", "DE.Views.RightMenu.txtFormSettings": "Параметры формы", "DE.Views.RightMenu.txtHeaderFooterSettings": "Параметры верхнего и нижнего колонтитулов", @@ -2570,12 +2780,20 @@ "DE.Views.TableSettings.tipOuter": "Задать только внешнюю границу", "DE.Views.TableSettings.tipRight": "Задать только внешнюю правую границу", "DE.Views.TableSettings.tipTop": "Задать только внешнюю верхнюю границу", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Таблицы с границами и с линиями", + "DE.Views.TableSettings.txtGroupTable_Custom": "Пользовательские", + "DE.Views.TableSettings.txtGroupTable_Grid": "Таблицы-сетки", + "DE.Views.TableSettings.txtGroupTable_List": "Таблицы-списки", + "DE.Views.TableSettings.txtGroupTable_Plain": "Простые таблицы", "DE.Views.TableSettings.txtNoBorders": "Без границ", "DE.Views.TableSettings.txtTable_Accent": "акцент", + "DE.Views.TableSettings.txtTable_Bordered": "С границами", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "С границами и с линиями", "DE.Views.TableSettings.txtTable_Colorful": "цветная", "DE.Views.TableSettings.txtTable_Dark": "темная", "DE.Views.TableSettings.txtTable_GridTable": "Таблица-сетка", "DE.Views.TableSettings.txtTable_Light": "светлая", + "DE.Views.TableSettings.txtTable_Lined": "С линиями", "DE.Views.TableSettings.txtTable_ListTable": "Список-таблица", "DE.Views.TableSettings.txtTable_PlainTable": "Таблица простая", "DE.Views.TableSettings.txtTable_TableGrid": "Сетка таблицы", @@ -2710,6 +2928,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Изображение", "DE.Views.Toolbar.capBtnInsPagebreak": "Разрывы", "DE.Views.Toolbar.capBtnInsShape": "Фигура", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Символ", "DE.Views.Toolbar.capBtnInsTable": "Таблица", "DE.Views.Toolbar.capBtnInsTextart": "Text Art", @@ -2856,13 +3075,16 @@ "DE.Views.Toolbar.tipIncPrLeft": "Увеличить отступ", "DE.Views.Toolbar.tipInsertChart": "Вставить диаграмму", "DE.Views.Toolbar.tipInsertEquation": "Вставить уравнение", + "DE.Views.Toolbar.tipInsertHorizontalText": "Вставить горизонтальную надпись", "DE.Views.Toolbar.tipInsertImage": "Вставить изображение", "DE.Views.Toolbar.tipInsertNum": "Вставить номер страницы", "DE.Views.Toolbar.tipInsertShape": "Вставить автофигуру", + "DE.Views.Toolbar.tipInsertSmartArt": "Вставить SmartArt", "DE.Views.Toolbar.tipInsertSymbol": "Вставить символ", "DE.Views.Toolbar.tipInsertTable": "Вставить таблицу", "DE.Views.Toolbar.tipInsertText": "Вставить надпись", "DE.Views.Toolbar.tipInsertTextArt": "Вставить объект Text Art", + "DE.Views.Toolbar.tipInsertVerticalText": "Вставить вертикальную надпись", "DE.Views.Toolbar.tipLineNumbers": "Показывать номера строк", "DE.Views.Toolbar.tipLineSpace": "Междустрочный интервал в абзацах", "DE.Views.Toolbar.tipMailRecepients": "Слияние", @@ -2934,8 +3156,10 @@ "DE.Views.ViewTab.textFitToPage": "По размеру страницы", "DE.Views.ViewTab.textFitToWidth": "По ширине", "DE.Views.ViewTab.textInterfaceTheme": "Тема интерфейса", + "DE.Views.ViewTab.textLeftMenu": "Левая панель", "DE.Views.ViewTab.textNavigation": "Навигация", "DE.Views.ViewTab.textOutline": "Заголовки", + "DE.Views.ViewTab.textRightMenu": "Правая панель", "DE.Views.ViewTab.textRulers": "Линейки", "DE.Views.ViewTab.textStatusBar": "Строка состояния", "DE.Views.ViewTab.textZoom": "Масштаб", diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index 9285ef7d1..d74a7bdad 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -270,11 +270,7 @@ "Common.Views.CopyWarningDialog.textToPaste": "pre vloženie", "Common.Views.DocumentAccessDialog.textLoading": "Nahrávanie...", "Common.Views.DocumentAccessDialog.textTitle": "Nastavenie zdieľania", - "Common.Views.ExternalDiagramEditor.textClose": "Zatvoriť", - "Common.Views.ExternalDiagramEditor.textSave": "Uložiť a Zatvoriť", "Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu", - "Common.Views.ExternalMergeEditor.textClose": "Zatvoriť", - "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é", @@ -463,7 +459,6 @@ "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", - "Common.Views.SignSettingsDialog.textInfo": "Informácie o signatárovi", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Názov", "Common.Views.SignSettingsDialog.textInfoTitle": "Názov signatára", diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index bbb601d46..84fcb125e 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -214,13 +214,8 @@ "Common.Views.CopyWarningDialog.textToPaste": "za Lepljenje", "Common.Views.DocumentAccessDialog.textLoading": "Nalaganje...", "Common.Views.DocumentAccessDialog.textTitle": "Nastavitve deljenja", - "Common.Views.ExternalDiagramEditor.textClose": "Zapri", - "Common.Views.ExternalDiagramEditor.textSave": "Shrani & Zapusti", "Common.Views.ExternalDiagramEditor.textTitle": "Urejevalec grafa", - "Common.Views.ExternalMergeEditor.textClose": "Close", - "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", - "Common.Views.ExternalOleEditor.textClose": "Zapri", "Common.Views.Header.textAddFavorite": "Označi kot priljubljeno", "Common.Views.Header.textAdvSettings": "Dodatne nastavitve", "Common.Views.Header.textBack": "Pojdi v dokumente", diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index c655f1e40..73889d8a0 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -9,6 +9,10 @@ "Common.Controllers.ExternalMergeEditor.textClose": "Stäng", "Common.Controllers.ExternalMergeEditor.warningText": "Objektet är inaktiverat eftersom det redigeras av en annan användare.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Varning", + "Common.Controllers.ExternalOleEditor.textAnonymous": "Anonym", + "Common.Controllers.ExternalOleEditor.textClose": "Stäng", + "Common.Controllers.ExternalOleEditor.warningText": "Objektet är inaktiverat eftersom det redigeras av en annan användare.", + "Common.Controllers.ExternalOleEditor.warningTitle": "Varning", "Common.Controllers.History.notcriticalErrorTitle": "Varning", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "För att jämföra dokument kommer alla spårade ändringar i dem att anses ha godkänts. Vill du fortsätta?", "Common.Controllers.ReviewChanges.textAtLeast": "minst", @@ -121,6 +125,10 @@ "Common.define.chartData.textScatterSmoothMarker": "Sprid med mjuka linjer och markeringar", "Common.define.chartData.textStock": "Lager", "Common.define.chartData.textSurface": "Yta", + "Common.define.smartArt.textList": "Lista", + "Common.define.smartArt.textPicture": "Bild", + "Common.define.smartArt.textRelationship": "Relation", + "Common.Translation.textMoreButton": "Mer", "Common.Translation.warnFileLocked": "Du kan inte redigera den här filen eftersom den redigeras i en annan app.", "Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia", "Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad", @@ -170,8 +178,13 @@ "Common.UI.HSBColorPicker.textNoColor": "Ingen färg", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Dölj lösenord", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Visa lösenord", + "Common.UI.SearchBar.textFind": "Sök", + "Common.UI.SearchBar.tipCloseSearch": "Stäng sökning", + "Common.UI.SearchBar.tipNextResult": "Nästa resultat", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Öppna avancerade inställningar", + "Common.UI.SearchBar.tipPreviousResult": "Föregående resultat", "Common.UI.SearchDialog.textHighlight": "Markera resultat", - "Common.UI.SearchDialog.textMatchCase": "Skiftkänslig", + "Common.UI.SearchDialog.textMatchCase": "Skiftlägeskänslig", "Common.UI.SearchDialog.textReplaceDef": "Skriv in ersättningstext", "Common.UI.SearchDialog.textSearchStart": "Skriv din text här", "Common.UI.SearchDialog.textTitle": "Sök och ersätt", @@ -182,11 +195,14 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Ersätt alla", "Common.UI.SynchronizeTip.textDontShow": "Visa inte detta meddelande igen", "Common.UI.SynchronizeTip.textSynchronize": "Dokumentet har ändrats av en annan användare.
Klicka för att spara dina ändringar och ladda uppdateringarna.", + "Common.UI.ThemeColorPalette.textRecentColors": "Senaste färger", "Common.UI.ThemeColorPalette.textStandartColors": "Standard färger", "Common.UI.ThemeColorPalette.textThemeColors": "Temafärger", "Common.UI.Themes.txtThemeClassicLight": "Classic Light", + "Common.UI.Themes.txtThemeContrastDark": "Mörk kontrast", "Common.UI.Themes.txtThemeDark": "Mörk", "Common.UI.Themes.txtThemeLight": "Ljus", + "Common.UI.Themes.txtThemeSystem": "Samma som systemet", "Common.UI.Window.cancelButtonText": "Avbryt", "Common.UI.Window.closeButtonText": "Stäng", "Common.UI.Window.noButtonText": "Inga", @@ -199,6 +215,8 @@ "Common.UI.Window.yesButtonText": "Ja", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textAlt": "Alt", + "Common.Utils.String.textCtrl": "Ctrl", "Common.Views.About.txtAddress": "adress:", "Common.Views.About.txtLicensee": "LICENSE", "Common.Views.About.txtLicensor": "LICENSGIVARE", @@ -262,6 +280,7 @@ "Common.Views.Comments.textResolved": "Löst", "Common.Views.Comments.textSort": "Sortera kommentarer", "Common.Views.Comments.textViewResolved": "Du har inte behörighet att öppna kommentaren igen", + "Common.Views.Comments.txtEmpty": "Det finns inga kommentarer i dokumentet.", "Common.Views.CopyWarningDialog.textDontShow": "Visa inte detta meddelande igen", "Common.Views.CopyWarningDialog.textMsg": "Kopiera, klipp ut och klistra åtgärder med hjälp av redaktör knapparna i verktygsfältet och snabbmeny åtgärder som ska utföras inom denna flik redaktör bara
vill kopiera eller klistra in eller från applikationer utanför fliken redaktör använda följande kortkommandon.:", "Common.Views.CopyWarningDialog.textTitle": "Kopiera, klipp ut och klistra in åtgärder", @@ -270,11 +289,9 @@ "Common.Views.CopyWarningDialog.textToPaste": "till klistra in", "Common.Views.DocumentAccessDialog.textLoading": "Laddar...", "Common.Views.DocumentAccessDialog.textTitle": "Dela inställningar", - "Common.Views.ExternalDiagramEditor.textClose": "Stäng", - "Common.Views.ExternalDiagramEditor.textSave": "Spara & avsluta", "Common.Views.ExternalDiagramEditor.textTitle": "Diagram editor", - "Common.Views.ExternalMergeEditor.textClose": "Stäng", - "Common.Views.ExternalMergeEditor.textSave": "Spara & avsluta", + "Common.Views.ExternalEditor.textClose": "Stäng", + "Common.Views.ExternalEditor.textSave": "Spara & avsluta", "Common.Views.ExternalMergeEditor.textTitle": "Slå ihop mottagare", "Common.Views.Header.labelCoUsersDescr": "Användare som redigera filen:", "Common.Views.Header.textAddFavorite": "Markera som favorit", @@ -284,6 +301,7 @@ "Common.Views.Header.textHideLines": "Dölj linjaler", "Common.Views.Header.textHideStatusBar": "Dölj statusrad", "Common.Views.Header.textRemoveFavorite": "Ta bort från favoriter", + "Common.Views.Header.textShare": "Dela", "Common.Views.Header.textZoom": "Zooma", "Common.Views.Header.tipAccessRights": "Hantera åtkomsträttigheter för dokument", "Common.Views.Header.tipDownload": "Ladda ner fil", @@ -291,7 +309,9 @@ "Common.Views.Header.tipPrint": "Skriv ut fil", "Common.Views.Header.tipRedo": "Gör om", "Common.Views.Header.tipSave": "Spara", + "Common.Views.Header.tipSearch": "Sök", "Common.Views.Header.tipUndo": "Ångra", + "Common.Views.Header.tipUsers": "Visa användare", "Common.Views.Header.tipViewSettings": "Visa inställningar", "Common.Views.Header.tipViewUsers": "Visa användare och hantera dokumentbehörigheter", "Common.Views.Header.txtAccessRights": "Ändra behörigheter", @@ -332,10 +352,12 @@ "Common.Views.PluginDlg.textLoading": "Laddar", "Common.Views.Plugins.groupCaption": "Tillägg", "Common.Views.Plugins.strPlugins": "Tillägg", + "Common.Views.Plugins.textClosePanel": "Stäng tillägg", "Common.Views.Plugins.textLoading": "Laddar", "Common.Views.Plugins.textStart": "Start", "Common.Views.Plugins.textStop": "Stanna", "Common.Views.Protection.hintAddPwd": "Kryptera med lösenord", + "Common.Views.Protection.hintDelPwd": "Radera lösenord", "Common.Views.Protection.hintPwd": "Ändra eller radera lösenord", "Common.Views.Protection.hintSignature": "Lägg till digital signatur eller rad", "Common.Views.Protection.txtAddPwd": "Lägg till lösenord", @@ -445,6 +467,24 @@ "Common.Views.ReviewPopover.txtReject": "Avvisa", "Common.Views.SaveAsDlg.textLoading": "Laddar", "Common.Views.SaveAsDlg.textTitle": "Mapp för att spara", + "Common.Views.SearchPanel.textCaseSensitive": "Skiftlägeskänslig", + "Common.Views.SearchPanel.textCloseSearch": "Stäng sökning", + "Common.Views.SearchPanel.textContentChanged": "Dokument ändrat.", + "Common.Views.SearchPanel.textFind": "Sök", + "Common.Views.SearchPanel.textFindAndReplace": "Sök och ersätt", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Matcha med reguljära uttryck", + "Common.Views.SearchPanel.textNoMatches": "Inga träffar", + "Common.Views.SearchPanel.textNoSearchResults": "Inga sökresultat", + "Common.Views.SearchPanel.textReplace": "Ersätt", + "Common.Views.SearchPanel.textReplaceAll": "Ersätt alla", + "Common.Views.SearchPanel.textReplaceWith": "Ersätt med", + "Common.Views.SearchPanel.textSearchAgain": "{0}Gör en ny sökning{1} för korrekta resultat.", + "Common.Views.SearchPanel.textSearchHasStopped": "Sökningen har stoppats", + "Common.Views.SearchPanel.textSearchResults": "Sökresultat: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Det finns för många resultat för att visa här", + "Common.Views.SearchPanel.textWholeWords": "Endast hela ord", + "Common.Views.SearchPanel.tipNextResult": "Nästa resultat", + "Common.Views.SearchPanel.tipPreviousResult": "Föregående resultat", "Common.Views.SelectFileDlg.textLoading": "Laddar", "Common.Views.SelectFileDlg.textTitle": "Välj datakälla", "Common.Views.SignDialog.textBold": "Fet", @@ -463,7 +503,6 @@ "Common.Views.SignDialog.tipFontName": "Fontnamn", "Common.Views.SignDialog.tipFontSize": "Fontstorlek", "Common.Views.SignSettingsDialog.textAllowComment": "Tillåt undertecknare att lägga till kommentar i signaturdialogrutan", - "Common.Views.SignSettingsDialog.textInfo": "Undertecknare info", "Common.Views.SignSettingsDialog.textInfoEmail": "E-post", "Common.Views.SignSettingsDialog.textInfoName": "Namn", "Common.Views.SignSettingsDialog.textInfoTitle": "Undertecknare titel", @@ -546,6 +585,7 @@ "DE.Controllers.Main.errorLoadingFont": "Typsnittet är inte tillgängligt.
Vänligen kontakta dokumentserverns administratör.", "DE.Controllers.Main.errorMailMergeLoadFile": "Misslyckades med att läsa in dokumentet. Vänligen välj en annan fil.", "DE.Controllers.Main.errorMailMergeSaveFile": "Ihopslagning misslyckades.", + "DE.Controllers.Main.errorNoTOC": "Det finns ingen innehållsförteckning att uppdatera. Du kan infoga en från fliken Referenser.", "DE.Controllers.Main.errorProcessSaveResult": "Sparar felaktig.", "DE.Controllers.Main.errorServerVersion": "Textredigerarens version har uppdaterats. Sidan kommer att laddas om för att verkställa ändringarna.", "DE.Controllers.Main.errorSessionAbsolute": "Dokumentet redigeringssession har löpt ut. Vänligen ladda om sidan.", @@ -554,6 +594,7 @@ "DE.Controllers.Main.errorSetPassword": "Lösenord kunde inte ställas in.", "DE.Controllers.Main.errorStockChart": "Felaktig radordning. Att bygga en börsdiagram plats data på arket i följande ordning:
öppningspris, max pris, min pris, slutkurs.", "DE.Controllers.Main.errorSubmit": "Gick ej att verkställa.", + "DE.Controllers.Main.errorTextFormWrongFormat": "Det angivna värdet stämmer inte överens med fältets format.", "DE.Controllers.Main.errorToken": "Dokumentets säkerhetstoken är inte korrekt.
Vänligen kontakta din dokumentserver administratör.", "DE.Controllers.Main.errorTokenExpire": "Dokumentets säkerhetstoken har upphört att gälla.
Var vänlig och Kontakta din dokumentserver administratör.", "DE.Controllers.Main.errorUpdateVersion": "Filens version har ändrats. Sidan kommer laddas om.", @@ -601,6 +642,7 @@ "DE.Controllers.Main.textClose": "Stäng", "DE.Controllers.Main.textCloseTip": "Klicka för att stänga tipset", "DE.Controllers.Main.textContactUs": "Kontakta säljare", + "DE.Controllers.Main.textContinue": "Fortsätt", "DE.Controllers.Main.textConvertEquation": "Denna ekvation skapades med en gammal version av ekvationsredigeraren som inte längre stöds. Om du vill redigera den konverterar du ekvationen till Office Math ML-format.
Konvertera nu?", "DE.Controllers.Main.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren.
Kontakta vår försäljningsavdelning för att få en offert.", "DE.Controllers.Main.textDisconnect": "Anslutningen förlorades", @@ -613,12 +655,14 @@ "DE.Controllers.Main.textPaidFeature": "Betald funktion", "DE.Controllers.Main.textReconnect": "Anslutningen återställdes", "DE.Controllers.Main.textRemember": "Kom ihåg mitt val för alla filer", + "DE.Controllers.Main.textRememberMacros": "Kom ihåg mitt val för alla makron", "DE.Controllers.Main.textRenameError": "Användarnamn får inte var tomt.", "DE.Controllers.Main.textRenameLabel": "Ange namn för samarbete", "DE.Controllers.Main.textShape": "Form", "DE.Controllers.Main.textStrict": "Strikt läge", "DE.Controllers.Main.textTryUndoRedo": "Ångra/Återställ-funktionerna är inaktiva i snabbt samredigeringsläget.
Klicka på knappen 'Strikt läge' för att växla till strikt samredigeringsläge och redigera filen utan andra användares påverkan och skicka dina ändringar först efter att du har sparat dem. Du kan växla mellan samredigeringslägena med hjälp av avancerade inställningar.", "DE.Controllers.Main.textTryUndoRedoWarn": "Ångra-funktionerna är inaktiverade för snabb samredigeringsläge.", + "DE.Controllers.Main.textUndo": "Ångra", "DE.Controllers.Main.titleLicenseExp": "Licensen har utgått", "DE.Controllers.Main.titleServerVersion": "Editorn är uppdaterad", "DE.Controllers.Main.titleUpdateVersion": "Version ändrad", @@ -889,6 +933,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Du har nekats rätten att redigera filen.", "DE.Controllers.Navigation.txtBeginning": "Början av dokumentet", "DE.Controllers.Navigation.txtGotoBeginning": "Gå till början av dokumentet", + "DE.Controllers.Search.notcriticalErrorTitle": "Varning", + "DE.Controllers.Search.textNoTextFound": "De data som du har letat efter kunde inte hittas. Ändra dina sökalternativ.", + "DE.Controllers.Search.textReplaceSkipped": "Ersättningen har gjorts. {0} händelser hoppades över.", + "DE.Controllers.Search.textReplaceSuccess": "Sökning har gjorts. {0} förekomster har ersatts", "DE.Controllers.Statusbar.textDisconnect": "
Anslutningen förlorades

Försöker återansluta. Vänligen kontroller anslutningens inställningar.", "DE.Controllers.Statusbar.textHasChanges": "Nya ändringar har spårats", "DE.Controllers.Statusbar.textSetTrackChanges": "Du är i spårändringsläge", @@ -1285,12 +1333,16 @@ "DE.Views.CellsAddDialog.textUp": "Ovanför markören", "DE.Views.ChartSettings.textAdvanced": "Visa avancerade inställningar", "DE.Views.ChartSettings.textChartType": "Ändra diagramtyp", + "DE.Views.ChartSettings.textDown": "Ner", "DE.Views.ChartSettings.textEditData": "Redigera data", "DE.Views.ChartSettings.textHeight": "Höjd", + "DE.Views.ChartSettings.textLeft": "Vänster", "DE.Views.ChartSettings.textOriginalSize": "Verklig storlek", + "DE.Views.ChartSettings.textRight": "Höger", "DE.Views.ChartSettings.textSize": "Storlek", "DE.Views.ChartSettings.textStyle": "Stil", "DE.Views.ChartSettings.textUndock": "Lossa från panelen", + "DE.Views.ChartSettings.textUp": "Upp", "DE.Views.ChartSettings.textWidth": "Bredd", "DE.Views.ChartSettings.textWrap": "Figursättning", "DE.Views.ChartSettings.txtBehind": "Bakom text", @@ -1689,21 +1741,29 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Ändra behörigheter", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Kommentar", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Skapad ", + "DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Snabb webbvy", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Laddar...", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Senast ändrad av", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Senast ändrad", + "DE.Views.FileMenuPanels.DocumentInfo.txtNo": "Nej", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Ägare", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Sidor", + "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Sidstorlek", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Stycke", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "PDF-producent", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "Taggad PDF", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF-version", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Placering", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personer som har behörigheter", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboler med mellanrum", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Ämne", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboler", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiketter", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uppladdad", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Ord", + "DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Ja", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ändra behörigheter", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Personer som har behörigheter", "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Varning", @@ -1721,9 +1781,14 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Redigera samtidigt", "DE.Views.FileMenuPanels.Settings.strFast": "Snabb", "DE.Views.FileMenuPanels.Settings.strFontRender": "Fontförslag", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignorera ord med VERSALER", + "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignorera ord med siffror", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroinställningar", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Visa knappen Klistra in alternativ när innehållet klistras in", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Samarbeta i realtid", + "DE.Views.FileMenuPanels.Settings.strShowComments": "Visa kommentarer i text", + "DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Visa ändringar från andra användare", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Visa lösta kommentarer", "DE.Views.FileMenuPanels.Settings.strStrict": "Strikt", "DE.Views.FileMenuPanels.Settings.strTheme": "Gränssnittstema", "DE.Views.FileMenuPanels.Settings.strUnit": "Måttenhet", @@ -1745,9 +1810,13 @@ "DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Visa genom att klicka på pratbubblan", "DE.Views.FileMenuPanels.Settings.txtChangesTip": "Visa genom att peka på verktygstips", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", + "DE.Views.FileMenuPanels.Settings.txtCollaboration": "Samarbete", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Slå på mörkt läge för dokumentet", + "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Redigera och spara", + "DE.Views.FileMenuPanels.Settings.txtFastTip": "Samredigering i realtid. Alla ändringar sparas automatiskt", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Anpassa till sida", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Anpassa till bredd", + "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglyfer", "DE.Views.FileMenuPanels.Settings.txtInch": "Tum", "DE.Views.FileMenuPanels.Settings.txtLast": "Visa senaste", "DE.Views.FileMenuPanels.Settings.txtMac": "som OS X", @@ -1760,23 +1829,34 @@ "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Rättstavning", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Inaktivera allt", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Inaktivera alla makron utan avisering", + "DE.Views.FileMenuPanels.Settings.txtStrictTip": "Använd knappen \"Spara\" för att synkronisera ändringarna du och andra gör", + "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Använd Alt-tangenten för att navigera i användargränssnittet med tangentbordet", + "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Använd Option-tangenten för att navigera i användargränssnittet med tangentbordet", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Visa meddelanden", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Inaktivera alla makron med en avisering", "DE.Views.FileMenuPanels.Settings.txtWin": "som Windows", + "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Arbetsyta", "DE.Views.FormSettings.textAlways": "Alltid", "DE.Views.FormSettings.textAspect": "Lås bildformat", + "DE.Views.FormSettings.textAtLeast": "Minst", + "DE.Views.FormSettings.textAuto": "Auto", "DE.Views.FormSettings.textAutofit": "Anpassa automatiskt", "DE.Views.FormSettings.textBackgroundColor": "Bakgrundsfärg", "DE.Views.FormSettings.textCheckbox": "Kryssruta", "DE.Views.FormSettings.textColor": "Ramfärg", "DE.Views.FormSettings.textComb": "Kombination av tecken", "DE.Views.FormSettings.textCombobox": "Combo box", + "DE.Views.FormSettings.textComplex": "Komplext fält", "DE.Views.FormSettings.textConnected": "Anslutna fält", "DE.Views.FormSettings.textDelete": "Radera", + "DE.Views.FormSettings.textDigits": "Siffror", "DE.Views.FormSettings.textDisconnect": "Koppla ifrån", "DE.Views.FormSettings.textDropDown": "Dropdown", + "DE.Views.FormSettings.textExact": "Exakt", "DE.Views.FormSettings.textField": "Textfält", "DE.Views.FormSettings.textFixed": "Låst cellstorlek", + "DE.Views.FormSettings.textFormat": "Format", + "DE.Views.FormSettings.textFormatSymbols": "Tillåtna symboler", "DE.Views.FormSettings.textFromFile": "Från fil", "DE.Views.FormSettings.textFromStorage": "Från lagring", "DE.Views.FormSettings.textFromUrl": "Från URL", @@ -1788,11 +1868,13 @@ "DE.Views.FormSettings.textMulti": "Flerradigt fält", "DE.Views.FormSettings.textNever": "Aldrig", "DE.Views.FormSettings.textNoBorder": "Ingen ram", + "DE.Views.FormSettings.textNone": "Ingen", "DE.Views.FormSettings.textPlaceholder": "Platshållare", "DE.Views.FormSettings.textRadiobox": "Radioknapp", "DE.Views.FormSettings.textRequired": "Obligatoriskt", "DE.Views.FormSettings.textScale": "När ska skalas", "DE.Views.FormSettings.textSelectImage": "Välj bild", + "DE.Views.FormSettings.textTag": "Etikett", "DE.Views.FormSettings.textTip": "Tips", "DE.Views.FormSettings.textTipAdd": "Lägg till nytt värde", "DE.Views.FormSettings.textTipDelete": "Radera värde", @@ -1805,9 +1887,13 @@ "DE.Views.FormSettings.textWidth": "Cell-bredd", "DE.Views.FormsTab.capBtnCheckBox": "Kryssruta", "DE.Views.FormsTab.capBtnComboBox": "Combo box", + "DE.Views.FormsTab.capBtnComplex": "Komplext fält", + "DE.Views.FormsTab.capBtnDownloadForm": "Ladda ner som oform", "DE.Views.FormsTab.capBtnDropDown": "Dropdown", + "DE.Views.FormsTab.capBtnEmail": "E-postadress", "DE.Views.FormsTab.capBtnImage": "Bild", "DE.Views.FormsTab.capBtnNext": "Nästa fält", + "DE.Views.FormsTab.capBtnPhone": "Telefonnummer", "DE.Views.FormsTab.capBtnPrev": "Föregående fält", "DE.Views.FormsTab.capBtnRadioBox": "Radio Button", "DE.Views.FormsTab.capBtnSaveForm": "Spara som oform", @@ -1824,9 +1910,13 @@ "DE.Views.FormsTab.textSubmited": "Formuläret skickades framgångsrikt", "DE.Views.FormsTab.tipCheckBox": "Infoga checkbox", "DE.Views.FormsTab.tipComboBox": "Infoga combobox", + "DE.Views.FormsTab.tipComplexField": "Infoga komplext fält", + "DE.Views.FormsTab.tipDownloadForm": "Ladda ner en fil som ett ifyllbart OFORM-dokument", "DE.Views.FormsTab.tipDropDown": "Insert dropdown list", + "DE.Views.FormsTab.tipEmailField": "Infoga e-postadress", "DE.Views.FormsTab.tipImageField": "Infoga bild", "DE.Views.FormsTab.tipNextForm": "Gå till nästa fält", + "DE.Views.FormsTab.tipPhoneField": "Infoga telefonnummer", "DE.Views.FormsTab.tipPrevForm": "Gå till föregående fält", "DE.Views.FormsTab.tipRadioBox": "Insert radio button", "DE.Views.FormsTab.tipSaveForm": "Spara en fil som ifyllbart OFORM dokument", @@ -1978,6 +2068,7 @@ "DE.Views.LeftMenu.tipChat": "Chatt", "DE.Views.LeftMenu.tipComments": "Kommentarer", "DE.Views.LeftMenu.tipNavigation": "Navigation", + "DE.Views.LeftMenu.tipOutline": "Rubriker", "DE.Views.LeftMenu.tipPlugins": "Tillägg", "DE.Views.LeftMenu.tipSearch": "Sök", "DE.Views.LeftMenu.tipSupport": "Feedback & support", @@ -2000,6 +2091,7 @@ "DE.Views.LineNumbersDialog.textStartAt": "Börja på", "DE.Views.LineNumbersDialog.textTitle": "Radnummer", "DE.Views.LineNumbersDialog.txtAutoText": "Auto", + "DE.Views.Links.capBtnAddText": "Lägg till text", "DE.Views.Links.capBtnBookmarks": "Bokmärke", "DE.Views.Links.capBtnCaption": "Rubrik", "DE.Views.Links.capBtnContentsUpdate": "Uppdatera tabellen", @@ -2024,6 +2116,7 @@ "DE.Views.Links.textSwapNotes": "Byt fotnoter och slutnoter", "DE.Views.Links.textUpdateAll": "Uppdatera hela tabellen", "DE.Views.Links.textUpdatePages": "Uppdatera endast sidnummer", + "DE.Views.Links.tipAddText": "Inkludera rubrik i innehållsförteckningen", "DE.Views.Links.tipBookmarks": "Skapa ett bokmärke", "DE.Views.Links.tipCaption": "Infoga rubrik", "DE.Views.Links.tipContents": "Infoga innehållsförteckning", @@ -2034,6 +2127,8 @@ "DE.Views.Links.tipTableFigures": "Infoga siffertabell", "DE.Views.Links.tipTableFiguresUpdate": "Uppdatera tabellen med siffror", "DE.Views.Links.titleUpdateTOF": "Uppdatera tabellen med siffror", + "DE.Views.Links.txtDontShowTof": "Visas inte i innehållsförteckningen", + "DE.Views.Links.txtLevel": "Nivå", "DE.Views.ListSettingsDialog.textAuto": "Automatisk", "DE.Views.ListSettingsDialog.textCenter": "Centrera", "DE.Views.ListSettingsDialog.textLeft": "Vänster", @@ -2098,6 +2193,7 @@ "DE.Views.MailMergeSettings.txtPrev": "Till föregående post", "DE.Views.MailMergeSettings.txtUntitled": "Odöpt", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Sammanslagning misslyckads", + "DE.Views.Navigation.strNavigate": "Rubriker", "DE.Views.Navigation.txtCollapse": "Gömma alla", "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.", @@ -2105,11 +2201,15 @@ "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.txtFontSize": "Fontstorlek", "DE.Views.Navigation.txtHeadingAfter": "Ny rubrik efter", "DE.Views.Navigation.txtHeadingBefore": "Ny rubrik före", + "DE.Views.Navigation.txtLarge": "Stor", "DE.Views.Navigation.txtNewHeading": "Ny underrubrik", "DE.Views.Navigation.txtPromote": "Befordra", "DE.Views.Navigation.txtSelect": "Välj innehåll", + "DE.Views.Navigation.txtSettings": "Rubrikinställningar", + "DE.Views.Navigation.txtSmall": "Liten", "DE.Views.NoteSettingsDialog.textApply": "Tillämpa", "DE.Views.NoteSettingsDialog.textApplyTo": "Tillämpa ändringar", "DE.Views.NoteSettingsDialog.textContinue": "Kontinuerlig", @@ -2212,6 +2312,7 @@ "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Undertrycka radnummer", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabbar", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Justera", + "DE.Views.ParagraphSettingsAdvanced.textAll": "Alla", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Minst", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Flera", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Bakgrundsfärg", @@ -2222,17 +2323,21 @@ "DE.Views.ParagraphSettingsAdvanced.textBottom": "Nederst", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Centrerad", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Teckenavstånd", + "DE.Views.ParagraphSettingsAdvanced.textContext": "Kontextuella", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Standardstopp", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Effekter", "DE.Views.ParagraphSettingsAdvanced.textExact": "Exakt", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Första raden", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Hängande", + "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Historisk", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Justerad", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Ledare", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Vänster", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Nivå", + "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligaturer", "DE.Views.ParagraphSettingsAdvanced.textNone": "Ingen", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(inget)", + "DE.Views.ParagraphSettingsAdvanced.textOpenType": "Öppna Typfunktioner", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Position", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Ta bort", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Ta bort alla", @@ -2255,6 +2360,10 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Ställ in endast övre ram", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Inga ramar", + "DE.Views.ProtectDialog.textComments": "Kommentarer", + "DE.Views.ProtectDialog.txtOptional": "valfritt", + "DE.Views.ProtectDialog.txtProtect": "Skydda", + "DE.Views.ProtectDialog.txtRepeat": "Upprepa lösenord", "DE.Views.RightMenu.txtChartSettings": "Diagram inställningar", "DE.Views.RightMenu.txtFormSettings": "Inställningar formulär", "DE.Views.RightMenu.txtHeaderFooterSettings": "Inställningar för sidhuvud och sidfot", @@ -2445,6 +2554,8 @@ "DE.Views.TableSettings.tipOuter": "Ställ ytterkant endast", "DE.Views.TableSettings.tipRight": "Ställ yttre högra gränsen endast", "DE.Views.TableSettings.tipTop": "Ställ in endast yttre övre ram", + "DE.Views.TableSettings.txtGroupTable_Custom": "Anpassad", + "DE.Views.TableSettings.txtGroupTable_List": "Lista tabeller", "DE.Views.TableSettings.txtNoBorders": "Inga ramar", "DE.Views.TableSettings.txtTable_Accent": "Accent", "DE.Views.TableSettings.txtTable_Colorful": "Färgrik", @@ -2616,7 +2727,10 @@ "DE.Views.Toolbar.mniImageFromFile": "Bild från fil", "DE.Views.Toolbar.mniImageFromStorage": "Bild från lagring", "DE.Views.Toolbar.mniImageFromUrl": "Bild från URL", + "DE.Views.Toolbar.mniInsertSSE": "Infoga kalkylblad", "DE.Views.Toolbar.mniLowerCase": "Integraler", + "DE.Views.Toolbar.mniRemoveFooter": "Ta bort sidfot", + "DE.Views.Toolbar.mniRemoveHeader": "Ta bort sidhuvud", "DE.Views.Toolbar.mniSentenceCase": "Stor bokstav varje mening", "DE.Views.Toolbar.mniTextToTable": "Konvertera text till tabell", "DE.Views.Toolbar.mniToggleCase": "vÄXLA vERSALER", @@ -2711,6 +2825,7 @@ "DE.Views.Toolbar.tipControls": "Infoga innehållskontroller", "DE.Views.Toolbar.tipCopy": "Kopiera", "DE.Views.Toolbar.tipCopyStyle": "Hämta stil", + "DE.Views.Toolbar.tipCut": "Klipp ut", "DE.Views.Toolbar.tipDateTime": "Infoga aktuellt datum och tid", "DE.Views.Toolbar.tipDecFont": "Minska fontstorlek", "DE.Views.Toolbar.tipDecPrLeft": "Minska indrag", @@ -2746,6 +2861,9 @@ "DE.Views.Toolbar.tipMarkersFSquare": "Fyllda kvadratiska punkter", "DE.Views.Toolbar.tipMarkersHRound": "Ofyllda runda punkter", "DE.Views.Toolbar.tipMarkersStar": "Stjärn punkter", + "DE.Views.Toolbar.tipMultiLevelArticl": "Artiklar med flera nivåer", + "DE.Views.Toolbar.tipMultiLevelChapter": "Kapitel numrerade på flera nivåer", + "DE.Views.Toolbar.tipMultiLevelHeadings": "Numrerade rubriker på flera nivåer", "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", @@ -2762,6 +2880,7 @@ "DE.Views.Toolbar.tipRedo": "Gör om", "DE.Views.Toolbar.tipSave": "Spara", "DE.Views.Toolbar.tipSaveCoauth": "Spara ändringarna för andra användare att se dem.", + "DE.Views.Toolbar.tipSelectAll": "Välj alla", "DE.Views.Toolbar.tipSendBackward": "Flytta bakåt", "DE.Views.Toolbar.tipSendForward": "Flytta framåt", "DE.Views.Toolbar.tipShowHiddenChars": "Dolda tecken", @@ -2801,9 +2920,15 @@ "DE.Views.ViewTab.textFitToWidth": "Anpassa till bredden", "DE.Views.ViewTab.textInterfaceTheme": "Gränssnittstema", "DE.Views.ViewTab.textNavigation": "Navigation", + "DE.Views.ViewTab.textOutline": "Rubriker", "DE.Views.ViewTab.textRulers": "Linjaler", "DE.Views.ViewTab.textStatusBar": "Statusmätare", "DE.Views.ViewTab.textZoom": "Förstoring", + "DE.Views.ViewTab.tipDarkDocument": "Mörkt dokument", + "DE.Views.ViewTab.tipFitToPage": "Anpassa till sida", + "DE.Views.ViewTab.tipFitToWidth": "Anpassa till bredden", + "DE.Views.ViewTab.tipHeadings": "Rubriker", + "DE.Views.ViewTab.tipInterfaceTheme": "Gränssnittstema", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Fet", "DE.Views.WatermarkSettingsDialog.textColor": "Textfärg", diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index 7e2aa8cf0..41d7a90c4 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -279,11 +279,7 @@ "Common.Views.CopyWarningDialog.textToPaste": "Yapıştırmak için", "Common.Views.DocumentAccessDialog.textLoading": "Yükleniyor...", "Common.Views.DocumentAccessDialog.textTitle": "Paylaşım Ayarları", - "Common.Views.ExternalDiagramEditor.textClose": "Kapat", - "Common.Views.ExternalDiagramEditor.textSave": "Kaydet & Çık", "Common.Views.ExternalDiagramEditor.textTitle": "Grafik Editörü", - "Common.Views.ExternalMergeEditor.textClose": "Close", - "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textTitle": "Posta Alıcılarını Birleştir", "Common.Views.Header.labelCoUsersDescr": "Belgeyi düzenleyen kullanıcılar:", "Common.Views.Header.textAddFavorite": "Favori olarak işaretle", @@ -491,7 +487,6 @@ "Common.Views.SignDialog.tipFontName": "Yazı Tipi", "Common.Views.SignDialog.tipFontSize": "Yazı Boyutu", "Common.Views.SignSettingsDialog.textAllowComment": "İmzalayanın imza iletişim kutusuna yorum eklemesine izin ver", - "Common.Views.SignSettingsDialog.textInfo": "İmzalayan Bilgileri", "Common.Views.SignSettingsDialog.textInfoEmail": "E-posta", "Common.Views.SignSettingsDialog.textInfoName": "İsim", "Common.Views.SignSettingsDialog.textInfoTitle": "İmzalayan Ünvanı", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index c81a26277..b773fffd7 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -269,11 +269,7 @@ "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": "Додати в обране", @@ -462,7 +458,6 @@ "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": "Посада підписанта", diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json index 937092793..67fee2b9a 100644 --- a/apps/documenteditor/main/locale/vi.json +++ b/apps/documenteditor/main/locale/vi.json @@ -138,11 +138,7 @@ "Common.Views.CopyWarningDialog.textToPaste": "để Dán", "Common.Views.DocumentAccessDialog.textLoading": "Đang tải...", "Common.Views.DocumentAccessDialog.textTitle": "Cài đặt chia sẻ", - "Common.Views.ExternalDiagramEditor.textClose": "Đóng", - "Common.Views.ExternalDiagramEditor.textSave": "Lưu & Thoát", "Common.Views.ExternalDiagramEditor.textTitle": "Trình chỉnh sửa biểu đồ", - "Common.Views.ExternalMergeEditor.textClose": "Đóng", - "Common.Views.ExternalMergeEditor.textSave": "Lưu & Thoát", "Common.Views.ExternalMergeEditor.textTitle": "Người nhận thư trộn", "Common.Views.Header.labelCoUsersDescr": "Tài liệu hiện đang được chỉnh sửa bởi nhiều người dùng.", "Common.Views.Header.textBack": "Đi tới Tài liệu", diff --git a/apps/documenteditor/main/locale/zh-tw.json b/apps/documenteditor/main/locale/zh-tw.json index 482657003..4fd8941b8 100644 --- a/apps/documenteditor/main/locale/zh-tw.json +++ b/apps/documenteditor/main/locale/zh-tw.json @@ -287,14 +287,8 @@ "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.ExternalOleEditor.textClose": "關閉", - "Common.Views.ExternalOleEditor.textSave": "存檔並離開", "Common.Views.ExternalOleEditor.textTitle": "試算表編輯器", "Common.Views.Header.labelCoUsersDescr": "正在編輯文件的帳戶:", "Common.Views.Header.textAddFavorite": "標記為最愛收藏", @@ -503,7 +497,6 @@ "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": "簽名人稱號", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index 176f8745b..cf663d5c7 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -125,6 +125,165 @@ "Common.define.chartData.textScatterSmoothMarker": "带平滑线和数据标记的散点图", "Common.define.chartData.textStock": "股价图", "Common.define.chartData.textSurface": "平面", + "Common.define.smartArt.textAccentedPicture": "重音图片", + "Common.define.smartArt.textAccentProcess": "重点流程", + "Common.define.smartArt.textAlternatingFlow": "交替流", + "Common.define.smartArt.textAlternatingHexagons": "交替六边形", + "Common.define.smartArt.textAlternatingPictureBlocks": "交替图片块", + "Common.define.smartArt.textAlternatingPictureCircles": "交替图片圆形", + "Common.define.smartArt.textArchitectureLayout": "结构布局", + "Common.define.smartArt.textArrowRibbon": "带形箭头", + "Common.define.smartArt.textAscendingPictureAccentProcess": "升序图片重点流程", + "Common.define.smartArt.textBalance": "平衡", + "Common.define.smartArt.textBasicBendingProcess": "基本蛇形流程", + "Common.define.smartArt.textBasicBlockList": "基本列表", + "Common.define.smartArt.textBasicChevronProcess": "基本 V 形流程", + "Common.define.smartArt.textBasicCycle": "基本循环", + "Common.define.smartArt.textBasicMatrix": "基本矩阵", + "Common.define.smartArt.textBasicPie": "基本饼图", + "Common.define.smartArt.textBasicProcess": "基本流程", + "Common.define.smartArt.textBasicPyramid": "基本棱锥图", + "Common.define.smartArt.textBasicRadial": "基本射线图", + "Common.define.smartArt.textBasicTarget": "基本目标图", + "Common.define.smartArt.textBasicTimeline": "基本时间线", + "Common.define.smartArt.textBasicVenn": "基本维恩图", + "Common.define.smartArt.textBendingPictureAccentList": "蛇形图片重点列表", + "Common.define.smartArt.textBendingPictureBlocks": "蛇形图片块", + "Common.define.smartArt.textBendingPictureCaption": "蛇形图片题注", + "Common.define.smartArt.textBendingPictureCaptionList": "蛇形图片题注列表", + "Common.define.smartArt.textBendingPictureSemiTranparentText": "蛇形图片半透明文本", + "Common.define.smartArt.textBlockCycle": "块循环", + "Common.define.smartArt.textBubblePictureList": "气泡图片列表", + "Common.define.smartArt.textCaptionedPictures": "题注图片", + "Common.define.smartArt.textChevronAccentProcess": "V 形重点流程", + "Common.define.smartArt.textChevronList": "V 型列表", + "Common.define.smartArt.textCircleAccentTimeline": "圆形重点日程表", + "Common.define.smartArt.textCircleArrowProcess": "圆箭头流程", + "Common.define.smartArt.textCirclePictureHierarchy": "圆形图片层次结构", + "Common.define.smartArt.textCircleProcess": "循环流程", + "Common.define.smartArt.textCircleRelationship": "循环关系", + "Common.define.smartArt.textCircularBendingProcess": "环状蛇形流程", + "Common.define.smartArt.textCircularPictureCallout": "圆形图片标注", + "Common.define.smartArt.textClosedChevronProcess": "闭合 V 形流程", + "Common.define.smartArt.textContinuousArrowProcess": "连续箭头流程", + "Common.define.smartArt.textContinuousBlockProcess": "连续块状流程", + "Common.define.smartArt.textContinuousCycle": "连续循环", + "Common.define.smartArt.textContinuousPictureList": "连续图片列表", + "Common.define.smartArt.textConvergingArrows": "汇聚箭头", + "Common.define.smartArt.textConvergingRadial": "聚合射线", + "Common.define.smartArt.textConvergingText": "聚合文本", + "Common.define.smartArt.textCounterbalanceArrows": "平衡箭头", + "Common.define.smartArt.textCycle": "循环", + "Common.define.smartArt.textCycleMatrix": "循环矩阵", + "Common.define.smartArt.textDescendingBlockList": "降序块列表", + "Common.define.smartArt.textDescendingProcess": "降序流程", + "Common.define.smartArt.textDetailedProcess": "详细流程", + "Common.define.smartArt.textDivergingArrows": "分叉箭头", + "Common.define.smartArt.textDivergingRadial": "分离射线", + "Common.define.smartArt.textEquation": "公式", + "Common.define.smartArt.textFramedTextPicture": "带框架的文本图片", + "Common.define.smartArt.textFunnel": "漏斗", + "Common.define.smartArt.textGear": "齿轮", + "Common.define.smartArt.textGridMatrix": "网格矩阵", + "Common.define.smartArt.textGroupedList": "分组列表", + "Common.define.smartArt.textHalfCircleOrganizationChart": "半圆组织结构图", + "Common.define.smartArt.textHexagonCluster": "六边形群集", + "Common.define.smartArt.textHexagonRadial": "放射状六边形", + "Common.define.smartArt.textHierarchy": "层次结构", + "Common.define.smartArt.textHierarchyList": "层次结构列表", + "Common.define.smartArt.textHorizontalBulletList": "水平项目符号列表", + "Common.define.smartArt.textHorizontalHierarchy": "水平层次结构", + "Common.define.smartArt.textHorizontalLabeledHierarchy": "水平标记的层次结构", + "Common.define.smartArt.textHorizontalMultiLevelHierarchy": "水平多层层次结构", + "Common.define.smartArt.textHorizontalOrganizationChart": "水平组织结构图", + "Common.define.smartArt.textHorizontalPictureList": "水平图片列表", + "Common.define.smartArt.textIncreasingArrowProcess": "递增箭头流程", + "Common.define.smartArt.textIncreasingCircleProcess": "递增循环流程", + "Common.define.smartArt.textInterconnectedBlockProcess": "互联块流程", + "Common.define.smartArt.textInterconnectedRings": "互联环", + "Common.define.smartArt.textInvertedPyramid": "倒棱锥图", + "Common.define.smartArt.textLabeledHierarchy": "标记的层次结构", + "Common.define.smartArt.textLinearVenn": "线性维恩图", + "Common.define.smartArt.textLinedList": "线型列表", + "Common.define.smartArt.textList": "列表", + "Common.define.smartArt.textMatrix": "矩阵", + "Common.define.smartArt.textMultidirectionalCycle": "多向循环", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "姓名和职务组织结构图", + "Common.define.smartArt.textNestedTarget": "嵌套目标图", + "Common.define.smartArt.textNondirectionalCycle": "不定向循环", + "Common.define.smartArt.textOpposingArrows": "反向箭头", + "Common.define.smartArt.textOpposingIdeas": "对立观点", + "Common.define.smartArt.textOrganizationChart": "组织结构图", + "Common.define.smartArt.textOther": "其他", + "Common.define.smartArt.textPhasedProcess": "分阶段流程", + "Common.define.smartArt.textPicture": "图片", + "Common.define.smartArt.textPictureAccentBlocks": "图片重点块", + "Common.define.smartArt.textPictureAccentList": "图片重点列表", + "Common.define.smartArt.textPictureAccentProcess": "图片重点流程", + "Common.define.smartArt.textPictureCaptionList": "图片题注列表", + "Common.define.smartArt.textPictureFrame": "图片框", + "Common.define.smartArt.textPictureGrid": "图片网格", + "Common.define.smartArt.textPictureLineup": "图片排列", + "Common.define.smartArt.textPictureOrganizationChart": "图片组织结构图", + "Common.define.smartArt.textPictureStrips": "图片条纹", + "Common.define.smartArt.textPieProcess": "饼图流程", + "Common.define.smartArt.textPlusAndMinus": "加号和减号", + "Common.define.smartArt.textProcess": "流程", + "Common.define.smartArt.textProcessArrows": "流程箭头", + "Common.define.smartArt.textProcessList": "流程列表", + "Common.define.smartArt.textPyramid": "棱锥型", + "Common.define.smartArt.textPyramidList": "棱锥型列表", + "Common.define.smartArt.textRadialCluster": "射线群集", + "Common.define.smartArt.textRadialCycle": "射线循环", + "Common.define.smartArt.textRadialList": "射线列表", + "Common.define.smartArt.textRadialPictureList": "放射状图片列表", + "Common.define.smartArt.textRadialVenn": "射线维恩图", + "Common.define.smartArt.textRandomToResultProcess": "随机至结果流程", + "Common.define.smartArt.textRelationship": "关系", + "Common.define.smartArt.textRepeatingBendingProcess": "重复蛇形流程", + "Common.define.smartArt.textReverseList": "反转列表", + "Common.define.smartArt.textSegmentedCycle": "分段循环", + "Common.define.smartArt.textSegmentedProcess": "分段流程", + "Common.define.smartArt.textSegmentedPyramid": "分段棱锥图", + "Common.define.smartArt.textSnapshotPictureList": "快照图片列表", + "Common.define.smartArt.textSpiralPicture": "螺旋图", + "Common.define.smartArt.textSquareAccentList": "方形重点列表", + "Common.define.smartArt.textStackedList": "堆叠列表", + "Common.define.smartArt.textStackedVenn": "堆叠维恩图", + "Common.define.smartArt.textStaggeredProcess": "交错流程", + "Common.define.smartArt.textStepDownProcess": "步骤下移流程", + "Common.define.smartArt.textStepUpProcess": "升级流程", + "Common.define.smartArt.textSubStepProcess": "子步骤流程", + "Common.define.smartArt.textTabbedArc": "拱状", + "Common.define.smartArt.textTableHierarchy": "表层次结构", + "Common.define.smartArt.textTableList": "表格列表", + "Common.define.smartArt.textTabList": "选项卡列表", + "Common.define.smartArt.textTargetList": "目标图列表", + "Common.define.smartArt.textTextCycle": "文本循环", + "Common.define.smartArt.textThemePictureAccent": "主题图片重点", + "Common.define.smartArt.textThemePictureAlternatingAccent": "主题图片交替重点", + "Common.define.smartArt.textThemePictureGrid": "主题图片网格", + "Common.define.smartArt.textTitledMatrix": "带标题的矩阵", + "Common.define.smartArt.textTitledPictureAccentList": "标题图片重点列表", + "Common.define.smartArt.textTitledPictureBlocks": "标题图片块", + "Common.define.smartArt.textTitlePictureLineup": "标题图片排列", + "Common.define.smartArt.textTrapezoidList": "梯形列表", + "Common.define.smartArt.textUpwardArrow": "向上箭头", + "Common.define.smartArt.textVaryingWidthList": "不同宽度列表", + "Common.define.smartArt.textVerticalAccentList": "垂直重点列表", + "Common.define.smartArt.textVerticalArrowList": "垂直箭头列表", + "Common.define.smartArt.textVerticalBendingProcess": "垂直蛇形流程", + "Common.define.smartArt.textVerticalBlockList": "垂直块列表", + "Common.define.smartArt.textVerticalBoxList": "垂直框列表", + "Common.define.smartArt.textVerticalBracketList": "垂直括弧列表", + "Common.define.smartArt.textVerticalBulletList": "垂直项目符号列表", + "Common.define.smartArt.textVerticalChevronList": "垂直 V 形列表", + "Common.define.smartArt.textVerticalCircleList": "垂直圆形列表", + "Common.define.smartArt.textVerticalCurvedList": "垂直曲形列表", + "Common.define.smartArt.textVerticalEquation": "垂直公式", + "Common.define.smartArt.textVerticalPictureAccentList": "垂直图片重点列表", + "Common.define.smartArt.textVerticalPictureList": "垂直图片列表", + "Common.define.smartArt.textVerticalProcess": "垂直流程", "Common.Translation.textMoreButton": "更多", "Common.Translation.warnFileLocked": "您不能编辑此文件,因为它正在另一个应用程序中被编辑。", "Common.Translation.warnFileLockedBtnEdit": "建立副本", @@ -186,7 +345,7 @@ "Common.UI.SearchDialog.textSearchStart": "在这里输入你的文字", "Common.UI.SearchDialog.textTitle": "查找和替换", "Common.UI.SearchDialog.textTitle2": "查找", - "Common.UI.SearchDialog.textWholeWords": "仅全字", + "Common.UI.SearchDialog.textWholeWords": "整词匹配", "Common.UI.SearchDialog.txtBtnHideReplace": "隐藏替换", "Common.UI.SearchDialog.txtBtnReplace": "替换", "Common.UI.SearchDialog.txtBtnReplaceAll": "全部替换", @@ -287,14 +446,10 @@ "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.ExternalEditor.textClose": "关闭", + "Common.Views.ExternalEditor.textSave": "保存并退出", "Common.Views.ExternalMergeEditor.textTitle": "邮件合并收件人", - "Common.Views.ExternalOleEditor.textClose": "关闭", - "Common.Views.ExternalOleEditor.textSave": "保存并退出", "Common.Views.ExternalOleEditor.textTitle": "电子表格编辑器", "Common.Views.Header.labelCoUsersDescr": "正在编辑文件的用户:", "Common.Views.Header.textAddFavorite": "记作喜爱内容", @@ -360,6 +515,7 @@ "Common.Views.Plugins.textStart": "开始", "Common.Views.Plugins.textStop": "停止", "Common.Views.Protection.hintAddPwd": "使用密码加密", + "Common.Views.Protection.hintDelPwd": "删除密码", "Common.Views.Protection.hintPwd": "修改或删除密码", "Common.Views.Protection.hintSignature": "添加数字签名或签名行", "Common.Views.Protection.txtAddPwd": "添加密码", @@ -377,7 +533,7 @@ "Common.Views.ReviewChanges.mniFromStorage": " 存储中的文档", "Common.Views.ReviewChanges.mniFromUrl": "url中的文档", "Common.Views.ReviewChanges.mniSettings": "比较设置", - "Common.Views.ReviewChanges.strFast": "快速", + "Common.Views.ReviewChanges.strFast": "自动", "Common.Views.ReviewChanges.strFastDesc": "自动共同编辑模式,自动保存修改痕迹。", "Common.Views.ReviewChanges.strStrict": "手动", "Common.Views.ReviewChanges.strStrictDesc": "使用“保存”按钮同步你和其他人的修改。", @@ -484,7 +640,7 @@ "Common.Views.SearchPanel.textSearchHasStopped": "搜索已停止", "Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "这里显示的结果太多了", - "Common.Views.SearchPanel.textWholeWords": "仅全字", + "Common.Views.SearchPanel.textWholeWords": "整词匹配", "Common.Views.SearchPanel.tipNextResult": "下一个", "Common.Views.SearchPanel.tipPreviousResult": "上一个", "Common.Views.SelectFileDlg.textLoading": "载入中", @@ -505,10 +661,10 @@ "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.textDefInstruction": "在签署本文件之前,请确保您所签署的内容是正确。", + "Common.Views.SignSettingsDialog.textInfoEmail": "建议签署人电邮", + "Common.Views.SignSettingsDialog.textInfoName": "建议签署人", + "Common.Views.SignSettingsDialog.textInfoTitle": "建议签署人职务", "Common.Views.SignSettingsDialog.textInstructions": "给签名者的说明", "Common.Views.SignSettingsDialog.textShowDate": "在签名行中显示签名日期", "Common.Views.SignSettingsDialog.textTitle": "签名设置", @@ -559,6 +715,7 @@ "DE.Controllers.LeftMenu.warnReplaceString": "{0}不是可用于“替换字段”的有效特殊字符。", "DE.Controllers.Main.applyChangesTextText": "载入更改...", "DE.Controllers.Main.applyChangesTitleText": "加载更改", + "DE.Controllers.Main.confirmMaxChangesSize": "行动的大小超过了对您服务器设置的限制。
按 \"撤消\"取消您的最后一次行动,或按\"继续\"在本地保留该行动(您需要下载文件或复制其内容以确保没有任何损失)。", "DE.Controllers.Main.convertationTimeoutText": "转换超时", "DE.Controllers.Main.criticalErrorExtText": "按“确定”返回该文件列表。", "DE.Controllers.Main.criticalErrorTitle": "错误:", @@ -591,6 +748,7 @@ "DE.Controllers.Main.errorMailMergeLoadFile": "加载文件失败了。请选择另一份文件。", "DE.Controllers.Main.errorMailMergeSaveFile": "合并失败", "DE.Controllers.Main.errorNoTOC": "没有目录要更新。你可以从引用标签插入一个目录。", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "输入的密码不正确。
请检查 CAPS LOCK 键的状态,确认输入密码的大小写正确。", "DE.Controllers.Main.errorProcessSaveResult": "保存失败", "DE.Controllers.Main.errorServerVersion": "该编辑版本已经更新。该页面将被重新加载以应用更改。", "DE.Controllers.Main.errorSessionAbsolute": "文档编辑会话已过期。请重新加载页面。", @@ -647,6 +805,7 @@ "DE.Controllers.Main.textClose": "关闭", "DE.Controllers.Main.textCloseTip": "点击关闭提示", "DE.Controllers.Main.textContactUs": "联系销售", + "DE.Controllers.Main.textContinue": "继续", "DE.Controllers.Main.textConvertEquation": "这个公式是由一个早期版本的公式编辑器创建的。这个版本现在不受支持了。要想编辑这个公式,你需要将其转换成 Office Math ML 格式.
现在转换吗?", "DE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。
请联系我们的销售部门获取报价。", "DE.Controllers.Main.textDisconnect": "网络连接失败", @@ -666,7 +825,8 @@ "DE.Controllers.Main.textShape": "形状", "DE.Controllers.Main.textStrict": "手动模式", "DE.Controllers.Main.textTryUndoRedo": "对于自动的协同编辑模式,取消/重做功能是禁用的。< br >单击“手动模式”按钮切换到手动协同编辑模式,这样,编辑该文件时只有您保存修改之后,其他用户才能访问这些修改。您可以使用编辑器高级设置易于切换编辑模式。", - "DE.Controllers.Main.textTryUndoRedoWarn": "快速共同编辑模式下,撤销/重做功能被禁用。", + "DE.Controllers.Main.textTryUndoRedoWarn": "自动共同编辑模式下,撤销/重做功能被禁用。", + "DE.Controllers.Main.textUndo": "撤消", "DE.Controllers.Main.titleLicenseExp": "许可证过期", "DE.Controllers.Main.titleServerVersion": "编辑器已更新", "DE.Controllers.Main.titleUpdateVersion": "版本已变化", @@ -1336,16 +1496,31 @@ "DE.Views.CellsAddDialog.textRow": "行", "DE.Views.CellsAddDialog.textTitle": "插入几个", "DE.Views.CellsAddDialog.textUp": "光标上方", + "DE.Views.ChartSettings.text3dDepth": "深度(原始深度百分比)", + "DE.Views.ChartSettings.text3dHeight": "高度(原始高度百分比)", + "DE.Views.ChartSettings.text3dRotation": "三维旋转", "DE.Views.ChartSettings.textAdvanced": "显示高级设置", + "DE.Views.ChartSettings.textAutoscale": "自动缩放", "DE.Views.ChartSettings.textChartType": "更改图表类型", + "DE.Views.ChartSettings.textDefault": "默认旋转", + "DE.Views.ChartSettings.textDown": "向下", "DE.Views.ChartSettings.textEditData": "编辑数据", "DE.Views.ChartSettings.textHeight": "高度", + "DE.Views.ChartSettings.textLeft": "向左", + "DE.Views.ChartSettings.textNarrow": "缩小视野", "DE.Views.ChartSettings.textOriginalSize": "实际大小", + "DE.Views.ChartSettings.textPerspective": "透视", + "DE.Views.ChartSettings.textRight": "向右", + "DE.Views.ChartSettings.textRightAngle": "直角坐标轴", "DE.Views.ChartSettings.textSize": "大小", "DE.Views.ChartSettings.textStyle": "类型", "DE.Views.ChartSettings.textUndock": "离开面板", + "DE.Views.ChartSettings.textUp": "向上", + "DE.Views.ChartSettings.textWiden": "扩大视野", "DE.Views.ChartSettings.textWidth": "宽度", "DE.Views.ChartSettings.textWrap": "包裹风格", + "DE.Views.ChartSettings.textX": "X 旋转", + "DE.Views.ChartSettings.textY": "Y 旋转", "DE.Views.ChartSettings.txtBehind": "衬于​​文字下方", "DE.Views.ChartSettings.txtInFront": "浮于文字上方", "DE.Views.ChartSettings.txtInline": "嵌入型​​", @@ -1435,14 +1610,24 @@ "DE.Views.DateTimeDialog.textLang": "语言", "DE.Views.DateTimeDialog.textUpdate": "自动更新", "DE.Views.DateTimeDialog.txtTitle": "日期、时间", + "DE.Views.DocProtection.hintProtectDoc": "保护文档", + "DE.Views.DocProtection.txtDocProtectedComment": "文件是受保护的。
您仅能对这个文件添加评论。", + "DE.Views.DocProtection.txtDocProtectedForms": "文件是受保护的。
您仅能填写本文件中的字段。", + "DE.Views.DocProtection.txtDocProtectedTrack": "文件是受保护的。
您可以编辑这个文件,但所做的变化都会被跟踪。", + "DE.Views.DocProtection.txtDocProtectedView": "文件是受保护的。
您仅能查看这个文件。", + "DE.Views.DocProtection.txtDocUnlockDescription": "输入密码以解除文件的保护", + "DE.Views.DocProtection.txtProtectDoc": "保护文档", "DE.Views.DocumentHolder.aboveText": "以上", "DE.Views.DocumentHolder.addCommentText": "添加批注", "DE.Views.DocumentHolder.advancedDropCapText": "首字下沉设置", + "DE.Views.DocumentHolder.advancedEquationText": "方程式设置", "DE.Views.DocumentHolder.advancedFrameText": "框架高级设置", "DE.Views.DocumentHolder.advancedParagraphText": "段落高级设置", "DE.Views.DocumentHolder.advancedTableText": "高级表设置", "DE.Views.DocumentHolder.advancedText": "高级设置", "DE.Views.DocumentHolder.alignmentText": "对齐", + "DE.Views.DocumentHolder.allLinearText": "全部 - 线性", + "DE.Views.DocumentHolder.allProfText": "全部 - 专业", "DE.Views.DocumentHolder.belowText": "下面", "DE.Views.DocumentHolder.breakBeforeText": "段前分页", "DE.Views.DocumentHolder.bulletsText": "符号和编号", @@ -1451,6 +1636,8 @@ "DE.Views.DocumentHolder.centerText": "中心", "DE.Views.DocumentHolder.chartText": "图表高级设置", "DE.Views.DocumentHolder.columnText": "列", + "DE.Views.DocumentHolder.currLinearText": "当前 - 线性", + "DE.Views.DocumentHolder.currProfText": "当前 - 专业", "DE.Views.DocumentHolder.deleteColumnText": "删除列", "DE.Views.DocumentHolder.deleteRowText": "删除行", "DE.Views.DocumentHolder.deleteTableText": "删除表", @@ -1463,6 +1650,7 @@ "DE.Views.DocumentHolder.editFooterText": "编辑页脚", "DE.Views.DocumentHolder.editHeaderText": "编辑页眉", "DE.Views.DocumentHolder.editHyperlinkText": "编辑超链接", + "DE.Views.DocumentHolder.eqToInlineText": "改成内联", "DE.Views.DocumentHolder.guestText": "游客", "DE.Views.DocumentHolder.hyperlinkText": "超链接", "DE.Views.DocumentHolder.ignoreAllSpellText": "忽略所有", @@ -1477,6 +1665,7 @@ "DE.Views.DocumentHolder.insertText": "插入", "DE.Views.DocumentHolder.keepLinesText": "保持同一行", "DE.Views.DocumentHolder.langText": "选择语言", + "DE.Views.DocumentHolder.latexText": "LaTeX", "DE.Views.DocumentHolder.leftText": "左", "DE.Views.DocumentHolder.loadSpellText": "加载变体...", "DE.Views.DocumentHolder.mergeCellsText": "合并单元格", @@ -1664,6 +1853,7 @@ "DE.Views.DocumentHolder.txtUnderbar": "在文本栏", "DE.Views.DocumentHolder.txtUngroup": "取消组合", "DE.Views.DocumentHolder.txtWarnUrl": "点击该链接可能会损害你的设备或数据。
你确定要继续吗?", + "DE.Views.DocumentHolder.unicodeText": "Unicode", "DE.Views.DocumentHolder.updateStyleText": "更新%1样式", "DE.Views.DocumentHolder.vertAlignText": "垂直对齐", "DE.Views.DropcapSettingsAdvanced.strBorders": "边框和填充", @@ -1760,6 +1950,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "统计", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主题", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "符号", + "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "标签", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "标题", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "上载", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "字幕", @@ -1779,7 +1970,7 @@ "DE.Views.FileMenuPanels.ProtectDoc.txtView": "查看签名", "DE.Views.FileMenuPanels.Settings.okButtonText": "应用", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "共同编辑模式", - "DE.Views.FileMenuPanels.Settings.strFast": "快速", + "DE.Views.FileMenuPanels.Settings.strFast": "自动", "DE.Views.FileMenuPanels.Settings.strFontRender": "字体微调方式", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "忽略大写单词", "DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "忽略带数字的单词", @@ -2073,6 +2264,7 @@ "DE.Views.LeftMenu.tipComments": "批注", "DE.Views.LeftMenu.tipNavigation": "导航", "DE.Views.LeftMenu.tipOutline": "标题", + "DE.Views.LeftMenu.tipPageThumbnails": "页面缩略图", "DE.Views.LeftMenu.tipPlugins": "插件", "DE.Views.LeftMenu.tipSearch": "搜索", "DE.Views.LeftMenu.tipSupport": "反馈和支持", @@ -2380,6 +2572,18 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "仅限顶部边框", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自动", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "没有边框", + "DE.Views.ProtectDialog.textComments": "评论", + "DE.Views.ProtectDialog.textForms": "填写表单", + "DE.Views.ProtectDialog.textReview": "修订", + "DE.Views.ProtectDialog.textView": "不允许任何更改(只读)", + "DE.Views.ProtectDialog.txtAllow": "仅允许在文档中进行此类型的编辑", + "DE.Views.ProtectDialog.txtIncorrectPwd": "确认的密码与先前输入的不一致。", + "DE.Views.ProtectDialog.txtOptional": "可选", + "DE.Views.ProtectDialog.txtPassword": "密码", + "DE.Views.ProtectDialog.txtProtect": "保护", + "DE.Views.ProtectDialog.txtRepeat": "重复输入密码", + "DE.Views.ProtectDialog.txtTitle": "保护", + "DE.Views.ProtectDialog.txtWarning": "警告: 如果丢失或忘记密码,则无法将其恢复。请妥善保存。", "DE.Views.RightMenu.txtChartSettings": "图表设置", "DE.Views.RightMenu.txtFormSettings": "表单设置", "DE.Views.RightMenu.txtHeaderFooterSettings": "页眉和页脚设置", @@ -2570,12 +2774,20 @@ "DE.Views.TableSettings.tipOuter": "仅限外部边框", "DE.Views.TableSettings.tipRight": "仅设置外边界", "DE.Views.TableSettings.tipTop": "仅限外部边框", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "带边框及线条的表格", + "DE.Views.TableSettings.txtGroupTable_Custom": "自定义", + "DE.Views.TableSettings.txtGroupTable_Grid": "网格表", + "DE.Views.TableSettings.txtGroupTable_List": "清单表", + "DE.Views.TableSettings.txtGroupTable_Plain": "普通表格", "DE.Views.TableSettings.txtNoBorders": "没有边框", "DE.Views.TableSettings.txtTable_Accent": "强调", + "DE.Views.TableSettings.txtTable_Bordered": "带边框的", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "带边框及线条的", "DE.Views.TableSettings.txtTable_Colorful": "多彩", "DE.Views.TableSettings.txtTable_Dark": "黑暗的", "DE.Views.TableSettings.txtTable_GridTable": "表格网格", "DE.Views.TableSettings.txtTable_Light": "光", + "DE.Views.TableSettings.txtTable_Lined": "带线条的", "DE.Views.TableSettings.txtTable_ListTable": "列表表", "DE.Views.TableSettings.txtTable_PlainTable": "简单的表", "DE.Views.TableSettings.txtTable_TableGrid": "表格的网格", @@ -2710,6 +2922,7 @@ "DE.Views.Toolbar.capBtnInsImage": "图片", "DE.Views.Toolbar.capBtnInsPagebreak": "分隔符", "DE.Views.Toolbar.capBtnInsShape": "形状", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "符号", "DE.Views.Toolbar.capBtnInsTable": "表格", "DE.Views.Toolbar.capBtnInsTextart": "艺术字", @@ -2856,13 +3069,16 @@ "DE.Views.Toolbar.tipIncPrLeft": "增加缩进", "DE.Views.Toolbar.tipInsertChart": "插入图表", "DE.Views.Toolbar.tipInsertEquation": "插入方程", + "DE.Views.Toolbar.tipInsertHorizontalText": "插入横排文本框", "DE.Views.Toolbar.tipInsertImage": "插入图片", "DE.Views.Toolbar.tipInsertNum": "插入页码", "DE.Views.Toolbar.tipInsertShape": "自动插入形状", + "DE.Views.Toolbar.tipInsertSmartArt": "插入 SmartArt", "DE.Views.Toolbar.tipInsertSymbol": "插入符号", "DE.Views.Toolbar.tipInsertTable": "插入表", "DE.Views.Toolbar.tipInsertText": "插入文字", "DE.Views.Toolbar.tipInsertTextArt": "插入艺术字", + "DE.Views.Toolbar.tipInsertVerticalText": "插入竖排文本框", "DE.Views.Toolbar.tipLineNumbers": "显示行号", "DE.Views.Toolbar.tipLineSpace": "段线间距", "DE.Views.Toolbar.tipMailRecepients": "邮件合并", diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/big/combine.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/combine.png new file mode 100644 index 000000000..b20ba06bb Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/combine.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/big/restrict-editing.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/restrict-editing.png new file mode 100644 index 000000000..a831cdfe6 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/restrict-editing.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.5x/big/combine.png b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/combine.png new file mode 100644 index 000000000..ea709cf66 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/combine.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.5x/big/restrict-editing.png b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/restrict-editing.png new file mode 100644 index 000000000..714b66191 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/restrict-editing.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/big/combine.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/combine.png new file mode 100644 index 000000000..4e1d7a93c Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/combine.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/big/restrict-editing.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/restrict-editing.png new file mode 100644 index 000000000..e10007382 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/restrict-editing.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/big/combine.png b/apps/documenteditor/main/resources/img/toolbar/1x/big/combine.png new file mode 100644 index 000000000..b49b49a44 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1x/big/combine.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/big/restrict-editing.png b/apps/documenteditor/main/resources/img/toolbar/1x/big/restrict-editing.png new file mode 100644 index 000000000..c3e69e64f Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1x/big/restrict-editing.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/2x/big/combine.png b/apps/documenteditor/main/resources/img/toolbar/2x/big/combine.png new file mode 100644 index 000000000..159293d26 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/2x/big/combine.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/2x/big/restrict-editing.png b/apps/documenteditor/main/resources/img/toolbar/2x/big/restrict-editing.png new file mode 100644 index 000000000..8164cba4b Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/2x/big/restrict-editing.png differ diff --git a/apps/documenteditor/main/resources/less/filemenu.less b/apps/documenteditor/main/resources/less/filemenu.less index 650055751..eab2e5353 100644 --- a/apps/documenteditor/main/resources/less/filemenu.less +++ b/apps/documenteditor/main/resources/less/filemenu.less @@ -143,6 +143,15 @@ &epub { background: ~"url('@{common-image-const-path}/doc-formats/epub.svg') no-repeat center"; } + &xps { + background: ~"url('@{common-image-const-path}/doc-formats/xps.svg') no-repeat center"; + } + &oxps { + background: ~"url('@{common-image-const-path}/doc-formats/oxps.svg') no-repeat center"; + } + &djvu { + background: ~"url('@{common-image-const-path}/doc-formats/djvu.svg') no-repeat center"; + } } div { @@ -395,6 +404,7 @@ &.selected { background-color: @highlight-button-pressed-ie; background-color: @highlight-button-pressed; + color: @text-normal-pressed-ie; color: @text-normal-pressed; } } diff --git a/apps/documenteditor/main/resources/less/rightmenu.less b/apps/documenteditor/main/resources/less/rightmenu.less index d0d81176d..0bdf0da76 100644 --- a/apps/documenteditor/main/resources/less/rightmenu.less +++ b/apps/documenteditor/main/resources/less/rightmenu.less @@ -168,3 +168,25 @@ margin-top: 4px; } } + +#id-table-menu-template { + .group-description { + padding: 3px 0 3px 10px; + .font-weight-bold(); + + } + + .group-items-container { + .item { + &:hover { + .box-shadow(0 0 0 2px @border-preview-hover-ie) !important; + .box-shadow(0 0 0 @scaled-two-px-value @border-preview-hover) !important; + } + + &.selected { + .box-shadow(0 0 0 2px @border-preview-select-ie) !important; + .box-shadow(0 0 0 @scaled-two-px-value @border-preview-select) !important; + } + } + } +} \ No newline at end of file diff --git a/apps/documenteditor/main/resources/less/toolbar.less b/apps/documenteditor/main/resources/less/toolbar.less index a6474ba0a..0f8711ab4 100644 --- a/apps/documenteditor/main/resources/less/toolbar.less +++ b/apps/documenteditor/main/resources/less/toolbar.less @@ -83,6 +83,7 @@ &.disabled { > .item { cursor: default; + opacity: @component-disabled-opacity-ie; opacity: @component-disabled-opacity; &:hover { @@ -129,7 +130,7 @@ border-radius: 0; padding: 3px 10px; color: #ffffff; - font: 11px arial; + .font-size-normal(); white-space: nowrap; letter-spacing: 1px; overflow: hidden; @@ -162,7 +163,8 @@ margin-left: 2px; } -#special-paste-container { +#special-paste-container, +#equation-container { position: absolute; z-index: @zindex-dropdown - 20; @@ -172,6 +174,16 @@ border: @scaled-one-px-value solid @border-regular-control; } +#equation-container { + padding: 4px; + .separator { + height: 20px; + } + &.has-open-menu { + z-index: @zindex-navbar + 1; + } +} + .dropdown-menu.list-settings-level { .menu-list-preview { .box-shadow(0 0 0 @scaled-one-px-value-ie @border-regular-control-ie); diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index 5c40055bf..b9901c0ac 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -58,7 +58,10 @@ "textTable": "Cədvəl", "textTableSize": "Cədvəl Ölçüsü", "txtNotUrl": "Bu sahədə \"http://www.example.com\" formatında URL olmalıdır", + "textDone": "Done", "textOk": "Ok", + "textRecommended": "Recommended", + "textRequired": "Required", "textTableContents": "Table of Contents", "textWithBlueLinks": "With Blue Links", "textWithPageNumbers": "With Page Numbers" @@ -160,7 +163,8 @@ "textTryUndoRedo": "Qaytar/Təkrarla funksiyaları Sürətli birgə redaktə rejimi üçün qeyri-aktiv edilib.", "textUnderline": "Altından xətt çəkilmiş", "textUsers": "İstifadəçilər", - "textWidow": "Asılı sətirlərə qadağa" + "textWidow": "Asılı sətirlərə qadağa", + "textSharingSettings": "Sharing Settings" }, "ThemeColorPalette": { "textCustomColors": "Fərdi Rənglər", @@ -198,6 +202,7 @@ "textNumberingValue": "Nömrələmə Qiyməti", "textOk": "OK", "textRows": "Sətirlər", + "menuEditLink": "Edit Link", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" @@ -215,6 +220,7 @@ "textAlign": "Nizamlayın", "textAllCaps": "Bütün başlıqlar", "textAllowOverlap": "Üst-üstə düşməsinə icazə verin", + "textAugust": "avqust", "textAuto": "Avtomatik", "textAutomatic": "Avtomatik", "textBack": "Geriyə", @@ -227,7 +233,9 @@ "textBringToForeground": "Ön plana çıxarın", "textBullets": "Markerlər", "textBulletsAndNumbers": "Markerlər və Ədədlər", + "textCancel": "Ləğv", "textCellMargins": "Xanalardakı Kənar Boşluqlar", + "textCentered": "Mərkəzlənmiş", "textChart": "Diaqram", "textClose": "Bağlayın", "textColor": "Rəng", @@ -282,8 +290,6 @@ "textPictureFromURL": "URL-dən şəkil", "textPt": "pt", "textRemoveChart": "Diaqramı Silin", - "textRemoveImage": "Təsviri Silin", - "textRemoveLink": "Keçidi Silin", "textRemoveShape": "Formanı Silin", "textRemoveTable": "Cədvəli Silin", "textReorder": "Yenidən sırala", @@ -317,13 +323,14 @@ "textWrap": "Keçirin", "textAmountOfLevels": "Amount of Levels", "textApril": "April", - "textAugust": "August", - "textCancel": "Cancel", - "textCentered": "Centered", + "textChangeShape": "Change Shape", "textClassic": "Classic", "textCreateTextStyle": "Create new text style", "textCurrent": "Current", + "textCustomStyle": "Custom Style", "textDecember": "December", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", "textDesign": "Design", "textDistinctive": "Distinctive", "textDone": "Done", @@ -348,10 +355,12 @@ "textOnline": "Online", "textPageNumbers": "Page Numbers", "textParagraphStyle": "Paragraph Style", + "textRecommended": "Recommended", "textRefresh": "Refresh", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textRemoveTableContent": "Remove table of contents", + "textRequired": "Required", "textRightAlign": "Right Align", "textSa": "Sa", "textSameCreatedNewStyle": "Same as created new style", @@ -362,10 +371,12 @@ "textStyles": "Styles", "textSu": "Su", "textTableOfCont": "TOC", + "textTextWrapping": "Text Wrapping", "textTh": "Th", "textTitle": "Title", "textTu": "Tu", - "textWe": "We" + "textWe": "We", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Çevrilmə vaxtı maksimumu keçdi.", @@ -406,7 +417,13 @@ "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.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, @@ -445,8 +462,8 @@ "uploadImageTitleText": "Təsvir Yüklənir", "waitText": "Lütfən, gözləyin...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Xəta", @@ -558,6 +575,7 @@ "textApplicationSettings": "Proqram Parametrləri", "textAuthor": "Müəllif", "textBack": "Geriyə", + "textBeginningDocument": "Sənədin başlanğıcı", "textBottom": "Aşağı", "textCancel": "Ləğv edin", "textCaseSensitive": "Böyük/Kiçik Hərfə Həssas", @@ -658,7 +676,6 @@ "txtScheme7": "Bərabər", "txtScheme8": "Axın", "txtScheme9": "Emalatxana", - "textBeginningDocument": "Beginning of document", "textDirection": "Direction", "textEmptyHeading": "Empty Heading", "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.", diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index b9068a588..e8eb8417a 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -59,6 +59,9 @@ "textTable": "Табліца", "textTableSize": "Памеры табліцы", "txtNotUrl": "Гэтае поле мусіць быць URL-адрасам фармату \"http://www.example.com\"", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required", "textTableContents": "Table of Contents", "textWithBlueLinks": "With Blue Links", "textWithPageNumbers": "With Page Numbers" @@ -157,6 +160,7 @@ "textParaMoveFromDown": "Moved Down:", "textParaMoveFromUp": "Moved Up:", "textParaMoveTo": "Moved:", + "textSharingSettings": "Sharing Settings", "textTableChanged": "Table Settings Changed", "textTableRowsAdd": "Table Rows Added", "textTableRowsDel": "Table Rows Deleted", @@ -196,6 +200,7 @@ "textNumberingValue": "Пачатковае значэнне", "textOk": "Добра", "textRows": "Радкі", + "menuEditLink": "Edit Link", "menuSplit": "Split", "textDoNotShowAgain": "Don't show again", "textRefreshEntireTable": "Refresh entire table", @@ -294,8 +299,6 @@ "textPictureFromURL": "Выява па URL", "textPt": "пт", "textRemoveChart": "Выдаліць дыяграму", - "textRemoveImage": "Выдаліць выяву", - "textRemoveLink": "Выдаліць спасылку", "textRemoveShape": "Выдаліць фігуру", "textRemoveTable": "Выдаліць табліцу", "textReorder": "Перапарадкаваць", @@ -336,9 +339,13 @@ "textBulletsAndNumbers": "Bullets & Numbers", "textCancel": "Cancel", "textCentered": "Centered", + "textChangeShape": "Change Shape", "textClassic": "Classic", "textCreateTextStyle": "Create new text style", "textCurrent": "Current", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", "textDistinctive": "Distinctive", "textDone": "Done", "textEnterTitleNewStyle": "Enter title of a new style", @@ -352,10 +359,12 @@ "textOnline": "Online", "textPageNumbers": "Page Numbers", "textParagraphStyle": "Paragraph Style", + "textRecommended": "Recommended", "textRefresh": "Refresh", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textRemoveTableContent": "Remove table of contents", + "textRequired": "Required", "textRightAlign": "Right Align", "textSameCreatedNewStyle": "Same as created new style", "textSelectObjectToEdit": "Select object to edit", @@ -365,7 +374,9 @@ "textStructure": "Structure", "textStyles": "Styles", "textTableOfCont": "TOC", - "textTitle": "Title" + "textTextWrapping": "Text Wrapping", + "textTitle": "Title", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Час чакання пераўтварэння сышоў.", @@ -391,10 +402,16 @@ "criticalErrorExtText": "Press 'OK' to go back to the document list.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", "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.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", "errorFilePassProtect": "The file is password protected and could not be opened.", "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "errorMailMergeLoadFile": "Loading failed", "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", @@ -445,8 +462,8 @@ "uploadImageTitleText": "Запампоўванне выявы", "waitText": "Калі ласка, пачакайце...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Памылка", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index 25c4ac34f..2bc05b84d 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -61,7 +61,10 @@ "textOk": "Ok", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links" + "textWithBlueLinks": "With Blue Links", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textUnderline": "Underline", "textUsers": "Users", "textWidow": "Widow control", - "textOk": "Ok" + "textOk": "Ok", + "textSharingSettings": "Sharing Settings" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -200,7 +204,8 @@ "textNumberingValue": "Numbering Value", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -366,7 +371,15 @@ "textEnterTitleNewStyle": "Enter title of a new style", "textNextParagraphStyle": "Next paragraph style", "textSameCreatedNewStyle": "Same as created new style", - "textParagraphStyle": "Paragraph Style" + "textParagraphStyle": "Paragraph Style", + "textChangeShape": "Change Shape", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textCustomStyle": "Custom Style", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -409,7 +422,13 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index e118b5353..19a09e5d8 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -26,6 +26,7 @@ "textContinuousPage": "Pàgina contínua", "textCurrentPosition": "Posició actual", "textDisplay": "Visualització", + "textDone": "Fet", "textEmptyImgUrl": "Cal especificar l'URL de la imatge.", "textEvenPage": "Pàgina parell", "textFootnote": "Nota al peu de pàgina", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Imatge de la biblioteca", "textPictureFromURL": "Imatge de l'URL", "textPosition": "Posició", + "textRecommended": "Recomanat", + "textRequired": "Obligatori", "textRightBottom": "Dreta inferior", "textRightTop": "Dreta superior", "textRows": "Files", @@ -144,6 +147,7 @@ "textReviewChange": "Revisa el canvi", "textRight": "Alineació a la dreta", "textShape": "Forma", + "textSharingSettings": "Configuració de l'ús compartit\n\t", "textShd": "Color de fons", "textSmallCaps": "Versaletes", "textSpacing": "Espaiat", @@ -180,6 +184,7 @@ "menuDelete": "Suprimeix", "menuDeleteTable": "Suprimeix la taula", "menuEdit": "Edita", + "menuEditLink": "Edita l'enllaç", "menuJoinList": "Uneix-te a la llista anterior", "menuMerge": "Combina", "menuMore": "Més", @@ -233,6 +238,7 @@ "textCancel": "Cancel·la", "textCellMargins": "Marges de la cel·la", "textCentered": "Centrat", + "textChangeShape": "Canvia la forma", "textChart": "Gràfic", "textClassic": "Clàssic", "textClose": "Tanca", @@ -242,6 +248,8 @@ "textCurrent": "Actual", "textCustomColor": "Color personalitzat", "textDecember": "desembre", + "textDeleteImage": "Esborra la imatge", + "textDeleteLink": "Esborra l'enllaç", "textDesign": "Disseny", "textDifferentFirstPage": "Primera pàgina diferent", "textDifferentOddAndEvenPages": "Pàgines senars i parells diferents", @@ -314,12 +322,11 @@ "textPictureFromLibrary": "Imatge de la biblioteca", "textPictureFromURL": "Imatge de l'URL", "textPt": "pt", + "textRecommended": "Recomanat", "textRefresh": "Actualitza", "textRefreshEntireTable": "Actualitza la taula sencera", "textRefreshPageNumbersOnly": "Actualitza només els números de pàgina", "textRemoveChart": "Suprimeix el gràfic", - "textRemoveImage": "Suprimeix la imatge", - "textRemoveLink": "Suprimeix l'enllaç", "textRemoveShape": "Suprimeix la forma", "textRemoveTable": "Suprimeix la taula", "textRemoveTableContent": "Suprimeix la taula de continguts", @@ -327,6 +334,7 @@ "textRepeatAsHeaderRow": "Repeteix com a fila de capçalera", "textReplace": "Substitueix", "textReplaceImage": "Substitueix la imatge", + "textRequired": "Obligatori", "textResizeToFitContent": "Canvia la mida per ajustar el contingut", "textRightAlign": "Alinea a la dreta", "textSa": "ds.", @@ -356,6 +364,7 @@ "textTableOfCont": "IDC", "textTableOptions": "Opcions de la taula", "textText": "Text", + "textTextWrapping": "Ajustament del text", "textTh": "dj.", "textThrough": "A través", "textTight": "Estret", @@ -365,7 +374,9 @@ "textTu": "dt.", "textType": "Tipus", "textWe": "dc.", - "textWrap": "Ajustament" + "textWrap": "Ajustament", + "textWrappingStyle": "Estil d'ajustament", + "textCustomStyle": "Custom Style" }, "Error": { "convertationTimeoutText": "S'ha superat el temps de conversió.", @@ -379,6 +390,7 @@ "errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", "errorDataRange": "L'interval de dades no és correcte.", "errorDefaultMessage": "Codi d'error: %1", + "errorDirectUrl": "Verifiqueu l'enllaç al document.
Aquest enllaç ha de ser un enllaç directe al fitxer per baixar-lo.", "errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Baixa'l per desar la còpia de seguretat del fitxer localment.", "errorEmptyTOC": "Comenceu a crear una taula de continguts aplicant un estil d'encapçalament de la galeria d'Estils al text seleccionat.", "errorFilePassProtect": "El fitxer està protegit amb contrasenya i no s'ha pogut obrir.", @@ -393,6 +405,7 @@ "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.", + "errorTextFormWrongFormat": "El valor introduït no es correspon amb el format del camp", "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": "Ara mateix no es pot accedir al fitxer.", "errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el vostre pla", @@ -408,7 +421,11 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "S'estan carregant les dades...", @@ -439,14 +456,14 @@ "saveTitleText": "S'està desant el document", "sendMergeText": "S'està enviant la combinació...", "sendMergeTitle": "S'està enviant la combinació", + "textContinue": "Continua", "textLoadingDocument": "S'està carregant el document", + "textUndo": "Desfés", "txtEditingMode": "Estableix el mode d'edició ...", "uploadImageTextText": "S'està carregant la imatge...", "uploadImageTitleText": "S'està carregant la imatge", "waitText": "Espereu...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)." }, "Main": { "criticalErrorTitle": "Error", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index b1e8bf3ba..b053f5ac9 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -26,6 +26,7 @@ "textContinuousPage": "Pokračovat na stránce", "textCurrentPosition": "Aktuální pozice", "textDisplay": "Zobrazit", + "textDone": "Hotovo", "textEmptyImgUrl": "Musíte upřesnit URL obrázku.", "textEvenPage": "Sudá stránka", "textFootnote": "Poznámka pod čarou", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Obrázek z knihovny", "textPictureFromURL": "Obrázek z adresy URL", "textPosition": "Pozice", + "textRecommended": "Doporučeno", + "textRequired": "Požadováno", "textRightBottom": "Vpravo dole", "textRightTop": "Vpravo nahoře", "textRows": "Řádky", @@ -144,6 +147,7 @@ "textReviewChange": "Přehled změn", "textRight": "Zarovnat vpravo", "textShape": "Obrazec", + "textSharingSettings": "Nastavení sdílení", "textShd": "Barva pozadí", "textSmallCaps": "Malá písmena", "textSpacing": "Mezery", @@ -180,6 +184,7 @@ "menuDelete": "Odstranit", "menuDeleteTable": "Odstranit tabulku", "menuEdit": "Upravit", + "menuEditLink": "Upravit odkaz", "menuJoinList": "Připojit k předchozímu seznamu", "menuMerge": "Sloučit", "menuMore": "Více", @@ -233,6 +238,7 @@ "textCancel": "Zrušit", "textCellMargins": "Okraje buňky", "textCentered": "Vycentrováno", + "textChangeShape": "Vlastní tvar", "textChart": "Graf", "textClassic": "Klasické", "textClose": "Zavřít", @@ -241,7 +247,10 @@ "textCreateTextStyle": "Vytvořit nový styl textu", "textCurrent": "Aktuální", "textCustomColor": "Vlastní barva", + "textCustomStyle": "Vlastní styl", "textDecember": "prosinec", + "textDeleteImage": "Smazat obrázek", + "textDeleteLink": "Smazat odkaz", "textDesign": "Vzhled", "textDifferentFirstPage": "Odlišná první stránka", "textDifferentOddAndEvenPages": "Rozdílné liché a sudé stránky", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "Obrázek z knihovny", "textPictureFromURL": "Obrázek z adresy URL", "textPt": "pt", + "textRecommended": "Doporučeno", "textRefresh": "Načíst znovu", "textRefreshEntireTable": "Obnovit celou tabulku", "textRefreshPageNumbersOnly": "Obnovit pouze číslování stránek", "textRemoveChart": "Odstranit graf", - "textRemoveImage": "Odstranit obrázek", - "textRemoveLink": "Odstranit odkaz", "textRemoveShape": "Odstranit obrazec", "textRemoveTable": "Odstranit tabulku", "textRemoveTableContent": "Odebrat obsah", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "Opakujte jako řádek záhlaví", "textReplace": "Nahradit", "textReplaceImage": "Nahradit obrázek", + "textRequired": "Požadováno", "textResizeToFitContent": "Změnit velikost pro přizpůsobení obsahu", "textRightAlign": "Zarovnat vpravo", "textSa": "so", @@ -356,6 +365,7 @@ "textTableOfCont": "Obsah", "textTableOptions": "Možnosti tabulky", "textText": "Text", + "textTextWrapping": "Obtékaní textu", "textTh": "čt", "textThrough": "Skrz", "textTight": "Těsné", @@ -365,7 +375,8 @@ "textTu": "út", "textType": "Typ", "textWe": "st", - "textWrap": "Obtékání" + "textWrap": "Obtékání", + "textWrappingStyle": "Obtékání textu" }, "Error": { "convertationTimeoutText": "Vypršel čas konverze.", @@ -379,6 +390,7 @@ "errorDataEncrypted": "Obdrženy šifrované změny – bez hesla je není možné zobrazit.", "errorDataRange": "Nesprávný datový rozsah.", "errorDefaultMessage": "Kód chyby: %1", + "errorDirectUrl": "Ověřte správnost odkazu na dokument.
Je třeba, aby se jednalo o přímý odkaz pro stažení souboru.", "errorEditingDownloadas": "Při práci s dokumentem došlo k chybě.
Stáhněte dokument pro vytvoření lokální zálohy souboru.", "errorEmptyTOC": "Začít vytvářet obsah aplikováním stylů pro nadpisy na vybraný text. ", "errorFilePassProtect": "Soubor je zabezpečen heslem a nemůže být otevřen.", @@ -408,6 +420,11 @@ "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.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, "LongActions": { @@ -439,14 +456,14 @@ "saveTitleText": "Ukládání dokumentu", "sendMergeText": "Odesílaní hromadné zprávy…", "sendMergeTitle": "Odesílaní hromadné zprávy", + "textContinue": "Pokračovat", "textLoadingDocument": "Načítání dokumentu", + "textUndo": "Zpět", "txtEditingMode": "Nastavit režim úprav…", "uploadImageTextText": "Nahrávání obrázku...", "uploadImageTitleText": "Nahrávání obrázku", "waitText": "Čekejte prosím...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)." }, "Main": { "criticalErrorTitle": "Chyba", @@ -610,6 +627,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", + "textMobileView": "Mobilní zobrazení", "textNavigation": "Navigace", "textNo": "Ne", "textNoCharacters": "Netisknutelné znaky", @@ -673,8 +691,7 @@ "txtScheme6": "Hala", "txtScheme7": "Rovnost", "txtScheme8": "Tok", - "txtScheme9": "Slévárna", - "textMobileView": "Mobile View" + "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.", @@ -682,7 +699,7 @@ "leaveButtonText": "Opustit tuto stránku", "stayButtonText": "Zůstat na této stránce", "textOk": "OK", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" + "textSwitchedMobileView": "Přepnout na mobilní zobrazení", + "textSwitchedStandardView": "Přepnout na standartní zobrazení" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index 25c4ac34f..2bc05b84d 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -61,7 +61,10 @@ "textOk": "Ok", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links" + "textWithBlueLinks": "With Blue Links", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textUnderline": "Underline", "textUsers": "Users", "textWidow": "Widow control", - "textOk": "Ok" + "textOk": "Ok", + "textSharingSettings": "Sharing Settings" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -200,7 +204,8 @@ "textNumberingValue": "Numbering Value", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -366,7 +371,15 @@ "textEnterTitleNewStyle": "Enter title of a new style", "textNextParagraphStyle": "Next paragraph style", "textSameCreatedNewStyle": "Same as created new style", - "textParagraphStyle": "Paragraph Style" + "textParagraphStyle": "Paragraph Style", + "textChangeShape": "Change Shape", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textCustomStyle": "Custom Style", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -409,7 +422,13 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 4580abadd..942170b78 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -26,6 +26,7 @@ "textContinuousPage": "Fortlaufende Seite", "textCurrentPosition": "Aktuelle Position", "textDisplay": "Anzeigen", + "textDone": "Fertig", "textEmptyImgUrl": "URL des Bildes erforderlich", "textEvenPage": "Gerade Seite", "textFootnote": "Fußnote", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Bild aus dem Verzeichnis", "textPictureFromURL": "Bild aus URL", "textPosition": "Position", + "textRecommended": "Empfohlen", + "textRequired": "Erforderlich", "textRightBottom": "Rechts unten", "textRightTop": "Rechts oben", "textRows": "Zeilen", @@ -144,6 +147,7 @@ "textReviewChange": "Änderung überprüfen", "textRight": "Rechtsbündig ausrichten", "textShape": "Form", + "textSharingSettings": "Freigabeeinstellungen", "textShd": "Hintergrundfarbe", "textSmallCaps": "Kapitälchen", "textSpacing": "Abstand", @@ -180,6 +184,7 @@ "menuDelete": "Löschen", "menuDeleteTable": "Tabelle löschen", "menuEdit": "Bearbeiten", + "menuEditLink": "Link bearbeiten", "menuJoinList": "Mit der vorherigen Liste verbinden", "menuMerge": "Verbinden", "menuMore": "Mehr", @@ -233,6 +238,7 @@ "textCancel": "Abbrechen", "textCellMargins": "Zellenränder", "textCentered": "Zentriert", + "textChangeShape": "Form ändern", "textChart": "Diagramm", "textClassic": "Klassisch", "textClose": "Schließen", @@ -241,7 +247,10 @@ "textCreateTextStyle": "Neuen Textstil erstellen", "textCurrent": "Aktuell", "textCustomColor": "Benutzerdefinierte Farbe", + "textCustomStyle": "Benutzerdefinierter Stil", "textDecember": "Dezember", + "textDeleteImage": "Bild löschen", + "textDeleteLink": "Link löschen", "textDesign": "Design", "textDifferentFirstPage": "Erste Seite anders", "textDifferentOddAndEvenPages": "Gerade und ungerade Seiten anders", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "Bild aus dem Verzeichnis", "textPictureFromURL": "Bild aus URL", "textPt": "pt", + "textRecommended": "Empfohlen", "textRefresh": "Aktualisieren", "textRefreshEntireTable": "Ganze Tabelle aktualisieren", "textRefreshPageNumbersOnly": "Nur Seitenzahlen aktualisieren", "textRemoveChart": "Diagramm entfernen", - "textRemoveImage": "Bild entfernen", - "textRemoveLink": "Link entfernen", "textRemoveShape": "Form entfernen", "textRemoveTable": "Tabelle entfernen", "textRemoveTableContent": "Inhaltsverzeichnis entfernen", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "Als Überschriftenzeile wiederholen", "textReplace": "Ersetzen", "textReplaceImage": "Bild ersetzen", + "textRequired": "Erforderlich", "textResizeToFitContent": "An die Größe des Inhalts anpassen", "textRightAlign": "Rechtsbündig", "textSa": "Sa", @@ -356,6 +365,7 @@ "textTableOfCont": "Inhaltsverzeichnis", "textTableOptions": "Tabellenoptionen", "textText": "Text", + "textTextWrapping": "Textumbruch", "textTh": "Do", "textThrough": "Durchgehend", "textTight": "Passend", @@ -365,7 +375,8 @@ "textTu": "Di", "textType": "Typ", "textWe": "Mi", - "textWrap": "Umbrechen" + "textWrap": "Umbrechen", + "textWrappingStyle": "Textumbruch" }, "Error": { "convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.", @@ -379,10 +390,16 @@ "errorDataEncrypted": "Verschlüsselte Änderungen wurden empfangen. Sie können nicht entschlüsselt werden.", "errorDataRange": "Falscher Datenbereich.", "errorDefaultMessage": "Fehlercode: %1", + "errorDirectUrl": "Bitte überprüfen Sie den Link zum Dokument.
Dieser Link muss ein direkter Link zu der Datei zum Herunterladen sein.", "errorEditingDownloadas": "Fehler bei der Arbeit an diesem Dokument.
Laden Sie die Datei herunter, um sie lokal zu speichern.", "errorEmptyTOC": "Beginnen Sie die Erstellung eines Inhaltsverzeichnisses, indem Sie eine Überschriftenvorlage aus der Galerie von Stilen auf den ausgewählten Text anwenden.", "errorFilePassProtect": "Die Datei ist mit Passwort geschützt und kann nicht geöffnet werden.", "errorFileSizeExceed": "Die Dateigröße ist zu hoch für Ihren Server.
Bitte wenden Sie sich an Administratoren.", + "errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.", + "errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.", + "errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.", + "errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.", + "errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.", "errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", "errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", @@ -393,6 +410,7 @@ "errorSessionIdle": "Das Dokument wurde schon für lange Zeit nicht bearbeitet. Bitte die Seite neu laden.", "errorSessionToken": "Die Verbindung mit dem Server wurde unterbrochen. Bitte die Seite neu laden.", "errorStockChart": "Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, setzen Sie die Daten im Arbeitsblatt in dieser Reihenfolge:
Eröffnungskurs, Maximaler Preis, Minimaler Preis, Schlusskurs.", + "errorTextFormWrongFormat": "Der eingegebene Wert stimmt nicht mit dem Format des Feldes überein.", "errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.
Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.", "errorUserDrop": "Die Datei ist gerade nicht verfügbar.", "errorUsersExceed": "Die nach dem Zahlungsplan erlaubte Anzahl der Benutzer ist überschritten", @@ -407,12 +425,12 @@ "unknownErrorText": "Unbekannter Fehler.", "uploadImageExtMessage": "Unbekanntes Bildformat.", "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", - "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." }, "LongActions": { "applyChangesTextText": "Daten werden geladen...", "applyChangesTitleText": "Daten werden geladen", + "confirmMaxChangesSize": "Die Anzahl der Aktionen überschreitet die für Ihren Server festgelegte Grenze.
Drücken Sie \"Rückgängig\", um Ihre letzte Aktion abzubrechen, oder drücken Sie \"Weiter\", um die Aktion lokal fortzusetzen (Sie müssen die Datei herunterladen oder ihren Inhalt kopieren, um sicherzustellen, dass nichts verloren geht).", "downloadMergeText": "Ladevorgang...", "downloadMergeTitle": "Ladevorgang", "downloadTextText": "Dokument wird heruntergeladen...", @@ -439,14 +457,13 @@ "saveTitleText": "Dokument wird gespeichert...", "sendMergeText": "Merge wird versandt...", "sendMergeTitle": "Ergebnisse der Zusammenführung werden gesendet", + "textContinue": "Fortsetzen", "textLoadingDocument": "Dokument wird geladen", + "textUndo": "Rückgängig", "txtEditingMode": "Bearbeitungsmodul wird festgelegt...", "uploadImageTextText": "Bild wird hochgeladen...", "uploadImageTitleText": "Bild wird hochgeladen", - "waitText": "Bitte warten...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "waitText": "Bitte warten..." }, "Main": { "criticalErrorTitle": "Fehler", @@ -610,6 +627,7 @@ "textMargins": "Ränder", "textMarginsH": "Die oberen und unteren Ränder sind zu hoch für eingegebene Seitenhöhe", "textMarginsW": "Linke und rechte Ränder sind zu hoch für gültige Seitenhöhe", + "textMobileView": "Mobile Ansicht", "textNavigation": "Navigation", "textNo": "Nein", "textNoCharacters": "Formatierungszeichen", @@ -673,8 +691,7 @@ "txtScheme6": "Halle", "txtScheme7": "Kapital", "txtScheme8": "Fluss", - "txtScheme9": "Gießerei", - "textMobileView": "Mobile View" + "txtScheme9": "Gießerei" }, "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.", @@ -682,7 +699,7 @@ "leaveButtonText": "Seite verlassen", "stayButtonText": "Auf dieser Seite bleiben", "textOk": "OK", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" + "textSwitchedMobileView": "Mobile Ansicht aktiviert", + "textSwitchedStandardView": "Standard-Ansicht aktiviert" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index f2143982c..c1ef38d32 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -61,7 +61,10 @@ "textTableSize": "Μέγεθος Πίνακα", "textWithBlueLinks": "Με Μπλε Συνδέσμους", "textWithPageNumbers": "Με Αριθμούς Σελίδων", - "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»" + "txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.", "textUnderline": "Υπογράμμιση", "textUsers": "Χρήστες", - "textWidow": "Έλεγχος μεμονωμένων γραμμών κειμένου" + "textWidow": "Έλεγχος μεμονωμένων γραμμών κειμένου", + "textSharingSettings": "Sharing Settings" }, "HighlightColorPalette": { "textNoFill": "Χωρίς Γέμισμα" @@ -200,6 +204,7 @@ "textRefreshEntireTable": "Ανανέωση ολόκληρου πίνακα", "textRefreshPageNumbersOnly": "Ανανέωση αριθμών σελίδων μόνο", "textRows": "Γραμμές", + "menuEditLink": "Edit Link", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" }, "Edit": { @@ -318,8 +323,6 @@ "textRefreshEntireTable": "Ανανέωση ολόκληρου πίνακα", "textRefreshPageNumbersOnly": "Ανανέωση αριθμών σελίδων μόνο", "textRemoveChart": "Αφαίρεση Γραφήματος", - "textRemoveImage": "Αφαίρεση Εικόνας", - "textRemoveLink": "Αφαίρεση Συνδέσμου", "textRemoveShape": "Αφαίρεση Σχήματος", "textRemoveTable": "Αφαίρεση Πίνακα", "textRemoveTableContent": "Αφαίρεση πίνακα περιεχομένων", @@ -365,7 +368,15 @@ "textTu": "Τρι", "textType": "Τύπος", "textWe": "Τετ", - "textWrap": "Αναδίπλωση" + "textWrap": "Αναδίπλωση", + "textChangeShape": "Change Shape", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.", @@ -408,6 +419,12 @@ "uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", "uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", "uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, "LongActions": { @@ -445,8 +462,8 @@ "uploadImageTitleText": "Μεταφόρτωση Εικόνας", "waitText": "Παρακαλούμε, περιμένετε...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Σφάλμα", @@ -681,7 +698,7 @@ "dlgLeaveTitleText": "Έξοδος από την εφαρμογή", "leaveButtonText": "Έξοδος από τη Σελίδα", "stayButtonText": "Παραμονή στη σελίδα", - "textOk": "OK", + "textOk": "Εντάξει", "textSwitchedMobileView": "Switched to Mobile view", "textSwitchedStandardView": "Switched to Standard view" } diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index dd8009b24..21eb5d259 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -26,6 +26,7 @@ "textContinuousPage": "Continuous Page", "textCurrentPosition": "Current Position", "textDisplay": "Display", + "textDone": "Done", "textEmptyImgUrl": "You need to specify image URL.", "textEvenPage": "Even Page", "textFootnote": "Footnote", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Picture from Library", "textPictureFromURL": "Picture from URL", "textPosition": "Position", + "textRecommended": "Recommended", + "textRequired": "Required", "textRightBottom": "Right Bottom", "textRightTop": "Right Top", "textRows": "Rows", @@ -144,6 +147,7 @@ "textReviewChange": "Review Change", "textRight": "Align right", "textShape": "Shape", + "textSharingSettings": "Sharing Settings", "textShd": "Background color", "textSmallCaps": "Small caps", "textSpacing": "Spacing", @@ -180,6 +184,7 @@ "menuDelete": "Delete", "menuDeleteTable": "Delete Table", "menuEdit": "Edit", + "menuEditLink": "Edit Link", "menuJoinList": "Join to previous list", "menuMerge": "Merge", "menuMore": "More", @@ -233,6 +238,7 @@ "textCancel": "Cancel", "textCellMargins": "Cell Margins", "textCentered": "Centered", + "textChangeShape": "Change Shape", "textChart": "Chart", "textClassic": "Classic", "textClose": "Close", @@ -241,7 +247,10 @@ "textCreateTextStyle": "Create new text style", "textCurrent": "Current", "textCustomColor": "Custom Color", + "textCustomStyle": "Custom Style", "textDecember": "December", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", "textDesign": "Design", "textDifferentFirstPage": "Different first page", "textDifferentOddAndEvenPages": "Different odd and even pages", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "Picture from Library", "textPictureFromURL": "Picture from URL", "textPt": "pt", + "textRecommended": "Recommended", "textRefresh": "Refresh", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", "textRemoveShape": "Remove Shape", "textRemoveTable": "Remove Table", "textRemoveTableContent": "Remove table of contents", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "Repeat as Header Row", "textReplace": "Replace", "textReplaceImage": "Replace Image", + "textRequired": "Required", "textResizeToFitContent": "Resize to Fit Content", "textRightAlign": "Right Align", "textSa": "Sa", @@ -356,6 +365,7 @@ "textTableOfCont": "TOC", "textTableOptions": "Table Options", "textText": "Text", + "textTextWrapping": "Text Wrapping", "textTh": "Th", "textThrough": "Through", "textTight": "Tight", @@ -365,7 +375,8 @@ "textTu": "Tu", "textType": "Type", "textWe": "We", - "textWrap": "Wrap" + "textWrap": "Wrap", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -379,10 +390,16 @@ "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", "errorDataRange": "Incorrect data range.", "errorDefaultMessage": "Error code: %1", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", "errorFilePassProtect": "The file is password protected and could not be opened.", "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", @@ -413,6 +430,7 @@ "LongActions": { "applyChangesTextText": "Loading data...", "applyChangesTitleText": "Loading Data", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", "downloadMergeText": "Downloading...", "downloadMergeTitle": "Downloading", "downloadTextText": "Downloading document...", @@ -439,14 +457,13 @@ "saveTitleText": "Saving Document", "sendMergeText": "Sending Merge...", "sendMergeTitle": "Sending Merge", + "textContinue": "Continue", "textLoadingDocument": "Loading document", + "textUndo": "Undo", "txtEditingMode": "Set editing mode...", "uploadImageTextText": "Uploading image...", "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "waitText": "Please, wait..." }, "Main": { "criticalErrorTitle": "Error", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index 597107692..fac6262a4 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -26,6 +26,7 @@ "textContinuousPage": "Página continua", "textCurrentPosition": "Posición actual", "textDisplay": "Mostrar", + "textDone": "Hecho", "textEmptyImgUrl": "Hay que especificar URL de imagen.", "textEvenPage": "Página par", "textFootnote": "Nota a pie de página", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Imagen desde biblioteca", "textPictureFromURL": "Imagen desde URL", "textPosition": "Posición", + "textRecommended": "Recomendado", + "textRequired": "Necesario", "textRightBottom": "Abajo a la derecha", "textRightTop": "Arriba a la derecha", "textRows": "Filas", @@ -144,6 +147,7 @@ "textReviewChange": "Revisar cambios", "textRight": "Alinear a la derecha", "textShape": "Forma", + "textSharingSettings": "Ajustes de uso compartido", "textShd": "Color de fondo", "textSmallCaps": "Versalitas", "textSpacing": "Espaciado", @@ -180,6 +184,7 @@ "menuDelete": "Eliminar", "menuDeleteTable": "Eliminar tabla", "menuEdit": "Editar", + "menuEditLink": "Editar enlace", "menuJoinList": "Unir a lista anterior", "menuMerge": "Combinar", "menuMore": "Más", @@ -314,12 +319,11 @@ "textPictureFromLibrary": "Imagen desde biblioteca", "textPictureFromURL": "Imagen desde URL", "textPt": "pt", + "textRecommended": "Recomendado", "textRefresh": "Actualizar", "textRefreshEntireTable": "Actualizar toda la tabla", "textRefreshPageNumbersOnly": "Actualizar solamente los números de página", "textRemoveChart": "Eliminar gráfico", - "textRemoveImage": "Eliminar imagen", - "textRemoveLink": "Eliminar enlace", "textRemoveShape": "Eliminar forma", "textRemoveTable": "Eliminar tabla", "textRemoveTableContent": "Eliminar la tabla de contenidos", @@ -327,6 +331,7 @@ "textRepeatAsHeaderRow": "Repetir como fila de encabezado", "textReplace": "Reemplazar", "textReplaceImage": "Reemplazar imagen", + "textRequired": "Necesario", "textResizeToFitContent": "Cambiar el tamaño para ajustar el contenido", "textRightAlign": "Alinear a la derecha", "textSa": "sá.", @@ -356,6 +361,7 @@ "textTableOfCont": "TDC", "textTableOptions": "Opciones de tabla", "textText": "Texto", + "textTextWrapping": "Ajuste de texto", "textTh": "ju.", "textThrough": "A través", "textTight": "Estrecho", @@ -365,7 +371,12 @@ "textTu": "ma.", "textType": "Tipo", "textWe": "mi.", - "textWrap": "Ajuste" + "textWrap": "Ajuste", + "textWrappingStyle": "Estilo de ajuste", + "textChangeShape": "Change Shape", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link" }, "Error": { "convertationTimeoutText": "Tiempo de conversión está superado.", @@ -379,6 +390,7 @@ "errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.", "errorDataRange": "Rango de datos incorrecto.", "errorDefaultMessage": "Código de error: %1", + "errorDirectUrl": "Por favor, verifique el vínculo al documento.
Este vínculo debe ser un vínculo directo al archivo para descargar.", "errorEditingDownloadas": "Se ha producido un error al trabajar con el documento.
Descargue el documento para guardar la copia de seguridad del archivo localmente.", "errorEmptyTOC": "Empezar a crear una tabla de contenidos aplicando un estilo de encabezamiento de la galería de Estilos al texto seleccionado.", "errorFilePassProtect": "El archivo está protegido por contraseña y no se puede abrir.", @@ -393,6 +405,7 @@ "errorSessionIdle": "El documento no ha sido editado desde hace mucho tiempo. Por favor, vuelva a cargar la página.", "errorSessionToken": "La conexión con el servidor se ha interrumpido. Por favor, vuelva a cargar la página.", "errorStockChart": "Orden incorrecto de las filas. Para construir un gráfico de cotizaciones, coloque los datos en la hoja en el siguiente orden:
precio de apertura, precio máximo, precio mínimo, precio de cierre.", + "errorTextFormWrongFormat": "El valor introducido no se corresponde con el formato del campo", "errorUpdateVersionOnDisconnect": "Se ha restablecido la conexión a Internet y se ha cambiado la versión del archivo.
Para poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se ha perdido nada, y luego volver a cargar esta página.", "errorUserDrop": "No se puede acceder al archivo en este momento.", "errorUsersExceed": "El número de usuarios permitido según su plan de precios fue excedido", @@ -408,7 +421,11 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "Cargando datos...", @@ -439,14 +456,14 @@ "saveTitleText": "Guardando documento", "sendMergeText": "Envío de los resultados de la fusión...", "sendMergeTitle": "Envío de los resultados de la fusión", + "textContinue": "Continuar", "textLoadingDocument": "Cargando documento", + "textUndo": "Deshacer", "txtEditingMode": "Establecer el modo de edición...", "uploadImageTextText": "Cargando imagen...", "uploadImageTitleText": "Cargando imagen", "waitText": "Por favor, espere...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)." }, "Main": { "criticalErrorTitle": "Error", diff --git a/apps/documenteditor/mobile/locale/eu.json b/apps/documenteditor/mobile/locale/eu.json index c2c6f1d68..df736d706 100644 --- a/apps/documenteditor/mobile/locale/eu.json +++ b/apps/documenteditor/mobile/locale/eu.json @@ -61,7 +61,10 @@ "textTableSize": "Taularen tamaina", "textWithBlueLinks": "Esteka urdinekin", "textWithPageNumbers": "Orri-zenbakiekin", - "txtNotUrl": "Eremu hau URL helbide bat izan behar da \"http://www.adibidea.eus\" bezalakoa" + "txtNotUrl": "Eremu hau URL helbide bat izan behar da \"http://www.adibidea.eus\" bezalakoa", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textTryUndoRedo": "Desegin/Berregin funtzioak desgaituta daude batera azkar editatzeko moduan.", "textUnderline": "Azpimarra", "textUsers": "Erabiltzaileak", - "textWidow": "Lerro solteen kontrola" + "textWidow": "Lerro solteen kontrola", + "textSharingSettings": "Sharing Settings" }, "HighlightColorPalette": { "textNoFill": "Betegarririk ez" @@ -200,7 +204,8 @@ "textRefreshEntireTable": "Freskatu taula osoa", "textRefreshPageNumbersOnly": "Freskatu orri-zenbakiak soilik", "textRows": "Errenkadak", - "txtWarnUrl": "Esteka honetan klik egitea kaltegarria izan daiteke zure gailu eta datuentzat
Ziur zaude jarraitu nahi duzula?" + "txtWarnUrl": "Esteka honetan klik egitea kaltegarria izan daiteke zure gailu eta datuentzat
Ziur zaude jarraitu nahi duzula?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Abisua", @@ -318,8 +323,6 @@ "textRefreshEntireTable": "Freskatu taula osoa", "textRefreshPageNumbersOnly": "Freskatu orri-zenbakiak soilik", "textRemoveChart": "Kendu diagrama", - "textRemoveImage": "Kendu irudia", - "textRemoveLink": "Kendu esteka", "textRemoveShape": "Kendu forma", "textRemoveTable": "Kendu taula", "textRemoveTableContent": "Kendu aurkibidea", @@ -365,7 +368,15 @@ "textTu": "ar.", "textType": "Mota", "textWe": "az.", - "textWrap": "Doikuntza" + "textWrap": "Doikuntza", + "textChangeShape": "Change Shape", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Bihurketaren denbora-muga gainditu da.", @@ -393,7 +404,8 @@ "errorSessionIdle": "Dokumentua ez da editatu denbora luzean. Mesedez, kargatu berriro orria.", "errorSessionToken": "Zerbitzarira konexioa eten egin da. Mesedez, kargatu berriro orria.", "errorStockChart": "Errenkaden ordena okerra. Kotizazio-diagrama bat sortzeko, sartu datuak orrian ordena honetan:
irekierako prezioa, gehienezko prezioa, gutxieneko prezioa, itxierako prezioa.", - "errorUpdateVersionOnDisconnect": "Interneteko konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", + "errorTextFormWrongFormat": "Sartutako balioa ez dator bat eremuaren formatuarekin.", + "errorUpdateVersionOnDisconnect": "Konexioa berrezarri da eta fitxategiaren bertsioa aldatu da.
Lanean jarraitu aurretik, beharrezkoa da fitxategia deskargatzea edo edukia kopiatzea, ezer ez dela galduko ziurtatzeko, eta gero orri hau berriro kargatzea.", "errorUserDrop": "Une honetan ezin da fitxategia eskuratu.", "errorUsersExceed": "Ordainketa planak onartzen duen erabiltzaile kopurua gainditu da", "errorViewerDisconnect": "Konexioa galdu da. Oraindik dokumentua ikus dezakezu,
baina ezingo duzu deskargatu edo inprimatu konexioa berreskuratu eta orria birkargatu arte.", @@ -408,7 +420,12 @@ "uploadImageExtMessage": "Irudi-formatu ezezaguna.", "uploadImageFileCountMessage": "Ez da irudirik kargatu.", "uploadImageSizeMessage": "Irudia handiegia da. Gehienezko tamaina 25 MB da.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "Datuak kargatzen...", @@ -445,8 +462,8 @@ "uploadImageTitleText": "Irudia kargatzen", "waitText": "Mesedez, itxaron...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Errorea", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index 25c4ac34f..2bc05b84d 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -61,7 +61,10 @@ "textOk": "Ok", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links" + "textWithBlueLinks": "With Blue Links", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textUnderline": "Underline", "textUsers": "Users", "textWidow": "Widow control", - "textOk": "Ok" + "textOk": "Ok", + "textSharingSettings": "Sharing Settings" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -200,7 +204,8 @@ "textNumberingValue": "Numbering Value", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -366,7 +371,15 @@ "textEnterTitleNewStyle": "Enter title of a new style", "textNextParagraphStyle": "Next paragraph style", "textSameCreatedNewStyle": "Same as created new style", - "textParagraphStyle": "Paragraph Style" + "textParagraphStyle": "Paragraph Style", + "textChangeShape": "Change Shape", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textCustomStyle": "Custom Style", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -409,7 +422,13 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index f259bb10b..c038b5466 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -26,6 +26,7 @@ "textContinuousPage": "Page continue", "textCurrentPosition": "Position actuelle", "textDisplay": "Afficher", + "textDone": "Terminé", "textEmptyImgUrl": "Spécifiez l'URL de l'image", "textEvenPage": "Page paire", "textFootnote": "Note de bas de page", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Image depuis la bibliothèque", "textPictureFromURL": "Image depuis URL", "textPosition": "Position", + "textRecommended": "Recommandés", + "textRequired": "Obligatoire", "textRightBottom": "À droite en bas", "textRightTop": "À droite en haut", "textRows": "Lignes", @@ -144,6 +147,7 @@ "textReviewChange": "Réviser modifications", "textRight": "Aligner à droite", "textShape": "Forme", + "textSharingSettings": "Paramètres de partage", "textShd": "Couleur d'arrière-plan", "textSmallCaps": "Petites majuscules", "textSpacing": "Espacement", @@ -180,6 +184,7 @@ "menuDelete": "Supprimer", "menuDeleteTable": "Supprimer le tableau", "menuEdit": "Modifier", + "menuEditLink": "Modifier le lien", "menuJoinList": "Joindre à la liste précédente", "menuMerge": "Fusionner", "menuMore": "Plus", @@ -233,15 +238,19 @@ "textCancel": "Annuler", "textCellMargins": "Marges de la cellule", "textCentered": "Centré", + "textChangeShape": "Changer la forme", "textChart": "Graphique", "textClassic": "Classique", "textClose": "Fermer", "textColor": "Couleur", "textContinueFromPreviousSection": "Continuer à partir de la section précédente", - "textCreateTextStyle": "Créer un nouveau style de texte", + "textCreateTextStyle": "Créer un nouveau style", "textCurrent": "Actuel", "textCustomColor": "Couleur personnalisée", + "textCustomStyle": "Style personnalisé", "textDecember": "décembre", + "textDeleteImage": "Supprimer l’image", + "textDeleteLink": "Supprimer le lien", "textDesign": "Design", "textDifferentFirstPage": "Première page différente", "textDifferentOddAndEvenPages": "Pages paires et impaires différentes", @@ -254,7 +263,7 @@ "textEffects": "Effets", "textEmpty": "Vide", "textEmptyImgUrl": "Spécifiez l'URL de l'image", - "textEnterTitleNewStyle": "Saisissez le titre d'un nouveau style", + "textEnterTitleNewStyle": "Saisissez le titre du style", "textFebruary": "février", "textFill": "Remplissage", "textFirstColumn": "Première colonne", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "Image depuis la bibliothèque", "textPictureFromURL": "Image depuis URL", "textPt": "pt", + "textRecommended": "Recommandés", "textRefresh": "Actualiser", "textRefreshEntireTable": "Actualiser le tableau entier", "textRefreshPageNumbersOnly": "Actualiser les numéros de page uniquement", "textRemoveChart": "Supprimer le graphique", - "textRemoveImage": "Supprimer l'image", - "textRemoveLink": "Supprimer le lien", "textRemoveShape": "Supprimer la forme", "textRemoveTable": "Supprimer le tableau", "textRemoveTableContent": "Supprimer la table des matières", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "Répéter la ligne d'en-tête", "textReplace": "Remplacer", "textReplaceImage": "Remplacer l’image", + "textRequired": "Obligatoire", "textResizeToFitContent": "Redimensionner pour adapter au contenu", "textRightAlign": "Aligner à droite", "textSa": "sam.", @@ -356,6 +365,7 @@ "textTableOfCont": "Table des matières", "textTableOptions": "Options du tableau", "textText": "Texte", + "textTextWrapping": "Habillage du texte", "textTh": "jeu.", "textThrough": "Au travers", "textTight": "Rapproché", @@ -365,7 +375,8 @@ "textTu": "mar.", "textType": "Type", "textWe": "mer.", - "textWrap": "Renvoi à la ligne" + "textWrap": "Renvoi à la ligne", + "textWrappingStyle": "Style d'habillage" }, "Error": { "convertationTimeoutText": "Délai de conversion expiré.", @@ -379,6 +390,7 @@ "errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.", "errorDataRange": "Plage de données incorrecte.", "errorDefaultMessage": "Code d'erreur: %1", + "errorDirectUrl": "Veuillez vérifier le lien vers le document.
Ce lien doit être un lien direct vers le fichier à télécharger.", "errorEditingDownloadas": "Une erreure s'est produite lors du travail avec le document.
Téléchargez le document pour enregistrer une copie locale de sauvegarde du fichier.", "errorEmptyTOC": "Commencez à créer une table des matières en appliquant un style de titres de la galerie Styles au texte sélectionné.", "errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.", @@ -408,11 +420,17 @@ "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.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "Chargement des données en cours...", "applyChangesTitleText": "Chargement des données", + "confirmMaxChangesSize": "La taille des actions dépasse la limitation fixée pour votre serveur.
Appuyez sur \"Annuler\" pour annuler votre dernière action ou sur \"Continuer\" pour maintenir l'action en local (vous devez télécharger le fichier ou copier son contenu pour vous assurer que rien n'est perdu).", "downloadMergeText": "Téléchargement en cours...", "downloadMergeTitle": "Téléchargement en cours", "downloadTextText": "Téléchargement du document...", @@ -439,14 +457,13 @@ "saveTitleText": "Enregistrement du document", "sendMergeText": "Envoie du résultat de la fusion...", "sendMergeTitle": "Envoie du résultat de la fusion", + "textContinue": "Continuer", "textLoadingDocument": "Chargement du document", + "textUndo": "Annuler", "txtEditingMode": "Réglage mode d'édition...", "uploadImageTextText": "Chargement d'une image en cours...", "uploadImageTitleText": "Chargement d'une image", - "waitText": "Veuillez patienter...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "waitText": "Veuillez patienter..." }, "Main": { "criticalErrorTitle": "Erreur", diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json index e51893c38..d5ea4e548 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -61,7 +61,10 @@ "textTableSize": "Tamaño da táboa", "textWithBlueLinks": "Con ligazóns azuis", "textWithPageNumbers": "Con números de páxina", - "txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"" + "txtNotUrl": "Este campo debe ser unha URL no formato \"http://www.example.com\"", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textTryUndoRedo": "As funcións Desfacer/Refacer están activadas para o modo de coedición rápido.", "textUnderline": "Subliñado", "textUsers": "Usuarios", - "textWidow": "Control de liñas orfas" + "textWidow": "Control de liñas orfas", + "textSharingSettings": "Sharing Settings" }, "HighlightColorPalette": { "textNoFill": "Sen encher" @@ -200,6 +204,7 @@ "textRefreshEntireTable": "Actualizar toda a táboa", "textRefreshPageNumbersOnly": "Actualizar soamente os números de páxina", "textRows": "Filas", + "menuEditLink": "Edit Link", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" }, "Edit": { @@ -318,8 +323,6 @@ "textRefreshEntireTable": "Actualizar toda a táboa", "textRefreshPageNumbersOnly": "Actualizar soamente os números de páxina", "textRemoveChart": "Eliminar gráfico", - "textRemoveImage": "Eliminar imaxe", - "textRemoveLink": "Eliminar ligazón", "textRemoveShape": "Eliminar forma", "textRemoveTable": "Eliminar táboa", "textRemoveTableContent": "Elimine a táboa de contidos", @@ -365,7 +368,15 @@ "textTu": "Ma", "textType": "Tipo", "textWe": "Me", - "textWrap": "Axuste" + "textWrap": "Axuste", + "textChangeShape": "Change Shape", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Excedeu o tempo límite de conversión.", @@ -408,6 +419,12 @@ "uploadImageExtMessage": "Formato de imaxe descoñecido.", "uploadImageFileCountMessage": "Non hai imaxes subidas.", "uploadImageSizeMessage": "A imaxe é demasiado grande. O tamaño máximo é de 25 MB.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, "LongActions": { @@ -445,8 +462,8 @@ "uploadImageTitleText": "Cargando imaxe", "waitText": "Agarde...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Erro", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index 806cc1257..3f4e05805 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -26,6 +26,7 @@ "textContinuousPage": "Folytatólagos oldal", "textCurrentPosition": "Jelen pozíció", "textDisplay": "Megjelenít", + "textDone": "Kész", "textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", "textEvenPage": "Páros oldal", "textFootnote": "Lábjegyzet", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Kép a galériából", "textPictureFromURL": "Kép URL-en keresztül", "textPosition": "Pozíció", + "textRecommended": "Ajánlott", + "textRequired": "Szükséges", "textRightBottom": "Jobb alsó", "textRightTop": "Jobb felső", "textRows": "Sorok", @@ -144,6 +147,7 @@ "textReviewChange": "Változások áttekintése", "textRight": "Jobbra igazít", "textShape": "Alakzat", + "textSharingSettings": "Megosztási beállítások", "textShd": "Háttérszín", "textSmallCaps": "Kisbetűk", "textSpacing": "Térköz", @@ -180,6 +184,7 @@ "menuDelete": "Töröl", "menuDeleteTable": "Táblázat törlése", "menuEdit": "Szerkeszt", + "menuEditLink": "Link szerkesztése", "menuJoinList": "Csatlakozás az előző listához", "menuMerge": "Egyesít", "menuMore": "Több", @@ -233,6 +238,7 @@ "textCancel": "Mégse", "textCellMargins": "Cellamargók", "textCentered": "Középre igazított", + "textChangeShape": "Forma módosítása", "textChart": "Diagram", "textClassic": "Klasszikus", "textClose": "Bezár", @@ -241,7 +247,10 @@ "textCreateTextStyle": "Új szövegstílus létrehozása", "textCurrent": "Jelenlegi", "textCustomColor": "Egyéni szín", + "textCustomStyle": "Egyedi stílus", "textDecember": "December", + "textDeleteImage": "Kép törlése", + "textDeleteLink": "Link törlése", "textDesign": "Dizájn", "textDifferentFirstPage": "Eltérő első oldal", "textDifferentOddAndEvenPages": "Páros és páratlan oldalak eltérőek", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "Kép a galériából", "textPictureFromURL": "Kép URL-en keresztül", "textPt": "pt", + "textRecommended": "Ajánlott", "textRefresh": "Frissít", "textRefreshEntireTable": "Teljes táblázat frissítése", "textRefreshPageNumbersOnly": "Csak az oldalszámok frissítése", "textRemoveChart": "Diagram eltávolítása", - "textRemoveImage": "Kép eltávolítása", - "textRemoveLink": "Link eltávolítása", "textRemoveShape": "Alakzat eltávolítása", "textRemoveTable": "Táblázat eltávolítása", "textRemoveTableContent": "Tartalomjegyzék eltávolítása", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "Ismételje meg fejlécként", "textReplace": "Csere", "textReplaceImage": "Kép cseréje", + "textRequired": "Szükséges", "textResizeToFitContent": "Méret módosítása a tartalomhoz való illesztéshez", "textRightAlign": "Jobbra igazít", "textSa": "Szo", @@ -356,6 +365,7 @@ "textTableOfCont": "Tartalomjegyzék", "textTableOptions": "Táblázat beállítások", "textText": "Szöveg", + "textTextWrapping": "Szöveg tördelése", "textTh": "Csü", "textThrough": "Keresztül", "textTight": "Szűken", @@ -365,7 +375,8 @@ "textTu": "Ke", "textType": "Típus", "textWe": "Sze", - "textWrap": "Tördel" + "textWrap": "Tördel", + "textWrappingStyle": "Tördelés stílus" }, "Error": { "convertationTimeoutText": "A átalakítás időkorlátja lejárt.", @@ -379,6 +390,7 @@ "errorDataEncrypted": "Kódolt változások érkeztek, ezeket nem lehet visszafejteni.", "errorDataRange": "Hibás adattartomány.", "errorDefaultMessage": "Hibakód: %1", + "errorDirectUrl": "Kérjük, ellenőrizze a dokumentumra mutató hivatkozást.
Ennek a hivatkozásnak a letöltéshez közvetlen hivatkozásnak kell lennie.", "errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
Dokumentum letöltése a fájl biztonsági másolatának helyi mentéséhez.", "errorEmptyTOC": "Kezdje el a tartalomjegyzék létrehozását azzal, hogy a kiválasztott szöveghez a Stílusok galériából egy címsorstílust alkalmaz.", "errorFilePassProtect": "A fájl jelszóval védett, és nem lehetett megnyitni.", @@ -393,6 +405,7 @@ "errorSessionIdle": "A dokumentumot hosszú ideje nem szerkesztették. Kérem, töltse újra az oldalt.", "errorSessionToken": "A szerverrel való kapcsolat megszakadt. Kérjük, töltse újra az oldalt.", "errorStockChart": "Helytelen sorsorrend. Részvénydiagram felépítéséhez helyezze el az adatokat a lapon a következő sorrendben:
nyitóár, max. ár, min. ár, záróár.", + "errorTextFormWrongFormat": "A megadott érték nem felel meg a mező formátumának.", "errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.
Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.", "errorUserDrop": "A fájl jelenleg nem érhető el.", "errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát", @@ -408,7 +421,11 @@ "uploadImageExtMessage": "Ismeretlen képformátum.", "uploadImageFileCountMessage": "Nincsenek feltöltött képek.", "uploadImageSizeMessage": "A kép túl nagy. A maximális méret 25 MB.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "Adatok betöltése...", @@ -445,8 +462,8 @@ "uploadImageTitleText": "Kép feltöltése", "waitText": "Kérjük, várjon...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Hiba", @@ -533,7 +550,7 @@ "textRemember": "Választás megjegyzése", "textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.", "textReplaceSuccess": "A keresés megtörtént. Cseréltek: {0}", - "textRequestMacros": "A makró kérést intéz az URL-hez. Szeretné engedélyezni a kérést a %1-hoz?", + "textRequestMacros": "A makró URL-kérést indít. Engedélyezi a %1 lekérdezését?", "textYes": "Igen", "titleLicenseExp": "Lejárt licenc", "titleServerVersion": "Szerkesztő frissítve", @@ -610,6 +627,7 @@ "textMargins": "Margók", "textMarginsH": "A felső és alsó margók túl magasak az adott oldal magasságához képest", "textMarginsW": "A szélső margók túl szélesek az adott oldal szélességéhez", + "textMobileView": "Mobil nézet", "textNavigation": "Navigáció", "textNo": "Nem", "textNoCharacters": "Nem nyomtatható karakterek", @@ -673,8 +691,7 @@ "txtScheme6": "Együttműködés", "txtScheme7": "Méltányosság", "txtScheme8": "Folyam", - "txtScheme9": "Öntöde", - "textMobileView": "Mobile View" + "txtScheme9": "Öntöde" }, "Toolbar": { "dlgLeaveMsgText": "Vannak el nem mentett módosításai. Kattintson a 'Maradjon ezen az oldalon' gombra az automatikus mentéshez. Kattintson a 'Hagyja el ezt az oldalt' gombra a mentetlen módosítások elvetéséhez.", @@ -682,7 +699,7 @@ "leaveButtonText": "Oldal elhagyása", "stayButtonText": "Maradjon ezen az oldalon", "textOk": "OK", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" + "textSwitchedMobileView": "Váltás Mobil nézetre", + "textSwitchedStandardView": "Normál nézetre váltott" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/hy.json b/apps/documenteditor/mobile/locale/hy.json index 8c116051a..25fa0410b 100644 --- a/apps/documenteditor/mobile/locale/hy.json +++ b/apps/documenteditor/mobile/locale/hy.json @@ -26,6 +26,7 @@ "textContinuousPage": "Շարունակվող էջ", "textCurrentPosition": "Ընթացիկ դիրք", "textDisplay": "Ցուցադրել", + "textDone": "Պատրաստ է", "textEmptyImgUrl": "Պետք է նշել նկարի URL-ը։", "textEvenPage": "Զույգ էջ", "textFootnote": "Ծանոթագրություն", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Նկար գրադարանից", "textPictureFromURL": "Նկար URL-ից", "textPosition": "Դիրք", + "textRecommended": "Առաջարկվում է", + "textRequired": "Պարտադիր", "textRightBottom": "Աջ ներքև", "textRightTop": "Աջ վերև", "textRows": "Տողեր", @@ -144,6 +147,7 @@ "textReviewChange": "Փոփոխումների վերանայում", "textRight": "Հավասարեցնել աջից", "textShape": "Պատկեր", + "textSharingSettings": "Համօգտագործման կարգավորումներ", "textShd": "Խորքի գույն", "textSmallCaps": "Փոքրատառեր", "textSpacing": "Միջատարածք", @@ -180,6 +184,7 @@ "menuDelete": "Ջնջել", "menuDeleteTable": "Ջնջել աղյուսակը", "menuEdit": "Խմբագրել", + "menuEditLink": "Խմբագրել հղումը", "menuJoinList": "Միացնել նախորդ ցուցակին", "menuMerge": "Միաձուլել", "menuMore": "Ավել", @@ -314,12 +319,11 @@ "textPictureFromLibrary": "Նկար գրադարանից", "textPictureFromURL": "Նկար URL-ից", "textPt": "կտ", + "textRecommended": "Առաջարկվում է", "textRefresh": "Թարմացնել", "textRefreshEntireTable": "Թարմացրել ամբողջ աղյուսակը", "textRefreshPageNumbersOnly": "Թարմացնել միայն էջերի համարները", "textRemoveChart": "Հեռացնել գծապատկերը", - "textRemoveImage": "Հեռացնել նկարը", - "textRemoveLink": "Հեռացնել հղումը", "textRemoveShape": "Հեռացնել պատկերը", "textRemoveTable": "Հեռացնել աղյուսակը", "textRemoveTableContent": "Հեռացնել բովանդակության ցանկը", @@ -327,6 +331,7 @@ "textRepeatAsHeaderRow": "Կրկնել որպես գլխամասի տող", "textReplace": "Փոխարինել", "textReplaceImage": "Փոխարինել նկարը", + "textRequired": "Պարտադիր", "textResizeToFitContent": "Չափափոխել ըստ պարունակության", "textRightAlign": "Վերև-աջ հավասարեցում", "textSa": "ՈԱ", @@ -356,6 +361,7 @@ "textTableOfCont": "ԲՑ ", "textTableOptions": "Աղյուսակի ընտրանքներ", "textText": "Տեքստ", + "textTextWrapping": "Տեքստի ծալում", "textTh": "Հնգ", "textThrough": "Միջով", "textTight": "Ձիգ", @@ -365,7 +371,12 @@ "textTu": "Երք", "textType": "Տեսակ", "textWe": "Չրք", - "textWrap": "Ծալում" + "textWrap": "Ծալում", + "textWrappingStyle": "Ծալման ոճ", + "textChangeShape": "Change Shape", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link" }, "Error": { "convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։", @@ -379,6 +390,7 @@ "errorDataEncrypted": "Ընդունվել են գաղտնագրված փոփոխությունները, դրանք չեն կարող վերծանելվել։", "errorDataRange": "Տվյալների սխալ ընդգրկույթ։", "errorDefaultMessage": "Սխալի կոդ՝ %1", + "errorDirectUrl": "Խնդրում ենք ստուգել փաստաթղթի հղումը:
Այս հղումը պետք է լինի ուղիղ հղում դեպի ներբեռնելու ֆայլը:", "errorEditingDownloadas": "Փաստաթղթի հետ աշխատանքի ընթացքում սխալ է տեղի ունեցել:
Ներբեռնեք փաստաթուղթը՝ ֆայլի կրկնօրինակը տեղում պահելու համար:", "errorEmptyTOC": "Սկսել ստեղծել բովանդակության աղյուսակ՝ կիրառելով վերնագրի ոճը ոճերի սրահից ընտրված տեքստում:", "errorFilePassProtect": "Ֆայլը պաշտպանված է գաղտնաբառով և հնարավոր չէ բացել:", @@ -393,7 +405,8 @@ "errorSessionIdle": "Փաստաթուղթը երկար ժամանակ չի խմբագրվել։Խնդրում ենք վերաբեռնել էջը:", "errorSessionToken": "Սերվերի հետ կապն ընդհատվել է:Խնդրում ենք վերաբեռնել էջը:", "errorStockChart": "Սխալ տողերի հերթականություն:Տվյալների տատանման գծապատկեր կառուցելու համար տվյալները թերթիկի վրա տեղադրեք հետևյալ հաջորդականությամբ.
Բացման գին,առավելագույն գին,նվազագույն գին, փակման գին։", - "errorUpdateVersionOnDisconnect": "Համացանցային կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք նիշքը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", + "errorTextFormWrongFormat": "Մուտքագրված արժեքը չի համապատասխանում դաշտի ձևաչափին:", + "errorUpdateVersionOnDisconnect": "Կապը վերահաստատվել է,և ֆայլի տարբերակը փոխվել է։
Նախքան աշխատանքը շարունակելը ներբեռնեք ֆայլը կամ պատճենեք դրա պարունակությունը՝ վստահ լինելու, որ ոչինչ չի կորել, և ապա նորից բեռնեք այս էջը։", "errorUserDrop": "Հնարավոր չէ մուտք գործել ֆայլ այս պահին:", "errorUsersExceed": "Օգտատերերի՝ սակագնային պլանով թույլատրված քանակը գերազանցվել է։", "errorViewerDisconnect": "Կապը կորել է:Դուք դեռ կարող եք դիտել փաստաթուղթը,
բայց Դուք չեք կարողանա ներբեռնել կամ տպել այն, մինչև կապը չվերականգնվի և էջը վերաբեռնվի:", @@ -408,7 +421,11 @@ "uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։", "uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։", "uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "Տվյալների բեռնում...", @@ -439,14 +456,14 @@ "saveTitleText": "Փաստաթղթի պահպանում", "sendMergeText": "Ձուլման ուղարկում․․․", "sendMergeTitle": "Ձուլման ուղարկում", + "textContinue": "Շարունակել", "textLoadingDocument": "Փաստաթղթի բեռնում", + "textUndo": "Հետարկել", "txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․", "uploadImageTextText": "Նկարի վերբեռնում...", "uploadImageTitleText": "Նկարի վերբեռնում", "waitText": "Խնդրում ենք սպասել...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)." }, "Main": { "criticalErrorTitle": "Սխալ", @@ -610,6 +627,7 @@ "textMargins": "Լուսանցքներ", "textMarginsH": "Վերևի և ներքևի լուսանցքները չափազանց բարձր են տվյալ էջի բարձրության համար", "textMarginsW": "Ձախ և աջ լուսանցքները չափազանց լայն են տվյալ էջի լայնության համար", + "textMobileView": "Բջջային տեսք", "textNavigation": "Նավիգացիա", "textNo": "Ոչ", "textNoCharacters": "Չտպվող գրանշաններ", @@ -673,16 +691,15 @@ "txtScheme6": "Համագումար ", "txtScheme7": "Սեփական կապիտալ", "txtScheme8": "Հոսք", - "txtScheme9": "Հրատարակիչ", - "textMobileView": "Mobile View" + "txtScheme9": "Հրատարակիչ" }, "Toolbar": { "dlgLeaveMsgText": "Դուք չպահված փոփոխություններ ունեք:Սեղմեք «Մնա այս էջում»՝ սպասելու ավտոմատ պահպանմանը:Սեղմեք «Լքել այս էջը»՝ չպահված բոլոր փոփոխությունները մերժելու համար:", "dlgLeaveTitleText": "Ծրագրից դուրս եք գալիս", "leaveButtonText": "Լքել այս էջը", "stayButtonText": "Մնալ այս էջում", - "textOk": "OK", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" + "textOk": "Լավ", + "textSwitchedMobileView": " Փոխարկվել է բջջային տեսքի", + "textSwitchedStandardView": " Փոխարկվել է ստանդարտ տեսքի" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/id.json b/apps/documenteditor/mobile/locale/id.json index d4fbff714..7df6106c2 100644 --- a/apps/documenteditor/mobile/locale/id.json +++ b/apps/documenteditor/mobile/locale/id.json @@ -3,11 +3,11 @@ "textAbout": "Tentang", "textAddress": "Alamat", "textBack": "Kembali", + "textEditor": "Penyunting Dokumen", "textEmail": "Email", "textPoweredBy": "Didukung oleh", "textTel": "Tel", - "textVersion": "Versi", - "textEditor": "Document Editor" + "textVersion": "Versi" }, "Add": { "notcriticalErrorTitle": "Peringatan", @@ -26,6 +26,7 @@ "textContinuousPage": "Halaman Bersambung", "textCurrentPosition": "Posisi Saat Ini", "textDisplay": "Tampilan", + "textDone": "Selesai", "textEmptyImgUrl": "Anda harus menentukan URL gambar.", "textEvenPage": "Halaman Genap", "textFootnote": "Footnote", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Gambar dari Perpustakaan", "textPictureFromURL": "Gambar dari URL", "textPosition": "Posisi", + "textRecommended": "Direkomendasikan", + "textRequired": "Wajib Diisi", "textRightBottom": "Kanan Bawah", "textRightTop": "Kanan Atas", "textRows": "Baris", @@ -57,11 +60,11 @@ "textShape": "Warna Latar", "textStartAt": "Dimulai pada", "textTable": "Tabel", + "textTableContents": "Daftar Isi", "textTableSize": "Ukuran Tabel", - "txtNotUrl": "Area ini harus dalam format URL “http://www.contoh.com”", - "textTableContents": "Table of Contents", - "textWithBlueLinks": "With Blue Links", - "textWithPageNumbers": "With Page Numbers" + "textWithBlueLinks": "Dengan Tautan Warna Biru", + "textWithPageNumbers": "Dengan Nomor Halaman", + "txtNotUrl": "Area ini harus dalam format URL “http://www.contoh.com”" }, "Common": { "Collaboration": { @@ -69,7 +72,7 @@ "textAccept": "Terima", "textAcceptAllChanges": "Terima semua perubahan", "textAddComment": "Tambahkan komentar", - "textAddReply": "Tambahkan Balasan", + "textAddReply": "Tambah balasan", "textAllChangesAcceptedPreview": "Semua perubahan diterima (Preview)", "textAllChangesEditing": "Semua perubahan (Editing)", "textAllChangesRejectedPreview": "Semua perubahan ditolak (Preview)", @@ -121,7 +124,7 @@ "textNoBreakBefore": "Tanpa break halaman sebelum", "textNoChanges": "Tidak ada perubahan.", "textNoComments": "Dokumen ini tidak memiliki komentar", - "textNoContextual": "Tambah jarak diantara", + "textNoContextual": "Tambah interval di antara paragraf dengan gaya sama", "textNoKeepLines": "Jangan satukan garis", "textNoKeepNext": "Jangan satukan dengan berikutnya", "textNot": "Tidak ", @@ -144,6 +147,7 @@ "textReviewChange": "Review Perubahan", "textRight": "Rata kanan", "textShape": "Warna Latar", + "textSharingSettings": "Pengaturan Berbagi", "textShd": "Warna latar", "textSmallCaps": "Huruf Ukuran Kecil", "textSpacing": "Spasi", @@ -180,6 +184,7 @@ "menuDelete": "Hapus", "menuDeleteTable": "Hapus Tabel", "menuEdit": "Sunting", + "menuEditLink": "Sunting Tautan", "menuJoinList": "Gabung ke list sebelumnya", "menuMerge": "Merge", "menuMore": "Lainnya", @@ -197,14 +202,14 @@ "textDoNotShowAgain": "Jangan tampilkan lagi", "textNumberingValue": "Penomoran Nilai", "textOk": "OK", + "textRefreshEntireTable": "Segarkan keseluruhan tabel", + "textRefreshPageNumbersOnly": "Segarkan nomor halaman saja", "textRows": "Baris", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Mengklik tautan ini dapat membahayakan perangkat dan data Anda.
Apakah Anda yakin untuk melanjutkan?" }, "Edit": { "notcriticalErrorTitle": "Peringatan", - "textActualSize": "Ukuran Sebenarnya", + "textActualSize": "Ukuran sebenarnya", "textAddCustomColor": "Tambah warna kustom", "textAdditional": "Tambahan", "textAdditionalFormatting": "Pemformatan tambahan", @@ -215,6 +220,7 @@ "textAlign": "Ratakan", "textAllCaps": "Huruf kapital semua", "textAllowOverlap": "Ijinkan menumpuk", + "textAmountOfLevels": "Jumlah Level", "textApril": "April", "textAugust": "Agustus", "textAuto": "Otomatis", @@ -229,32 +235,45 @@ "textBringToForeground": "Tampilkan di Halaman Muka", "textBullets": "Butir", "textBulletsAndNumbers": "Butir & Angka", + "textCancel": "Batalkan", "textCellMargins": "Margin Sel", + "textCentered": "Tengah", + "textChangeShape": "Ubah Bentuk", "textChart": "Bagan", + "textClassic": "Klasik", "textClose": "Tutup", "textColor": "Warna", "textContinueFromPreviousSection": "Lanjut dari sesi sebelumnya", + "textCreateTextStyle": "Buat gaya teks baru", + "textCurrent": "Saat ini", "textCustomColor": "Custom Warna", + "textCustomStyle": "Gaya Kustom", "textDecember": "Desember", + "textDeleteImage": "Hapus Gambar", + "textDeleteLink": "Hapus Tautan", "textDesign": "Desain", "textDifferentFirstPage": "Halaman pertama yang berbeda", "textDifferentOddAndEvenPages": "Halaman ganjil dan genap yang berbeda", "textDisplay": "Tampilan", "textDistanceFromText": "Jarak dari teks", + "textDistinctive": "Tersendiri", + "textDone": "Selesai", "textDoubleStrikethrough": "Garis coret ganda", "textEditLink": "Edit Link", "textEffects": "Efek", "textEmpty": "Kosong", "textEmptyImgUrl": "Anda harus menentukan URL gambar.", + "textEnterTitleNewStyle": "Masukkan judul gaya baru", "textFebruary": "Februari", "textFill": "Isian", "textFirstColumn": "Kolom Pertama", - "textFirstLine": "Garis Pertama", + "textFirstLine": "Baris Pertama", "textFlow": "Alur", "textFontColor": "Warna Huruf", "textFontColors": "Warna Font", "textFonts": "Font", "textFooter": "Footer", + "textFormal": "Formal", "textFr": "Jum", "textHeader": "Header", "textHeaderRow": "Baris Header", @@ -270,7 +289,9 @@ "textKeepLinesTogether": "Tetap satukan garis", "textKeepWithNext": "Satukan dengan berikutnya", "textLastColumn": "Kolom Terakhir", + "textLeader": "Leader", "textLetterSpacing": "Letter Spacing", + "textLevels": "Level", "textLineSpacing": "Spasi Antar Baris", "textLink": "Tautan", "textLinkSettings": "Pengaturan Link", @@ -278,9 +299,11 @@ "textMarch": "Maret", "textMay": "Mei", "textMo": "Sen", + "textModern": "Modern", "textMoveBackward": "Pindah Kebelakang", "textMoveForward": "Majukan", "textMoveWithText": "Pindah bersama teks", + "textNextParagraphStyle": "Gaya paragraf selanjutnya", "textNone": "tidak ada", "textNoStyles": "Tanpa style untuk tipe grafik ini.", "textNotUrl": "Area ini harus dalam format URL “http://www.contoh.com”", @@ -288,84 +311,72 @@ "textNumbers": "Nomor", "textOctober": "Oktober", "textOk": "OK", + "textOnline": "Online", "textOpacity": "Opasitas", "textOptions": "Pilihan", "textOrphanControl": "Kontrol Orphan", "textPageBreakBefore": "Jeda halaman sebelum", "textPageNumbering": "Penomoran Halaman", + "textPageNumbers": "Nomor Halaman", "textParagraph": "Paragraf", + "textParagraphStyle": "Gaya Paragraf", "textPictureFromLibrary": "Gambar dari Perpustakaan", "textPictureFromURL": "Gambar dari URL", "textPt": "pt", + "textRecommended": "Direkomendasikan", + "textRefresh": "Segarkan", + "textRefreshEntireTable": "Segarkan keseluruhan tabel", + "textRefreshPageNumbersOnly": "Segarkan nomor halaman saja", "textRemoveChart": "Hilangkan Grafik", - "textRemoveImage": "Hilangkan Gambar", - "textRemoveLink": "Hilangkan Link", "textRemoveShape": "Hilangkan Bentuk", "textRemoveTable": "Hilangkan Tabel", + "textRemoveTableContent": "Hapus daftar isi", "textReorder": "Reorder", "textRepeatAsHeaderRow": "Ulangi sebagai Baris Header", "textReplace": "Ganti", "textReplaceImage": "Ganti Gambar", + "textRequired": "Wajib Diisi", "textResizeToFitContent": "Ubah Ukuran untuk Cocok ke Konten", + "textRightAlign": "Rata Kanan", "textSa": "Sab", + "textSameCreatedNewStyle": "Sama seperti gaya baru yang dibuat", "textScreenTip": "Tip Layar", "textSelectObjectToEdit": "Pilih objek untuk diedit", "textSendToBackground": "Jalankan di Background", "textSeptember": "September", "textSettings": "Pengaturan", "textShape": "Warna Latar", + "textSimple": "Sederhana", "textSize": "Ukuran", "textSmallCaps": "Huruf Ukuran Kecil", "textSpaceBetweenParagraphs": "Spasi Antara Paragraf", "textSquare": "Persegi", + "textStandard": "Standar", "textStartAt": "Dimulai pada", "textStrikethrough": "Coret ganda", + "textStructure": "Struktur", "textStyle": "Model", "textStyleOptions": "Opsi Style", + "textStyles": "Gaya", "textSu": "Min", "textSubscript": "Subskrip", "textSuperscript": "Superskrip", "textTable": "Tabel", + "textTableOfCont": "Daftar Isi", "textTableOptions": "Opsi Tabel", "textText": "Teks", + "textTextWrapping": "Pembungkusan Teks", "textTh": "Ka", "textThrough": "Tembus", "textTight": "Ketat", + "textTitle": "Judul", "textTopAndBottom": "Atas dan bawah", "textTotalRow": "Total Baris", "textTu": "Sel", "textType": "Ketik", "textWe": "Rab", "textWrap": "Wrap", - "textAmountOfLevels": "Amount of Levels", - "textCancel": "Cancel", - "textCentered": "Centered", - "textClassic": "Classic", - "textCreateTextStyle": "Create new text style", - "textCurrent": "Current", - "textDistinctive": "Distinctive", - "textDone": "Done", - "textEnterTitleNewStyle": "Enter title of a new style", - "textFormal": "Formal", - "textLeader": "Leader", - "textLevels": "Levels", - "textModern": "Modern", - "textNextParagraphStyle": "Next paragraph style", - "textOnline": "Online", - "textPageNumbers": "Page Numbers", - "textParagraphStyle": "Paragraph Style", - "textRefresh": "Refresh", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", - "textRemoveTableContent": "Remove table of contents", - "textRightAlign": "Right Align", - "textSameCreatedNewStyle": "Same as created new style", - "textSimple": "Simple", - "textStandard": "Standard", - "textStructure": "Structure", - "textStyles": "Styles", - "textTableOfCont": "TOC", - "textTitle": "Title" + "textWrappingStyle": "Gaya Pembungkusan" }, "Error": { "convertationTimeoutText": "Waktu konversi habis.", @@ -379,7 +390,9 @@ "errorDataEncrypted": "Perubahan enkripsi sudah diterima dan tidak bisa diuraikan.", "errorDataRange": "Rentang data salah.", "errorDefaultMessage": "Kode kesalahan: %1", + "errorDirectUrl": "Silakan verifikasi tautan ke dokumen.
Tautan ini harus merupakan tautan langsung menuju file yang akan diunduh.", "errorEditingDownloadas": "Ada kesalahan saat bekerja dengan dokumen.
Download dokumen untuk menyimpan file copy backup di lokal.", + "errorEmptyTOC": "Mulai membuat daftar isi dengan menerapkan gaya judul dari galeri Gaya kepada teks terpilih.", "errorFilePassProtect": "Password file diproteksi dan tidak bisa dibuka.", "errorFileSizeExceed": "Ukuran file melampaui limit server Anda.
Silakan, hubungi admin.", "errorKeyEncrypt": "Deskriptor kunci tidak dikenal", @@ -387,14 +400,16 @@ "errorLoadingFont": "Font tidak bisa dimuat.
Silakan kontak admin Server Dokumen Anda.", "errorMailMergeLoadFile": "Loading gagal", "errorMailMergeSaveFile": "Merge gagal.", + "errorNoTOC": "Tidak ada daftar isi yang harus diperbarui. Anda dapat menyisipkan satu daftar isi dari tab Referensi.", "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.", + "errorTextFormWrongFormat": "Nilai yang dimasukkan tidak cocok dengan format bidang.", + "errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu mengunduh file atau salin konten untuk memastikan tidak ada yang hilang, lalu 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.", + "errorViewerDisconnect": "Koneksi terputus. Anda tetap bisa melihat dokumen,
tapi tidak bisa mengunduh atau mencetak sampai koneksi terhubung dan halaman dimuat ulang.", "notcriticalErrorTitle": "Peringatan", "openErrorText": "Eror ketika membuka file", "saveErrorText": "Eror ketika menyimpan file.", @@ -406,13 +421,16 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "Memuat data...", "applyChangesTitleText": "Memuat Data", + "confirmMaxChangesSize": "Ukuran tindakan melebihi batas yang ditetapkan untuk server Anda.
Tekan \"Batalkan\" untuk membatalkan tindakan terakhir Anda atau tekan \"Lanjutkan\" untuk menyimpan tindakan secara lokal (Anda perlu mengunduh file atau menyalin isinya untuk memastikan tidak ada yang hilang).", "downloadMergeText": "Downloading...", "downloadMergeTitle": "Mengunduh", "downloadTextText": "Mengunduh dokumen...", @@ -439,14 +457,13 @@ "saveTitleText": "Menyimpan Dokumen", "sendMergeText": "Mengirim Merge...", "sendMergeTitle": "Mengirim Merge", + "textContinue": "Lanjutkan", "textLoadingDocument": "Memuat dokumen", + "textUndo": "Batalkan", "txtEditingMode": "Atur mode editing...", "uploadImageTextText": "Mengunggah gambar...", "uploadImageTitleText": "Mengunggah Gambar", - "waitText": "Silahkan menunggu", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "waitText": "Silahkan menunggu" }, "Main": { "criticalErrorTitle": "Kesalahan", @@ -458,8 +475,8 @@ "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", + " -Section ": "-Bagian", + "above": "di atas", "below": "di bawah", "Caption": "Caption", "Choose an item": "Pilih satu barang", @@ -533,6 +550,7 @@ "textRemember": "Ingat pilihan saya", "textReplaceSkipped": "Penggantian telah dilakukan. Ada {0} yang dilewatkan.", "textReplaceSuccess": "Pencarian telah dilakukan. Ada {0} yang diganti :", + "textRequestMacros": "Sebuah makro melakukan permintaan ke URL. Apakah Anda akan mengizinkan permintaan ini ke %1?", "textYes": "Ya", "titleLicenseExp": "Lisensi kadaluwarsa", "titleServerVersion": "Editor mengupdate", @@ -544,8 +562,7 @@ "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.", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "warnProcessRightsChange": "Anda tidak memiliki izin edit file ini." }, "Settings": { "advDRMOptions": "File yang Diproteksi", @@ -558,6 +575,7 @@ "textApplicationSettings": "Pengaturan Aplikasi", "textAuthor": "Penyusun", "textBack": "Kembali", + "textBeginningDocument": "Awal dokumen", "textBottom": "Bawah", "textCancel": "Batalkan", "textCaseSensitive": "Harus sama persis", @@ -571,6 +589,7 @@ "textCommentsDisplay": "Display Komentar", "textCreated": "Dibuat", "textCustomSize": "Custom Ukuran", + "textDirection": "Arah", "textDisableAll": "Nonaktifkan Semua", "textDisableAllMacrosWithNotification": "Nonaktifkan semua macros dengan notifikasi", "textDisableAllMacrosWithoutNotification": "Nonaktifkan semua macros tanpa notifikasi", @@ -582,9 +601,13 @@ "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?", + "textEmptyHeading": "Heading Kosong", + "textEmptyScreens": "Tidak terdapat heading pada dokumen. Terapkan gaya heading ke teks agar teks muncul di daftar isi.", "textEnableAll": "Aktifkan Semua", "textEnableAllMacrosWithoutNotification": "Aktifkan semua macros tanpa notifikasi", "textEncoding": "Enkoding", + "textFastWV": "Tampilan Web Cepat", + "textFeedback": "Masukan & Dukungan", "textFind": "Cari", "textFindAndReplace": "Cari dan Ganti", "textFindAndReplaceAll": "Temukan dan Ganti Semua", @@ -597,12 +620,15 @@ "textLastModified": "Terakhir Dimodifikasi", "textLastModifiedBy": "Terakhir Dimodifikasi Oleh", "textLeft": "Kiri", + "textLeftToRight": "Kiri Ke Kanan", "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", + "textMobileView": "Tampilan Seluler", + "textNavigation": "Navigasi", "textNo": "Tidak", "textNoCharacters": "Karakter Tidak Dicetak", "textNoTextFound": "Teks tidak ditemukan", @@ -613,6 +639,9 @@ "textPages": "Halaman", "textPageSize": "Ukuran Halaman", "textParagraphs": "Paragraf", + "textPdfProducer": "Pembuat PDF", + "textPdfTagged": "PDF Bertanda", + "textPdfVer": "Versi PDF", "textPoint": "Titik", "textPortrait": "Portrait", "textPrint": "Cetak", @@ -620,7 +649,9 @@ "textReplace": "Ganti", "textReplaceAll": "Ganti Semua", "textResolvedComments": "Selesaikan Komentar", + "textRestartApplication": "Silakan mulai ulang aplikasi untuk menerapkan perubahan", "textRight": "Kanan", + "textRightToLeft": "Kanan Ke Kiri", "textSearch": "Cari", "textSettings": "Pengaturan", "textShowNotification": "Tampilkan Notifikasi", @@ -660,21 +691,7 @@ "txtScheme6": "Himpunan", "txtScheme7": "Margin Sisa", "txtScheme8": "Alur", - "txtScheme9": "Cetakan", - "textBeginningDocument": "Beginning of document", - "textDirection": "Direction", - "textEmptyHeading": "Empty Heading", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.", - "textFastWV": "Fast Web View", - "textFeedback": "Feedback & Support", - "textLeftToRight": "Left To Right", - "textMobileView": "Mobile View", - "textNavigation": "Navigation", - "textPdfProducer": "PDF Producer", - "textPdfTagged": "Tagged PDF", - "textPdfVer": "PDF Version", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textRightToLeft": "Right To Left" + "txtScheme9": "Cetakan" }, "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.", @@ -682,7 +699,7 @@ "leaveButtonText": "Tinggalkan Halaman Ini", "stayButtonText": "Tetap di halaman ini", "textOk": "OK", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" + "textSwitchedMobileView": "Beralih ke Tampilan seluler", + "textSwitchedStandardView": "Beralih ke Tampilan standar" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 14eba77da..7c7a0627f 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -26,6 +26,7 @@ "textContinuousPage": "Pagina continua", "textCurrentPosition": "Posizione attuale", "textDisplay": "Visualizzare", + "textDone": "Fatto", "textEmptyImgUrl": "Devi specificare l'URL dell'immagine.", "textEvenPage": "Pagina pari", "textFootnote": "Note a piè di pagina", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Immagine dalla libreria", "textPictureFromURL": "Immagine dall'URL", "textPosition": "Posizione", + "textRecommended": "Consigliato", + "textRequired": "Richiesto", "textRightBottom": "In basso a destra", "textRightTop": "In alto a destra", "textRows": "Righe", @@ -144,6 +147,7 @@ "textReviewChange": "Riesaminare le modifiche", "textRight": "Allineare a destra", "textShape": "Forma", + "textSharingSettings": "Impostazioni di condivisione", "textShd": "Colore di sfondo", "textSmallCaps": "Maiuscoletto", "textSpacing": "Spaziatura", @@ -180,6 +184,7 @@ "menuDelete": "Eliminare", "menuDeleteTable": "Eliminare tabella", "menuEdit": "Modificare", + "menuEditLink": "Modifica collegamento", "menuJoinList": "Unire all'elenco precedente", "menuMerge": "Unire", "menuMore": "Di più", @@ -242,6 +247,7 @@ "textCurrent": "Attuale", "textCustomColor": "Colore personalizzato", "textDecember": "Dicembre", + "textDeleteLink": "Elimina collegamento", "textDesign": "Design", "textDifferentFirstPage": "Prima pagina diversa", "textDifferentOddAndEvenPages": "Pagine pari e dispari diverse", @@ -314,12 +320,11 @@ "textPictureFromLibrary": "Immagine dalla libreria", "textPictureFromURL": "Immagine dall'URL", "textPt": "pt", + "textRecommended": "Consigliato", "textRefresh": "Aggiorna", "textRefreshEntireTable": "Aggiorna intera tabella", "textRefreshPageNumbersOnly": "Aggiorna solo numeri di pagina", "textRemoveChart": "Eliminare il grafico", - "textRemoveImage": "Eliminare immagine", - "textRemoveLink": "Eliminare link", "textRemoveShape": "Eliminare forma", "textRemoveTable": "Eliminare tabella", "textRemoveTableContent": "Elimina sommario", @@ -327,6 +332,7 @@ "textRepeatAsHeaderRow": "Ripetere come riga di intestazione", "textReplace": "Sostituire", "textReplaceImage": "Sostituire l'immagine", + "textRequired": "Richiesto", "textResizeToFitContent": "Ridimensionare per adattare il contenuto", "textRightAlign": "Allinea a destra", "textSa": "Sab", @@ -356,6 +362,7 @@ "textTableOfCont": "Indice", "textTableOptions": "Opzioni di tabella", "textText": "Testo", + "textTextWrapping": "Disposizione testo", "textTh": "Gio", "textThrough": "Attraverso", "textTight": "Stretto", @@ -365,7 +372,11 @@ "textTu": "Mar", "textType": "Tipo", "textWe": "Mer", - "textWrap": "Avvolgere" + "textWrap": "Avvolgere", + "textWrappingStyle": "Stile di disposizione testo", + "textChangeShape": "Change Shape", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image" }, "Error": { "convertationTimeoutText": "È stato superato il tempo massimo della conversione.", @@ -379,6 +390,7 @@ "errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.", "errorDataRange": "Intervallo di dati non corretto.", "errorDefaultMessage": "Codice errore: %1", + "errorDirectUrl": "Si prega di verificare il link al documento.
Questo collegamento deve essere un collegamento diretto al file da scaricare.", "errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Scarica il documento per salvare il backup del file localmente.", "errorEmptyTOC": "Inizia a creare un sommario applicando uno stile di intestazione dalla galleria Stili al testo selezionato.", "errorFilePassProtect": "Il file è protetto da password e non può essere aperto.", @@ -393,6 +405,7 @@ "errorSessionIdle": "Il documento non è stato modificato per molto tempo. Ti preghiamo di ricaricare la pagina.", "errorSessionToken": "La connessione al server è stata interrotta. Ti preghiamo di ricaricare la pagina.", "errorStockChart": "Ordine delle righe incorretto. Per creare un grafico azionario, inserisci i dati sul foglio nel seguente ordine:
prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.", + "errorTextFormWrongFormat": "Il valore inserito non corrisponde al formato del campo.", "errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.
Prima di poter continuare a lavorare, devi scaricare il file o copiarne il contenuto per assicurarti che nulla vada perso, quindi ricarica questa pagina.", "errorUserDrop": "Non si può accedere al file al momento.", "errorUsersExceed": "È stato superato il numero degli utenti consentito dalla tariffa", @@ -408,7 +421,11 @@ "uploadImageExtMessage": "Formato d'immagine sconosciuto.", "uploadImageFileCountMessage": "Nessuna immagine caricata.", "uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "Caricamento di dati...", @@ -439,14 +456,14 @@ "saveTitleText": "Salvataggio del documento", "sendMergeText": "Invio dei resultati della fusione...", "sendMergeTitle": "Invio dei resultati della fusione", + "textContinue": "Continua", "textLoadingDocument": "Caricamento di documento", + "textUndo": "Annulla", "txtEditingMode": "Impostare la modalità di modifica...", "uploadImageTextText": "Caricamento dell'immagine...", "uploadImageTitleText": "Caricamento dell'immagine", "waitText": "Attendere prego...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost)." }, "Main": { "criticalErrorTitle": "Errore", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index 06eb2d58e..9e3ad8932 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -26,6 +26,7 @@ "textContinuousPage": "現在のページに", "textCurrentPosition": "現在位置", "textDisplay": "表示する", + "textDone": "完了", "textEmptyImgUrl": "イメージのURLを指定すべきです。", "textEvenPage": "偶数ページから開始", "textFootnote": "脚注", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "ライブラリからのイメージ", "textPictureFromURL": "URLからのイメージ", "textPosition": "場所", + "textRecommended": "おすすめ", + "textRequired": "必須", "textRightBottom": "右下", "textRightTop": "右上", "textRows": "行", @@ -144,6 +147,7 @@ "textReviewChange": "変更の批評", "textRight": "右揃え", "textShape": "形", + "textSharingSettings": "共有設定", "textShd": "背景色", "textSmallCaps": "小型英大文字", "textSpacing": "間隔", @@ -180,6 +184,7 @@ "menuDelete": "削除", "menuDeleteTable": "表を削除する", "menuEdit": "編集する", + "menuEditLink": "リンクの編集", "menuJoinList": "前のリストに結合する", "menuMerge": "結合", "menuMore": "もっと", @@ -233,6 +238,7 @@ "textCancel": "キャンセル", "textCellMargins": "セルの余白", "textCentered": "中央揃え済み", + "textChangeShape": "図形の変更", "textChart": "グラフ", "textClassic": "クラシック", "textClose": "閉じる", @@ -241,7 +247,10 @@ "textCreateTextStyle": "新しいテキストスタイルを作成する", "textCurrent": "現在", "textCustomColor": "ユーザー設定の色", + "textCustomStyle": "カスタムスタイル", "textDecember": "12月", + "textDeleteImage": "画像の削除", + "textDeleteLink": "リンクの削除", "textDesign": "デザイン", "textDifferentFirstPage": "先頭ページのみ別指定", "textDifferentOddAndEvenPages": "奇数/偶数ページ別指定", @@ -258,7 +267,7 @@ "textFebruary": "2月", "textFill": "塗りつぶし", "textFirstColumn": "最初の列", - "textFirstLine": "最初の線", + "textFirstLine": "最初の行", "textFlow": "フロー", "textFontColor": "フォントの色", "textFontColors": "フォントの色", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "ライブラリからのイメージ", "textPictureFromURL": "URLからのイメージ", "textPt": "pt", + "textRecommended": "おすすめ", "textRefresh": "更新する", "textRefreshEntireTable": "テーブル全体を更新する", "textRefreshPageNumbersOnly": "ページ番号のみを更新する", "textRemoveChart": "チャートを削除する", - "textRemoveImage": "イメージを削除する", - "textRemoveLink": "リンクを削除する", "textRemoveShape": "形を削除する", "textRemoveTable": "表を削除する", "textRemoveTableContent": "目次を削除する", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "ヘッダー行として繰り返す", "textReplace": "置換する", "textReplaceImage": "イメージを置換する", + "textRequired": "必須", "textResizeToFitContent": "内容に合わせてサイズを変更する", "textRightAlign": "右揃え", "textSa": "土", @@ -356,6 +365,7 @@ "textTableOfCont": "目次", "textTableOptions": "表の設定", "textText": "テキスト", + "textTextWrapping": "テキストの折り返し\t", "textTh": "木", "textThrough": "スルー", "textTight": "外周", @@ -365,7 +375,8 @@ "textTu": "火", "textType": "タイプ", "textWe": "水", - "textWrap": "折り返す" + "textWrap": "折り返す", + "textWrappingStyle": "折り返しの種類" }, "Error": { "convertationTimeoutText": "変換のタイムアウトを超過しました。", @@ -379,6 +390,7 @@ "errorDataEncrypted": "暗号化された変更を受け取りましたが、解読できません。", "errorDataRange": "データの範囲は正しくありません。", "errorDefaultMessage": "エラー コード:%1", + "errorDirectUrl": "ドキュメントへのリンクを確認してください。
このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。", "errorEditingDownloadas": "文書を操作中にエラーがありました.
ファイルのバックアップコピーを保存するように文書をダウンロードしてください。", "errorEmptyTOC": "スタイルギャラリーからの見出しスタイルを選択したテキストに適用して、目次の作成を開始します", "errorFilePassProtect": "ファイルはパスワードで保護されており、開けませんでした。", @@ -393,6 +405,7 @@ "errorSessionIdle": "文書が長いとこ変更されませんでした。ページを再び読み込みしてください。", "errorSessionToken": "サーバの接続が中断されました。ページを再びお読み込みしてください。", "errorStockChart": "行の順序が正しくありません。株価チャートを作るようにシートにこのようにデータを配置してください:
始値、最高価格、最小価格、終値。", + "errorTextFormWrongFormat": "入力された値がフィールドのフォーマットと一致しません。", "errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されています。
作業を継続する前に、ファイルをダウンロードするか内容をコピーして変更が失われていないことを確認してから、このページを再読み込みしてください。", "errorUserDrop": "今、ファイルにアクセスすることはできません。", "errorUsersExceed": "料金プランで許可されているユーザー数を超えました。", @@ -408,11 +421,16 @@ "uploadImageExtMessage": "不明なイメージの形式", "uploadImageFileCountMessage": "アップロードしたイメージがない", "uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "データの読み込み中...", "applyChangesTitleText": "データの読み込み中", + "confirmMaxChangesSize": "アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。", "downloadMergeText": "ダウンロード中...", "downloadMergeTitle": "ダウンロード中", "downloadTextText": "文書のダウンロード中...", @@ -439,14 +457,13 @@ "saveTitleText": "文書を保存中", "sendMergeText": "結合の結果の送信中...", "sendMergeTitle": "結合の結果の送信中", + "textContinue": "続ける", "textLoadingDocument": "文書の読み込み中", + "textUndo": "元に戻す", "txtEditingMode": "編集モードを設定します...", "uploadImageTextText": "イメージのアップロード中...", "uploadImageTitleText": "イメージのアップロード中", - "waitText": "少々お待ちください...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "waitText": "少々お待ちください..." }, "Main": { "criticalErrorTitle": "エラー", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index dbe5cc56f..1b2f00182 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -59,6 +59,9 @@ "textTable": "표", "textTableSize": "표 크기", "txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required", "textTableContents": "Table of Contents", "textWithBlueLinks": "With Blue Links", "textWithPageNumbers": "With Page Numbers" @@ -160,7 +163,8 @@ "textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", "textUnderline": "밑줄", "textUsers": "사용자", - "textWidow": "개별 제어" + "textWidow": "개별 제어", + "textSharingSettings": "Sharing Settings" }, "HighlightColorPalette": { "textNoFill": "채우기 없음" @@ -198,6 +202,7 @@ "textNumberingValue": "번호", "textOk": "확인", "textRows": "행", + "menuEditLink": "Edit Link", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" @@ -298,8 +303,6 @@ "textPictureFromURL": "URL에서 그림", "textPt": "pt", "textRemoveChart": "차트 제거", - "textRemoveImage": "이미지 제거", - "textRemoveLink": "링크 제거", "textRemoveShape": "도형 제거", "textRemoveTable": "표 제거", "textReorder": "재정렬", @@ -340,9 +343,13 @@ "textAmountOfLevels": "Amount of Levels", "textCancel": "Cancel", "textCentered": "Centered", + "textChangeShape": "Change Shape", "textClassic": "Classic", "textCreateTextStyle": "Create new text style", "textCurrent": "Current", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", "textDistinctive": "Distinctive", "textDone": "Done", "textEnterTitleNewStyle": "Enter title of a new style", @@ -354,10 +361,12 @@ "textOnline": "Online", "textPageNumbers": "Page Numbers", "textParagraphStyle": "Paragraph Style", + "textRecommended": "Recommended", "textRefresh": "Refresh", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textRemoveTableContent": "Remove table of contents", + "textRequired": "Required", "textRightAlign": "Right Align", "textSameCreatedNewStyle": "Same as created new style", "textSimple": "Simple", @@ -365,7 +374,9 @@ "textStructure": "Structure", "textStyles": "Styles", "textTableOfCont": "TOC", - "textTitle": "Title" + "textTextWrapping": "Text Wrapping", + "textTitle": "Title", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "변환 시간을 초과했습니다.", @@ -406,7 +417,13 @@ "uploadImageExtMessage": "알 수없는 이미지 형식입니다.", "uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", "uploadImageSizeMessage": "이미지 크기 제한을 초과했습니다.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, @@ -445,8 +462,8 @@ "uploadImageTitleText": "이미지 업로드 중", "waitText": "잠시만 기다려주세요...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "오류", diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index f25731c10..cc015adf8 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -59,6 +59,9 @@ "textTable": "ຕາຕະລາງ", "textTableSize": "ຂະໜາດຕາຕະລາງ", "txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required", "textTableContents": "Table of Contents", "textWithBlueLinks": "With Blue Links", "textWithPageNumbers": "With Page Numbers" @@ -160,7 +163,8 @@ "textTryUndoRedo": "ໜ້າທີ່ ກັບຄືນ ຫຼື ທວນຄືນ ຖືກປິດໃຊ້ງານ ສຳລັບໂໝດການແກ້ໄຂຮ່ວມກັນດ່ວນ.", "textUnderline": "ີຂີດກ້ອງ", "textUsers": "ຜຸ້ໃຊ້", - "textWidow": "ໜ້າຄວບຄຸມ" + "textWidow": "ໜ້າຄວບຄຸມ", + "textSharingSettings": "Sharing Settings" }, "HighlightColorPalette": { "textNoFill": "ບໍ່ມີການຕື່ມຂໍ້ມູນໃສ່" @@ -198,6 +202,7 @@ "textNumberingValue": "ມູນຄ່າ ໝາຍ ເລກ", "textOk": "ຕົກລົງ", "textRows": "ແຖວ", + "menuEditLink": "Edit Link", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" @@ -298,8 +303,6 @@ "textPictureFromURL": "ຮູບພາບຈາກ URL", "textPt": "pt", "textRemoveChart": "ລົບແຜນວາດ", - "textRemoveImage": "ລົບຮູບ", - "textRemoveLink": "ລົບລີ້ງ", "textRemoveShape": "ລົບຮ່າງ", "textRemoveTable": "ລົບຕາຕະລາງ", "textReorder": "ຈັດຮຽງໃໝ່", @@ -340,9 +343,13 @@ "textAmountOfLevels": "Amount of Levels", "textCancel": "Cancel", "textCentered": "Centered", + "textChangeShape": "Change Shape", "textClassic": "Classic", "textCreateTextStyle": "Create new text style", "textCurrent": "Current", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", "textDistinctive": "Distinctive", "textDone": "Done", "textEnterTitleNewStyle": "Enter title of a new style", @@ -354,10 +361,12 @@ "textOnline": "Online", "textPageNumbers": "Page Numbers", "textParagraphStyle": "Paragraph Style", + "textRecommended": "Recommended", "textRefresh": "Refresh", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textRemoveTableContent": "Remove table of contents", + "textRequired": "Required", "textRightAlign": "Right Align", "textSameCreatedNewStyle": "Same as created new style", "textSimple": "Simple", @@ -365,7 +374,9 @@ "textStructure": "Structure", "textStyles": "Styles", "textTableOfCont": "TOC", - "textTitle": "Title" + "textTextWrapping": "Text Wrapping", + "textTitle": "Title", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", @@ -406,7 +417,13 @@ "uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ", "uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ", "uploadImageSizeMessage": "ຮູບພາບໃຫຍ່ເກີນໄປ. ຂະຫນາດສູງສຸດແມ່ນ 25 MB.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, @@ -445,8 +462,8 @@ "uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", "waitText": "ກະລຸນາລໍຖ້າ...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "ຂໍ້ຜິດພາດ", diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index 25c4ac34f..2bc05b84d 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -61,7 +61,10 @@ "textOk": "Ok", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links" + "textWithBlueLinks": "With Blue Links", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textUnderline": "Underline", "textUsers": "Users", "textWidow": "Widow control", - "textOk": "Ok" + "textOk": "Ok", + "textSharingSettings": "Sharing Settings" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -200,7 +204,8 @@ "textNumberingValue": "Numbering Value", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -366,7 +371,15 @@ "textEnterTitleNewStyle": "Enter title of a new style", "textNextParagraphStyle": "Next paragraph style", "textSameCreatedNewStyle": "Same as created new style", - "textParagraphStyle": "Paragraph Style" + "textParagraphStyle": "Paragraph Style", + "textChangeShape": "Change Shape", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textCustomStyle": "Custom Style", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -409,7 +422,13 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/ms.json b/apps/documenteditor/mobile/locale/ms.json index 4b0d98d20..881a9b3a5 100644 --- a/apps/documenteditor/mobile/locale/ms.json +++ b/apps/documenteditor/mobile/locale/ms.json @@ -60,6 +60,9 @@ "textTableContents": "Senarai Kandungan", "textTableSize": "Saiz Jadual", "txtNotUrl": "Medan ini perlu sebagai URL dalam \"http://www.example.com\" formatnya", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required", "textWithBlueLinks": "With Blue Links", "textWithPageNumbers": "With Page Numbers" }, @@ -160,7 +163,8 @@ "textTryUndoRedo": "Fungsi Buat asal/Buat semula dinyahdayakan bagi mod pengeditan Bersama Pantas.", "textUnderline": "Garis bawah", "textUsers": "Pengguna", - "textWidow": "Kawalan Balu" + "textWidow": "Kawalan Balu", + "textSharingSettings": "Sharing Settings" }, "HighlightColorPalette": { "textNoFill": "Tiada Isian" @@ -200,7 +204,8 @@ "textRefreshEntireTable": "Segar semula keseluruhan jadual", "textRefreshPageNumbersOnly": "Segar semula nombor halaman sahaja", "textRows": "Baris", - "txtWarnUrl": "Mengklik pautan ini boleh membahayakan peranti dan data anda.
Adakah anda mahu meneruskan?" + "txtWarnUrl": "Mengklik pautan ini boleh membahayakan peranti dan data anda.
Adakah anda mahu meneruskan?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Amaran", @@ -318,8 +323,6 @@ "textRefreshEntireTable": "Segar semula keseluruhan jadual", "textRefreshPageNumbersOnly": "Segar semula nombor halaman sahaja", "textRemoveChart": "Alih Keluar Carta", - "textRemoveImage": "Alih Keluar Imej", - "textRemoveLink": "Alih Keluar Pautan", "textRemoveShape": "Alih Keluar Bentuk", "textRemoveTable": "Alih Keluar Jadual", "textRemoveTableContent": "Alih keluar senarai kandungan", @@ -365,7 +368,15 @@ "textType": "Jenis", "textWe": "Kami", "textWrap": "Balut", - "textTableOfCont": "TOC" + "textChangeShape": "Change Shape", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTableOfCont": "TOC", + "textTextWrapping": "Text Wrapping", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Melebihi masa tamat penukaran.", @@ -393,7 +404,7 @@ "errorSessionIdle": "Dokumen tidak diedit buat masa yang lama. Sila muat semula halaman.", "errorSessionToken": "Sambungan kepada pelayan telah terganggu. Sila muat semula halaman.", "errorStockChart": "Urutan baris tidak betul. Untuk membina carta stok, tempatkan data pada helaian mengikut urutan:
harga bukaan, harga mak, harga min, harga penutup.", - "errorUpdateVersionOnDisconnect": "Sambungan internet telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", + "errorUpdateVersionOnDisconnect": "Sambungan telah dipulihkan, dan versi fail telah berubah.
Sebelum anda boleh terus bekerja, anda perlu memuat turun fail atau menyalin kandungannya untuk memastikan tiada ada yang hilang, dan kemudian muat semula halaman ini.", "errorUserDrop": "Fail tidak boleh diakses sekarang.", "errorUsersExceed": "Bilangan pengguna yang didizinkan mengikut pelan pembayaran telah lebih", "errorViewerDisconnect": "Sambungan telah hilang. Anda masih boleh melihat dokumen,
tetapi tidak dapat muat turun atau cetaknya sehingga sambungan dipulihkan dan halaman dimuat semua.", @@ -408,6 +419,12 @@ "uploadImageExtMessage": "Format imej yang tidak diketahui.", "uploadImageFileCountMessage": "Tiada Imej dimuat naik.", "uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, "LongActions": { @@ -445,8 +462,8 @@ "uploadImageTitleText": "Imej dimuat naik", "waitText": "Sila, tunggu…", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Ralat", @@ -681,7 +698,7 @@ "dlgLeaveTitleText": "Anda meninggalkan aplikasi", "leaveButtonText": "Tinggalkan Halaman ini", "stayButtonText": "Kekal pada Halaman ini", - "textOk": "OK", + "textOk": "Okey", "textSwitchedMobileView": "Switched to Mobile view", "textSwitchedStandardView": "Switched to Standard view" } diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index 25c4ac34f..2bc05b84d 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -61,7 +61,10 @@ "textOk": "Ok", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links" + "textWithBlueLinks": "With Blue Links", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textUnderline": "Underline", "textUsers": "Users", "textWidow": "Widow control", - "textOk": "Ok" + "textOk": "Ok", + "textSharingSettings": "Sharing Settings" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -200,7 +204,8 @@ "textNumberingValue": "Numbering Value", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -366,7 +371,15 @@ "textEnterTitleNewStyle": "Enter title of a new style", "textNextParagraphStyle": "Next paragraph style", "textSameCreatedNewStyle": "Same as created new style", - "textParagraphStyle": "Paragraph Style" + "textParagraphStyle": "Paragraph Style", + "textChangeShape": "Change Shape", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textCustomStyle": "Custom Style", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -409,7 +422,13 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index c6a3daf3f..bc0f90cc6 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -58,7 +58,10 @@ "textTable": "Tabel", "textTableSize": "Tabelgrootte", "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "textDone": "Done", "textOk": "Ok", + "textRecommended": "Recommended", + "textRequired": "Required", "textTableContents": "Table of Contents", "textWithBlueLinks": "With Blue Links", "textWithPageNumbers": "With Page Numbers" @@ -160,7 +163,8 @@ "textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", "textUnderline": "Onderstrepen", "textUsers": "Gebruikers", - "textWidow": "Zwevende regels voorkomen" + "textWidow": "Zwevende regels voorkomen", + "textSharingSettings": "Sharing Settings" }, "ThemeColorPalette": { "textCustomColors": "Aangepaste kleuren", @@ -198,6 +202,7 @@ "textNumberingValue": "Nummeringswaarde", "textOk": "OK", "textRows": "Rijen", + "menuEditLink": "Edit Link", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" @@ -282,8 +287,6 @@ "textPictureFromURL": "Afbeelding van URL", "textPt": "pt", "textRemoveChart": "Grafiek verwijderen", - "textRemoveImage": "Afbeelding verwijderen", - "textRemoveLink": "Koppeling verwijderen", "textRemoveShape": "Vorm verwijderen", "textRemoveTable": "Tabel verwijderen", "textReorder": "Opnieuw ordenen", @@ -320,10 +323,14 @@ "textAugust": "August", "textCancel": "Cancel", "textCentered": "Centered", + "textChangeShape": "Change Shape", "textClassic": "Classic", "textCreateTextStyle": "Create new text style", "textCurrent": "Current", + "textCustomStyle": "Custom Style", "textDecember": "December", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", "textDesign": "Design", "textDistinctive": "Distinctive", "textDone": "Done", @@ -348,10 +355,12 @@ "textOnline": "Online", "textPageNumbers": "Page Numbers", "textParagraphStyle": "Paragraph Style", + "textRecommended": "Recommended", "textRefresh": "Refresh", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textRemoveTableContent": "Remove table of contents", + "textRequired": "Required", "textRightAlign": "Right Align", "textSa": "Sa", "textSameCreatedNewStyle": "Same as created new style", @@ -362,10 +371,12 @@ "textStyles": "Styles", "textSu": "Su", "textTableOfCont": "TOC", + "textTextWrapping": "Text Wrapping", "textTh": "Th", "textTitle": "Title", "textTu": "Tu", - "textWe": "We" + "textWe": "We", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Time-out voor conversie overschreden.", @@ -406,7 +417,13 @@ "uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grootte is 25MB.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, @@ -445,8 +462,8 @@ "uploadImageTitleText": "Afbeelding wordt geüpload", "waitText": "Een moment geduld...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Fout", diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index 25c4ac34f..2bc05b84d 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -61,7 +61,10 @@ "textOk": "Ok", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links" + "textWithBlueLinks": "With Blue Links", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textUnderline": "Underline", "textUsers": "Users", "textWidow": "Widow control", - "textOk": "Ok" + "textOk": "Ok", + "textSharingSettings": "Sharing Settings" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -200,7 +204,8 @@ "textNumberingValue": "Numbering Value", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -366,7 +371,15 @@ "textEnterTitleNewStyle": "Enter title of a new style", "textNextParagraphStyle": "Next paragraph style", "textSameCreatedNewStyle": "Same as created new style", - "textParagraphStyle": "Paragraph Style" + "textParagraphStyle": "Paragraph Style", + "textChangeShape": "Change Shape", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textCustomStyle": "Custom Style", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -409,7 +422,13 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/pt-pt.json b/apps/documenteditor/mobile/locale/pt-pt.json index 3eab2b566..4b513db24 100644 --- a/apps/documenteditor/mobile/locale/pt-pt.json +++ b/apps/documenteditor/mobile/locale/pt-pt.json @@ -26,6 +26,7 @@ "textContinuousPage": "Página contínua", "textCurrentPosition": "Posição atual", "textDisplay": "Exibição", + "textDone": "Concluido", "textEmptyImgUrl": "Tem que especificar o URL da imagem.", "textEvenPage": "Página par", "textFootnote": "Nota de rodapé", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Imagem da biblioteca", "textPictureFromURL": "Imagem de um URL", "textPosition": "Posição", + "textRecommended": "Recomendado", + "textRequired": "Necessário", "textRightBottom": "Direita inferior", "textRightTop": "Direita superior", "textRows": "Linhas", @@ -144,6 +147,7 @@ "textReviewChange": "Rever alteração", "textRight": "Alinhar à direita", "textShape": "Forma", + "textSharingSettings": "Definições de partilha", "textShd": "Cor de fundo", "textSmallCaps": "Versaletes", "textSpacing": "Espaçamento", @@ -180,6 +184,7 @@ "menuDelete": "Eliminar", "menuDeleteTable": "Eliminar tabela", "menuEdit": "Editar", + "menuEditLink": "Editar ligação", "menuJoinList": "Juntar à lista anterior", "menuMerge": "Unir", "menuMore": "Mais", @@ -233,6 +238,7 @@ "textCancel": "Cancelar", "textCellMargins": "Margens da célula", "textCentered": "Centrado", + "textChangeShape": "Alterar forma", "textChart": "Gráfico", "textClassic": "Clássico", "textClose": "Fechar", @@ -241,7 +247,10 @@ "textCreateTextStyle": "Criar novo estilo de texto", "textCurrent": "Atual", "textCustomColor": "Cor personalizada", + "textCustomStyle": "Estilo personalizado", "textDecember": "dezembro", + "textDeleteImage": "Eliminar imagem", + "textDeleteLink": "Eliminar ligação", "textDesign": "Design", "textDifferentFirstPage": "Primeira página diferente", "textDifferentOddAndEvenPages": "Páginas pares e ímpares diferentes", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "Imagem da biblioteca", "textPictureFromURL": "Imagem de um URL", "textPt": "pt", + "textRecommended": "Recomendado", "textRefresh": "Recarregar", "textRefreshEntireTable": "Recarregar toda a tabela", "textRefreshPageNumbersOnly": "Recarregar número das páginas", "textRemoveChart": "Remover gráfico", - "textRemoveImage": "Remover imagem", - "textRemoveLink": "Remover ligação", "textRemoveShape": "Remover forma", "textRemoveTable": "Remover tabela", "textRemoveTableContent": "Remover índice remissivo", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "Repetir como linha de cabeçalho", "textReplace": "Substituir", "textReplaceImage": "Substituir imagem", + "textRequired": "Necessário", "textResizeToFitContent": "Ajustar ao conteúdo", "textRightAlign": "Alinhar à direita", "textSa": "sáb", @@ -356,6 +365,7 @@ "textTableOfCont": "Índice remissivo", "textTableOptions": "Opções da tabela", "textText": "Texto", + "textTextWrapping": "Moldar texto", "textTh": "qui", "textThrough": "Através", "textTight": "Justo", @@ -365,7 +375,8 @@ "textTu": "ter", "textType": "Tipo", "textWe": "qua", - "textWrap": "Moldar" + "textWrap": "Moldar", + "textWrappingStyle": "Estilo de moldagem" }, "Error": { "convertationTimeoutText": "Excedeu o tempo limite de conversão.", @@ -379,6 +390,7 @@ "errorDataEncrypted": "Foram recebidas alterações cifradas que não puderam ser decifradas.", "errorDataRange": "Intervalo de dados inválido.", "errorDefaultMessage": "Código do erro: %1", + "errorDirectUrl": "Verifique a ligação ao documento.
Deve ser uma ligação direta para o ficheiro a descarregar.", "errorEditingDownloadas": "Ocorreu um erro ao trabalhar o documento.
Descarregue o documento para guardar uma cópia local.", "errorEmptyTOC": "Pode criar um índice remissivo aplicando um estilo ao texto selecionado a partir da galeria de estilos.", "errorFilePassProtect": "Este ficheiro está protegido por uma palavra-passe e não foi possível abrir.", @@ -393,6 +405,7 @@ "errorSessionIdle": "O documento não foi editado durante muito tempo. Por favor, recarregue a página.", "errorSessionToken": "A ligação ao servidor foi interrompida. Por favor, recarregue 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.", + "errorTextFormWrongFormat": "O valor introduzido não corresponde ao formato do campo.", "errorUpdateVersionOnDisconnect": "A ligação foi restaurada e a versão do ficheiro foi alterada.
Antes de poder continuar a trabalhar, é necessário descarregar o ficheiro ou copiar o seu conteúdo para garantir que nada se perde e depois voltar a carregar esta página.", "errorUserDrop": "De momento, não é possível aceder ao ficheiro.", "errorUsersExceed": "Excedeu o número máximo de utilizadores permitidos pelo seu plano", @@ -408,7 +421,11 @@ "uploadImageExtMessage": "Formato de imagem desconhecido.", "uploadImageFileCountMessage": "Nenhuma imagem foi carregada.", "uploadImageSizeMessage": "A imagem é muito grande. O tamanho máximo é de 25 MB.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "A carregar dados...", @@ -445,8 +462,8 @@ "uploadImageTitleText": "A carregar imagem", "waitText": "Aguarde...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Erro", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index b2b1b8ea3..2604d2c56 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -26,6 +26,7 @@ "textContinuousPage": "Página contínua", "textCurrentPosition": "Posição Atual", "textDisplay": "Exibir", + "textDone": "Concluído", "textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", "textEvenPage": "Página par", "textFootnote": "Nota de rodapé", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Imagem da biblioteca", "textPictureFromURL": "Imagem da URL", "textPosition": "Posição", + "textRecommended": "Recomendado", + "textRequired": "Necessário", "textRightBottom": "Parte inferior direita", "textRightTop": "Parte superior direita", "textRows": "Linhas", @@ -144,6 +147,7 @@ "textReviewChange": "Rever Alterações", "textRight": "Alinhar à direita", "textShape": "Forma", + "textSharingSettings": "Configurações de compartilhamento", "textShd": "Cor do plano de fundo", "textSmallCaps": "Versalete", "textSpacing": "Espaçamento", @@ -180,6 +184,7 @@ "menuDelete": "Excluir", "menuDeleteTable": "Excluir tabela", "menuEdit": "Editar", + "menuEditLink": "Editar Link", "menuJoinList": "Junta-se à lista anterior", "menuMerge": "Mesclar", "menuMore": "Mais", @@ -233,6 +238,7 @@ "textCancel": "Cancelar", "textCellMargins": "Margens da célula", "textCentered": "Centralizado", + "textChangeShape": "Mudar forma", "textChart": "Gráfico", "textClassic": "Clássico", "textClose": "Fechar", @@ -241,7 +247,10 @@ "textCreateTextStyle": "Criar um novo estilo de texto", "textCurrent": "Atual", "textCustomColor": "Cor personalizada", + "textCustomStyle": "Estilo personalizado", "textDecember": "Dezembro", + "textDeleteImage": "Eliminar imagem", + "textDeleteLink": "Excluir Link", "textDesign": "Design", "textDifferentFirstPage": "Primeira página diferente", "textDifferentOddAndEvenPages": "Páginas pares e ímpares diferentes", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "Imagem da biblioteca", "textPictureFromURL": "Imagem da URL", "textPt": "Pt", + "textRecommended": "Recomendado", "textRefresh": "Atualizar", "textRefreshEntireTable": "Atualizar tabela inteira", "textRefreshPageNumbersOnly": "Atualizar apenas números de página", "textRemoveChart": "Remover gráfico", - "textRemoveImage": "Remover imagem", - "textRemoveLink": "Remover link", "textRemoveShape": "Remover forma", "textRemoveTable": "Remover tabela", "textRemoveTableContent": "Excluir tabela de conteúdo", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "Repetir como linha de cabeçalho", "textReplace": "Substituir", "textReplaceImage": "Substituir imagem", + "textRequired": "Necessário", "textResizeToFitContent": "Redimensionar para ajustar o conteúdo", "textRightAlign": "Alinhar à direita", "textSa": "Sáb", @@ -356,6 +365,7 @@ "textTableOfCont": "Índice", "textTableOptions": "Opções de tabela", "textText": "Тexto", + "textTextWrapping": "Disposição do texto", "textTh": "Qui.", "textThrough": "Através", "textTight": "Justo", @@ -365,7 +375,8 @@ "textTu": "Ter", "textType": "Tipo", "textWe": "Qua", - "textWrap": "Encapsulamento" + "textWrap": "Encapsulamento", + "textWrappingStyle": "Estilo da quebra" }, "Error": { "convertationTimeoutText": "Tempo limite de conversão excedido.", @@ -379,6 +390,7 @@ "errorDataEncrypted": "Alteração criptografadas foram recebidas, e não podem ser decifradas.", "errorDataRange": "Intervalo de dados incorreto.", "errorDefaultMessage": "Código do erro: %1", + "errorDirectUrl": "Por favor, verifique o link para o documento.
Este link deve ser o link direto para baixar o arquivo.", "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
Baixe o documento para salvar a cópia de backup do arquivo localmente.", "errorEmptyTOC": "Comece a criar um sumário aplicando um estilo de título da galeria Estilos ao texto selecionado.", "errorFilePassProtect": "O arquivo é protegido por senha e não pôde ser aberto.", @@ -393,6 +405,7 @@ "errorSessionIdle": "O documento não é editado há muito tempo. Por favor recarregue a página.", "errorSessionToken": "A conexão com o servidor foi interrompida. Por favor recarregue a página.", "errorStockChart": "Ordem incorreta das linhas. Para construir um gráfico de ações, coloque os dados na folha na seguinte ordem:
preço de abertura, preço máximo, preço mínimo, preço de fechamento.", + "errorTextFormWrongFormat": "O valor inserido não corresponde ao formato do campo.", "errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada.
Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.", "errorUserDrop": "O arquivo não pode ser acessado no momento.", "errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", @@ -408,7 +421,11 @@ "uploadImageExtMessage": "Formato de imagem desconhecido.", "uploadImageFileCountMessage": "Sem imagens carregadas.", "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "Carregando dados...", @@ -439,14 +456,14 @@ "saveTitleText": "Salvando documento", "sendMergeText": "Enviando mesclar...", "sendMergeTitle": "Enviando Mesclar", + "textContinue": "Continuar", "textLoadingDocument": "Carregando documento", "txtEditingMode": "Definir modo de edição...", "uploadImageTextText": "Carregando imagem...", "uploadImageTitleText": "Carregando imagem", "waitText": "Por favor, aguarde...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Erro", @@ -610,6 +627,7 @@ "textMargins": "Margens", "textMarginsH": "Margens superior e inferior são muito altas para uma determinada altura da página", "textMarginsW": "Margens são muito grandes para uma determinada largura da página", + "textMobileView": "Exibição móvel", "textNavigation": "Navegação", "textNo": "Não", "textNoCharacters": "Caracteres não imprimíveis", @@ -673,8 +691,7 @@ "txtScheme6": "Concurso", "txtScheme7": "Patrimônio Líquido", "txtScheme8": "Fluxo", - "txtScheme9": "Fundição", - "textMobileView": "Mobile View" + "txtScheme9": "Fundição" }, "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.", @@ -682,7 +699,7 @@ "leaveButtonText": "Sair desta página", "stayButtonText": "Ficar nesta página", "textOk": "OK", - "textSwitchedMobileView": "Switched to Mobile view", - "textSwitchedStandardView": "Switched to Standard view" + "textSwitchedMobileView": "Alterado para a visualização móvel", + "textSwitchedStandardView": "Alterado para a visualização padrão" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 4642fd35d..10f2b2b8d 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -61,7 +61,10 @@ "textTableSize": "Dimensiune tabel", "textWithBlueLinks": "Cu linkuri albastre", "textWithPageNumbers": "Cu numere de pagină", - "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"" + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", "textUnderline": "Subliniat", "textUsers": "Utilizatori", - "textWidow": "Control văduvă" + "textWidow": "Control văduvă", + "textSharingSettings": "Sharing Settings" }, "HighlightColorPalette": { "textNoFill": "Fără umplere" @@ -200,7 +204,8 @@ "textRefreshEntireTable": "Reîmprospătarea întregului tabel", "textRefreshPageNumbersOnly": "Actualizare numai numere de pagină", "textRows": "Rânduri", - "txtWarnUrl": "Un clic pe acest link ar putea căuza daune dispozitivului și datelor dvs.
Sunteți sigur că doriți să continuați?" + "txtWarnUrl": "Un clic pe acest link ar putea căuza daune dispozitivului și datelor dvs.
Sunteți sigur că doriți să continuați?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Avertisment", @@ -318,8 +323,6 @@ "textRefreshEntireTable": "Reîmprospătarea întregului tabel", "textRefreshPageNumbersOnly": "Actualizare numai numere de pagină", "textRemoveChart": "Ștergere diagramă", - "textRemoveImage": "Ștergere imagine", - "textRemoveLink": "Ștergere link", "textRemoveShape": "Stergere forma", "textRemoveTable": "Ștergere tabel", "textRemoveTableContent": "Eliminare cuprins", @@ -365,7 +368,15 @@ "textTu": "Ma", "textType": "Tip", "textWe": "Mi", - "textWrap": "Încadrare" + "textWrap": "Încadrare", + "textChangeShape": "Change Shape", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", @@ -408,6 +419,12 @@ "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.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, "LongActions": { @@ -445,8 +462,8 @@ "uploadImageTitleText": "Încărcarea imaginii", "waitText": "Vă rugăm să așteptați...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Eroare", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index 6922594ef..19bf4a4ee 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -26,6 +26,7 @@ "textContinuousPage": "На текущей странице", "textCurrentPosition": "Текущая позиция", "textDisplay": "Отобразить", + "textDone": "Готово", "textEmptyImgUrl": "Необходимо указать URL рисунка.", "textEvenPage": "С четной страницы", "textFootnote": "Сноска", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Рисунок из библиотеки", "textPictureFromURL": "Рисунок по URL", "textPosition": "Положение", + "textRecommended": "Рекомендуемые", + "textRequired": "Обязательно", "textRightBottom": "Справа снизу", "textRightTop": "Справа сверху", "textRows": "Строки", @@ -144,6 +147,7 @@ "textReviewChange": "Просмотр изменений", "textRight": "По правому краю", "textShape": "Фигура", + "textSharingSettings": "Настройки доступа", "textShd": "Цвет фона", "textSmallCaps": "Малые прописные", "textSpacing": "Интервал", @@ -180,6 +184,7 @@ "menuDelete": "Удалить", "menuDeleteTable": "Удалить таблицу", "menuEdit": "Редактировать", + "menuEditLink": "Редактировать ссылку", "menuJoinList": "Объединить с предыдущим списком", "menuMerge": "Объединить", "menuMore": "Ещё", @@ -233,6 +238,7 @@ "textCancel": "Отмена", "textCellMargins": "Поля ячейки", "textCentered": "По центру", + "textChangeShape": "Изменить фигуру", "textChart": "Диаграмма", "textClassic": "Классический", "textClose": "Закрыть", @@ -241,7 +247,10 @@ "textCreateTextStyle": "Создать новый стиль текста", "textCurrent": "Текущий", "textCustomColor": "Пользовательский цвет", + "textCustomStyle": "Пользовательский стиль", "textDecember": "Декабрь", + "textDeleteImage": "Удалить рисунок", + "textDeleteLink": "Удалить ссылку", "textDesign": "Дизайн", "textDifferentFirstPage": "Особый для первой страницы", "textDifferentOddAndEvenPages": "Разные для четных и нечетных", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "Рисунок из библиотеки", "textPictureFromURL": "Рисунок по URL", "textPt": "пт", + "textRecommended": "Рекомендуемые", "textRefresh": "Обновить", "textRefreshEntireTable": "Обновить целиком", "textRefreshPageNumbersOnly": "Обновить только номера страниц", "textRemoveChart": "Удалить диаграмму", - "textRemoveImage": "Удалить рисунок", - "textRemoveLink": "Удалить ссылку", "textRemoveShape": "Удалить фигуру", "textRemoveTable": "Удалить таблицу", "textRemoveTableContent": "Удалить оглавление", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "Повторять как заголовок", "textReplace": "Заменить", "textReplaceImage": "Заменить рисунок", + "textRequired": "Обязательно", "textResizeToFitContent": "По размеру содержимого", "textRightAlign": "По правому краю", "textSa": "Сб", @@ -356,6 +365,7 @@ "textTableOfCont": "Оглавление", "textTableOptions": "Настройки таблицы", "textText": "Текст", + "textTextWrapping": "Обтекание текстом", "textTh": "Чт", "textThrough": "Сквозное", "textTight": "По контуру", @@ -365,7 +375,8 @@ "textTu": "Вт", "textType": "Тип", "textWe": "Ср", - "textWrap": "Стиль обтекания" + "textWrap": "Стиль обтекания", + "textWrappingStyle": "Стиль обтекания" }, "Error": { "convertationTimeoutText": "Превышено время ожидания конвертации.", @@ -379,10 +390,16 @@ "errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.", "errorDataRange": "Некорректный диапазон данных.", "errorDefaultMessage": "Код ошибки: %1", + "errorDirectUrl": "Проверьте ссылку на документ.
Эта ссылка должна быть прямой ссылкой для скачивания файла.", "errorEditingDownloadas": "В ходе работы с документом произошла ошибка.
Скачайте документ, чтобы сохранить резервную копию файла локально.", "errorEmptyTOC": "Начните создавать оглавление, применив к выделенному тексту стиль заголовка из галереи Стилей.", "errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Пожалуйста, обратитесь к администратору.", + "errorInconsistentExt": "При открытии файла произошла ошибка.
Содержимое файла не соответствует расширению файла.", + "errorInconsistentExtDocx": "При открытии файла произошла ошибка.
Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.", + "errorInconsistentExtPdf": "При открытии файла произошла ошибка.
Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.", + "errorInconsistentExtPptx": "При открытии файла произошла ошибка.
Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.", + "errorInconsistentExtXlsx": "При открытии файла произошла ошибка.
Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.", "errorKeyEncrypt": "Неизвестный дескриптор ключа", "errorKeyExpire": "Срок действия дескриптора ключа истек", "errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", @@ -413,6 +430,7 @@ "LongActions": { "applyChangesTextText": "Загрузка данных...", "applyChangesTitleText": "Загрузка данных", + "confirmMaxChangesSize": "Размер внесенных изменений превышает ограничение, установленное для вашего сервера.
Нажмите \"Отменить\" для отмены последнего действия или нажмите \"Продолжить\", чтобы сохранить действие локально (потребуется скачать файл или скопировать его содержимое чтобы ничего не потерялось).", "downloadMergeText": "Загрузка...", "downloadMergeTitle": "Загрузка", "downloadTextText": "Загрузка документа...", @@ -439,14 +457,13 @@ "saveTitleText": "Сохранение документа", "sendMergeText": "Отправка результатов слияния...", "sendMergeTitle": "Отправка результатов слияния", + "textContinue": "Продолжить", "textLoadingDocument": "Загрузка документа", + "textUndo": "Отменить", "txtEditingMode": "Установка режима редактирования...", "uploadImageTextText": "Загрузка рисунка...", "uploadImageTitleText": "Загрузка рисунка", - "waitText": "Пожалуйста, подождите...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "waitText": "Пожалуйста, подождите..." }, "Main": { "criticalErrorTitle": "Ошибка", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index 6b1a0d93b..ca6d0b504 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -59,6 +59,9 @@ "textTable": "Tabuľka", "textTableSize": "Veľkosť tabuľky", "txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required", "textTableContents": "Table of Contents", "textWithBlueLinks": "With Blue Links", "textWithPageNumbers": "With Page Numbers" @@ -160,7 +163,8 @@ "textTryUndoRedo": "Funkcia Späť/Znova sú vypnuté pre rýchli režim spolupráce. ", "textUnderline": "Podčiarknutie", "textUsers": "Používatelia", - "textWidow": "Ovládanie okien" + "textWidow": "Ovládanie okien", + "textSharingSettings": "Sharing Settings" }, "HighlightColorPalette": { "textNoFill": "Bez výplne" @@ -198,6 +202,7 @@ "textNumberingValue": "Hodnota číslovania", "textOk": "OK", "textRows": "Riadky", + "menuEditLink": "Edit Link", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" @@ -298,8 +303,6 @@ "textPictureFromURL": "Obrázok z URL adresy", "textPt": "pt", "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", @@ -340,9 +343,13 @@ "textAmountOfLevels": "Amount of Levels", "textCancel": "Cancel", "textCentered": "Centered", + "textChangeShape": "Change Shape", "textClassic": "Classic", "textCreateTextStyle": "Create new text style", "textCurrent": "Current", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", "textDistinctive": "Distinctive", "textDone": "Done", "textEnterTitleNewStyle": "Enter title of a new style", @@ -354,10 +361,12 @@ "textOnline": "Online", "textPageNumbers": "Page Numbers", "textParagraphStyle": "Paragraph Style", + "textRecommended": "Recommended", "textRefresh": "Refresh", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textRemoveTableContent": "Remove table of contents", + "textRequired": "Required", "textRightAlign": "Right Align", "textSameCreatedNewStyle": "Same as created new style", "textSimple": "Simple", @@ -365,7 +374,9 @@ "textStructure": "Structure", "textStyles": "Styles", "textTableOfCont": "TOC", - "textTitle": "Title" + "textTextWrapping": "Text Wrapping", + "textTitle": "Title", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Prekročený čas konverzie.", @@ -406,7 +417,13 @@ "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.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, @@ -445,8 +462,8 @@ "uploadImageTitleText": "Nahrávanie obrázku", "waitText": "Čakajte, prosím...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Chyba", diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index 3d2e262c7..195cde62c 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -27,6 +27,7 @@ "textContinuousPage": "Continuous Page", "textCurrentPosition": "Current Position", "textDisplay": "Display", + "textDone": "Done", "textEmptyImgUrl": "You need to specify image URL.", "textEvenPage": "Even Page", "textFootnote": "Footnote", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "Picture from Library", "textPictureFromURL": "Picture from URL", "textPosition": "Position", + "textRecommended": "Recommended", + "textRequired": "Required", "textRightBottom": "Right Bottom", "textRightTop": "Right Top", "textRows": "Rows", @@ -145,6 +148,7 @@ "textReviewChange": "Review Change", "textRight": "Align right", "textShape": "Shape", + "textSharingSettings": "Sharing Settings", "textSmallCaps": "Small caps", "textSpacing": "Spacing", "textSpacingAfter": "Spacing after", @@ -181,6 +185,7 @@ "menuDelete": "Delete", "menuDeleteTable": "Delete Table", "menuEdit": "Edit", + "menuEditLink": "Edit Link", "menuJoinList": "Join to previous list", "menuMerge": "Merge", "menuMore": "More", @@ -236,6 +241,7 @@ "textBulletsAndNumbers": "Bullets & Numbers", "textCellMargins": "Cell Margins", "textCentered": "Centered", + "textChangeShape": "Change Shape", "textChart": "Chart", "textClassic": "Classic", "textClose": "Close", @@ -244,7 +250,10 @@ "textCreateTextStyle": "Create new text style", "textCurrent": "Current", "textCustomColor": "Custom Color", + "textCustomStyle": "Custom Style", "textDecember": "December", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", "textDesign": "Design", "textDifferentFirstPage": "Different first page", "textDifferentOddAndEvenPages": "Different odd and even pages", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "Picture from Library", "textPictureFromURL": "Picture from URL", "textPt": "pt", + "textRecommended": "Recommended", "textRefresh": "Refresh", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", "textRemoveShape": "Remove Shape", "textRemoveTable": "Remove Table", "textRemoveTableContent": "Remove table of contents", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "Repeat as Header Row", "textReplace": "Replace", "textReplaceImage": "Replace Image", + "textRequired": "Required", "textResizeToFitContent": "Resize to Fit Content", "textRightAlign": "Right Align", "textSa": "Sa", @@ -356,6 +365,7 @@ "textTableOfCont": "TOC", "textTableOptions": "Table Options", "textText": "Text", + "textTextWrapping": "Text Wrapping", "textTh": "Th", "textThrough": "Through", "textTight": "Tight", @@ -365,7 +375,8 @@ "textTu": "Tu", "textType": "Type", "textWe": "We", - "textWrap": "Wrap" + "textWrap": "Wrap", + "textWrappingStyle": "Wrapping Style" }, "Main": { "SDK": { @@ -607,10 +618,16 @@ "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", "errorDataRange": "Incorrect data range.", "errorDefaultMessage": "Error code: %1", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", "errorEditingDownloadas": "An error occurred during the work with the document.
Download document to save the file backup copy locally.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", "errorFilePassProtect": "The file is password protected and could not be opened.", "errorFileSizeExceed": "The file size exceeds your server limit.
Please, contact your admin.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", @@ -641,6 +658,7 @@ "LongActions": { "applyChangesTextText": "Loading data...", "applyChangesTitleText": "Loading Data", + "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", "downloadMergeText": "Downloading...", "downloadMergeTitle": "Downloading", "downloadTextText": "Downloading document...", @@ -667,14 +685,13 @@ "saveTitleText": "Saving Document", "sendMergeText": "Sending Merge...", "sendMergeTitle": "Sending Merge", + "textContinue": "Continue", "textLoadingDocument": "Loading document", + "textUndo": "Undo", "txtEditingMode": "Set editing mode...", "uploadImageTextText": "Uploading image...", "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "waitText": "Please, wait..." }, "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 25c4ac34f..2bc05b84d 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -61,7 +61,10 @@ "textOk": "Ok", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links" + "textWithBlueLinks": "With Blue Links", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textUnderline": "Underline", "textUsers": "Users", "textWidow": "Widow control", - "textOk": "Ok" + "textOk": "Ok", + "textSharingSettings": "Sharing Settings" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -200,7 +204,8 @@ "textNumberingValue": "Numbering Value", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -366,7 +371,15 @@ "textEnterTitleNewStyle": "Enter title of a new style", "textNextParagraphStyle": "Next paragraph style", "textSameCreatedNewStyle": "Same as created new style", - "textParagraphStyle": "Paragraph Style" + "textParagraphStyle": "Paragraph Style", + "textChangeShape": "Change Shape", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textCustomStyle": "Custom Style", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -409,7 +422,13 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 3399bfc50..fd28370cc 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -59,6 +59,9 @@ "textTable": "Tablo", "textTableSize": "Tablo Boyutu", "txtNotUrl": "Bu alan \"http://www.example.com\" formatında bir URL olmak zorundadır", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required", "textTableContents": "Table of Contents", "textWithBlueLinks": "With Blue Links", "textWithPageNumbers": "With Page Numbers" @@ -160,6 +163,7 @@ "textTryUndoRedo": "Hızlı birlikte düzenleme modunda geri al/ileri al fonksiyonları devre dışıdır.", "textUnderline": "Altı çizili", "textUsers": "Kullanıcılar", + "textSharingSettings": "Sharing Settings", "textWidow": "Widow control" }, "ThemeColorPalette": { @@ -198,6 +202,7 @@ "textNumberingValue": "Numaralandırma değeri", "textOk": "Tamam", "textRows": "Satırlar", + "menuEditLink": "Edit Link", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" @@ -287,8 +292,6 @@ "textPictureFromURL": "URL'den resim", "textPt": "pt", "textRemoveChart": "Grafiği Kaldır", - "textRemoveImage": "Resmi Kaldır", - "textRemoveLink": "Linki Kaldır", "textRemoveShape": "Şekli Kaldır", "textRemoveTable": "Tabloyu Kaldır", "textReorder": "Yeniden Sırala", @@ -323,9 +326,13 @@ "textAmountOfLevels": "Amount of Levels", "textCancel": "Cancel", "textCentered": "Centered", + "textChangeShape": "Change Shape", "textClassic": "Classic", "textCreateTextStyle": "Create new text style", "textCurrent": "Current", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", "textDistinctive": "Distinctive", "textDone": "Done", "textEmpty": "Empty", @@ -348,10 +355,12 @@ "textOnline": "Online", "textPageNumbers": "Page Numbers", "textParagraphStyle": "Paragraph Style", + "textRecommended": "Recommended", "textRefresh": "Refresh", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textRemoveTableContent": "Remove table of contents", + "textRequired": "Required", "textRightAlign": "Right Align", "textSa": "Sa", "textSameCreatedNewStyle": "Same as created new style", @@ -362,10 +371,12 @@ "textStyles": "Styles", "textSu": "Su", "textTableOfCont": "TOC", + "textTextWrapping": "Text Wrapping", "textTh": "Th", "textTitle": "Title", "textTu": "Tu", - "textWe": "We" + "textWe": "We", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Değişim süresi aşıldı.", @@ -406,7 +417,13 @@ "uploadImageExtMessage": "Bilinmeyen resim formatı.", "uploadImageFileCountMessage": "Resim yüklenmedi.", "uploadImageSizeMessage": "Görüntü çok büyük. Maksimum boyut 25 MB'dir.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, @@ -445,8 +462,8 @@ "uploadImageTitleText": "Resim Yükleniyor", "waitText": "Lütfen bekleyin...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Hata", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index f3d22ea9c..5fa124099 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -59,6 +59,9 @@ "textTable": "Таблиця", "textTableSize": "Розмір таблиці", "txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required", "textTableContents": "Table of Contents", "textWithBlueLinks": "With Blue Links", "textWithPageNumbers": "With Page Numbers" @@ -160,7 +163,8 @@ "textTryUndoRedo": "Функції скасування і повтору дій відключені для режиму швидкого спільного редагування.", "textUnderline": "Підкреслений", "textUsers": "Користувачі", - "textWidow": "Заборона висячих рядків" + "textWidow": "Заборона висячих рядків", + "textSharingSettings": "Sharing Settings" }, "HighlightColorPalette": { "textNoFill": "Без заливки" @@ -198,6 +202,7 @@ "textNumberingValue": "Початкове значення", "textOk": "Ок", "textRows": "Рядки", + "menuEditLink": "Edit Link", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" @@ -298,8 +303,6 @@ "textPictureFromURL": "Зображення з URL", "textPt": "Пт", "textRemoveChart": "Видалити діаграму", - "textRemoveImage": "Видалити зображення", - "textRemoveLink": "Видалити посилання", "textRemoveShape": "Видалити форму", "textRemoveTable": "Видалити таблицю", "textReorder": "Порядок", @@ -340,9 +343,13 @@ "textAmountOfLevels": "Amount of Levels", "textCancel": "Cancel", "textCentered": "Centered", + "textChangeShape": "Change Shape", "textClassic": "Classic", "textCreateTextStyle": "Create new text style", "textCurrent": "Current", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", "textDistinctive": "Distinctive", "textDone": "Done", "textEnterTitleNewStyle": "Enter title of a new style", @@ -354,10 +361,12 @@ "textOnline": "Online", "textPageNumbers": "Page Numbers", "textParagraphStyle": "Paragraph Style", + "textRecommended": "Recommended", "textRefresh": "Refresh", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", "textRemoveTableContent": "Remove table of contents", + "textRequired": "Required", "textRightAlign": "Right Align", "textSameCreatedNewStyle": "Same as created new style", "textSimple": "Simple", @@ -365,7 +374,9 @@ "textStructure": "Structure", "textStyles": "Styles", "textTableOfCont": "TOC", - "textTitle": "Title" + "textTextWrapping": "Text Wrapping", + "textTitle": "Title", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Перевищено час очікування конверсії.", @@ -406,7 +417,13 @@ "uploadImageExtMessage": "Невідомий формат зображення.", "uploadImageFileCountMessage": "Жодного зображення не завантажено.", "uploadImageSizeMessage": "Занадто велике зображення. Максимальний розмір – 25 MB.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, @@ -445,8 +462,8 @@ "uploadImageTitleText": "Завантаження зображення", "waitText": "Будь ласка, зачекайте...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "Помилка", diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index 25c4ac34f..2bc05b84d 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -61,7 +61,10 @@ "textOk": "Ok", "textTableContents": "Table of Contents", "textWithPageNumbers": "With Page Numbers", - "textWithBlueLinks": "With Blue Links" + "textWithBlueLinks": "With Blue Links", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textUnderline": "Underline", "textUsers": "Users", "textWidow": "Widow control", - "textOk": "Ok" + "textOk": "Ok", + "textSharingSettings": "Sharing Settings" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -200,7 +204,8 @@ "textNumberingValue": "Numbering Value", "textRefreshEntireTable": "Refresh entire table", "textRefreshPageNumbersOnly": "Refresh page numbers only", - "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?" + "txtWarnUrl": "Clicking this link can be harmful to your device and data.
Are you sure you want to continue?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -366,7 +371,15 @@ "textEnterTitleNewStyle": "Enter title of a new style", "textNextParagraphStyle": "Next paragraph style", "textSameCreatedNewStyle": "Same as created new style", - "textParagraphStyle": "Paragraph Style" + "textParagraphStyle": "Paragraph Style", + "textChangeShape": "Change Shape", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textCustomStyle": "Custom Style", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", @@ -409,7 +422,13 @@ "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.", - "errorTextFormWrongFormat": "The value entered does not match the format of the field." + "errorTextFormWrongFormat": "The value entered does not match the format of the field.", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension." }, "LongActions": { "applyChangesTextText": "Loading data...", diff --git a/apps/documenteditor/mobile/locale/zh-tw.json b/apps/documenteditor/mobile/locale/zh-tw.json index 63679917d..51e2eac68 100644 --- a/apps/documenteditor/mobile/locale/zh-tw.json +++ b/apps/documenteditor/mobile/locale/zh-tw.json @@ -61,7 +61,10 @@ "textTableSize": "表格大小", "textWithBlueLinks": "帶有藍色連結", "textWithPageNumbers": "帶有頁碼", - "txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。" + "txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。", + "textDone": "Done", + "textRecommended": "Recommended", + "textRequired": "Required" }, "Common": { "Collaboration": { @@ -160,7 +163,8 @@ "textTryUndoRedo": "在快速共同編輯模式下,撤消/重做功能被禁用。", "textUnderline": "底線", "textUsers": "使用者", - "textWidow": "遺留文字控制" + "textWidow": "遺留文字控制", + "textSharingSettings": "Sharing Settings" }, "HighlightColorPalette": { "textNoFill": "沒有填充" @@ -200,7 +204,8 @@ "textRefreshEntireTable": "完整表格刷新", "textRefreshPageNumbersOnly": "等級數量", "textRows": "行列", - "txtWarnUrl": "這連結可能對您的設備和資料造成損害。
您確定要繼續嗎?" + "txtWarnUrl": "這連結可能對您的設備和資料造成損害。
您確定要繼續嗎?", + "menuEditLink": "Edit Link" }, "Edit": { "notcriticalErrorTitle": "警告", @@ -318,8 +323,6 @@ "textRefreshEntireTable": "完整表格刷新", "textRefreshPageNumbersOnly": "等級數量", "textRemoveChart": "刪除圖表", - "textRemoveImage": "移除圖片", - "textRemoveLink": "刪除連結", "textRemoveShape": "刪除形狀", "textRemoveTable": "刪除表格", "textRemoveTableContent": "刪除目錄", @@ -365,7 +368,15 @@ "textTu": "Tu", "textType": "類型", "textWe": "We", - "textWrap": "包覆" + "textWrap": "包覆", + "textChangeShape": "Change Shape", + "textCustomStyle": "Custom Style", + "textDeleteImage": "Delete Image", + "textDeleteLink": "Delete Link", + "textRecommended": "Recommended", + "textRequired": "Required", + "textTextWrapping": "Text Wrapping", + "textWrappingStyle": "Wrapping Style" }, "Error": { "convertationTimeoutText": "轉換逾時。", @@ -408,6 +419,12 @@ "uploadImageExtMessage": "圖片格式未知。", "uploadImageFileCountMessage": "無上傳圖片。", "uploadImageSizeMessage": "圖像超出最大大小限制。最大為25MB。", + "errorDirectUrl": "Please verify the link to the document.
This link must be a direct link to the file for downloading.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "errorTextFormWrongFormat": "The value entered does not match the format of the field." }, "LongActions": { @@ -445,8 +462,8 @@ "uploadImageTitleText": "上傳圖片中", "waitText": "請耐心等待...", "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "textContinue": "Continue", + "textUndo": "Undo" }, "Main": { "criticalErrorTitle": "錯誤", @@ -681,7 +698,7 @@ "dlgLeaveTitleText": "您離開應用程式", "leaveButtonText": "離開這個頁面", "stayButtonText": "保持此頁上", - "textOk": "OK", + "textOk": "確定", "textSwitchedMobileView": "Switched to Mobile view", "textSwitchedStandardView": "Switched to Standard view" } diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index ad538bbfc..be0653bff 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -26,6 +26,7 @@ "textContinuousPage": "连续页", "textCurrentPosition": "当前位置", "textDisplay": "展示", + "textDone": "完成", "textEmptyImgUrl": "您需要指定图像URL。", "textEvenPage": "偶数页", "textFootnote": "脚注", @@ -49,6 +50,8 @@ "textPictureFromLibrary": "图库", "textPictureFromURL": "来自网络的图片", "textPosition": "位置", + "textRecommended": "推荐", + "textRequired": "必填", "textRightBottom": "右下", "textRightTop": "右上", "textRows": "行", @@ -144,6 +147,7 @@ "textReviewChange": "审查变更", "textRight": "右对齐", "textShape": "形状", + "textSharingSettings": "共享设置", "textShd": "背景颜色", "textSmallCaps": "小型大写字母", "textSpacing": "间距", @@ -157,7 +161,7 @@ "textTableRowsDel": "行被删除", "textTabs": "更改选项卡", "textTrackChanges": "跟踪变化", - "textTryUndoRedo": "快速共同编辑模式下,撤销/重做功能被禁用。", + "textTryUndoRedo": "自动共同编辑模式下,撤销/重做功能被禁用。", "textUnderline": "下划线", "textUsers": "用户", "textWidow": "单独控制" @@ -180,6 +184,7 @@ "menuDelete": "删除", "menuDeleteTable": "删除表", "menuEdit": "编辑", + "menuEditLink": "编辑链接", "menuJoinList": "联接上一个列表", "menuMerge": "合并", "menuMore": "更多", @@ -233,6 +238,7 @@ "textCancel": "取消", "textCellMargins": "单元格边距", "textCentered": "居中", + "textChangeShape": "改变形状", "textChart": "图表", "textClassic": "经典", "textClose": "关闭", @@ -241,7 +247,10 @@ "textCreateTextStyle": "创建新样式", "textCurrent": "当前", "textCustomColor": "自定义颜色", + "textCustomStyle": "自定义样式", "textDecember": "十二月", + "textDeleteImage": "删除图像", + "textDeleteLink": "删除链接", "textDesign": "设计", "textDifferentFirstPage": "不同的第一页", "textDifferentOddAndEvenPages": "不同的奇数页和偶数页", @@ -314,12 +323,11 @@ "textPictureFromLibrary": "图库", "textPictureFromURL": "来自网络的图片", "textPt": "像素", + "textRecommended": "推荐", "textRefresh": "刷新", "textRefreshEntireTable": "刷新整个表格", "textRefreshPageNumbersOnly": "仅刷新页号", "textRemoveChart": "删除图表", - "textRemoveImage": "删除图片", - "textRemoveLink": "删除链接", "textRemoveShape": "删除图形", "textRemoveTable": "删除表", "textRemoveTableContent": "删除目录", @@ -327,6 +335,7 @@ "textRepeatAsHeaderRow": "重复标题行", "textReplace": "替换", "textReplaceImage": "替换图像", + "textRequired": "必填", "textResizeToFitContent": "调整大小以适应内容", "textRightAlign": "右对齐", "textSa": "周六", @@ -356,6 +365,7 @@ "textTableOfCont": "目录", "textTableOptions": "表格选项", "textText": "文本", + "textTextWrapping": "文字环绕", "textTh": "周四", "textThrough": "穿越型环绕", "textTight": "紧", @@ -365,7 +375,8 @@ "textTu": "周二", "textType": "类型", "textWe": "周三", - "textWrap": "包裹" + "textWrap": "包裹", + "textWrappingStyle": "环绕样式" }, "Error": { "convertationTimeoutText": "转换超时", @@ -379,6 +390,7 @@ "errorDataEncrypted": "加密更改已收到,无法对其解密。", "errorDataRange": "数据范围不正确", "errorDefaultMessage": "错误代码:%1", + "errorDirectUrl": "请验证指向文档的链接。
此链接必须是指向要下载的文件的直接链接。", "errorEditingDownloadas": "处理文档时发生错误.
请将文件备份保存到本地。", "errorEmptyTOC": "开始创建一个目录并应用样式库中的标题样式到选择的文本。", "errorFilePassProtect": "该文件已启动密码保护,无法打开。", @@ -408,11 +420,17 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB." + "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.", + "errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1." }, "LongActions": { "applyChangesTextText": "数据加载中…", "applyChangesTitleText": "数据加载中", + "confirmMaxChangesSize": "行动的大小超过了对您服务器设置的限制。
按 \"撤消\"取消您的最后一次行动,或按\"继续\"在本地保留该行动(您需要下载文件或复制其内容以确保没有任何损失)。", "downloadMergeText": "下载中…", "downloadMergeTitle": "下载中", "downloadTextText": "正在下载文件...", @@ -439,14 +457,13 @@ "saveTitleText": "保存文件", "sendMergeText": "任务合并", "sendMergeTitle": "任务合并", + "textContinue": "发送", "textLoadingDocument": "文件加载中…", + "textUndo": "复原", "txtEditingMode": "设置编辑模式..", "uploadImageTextText": "上传图片...", "uploadImageTitleText": "图片上传中", - "waitText": "请稍候...", - "confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", - "textUndo": "Undo", - "textContinue": "Continue" + "waitText": "请稍候..." }, "Main": { "criticalErrorTitle": "错误", diff --git a/apps/documenteditor/mobile/src/app.js b/apps/documenteditor/mobile/src/app.js index 69b8ca7a6..d7621a7ff 100644 --- a/apps/documenteditor/mobile/src/app.js +++ b/apps/documenteditor/mobile/src/app.js @@ -4,7 +4,7 @@ import { createRoot } from 'react-dom/client'; // Import Framework7 import Framework7 from 'framework7/lite-bundle'; -import { Dom7 } from 'framework7'; +import { Dom7 } from 'framework7/lite-bundle'; window.$$ = Dom7; // Import Framework7-React Plugin @@ -22,19 +22,19 @@ import('./less/app.less'); // Import App Component -import App from './view/app'; import { I18nextProvider } from 'react-i18next'; -import i18n from './lib/i18n'; +import i18n from './lib/i18n.js'; +import App from './view/app.jsx'; -import { Provider } from 'mobx-react' -import { stores } from './store/mainStore' -import { LocalStorage } from '../../../common/mobile/utils/LocalStorage'; +import { Provider } from 'mobx-react'; +import { stores } from './store/mainStore.js'; +// import { LocalStorage } from '../../../common/mobile/utils/LocalStorage'; const container = document.getElementById('app'); const root = createRoot(container); // Init F7 React Plugin -Framework7.use(Framework7React) +Framework7.use(Framework7React); // Mount React App root.render( diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index 4bc118a2b..bf43216aa 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -2,7 +2,7 @@ import React, { useContext } from 'react'; import { f7 } from 'framework7-react'; import { inject, observer } from "mobx-react"; import { withTranslation} from 'react-i18next'; -import { LocalStorage } from '../../../../common/mobile/utils/LocalStorage'; +import { LocalStorage } from '../../../../common/mobile/utils/LocalStorage.mjs'; import ContextMenuController from '../../../../common/mobile/lib/controller/ContextMenu'; import { idContextMenuElement } from '../../../../common/mobile/lib/view/ContextMenu'; @@ -20,6 +20,7 @@ import EditorUIController from '../lib/patch'; isDisconnected: stores.users.isDisconnected, displayMode: stores.storeReview.displayMode, dataDoc: stores.storeDocumentInfo.dataDoc, + objects: stores.storeFocusObjects.settings, isViewer: stores.storeAppOptions.isViewer })) class ContextMenu extends ContextMenuController { @@ -33,6 +34,7 @@ class ContextMenu extends ContextMenuController { this.getUserName = this.getUserName.bind(this); this.isUserVisible = this.isUserVisible.bind(this); this.ShowModal = this.ShowModal.bind(this); + this.checkShapeSelection = this.checkShapeSelection.bind(this); } static closeContextMenu() { @@ -56,6 +58,7 @@ class ContextMenu extends ContextMenuController { api.asc_unregisterCallback('asc_onShowComment', this.onApiShowComment); api.asc_unregisterCallback('asc_onHideComment', this.onApiHideComment); api.asc_unregisterCallback('asc_onShowRevisionsChange', this.onApiShowChange); + api.asc_unregisterCallback('asc_onShowPopMenu', this.checkShapeSelection); Common.Notifications.off('showSplitModal', this.ShowModal); } @@ -105,11 +108,13 @@ class ContextMenu extends ContextMenuController { case 'openlink': const stack = api.getSelectedElements(); let value; + stack.forEach((item) => { if (item.get_ObjectType() == Asc.c_oAscTypeSelectElement.Hyperlink) { value = item.get_ObjectValue().get_Value(); } }); + value && this.openLink(value); break; case 'review': @@ -131,6 +136,15 @@ class ContextMenu extends ContextMenuController { } } + checkShapeSelection() { + const objects = this.props.objects; + const contextMenuElem = document.querySelector('#idx-context-menu-popover'); + + if(objects.indexOf('shape') > -1) { + contextMenuElem.style.top = `${+(contextMenuElem.style.top.replace(/px$/, '')) - 40}px`; + } + } + onTableContentsUpdate(type, currentTOC) { const api = Common.EditorApi.get(); let props = api.asc_GetTableOfContentsPr(currentTOC); @@ -143,6 +157,7 @@ class ContextMenu extends ContextMenuController { showCopyCutPasteModal() { const { t } = this.props; const _t = t("ContextMenu", { returnObjects: true }); + f7.dialog.create({ title: _t.textCopyCutPasteActions, text: _t.errorCopyCutPaste, @@ -167,6 +182,7 @@ class ContextMenu extends ContextMenuController { const { t } = this.props; const _t = t("ContextMenu", { returnObjects: true }); let picker; + const dialog = f7.dialog.create({ title: _t.menuSplit, text: '', @@ -253,11 +269,13 @@ class ContextMenu extends ContextMenuController { api.asc_registerCallback('asc_onShowComment', this.onApiShowComment); api.asc_registerCallback('asc_onHideComment', this.onApiHideComment); api.asc_registerCallback('asc_onShowRevisionsChange', this.onApiShowChange); + api.asc_registerCallback('asc_onShowPopMenu', this.checkShapeSelection); Common.Notifications.on('showSplitModal', this.ShowModal); } initMenuItems() { if ( !Common.EditorApi ) return []; + const { isEdit, canFillForms, isDisconnected, isViewer } = this.props; if (isEdit && EditorUIController.ContextMenu) { @@ -341,6 +359,10 @@ class ContextMenu extends ContextMenuController { caption: _t.menuOpenLink, event: 'openlink' }); + itemsText.push({ + caption: t('ContextMenu.menuEditLink'), + event: 'editlink' + }); } if(inToc && isEdit && !isViewer) { diff --git a/apps/documenteditor/mobile/src/controller/Error.jsx b/apps/documenteditor/mobile/src/controller/Error.jsx index d3afc4771..73cf934e4 100644 --- a/apps/documenteditor/mobile/src/controller/Error.jsx +++ b/apps/documenteditor/mobile/src/controller/Error.jsx @@ -3,7 +3,7 @@ import { inject } from 'mobx-react'; import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; -const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocument}) => { +const ErrorController = inject('storeAppOptions','storeDocumentInfo')(({storeAppOptions, storeDocumentInfo, LoadingDocument}) => { const { t } = useTranslation(); const _t = t("Error", { returnObjects: true }); @@ -193,6 +193,24 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu config.msg = _t.errorTextFormWrongFormat; break; + case Asc.c_oAscError.ID.DirectUrl: + config.msg = _t.errorDirectUrl; + break; + + case Asc.c_oAscError.ID.ConvertationOpenFormat: + let docExt = storeDocumentInfo.dataDoc ? storeDocumentInfo.dataDoc.fileType || '' : ''; + if (errData === 'pdf') + config.msg = _t.errorInconsistentExtPdf.replace('%1', docExt); + else if (errData === 'docx') + config.msg = _t.errorInconsistentExtDocx.replace('%1', docExt); + else if (errData === 'xlsx') + config.msg = _t.errorInconsistentExtXlsx.replace('%1', docExt); + else if (errData === 'pptx') + config.msg = _t.errorInconsistentExtPptx.replace('%1', docExt); + else + config.msg = _t.errorInconsistentExt; + 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 707f15331..984c289ed 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -3,7 +3,7 @@ import React, {Component, Fragment} from 'react'; import {inject} from "mobx-react"; import { f7 } from "framework7-react"; import { withTranslation } from 'react-i18next'; -import { LocalStorage } from '../../../../common/mobile/utils/LocalStorage'; +import { LocalStorage } from '../../../../common/mobile/utils/LocalStorage.mjs'; import CollaborationController from '../../../../common/mobile/lib/controller/collaboration/Collaboration.jsx'; import {InitReviewController as ReviewController} from '../../../../common/mobile/lib/controller/collaboration/Review.jsx'; import { onAdvancedOptions } from './settings/Download.jsx'; @@ -61,7 +61,7 @@ class MainController extends Component { !window.sdk_scripts && (window.sdk_scripts = ['../../../../sdkjs/common/AllFonts.js', '../../../../sdkjs/word/sdk-all-min.js']); let dep_scripts = ['../../../vendor/xregexp/xregexp-all-min.js', - '../../../vendor/sockjs/sockjs.min.js']; + '../../../vendor/socketio/socket.io.min.js']; dep_scripts.push(...window.sdk_scripts); const promise_get_script = (scriptpath) => { diff --git a/apps/documenteditor/mobile/src/controller/Search.jsx b/apps/documenteditor/mobile/src/controller/Search.jsx index a337ac6a4..412a7d774 100644 --- a/apps/documenteditor/mobile/src/controller/Search.jsx +++ b/apps/documenteditor/mobile/src/controller/Search.jsx @@ -1,7 +1,6 @@ import React, { useEffect } from 'react'; -import { List, ListItem, Toggle, Page, Navbar, NavRight, Link } from 'framework7-react'; +import { List, ListItem, Toggle, Page, Navbar, NavRight, Link, f7 } from 'framework7-react'; import { SearchController, SearchView, SearchSettingsView } from '../../../../common/mobile/lib/controller/Search'; -import { f7 } from 'framework7-react'; import { withTranslation } from 'react-i18next'; import { Device } from '../../../../common/mobile/utils/device'; import { observer, inject } from "mobx-react"; @@ -96,12 +95,12 @@ const Search = withTranslation()(props => { const _t = t('Settings', {returnObjects: true}); useEffect(() => { - if (f7.searchbar.get('.searchbar')?.enabled && Device.phone) { + if(f7.searchbar.get('.searchbar')?.enabled && Device.phone) { const api = Common.EditorApi.get(); $$('.searchbar-input').focus(); api.asc_enableKeyEvents(false); } - }); + }, []); const onSearchQuery = params => { const api = Common.EditorApi.get(); diff --git a/apps/documenteditor/mobile/src/controller/Toolbar.jsx b/apps/documenteditor/mobile/src/controller/Toolbar.jsx index 69056e834..e896757d8 100644 --- a/apps/documenteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/controller/Toolbar.jsx @@ -3,8 +3,7 @@ import { inject, observer } from 'mobx-react'; import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import ToolbarView from "../view/Toolbar"; -import {storeAppOptions} from "../store/appOptions"; -import {LocalStorage} from "../../../../common/mobile/utils/LocalStorage"; +import {LocalStorage} from "../../../../common/mobile/utils/LocalStorage.mjs"; const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'storeFocusObjects', 'storeToolbarSettings','storeDocumentInfo')(observer(props => { const {t} = useTranslation(); @@ -33,12 +32,23 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto const docExt = docInfo.dataDoc ? docInfo.dataDoc.fileType : ''; const docTitle = docInfo.dataDoc ? docInfo.dataDoc.title : ''; + const sensitivity = 20; + let touchStartY = 0; + let touchEndY = 0; + useEffect(() => { + const sdk = document.querySelector('#editor_sdk'); + Common.Gateway.on('init', loadConfig); Common.Notifications.on('toolbar:activatecontrols', activateControls); Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.on('goback', goBack); + if(isViewer) { + sdk.addEventListener('touchstart', handleTouchStart); + sdk.addEventListener('touchend', handleTouchEnd); + } + if (isDisconnected) { f7.popover.close(); f7.sheet.close(); @@ -49,9 +59,37 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto Common.Notifications.off('toolbar:activatecontrols', activateControls); Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.off('goback', goBack); + + if(isViewer) { + sdk.removeEventListener('touchstart', handleTouchStart); + sdk.removeEventListener('touchend', handleTouchEnd); + } } }); + // Touch handlers + + const checkDirection = () => { + const diff = touchStartY - touchEndY; + + if(Math.abs(diff) > sensitivity) { + if(diff > 0) { + // f7.navbar.show('.main-navbar'); + } else { + // f7.navbar.hide('.main-navbar'); + } + } + }; + + const handleTouchStart = e => { + touchStartY = e.changedTouches[0].screenY; + }; + + const handleTouchEnd = e => { + touchEndY = e.changedTouches[0].screenY; + checkDirection(); + }; + // Back button const [isShowBack, setShowBack] = useState(appOptions.canBackToFolder); const loadConfig = (data) => { diff --git a/apps/documenteditor/mobile/src/controller/add/AddLink.jsx b/apps/documenteditor/mobile/src/controller/add/AddLink.jsx index 1bc642503..8b80b1488 100644 --- a/apps/documenteditor/mobile/src/controller/add/AddLink.jsx +++ b/apps/documenteditor/mobile/src/controller/add/AddLink.jsx @@ -1,5 +1,5 @@ import React, {Component} from 'react'; -import { f7 } from 'framework7-react'; +import { f7, Popup, Popover, View } from 'framework7-react'; import {Device} from '../../../../../common/mobile/utils/device'; import { withTranslation} from 'react-i18next'; @@ -8,14 +8,16 @@ import {PageAddLink} from '../../view/add/AddLink'; class AddLinkController extends Component { constructor (props) { super(props); + this.onInsertLink = this.onInsertLink.bind(this); + this.closeModal = this.closeModal.bind(this); } closeModal () { if ( Device.phone ) { - f7.sheet.close('.add-popup', true); + f7.popup.close('#add-link-popup'); } else { - f7.popover.close('#add-popover'); + f7.popover.close('#add-link-popover'); } } @@ -26,7 +28,6 @@ class AddLinkController extends Component { onInsertLink (url, display, tip) { const api = Common.EditorApi.get(); - const { t } = this.props; const _t = t("Add", { returnObjects: true }); const urltype = api.asc_getUrlType(url.trim()); @@ -52,18 +53,40 @@ class AddLinkController extends Component { _url = _url.replace(new RegExp("%20",'g')," "); const props = new Asc.CHyperlinkProperty(); + props.put_Value(_url); props.put_Text(!display ? _url : display); props.put_ToolTip(tip); api.add_Hyperlink(props); + this.props.isNavigate ? f7.views.current.router.back() : this.closeModal(); + } - this.closeModal(); + componentDidMount() { + if(!this.props.isNavigate) { + if(Device.phone) { + f7.popup.open('#add-link-popup', true); + } else { + f7.popover.open('#add-link-popover', '#btn-add'); + } + } } render () { return ( - + !this.props.isNavigate ? + Device.phone ? + this.props.onClosed('add-link')}> + + + : + this.props.onClosed('add-link')}> + + + + + : + ) } } diff --git a/apps/documenteditor/mobile/src/controller/add/AddOther.jsx b/apps/documenteditor/mobile/src/controller/add/AddOther.jsx index e4de3e84f..84a264095 100644 --- a/apps/documenteditor/mobile/src/controller/add/AddOther.jsx +++ b/apps/documenteditor/mobile/src/controller/add/AddOther.jsx @@ -260,7 +260,9 @@ class AddOtherController extends Component { richDelLock={this.props.richDelLock} richEditLock={this.props.richEditLock} plainDelLock={this.props.plainDelLock} - plainEditLock={this.props.plainEditLock} + plainEditLock={this.props.plainEditLock} + onCloseLinkSettings={this.props.onCloseLinkSettings} + isNavigate={this.props.isNavigate} /> ) } diff --git a/apps/documenteditor/mobile/src/controller/edit/EditHyperlink.jsx b/apps/documenteditor/mobile/src/controller/edit/EditHyperlink.jsx index 9f2f5fbdc..63f9b84b1 100644 --- a/apps/documenteditor/mobile/src/controller/edit/EditHyperlink.jsx +++ b/apps/documenteditor/mobile/src/controller/edit/EditHyperlink.jsx @@ -1,5 +1,5 @@ import React, {Component} from 'react'; -import { f7 } from 'framework7-react'; +import { f7, Popover, Popup, View } from 'framework7-react'; import {Device} from '../../../../../common/mobile/utils/device'; import {observer, inject} from "mobx-react"; import { withTranslation } from 'react-i18next'; @@ -9,20 +9,23 @@ import EditHyperlink from '../../view/edit/EditHyperlink'; class EditHyperlinkController extends Component { constructor (props) { super(props); + this.onRemoveLink = this.onRemoveLink.bind(this); this.onEditLink = this.onEditLink.bind(this); + this.closeModal = this.closeModal.bind(this); } closeModal () { if ( Device.phone ) { - f7.sheet.close('#edit-sheet', true); + f7.popup.close('#edit-link-popup'); } else { - f7.popover.close('#edit-popover'); + f7.popover.close('#edit-link-popover'); } } onEditLink (link, display, tip) { const api = Common.EditorApi.get(); + if (api) { const urltype = api.asc_getUrlType(link.trim()); if (urltype===AscCommon.c_oAscUrlType.Invalid) { @@ -40,21 +43,28 @@ class EditHyperlinkController extends Component { return; } + let url = link.replace(/^\s+|\s+$/g,''); if (urltype!==AscCommon.c_oAscUrlType.Unsafe && ! /(((^https?)|(^ftp)):\/\/)|(^mailto:)/i.test(url) ) { url = (urltype===AscCommon.c_oAscUrlType.Email ? 'mailto:' : 'http://') + url; } + url = url.replace(new RegExp("%20",'g')," "); + const props = new Asc.CHyperlinkProperty(); + props.put_Value(url); props.put_Text(display.trim().length < 1 ? url : display); props.put_ToolTip(tip); + const linkObject = this.props.storeFocusObjects.linkObject; + if (linkObject) { props.put_InternalHyperlink(linkObject.get_InternalHyperlink()); } + api.change_Hyperlink(props); - this.closeModal(); + this.props.isNavigate ? f7.views.current.router.back() : this.closeModal(); } } @@ -63,16 +73,50 @@ class EditHyperlinkController extends Component { if (api) { const linkObject = this.props.storeFocusObjects.linkObject; api.remove_Hyperlink(linkObject); - this.closeModal(); + } + } + + componentDidMount() { + if(!this.props.isNavigate) { + if(Device.phone) { + f7.popup.open('#edit-link-popup', true); + } else { + f7.popover.open('#edit-link-popover', '#btn-add'); + } } } render () { return ( - - ) + !this.props.isNavigate ? + Device.phone ? + this.props.onClosed('edit-link')}> + + + : + this.props.onClosed('edit-link')}> + + + + + : + + ) } } diff --git a/apps/documenteditor/mobile/src/controller/settings/ApplicationSettings.jsx b/apps/documenteditor/mobile/src/controller/settings/ApplicationSettings.jsx index a57ec57e1..1d2f86028 100644 --- a/apps/documenteditor/mobile/src/controller/settings/ApplicationSettings.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/ApplicationSettings.jsx @@ -1,6 +1,6 @@ import React, { Component } from "react"; import { ApplicationSettings } from "../../view/settings/ApplicationSettings"; -import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage'; +import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage.mjs'; import {observer, inject} from "mobx-react"; import { Themes } from '../../../../../common/mobile/lib/controller/Themes.js'; diff --git a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx index 809bd1e28..8a319d35b 100644 --- a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx @@ -5,7 +5,7 @@ import { observer, inject } from "mobx-react"; import {Device} from '../../../../../common/mobile/utils/device'; import SettingsView from "../../view/settings/Settings"; -import {LocalStorage} from "../../../../../common/mobile/utils/LocalStorage"; +import {LocalStorage} from "../../../../../common/mobile/utils/LocalStorage.mjs"; const Settings = props => { useEffect(() => { diff --git a/apps/documenteditor/mobile/src/index_dev.html b/apps/documenteditor/mobile/src/index_dev.html index 939932bab..131c5e153 100644 --- a/apps/documenteditor/mobile/src/index_dev.html +++ b/apps/documenteditor/mobile/src/index_dev.html @@ -25,6 +25,7 @@ <% if ( htmlWebpackPlugin.options.skeleton.htmlscript ) { %> <% } %> diff --git a/apps/documenteditor/mobile/src/less/app-ios.less b/apps/documenteditor/mobile/src/less/app-ios.less index a2a201667..a30272e5a 100644 --- a/apps/documenteditor/mobile/src/less/app-ios.less +++ b/apps/documenteditor/mobile/src/less/app-ios.less @@ -61,7 +61,6 @@ // Snackbar .snackbar { max-width: 195px; - max-height: 48px; position: absolute; bottom: 24px; left: calc(50% - 195px / 2); diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less index 29da1b3da..dbf4e46fe 100644 --- a/apps/documenteditor/mobile/src/less/app.less +++ b/apps/documenteditor/mobile/src/less/app.less @@ -219,18 +219,37 @@ .sheet-modal.navigation-sheet { box-shadow: 0px -2px 20px rgba(0, 0, 0, 0.2); - overflow: hidden; .sheet-modal-inner { background: @background-tertiary; - overflow: hidden; + overflow-y: auto; + } + .swipe-container { + position: fixed; + top: 0; + width: 100%; + z-index: 1000; } &.sheet-modal-bottom:before, &.sheet-modal:not(.sheet-modal-top):before { display: none; } } -.navigation-list { - margin: 0; +.list.navigation-list { + margin-top: 72px; + .item-title { + color: @text-normal; + } +} + +.navigation-sheet { + &__title { + position: fixed; + left: 0; + width: 100%; + z-index: 100; + top: 40px; + z-index: 1000; + } } // Picker diff --git a/apps/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx index fc8be7b61..adf517762 100644 --- a/apps/documenteditor/mobile/src/page/main.jsx +++ b/apps/documenteditor/mobile/src/page/main.jsx @@ -13,6 +13,8 @@ import { Search, SearchSettings } from '../controller/Search'; import ContextMenu from '../controller/ContextMenu'; import { Toolbar } from "../controller/Toolbar"; import NavigationController from '../controller/settings/Navigation'; +import { AddLinkController } from '../controller/add/AddLink'; +import EditHyperlink from '../controller/edit/EditHyperlink'; import Snackbar from "../components/Snackbar/Snackbar"; class MainPage extends Component { @@ -25,10 +27,18 @@ class MainPage extends Component { settingsVisible: false, collaborationVisible: false, navigationVisible: false, + addLinkSettingsVisible: false, + editLinkSettingsVisible: false, snackbarVisible: false }; } + componentDidMount() { + if ( $$('.skl-container').length ) { + $$('.skl-container').remove(); + } + } + handleClickToOpenOptions = (opts, showOpts) => { f7.popover.close('.document-menu.modal-in', false); @@ -51,6 +61,12 @@ class MainPage extends Component { } else if( opts === 'navigation') { this.state.navigationVisible && (opened = true); newState.navigationVisible = true; + } else if ( opts === 'add-link') { + this.state.addLinkSettingsVisible && (opened = true); + newState.addLinkSettingsVisible = true; + } else if( opts === 'edit-link') { + this.state.editLinkSettingsVisible && (opened = true); + newState.editLinkSettingsVisible = true; } else if( opts === 'snackbar') { this.state.snackbarVisible && (opened = true); newState.snackbarVisible = true; @@ -85,8 +101,12 @@ class MainPage extends Component { return {settingsVisible: false}; else if ( opts == 'coauth' ) return {collaborationVisible: false}; - else if( opts == 'navigation') - return {navigationVisible: false} + else if( opts == 'navigation') + return {navigationVisible: false}; + else if ( opts === 'add-link') + return {addLinkSettingsVisible: false}; + else if( opts === 'edit-link') + return {editLinkSettingsVisible: false}; else if( opts == 'snackbar') return {snackbarVisible: false} }); @@ -127,9 +147,6 @@ class MainPage extends Component { } const showPlaceholder = !appOptions.isDocReady && (!config.customization || !(config.customization.loaderName || config.customization.loaderLogo)); - if ($$('.skl-container').length) { - $$('.skl-container').remove(); - } return ( @@ -188,10 +205,16 @@ class MainPage extends Component { } { !this.state.addOptionsVisible ? null : - + + } + { + !this.state.addLinkSettingsVisible ? null : + + } + { + !this.state.editLinkSettingsVisible ? null : + } - {/*onclosed={this.handleOptionsViewClosed.bind(this, 'settings')}*/} { !this.state.settingsVisible ? null : { const disableEditBtn = props.isObjectLocked || props.stateDisplayMode || props.disabledEditControls || isDisconnected; const isViewer = props.isViewer; const isMobileView = props.isMobileView; + const docTitle = props.docTitle; + const docTitleLength = docTitle.length; - const shortTitle = (title) => { - const arrDocTitle = title.split('.'); - const ext = arrDocTitle[1]; - const name = arrDocTitle[0]; + const correctOverflowedText = el => { + if(el) { + el.innerText = docTitle; - if(name.length > 7 && Device.phone) { - let shortName = name.substring(0, 7); - return `${shortName}...${ext}`; + if(el.scrollWidth > el.clientWidth) { + const arrDocTitle = docTitle.split('.'); + const ext = arrDocTitle[1]; + const name = arrDocTitle[0]; + const diff = Math.floor(docTitleLength * el.clientWidth / el.scrollWidth - ext.length - 6); + const shortName = name.substring(0, diff).trim(); + + return `${shortName}...${ext}`; + } + + return docTitle; } - - return title; }; + useEffect(() => { + const elemTitle = document.querySelector('.subnavbar .title'); + + if (elemTitle) { + elemTitle.innerText = correctOverflowedText(elemTitle); + } + }, [docTitle, isViewer]); + return ( @@ -38,7 +53,7 @@ const ToolbarView = props => { onRedoClick: props.onRedo })} - {(!Device.phone || isViewer) && {shortTitle(props.docTitle)}} + {(!Device.phone || isViewer) &&
{docTitle}
} {(Device.android && props.isEdit && !isViewer) && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({ disabledUndo: !props.isCanUndo, @@ -46,7 +61,8 @@ const ToolbarView = props => { onUndoClick: props.onUndo, onRedoClick: props.onRedo })} - {(isViewer || !Device.phone) && isAvailableExt && !props.disabledControls && { + {/*isAvailableExt && !props.disabledControls &&*/} + {(isViewer || !Device.phone) && { await props.changeMobileView(); await props.openOptions('snackbar'); setTimeout(() => { @@ -61,8 +77,9 @@ const ToolbarView = props => { onEditClick: e => props.openOptions('edit'), onAddClick: e => props.openOptions('add') })} + {/*props.displayCollaboration &&*/} {Device.phone ? null : } - {props.displayCollaboration && window.matchMedia("(min-width: 360px)").matches ? props.openOptions('coauth')}> : null} + {!Device.phone ? props.openOptions('coauth')}> : null} props.openOptions('settings')}>
diff --git a/apps/documenteditor/mobile/src/view/add/Add.jsx b/apps/documenteditor/mobile/src/view/add/Add.jsx index 7eaf1e329..571133574 100644 --- a/apps/documenteditor/mobile/src/view/add/Add.jsx +++ b/apps/documenteditor/mobile/src/view/add/Add.jsx @@ -14,6 +14,7 @@ import {AddOtherController} from "../../controller/add/AddOther"; import {PageImageLinkSettings} from "../add/AddImage"; import {PageAddNumber, PageAddBreak, PageAddSectionBreak, PageAddFootnote} from "../add/AddOther"; import AddTableContentsController from '../../controller/add/AddTableContents'; +import EditHyperlink from '../../controller/edit/EditHyperlink'; const routes = [ // Image @@ -26,6 +27,14 @@ const routes = [ path: '/add-link/', component: AddLinkController, }, + { + path: '/edit-link/', + component: EditHyperlink + }, + { + path: '/add-image/', + component: AddImageController + }, { path: '/add-page-number/', component: PageAddNumber, @@ -64,7 +73,7 @@ const AddLayoutNavbar = ({ tabs, inPopover }) => {
: { tabs[0].caption } } - { !inPopover && } + {!inPopover && } ) }; @@ -81,7 +90,7 @@ const AddLayoutContent = ({ tabs, onGetTableStylesPreviews }) => { ) }; -const AddTabs = inject("storeFocusObjects", "storeTableSettings")(observer(({storeFocusObjects,storeTableSettings, showPanels, style, inPopover}) => { +const AddTabs = inject("storeFocusObjects", "storeTableSettings")(observer(({storeFocusObjects,storeTableSettings, showPanels, style, inPopover, onCloseLinkSettings}) => { const { t } = useTranslation(); const _t = t('Add', {returnObjects: true}); const api = Common.EditorApi.get(); @@ -147,18 +156,19 @@ const AddTabs = inject("storeFocusObjects", "storeTableSettings")(observer(({sto }); } } - if(!showPanels) { - needDisable = paragraphLocked || paragraphObj && !canAddImage || controlPlain || richDelLock || plainDelLock || contentLocked; + // if(!showPanels) { + // needDisable = paragraphLocked || paragraphObj && !canAddImage || controlPlain || richDelLock || plainDelLock || contentLocked; + + // if(!needDisable) { + // tabs.push({ + // caption: _t.textImage, + // id: 'add-image', + // icon: 'icon-add-image', + // component: + // }); + // } + // } - if(!needDisable) { - tabs.push({ - caption: _t.textImage, - id: 'add-image', - icon: 'icon-add-image', - component: - }); - } - } if(!showPanels) { tabs.push({ caption: _t.textOther, @@ -173,17 +183,19 @@ const AddTabs = inject("storeFocusObjects", "storeTableSettings")(observer(({sto richDelLock={richDelLock} richEditLock={richEditLock} plainDelLock={plainDelLock} - plainEditLock={plainEditLock} + plainEditLock={plainEditLock} + onCloseLinkSettings={onCloseLinkSettings} /> }); } - if (showPanels && showPanels === 'link') { - tabs.push({ - caption: _t.textAddLink, - id: 'add-link', - component: - }); - } + + // if (showPanels && showPanels === 'link') { + // tabs.push({ + // caption: t('Add.textLinkSettings'), + // id: 'add-link', + // component: + // }); + // } const onGetTableStylesPreviews = () => { if(storeTableSettings.arrayStylesDefault.length == 0) { @@ -216,10 +228,10 @@ class AddView extends Component { return ( show_popover ? this.props.onclosed()}> - + : this.props.onclosed()}> - + ) } @@ -242,7 +254,7 @@ const Add = props => { props.onclosed(); } }; - return + return }; export default Add; \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/view/add/AddImage.jsx b/apps/documenteditor/mobile/src/view/add/AddImage.jsx index 9ae7d37fb..dfc0ee4b6 100644 --- a/apps/documenteditor/mobile/src/view/add/AddImage.jsx +++ b/apps/documenteditor/mobile/src/view/add/AddImage.jsx @@ -33,16 +33,19 @@ const AddImage = props => { const { t } = useTranslation(); const _t = t('Add', {returnObjects: true}); return ( - - {props.onInsertByFile()}}> - - - - - - + + + + {props.onInsertByFile()}}> + + + + + + + ) }; diff --git a/apps/documenteditor/mobile/src/view/add/AddLink.jsx b/apps/documenteditor/mobile/src/view/add/AddLink.jsx index f2bc4712b..8fbba82ef 100644 --- a/apps/documenteditor/mobile/src/view/add/AddLink.jsx +++ b/apps/documenteditor/mobile/src/view/add/AddLink.jsx @@ -1,5 +1,5 @@ import React, {useState} from 'react'; -import {List, Page, Navbar, Icon, ListButton, ListInput} from 'framework7-react'; +import {List, Page, Navbar, Icon, ListButton, ListInput, NavRight, Link, NavLeft, f7, NavTitle} from 'framework7-react'; import { useTranslation } from 'react-i18next'; import {Device} from "../../../../../common/mobile/utils/device"; @@ -17,12 +17,28 @@ const PageLink = props => { return ( - {!props.noNavbar && } + + + { + props.isNavigate ? f7.views.current.router.back() : props.closeModal(); + }}> + {Device.android && } + + + {t('Add.textLinkSettings')} + + { + props.onInsertLink(stateLink, stateDisplay, stateTip); + }} text={Device.ios ? t('Add.textDone') : ''}> + {Device.android && } + + + { setLink(event.target.value); @@ -32,7 +48,7 @@ const PageLink = props => { { setDisplay(event.target.value); @@ -47,11 +63,11 @@ const PageLink = props => { onChange={(event) => {setTip(event.target.value)}} > - + {/* { - props.onInsertLink(stateLink, stateDisplay, stateTip) + props.onInsertLink(stateLink, stateDisplay) }}> - + */} ) }; diff --git a/apps/documenteditor/mobile/src/view/add/AddOther.jsx b/apps/documenteditor/mobile/src/view/add/AddOther.jsx index 15b8cf7db..f005a0202 100644 --- a/apps/documenteditor/mobile/src/view/add/AddOther.jsx +++ b/apps/documenteditor/mobile/src/view/add/AddOther.jsx @@ -160,6 +160,7 @@ const AddOther = props => { let isShape = storeFocusObjects.settings.indexOf('shape') > -1, isText = storeFocusObjects.settings.indexOf('text') > -1, isChart = storeFocusObjects.settings.indexOf('chart') > -1, + isHyperLink = storeFocusObjects.settings.indexOf('hyperlink') > -1, isHeader = storeFocusObjects.settings.indexOf('header') > -1; let disabledAddLink = false, @@ -188,9 +189,12 @@ const AddOther = props => { }}> } - {(isText && !disabledAddLink) && + + + {(isText && !disabledAddLink) && } diff --git a/apps/documenteditor/mobile/src/view/edit/Edit.jsx b/apps/documenteditor/mobile/src/view/edit/Edit.jsx index c8434cc21..749499a8d 100644 --- a/apps/documenteditor/mobile/src/view/edit/Edit.jsx +++ b/apps/documenteditor/mobile/src/view/edit/Edit.jsx @@ -18,7 +18,7 @@ import EditTableContentsController from "../../controller/edit/EditTableContents import {PageTextFonts, PageTextAddFormatting, PageTextBulletsAndNumbers, PageTextLineSpacing, PageTextFontColor, PageTextCustomFontColor, PageTextHighlightColor} from "./EditText"; import {ParagraphAdvSettings, PageParagraphBackColor, PageParagraphCustomColor, PageParagraphStyle, PageCreateTextStyle, PageChangeNextParagraphStyle} from "./EditParagraph"; import {PageShapeStyleNoFill, PageShapeStyle, PageShapeCustomFillColor, PageShapeBorderColor, PageShapeCustomBorderColor, PageWrap, PageReorder, PageReplace} from "./EditShape"; -import {PageImageReorder, PageImageReplace, PageImageWrap, PageLinkSettings} from "./EditImage"; +import {PageImageReorder, PageImageReplace, PageImageWrap, PageLinkSettings, PageWrappingStyle} from "./EditImage"; import {PageTableOptions, PageTableWrap, PageTableStyle, PageTableStyleOptions, PageTableCustomFillColor, PageTableBorderColor, PageTableCustomBorderColor} from "./EditTable"; import {PageChartDesign, PageChartDesignType, PageChartDesignStyle, PageChartDesignFill, PageChartDesignBorder, PageChartCustomFillColor, PageChartBorderColor, PageChartCustomBorderColor, PageChartWrap, PageChartReorder} from "./EditChart"; import { PageEditLeaderTableContents, PageEditStylesTableContents, PageEditStructureTableContents } from './EditTableContents'; @@ -53,6 +53,13 @@ const routes = [ path: '/edit-text-highlight-color/', component: PageTextHighlightColor, }, + + // Edit link + // { + // path: '/edit-link/', + // component: EditHyperlinkController + // }, + //Edit paragraph { path: '/edit-paragraph-adv/', @@ -111,7 +118,8 @@ const routes = [ path: '/edit-shape-replace/', component: PageReplace, }, - //Edit image + + // Edit image { path: '/edit-image-wrap/', component: PageImageWrap, @@ -128,7 +136,12 @@ const routes = [ path: '/edit-image-link/', component: PageLinkSettings, }, - //Edit table + { + path: '/edit-image-wrapping-style/', + component: PageWrappingStyle + }, + + // Edit table { path: '/edit-table-options/', component: PageTableOptions, @@ -291,18 +304,25 @@ const EditTabs = props => { component: }) } - if (settings.indexOf('text') > -1) { + if (settings.indexOf('image') > -1) { editors.push({ - caption: _t.textText, - id: 'edit-text', - component: + caption: _t.textImage, + id: 'edit-image', + component: }) } - if (settings.indexOf('paragraph') > -1) { + if (settings.indexOf('shape') > -1) { editors.push({ - caption: _t.textParagraph, - id: 'edit-paragraph', - component: + caption: _t.textShape, + id: 'edit-shape', + component: + }) + } + if (settings.indexOf('chart') > -1) { + editors.push({ + caption: _t.textChart, + id: 'edit-chart', + component: }) } if (settings.indexOf('table') > -1) { @@ -319,32 +339,18 @@ const EditTabs = props => { component: }) } - if (settings.indexOf('shape') > -1) { + if (settings.indexOf('paragraph') > -1) { editors.push({ - caption: _t.textShape, - id: 'edit-shape', - component: + caption: _t.textParagraph, + id: 'edit-paragraph', + component: }) } - if (settings.indexOf('image') > -1) { + if (settings.indexOf('text') > -1) { editors.push({ - caption: _t.textImage, - id: 'edit-image', - component: - }) - } - if (settings.indexOf('chart') > -1) { - editors.push({ - caption: _t.textChart, - id: 'edit-chart', - component: - }) - } - if (settings.indexOf('hyperlink') > -1) { - editors.push({ - caption: _t.textHyperlink, - id: 'edit-link', - component: + caption: _t.textText, + id: 'edit-text', + component: }) } } @@ -372,7 +378,7 @@ const EditView = props => { props.onClosed()}> : - props.onClosed()}> + props.onClosed()}> ) diff --git a/apps/documenteditor/mobile/src/view/edit/EditHyperlink.jsx b/apps/documenteditor/mobile/src/view/edit/EditHyperlink.jsx index 9509f0a54..aa29b262c 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditHyperlink.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditHyperlink.jsx @@ -1,32 +1,56 @@ import React, {Fragment, useState} from 'react'; import {observer, inject} from "mobx-react"; -import {List, ListInput, ListButton} from 'framework7-react'; +import {List, ListInput, ListButton, Page, f7, Link, Navbar, NavLeft, NavTitle, NavRight, Icon} from 'framework7-react'; import { useTranslation } from 'react-i18next'; +import {Device} from "../../../../../common/mobile/utils/device"; const EditHyperlink = props => { const { t } = useTranslation(); const _t = t('Edit', {returnObjects: true}); const linkObject = props.storeFocusObjects.linkObject; - const link = linkObject.get_Value() ? linkObject.get_Value().replace(new RegExp(" ", 'g'), "%20") : ''; - const display = !(linkObject.get_Text() === null) ? linkObject.get_Text() : ''; - const tip = linkObject.get_ToolTip(); + let link = '', display = '', tip = ''; + + if(linkObject) { + link = linkObject.get_Value() ? linkObject.get_Value().replace(new RegExp(" ", 'g'), "%20") : ''; + display = !(linkObject.get_Text() === null) ? linkObject.get_Text() : ''; + tip = linkObject.get_ToolTip(); + } + const [stateLink, setLink] = useState(link); const [stateDisplay, setDisplay] = useState(display); const [stateTip, setTip] = useState(tip); + return ( - + + + + { + props.isNavigate ? f7.views.current.router.back() : props.closeModal(); + }}> + {Device.android && } + + + {t('Add.textLinkSettings')} + + { + props.onEditLink(stateLink, stateDisplay, stateTip); + }} text={Device.ios ? t('Add.textDone') : ''}> + {Device.android && } + + + {setLink(event.target.value)}} > {setDisplay(event.target.value)}} > @@ -39,12 +63,15 @@ const EditHyperlink = props => { > - { - props.onEditLink(stateLink, stateDisplay, stateTip) - }}> - {props.onRemoveLink()}} className='button-red button-fill button-raised'/> + {/* { + props.onEditLink(stateLink, stateDisplay) + }}> */} + { + props.onRemoveLink(); + props.isNavigate ? f7.views.current.router.back() : props.closeModal(); + }} /> - + ) }; diff --git a/apps/documenteditor/mobile/src/view/edit/EditImage.jsx b/apps/documenteditor/mobile/src/view/edit/EditImage.jsx index 1aefaa88d..bed313844 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditImage.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditImage.jsx @@ -11,7 +11,9 @@ const PageWrap = props => { const _t = t('Edit', {returnObjects: true}); const storeImageSettings = props.storeImageSettings; const imageObject = props.storeFocusObjects.imageObject; + let wrapType, align, moveText, overlap, distance; + if (imageObject) { wrapType = storeImageSettings.getWrapType(imageObject); align = storeImageSettings.getAlign(imageObject); @@ -19,15 +21,28 @@ const PageWrap = props => { overlap = storeImageSettings.getOverlap(imageObject); distance = Common.Utils.Metric.fnRecalcFromMM(storeImageSettings.getWrapDistance(imageObject)); } + const metricText = Common.Utils.Metric.getCurrentMetricName(); const [stateDistance, setDistance] = useState(distance); + const [wrappingStyle, setWrappingStyle] = useState(wrapType); + const typesWrapping = { + inline: _t.textInline, + square: _t.textSquare, + tight: _t.textTight, + through: _t.textThrough, + 'top-bottom': _t.textTopAndBottom, + infront: _t.textInFront, + behind: _t.textBehind + }; + if (!imageObject && Device.phone) { $$('.sheet-modal.modal-in').length > 0 && f7.sheet.close(); return null; } + return ( - + {Device.phone && @@ -37,30 +52,31 @@ const PageWrap = props => { } - {props.onWrapType('inline')}}> - {!isAndroid && } - - {props.onWrapType('square')}}> - {!isAndroid && } - - {props.onWrapType('tight')}}> - {!isAndroid && } - - {props.onWrapType('through')}}> - {!isAndroid && } - - {props.onWrapType('top-bottom')}}> - {!isAndroid && } - - {props.onWrapType('infront')}}> - {!isAndroid && } - - {props.onWrapType('behind')}}> - {!isAndroid && } - + - { - wrapType !== 'inline' && + {('inline' !== wrappingStyle && 'behind' !== wrappingStyle && 'infront' !== wrappingStyle) && + + {_t.textDistanceFromText} + + +
+ {setDistance(value)}} + onRangeChanged={(value) => {props.onWrapDistance(value)}} + > +
+
+ {stateDistance + ' ' + metricText} +
+
+
+
+ } + {wrapType !== 'inline' && {_t.textAlign} @@ -97,29 +113,88 @@ const PageWrap = props => { {props.onOverlap(!overlap)}}/> - { - ('inline' !== wrapType && 'behind' !== wrapType && 'infront' !== wrapType) && - - {_t.textDistanceFromText} - - -
- {setDistance(value)}} - onRangeChanged={(value) => {props.onWrapDistance(value)}} - > -
-
- {stateDistance + ' ' + metricText} -
-
-
-
- }
) }; +const PageWrappingStyle = props => { + const isAndroid = Device.android; + const { t } = useTranslation(); + const _t = t('Edit', {returnObjects: true}); + const imageObject = props.storeFocusObjects.imageObject; + const [wrapType, setWrapType] = useState(props.wrappingStyle); + + if (!imageObject && Device.phone) { + $$('.sheet-modal.modal-in').length > 0 && f7.sheet.close(); + return null; + } + + return ( + + + {Device.phone && + + + + + + } + + + { + setWrapType('inline'); + props.setWrappingStyle('inline'); + props.onWrapType('inline'); + }}> + {!isAndroid && } + + { + setWrapType('square'); + props.setWrappingStyle('square'); + props.onWrapType('square'); + }}> + {!isAndroid && } + + { + setWrapType('tight'); + props.setWrappingStyle('tight'); + props.onWrapType('tight'); + }}> + {!isAndroid && } + + { + setWrapType('through'); + props.setWrappingStyle('through'); + props.onWrapType('through'); + }}> + {!isAndroid && } + + { + setWrapType('top-bottom'); + props.setWrappingStyle('top-bottom'); + props.onWrapType('top-bottom'); + }}> + {!isAndroid && } + + { + setWrapType('infront'); + props.setWrappingStyle('infront'); + props.onWrapType('infront'); + }}> + {!isAndroid && } + + { + setWrapType('behind'); + props.setWrappingStyle('behind'); + props.onWrapType('behind'); + }}> + {!isAndroid && } + + + + ) +} + const PageLinkSettings = props => { const { t } = useTranslation(); const _t = t('Edit', {returnObjects: true}); @@ -244,14 +319,14 @@ const EditImage = props => { return ( - - @@ -261,7 +336,7 @@ const EditImage = props => { {props.onDefaulSize()}}/> - {props.onRemoveImage()}}/> + {props.onRemoveImage()}}/> ) @@ -272,9 +347,11 @@ const PageWrapContainer = inject("storeFocusObjects", "storeImageSettings")(obse const PageReplaceContainer = inject("storeFocusObjects")(observer(PageReplace)); const PageReorderContainer = inject("storeFocusObjects")(observer(PageReorder)); const PageLinkSettingsContainer = inject("storeFocusObjects")(observer(PageLinkSettings)); +const PageWrappingStyleContainer = inject("storeFocusObjects")(observer(PageWrappingStyle)); export {EditImageContainer as EditImage, PageWrapContainer as PageImageWrap, PageReplaceContainer as PageImageReplace, PageReorderContainer as PageImageReorder, - PageLinkSettingsContainer as PageLinkSettings} \ No newline at end of file + PageLinkSettingsContainer as PageLinkSettings, + PageWrappingStyleContainer as PageWrappingStyle} \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx b/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx index 7728ee25b..fa360438b 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditParagraph.jsx @@ -201,13 +201,13 @@ const EditParagraph = props => { {t('Edit.textParagraphStyle')} - {curStyle && -
+
}
@@ -278,7 +278,7 @@ const EditParagraphStyle = props => { }} >
{!api.asc_IsStyleDefault(style.name) && (
@@ -369,7 +369,7 @@ const ChangeNextParagraphStyle = props => { }} >
))} diff --git a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx index 653ec366e..ecdc22f06 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx @@ -312,6 +312,7 @@ const PageWrap = props => { const storeShapeSettings = props.storeShapeSettings; const shapeObject = props.storeFocusObjects.shapeObject; let wrapType, align, moveText, overlap, distance; + if (shapeObject) { wrapType = storeShapeSettings.getWrapType(shapeObject); align = storeShapeSettings.getAlign(shapeObject); @@ -319,12 +320,15 @@ const PageWrap = props => { overlap = storeShapeSettings.getOverlap(shapeObject); distance = Common.Utils.Metric.fnRecalcFromMM(storeShapeSettings.getWrapDistance(shapeObject)); } + const metricText = Common.Utils.Metric.getCurrentMetricName(); const [stateDistance, setDistance] = useState(distance); + if (!shapeObject && Device.phone) { $$('.sheet-modal.modal-in').length > 0 && f7.sheet.close(); return null; } + return ( @@ -359,46 +363,7 @@ const PageWrap = props => { {!isAndroid && } - { - wrapType !== 'inline' && - - {_t.textAlign} - - - - { - props.onShapeAlign(Asc.c_oAscAlignH.Left) - }}> - - - { - props.onShapeAlign(Asc.c_oAscAlignH.Center) - }}> - - - { - props.onShapeAlign(Asc.c_oAscAlignH.Right) - }}> - - - - - - - } - - - {props.onMoveText(!moveText)}}/> - - - {props.onOverlap(!overlap)}}/> - - - { - ('behind' !== wrapType && 'infront' !== wrapType) && + {('behind' !== wrapType && 'infront' !== wrapType) && {_t.textDistanceFromText} @@ -416,6 +381,43 @@ const PageWrap = props => { } + {wrapType !== 'inline' && + + {_t.textAlign} + + + + { + props.onShapeAlign(Asc.c_oAscAlignH.Left) + }}> + + + { + props.onShapeAlign(Asc.c_oAscAlignH.Center) + }}> + + + { + props.onShapeAlign(Asc.c_oAscAlignH.Right) + }}> + + + + + + + } + + + {props.onMoveText(!moveText)}}/> + + + {props.onOverlap(!overlap)}}/> + + ) }; @@ -509,6 +511,7 @@ const EditShape = props => { const canFill = props.storeFocusObjects.shapeObject.get_ShapeProperties().get_CanFill(); const shapeObject = props.storeFocusObjects.shapeObject; const wrapType = props.storeShapeSettings.getWrapType(shapeObject); + const settings = props.storeFocusObjects.settings; const shapeType = shapeObject.get_ShapeProperties().asc_getType(); const hideChangeType = shapeObject.get_ShapeProperties().get_FromChart() || shapeObject.get_ShapeProperties().get_FromSmartArt() @@ -548,7 +551,7 @@ const EditShape = props => { onBorderColor: props.onBorderColor }}> : null} - { !isFromGroup && + {(!isFromGroup && settings.indexOf('image') === -1) && { }}> } {(!hideChangeType && !fixedSize) && - } - { (wrapType !== 'inline' && !isSmartArtInternal) && } - - {props.onRemoveShape()}} className={`button-red button-fill button-raised${disableRemove ? ' disabled' : ''}`} /> - + {settings.indexOf('image') === -1 && + + {props.onRemoveShape()}} className={`button-red button-fill button-raised${disableRemove ? ' disabled' : ''}`} /> + + } ) }; diff --git a/apps/documenteditor/mobile/src/view/edit/EditText.jsx b/apps/documenteditor/mobile/src/view/edit/EditText.jsx index 0a5506da0..01897e754 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditText.jsx @@ -5,7 +5,7 @@ import { useTranslation } from 'react-i18next'; import {Device} from '../../../../../common/mobile/utils/device'; import { ThemeColorPalette, CustomColorPicker } from '../../../../../common/mobile/lib/component/ThemeColorPalette.jsx'; import HighlightColorPalette from '../../../../../common/mobile/lib/component/HighlightColorPalette.jsx'; -import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage'; +import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage.mjs'; const PageFonts = props => { const isAndroid = Device.android; diff --git a/apps/documenteditor/mobile/src/view/settings/Navigation.jsx b/apps/documenteditor/mobile/src/view/settings/Navigation.jsx index 7149df3f8..ec6226e60 100644 --- a/apps/documenteditor/mobile/src/view/settings/Navigation.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Navigation.jsx @@ -29,7 +29,7 @@ const NavigationPopover = inject('storeNavigation')(observer(props => {

{t('Settings.textEmptyScreens')}

: - + {arrHeaders.map((header, index) => { return ( { diff --git a/apps/documenteditor/mobile/src/view/settings/Settings.jsx b/apps/documenteditor/mobile/src/view/settings/Settings.jsx index ec29f58c0..32ed242c6 100644 --- a/apps/documenteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Settings.jsx @@ -13,6 +13,7 @@ import { DocumentFormats, DocumentMargins, DocumentColorSchemes } from "./Docume import { MacrosSettings, Direction } from "./ApplicationSettings"; import About from '../../../../../common/mobile/lib/view/About'; import NavigationController from '../../controller/settings/Navigation'; +import SharingSettings from "../../../../../common/mobile/lib/view/SharingSettings"; const routes = [ { @@ -68,6 +69,13 @@ const routes = [ { path: '/direction/', component: Direction + }, + + // Sharing Settings + + { + path: '/sharing-settings/', + component: SharingSettings } ]; @@ -183,6 +191,9 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => onClick={onoptionclick.bind(this, "/application-settings/")}> + + + {_canDownload && diff --git a/apps/presentationeditor/embed/index.html b/apps/presentationeditor/embed/index.html index c39744115..c0f34d399 100644 --- a/apps/presentationeditor/embed/index.html +++ b/apps/presentationeditor/embed/index.html @@ -279,7 +279,7 @@ - + diff --git a/apps/presentationeditor/embed/index.html.deploy b/apps/presentationeditor/embed/index.html.deploy index 9bc17c3b2..0f2e9e779 100644 --- a/apps/presentationeditor/embed/index.html.deploy +++ b/apps/presentationeditor/embed/index.html.deploy @@ -273,7 +273,7 @@ - + - + diff --git a/apps/presentationeditor/embed/index_loader.html.deploy b/apps/presentationeditor/embed/index_loader.html.deploy index 574297d38..372df0eee 100644 --- a/apps/presentationeditor/embed/index_loader.html.deploy +++ b/apps/presentationeditor/embed/index_loader.html.deploy @@ -320,7 +320,7 @@ - + diff --git a/apps/presentationeditor/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js index 1ef42abb2..28e6fe5c3 100644 --- a/apps/presentationeditor/embed/js/ApplicationController.js +++ b/apps/presentationeditor/embed/js/ApplicationController.js @@ -614,6 +614,19 @@ PE.ApplicationController = new(function(){ message = me.errorTokenExpire; break; + case Asc.c_oAscError.ID.ConvertationOpenFormat: + if (errData === 'pdf') + message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || ''); + else if (errData === 'docx') + message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || ''); + else if (errData === 'xlsx') + message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || ''); + else if (errData === 'pptx') + message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || ''); + else + message = me.errorInconsistentExt; + break; + default: message = me.errorDefaultMessage.replace('%1', id); break; @@ -782,6 +795,11 @@ PE.ApplicationController = new(function(){ errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.', errorTokenExpire: 'The document security token has expired.
Please contact your Document Server administrator.', - openErrorText: 'An error has occurred while opening the file' + openErrorText: 'An error has occurred while opening the file', + errorInconsistentExtDocx: 'An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.', + errorInconsistentExtXlsx: 'An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPptx: 'An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPdf: 'An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.', + errorInconsistentExt: 'An error has occurred while opening the file.
The file content does not match the file extension.' } })(); diff --git a/apps/presentationeditor/embed/locale/be.json b/apps/presentationeditor/embed/locale/be.json index 9f4303dc1..2a59ebab4 100644 --- a/apps/presentationeditor/embed/locale/be.json +++ b/apps/presentationeditor/embed/locale/be.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Вышыня", "common.view.modals.txtShare": "Падзяліцца спасылкай", "common.view.modals.txtWidth": "Шырыня", + "common.view.SearchBar.textFind": "Пошук", "PE.ApplicationController.convertationErrorText": "Пераўтварыць не атрымалася.", "PE.ApplicationController.convertationTimeoutText": "Час чакання пераўтварэння сышоў.", "PE.ApplicationController.criticalErrorTitle": "Памылка", @@ -33,6 +34,7 @@ "PE.ApplicationView.txtEmbed": "Убудаваць", "PE.ApplicationView.txtFileLocation": "Перайсці да дакументаў", "PE.ApplicationView.txtFullScreen": "Поўнаэкранны рэжым", - "PE.ApplicationView.txtPrint": "Друк", + "PE.ApplicationView.txtPrint": "Друкаванне", + "PE.ApplicationView.txtSearch": "Пошук", "PE.ApplicationView.txtShare": "Падзяліцца" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/da.json b/apps/presentationeditor/embed/locale/da.json index 462924da6..3a038d33b 100644 --- a/apps/presentationeditor/embed/locale/da.json +++ b/apps/presentationeditor/embed/locale/da.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Højde", "common.view.modals.txtShare": "Del link", "common.view.modals.txtWidth": "Bredde", + "common.view.SearchBar.textFind": "Find", "PE.ApplicationController.convertationErrorText": "Konvertering fejlede.", "PE.ApplicationController.convertationTimeoutText": "Konverteringstidsfrist er overskredet", "PE.ApplicationController.criticalErrorTitle": "Fejl", @@ -16,7 +17,7 @@ "PE.ApplicationController.errorForceSave": "Der skete en fejl under gemning af filen. Brug venligst 'Download som' for at gemme filen på din computers harddisk eller prøv igen senere.", "PE.ApplicationController.errorLoadingFont": "Skrifttyper er ikke indlæst.
Kontakt din dokument server administrator.", "PE.ApplicationController.errorTokenExpire": "Dokumentets sikkerhedstoken er udløbet.
Kontakt venligst din Document Server administrator. ", - "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet, og filversionen er blevet ændret.
Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.", + "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet og filversionen er blevet ændret.
Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.", "PE.ApplicationController.errorUserDrop": "Der kan ikke opnås adgang til filen lige nu. ", "PE.ApplicationController.notcriticalErrorTitle": "Advarsel", "PE.ApplicationController.openErrorText": "Der skete en fejl under åbningen af filen", @@ -34,5 +35,6 @@ "PE.ApplicationView.txtFileLocation": "Åben filplacering", "PE.ApplicationView.txtFullScreen": "Fuld skærm", "PE.ApplicationView.txtPrint": "Udskriv", + "PE.ApplicationView.txtSearch": "Søg", "PE.ApplicationView.txtShare": "Del" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/de.json b/apps/presentationeditor/embed/locale/de.json index c81c55502..321553e99 100644 --- a/apps/presentationeditor/embed/locale/de.json +++ b/apps/presentationeditor/embed/locale/de.json @@ -15,12 +15,17 @@ "PE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "PE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.
Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", "PE.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.", + "PE.ApplicationController.errorInconsistentExt": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei stimmt nicht mit der Dateierweiterung überein.", + "PE.ApplicationController.errorInconsistentExtDocx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Textdokumenten (z.B. docx), aber die Datei hat die inkonsistente Erweiterung: %1.", + "PE.ApplicationController.errorInconsistentExtPdf": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht einem der folgenden Formate: pdf/djvu/xps/oxps, aber die Datei hat die inkonsistente Erweiterung: %1.", + "PE.ApplicationController.errorInconsistentExtPptx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Präsentationen (z.B. pptx), aber die Datei hat die inkonsistente Erweiterung: %1.", + "PE.ApplicationController.errorInconsistentExtXlsx": "Beim Öffnen der Datei ist ein Fehler aufgetreten.
Der Inhalt der Datei entspricht Tabellenkalkulationen (z.B. xlsx), aber die Datei hat die inkonsistente Erweiterung: %1.", "PE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "PE.ApplicationController.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.
Wenden Sie sich an Ihren Serveradministrator.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.
Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.", "PE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.", "PE.ApplicationController.notcriticalErrorTitle": "Warnung", - "PE.ApplicationController.openErrorText": "Beim Öffnen dieser Datei ist ein Fehler aufgetreten.", + "PE.ApplicationController.openErrorText": "Beim Öffnen der Datei ist ein Fehler aufgetreten.", "PE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", "PE.ApplicationController.textAnonymous": "Anonym", "PE.ApplicationController.textGuest": "Gast", diff --git a/apps/presentationeditor/embed/locale/en.json b/apps/presentationeditor/embed/locale/en.json index a53e47c3b..0ce46bf0b 100644 --- a/apps/presentationeditor/embed/locale/en.json +++ b/apps/presentationeditor/embed/locale/en.json @@ -15,6 +15,11 @@ "PE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", "PE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "PE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "PE.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "PE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "PE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "PE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "PE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "PE.ApplicationController.errorTokenExpire": "The document security token has expired.
Please contact your Document Server administrator.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "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.", diff --git a/apps/presentationeditor/embed/locale/id.json b/apps/presentationeditor/embed/locale/id.json index a1c4e51f7..118391fdd 100644 --- a/apps/presentationeditor/embed/locale/id.json +++ b/apps/presentationeditor/embed/locale/id.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Ketinggian", "common.view.modals.txtShare": "Bagi tautan", "common.view.modals.txtWidth": "Lebar", + "common.view.SearchBar.textFind": "Temukan", "PE.ApplicationController.convertationErrorText": "Konversi gagal.", "PE.ApplicationController.convertationTimeoutText": "Waktu konversi habis.", "PE.ApplicationController.criticalErrorTitle": "Kesalahan", @@ -16,7 +17,7 @@ "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.errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu mengunduh file atau salin konten untuk memastikan tidak ada yang hilang, lalu muat ulang halaman ini.", "PE.ApplicationController.errorUserDrop": "File tidak dapat di akses", "PE.ApplicationController.notcriticalErrorTitle": "Peringatan", "PE.ApplicationController.openErrorText": "Eror ketika membuka file.", @@ -34,5 +35,6 @@ "PE.ApplicationView.txtFileLocation": "Buka Dokumen", "PE.ApplicationView.txtFullScreen": "Layar penuh", "PE.ApplicationView.txtPrint": "Cetak", + "PE.ApplicationView.txtSearch": "Cari", "PE.ApplicationView.txtShare": "Bagikan" } \ No newline at end of file diff --git a/apps/presentationeditor/embed/locale/pt.json b/apps/presentationeditor/embed/locale/pt.json index c3cc5c690..4ba342222 100644 --- a/apps/presentationeditor/embed/locale/pt.json +++ b/apps/presentationeditor/embed/locale/pt.json @@ -20,7 +20,7 @@ "PE.ApplicationController.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada.
Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e recarregue esta página.", "PE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", "PE.ApplicationController.notcriticalErrorTitle": "Aviso", - "PE.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o arquivo", + "PE.ApplicationController.openErrorText": "Ocorreu um erro ao abrir o arquivo.", "PE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns componentes não foram carregados. Por favor, recarregue a página.", "PE.ApplicationController.textAnonymous": "Anônimo", "PE.ApplicationController.textGuest": "Convidado(a)", diff --git a/apps/presentationeditor/embed/locale/ru.json b/apps/presentationeditor/embed/locale/ru.json index 4c40a4746..cba990ea9 100644 --- a/apps/presentationeditor/embed/locale/ru.json +++ b/apps/presentationeditor/embed/locale/ru.json @@ -15,6 +15,11 @@ "PE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "PE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", "PE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", + "PE.ApplicationController.errorInconsistentExt": "При открытии файла произошла ошибка.
Содержимое файла не соответствует расширению файла.", + "PE.ApplicationController.errorInconsistentExtDocx": "При открытии файла произошла ошибка.
Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.", + "PE.ApplicationController.errorInconsistentExtPdf": "При открытии файла произошла ошибка.
Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.", + "PE.ApplicationController.errorInconsistentExtPptx": "При открытии файла произошла ошибка.
Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.", + "PE.ApplicationController.errorInconsistentExtXlsx": "При открытии файла произошла ошибка.
Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.", "PE.ApplicationController.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "PE.ApplicationController.errorTokenExpire": "Истек срок действия токена безопасности документа.
Пожалуйста, обратитесь к администратору Сервера документов.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Соединение было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", diff --git a/apps/presentationeditor/embed/locale/sv.json b/apps/presentationeditor/embed/locale/sv.json index 7f06a19bb..4ba6d7412 100644 --- a/apps/presentationeditor/embed/locale/sv.json +++ b/apps/presentationeditor/embed/locale/sv.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Höjd", "common.view.modals.txtShare": "Delningslänk", "common.view.modals.txtWidth": "Bredd", + "common.view.SearchBar.textFind": "Sök", "PE.ApplicationController.convertationErrorText": "Fel vid konvertering", "PE.ApplicationController.convertationTimeoutText": "Konverteringstiden har överskridits.", "PE.ApplicationController.criticalErrorTitle": "Fel", @@ -34,5 +35,6 @@ "PE.ApplicationView.txtFileLocation": "Gå till filens plats", "PE.ApplicationView.txtFullScreen": "Fullskärm", "PE.ApplicationView.txtPrint": "Skriva ut", + "PE.ApplicationView.txtSearch": "Sök", "PE.ApplicationView.txtShare": "Dela" } \ No newline at end of file diff --git a/apps/presentationeditor/main/app.js b/apps/presentationeditor/main/app.js index b34a9cd72..52ee654b1 100644 --- a/apps/presentationeditor/main/app.js +++ b/apps/presentationeditor/main/app.js @@ -53,7 +53,7 @@ require.config({ perfectscrollbar: 'common/main/lib/mods/perfect-scrollbar', jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel', xregexp : '../vendor/xregexp/xregexp-all-min', - sockjs : '../vendor/sockjs/sockjs.min', + socketio : '../vendor/socketio/socket.io.min', allfonts : '../../sdkjs/common/AllFonts', sdk : '../../sdkjs/slide/sdk-all-min', api : 'api/documents/api', @@ -106,7 +106,7 @@ require.config({ 'underscore', 'allfonts', 'xregexp', - 'sockjs' + 'socketio' ] }, gateway: { diff --git a/apps/presentationeditor/main/app.reporter.js b/apps/presentationeditor/main/app.reporter.js index 1c5efdb6b..e06d14850 100644 --- a/apps/presentationeditor/main/app.reporter.js +++ b/apps/presentationeditor/main/app.reporter.js @@ -48,7 +48,7 @@ require.config({ jquery : '../vendor/jquery/jquery.min', underscore : '../vendor/underscore/underscore-min', xregexp : '../vendor/xregexp/xregexp-all-min', - sockjs : '../vendor/sockjs/sockjs.min', + socketio : '../vendor/socketio/socket.io.min', allfonts : '../../sdkjs/common/AllFonts', sdk : '../../sdkjs/slide/sdk-all-min' }, @@ -62,7 +62,7 @@ require.config({ 'underscore', 'allfonts', 'xregexp', - 'sockjs' + 'socketio' ] } } diff --git a/apps/presentationeditor/main/app/controller/DocumentHolder.js b/apps/presentationeditor/main/app/controller/DocumentHolder.js index 36874fb8d..9344c8a9d 100644 --- a/apps/presentationeditor/main/app/controller/DocumentHolder.js +++ b/apps/presentationeditor/main/app/controller/DocumentHolder.js @@ -126,6 +126,7 @@ define([ onKeyUp: _.bind(me.onKeyUp, me) }; + me.guideTip = { ttHeight: 20 }; // Hotkeys // --------------------- var keymap = {}; @@ -219,6 +220,9 @@ define([ me.api.asc_registerPlaceholderCallback(AscCommon.PlaceholderButtonType.Table, _.bind(me.onClickPlaceholderTable, me)); me.api.asc_registerPlaceholderCallback(AscCommon.PlaceholderButtonType.Video, _.bind(me.onClickPlaceholder, me, AscCommon.PlaceholderButtonType.Video)); me.api.asc_registerPlaceholderCallback(AscCommon.PlaceholderButtonType.Audio, _.bind(me.onClickPlaceholder, me, AscCommon.PlaceholderButtonType.Audio)); + me.api.asc_registerCallback('asc_onTrackGuide', _.bind(me.onTrackGuide, me)); + me.api.asc_registerCallback('asc_onShowMathTrack', _.bind(me.onShowMathTrack, me)); + me.api.asc_registerCallback('asc_onHideMathTrack', _.bind(me.onHideMathTrack, me)); } me.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(me.onCoAuthoringDisconnect, me)); Common.NotificationCenter.on('api:disconnect', _.bind(me.onCoAuthoringDisconnect, me)); @@ -368,6 +372,7 @@ define([ view.menuRemoveHyperlinkPara.on('click', _.bind(me.removeHyperlink, me)); view.menuRemoveHyperlinkTable.on('click', _.bind(me.removeHyperlink, me)); view.menuChartEdit.on('click', _.bind(me.editChartClick, me, undefined)); + view.menuSaveAsPicture.on('click', _.bind(me.saveAsPicture, me)); view.menuAddCommentPara.on('click', _.bind(me.addComment, me)); view.menuAddCommentTable.on('click', _.bind(me.addComment, me)); view.menuAddCommentImg.on('click', _.bind(me.addComment, me)); @@ -409,6 +414,7 @@ define([ view.menuImgEditPoints.on('click', _.bind(me.onImgEditPoints, me)); view.menuShapeAdvanced.on('click', _.bind(me.onShapeAdvanced, me)); view.menuParagraphAdvanced.on('click', _.bind(me.onParagraphAdvanced, me)); + view.menuChartAdvanced.on('click', _.bind(me.onChartAdvanced, me)); view.mnuGroupImg.on('click', _.bind(me.onGroupImg, me)); view.mnuUnGroupImg.on('click', _.bind(me.onUnGroupImg, me)); view.mnuArrangeFront.on('click', _.bind(me.onArrangeFront, me)); @@ -421,6 +427,11 @@ define([ view.menuTableSelectText.menu.on('item:click', _.bind(me.tableSelectText, me)); view.menuTableInsertText.menu.on('item:click', _.bind(me.tableInsertText, me)); view.menuTableDeleteText.menu.on('item:click', _.bind(me.tableDeleteText, me)); + view.mnuGuides.menu.on('item:click', _.bind(me.onGuidesClick, me)); + view.mnuGridlines.menu.on('item:click', _.bind(me.onGridlinesClick, me)); + view.mnuRulers.on('click', _.bind(me.onRulersClick, me)); + view.menuTableEquation.menu.on('item:click', _.bind(me.convertEquation, me)); + view.menuParagraphEquation.menu.on('item:click', _.bind(me.convertEquation, me)); }, getView: function (name) { @@ -439,6 +450,8 @@ define([ if (event.get_Type() == Asc.c_oAscContextMenuTypes.Thumbnails) { showPoint[0] -= 3; showPoint[1] -= 3; + } else { + value && (value.guideId = event.get_Guide()); } if (!menu.rendered) { @@ -617,6 +630,28 @@ define([ } } } + + if (this.mode && this.mode.isEdit) { + var i = -1, + in_equation = false, + locked = false; + while (++i < selectedElements.length) { + var type = selectedElements[i].get_ObjectType(); + if (type === Asc.c_oAscTypeSelectElement.Math) { + in_equation = true; + } else if (type === Asc.c_oAscTypeSelectElement.Slide) { + var value = selectedElements[i].get_ObjectValue(); + value && (locked = locked || value.get_LockDelete()); + } else if (type === Asc.c_oAscTypeSelectElement.Paragraph) { + var value = selectedElements[i].get_ObjectValue(); + value && (locked = locked || value.get_Locked()); + } + } + if (in_equation) { + this._state.equationLocked = locked; + this.disableEquationBar(); + } + } }, handleDocumentWheel: function(event){ @@ -1170,7 +1205,7 @@ define([ pasteContainer = $('
'); - documentHolder.cmpEl.find('#id_main_view').append(pasteContainer); + documentHolder.cmpEl.append(pasteContainer); me.btnSpecialPaste = new Common.UI.Button({ parentEl: $('#id-document-holder-btn-special-paste'), @@ -1210,10 +1245,6 @@ define([ if (sdkPanelLeft.length) offsetLeft += (sdkPanelLeft.css('display') !== 'none') ? sdkPanelLeft.width() : 0; - var sdkPanelThumbs = documentHolder.cmpEl.find('#id_panel_thumbnails'); - if (sdkPanelThumbs.length) - offsetLeft += (sdkPanelThumbs.css('display') !== 'none') ? sdkPanelThumbs.width() : 0; - var showPoint = [Math.max(0, coord.asc_getX() + coord.asc_getWidth() + 3 - offsetLeft), coord.asc_getY() + coord.asc_getHeight() + 3]; pasteContainer.css({left: showPoint[0], top : showPoint[1]}); pasteContainer.show(); @@ -1268,7 +1299,7 @@ define([ }, onChangeCropState: function(state) { - this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true); + this.documentHolder.menuImgCrop && this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true); }, onDoubleClickOnTableOleObject: function(chart) { @@ -1347,6 +1378,12 @@ define([ }, + saveAsPicture: function() { + if(this.api) { + this.api.asc_SaveDrawingAsPicture(); + } + }, + /** coauthoring begin **/ addComment: function(item, e, eOpt){ if (this.api && this.mode.canCoAuthoring && this.mode.canComments) { @@ -1940,6 +1977,39 @@ define([ } }, + onChartAdvanced: function(item, e){ + var me = this; + if (me.api) { + var selectedElements = me.api.getSelectedElements(); + + if (selectedElements && selectedElements.length > 0){ + var elType, elValue; + for (var i = selectedElements.length - 1; i >= 0; i--) { + elType = selectedElements[i].get_ObjectType(); + elValue = selectedElements[i].get_ObjectValue(); + + if (Asc.c_oAscTypeSelectElement.Chart == elType) { + (new PE.Views.ChartSettingsAdvanced( + { + chartProps: elValue, + slideSize: PE.getController('Toolbar').currentPageSize, + handler: function(result, value) { + if (result == 'ok') { + if (me.api) { + me.api.ChartApply(value.chartProps); + } + } + me.editComplete(); + Common.component.Analytics.trackEvent('DocumentHolder', 'Chart Settings Advanced'); + } + })).show(); + break; + } + } + } + } + }, + onGroupImg: function(item) { this.api && this.api.groupShapes(); this.editComplete(); @@ -2089,9 +2159,247 @@ define([ return false; }, + onGuidesClick: function(menu, item) { + if (item.value == 'del-guide' && item.options.guideId) + this.api.asc_deleteGuide(item.options.guideId); + else if (item.value === 'add-vert' || item.value === 'add-hor') + this.documentHolder.fireEvent('guides:add', [item.value]); + else if (item.value === 'clear') + this.documentHolder.fireEvent('guides:clear'); + else if (item.value === 'smart') + this.documentHolder.fireEvent('guides:smart', [item.isChecked()]); + else + this.documentHolder.fireEvent('guides:show', [item.isChecked()]); + }, + + onGridlinesClick: function(menu, item) { + if (item.value === 'custom') + this.documentHolder.fireEvent('gridlines:custom'); + else if (item.value === 'snap') + this.documentHolder.fireEvent('gridlines:snap', [item.isChecked()]); + else if (item.value === 'show') + this.documentHolder.fireEvent('gridlines:show', [item.isChecked()]); + else + this.documentHolder.fireEvent('gridlines:spacing', [item.value]); + }, + + onRulersClick: function(item) { + this.documentHolder.fireEvent('rulers:change', [item.isChecked()]); + }, + + onTrackGuide: function(dPos, x, y) { + var tip = this.guideTip; + if (dPos === undefined || x<0 || y<0) { + if (!tip.isHidden && tip.ref) { + tip.ref.hide(); + tip.ref = undefined; + tip.text = ''; + tip.isHidden = true; + } + } else { + if (_.isUndefined(this._XY)) { + this._XY = [ + this.documentHolder.cmpEl.offset().left - $(window).scrollLeft(), + this.documentHolder.cmpEl.offset().top - $(window).scrollTop() + ]; + this._Width = this.documentHolder.cmpEl.width(); + this._Height = this.documentHolder.cmpEl.height(); + this._BodyWidth = $('body').width(); + } + + if (!tip.parentEl) { + tip.parentEl = $('
'); + this.documentHolder.cmpEl.append(tip.parentEl); + } + + var str = dPos.toFixed(2); + if (tip.ref && tip.ref.isVisible()) { + if (tip.text != str) { + tip.text = str; + tip.ref.setTitle(str); + tip.ref.updateTitle(); + } + } + + if (!tip.ref || !tip.ref.isVisible()) { + tip.text = str; + tip.ref = new Common.UI.Tooltip({ + owner : tip.parentEl, + html : true, + title : str + }); + + tip.ref.show([-10000, -10000]); + tip.isHidden = false; + } + var showPoint = [x, y]; + showPoint[0] += (this._XY[0] + 6); + showPoint[1] += (this._XY[1] - 20 - tip.ttHeight); + + var tipwidth = tip.ref.getBSTip().$tip.width(); + if (showPoint[0] + tipwidth > this._BodyWidth ) + showPoint[0] = this._BodyWidth - tipwidth - 20; + + tip.ref.getBSTip().$tip.css({ + top : showPoint[1] + 'px', + left: showPoint[0] + 'px' + }); + } + }, + + onShowMathTrack: function(bounds) { + if (bounds[3] < 0) { + this.onHideMathTrack(); + return; + } + var me = this, + documentHolder = me.documentHolder, + eqContainer = documentHolder.cmpEl.find('#equation-container'); + + // Prepare menu container + if (eqContainer.length < 1) { + var equationsStore = me.getApplication().getCollection('EquationGroups'), + eqStr = '
'; + + me.getApplication().getController('Toolbar').onMathTypes(); + + me.equationBtns = []; + for (var i = 0; i < equationsStore.length; ++i) { + var style = 'margin-right: 8px;' + (i==0 ? 'margin-left: 5px;' : ''); + eqStr += ''; + } + eqStr += '
'; + eqStr += ''; + eqStr += '
'; + eqContainer = $(eqStr); + documentHolder.cmpEl.append(eqContainer); + var onShowBefore = function (menu) { + var index = menu.options.value, + group = equationsStore.at(index); + var equationPicker = new Common.UI.DataViewSimple({ + el: $('#id-document-holder-btn-equation-menu-' + index, menu.cmpEl), + parentMenu: menu, + store: group.get('groupStore'), + scrollAlwaysVisible: true, + showLast: false, + restoreHeight: 450, + itemTemplate: _.template( + '
' + + '
' + + '
') + }); + equationPicker.on('item:click', function(picker, item, record, e) { + if (me.api) { + if (record) + me.api.asc_AddMath(record.get('data').equationType); + } + }); + menu.off('show:before', onShowBefore); + }; + var bringForward = function (menu) { + eqContainer.addClass('has-open-menu'); + }; + var sendBackward = function (menu) { + eqContainer.removeClass('has-open-menu'); + }; + for (var i = 0; i < equationsStore.length; ++i) { + var equationGroup = equationsStore.at(i); + var btn = new Common.UI.Button({ + parentEl: $('#id-document-holder-btn-equation-' + i, documentHolder.cmpEl), + cls : 'btn-toolbar no-caret', + iconCls : 'svgicon ' + equationGroup.get('groupIcon'), + hint : equationGroup.get('groupName'), + menu : new Common.UI.Menu({ + cls: 'menu-shapes', + value: i, + restoreHeight: equationGroup.get('groupHeight') ? parseInt(equationGroup.get('groupHeight')) : true, + items: [ + { template: _.template('') } + ] + }) + }); + btn.menu.on('show:before', onShowBefore); + btn.menu.on('show:before', bringForward); + btn.menu.on('hide:after', sendBackward); + me.equationBtns.push(btn); + } + + me.equationSettingsBtn = new Common.UI.Button({ + parentEl: $('#id-document-holder-btn-equation-settings', documentHolder.cmpEl), + cls : 'btn-toolbar no-caret', + iconCls : 'toolbar__icon more-vertical', + hint : me.documentHolder.advancedEquationText, + menu : me.documentHolder.createEquationMenu('popuptbeqinput', 'tl-bl') + }); + me.equationSettingsBtn.menu.options.initMenu = function() { + var eq = me.api.asc_GetMathInputType(); + var menu = me.equationSettingsBtn.menu; + menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode); + menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX); + }; + me.equationSettingsBtn.menu.on('item:click', _.bind(me.convertEquation, me)); + me.equationSettingsBtn.menu.on('show:before', function(menu) { + menu.options.initMenu(); + }); + } + + var showPoint = [(bounds[0] + bounds[2])/2 - eqContainer.outerWidth()/2, bounds[1] - eqContainer.outerHeight() - 10]; + if (showPoint[1]<0) { + showPoint[1] = bounds[3] + 10; + } + showPoint[1] = Math.min(me._Height - eqContainer.outerHeight(), Math.max(0, showPoint[1])); + eqContainer.css({left: showPoint[0], top : showPoint[1]}); + + var menuAlign = (me._Height - showPoint[1] - eqContainer.outerHeight() < 220) ? 'bl-tl' : 'tl-bl'; + me.equationBtns.forEach(function(item){ + item && (item.menu.menuAlign = menuAlign); + }); + me.equationSettingsBtn.menu.menuAlign = menuAlign; + if (eqContainer.is(':visible')) { + if (me.equationSettingsBtn.menu.isVisible()) { + me.equationSettingsBtn.menu.options.initMenu(); + me.equationSettingsBtn.menu.alignPosition(); + } + } else { + eqContainer.show(); + } + me.disableEquationBar(); + }, + + onHideMathTrack: function() { + var eqContainer = this.documentHolder.cmpEl.find('#equation-container'); + if (eqContainer.is(':visible')) { + eqContainer.hide(); + } + }, + + disableEquationBar: function() { + var eqContainer = this.documentHolder.cmpEl.find('#equation-container'), + disabled = this._isDisabled || this._state.equationLocked; + + if (eqContainer.length>0 && eqContainer.is(':visible')) { + this.equationBtns.forEach(function(item){ + item && item.setDisabled(!!disabled); + }); + this.equationSettingsBtn.setDisabled(!!disabled); + } + }, + + convertEquation: function(menu, item, e) { + if (this.api) { + if (item.options.type=='input') + this.api.asc_SetMathInputType(item.value); + else if (item.options.type=='view') + this.api.asc_ConvertMathView(item.value.linear, item.value.all); + } + }, + SetDisabled: function(state) { this._isDisabled = state; this.documentHolder.SetDisabled(state); + this.disableEquationBar(); }, editComplete: function() { diff --git a/apps/presentationeditor/main/app/controller/LeftMenu.js b/apps/presentationeditor/main/app/controller/LeftMenu.js index 3915b3fb0..ec114cefa 100644 --- a/apps/presentationeditor/main/app/controller/LeftMenu.js +++ b/apps/presentationeditor/main/app/controller/LeftMenu.js @@ -100,6 +100,9 @@ define([ }, 'SearchBar': { 'search:show': _.bind(this.onShowHideSearch, this) + }, + 'ViewTab': { + 'leftmenu:hide': _.bind(this.onLeftMenuHide, this) } }); Common.NotificationCenter.on('leftmenu:change', _.bind(this.onMenuChange, this)); @@ -112,7 +115,6 @@ define([ onLaunch: function() { this.leftMenu = this.createView('LeftMenu').render(); this.leftMenu.btnThumbs.on('toggle', _.bind(this.onShowTumbnails, this)); - this.isThumbsShown = true; this.leftMenu.btnSearchBar.on('toggle', _.bind(this.onMenuSearchBar, this)); Common.util.Shortcuts.delegateShortcuts({ @@ -162,7 +164,11 @@ define([ this.leftMenu.getMenu('file').setApi(api); if (this.mode.canUseHistory) this.getApplication().getController('Common.Controllers.History').setApi(this.api).setMode(this.mode); - this.leftMenu.btnThumbs.toggle(true); + + var value = Common.UI.LayoutManager.getInitValue('leftMenu'); + value = (value!==undefined) ? !value : false; + this.isThumbsShown = !Common.localStorage.getBool("pe-hidden-leftmenu", value); + this.leftMenu.btnThumbs.toggle(this.isThumbsShown); this.getApplication().getController('Search').setApi(this.api).setMode(this.mode); this.leftMenu.setOptionsPanel('advancedsearch', this.getApplication().getController('Search').getView('Common.Views.SearchPanel')); return this; @@ -380,9 +386,11 @@ define([ value = parseInt(Common.localStorage.getItem("pe-settings-paste-button")); Common.Utils.InternalSettings.set("pe-settings-paste-button", value); this.api.asc_setVisiblePasteButton(!!value); - } - this.api.put_ShowSnapLines(Common.Utils.InternalSettings.get("pe-settings-showsnaplines")); + value = Common.localStorage.getBool("pe-settings-showsnaplines"); + Common.Utils.InternalSettings.set("pe-settings-showsnaplines", value); + this.api.asc_setShowSmartGuides(value); + } menu.hide(); }, @@ -663,6 +671,7 @@ define([ onPluginOpen: function(panel, type, action) { if (type == 'onboard') { if (action == 'open') { + this.tryToShowLeftMenu(); this.leftMenu.close(); this.leftMenu.btnThumbs.toggle(false, false); this.leftMenu.panelPlugins.show(); @@ -696,6 +705,7 @@ define([ if (this.mode.canCoAuthoring && this.mode.canChat && !this.mode.isLightVersion) { if (state) { Common.UI.Menu.Manager.hideAll(); + this.tryToShowLeftMenu(); this.leftMenu.showMenu('chat'); } else { this.leftMenu.btnChat.toggle(false, true); @@ -764,7 +774,30 @@ define([ isCommentsVisible: function() { return this.leftMenu && this.leftMenu.panelComments && this.leftMenu.panelComments.isVisible(); }, - + + onLeftMenuHide: function (view, status) { + if (this.leftMenu) { + if (status) { + this.leftMenu.show(); + } else { + this.menuExpand(this, 'thumbs', false); + this.leftMenu.close(); + this.leftMenu.hide(); + } + Common.localStorage.setBool('pe-hidden-leftmenu', !status); + + !view && this.leftMenu.fireEvent('view:hide', [this, !status]); + } + + Common.NotificationCenter.trigger('layout:changed', 'main'); + Common.NotificationCenter.trigger('edit:complete', this.leftMenu); + }, + + tryToShowLeftMenu: function() { + if ((!this.mode.canBrandingExt || !this.mode.customization || this.mode.customization.leftMenu !== false) && Common.UI.LayoutManager.isElementVisible('leftMenu')) + this.onLeftMenuHide(null, true); + }, + textNoTextFound : 'Text not found', newDocumentTitle : 'Unnamed document', requestEditRightsText : 'Requesting editing rights...', diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index f86a51cbe..50770545c 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -339,6 +339,19 @@ define([ Common.Utils.InternalSettings.set("guest-username", value); Common.Utils.InternalSettings.set("save-guest-username", !!value); } + if (this.appOptions.customization.font) { + if (this.appOptions.customization.font.name && typeof this.appOptions.customization.font.name === 'string') { + var arr = this.appOptions.customization.font.name.split(','); + for (var i=0; iPress "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).', textUndo: 'Undo', - textContinue: 'Continue' + textContinue: 'Continue', + errorInconsistentExtDocx: 'An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.', + errorInconsistentExtXlsx: 'An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPptx: 'An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPdf: 'An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.', + errorInconsistentExt: 'An error has occurred while opening the file.
The file content does not match the file extension.' } })(), PE.Controllers.Main || {})) }); diff --git a/apps/presentationeditor/main/app/controller/RightMenu.js b/apps/presentationeditor/main/app/controller/RightMenu.js index f1f3a69f7..4e5c5a0ba 100644 --- a/apps/presentationeditor/main/app/controller/RightMenu.js +++ b/apps/presentationeditor/main/app/controller/RightMenu.js @@ -61,6 +61,9 @@ define([ this.addListeners({ 'RightMenu': { 'rightmenuclick': this.onRightMenuClick + }, + 'ViewTab': { + 'rightmenu:hide': _.bind(this.onRightMenuHide, this) } }); }, @@ -384,6 +387,17 @@ define([ case Asc.c_oAscTypeSelectElement.Chart: return Common.Utils.documentSettingsType.Chart; } + }, + + onRightMenuHide: function (view, status) { + if (this.rightmenu) { + !status && this.rightmenu.clearSelection(); + status ? this.rightmenu.show() : this.rightmenu.hide(); + Common.localStorage.setBool('pe-hidden-rightmenu', !status); + } + + Common.NotificationCenter.trigger('layout:changed', 'main'); + Common.NotificationCenter.trigger('edit:complete', this.rightmenu); } }); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/controller/Search.js b/apps/presentationeditor/main/app/controller/Search.js index b85d0e420..5ef890f18 100644 --- a/apps/presentationeditor/main/app/controller/Search.js +++ b/apps/presentationeditor/main/app/controller/Search.js @@ -132,9 +132,33 @@ define([ } }, + checkPunctuation: function (text) { + if (!!text) { + var isPunctuation = false; + for (var l = 0; l < text.length; l++) { + var charCode = text.charCodeAt(l), + char = text.charAt(l); + if (AscCommon.g_aPunctuation[charCode] !== undefined || char.trim() === '') { + isPunctuation = true; + break; + } + } + if (isPunctuation) { + if (this._state.matchWord) { + this.view.chMatchWord.setValue(false, true); + this._state.matchWord = false; + } + this.view.chMatchWord.setDisabled(true); + } else if (this.view.chMatchWord.isDisabled()) { + this.view.chMatchWord.setDisabled(false); + } + } + }, + onSearchNext: function (type, text, e) { var isReturnKey = type === 'keydown' && e.keyCode === Common.UI.Keys.RETURN; if (text && text.length > 0 && (isReturnKey || type !== 'keydown')) { + this.checkPunctuation(text); this._state.searchText = text; this.onQuerySearch(type, !(this.searchTimer || isReturnKey)); } @@ -149,6 +173,7 @@ define([ this.searchTimer = setInterval(function(){ if ((new Date()) - me._lastInputChange < 400) return; + me.checkPunctuation(me._state.newSearchText); me._state.searchText = me._state.newSearchText; if (!(me._state.newSearchText !== '' && me.onQuerySearch()) && me._state.newSearchText === '') { me.api.asc_endFindText(); @@ -338,6 +363,7 @@ define([ var selectedText = this.api.asc_GetSelectedText(), text = typeof findText === 'string' ? findText : (selectedText && selectedText.trim() || this._state.searchText); + this.checkPunctuation(text); if (text) { this.view.setFindText(text); } else if (text !== undefined) { // panel was opened from empty searchbar, clear to start new search diff --git a/apps/presentationeditor/main/app/controller/Toolbar.js b/apps/presentationeditor/main/app/controller/Toolbar.js index 917fb1299..c40830d33 100644 --- a/apps/presentationeditor/main/app/controller/Toolbar.js +++ b/apps/presentationeditor/main/app/controller/Toolbar.js @@ -59,7 +59,8 @@ define([ 'presentationeditor/main/app/view/HeaderFooterDialog', 'presentationeditor/main/app/view/HyperlinkSettingsDialog', 'presentationeditor/main/app/view/SlideSizeSettings', - 'presentationeditor/main/app/view/SlideshowSettings' + 'presentationeditor/main/app/view/SlideshowSettings', + 'presentationeditor/main/app/view/define' ], function () { 'use strict'; PE.Controllers.Toolbar = Backbone.Controller.extend(_.extend({ @@ -109,7 +110,8 @@ define([ in_chart: false, no_columns: false, clrhighlight: undefined, - can_copycut: undefined + can_copycut: undefined, + needCallApiBullets: undefined }; this._isAddingShape = false; this.slideSizeArr = [ @@ -127,7 +129,8 @@ define([ this.addListeners({ 'Toolbar': { 'insert:image' : this.onInsertImageClick.bind(this), - 'insert:text' : this.onInsertText.bind(this), + 'insert:text-btn' : this.onBtnInsertTextClick.bind(this), + 'insert:text-menu' : this.onMenuInsertTextClick.bind(this), 'insert:textart' : this.onInsertTextart.bind(this), 'insert:shape' : this.onInsertShape.bind(this), 'add:slide' : this.onAddSlide.bind(this), @@ -135,7 +138,9 @@ define([ 'duplicate:check' : this.onDuplicateCheck.bind(this), 'change:slide' : this.onChangeSlide.bind(this), 'change:compact' : this.onClickChangeCompact, - 'add:chart' : this.onSelectChart + 'add:chart' : this.onSelectChart, + 'generate:smartart' : this.generateSmartArt, + 'insert:smartart' : this.onInsertSmartArt }, 'FileMenu': { 'menu:hide': this.onFileMenu.bind(this, 'hide'), @@ -226,8 +231,12 @@ define([ if ( this.toolbar.btnsInsertShape.pressed() ) this.toolbar.btnsInsertShape.toggle(false, true); - if ( this.toolbar.btnsInsertText.pressed() ) + if ( this.toolbar.btnsInsertText.pressed() ) { this.toolbar.btnsInsertText.toggle(false, true); + this.toolbar.btnsInsertText.forEach(function(button) { + button.menu.clearAll(); + }); + } if ( this.toolbar.cmbInsertShape.isComboViewRecActive() ) this.toolbar.cmbInsertShape.deactivateRecords(); @@ -405,6 +414,9 @@ define([ Common.NotificationCenter.on('storage:image-load', _.bind(this.openImageFromStorage, this)); Common.NotificationCenter.on('storage:image-insert', _.bind(this.insertImageFromStorage, this)); this.api.asc_registerCallback('asc_onCanCopyCut', _.bind(this.onApiCanCopyCut, this)); + this.api.asc_registerCallback('asc_onBeginSmartArtPreview', _.bind(this.onApiBeginSmartArtPreview, this)); + this.api.asc_registerCallback('asc_onAddSmartArtPreview', _.bind(this.onApiAddSmartArtPreview, this)); + this.api.asc_registerCallback('asc_onEndSmartArtPreview', _.bind(this.onApiEndSmartArtPreview, this)); } else if (this.mode.isRestrictedEdit) { this.api.asc_registerCallback('asc_onCountPages', _.bind(this.onApiCountPagesRestricted, this)); } @@ -518,6 +530,12 @@ define([ }, onApiBullets: function(v) { + if (!(this.toolbar.mnuMarkersPicker && this.toolbar.mnuMarkersPicker.store)) { + this._state.needCallApiBullets = v; + return; + } + this._state.needCallApiBullets = undefined; + if (this._state.bullets.type !== v.get_ListType() || this._state.bullets.subtype !== v.get_ListSubType() || v.get_ListType()===0 && v.get_ListSubType()===0x1000) { this._state.bullets.type = v.get_ListType(); this._state.bullets.subtype = v.get_ListSubType(); @@ -722,7 +740,7 @@ define([ this.toolbar.lockToolbar(Common.enumLock.noSlides, this._state.no_slides, {array: this.toolbar.paragraphControls}); this.toolbar.lockToolbar(Common.enumLock.noSlides, this._state.no_slides, {array: [ this.toolbar.btnChangeSlide, this.toolbar.btnPreview, this.toolbar.btnPrint, this.toolbar.btnCopy, this.toolbar.btnCut, this.toolbar.btnSelectAll, this.toolbar.btnPaste, - this.toolbar.btnCopyStyle, this.toolbar.btnInsertTable, this.toolbar.btnInsertChart, + this.toolbar.btnCopyStyle, this.toolbar.btnInsertTable, this.toolbar.btnInsertChart, this.toolbar.btnInsertSmartArt, this.toolbar.btnColorSchemas, this.toolbar.btnShapeAlign, this.toolbar.btnShapeArrange, this.toolbar.btnSlideSize, this.toolbar.listTheme, this.toolbar.btnEditHeader, this.toolbar.btnInsDateTime, this.toolbar.btnInsSlideNum ]}); @@ -814,7 +832,7 @@ define([ if (this._state.activated) this._state.prcontrolsdisable = paragraph_locked; if (paragraph_locked!==undefined) this.toolbar.lockToolbar(Common.enumLock.paragraphLock, paragraph_locked, {array: me.toolbar.paragraphControls}); - this.toolbar.lockToolbar(Common.enumLock.paragraphLock, paragraph_locked===true, {array: [me.toolbar.btnInsDateTime, me.toolbar.btnInsSlideNum]}); + this.toolbar.lockToolbar(Common.enumLock.paragraphLock, paragraph_locked===true, {array: [me.toolbar.btnInsDateTime, me.toolbar.btnInsSlideNum, me.toolbar.btnInsertEquation]}); } if (this._state.no_paragraph !== no_paragraph) { @@ -1784,14 +1802,39 @@ define([ Common.NotificationCenter.trigger('storage:image-insert', data); }, - onInsertText: function(status) { - if ( status == 'begin' ) { - this._addAutoshape(true, 'textRect'); + onBtnInsertTextClick: function(btn, e) { + btn.menu.items.forEach(function(item) { + if(item.value == btn.options.textboxType) + item.setChecked(true); + }); + if(!btn.pressed) { + btn.menu.clearAll(); + } + this.onInsertText(btn.options.textboxType, btn, e); + }, - if ( !this.toolbar.btnsInsertText.pressed() ) - this.toolbar.btnsInsertText.toggle(true, true); - } else - this._addAutoshape(false, 'textRect'); + onMenuInsertTextClick: function(btn, e) { + var self = this; + var oldType = btn.options.textboxType; + var newType = e.value; + + btn.toggle(true); + if(newType != oldType){ + this.toolbar.btnsInsertText.forEach(function(button) { + button.updateHint([e.caption, self.views.Toolbar.prototype.tipInsertText]); + button.changeIcon({ + next: e.options.iconClsForMainBtn, + curr: button.menu.items.filter(function(item){return item.value == oldType})[0].options.iconClsForMainBtn + }); + button.options.textboxType = newType; + }); + } + this.onInsertText(newType, btn, e); + }, + + onInsertText: function(type, btn, e) { + if (this.api) + this._addAutoshape(btn.pressed, type); if ( this.toolbar.btnsInsertShape.pressed() ) this.toolbar.btnsInsertShape.toggle(false, true); @@ -2207,6 +2250,7 @@ define([ parentMenu: menu.items[i].menu, store: equationsStore.at(i).get('groupStore'), scrollAlwaysVisible: true, + restoreHeight: 10000, itemTemplate: _.template( '
' + '
' + @@ -2244,7 +2288,7 @@ define([ items: [ { template: _.template('') } + equationGroup.get('groupHeightStr') + 'margin-left:5px;">
') } ] }) }); @@ -2291,16 +2335,21 @@ define([ var me = this; var onShowBefore = function(menu) { me.onMathTypes(me._equationTemp); + if (me._equationTemp && me._equationTemp.get_Data().length>0) + me.fillEquations(); me.toolbar.btnInsertEquation.menu.off('show:before', onShowBefore); }; me.toolbar.btnInsertEquation.menu.on('show:before', onShowBefore); }, onMathTypes: function(equation) { + equation = equation || this._equationTemp; + var equationgrouparray = [], equationsStore = this.getCollection('EquationGroups'); - equationsStore.reset(); + if (equationsStore.length>0) + return; // equations groups @@ -2308,18 +2357,18 @@ define([ // [translate, count cells, scroll] - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Symbol ] = [this.textSymbols, 11]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Fraction ] = [this.textFraction, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Script ] = [this.textScript, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Radical ] = [this.textRadical, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Integral ] = [this.textIntegral, 3, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LargeOperator] = [this.textLargeOperator, 5, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Bracket ] = [this.textBracket, 4, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Function ] = [this.textFunction, 3, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Accent ] = [this.textAccent, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LimitLog ] = [this.textLimitAndLog, 3]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Operator ] = [this.textOperator, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Matrix ] = [this.textMatrix, 4, true]; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Symbol ] = [this.textSymbols, 11, false, 'svg-icon-symbols']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Fraction ] = [this.textFraction, 4, false, 'svg-icon-fraction']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Script ] = [this.textScript, 4, false, 'svg-icon-script']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Radical ] = [this.textRadical, 4, false, 'svg-icon-radical']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Integral ] = [this.textIntegral, 3, true, 'svg-icon-integral']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LargeOperator] = [this.textLargeOperator, 5, true, 'svg-icon-largeOperator']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Bracket ] = [this.textBracket, 4, true, 'svg-icon-bracket']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Function ] = [this.textFunction, 3, true, 'svg-icon-function']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Accent ] = [this.textAccent, 4, false, 'svg-icon-accent']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LimitLog ] = [this.textLimitAndLog, 3, false, 'svg-icon-limAndLog']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Operator ] = [this.textOperator, 4, false, 'svg-icon-operator']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Matrix ] = [this.textMatrix, 4, true, 'svg-icon-matrix']; // equations sub groups @@ -2389,12 +2438,14 @@ define([ groupName : c_oAscMathMainTypeStrings[id][0], groupStore : store, groupWidth : width, - groupHeight : c_oAscMathMainTypeStrings[id][2] ? ' height:'+ normHeight +'px!important; ' : '' + groupHeight : normHeight, + groupHeightStr : c_oAscMathMainTypeStrings[id][2] ? ' height:'+ normHeight +'px!important; ' : '', + groupIcon: c_oAscMathMainTypeStrings[id][3] }); } } equationsStore.add(equationgrouparray); - this.fillEquations(); + // this.fillEquations(); } } }, @@ -2562,6 +2613,7 @@ define([ createDelayedElements: function() { this.toolbar.createDelayedElements(); this.attachUIEvents(this.toolbar); + this._state.needCallApiBullets && this.onApiBullets(this._state.needCallApiBullets); }, onAppShowed: function (config) { @@ -2687,6 +2739,51 @@ define([ } }, + generateSmartArt: function (groupName) { + this.api.asc_generateSmartArtPreviews(groupName); + }, + + onApiBeginSmartArtPreview: function () { + this.smartArtGroups = this.toolbar.btnInsertSmartArt.menu.items; + this.smartArtData = Common.define.smartArt.getSmartArtData(); + }, + + onApiAddSmartArtPreview: function (previews) { + previews.forEach(_.bind(function (preview) { + var image = preview.asc_getImage(), + sectionId = preview.asc_getSectionId(), + section = _.findWhere(this.smartArtData, {sectionId: sectionId}), + item = _.findWhere(section.items, {type: image.asc_getName()}), + menu = _.findWhere(this.smartArtGroups, {value: sectionId}), + menuPicker = menu.menuPicker; + if (item) { + var arr = [{ + tip: item.tip, + value: item.type, + imageUrl: image.asc_getImage() + }]; + if (menuPicker.store.length < 1) { + menuPicker.store.reset(arr); + } else { + menuPicker.store.add(arr); + } + } + this.currentSmartArtMenu = menu; + }, this)); + }, + + onApiEndSmartArtPreview: function () { + if (this.currentSmartArtMenu) { + this.currentSmartArtMenu.menu.alignPosition(); + } + }, + + onInsertSmartArt: function (value) { + if (this.api) { + this.api.asc_createSmartArt(value); + } + }, + textEmptyImgUrl : 'You need to specify image URL.', textWarning : 'Warning', textFontSizeErr : 'The entered value is incorrect.
Please enter a numeric value between 1 and 300', diff --git a/apps/presentationeditor/main/app/controller/ViewTab.js b/apps/presentationeditor/main/app/controller/ViewTab.js index 72f824a02..459e603f8 100644 --- a/apps/presentationeditor/main/app/controller/ViewTab.js +++ b/apps/presentationeditor/main/app/controller/ViewTab.js @@ -41,7 +41,8 @@ define([ 'core', - 'presentationeditor/main/app/view/ViewTab' + 'presentationeditor/main/app/view/ViewTab', + 'presentationeditor/main/app/view/GridSettings' ], function () { 'use strict'; @@ -59,11 +60,12 @@ define([ onLaunch: function () { this._state = { zoom_type: undefined, - zoom_percent: undefined + zoom_percent: undefined, + unitsChanged: true }; - Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); Common.NotificationCenter.on('uitheme:changed', this.onThemeChanged.bind(this)); Common.NotificationCenter.on('document:ready', _.bind(this.onDocumentReady, this)); + Common.NotificationCenter.on('settings:unitschanged', _.bind(this.unitsChanged, this)); }, setApi: function (api) { @@ -87,10 +89,23 @@ define([ }); this.addListeners({ 'ViewTab': { + 'zoom:selected': _.bind(this.onSelectedZoomValue, this), + 'zoom:changedbefore': _.bind(this.onZoomChanged, this), + 'zoom:changedafter': _.bind(this.onZoomChanged, this), 'zoom:toslide': _.bind(this.onBtnZoomTo, this, 'toslide'), 'zoom:towidth': _.bind(this.onBtnZoomTo, this, 'towidth'), 'rulers:change': _.bind(this.onChangeRulers, this), - 'notes:change': _.bind(this.onChangeNotes, this) + 'notes:change': _.bind(this.onChangeNotes, this), + 'guides:show': _.bind(this.onGuidesShow, this), + 'guides:aftershow': _.bind(this.onGuidesAfterShow, this), + 'guides:add': _.bind(this.onGuidesAdd, this), + 'guides:clear': _.bind(this.onGuidesClear, this), + 'guides:smart': _.bind(this.onGuidesSmartShow, this), + 'gridlines:show': _.bind(this.onGridlinesShow, this), + 'gridlines:snap': _.bind(this.onGridlinesSnap, this), + 'gridlines:spacing': _.bind(this.onGridlinesSpacing, this), + 'gridlines:custom': _.bind(this.onGridlinesCustom, this), + 'gridlines:aftershow': _.bind(this.onGridlinesAfterShow, this) }, 'Toolbar': { 'view:compact': _.bind(function (toolbar, state) { @@ -101,6 +116,22 @@ define([ 'view:hide': _.bind(function (statusbar, state) { this.view.chStatusbar.setValue(!state, true); }, this) + }, + 'DocumentHolder': { + 'guides:show': _.bind(this.onGuidesShow, this), + 'guides:add': _.bind(this.onGuidesAdd, this), + 'guides:clear': _.bind(this.onGuidesClear, this), + 'guides:smart': _.bind(this.onGuidesSmartShow, this), + 'gridlines:show': _.bind(this.onGridlinesShow, this), + 'gridlines:snap': _.bind(this.onGridlinesSnap, this), + 'gridlines:spacing': _.bind(this.onGridlinesSpacing, this), + 'gridlines:custom': _.bind(this.onGridlinesCustom, this), + 'rulers:change': _.bind(this.onChangeRulers, this) + }, + 'LeftMenu': { + 'view:hide': _.bind(function (leftmenu, state) { + this.view.chLeftMenu.setValue(!state, true); + }, this) } }); }, @@ -143,70 +174,6 @@ define([ Common.localStorage.setBool('pe-hidden-notes', !bIsShow); }, - onAppReady: function (config) { - var me = this; - if (me.view) { - (new Promise(function (accept, reject) { - accept(); - })).then(function () { - me.view.setEvents(); - - if (!Common.UI.Themes.available()) { - me.view.btnInterfaceTheme.$el.closest('.group').remove(); - me.view.$el.find('.separator-theme').remove(); - } - if (config.canBrandingExt && config.customization && config.customization.statusBar === false || !Common.UI.LayoutManager.isElementVisible('statusBar')) { - me.view.chStatusbar.$el.remove(); - - if (!config.isEdit) { - var slotChkNotes = me.view.chNotes.$el, - groupRulers = slotChkNotes.closest('.group'), - groupToolbar = me.view.chToolbar.$el.closest('.group'); - groupToolbar.find('.elset')[1].append(slotChkNotes[0]); - groupRulers.remove(); - me.view.$el.find('.separator-rulers').remove(); - } - } else if (!config.isEdit) { - me.view.chRulers.hide(); - } - - me.view.cmbZoom.on('selected', _.bind(me.onSelectedZoomValue, me)) - .on('changed:before',_.bind(me.onZoomChanged, me, true)) - .on('changed:after', _.bind(me.onZoomChanged, me, false)) - .on('combo:blur', _.bind(me.onComboBlur, me, false)); - }); - - if (Common.UI.Themes.available()) { - function _fill_themes() { - var btn = this.view.btnInterfaceTheme; - if ( typeof(btn.menu) == 'object' ) btn.menu.removeAll(); - else btn.setMenu(new Common.UI.Menu()); - - var currentTheme = Common.UI.Themes.currentThemeId() || Common.UI.Themes.defaultThemeId(); - for (var t in Common.UI.Themes.map()) { - btn.menu.addItem({ - value: t, - caption: Common.UI.Themes.get(t).text, - checked: t === currentTheme, - checkable: true, - toggleGroup: 'interface-theme' - }); - } - } - - Common.NotificationCenter.on('uitheme:countchanged', _fill_themes.bind(me)); - _fill_themes.call(me); - - if (me.view.btnInterfaceTheme.menu.items.length) { - this.view.btnInterfaceTheme.menu.on('item:click', _.bind(function (menu, item) { - var value = item.value; - Common.UI.Themes.setTheme(value); - }, this)); - } - } - } - }, - onBtnZoomTo: function (type, btn) { this._state.zoom_type = undefined; this._state.zoom_percent = undefined; @@ -217,8 +184,9 @@ define([ Common.NotificationCenter.trigger('edit:complete', this.view); }, - onChangeRulers: function (btn, checked) { + onChangeRulers: function (checked) { this.api.asc_SetViewRulers(checked); + this.view.chRulers.setValue(checked, true); Common.localStorage.setBool('pe-hidden-rulers', !checked); Common.Utils.InternalSettings.set("pe-hidden-rulers", !checked); Common.NotificationCenter.trigger('layout:changed', 'rulers'); @@ -275,6 +243,119 @@ define([ onComboBlur: function() { Common.NotificationCenter.trigger('edit:complete', this.view); + }, + + onGuidesShow: function(state) { + this.api.asc_setShowGuides(state); + this.view.btnGuides.toggle(state, true); + Common.localStorage.setBool('pe-settings-showguides', state); + Common.NotificationCenter.trigger('edit:complete', this.view); + }, + + onGuidesAfterShow: function() { + if (this.view) { + this.view.btnGuides.menu.items[6].setDisabled(!this.api.asc_canClearGuides()); + this.view.btnGuides.menu.items[0].setChecked(this.api.asc_getShowGuides(), true); + this.view.btnGuides.menu.items[5].setChecked(this.api.asc_getShowSmartGuides(), true); + } + }, + + onGuidesAdd: function(type) { + if (type==='add-vert') + this.api.asc_addVerticalGuide(); + else + this.api.asc_addHorizontalGuide(); + + !this.api.asc_getShowGuides() && this.onGuidesShow(true); + + Common.NotificationCenter.trigger('edit:complete', this.view); + }, + + onGuidesClear: function() { + this.api.asc_clearGuides(); + Common.NotificationCenter.trigger('edit:complete', this.view); + }, + + onGuidesSmartShow: function(state) { + this.api.asc_setShowSmartGuides(state); + Common.localStorage.setBool('pe-settings-showsnaplines', state); + Common.Utils.InternalSettings.set("pe-settings-showsnaplines", state); + Common.NotificationCenter.trigger('edit:complete', this.view); + }, + + onGridlinesShow: function(state) { + this.api.asc_setShowGridlines(state); + this.view.btnGridlines.toggle(state, true); + Common.localStorage.setBool('pe-settings-showgrid', state); + Common.NotificationCenter.trigger('edit:complete', this.view); + }, + + onGridlinesSnap: function(state) { + this.api.asc_setSnapToGrid(state); + Common.NotificationCenter.trigger('edit:complete', this.view); + }, + + onGridlinesSpacing: function(value) { + this.api.asc_setGridSpacing(Common.Utils.Metric.fnRecalcToMM(value) * 36000); + Common.NotificationCenter.trigger('edit:complete', this.view); + }, + + onGridlinesCustom: function(state) { + var win, props, + me = this; + win = new PE.Views.GridSettings({ + handler: function(dlg, result) { + if (result == 'ok') { + props = dlg.getSettings(); + me.api.asc_setGridSpacing(Common.Utils.Metric.fnRecalcToMM(props) * 36000); + Common.NotificationCenter.trigger('edit:complete', me.view); + } + } + }); + win.show(); + win.setSettings(me.api.asc_getGridSpacing()); + }, + + onGridlinesAfterShow: function() { + if (this.view) { + var menu = this.view.btnGridlines.menu; + if (this._state.unitsChanged) { + for (var i = 3; i < menu.items.length-2; i++) { + menu.removeItem(menu.items[i]); + i--; + } + var arr = Common.define.gridlineData.getGridlineData(Common.Utils.Metric.getCurrentMetric()); + for (var i = 0; i < arr.length; i++) { + var menuItem = new Common.UI.MenuItem({ + caption: arr[i].caption, + value: arr[i].value, + checkable: true, + toggleGroup: 'tb-gridlines' + }); + menu.insertItem(3+i, menuItem); + } + this._state.unitsChanged = false; + } + + menu.items[0].setChecked(this.api.asc_getShowGridlines(), true); + menu.items[1].setChecked(this.api.asc_getSnapToGrid(), true); + + var value = Common.Utils.Metric.fnRecalcFromMM(this.api.asc_getGridSpacing()/36000), + items = menu.items; + for (var i=3; i=1 && Math.abs(item.value - value)<0.001) + item.setChecked(true); + else + item.setChecked(false); + } + } + }, + + unitsChanged: function(m) { + this._state.unitsChanged = true; } }, PE.Controllers.ViewTab || {})); diff --git a/apps/presentationeditor/main/app/template/ChartSettings.template b/apps/presentationeditor/main/app/template/ChartSettings.template index c950a36ee..336294b94 100644 --- a/apps/presentationeditor/main/app/template/ChartSettings.template +++ b/apps/presentationeditor/main/app/template/ChartSettings.template @@ -49,6 +49,71 @@
+
diff --git a/apps/documenteditor/main/app/template/Toolbar.template b/apps/documenteditor/main/app/template/Toolbar.template index 6271e1249..b67d89805 100644 --- a/apps/documenteditor/main/app/template/Toolbar.template +++ b/apps/documenteditor/main/app/template/Toolbar.template @@ -8,10 +8,10 @@
- +
- +
@@ -87,7 +87,7 @@ -
+
@@ -103,6 +103,7 @@ +
diff --git a/apps/documenteditor/main/app/view/ChartSettings.js b/apps/documenteditor/main/app/view/ChartSettings.js index b88abbd84..77089a90f 100644 --- a/apps/documenteditor/main/app/view/ChartSettings.js +++ b/apps/documenteditor/main/app/view/ChartSettings.js @@ -95,6 +95,7 @@ define([ this.labelWidth = el.find('#chart-label-width'); this.labelHeight = el.find('#chart-label-height'); this.NotCombinedSettings = $('.not-combined'); + this.Chart3DContainer = $('#chart-panel-3d-rotate'); }, setApi: function(api) { @@ -191,6 +192,57 @@ define([ this.labelHeight[0].innerHTML = this.textHeight + ': ' + Common.Utils.Metric.fnRecalcFromMM(value).toFixed(1) + ' ' + Common.Utils.Metric.getCurrentMetricName(); this._state.Height = value; } + + var props3d = this.chartProps ? this.chartProps.getView3d() : null; + this.ShowHideElem(!!props3d); + if (props3d) { + value = props3d.asc_getRotX(); + if ((this._state.X===undefined || value===undefined)&&(this._state.X!==value) || + Math.abs(this._state.X-value)>0.001) { + this.spnX.setValue((value!==null && value !== undefined) ? value : '', true); + this._state.X = value; + } + + value = props3d.asc_getRotY(); + if ( (this._state.Y===undefined || value===undefined)&&(this._state.Y!==value) || + Math.abs(this._state.Y-value)>0.001) { + this.spnY.setValue((value!==null && value !== undefined) ? value : '', true); + this._state.Y = value; + } + + value = props3d.asc_getRightAngleAxes(); + if ( this._state.RightAngle!==value ) { + this.chRightAngle.setValue((value !== null && value !== undefined) ? value : 'indeterminate', true); + this._state.RightAngle=value; + } + + value = props3d.asc_getPerspective(); + if ( (this._state.Perspective===undefined || value===undefined)&&(this._state.Perspective!==value) || + Math.abs(this._state.Perspective-value)>0.001) { + this.spnPerspective.setMinValue((value!==null && value !== undefined) ? 0.1 : 0); + this.spnPerspective.setValue((value!==null && value !== undefined) ? value : 0, true); + this._state.Perspective = value; + } + this.spnPerspective.setDisabled(this._locked || !!this._state.RightAngle); + this.btnNarrow.setDisabled(this._locked || !!this._state.RightAngle); + this.btnWiden.setDisabled(this._locked || !!this._state.RightAngle); + + value = props3d.asc_getDepth(); + if ( Math.abs(this._state.Depth-value)>0.001 || + (this._state.Depth===undefined || value===undefined)&&(this._state.Depth!==value)) { + this.spn3DDepth.setValue((value!==null && value !== undefined) ? value : '', true); + this._state.Depth = value; + } + + value = props3d.asc_getHeight(); + if ( Math.abs(this._state.Height3d-value)>0.001 || + (this._state.Height3d===undefined || this._state.Height3d===null || value===null)&&(this._state.Height3d!==value)) { + (value!==null) && this.spn3DHeight.setValue(value, true); + this.chAutoscale.setValue(value===null, true); + this._state.Height3d = value; + } + this.spn3DHeight.setDisabled(this._locked || value===null); + } } }, @@ -278,6 +330,210 @@ define([ this.lockedControls.push(this.btnEditData); this.btnEditData.on('click', _.bind(this.setEditData, this)); + // 3d rotation + this.spnX = new Common.UI.MetricSpinner({ + el: $('#chart-spin-x'), + step: 10, + width: 57, + defaultUnit : "°", + value: '20 °', + maxValue: 359.9, + minValue: 0, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spnX); + this.spnX.on('change', _.bind(this.onXRotation, this)); + this.spnX.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + + this.btnLeft = new Common.UI.Button({ + parentEl: $('#chart-btn-x-left', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-270', + hint: this.textLeft, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnLeft); + this.btnLeft.on('click', _.bind(function() { + this.spnX.setValue(this.spnX.getNumberValue() - 10); + }, this)); + + this.btnRight = new Common.UI.Button({ + parentEl: $('#chart-btn-x-right', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-90', + hint: this.textRight, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnRight); + this.btnRight.on('click', _.bind(function() { + this.spnX.setValue(this.spnX.getNumberValue() + 10); + }, this)); + + this.spnY = new Common.UI.MetricSpinner({ + el: $('#chart-spin-y'), + step: 10, + width: 57, + defaultUnit : "°", + value: '15 °', + maxValue: 90, + minValue: -90, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spnY); + this.spnY.on('change', _.bind(this.onYRotation, this)); + this.spnY.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + + this.btnUp = new Common.UI.Button({ + parentEl: $('#chart-btn-y-up', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-y-clockwise', + hint: this.textUp, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnUp); + this.btnUp.on('click', _.bind(function() { + this.spnY.setValue(this.spnY.getNumberValue() - 10); + }, this)); + + this.btnDown= new Common.UI.Button({ + parentEl: $('#chart-btn-y-down', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-y-counterclockwise', + hint: this.textDown, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnDown); + this.btnDown.on('click', _.bind(function() { + this.spnY.setValue(this.spnY.getNumberValue() + 10); + }, this)); + + this.spnPerspective = new Common.UI.MetricSpinner({ + el: $('#chart-spin-persp'), + step: 5, + width: 57, + defaultUnit : "°", + value: '0 °', + maxValue: 100, + minValue: 0.1, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spnPerspective); + this.spnPerspective.on('change', _.bind(this.onPerspective, this)); + this.spnPerspective.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + + this.btnNarrow = new Common.UI.Button({ + parentEl: $('#chart-btn-narrow', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-up', + hint: this.textNarrow, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnNarrow); + this.btnNarrow.on('click', _.bind(function() { + this.spnPerspective.setValue(this.spnPerspective.getNumberValue() - 5); + }, this)); + + this.btnWiden= new Common.UI.Button({ + parentEl: $('#chart-btn-widen', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-down', + hint: this.textWiden, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnWiden); + this.btnWiden.on('click', _.bind(function() { + this.spnPerspective.setValue(this.spnPerspective.getNumberValue() + 5); + }, this)); + + this.chRightAngle = new Common.UI.CheckBox({ + el: $('#chart-checkbox-right-angle'), + labelText: this.textRightAngle + }); + this.lockedControls.push(this.chRightAngle); + this.chRightAngle.on('change', _.bind(function(field, newValue, oldValue, eOpts) { + if (this.api){ + if (this._noApply) return; + + if (this.chartProps) { + var props = new Asc.asc_CImgProperty(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setRightAngleAxes(field.getValue()=='checked'); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ImgApply(props); + } + } + } + }, this)); + + this.chAutoscale = new Common.UI.CheckBox({ + el: $('#chart-checkbox-autoscale'), + labelText: this.textAutoscale + }); + this.lockedControls.push(this.chAutoscale); + this.chAutoscale.on('change', _.bind(function(field, newValue, oldValue, eOpts) { + if (this.api){ + if (this.chartProps) { + var props = new Asc.asc_CImgProperty(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setHeight(field.getValue()=='checked' ? null : this.spn3DHeight.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ImgApply(props); + } + } + } + }, this)); + + this.spn3DDepth = new Common.UI.MetricSpinner({ + el: $('#chart-spin-3d-depth'), + step: 10, + width: 70, + defaultUnit : "%", + value: '0 %', + maxValue: 2000, + minValue: 0, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spn3DDepth); + this.spn3DDepth.on('change', _.bind(this.on3DDepth, this)); + this.spn3DDepth.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + + this.spn3DHeight = new Common.UI.MetricSpinner({ + el: $('#chart-spin-3d-height'), + step: 10, + width: 70, + defaultUnit : "%", + value: '50 %', + maxValue: 500, + minValue: 5, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spn3DHeight); + this.spn3DHeight.on('change', _.bind(this.on3DHeight, this)); + this.spn3DHeight.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + + this.linkDefRotation = $('#chart-def-rotate-link'); + $(this.el).on('click', '#chart-def-rotate-link', _.bind(this.onDefRotation, this)); + this.linkAdvanced = $('#chart-advanced-link'); $(this.el).on('click', '#chart-advanced-link', _.bind(this.openAdvancedSettings, this)); }, @@ -518,6 +774,101 @@ define([ type==Asc.c_oAscChartTypeSettings.comboAreaBar || type==Asc.c_oAscChartTypeSettings.comboCustom); }, + ShowHideElem: function(is3D) { + this.Chart3DContainer.toggleClass('settings-hidden', !is3D); + }, + + onXRotation: function(field, newValue, oldValue, eOpts){ + if (this._noApply) return; + + if (this.chartProps) { + var props = new Asc.asc_CImgProperty(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setRotX(field.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ImgApply(props); + } + } + }, + + onYRotation: function(field, newValue, oldValue, eOpts){ + if (this._noApply) return; + + if (this.chartProps) { + var props = new Asc.asc_CImgProperty(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setRotY(field.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ImgApply(props); + } + } + }, + + onPerspective: function(field, newValue, oldValue, eOpts){ + if (this._noApply) return; + + if (this.chartProps) { + var props = new Asc.asc_CImgProperty(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setPerspective(field.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ImgApply(props); + } + } + }, + + on3DDepth: function(field, newValue, oldValue, eOpts){ + if (this._noApply) return; + + if (this.chartProps) { + var props = new Asc.asc_CImgProperty(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setDepth(field.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ImgApply(props); + } + } + }, + + on3DHeight: function(field, newValue, oldValue, eOpts){ + if (this._noApply) return; + + if (this.chartProps) { + var props = new Asc.asc_CImgProperty(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setHeight(field.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ImgApply(props); + } + } + }, + + onDefRotation: function() { + if (this._noApply) return; + + if (this.chartProps) { + var props = new Asc.asc_CImgProperty(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setRotX(20); + oView3D.asc_setRotY(15); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ImgApply(props); + } + } + }, + setLocked: function (locked) { this._locked = locked; }, @@ -548,7 +899,22 @@ define([ txtInFront: 'In front', textEditData: 'Edit Data', textChartType: 'Change Chart Type', - textStyle: 'Style' + textStyle: 'Style', + text3dRotation: '3D Rotation', + textX: 'X rotation', + textY: 'Y rotation', + textPerspective: 'Perspective', + text3dDepth: 'Depth (% of base)', + text3dHeight: 'Height (% of base)', + textLeft: 'Left', + textRight: 'Right', + textUp: 'Up', + textDown: 'Down', + textNarrow: 'Narrow field of view', + textWiden: 'Widen field of view', + textRightAngle: 'Right Angle Axes', + textAutoscale: 'Autoscale', + textDefault: 'Default Rotation' }, DE.Views.ChartSettings || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/DocProtection.js b/apps/documenteditor/main/app/view/DocProtection.js new file mode 100644 index 000000000..757cd7912 --- /dev/null +++ b/apps/documenteditor/main/app/view/DocProtection.js @@ -0,0 +1,147 @@ +/* + * + * (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 + * + */ + +/** + * DocProtection.js + * + * Created by Julia Radzhabova on 21.09.2022 + * Copyright (c) 2022 Ascensio System SIA. All rights reserved. + * + */ +define([ + 'common/main/lib/util/utils', + 'common/main/lib/component/BaseView', + 'common/main/lib/component/Layout', + 'common/main/lib/component/Window' +], function (template) { + 'use strict'; + + DE.Views.DocProtection = Common.UI.BaseView.extend(_.extend((function(){ + var template = + '
' + + '' + + '
'; + + function setEvents() { + var me = this; + + this.btnProtectDoc.on('click', function (btn, e) { + me.fireEvent('protect:document', [btn.pressed]); + }); + me._isSetEvents = true; + } + + return { + + options: {}, + + initialize: function (options) { + Common.UI.BaseView.prototype.initialize.call(this, options); + + this.appConfig = options.mode; + + var _set = Common.enumLock; + this.lockedControls = []; + this._state = {disabled: false, currentProtectHint: this.hintProtectDoc }; + + this.btnProtectDoc = new Common.UI.Button({ + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon restrict-editing', + enableToggle: true, + caption: this.txtProtectDoc, + lock : [_set.lostConnect, _set.coAuth, _set.previewReviewMode, _set.viewFormMode, _set.protectLock], + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.btnProtectDoc); + + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); + }, + + render: function (el) { + return this; + }, + + onAppReady: function (config) { + var me = this; + (new Promise(function (accept, reject) { + accept(); + })).then(function(){ + me.btnProtectDoc.updateHint(me._state.currentProtectHint, true); + setEvents.call(me); + }); + }, + + getPanel: function () { + this.$el = $(_.template(template)( {} )); + + this.btnProtectDoc.render(this.$el.find('#slot-btn-protect-doc')); + return this.$el; + }, + + getButtons: function(type) { + if (type===undefined) + return this.lockedControls; + return []; + }, + + show: function () { + Common.UI.BaseView.prototype.show.call(this); + this.fireEvent('show', this); + }, + + updateProtectionTips: function(type) { + var str = this.txtProtectDoc; + if (type === Asc.c_oAscEDocProtect.ReadOnly) { + str = this.txtDocProtectedView; + } else if (type === Asc.c_oAscEDocProtect.Comments) { + str = this.txtDocProtectedComment; + } else if (type === Asc.c_oAscEDocProtect.Forms) { + str = this.txtDocProtectedForms; + } else if (type === Asc.c_oAscEDocProtect.TrackedChanges){ // none or tracked changes + str = this.txtDocProtectedTrack; + } + this.btnProtectDoc.updateHint(str, true); + this._state.currentProtectHint = str; + }, + txtProtectDoc: 'Protect Document', + txtDocProtectedView: 'Document is protected.
You may only view this document.', + txtDocProtectedTrack: 'Document is protected.
You may edit this document, but all changes will be tracked.', + txtDocProtectedComment: 'Document is protected.
You may only insert comments to this document.', + txtDocProtectedForms: 'Document is protected.
You may only fill in forms in this document.', + hintProtectDoc: 'Protect document', + txtDocUnlockDescription: 'Enter a password to unprotect document' + } + }()), DE.Views.DocProtection || {})); +}); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 0f77874c4..06d162fb0 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -76,6 +76,12 @@ define([ this._currentParaObjDisabled = false; this._currLang = {}; this._isDisabled = false; + this._docProtection = { + isReadOnly: false, + isReviewOnly: false, + isFormsOnly: false, + isCommentsOnly: false + }; }, render: function () { @@ -169,7 +175,7 @@ define([ } me.menuViewUndo.setVisible(me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled); - me.menuViewUndo.setDisabled(!me.api.asc_getCanUndo()); + me.menuViewUndo.setDisabled(!me.api.asc_getCanUndo() || me._docProtection.isReadOnly); me.menuViewCopySeparator.setVisible(isInSign); var isRequested = (signProps) ? signProps.asc_getRequested() : false; @@ -187,15 +193,15 @@ define([ } me.menuViewAddComment.setVisible(canComment); - me.menuViewAddComment.setDisabled(value.paraProps && value.paraProps.locked === true); + me.menuViewAddComment.setDisabled(value.paraProps && value.paraProps.locked === true || me._docProtection.isReadOnly || me._docProtection.isFormsOnly); var disabled = value.paraProps && value.paraProps.locked === true; var cancopy = me.api && me.api.can_CopyCut(); me.menuViewCopy.setDisabled(!cancopy); me.menuViewCut.setVisible(me._fillFormMode && canEditControl); - me.menuViewCut.setDisabled(disabled || !cancopy); + me.menuViewCut.setDisabled(disabled || !cancopy || me._docProtection.isReadOnly || me._docProtection.isCommentsOnly); me.menuViewPaste.setVisible(me._fillFormMode && canEditControl); - me.menuViewPaste.setDisabled(disabled); + me.menuViewPaste.setDisabled(disabled || me._docProtection.isReadOnly || me._docProtection.isCommentsOnly); me.menuViewPrint.setVisible(me.mode.canPrint && !me._fillFormMode); me.menuViewPrint.setDisabled(!cancopy); @@ -1143,6 +1149,11 @@ define([ caption : '--' }); + me.menuTableEquation = new Common.UI.MenuItem({ + caption : me.advancedEquationText, + menu : me.createEquationMenu('popuptableeqinput', 'tl-tr') + }); + me.menuTableSelectText = new Common.UI.MenuItem({ caption : me.selectText, menu : new Common.UI.Menu({ @@ -1388,6 +1399,15 @@ define([ me.clearEquationMenu(false, 10); menuEquationSeparatorInTable.setVisible(isEquation && eqlen>0); + me.menuTableEquation.setVisible(isEquation); + me.menuTableEquation.setDisabled(disabled); + if (isEquation) { + var eq = me.api.asc_GetMathInputType(); + me.menuTableEquation.menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode); + me.menuTableEquation.menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX); + me.menuTableEquation.menu.items[8].setChecked(me.api.asc_IsInlineMath()); + } + var control_lock = (value.paraProps) ? (!value.paraProps.value.can_DeleteBlockContentControl() || !value.paraProps.value.can_EditBlockContentControl() || !value.paraProps.value.can_DeleteInlineContentControl() || !value.paraProps.value.can_EditInlineContentControl()) : false; var in_toc = me.api.asc_GetTableOfContentsPr(true), @@ -1467,7 +1487,8 @@ define([ me.menuTableRemoveForm, menuTableControl, me.menuTableTOC, - me.menuParagraphAdvancedInTable + me.menuParagraphAdvancedInTable, + me.menuTableEquation ] }).on('hide:after', function(menu, e, isFromInputControl) { if (me.suppressEditComplete) { @@ -1581,6 +1602,10 @@ define([ caption : me.advancedDropCapText }); + me.menuParagraphEquation = new Common.UI.MenuItem({ + caption : me.advancedEquationText, + menu : me.createEquationMenu('popupparaeqinput', 'tl-tr') + }); /** coauthoring begin **/ var menuCommentSeparatorPara = new Common.UI.MenuItem({ caption : '--' @@ -1951,6 +1976,15 @@ define([ me.menuEquationInsertCaption.setVisible(isEquation); menuEquationInsertCaptionSeparator.setVisible(isEquation); + me.menuParagraphEquation.setVisible(isEquation); + me.menuParagraphEquation.setDisabled(disabled); + if (isEquation) { + var eq = me.api.asc_GetMathInputType(); + me.menuParagraphEquation.menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode); + me.menuParagraphEquation.menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX); + me.menuParagraphEquation.menu.items[8].setChecked(me.api.asc_IsInlineMath()); + } + var frame_pr = value.paraProps.value.get_FramePr(); me.menuFrameAdvanced.setVisible(frame_pr !== undefined); me.menuDropCapAdvanced.setVisible(frame_pr !== undefined); @@ -2051,6 +2085,7 @@ define([ me.menuParagraphAdvanced, me.menuFrameAdvanced, me.menuDropCapAdvanced, + me.menuParagraphEquation, /** coauthoring begin **/ menuCommentSeparatorPara, me.menuAddCommentPara, @@ -2828,6 +2863,67 @@ define([ } }, + createEquationMenu: function(toggleGroup, menuAlign) { + return new Common.UI.Menu({ + cls: 'ppm-toolbar shifted-right', + menuAlign: menuAlign, + items : [ + new Common.UI.MenuItem({ + caption : this.unicodeText, + iconCls : 'menu__icon unicode', + checkable : true, + checkmark : false, + checked : false, + toggleGroup : toggleGroup, + type : 'input', + value : Asc.c_oAscMathInputType.Unicode + }), + new Common.UI.MenuItem({ + caption : this.latexText, + iconCls : 'menu__icon latex', + checkable : true, + checkmark : false, + checked : false, + toggleGroup : toggleGroup, + type : 'input', + value : Asc.c_oAscMathInputType.LaTeX + }), + { caption : '--' }, + new Common.UI.MenuItem({ + caption : this.currProfText, + iconCls : 'menu__icon professional-equation', + type : 'view', + value : {all: false, linear: false} + }), + new Common.UI.MenuItem({ + caption : this.currLinearText, + iconCls : 'menu__icon linear-equation', + type : 'view', + value : {all: false, linear: true} + }), + new Common.UI.MenuItem({ + caption : this.allProfText, + iconCls : 'menu__icon professional-equation', + type : 'view', + value : {all: true, linear: false} + }), + new Common.UI.MenuItem({ + caption : this.allLinearText, + iconCls : 'menu__icon linear-equation', + type : 'view', + value : {all: true, linear: true} + }), + { caption : '--' }, + new Common.UI.MenuItem({ + caption : this.eqToInlineText, + checkable : true, + checked : false, + type : 'mode' + }) + ] + }); + }, + focus: function() { var me = this; _.defer(function(){ me.cmpEl.focus(); }, 50); @@ -3071,7 +3167,15 @@ define([ txtWarnUrl: 'Clicking this link can be harmful to your device and data.
Are you sure you want to continue?', textEditPoints: 'Edit Points', textAccept: 'Accept Change', - textReject: 'Reject Change' + textReject: 'Reject Change', + advancedEquationText: 'Equation Settings', + unicodeText: 'Unicode', + latexText: 'LaTeX', + currProfText: 'Current - Professional', + currLinearText: 'Current - Linear', + allProfText: 'All - Professional', + allLinearText: 'All - Linear', + eqToInlineText: 'Change to Inline' }, DE.Views.DocumentHolder || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/FileMenu.js b/apps/documenteditor/main/app/view/FileMenu.js index 8bf3fdb57..2e38656d7 100644 --- a/apps/documenteditor/main/app/view/FileMenu.js +++ b/apps/documenteditor/main/app/view/FileMenu.js @@ -69,7 +69,7 @@ define([ if (item.options.action === 'help') { if ( panel.noHelpContents === true && navigator.onLine ) { this.fireEvent('item:click', [this, 'external-help', true]); - window.open(panel.urlHelpCenter, '_blank'); + !!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank'); return; } } @@ -87,6 +87,9 @@ define([ }, initialize: function () { + this._state = { + infoPreviewMode: false + }; }, render: function () { @@ -363,6 +366,7 @@ define([ 'info' : (new DE.Views.FileMenuPanels.DocumentInfo({menu:this})).render(this.$el.find('#panel-info')), 'rights' : (new DE.Views.FileMenuPanels.DocumentRights({menu:this})).render(this.$el.find('#panel-rights')) }; + this._state.infoPreviewMode && this.panels['info'].setPreviewMode(this._state.infoPreviewMode); } if (!this.mode) return; @@ -568,6 +572,7 @@ define([ options && options.protect && _btn_protect.setDisabled(disable); options && options.history && _btn_history.setDisabled(disable); + options && options.info && (this.panels ? this.panels['info'].setPreviewMode(disable) : this._state.infoPreviewMode = disable ); }, isVisible: function () { diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 23e81759b..fde5f54ef 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -399,6 +399,7 @@ define([ dataHintDirection: 'left', dataHintOffset: 'small' }); + (Common.Utils.isIE || Common.Utils.isMac && Common.Utils.isGecko) && this.chUseAltKey.$el.parent().parent().hide(); /** coauthoring begin **/ this.chLiveComment = new Common.UI.CheckBox({ @@ -994,7 +995,7 @@ define([ txtWorkspace: 'Workspace', txtHieroglyphs: 'Hieroglyphs', txtUseAltKey: 'Use Alt key to navigate the user interface using the keyboard', - txtUseOptionKey: 'Use Option key to navigate the user interface using the keyboard', + txtUseOptionKey: 'Use ⌘F6 to navigate the user interface using the keyboard', strShowComments: 'Show comments in text', strShowResolvedComments: 'Show resolved comments', txtFastTip: 'Real-time co-editing. All changes are saved automatically', @@ -1211,6 +1212,10 @@ define([ '
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+ +
+
+ +
+', '', '', + '', + '', + '', + '', '', '', '', @@ -1048,6 +1054,15 @@ define([ dataHintDirection: 'left', dataHintOffset: 'small' }).on('keydown:before', keyDownBefore); + this.inputTags = new Common.UI.InputField({ + el : $markup.findById('#id-info-tags'), + style : 'width: 200px;', + placeHolder : this.txtAddText, + validateOnBlur: false, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' + }).on('keydown:before', keyDownBefore); this.inputSubject = new Common.UI.InputField({ el : $markup.findById('#id-info-subject'), style : 'width: 200px;', @@ -1252,6 +1267,8 @@ define([ value = props.asc_getTitle(); this.inputTitle.setValue(value || ''); + value = props.asc_getKeywords(); + this.inputTags.setValue(value || ''); value = props.asc_getSubject(); this.inputSubject.setValue(value || ''); value = props.asc_getDescription(); @@ -1290,6 +1307,7 @@ define([ this.tblAuthor.find('.close').toggleClass('hidden', !mode.isEdit); if (!mode.isEdit) { this.inputTitle._input.attr('placeholder', ''); + this.inputTags._input.attr('placeholder', ''); this.inputSubject._input.attr('placeholder', ''); this.inputComment._input.attr('placeholder', ''); this.inputAuthor._input.attr('placeholder', ''); @@ -1313,6 +1331,7 @@ define([ SetDisabled: function() { var disable = !this.mode.isEdit || this._locked; this.inputTitle.setDisabled(disable); + this.inputTags.setDisabled(disable); this.inputSubject.setDisabled(disable); this.inputComment.setDisabled(disable); this.inputAuthor.setDisabled(disable); @@ -1324,6 +1343,7 @@ define([ applySettings: function() { if (this.coreProps && this.api) { this.coreProps.asc_putTitle(this.inputTitle.getValue()); + this.coreProps.asc_putKeywords(this.inputTags.getValue()); this.coreProps.asc_putSubject(this.inputSubject.getValue()); this.coreProps.asc_putDescription(this.inputComment.getValue()); this.coreProps.asc_putCreator(this.authors.join(';')); @@ -1338,6 +1358,7 @@ define([ txtAppName: 'Application', txtEditTime: 'Total Editing time', txtTitle: 'Title', + txtTags: 'Tags', txtSubject: 'Subject', txtComment: 'Comment', txtModifyDate: 'Last Modified', @@ -1491,7 +1512,14 @@ define([ this.menu = options.menu; this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; this.openUrl = null; - this.urlHelpCenter = '{{HELP_CENTER_WEB_PE}}'; + + if ( !Common.Utils.isIE ) { + if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_PE}}') ) { + const _url_obj = new URL('{{HELP_CENTER_WEB_PE}}'); + _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); + this.urlHelpCenter = _url_obj.toString(); + } + } this.en_data = [ {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Presentation Editor user interface", "headername": "Program Interface"}, diff --git a/apps/presentationeditor/main/app/view/GridSettings.js b/apps/presentationeditor/main/app/view/GridSettings.js new file mode 100644 index 000000000..c39cab567 --- /dev/null +++ b/apps/presentationeditor/main/app/view/GridSettings.js @@ -0,0 +1,181 @@ +/* + * + * (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 + * +*/ +/** + * GridSettings.js + * + * Created by Julia Radzhabova on 09/30/22 + * Copyright (c) 2022 Ascensio System SIA. All rights reserved. + * + */ + +define([ + 'common/main/lib/component/Window', + 'common/main/lib/component/MetricSpinner', + 'common/main/lib/component/ComboBox' +], function () { 'use strict'; + + PE.Views.GridSettings = Common.UI.Window.extend(_.extend({ + options: { + width: 214, + header: true, + style: 'min-width: 315px;', + cls: 'modal-dlg', + id: 'window-grid-settings', + buttons: ['ok', 'cancel'] + }, + + initialize : function(options) { + _.extend(this.options, { + title: this.textTitle + }, options || {}); + + this.template = [ + '
', + '
', + '', + '
', + '
', + '
', + '
', + '
' + ].join(''); + + this.options.tpl = _.template(this.template)(this.options); + + Common.UI.Window.prototype.initialize.call(this, this.options); + }, + + render: function() { + Common.UI.Window.prototype.render.call(this); + + var $window = this.getChild(); + var arr = Common.define.gridlineData.getGridlineData(Common.Utils.Metric.getCurrentMetric()); + this.arrSpacing = []; + for (var i = 0; i < arr.length; i++) { + this.arrSpacing.push({ + displayValue: arr[i].caption, + value: i, + spacing: arr[i].value + }); + } + this.arrSpacing.push({ displayValue: this.textCustom, value: -1 }); + + this.cmbGridSpacing = new Common.UI.ComboBox({ + el: $window.find('#grid-spacing-combo'), + cls: 'input-group-nr', + style: 'width: 100%;', + menuStyle: 'min-width: 86px;max-height: 185px;', + editable: false, + takeFocusOnClose: true, + data: this.arrSpacing + }); + this.cmbGridSpacing.on('selected', _.bind(function(combo, record) { + if (record.value<0) { + } else { + this.spnSpacing.setValue(record.spacing, true); + } + }, this)); + + var metric = Common.Utils.Metric.getCurrentMetric(); + this.spnSpacing = new Common.UI.MetricSpinner({ + el: $window.find('#grid-spacing-spin'), + step: metric === Common.Utils.Metric.c_MetricUnits.pt ? 1 : .01, + width: 86, + defaultUnit: Common.Utils.Metric.getCurrentMetricName(), + value: metric === Common.Utils.Metric.c_MetricUnits.inch ? "1 \"" : (metric === Common.Utils.Metric.c_MetricUnits.pt ? '36 pt' : '1 cm'), + maxValue: metric === Common.Utils.Metric.c_MetricUnits.inch ? 2 : (metric === Common.Utils.Metric.c_MetricUnits.pt ? 145 : 5.08), + minValue: metric === Common.Utils.Metric.c_MetricUnits.inch ? 0.04 : (metric === Common.Utils.Metric.c_MetricUnits.pt ? 3 : 0.1) + }); + this.spnSpacing.on('change', _.bind(function(field, newValue, oldValue, eOpts){ + var value = this.spnSpacing.getNumberValue(), + idx = -1; + for (var i=0; i=1 && Math.abs(item.spacing - value)<0.001) { + idx = i; + break; + } + } + this.cmbGridSpacing.setValue(idx); + }, this)); + + $window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); + }, + + getFocusedComponents: function() { + return [ this.cmbGridSpacing, this.spnSpacing ]; + }, + + getDefaultFocusableComponent: function () { + return this.cmbGridSpacing; + }, + + _handleInput: function(state) { + if (this.options.handler) { + this.options.handler.call(this, this, state); + } + + this.close(); + }, + + onBtnClick: function(event) { + this._handleInput(event.currentTarget.attributes['result'].value); + }, + + onPrimary: function() { + this._handleInput('ok'); + return false; + }, + + setSettings: function (value) { + value = Common.Utils.Metric.fnRecalcFromMM(value/36000); + var idx = -1; + for (var i=0; i=1 && Math.abs(item.spacing - value)<0.001) + idx = i; + } + this.cmbGridSpacing.setValue(idx, -1); + this.spnSpacing.setValue(value, true); + }, + + getSettings: function() { + return this.spnSpacing.getNumberValue(); + }, + + textTitle: 'Grid Settings', + textSpacing: 'Spacing', + textCm: 'cm', + textCustom: 'Custom' + }, PE.Views.GridSettings || {})) +}); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/LeftMenu.js b/apps/presentationeditor/main/app/view/LeftMenu.js index 98c6d9681..1a47d30d8 100644 --- a/apps/presentationeditor/main/app/view/LeftMenu.js +++ b/apps/presentationeditor/main/app/view/LeftMenu.js @@ -182,8 +182,9 @@ define([ if (!btn.pressed && this._state.pluginIsRunning) { this.$el.width(Common.localStorage.getItem('pe-mainmenu-width') || MENU_SCALE_PART); } else { - if (this.$el.width() > SCALE_MIN) { - Common.localStorage.setItem('pe-mainmenu-width',this.$el.width()); + var width = this.$el.width(); + if (width > SCALE_MIN) { + Common.localStorage.setItem('pe-mainmenu-width',width); this.$el.width(SCALE_MIN); } if (this._state.pluginIsRunning) // hide comments or chat panel when plugin is running @@ -195,7 +196,8 @@ define([ this.$el.width(Common.localStorage.getItem('pe-mainmenu-width') || MENU_SCALE_PART); } } else if (!this._state.pluginIsRunning){ - this.isVisible() && Common.localStorage.setItem('pe-mainmenu-width',this.$el.width()); + var width = this.$el.width(); + this.isVisible() && (width>SCALE_MIN) && Common.localStorage.setItem('pe-mainmenu-width',width); this.$el.width(SCALE_MIN); } this.onCoauthOptions(); diff --git a/apps/presentationeditor/main/app/view/TableSettings.js b/apps/presentationeditor/main/app/view/TableSettings.js index ca9a5424b..0e12a775f 100644 --- a/apps/presentationeditor/main/app/view/TableSettings.js +++ b/apps/presentationeditor/main/app/view/TableSettings.js @@ -694,6 +694,14 @@ define([ this._state.beginPreviewStyles = true; this._state.currentStyleFound = false; this._state.previewStylesCount = count; + this._state.groups = { + 'menu-table-group-custom': {id: 'menu-table-group-custom', caption: this.txtGroupTable_Custom, index: 0, templateCount: 0}, + 'menu-table-group-optimal': {id: 'menu-table-group-optimal', caption: this.txtGroupTable_Optimal, index: 1, templateCount: 0}, + 'menu-table-group-light': {id: 'menu-table-group-light', caption: this.txtGroupTable_Light, index: 2, templateCount: 0}, + 'menu-table-group-medium': {id: 'menu-table-group-medium', caption: this.txtGroupTable_Medium, index: 3, templateCount: 0}, + 'menu-table-group-dark': {id: 'menu-table-group-dark', caption: this.txtGroupTable_Dark, index: 4, templateCount: 0}, + 'menu-table-group-no-name': {id: 'menu-table-group-no-name', caption: ' ', index: 5, templateCount: 0}, + }; }, onEndTableStylesPreview: function(){ @@ -707,28 +715,68 @@ define([ onAddTableStylesPreview: function(Templates){ var self = this; - var arr = []; + _.each(Templates, function(template){ var tip = template.asc_getDisplayName(); + var groupItem = ''; + if (template.asc_getType()==0) { + var arr = tip.split(' '); + + if(new RegExp('No Style|Themed Style', 'i').test(tip)){ + groupItem = 'menu-table-group-optimal'; + } + else{ + if(arr[0]){ + groupItem = 'menu-table-group-' + arr[0].toLowerCase(); + } + if(self._state.groups.hasOwnProperty(groupItem) == false) { + groupItem = 'menu-table-group-no-name'; + } + } + ['No Style', 'No Grid', 'Table Grid', 'Themed Style', 'Light Style', 'Medium Style', 'Dark Style', 'Accent'].forEach(function(item){ var str = 'txtTable_' + item.replace(' ', ''); if (self[str]) tip = tip.replace(new RegExp(item, 'g'), self[str]); }); } - arr.push({ + else { + groupItem = 'menu-table-group-custom' + } + + var templateObj = { imageUrl: template.asc_getImage(), id : Common.UI.getId(), templateId: template.asc_getId(), + group : groupItem, tip : tip - }); + }; + var templateIndex = 0; + + for(var group in self._state.groups) { + if(self._state.groups[group].index <= self._state.groups[groupItem].index) { + templateIndex += self._state.groups[group].templateCount; + } + } + + if (self._state.beginPreviewStyles) { + self._state.beginPreviewStyles = false; + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.groups.reset(self._state.groups[groupItem]); + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.reset(templateObj); + self.mnuTableTemplatePicker.groups.comparator = function(item) { + return item.get('index'); + }; + } + else { + if(self._state.groups[groupItem].templateCount == 0) { + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.groups.add(self._state.groups[groupItem]); + } + self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.add(templateObj, {at: templateIndex}); + } + + self._state.groups[groupItem].templateCount += 1; }); - if (this._state.beginPreviewStyles) { - this._state.beginPreviewStyles = false; - self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.reset(arr); - } else - self.mnuTableTemplatePicker && self.mnuTableTemplatePicker.store.add(arr); !this._state.currentStyleFound && this.selectCurrentTableStyle(); }, @@ -878,7 +926,12 @@ define([ txtTable_LightStyle: 'Light Style', txtTable_MediumStyle: 'Medium Style', txtTable_DarkStyle: 'Dark Style', - txtTable_Accent: 'Accent' + txtTable_Accent: 'Accent', + txtGroupTable_Custom: 'Custom', + txtGroupTable_Optimal: 'Best Match for Document', + txtGroupTable_Light: 'Light', + txtGroupTable_Medium: 'Medium', + txtGroupTable_Dark: 'Dark', }, PE.Views.TableSettings || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index 66cb3de83..4aa5eac3d 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -212,7 +212,7 @@ define([ lock: [_set.slideDeleted, _set.noSlides, _set.cantPrint, _set.disableOnStart], signals: ['disabled'], dataHint: '1', - dataHintDirection: 'top', + dataHintDirection: 'bottom', dataHintTitle: 'P' }); me.slideOnlyControls.push(me.btnPrint); @@ -224,7 +224,7 @@ define([ lock: [_set.lostConnect], signals: ['disabled'], dataHint: '1', - dataHintDirection: 'bottom', + dataHintDirection: 'top', dataHintTitle: 'S' }); me.btnCollabChanges = me.btnSave; @@ -764,12 +764,25 @@ define([ }); me.slideOnlyControls.push(me.btnInsertChart); + this.btnInsertSmartArt = new Common.UI.Button({ + id: 'tlbtn-insertsmartart', + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon smart-art', + lock: [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart], + caption: me.capBtnInsSmartArt, + menu: true, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + me.slideOnlyControls.push(this.btnInsertSmartArt); + me.btnInsertEquation = new Common.UI.Button({ id: 'tlbtn-insertequation', cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-insertequation', caption: me.capInsertEquation, - lock: [_set.slideDeleted, _set.lostConnect, _set.noSlides, _set.disableOnStart], + lock: [_set.slideDeleted, _set.paragraphLock, _set.lostConnect, _set.noSlides, _set.disableOnStart], split: true, menu: new Common.UI.Menu({cls: 'menu-shapes'}), dataHint: '1', @@ -1058,12 +1071,13 @@ define([ itemWidth: 88, enableKeyEvents: true, itemHeight: 40, - style: 'min-width:130px;', + style: 'min-width:123px;', lock: [_set.themeLock, _set.lostConnect, _set.noSlides], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: '-16, -4', delayRenderTips: true, + autoWidth: true, itemTemplate: _.template([ '
', '
' + 'background-image: url(<%= imageUrl %>);' + '<% } %> background-position: 0 -<%= offsety %>px;">
', @@ -1132,7 +1146,7 @@ define([ this.btnBold, this.btnItalic, this.btnUnderline, this.btnStrikeout, this.btnSuperscript, this.btnChangeCase, this.btnHighlightColor, this.btnSubscript, this.btnFontColor, this.btnClearStyle, this.btnCopyStyle, this.btnMarkers, this.btnNumbers, this.btnDecLeftOffset, this.btnIncLeftOffset, this.btnLineSpace, this.btnHorizontalAlign, this.btnColumns, - this.btnVerticalAlign, this.btnShapeArrange, this.btnShapeAlign, this.btnInsertTable, this.btnInsertChart, + this.btnVerticalAlign, this.btnShapeArrange, this.btnShapeAlign, this.btnInsertTable, this.btnInsertChart, this.btnInsertSmartArt, this.btnInsertEquation, this.btnInsertSymbol, this.btnInsertHyperlink, this.btnColorSchemas, this.btnSlideSize, this.listTheme, this.mnuShowSettings ]; @@ -1259,6 +1273,7 @@ define([ _injectComponent('#slot-btn-columns', this.btnColumns); _injectComponent('#slot-btn-arrange-shape', this.btnShapeArrange); _injectComponent('#slot-btn-align-shape', this.btnShapeAlign); + _injectComponent('#slot-btn-inssmartart', this.btnInsertSmartArt); _injectComponent('#slot-btn-insertequation', this.btnInsertEquation); _injectComponent('#slot-btn-inssymbol', this.btnInsertSymbol); _injectComponent('#slot-btn-insertlink', this.btnInsertHyperlink); @@ -1282,7 +1297,7 @@ define([ this.btnsInsertImage = Common.Utils.injectButtons($host.find('.slot-insertimg'), 'tlbtn-insertimage-', 'toolbar__icon btn-insertimage', this.capInsertImage, [Common.enumLock.slideDeleted, Common.enumLock.lostConnect, Common.enumLock.noSlides, Common.enumLock.disableOnStart], false, true, undefined, '1', 'bottom', 'small'); this.btnsInsertText = Common.Utils.injectButtons($host.find('.slot-instext'), 'tlbtn-inserttext-', 'toolbar__icon btn-text', this.capInsertText, - [Common.enumLock.slideDeleted, Common.enumLock.lostConnect, Common.enumLock.noSlides, Common.enumLock.disableOnStart], false, false, true, '1', 'bottom', 'small'); + [Common.enumLock.slideDeleted, Common.enumLock.lostConnect, Common.enumLock.noSlides, Common.enumLock.disableOnStart], true, false, true, '1', 'bottom', 'small'); this.btnsInsertShape = Common.Utils.injectButtons($host.find('.slot-insertshape'), 'tlbtn-insertshape-', 'toolbar__icon btn-insertshape', this.capInsertShape, [Common.enumLock.slideDeleted, Common.enumLock.lostConnect, Common.enumLock.noSlides, Common.enumLock.disableOnStart], false, true, true, '1', 'bottom', 'small'); this.btnsAddSlide = Common.Utils.injectButtons($host.find('.slot-addslide'), 'tlbtn-addslide-', 'toolbar__icon btn-addslide', this.capAddSlide, @@ -1317,10 +1332,37 @@ define([ btn.menu.items[2].setVisible(config.canRequestInsertImage || config.fileChoiceUrl && config.fileChoiceUrl.indexOf("{documentType}")>-1); }); - me.btnsInsertText.forEach(function (btn) { - btn.updateHint(me.tipInsertText); - btn.on('click', function (btn, e) { - me.fireEvent('insert:text', [btn.pressed ? 'begin' : 'end']); + me.btnsInsertText.forEach(function (button) { + button.updateHint([me.tipInsertHorizontalText, me.tipInsertText]); + button.options.textboxType = 'textRect'; + button.setMenu(new Common.UI.Menu({ + items: [ + { + caption: me.tipInsertHorizontalText, + checkable: true, + checkmark: false, + iconCls : 'menu__icon btn-text', + toggleGroup: 'textbox', + value: 'textRect', + iconClsForMainBtn: 'btn-text' + }, + { + caption: me.tipInsertVerticalText, + checkable: true, + checkmark: false, + iconCls : 'menu__icon btn-text-vertical', + toggleGroup: 'textbox', + value: 'textRectVertical', + iconClsForMainBtn: 'btn-text-vertical' + }, + ] + })); + button.on('click', function (btn, e) { + me.fireEvent('insert:text-btn', [btn, e]); + }); + button.menu.on('item:click', function(btn, e) { + button.toggle(true); + me.fireEvent('insert:text-menu', [button, e]); }); }); @@ -1393,6 +1435,7 @@ define([ this.btnColumns.updateHint(this.tipColumns); this.btnInsertTable.updateHint(this.tipInsertTable); this.btnInsertChart.updateHint(this.tipInsertChart); + this.btnInsertSmartArt.updateHint(this.tipInsertSmartArt); this.btnInsertEquation.updateHint(this.tipInsertEquation); this.btnInsertSymbol.updateHint(this.tipInsertSymbol); this.btnInsertHyperlink.updateHint(this.tipInsertHyperlink + Common.Utils.String.platformKey('Ctrl+K')); @@ -1471,6 +1514,60 @@ define([ }; this.btnInsertChart.menu.on('show:before', onShowBefore); + this.btnInsertSmartArt.setMenu(new Common.UI.Menu({ + cls: 'shifted-right', + items: [] + })); + + var smartArtData = Common.define.smartArt.getSmartArtData(); + smartArtData.forEach(function (item, index) { + var length = item.items.length, + width = 399; + if (length < 5) { + width = length * (70 + 8) + 9; // 4px margin + 4px margin + } + me.btnInsertSmartArt.menu.addItem({ + caption: item.caption, + value: item.sectionId, + itemId: item.id, + iconCls: item.icon ? 'menu__icon ' + item.icon : undefined, + menu: new Common.UI.Menu({ + items: [ + {template: _.template('')} + ], + menuAlign: 'tl-tr', + })}); + }); + var onShowBeforeSmartArt = function (menu) { // + <% if(typeof imageUrl === "undefined" || imageUrl===null || imageUrl==="") { %> style="visibility: hidden;" <% } %>/>', + me.btnInsertSmartArt.menu.items.forEach(function (item, index) { + item.$el.one('mouseenter', function () { + me.fireEvent('generate:smartart', [item.value]); + item.$el.mouseenter(); + }); + item.menuPicker = new Common.UI.DataView({ + el: $('#' + item.options.itemId), + parentMenu: me.btnInsertSmartArt.menu.items[index].menu, + itemTemplate: _.template([ + '
', + '', + '
' + ].join('')), + store: new Common.UI.DataViewStore(), + delayRenderTips: true, + scrollAlwaysVisible: true, + showLast: false + }); + item.menuPicker.on('item:click', function(picker, item, record, e) { + if (record) { + me.fireEvent('insert:smartart', [record.get('value')]); + } + Common.NotificationCenter.trigger('edit:complete', me); + }); + }); + menu.off('show:before', onShowBeforeSmartArt); + }; + this.btnInsertSmartArt.menu.on('show:before', onShowBeforeSmartArt); + var onShowBeforeTextArt = function (menu) { var collection = PE.getCollection('Common.Collections.TextArt'); if (collection.length<1) @@ -1620,8 +1717,10 @@ define([ this.synchTooltip.hide(); if (!mode.enableDownload) this.lockToolbar(Common.enumLock.cantPrint, true, {array: [this.btnPrint]}); - } else + } else { this.lockToolbar(Common.enumLock.cantPrint, !mode.canPrint, {array: [this.btnPrint]}); + !mode.canPrint && this.btnPrint.hide(); + } this.mode = mode; }, @@ -1933,6 +2032,8 @@ define([ mniImageFromUrl: 'Image from url', mniCustomTable: 'Insert Custom Table', tipInsertHyperlink: 'Add Hyperlink', + tipInsertHorizontalText: 'Insert horizontal text box', + tipInsertVerticalText: 'Insert vertical text box', tipInsertText: 'Insert Text', tipInsertTextArt: 'Insert Text Art', tipInsertShape: 'Insert Autoshape', @@ -1989,6 +2090,7 @@ define([ textShowCurrent: 'Show from Current slide', textShowSettings: 'Show Settings', tipInsertEquation: 'Insert Equation', + tipInsertSmartArt: 'Insert SmartArt', tipChangeChart: 'Change Chart Type', capInsertText: 'Text', capInsertTextArt: 'Text Art', @@ -2021,6 +2123,7 @@ define([ textListSettings: 'List Settings', capBtnAddComment: 'Add Comment', capBtnInsSymbol: 'Symbol', + capBtnInsSmartArt: 'SmartArt', tipInsertSymbol: 'Insert symbol', capInsertAudio: 'Audio', capInsertVideo: 'Video', diff --git a/apps/presentationeditor/main/app/view/Transitions.js b/apps/presentationeditor/main/app/view/Transitions.js index 0823470f9..23232d924 100644 --- a/apps/presentationeditor/main/app/view/Transitions.js +++ b/apps/presentationeditor/main/app/view/Transitions.js @@ -142,7 +142,7 @@ define([ cls: 'combo-transitions', itemWidth: itemWidth, itemHeight: itemHeight, - style: 'min-width:110px;', + style: 'min-width:108px;', itemTemplate: _.template([ '
', '
', diff --git a/apps/presentationeditor/main/app/view/ViewTab.js b/apps/presentationeditor/main/app/view/ViewTab.js index 5fad142cf..bd8e8e834 100644 --- a/apps/presentationeditor/main/app/view/ViewTab.js +++ b/apps/presentationeditor/main/app/view/ViewTab.js @@ -77,6 +77,10 @@ define([ '' + '
' + '
' + + '
' + + '' + + '' + + '
' + '
' + '
' + '
' + @@ -86,6 +90,14 @@ define([ '' + '
' + '
' + + '
' + + '
' + + '' + + '
' + + '
' + + '' + + '
' + + '
' + ''; return { options: {}, @@ -105,13 +117,62 @@ define([ me.fireEvent('statusbar:hide', [me.chStatusbar, state !== 'checked']); }, me)); me.chRulers && me.chRulers.on('change', _.bind(function (checkbox, state) { - me.fireEvent('rulers:change', [me.chRulers, state === 'checked']); + me.fireEvent('rulers:change', [state === 'checked']); }, me)); me.chNotes && me.chNotes.on('change', _.bind(function (checkbox, state) { me.fireEvent('notes:change', [me.chNotes, state === 'checked']); }, me)); - me.cmbZoom.on('combo:focusin', _.bind(this.onComboOpen, this, false)); - me.cmbZoom.on('show:after', _.bind(this.onComboOpen, this, true)); + me.cmbZoom.on('selected', function (combo, record) { + me.fireEvent('zoom:selected', [combo, record]); + }).on('changed:before', function (combo, record) { + me.fireEvent('zoom:changedbefore', [true, combo, record]); + }).on('changed:after', function (combo, record) { + me.fireEvent('zoom:changedafter', [false, combo, record]); + }).on('combo:blur', function () { + me.fireEvent('editcomplete', me); + }).on('combo:focusin', _.bind(this.onComboOpen, this, false)) + .on('show:after', _.bind(this.onComboOpen, this, true)); + + me.btnGuides.on('toggle', _.bind(function(btn, state) { + me.fireEvent('guides:show', [state]); + }, me)); + me.btnGuides.menu.on('item:click', _.bind(function(menu, item) { + if (item.value === 'add-vert' || item.value === 'add-hor') + me.fireEvent('guides:add', [item.value]); + else if (item.value === 'clear') + me.fireEvent('guides:clear'); + else if (item.value === 'smart') + me.fireEvent('guides:smart', [item.isChecked()]); + else + me.fireEvent('guides:show', [item.isChecked()]); + }, me)); + me.btnGuides.menu.on('show:after', _.bind(function(btn, state) { + me.fireEvent('guides:aftershow'); + }, me)); + + me.btnGridlines.on('toggle', _.bind(function(btn, state) { + me.fireEvent('gridlines:show', [state]); + }, me)); + me.btnGridlines.menu.on('item:click', _.bind(function(menu, item) { + if (item.value === 'custom') + me.fireEvent('gridlines:custom'); + else if (item.value === 'snap') + me.fireEvent('gridlines:snap', [item.isChecked()]); + else if (item.value === 'show') + me.fireEvent('gridlines:show', [item.isChecked()]); + else + me.fireEvent('gridlines:spacing', [item.value]); + + }, me)); + me.btnGridlines.menu.on('show:after', _.bind(function(btn, state) { + me.fireEvent('gridlines:aftershow'); + }, me)); + me.chLeftMenu.on('change', _.bind(function (checkbox, state) { + me.fireEvent('leftmenu:hide', [me.chLeftMenu, state === 'checked']); + }, me)); + me.chRightMenu.on('change', _.bind(function (checkbox, state) { + me.fireEvent('rightmenu:hide', [me.chRightMenu, state === 'checked']); + }, me)); }, initialize: function (options) { @@ -226,6 +287,56 @@ define([ }); this.lockedControls.push(this.chNotes); + this.btnGuides = new Common.UI.Button({ + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon guides', + caption: this.textGuides, + lock: [_set.disableOnStart], + enableToggle: true, + allowDepress: true, + pressed: Common.localStorage.getBool("pe-settings-showguides"), + split: true, + menu: true, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.btnGuides); + + this.btnGridlines = new Common.UI.Button({ + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon gridlines', + caption: this.textGridlines, + lock: [_set.disableOnStart], + enableToggle: true, + allowDepress: true, + pressed: Common.localStorage.getBool("pe-settings-showgrid"), + split: true, + menu: true, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.btnGridlines); + + this.chRightMenu = new Common.UI.CheckBox({ + lock: [_set.disableOnStart], + labelText: this.textRightMenu, + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chRightMenu); + + this.chLeftMenu = new Common.UI.CheckBox({ + lock: [_set.disableOnStart], + labelText: this.textLeftMenu, + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chLeftMenu); + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, @@ -248,13 +359,124 @@ define([ this.chToolbar.render($host.find('#slot-chk-toolbar')); this.chRulers.render($host.find('#slot-chk-rulers')); this.chNotes.render($host.find('#slot-chk-notes')); + this.btnGuides.render($host.find('#slot-btn-guides')); + this.btnGridlines.render($host.find('#slot-btn-gridlines')); + this.chLeftMenu.render($host.find('#slot-chk-leftmenu')); + this.chRightMenu.render($host.find('#slot-chk-rightmenu')); return this.$el; }, - onAppReady: function () { - this.btnFitToSlide.updateHint(this.tipFitToSlide); - this.btnFitToWidth.updateHint(this.tipFitToWidth); - this.btnInterfaceTheme.updateHint(this.tipInterfaceTheme); + onAppReady: function (config) { + var me = this; + (new Promise(function (accept, reject) { + accept(); + })).then(function () { + me.btnFitToSlide.updateHint(me.tipFitToSlide); + me.btnFitToWidth.updateHint(me.tipFitToWidth); + me.btnInterfaceTheme.updateHint(me.tipInterfaceTheme); + me.btnGuides.updateHint(me.tipGuides); + me.btnGridlines.updateHint(me.tipGridlines); + + me.btnGuides.setMenu( new Common.UI.Menu({ + cls: 'shifted-right', + items: [ + { caption: me.textShowGuides, value: 'show', checkable: true }, + { caption: '--'}, + { caption: me.textAddVGuides, iconCls: 'menu__icon vertical-guide', value: 'add-vert' }, + { caption: me.textAddHGuides, iconCls: 'menu__icon horizontal-guide', value: 'add-hor' }, + { caption: '--'}, + { caption: me.textSmartGuides, value: 'smart', checkable: true }, + { caption: me.textClearGuides, value: 'clear' } + ] + })); + + me.btnGridlines.setMenu( new Common.UI.Menu({ + restoreHeight: true, + items: [ + { caption: me.textShowGridlines, value: 'show', checkable: true }, + { caption: me.textSnapObjects, value: 'snap', checkable: true }, + { caption: '--'}, + { caption: '--'}, + { caption: me.textCustom, value: 'custom' } + ] + })); + + if (!Common.UI.Themes.available()) { + me.btnInterfaceTheme.$el.closest('.group').remove(); + me.$el.find('.separator-theme').remove(); + } + + var emptyGroup = []; + if (config.canBrandingExt && config.customization && config.customization.statusBar === false || !Common.UI.LayoutManager.isElementVisible('statusBar')) { + emptyGroup.push(me.chStatusbar.$el.closest('.elset')); + me.chStatusbar.$el.remove(); + } + + if (config.canBrandingExt && config.customization && config.customization.leftMenu === false || !Common.UI.LayoutManager.isElementVisible('leftMenu')) { + emptyGroup.push(me.chLeftMenu.$el.closest('.elset')); + me.chLeftMenu.$el.remove(); + } else if (emptyGroup.length>0) { + emptyGroup.push(me.chLeftMenu.$el.closest('.elset')); + emptyGroup.shift().append(me.chLeftMenu.$el[0]); + } + + if (!config.isEdit || config.canBrandingExt && config.customization && config.customization.rightMenu === false || !Common.UI.LayoutManager.isElementVisible('rightMenu')) { + emptyGroup.push(me.chRightMenu.$el.closest('.elset')); + me.chRightMenu.$el.remove(); + } else if (emptyGroup.length>0) { + emptyGroup.push(me.chRightMenu.$el.closest('.elset')); + emptyGroup.shift().append(me.chRightMenu.$el[0]); + } + if (emptyGroup.length>1) { // remove empty group + emptyGroup[emptyGroup.length-1].closest('.group').remove(); + } + + if (!config.isEdit) { + me.chRulers.hide(); + } + if (!config.isEdit) { + me.btnGuides.$el.closest('.group').remove(); + } + + if (Common.UI.Themes.available()) { + function _fill_themes() { + var btn = this.btnInterfaceTheme; + if ( typeof(btn.menu) == 'object' ) btn.menu.removeAll(); + else btn.setMenu(new Common.UI.Menu()); + + var currentTheme = Common.UI.Themes.currentThemeId() || Common.UI.Themes.defaultThemeId(); + for (var t in Common.UI.Themes.map()) { + btn.menu.addItem({ + value: t, + caption: Common.UI.Themes.get(t).text, + checked: t === currentTheme, + checkable: true, + toggleGroup: 'interface-theme' + }); + } + } + + Common.NotificationCenter.on('uitheme:countchanged', _fill_themes.bind(me)); + _fill_themes.call(me); + + if (me.btnInterfaceTheme.menu.items.length) { + me.btnInterfaceTheme.menu.on('item:click', _.bind(function (menu, item) { + var value = item.value; + Common.UI.Themes.setTheme(value); + }, me)); + } + } + + var value = Common.UI.LayoutManager.getInitValue('leftMenu'); + value = (value!==undefined) ? !value : false; + me.chLeftMenu.setValue(!Common.localStorage.getBool("pe-hidden-leftmenu", value)); + + value = Common.UI.LayoutManager.getInitValue('rightMenu'); + value = (value!==undefined) ? !value : false; + me.chRightMenu.setValue(!Common.localStorage.getBool("pe-hidden-rightmenu", value)); + + me.setEvents(); + }); }, show: function () { @@ -294,7 +516,23 @@ define([ textNotes: 'Notes', tipFitToSlide: 'Fit to slide', tipFitToWidth: 'Fit to width', - tipInterfaceTheme: 'Interface theme' + tipInterfaceTheme: 'Interface theme', + textGuides: 'Guides', + tipGuides: 'Show guides', + textShowGuides: 'Show Guides', + textAddVGuides: 'Add Vertical Guide', + textAddHGuides: 'Add Horizontal Guide', + textSmartGuides: 'Smart Guides', + textClearGuides: 'Clear Guides', + textGridlines: 'Gridlines', + tipGridlines: 'Show gridlines', + textShowGridlines: 'Show Gridlines', + textSnapObjects: 'Snap Object to Grid', + textCm: 'cm', + textCustom: 'Custom', + textLeftMenu: 'Left panel', + textRightMenu: 'Right panel' + } }()), PE.Views.ViewTab || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/Viewport.js b/apps/presentationeditor/main/app/view/Viewport.js index 5593db8bd..3e2a288a1 100644 --- a/apps/presentationeditor/main/app/view/Viewport.js +++ b/apps/presentationeditor/main/app/view/Viewport.js @@ -138,10 +138,22 @@ define([ }, applyEditorMode: function() { - PE.getController('RightMenu').getView('RightMenu').render(this.mode); + var me = this, + rightMenuView = PE.getController('RightMenu').getView('RightMenu'); + me._rightMenu = rightMenuView.render(this.mode); + var value = Common.UI.LayoutManager.getInitValue('rightMenu'); + value = (value!==undefined) ? !value : false; + Common.localStorage.getBool("pe-hidden-rightmenu", value) && me._rightMenu.hide(); + }, + + applyCommonMode: function() { if ( Common.localStorage.getBool('pe-hidden-status') ) PE.getController('Statusbar').getView('Statusbar').setVisible(false); + + var value = Common.UI.LayoutManager.getInitValue('leftMenu'); + value = (value!==undefined) ? !value : false; + Common.localStorage.getBool("pe-hidden-leftmenu", value) && PE.getController('LeftMenu').getView('LeftMenu').hide(); }, setMode: function(mode, delay) { diff --git a/apps/presentationeditor/main/app/view/define.js b/apps/presentationeditor/main/app/view/define.js new file mode 100644 index 000000000..6e4390214 --- /dev/null +++ b/apps/presentationeditor/main/app/view/define.js @@ -0,0 +1,868 @@ +/* + * + * (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 + * +*/ +if (Common === undefined) { + var Common = {}; +} + +if (Common.define === undefined) { + Common.define = {}; +} + +define(function(){ 'use strict'; + + Common.define.effectData = _.extend(new (function () { + return { + textEntrance: 'Entrance Effect', + textEmphasis: 'Emphasis Effect', + textExit: 'Exit Effect', + textPath: 'Motion Path', + textAppear: 'Appear', + textFade: 'Fade', + textFlyIn: 'Fly in', + textFloatIn: 'Float In', + textSplit: 'Split', + textWipe: 'Wipe', + textShape: 'Shape', + textWheel: 'Wheel', + textRandomBars: 'Random Bars ', + textGrowTurn: 'Grow & Turn', + textZoom: 'Zoom', + textSwivel: 'Swivel', + textBounce: 'Bounce', + textPulse: 'Pulse', + textColorPulse: 'Color Pulse', + textTeeter: 'Teeter', + textSpin: 'Spin', + textGrowShrink: 'Grow/Shrink', + textShrinkTurn: 'Shrink & Turn', + textDesaturate: 'Desaturate', + textDarken: 'Darken', + textLighten: 'Lighten', + textTransparency: 'Transparency', + textObjectColor: 'Object Color', + textComplementaryColor: 'Complementary Color', + textComplementaryColor2: 'Complementary Color 2', + textLineColor: 'Line Color', + textFillColor: 'Fill Color', + textBrushColor: 'Brush Color', + textFontColor: 'Font Color', + textUnderline: 'Underline', + textBoldFlash: 'Bold Flash', + textBoldReveal: 'Bold Reveal', + textWave: 'Wave', + textDisappear: 'Disappear', + textFlyOut: 'Fly Out', + textFloatOut: 'Float Out', + textBasic: 'Basic', + textSubtle: 'Subtle', + textModerate: 'Moderate', + textExciting: 'Exciting', + textLinesCurves: 'Lines Curves', + textSpecial: 'Special', + textBox: 'Box', + textCircle: 'Circle', + textPlus: 'Plus', + textDiamond: 'Diamond', + textDissolveIn: 'Dissolve In', + textBlinds: 'Blinds', + textCheckerboard: 'Checkerboard', + textPeekIn: 'Peek In', + textStrips: 'Strips', + textExpand: 'Expand', + textBasicZoom: 'Basic Zoom', + textCompress: 'Compress', + textFloatUp: 'Float Up', + textRiseUp: 'Rise Up', + textStretch: 'Stretch', + textCenterRevolve: 'Center Revolve', + textFloatDown: 'Float Down', + textSpinner: 'Spinner', + textBasicSwivel: 'Basic Swivel', + textBoomerang: 'Boomerang', + textCredits: 'Credits', + textCuverUp: 'Cuver Up', + textDrop: 'Drop', + textFloat: 'Float', + textPinwheel: 'Pinwheel', + textSpiralIn: 'Spiral In', + textWhip: 'Whip', + textGrowWithColor: 'Grow With Color', + textShimmer: 'Shimmer', + textBlink: 'Blink', + textDissolveOut: 'Dissolve Out', + textPeekOut: 'Peek Out', + textContrast: 'Contrast', + textCollapse: 'Collapse', + textSinkDown: 'Sink Down', + textCurveDown: 'CurveDown', + textSpiralOut: 'Spiral Out', + textContrastingColor: 'Contrasting Color', + textPointStar4: '4 Point Star', + textPointStar5: '5 Point Star', + textPointStar6: '6 Point Star', + textPointStar8: '8 Point Star', + textCrescentMoon: 'Crescent Moon', + textEqualTriangle: 'Equal Triangle', + textFootball: 'Football', + textHeart: 'Heart', + textHexagon: 'Hexagon', + textOctagon: 'Octagon', + textParallelogram: 'Parallelogram', + textPentagon: 'Pentagon', + textSquare: 'Square', + textTeardrop: 'Teardrop', + textTrapezoid: 'Trapezoid', + textArcDown: 'Arc Down', + textArcLeft: 'Arc Left', + textArcRight: 'Arc Right', + textArcUp: 'Arc Up', + textBounceLeft: 'Bounce Left', + textBounceRight: 'Bounce Right', + textCurvyLeft: 'Curvy Left', + textCurvyRight: 'Curvy Right', + textDecayingWave: 'Decaying Wave', + textDiagonalDownRight: 'Diagonal Down Right', + textDiagonalUpRight: 'Diagonal Up Right', + textDown: 'Down', + textFunnel: 'Funnel', + textHeartbeat: 'Heartbeat', + textLeft: 'Left', + textRight: 'Right', + textSCurve1: 'S Curve 1', + textSCurve2: 'S Curve 2', + textSineWave: 'Sine Wave', + textSpiralLeft: 'Spiral Left', + textSpiralRight: 'Spiral Right', + textSpring: 'Spring:', + textStairsDown: 'Stairs Down', + textTurnDown: 'Turn Down', + textTurnDownRight: 'Turn Down Right', + textTurnUp: 'Turn Up', + textTurnUpRight: 'Turn Up Right', + textUp: 'Up', + textZigzag: 'Zigzag', + textBean: 'Bean', + textCurvedSquare: 'CurvedSquare', + textCurvedX: 'Curved X', + textCurvyStar: 'Curvy Star', + textFigureFour: 'Figure 8 Four', + textHorizontalFigure: 'Horizontal Figure 8', + textInvertedSquare: 'Inverted Square', + textInvertedTriangle: 'Inverted Triangle', + textLoopDeLoop: 'Loop de Loop', + textNeutron: 'Neutron', + textPeanut: 'Peanut', + textPointStar: 'Point Star', + textSwoosh: 'Swoosh', + textVerticalFigure: 'Vertical Figure 8', + textRightTriangle: 'Right Triangle', + textAcross: 'Across', + textFromBottom: 'From Bottom', + textFromBottomLeft: 'From Bottom-Left', + textFromLeft: 'From Left', + textFromTopLeft: 'From Top-Left', + textFromTop: 'From Top', + textFromTopRight: 'From Top-Right', + textFromRight: 'From Right', + textFromBottomRight: 'From Bottom-Right', + textLeftDown: ' Left Down', + textLeftUp: ' Left Up', + textRightDown: ' Right Down', + textRightUp: ' Right Up', + textObjectCenter: 'Object Center', + textSlideCenter: 'Slide Center', + textInFromScreenCenter: 'In From Screen Center', + textOutFromScreenBottom: 'Out From Screen Bottom', + textInSlightly: 'In Slightly', + textInToScreenBottom: 'In To Screen Bottom', + textOutToScreenCenter: 'Out To Screen Center', + textOutSlightly: 'Out Slightly', + textToBottom: 'To Bottom', + textToBottomLeft: 'To Bottom-Left', + textToLeft: 'To Left', + textToTopLeft: 'To Top-Left', + textToTop: 'To Top', + textToTopRight: 'To Top-Right', + textToRight: 'To Right', + textToBottomRight: 'To Bottom-Right', + textSpoke1: '1 Spoke', + textSpoke2: '2 Spokes', + textSpoke3: '3 Spokes', + textSpoke4: '4 Spokes', + textSpoke8: '8 Spokes', + textCustomPath: 'Custom Path', + textHorizontalIn: 'Horizontal In', + textHorizontalOut: 'Horizontal Out', + textVerticalIn: 'Vertical In', + textVerticalOut: 'Vertical Out', + textVertical: 'Vertical', + textHorizontal: 'Horizontal', + textIn: 'In', + textOut: 'Out', + textWedge: 'Wedge', + textFlip: 'Flip', + textLines: 'Lines', + textArcs: 'Arcs', + textTurns: 'Turns', + textShapes: 'Shapes', + textLoops: 'Loops', + textPathCurve: 'Curve', + textPathLine: 'Line', + textPathScribble: 'Scribble', + + getEffectGroupData: function () { + return [ + {id: 'menu-effect-group-entrance', value: AscFormat.PRESET_CLASS_ENTR, caption: this.textEntrance, iconClsCustom: 'animation-entrance-custom'}, + {id: 'menu-effect-group-emphasis', value: AscFormat.PRESET_CLASS_EMPH, caption: this.textEmphasis, iconClsCustom: 'animation-emphasis-custom'}, + {id: 'menu-effect-group-exit', value: AscFormat.PRESET_CLASS_EXIT, caption: this.textExit, iconClsCustom: 'animation-exit-custom'}, + {id: 'menu-effect-group-path', value: AscFormat.PRESET_CLASS_PATH, caption: this.textPath, iconClsCustom: 'animation-motion-paths-custom'} + ]; + }, + + getEffectData: function () { + return [ + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_APPEAR, iconCls: 'animation-entrance-appear', displayValue: this.textAppear}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FADE, iconCls: 'animation-entrance-fade', displayValue: this.textFade}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLY_IN_FROM, iconCls: 'animation-entrance-fly-in', displayValue: this.textFlyIn}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_FLOAT_UP, iconCls: 'animation-entrance-float-in', displayValue: this.textFloatIn, familyEffect: 'entrfloat'}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_SPLIT, iconCls: 'animation-entrance-split', displayValue: this.textSplit}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WIPE_FROM, iconCls: 'animation-entrance-wipe', displayValue: this.textWipe}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_CIRCLE, iconCls: 'animation-entrance-shape', displayValue: this.textShape, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_WHEEL, iconCls: 'animation-entrance-wheel', displayValue: this.textWheel}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_RANDOM_BARS, iconCls: 'animation-entrance-random-bars', displayValue: this.textRandomBars}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_GROW_AND_TURN, iconCls: 'animation-entrance-grow-turn', displayValue: this.textGrowTurn}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_ZOOM, iconCls: 'animation-entrance-zoom', displayValue: this.textZoom}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_SWIVEL, iconCls: 'animation-entrance-swivel', displayValue: this.textSwivel}, + {group: 'menu-effect-group-entrance', value: AscFormat.ENTRANCE_BOUNCE, iconCls: 'animation-entrance-bounce', displayValue: this.textBounce}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_PULSE, iconCls: 'animation-emphasis-pulse', displayValue: this.textPulse}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_COLOR_PULSE, iconCls: 'animation-emphasis-color-pulse', displayValue: this.textColorPulse}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_TEETER, iconCls: 'animation-emphasis-teeter', displayValue: this.textTeeter}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_SPIN, iconCls: 'animation-emphasis-spin', displayValue: this.textSpin}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_GROW_SHRINK, iconCls: 'animation-emphasis-grow-or-shrink', displayValue: this.textGrowShrink}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_DESATURATE, iconCls: 'animation-emphasis-desaturate', displayValue: this.textDesaturate}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_CONTRASTING_DARKEN, iconCls: 'animation-emphasis-darken', displayValue: this.textDarken}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_LIGHTEN, iconCls: 'animation-emphasis-lighten', displayValue: this.textLighten}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_TRANSPARENCY, iconCls: 'animation-emphasis-transparency', displayValue: this.textTransparency}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_OBJECT_COLOR, iconCls: 'animation-emphasis-object-color', displayValue: this.textObjectColor}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_COMPLEMENTARY_COLOR, iconCls: 'animation-emphasis-complementary-color', displayValue: this.textComplementaryColor}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_LINE_COLOR, iconCls: 'animation-emphasis-line-color', displayValue: this.textLineColor}, + {group: 'menu-effect-group-emphasis', value: AscFormat.EMPHASIS_FILL_COLOR, iconCls: 'animation-emphasis-fill-color', displayValue: this.textFillColor}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_DISAPPEAR, iconCls: 'animation-exit-disappear', displayValue: this.textDisappear}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FADE, iconCls: 'animation-exit-fade', displayValue: this.textFade}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLY_OUT_TO, iconCls: 'animation-exit-fly-out', displayValue: this.textFlyOut}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_FLOAT_DOWN, iconCls: 'animation-exit-float-out', displayValue: this.textFloatOut, familyEffect: 'exitfloat'}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SPLIT, iconCls: 'animation-exit-split', displayValue: this.textSplit}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WIPE_FROM, iconCls: 'animation-exit-wipe', displayValue: this.textWipe}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_CIRCLE, iconCls: 'animation-exit-shape', displayValue: this.textShape, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_WHEEL, iconCls: 'animation-exit-wheel', displayValue: this.textWheel}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_RANDOM_BARS, iconCls: 'animation-exit-random-bars', displayValue: this.textRandomBars}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SHRINK_AND_TURN, iconCls: 'animation-exit-shrink-turn', displayValue: this.textShrinkTurn}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_ZOOM, iconCls: 'animation-exit-zoom', displayValue: this.textZoom}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_SWIVEL, iconCls: 'animation-exit-swivel', displayValue: this.textSwivel}, + {group: 'menu-effect-group-exit', value: AscFormat.EXIT_BOUNCE, iconCls: 'animation-exit-bounce', displayValue: this.textBounce}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_DOWN, iconCls: 'animation-motion-paths-lines', displayValue: this.textLines, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_DOWN, iconCls: 'animation-motion-paths-arcs', displayValue: this.textArcs, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN, iconCls: 'animation-motion-paths-turns', displayValue: this.textTurns, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_CIRCLE, iconCls: 'animation-motion-paths-shapes', displayValue: this.textShapes, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, iconCls: 'animation-motion-paths-loops', displayValue: this.textLoops, familyEffect: 'pathloops'}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_CUSTOM_PATH, iconCls: 'animation-motion-paths-custom-path', displayValue: this.textCustomPath} + ]; + }, + + getLevelEffect: function (isPath) { + + if (!isPath) + return [ + {id: 'menu-effect-level-basic', displayValue: this.textBasic}, + {id: 'menu-effect-level-subtle', displayValue: this.textSubtle}, + {id: 'menu-effect-level-moderate', displayValue: this.textModerate}, + {id: 'menu-effect-level-exciting', displayValue: this.textExciting} + ]; + else + return [ + {id: 'menu-effect-level-basic', displayValue: this.textBasic}, + {id: 'menu-effect-level-lines_curves', displayValue: this.textSubtle}, + {id: 'menu-effect-level-special', displayValue: this.textModerate} + ]; + }, + + getEffectFullData: function () { + return [ + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_APPEAR, displayValue: this.textAppear}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BLINDS, displayValue: this.textBlinds}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_BOX, displayValue: this.textBox, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CHECKERBOARD, displayValue: this.textCheckerboard}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_CIRCLE, displayValue: this.textCircle, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DIAMOND, displayValue: this.textDiamond, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_DISSOLVE_IN, displayValue: this.textDissolveIn}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_FLY_IN_FROM, displayValue: this.textFlyIn}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PEEK_IN_FROM, displayValue: this.textPeekIn}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_PLUS, displayValue: this.textPlus, familyEffect: 'entrshape'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_RANDOM_BARS, displayValue: this.textRandomBars}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_SPLIT, displayValue: this.textSplit}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_STRIPS, displayValue: this.textStrips}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_WEDGE, displayValue: this.textWedge}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_WHEEL, displayValue: this.textWheel}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-basic', value: AscFormat.ENTRANCE_WIPE_FROM, displayValue: this.textWipe}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_EXPAND, displayValue: this.textExpand}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_FADE, displayValue: this.textFade}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_SWIVEL, displayValue: this.textSwivel}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-subtle', value: AscFormat.ENTRANCE_ZOOM, displayValue: this.textZoom}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_BASIC_ZOOM, displayValue: this.textBasicZoom}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_CENTER_REVOLVE, displayValue: this.textCenterRevolve}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_CENTER_COMPRESS, displayValue: this.textCompress}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_DOWN, displayValue: this.textFloatDown, familyEffect: 'entrfloat'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_FLOAT_UP, displayValue: this.textFloatUp, familyEffect: 'entrfloat'}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_GROW_AND_TURN, displayValue: this.textGrowTurn}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_RISE_UP, displayValue: this.textRiseUp}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_SPINNER, displayValue: this.textSpinner}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-moderate', value: AscFormat.ENTRANCE_STRETCH, displayValue: this.textStretch}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_BASIC_SWIVEL, displayValue: this.textBasicSwivel}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_BOOMERANG, displayValue: this.textBoomerang}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_BOUNCE, displayValue: this.textBounce}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_CREDITS, displayValue: this.textCredits}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_CURVE_UP, displayValue: this.textCuverUp}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_DROP, displayValue: this.textDrop}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_FLIP, displayValue: this.textFlip}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_FLOAT, displayValue: this.textFloat}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_PINWHEEL, displayValue: this.textPinwheel}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_SPIRAL_IN, displayValue: this.textSpiralIn}, + {group: 'menu-effect-group-entrance', level: 'menu-effect-level-exciting', value: AscFormat.ENTRANCE_WHIP, displayValue: this.textWhip}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_FILL_COLOR, displayValue: this.textFillColor}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_GROW_SHRINK, displayValue: this.textGrowShrink}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_FONT_COLOR, displayValue: this.textFontColor, notsupported: true}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_LINE_COLOR, displayValue: this.textLineColor}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_SPIN, displayValue: this.textSpin}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-basic', value: AscFormat.EMPHASIS_TRANSPARENCY, displayValue: this.textTransparency}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_BOLD_FLASH, displayValue: this.textBoldFlash, notsupported: true}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_COMPLEMENTARY_COLOR, displayValue: this.textComplementaryColor}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_COMPLEMENTARY_COLOR_2, displayValue: this.textComplementaryColor2}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_CONTRASTING_COLOR, displayValue: this.textContrastingColor}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_CONTRASTING_DARKEN, displayValue: this.textDarken}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_DESATURATE, displayValue: this.textDesaturate}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_LIGHTEN, displayValue: this.textLighten}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_OBJECT_COLOR, displayValue: this.textObjectColor}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_PULSE, displayValue: this.textPulse}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_UNDERLINE, displayValue: this.textUnderline, notsupported: true}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-subtle', value: AscFormat.EMPHASIS_BRUSH_COLOR, displayValue: this.textBrushColor, notsupported: true}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_COLOR_PULSE, displayValue: this.textColorPulse}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_GROW_WITH_COLOR, displayValue: this.textGrowWithColor}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_SHIMMER, displayValue: this.textShimmer}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-moderate', value: AscFormat.EMPHASIS_TEETER, displayValue: this.textTeeter}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-exciting', value: AscFormat.EMPHASIS_BLINK, displayValue: this.textBlink}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-exciting', value: AscFormat.EMPHASIS_BOLD_REVEAL, displayValue: this.textBoldReveal, notsupported: true}, + {group: 'menu-effect-group-emphasis', level: 'menu-effect-level-exciting', value: AscFormat.EMPHASIS_WAVE, displayValue: this.textWave, notsupported: true}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BLINDS, displayValue: this.textBlinds}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_BOX, displayValue: this.textBox, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CHECKERBOARD, displayValue: this.textCheckerboard}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_CIRCLE, displayValue: this.textCircle, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DIAMOND, displayValue: this.textDiamond, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DISAPPEAR, displayValue: this.textDisappear}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_DISSOLVE_OUT, displayValue: this.textDissolveOut}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_FLY_OUT_TO, displayValue: this.textFlyOut}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PEEK_OUT_TO, displayValue: this.textPeekOut}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_PLUS, displayValue: this.textPlus, familyEffect: 'shape'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_RANDOM_BARS, displayValue: this.textRandomBars}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_SPLIT, displayValue: this.textSplit}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_STRIPS, displayValue: this.textStrips}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_WEDGE, displayValue: this.textWedge}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_WHEEL, displayValue: this.textWheel}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-basic', value: AscFormat.EXIT_WIPE_FROM, displayValue: this.textWipe}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_CONTRACT, displayValue: this.textContrast}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_FADE, displayValue: this.textFade}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_SWIVEL, displayValue: this.textSwivel}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-subtle', value: AscFormat.EXIT_ZOOM, displayValue: this.textZoom}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_BASIC_ZOOM, displayValue: this.textBasicZoom}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_CENTER_REVOLVE, displayValue: this.textCenterRevolve}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_COLLAPSE, displayValue: this.textCollapse}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_DOWN, displayValue: this.textFloatDown, familyEffect: 'exitfloat'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_FLOAT_UP, displayValue: this.textFloatUp, familyEffect: 'exitfloat'}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SHRINK_AND_TURN, displayValue: this.textShrinkTurn}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SINK_DOWN, displayValue: this.textSinkDown}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_SPINNER, displayValue: this.textSpinner}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-moderate', value: AscFormat.EXIT_STRETCHY, displayValue: this.textStretch}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_BASIC_SWIVEL, displayValue: this.textBasicSwivel}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_BOOMERANG, displayValue: this.textBoomerang}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_BOUNCE, displayValue: this.textBounce}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_CREDITS, displayValue: this.textCredits}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_CURVE_DOWN, displayValue: this.textCurveDown}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_DROP, displayValue: this.textDrop}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_FLIP, displayValue: this.textFlip}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_FLOAT, displayValue: this.textFloat}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_PINWHEEL, displayValue: this.textPinwheel}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_SPIRAL_OUT, displayValue: this.textSpiralOut}, + {group: 'menu-effect-group-exit', level: 'menu-effect-level-exciting', value: AscFormat.EXIT_WHIP, displayValue: this.textWhip}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_4_POINT_STAR, displayValue: this.textPointStar4}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_5_POINT_STAR, displayValue: this.textPointStar5}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_6_POINT_STAR, displayValue: this.textPointStar6}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PATH_8_POINT_STAR, displayValue: this.textPointStar8}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CIRCLE, displayValue: this.textCircle, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_CRESCENT_MOON, displayValue: this.textCrescentMoon}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_DIAMOND, displayValue: this.textDiamond, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_EQUAL_TRIANGLE, displayValue: this.textEqualTriangle, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_FOOTBALL, displayValue: this.textFootball}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEART, displayValue: this.textHeart}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_HEXAGON, displayValue: this.textHexagon, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_OCTAGON, displayValue: this.textOctagon, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PARALLELOGRAM, displayValue: this.textParallelogram, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_PENTAGON, displayValue: this.textPentagon, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_RIGHT_TRIANGLE, displayValue: this.textRightTriangle, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_SQUARE, displayValue: this.textSquare, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TEARDROP, displayValue: this.textTeardrop}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-basic', value: AscFormat.MOTION_TRAPEZOID, displayValue: this.textTrapezoid, familyEffect: 'pathshapes'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_DOWN, displayValue: this.textArcDown, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_LEFT, displayValue: this.textArcLeft, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_RIGHT, displayValue: this.textArcRight, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ARC_UP, displayValue: this.textArcUp, familyEffect: 'patharcs'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_BOUNCE_LEFT, displayValue: this.textBounceLeft}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_BOUNCE_RIGHT, displayValue: this.textBounceRight}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_CURVY_LEFT, displayValue: this.textCurvyLeft}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_CURVY_RIGHT, displayValue: this.textCurvyRight}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DECAYING_WAVE, displayValue: this.textDecayingWave}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DIAGONAL_DOWN_RIGHT, displayValue: this.textDiagonalDownRight}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DIAGONAL_UP_RIGHT, displayValue: this.textDiagonalUpRight}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_DOWN, displayValue: this.textDown, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_FUNNEL, displayValue: this.textFunnel}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_HEARTBEAT, displayValue: this.textHeartbeat}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_LEFT, displayValue: this.textLeft, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_RIGHT, displayValue: this.textRight, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_S_CURVE_1, displayValue: this.textSCurve1}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_S_CURVE_2, displayValue: this.textSCurve2}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_WAVE, displayValue: this.textSineWave}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_SPIRAL_LEFT, displayValue: this.textSpiralLeft}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SINE_SPIRAL_RIGHT, displayValue: this.textSpiralRight}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_SPRING, displayValue: this.textSpring}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_STAIRS_DOWN, displayValue: this.textStairsDown}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN, displayValue: this.textTurnDown, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_DOWN_RIGHT, displayValue: this.textTurnDownRight, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP, displayValue: this.textTurnUp, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_TURN_UP_RIGHT, displayValue: this.textTurnUpRight, familyEffect: 'pathturns'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_UP, displayValue: this.textUp, familyEffect: 'pathlines'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_WAVE, displayValue: this.textWave}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-lines_curves', value: AscFormat.MOTION_ZIGZAG, displayValue: this.textZigzag}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_BEAN, displayValue: this.textBean}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVED_SQUARE, displayValue: this.textCurvedSquare}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVED_X, displayValue: this.textCurvedX}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CURVY_STAR, displayValue: this.textCurvyStar}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_FIGURE_8_FOUR, displayValue: this.textFigureFour}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, displayValue: this.textHorizontalFigure, familyEffect: 'pathloops'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_INVERTED_SQUARE, displayValue: this.textInvertedSquare}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_INVERTED_TRIANGLE, displayValue: this.textInvertedTriangle}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_LOOP_DE_LOOP, displayValue: this.textLoopDeLoop, familyEffect: 'pathloops'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_NEUTRON, displayValue: this.textNeutron}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_PEANUT, displayValue: this.textPeanut}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_POINTY_STAR, displayValue: this.textPointStar}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_SWOOSH, displayValue: this.textSwoosh}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_VERTICAL_FIGURE_8, displayValue: this.textVerticalFigure, familyEffect: 'pathloops'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CUSTOM_PATH, displayValue: this.textCustomPath, notsupported: true} + + ]; + }, + + getEffectOptionsData: function (group, type) { + switch (group) { + case 'menu-effect-group-entrance': + switch (type) { + case AscFormat.ENTRANCE_BLINDS: + return [ + {value: AscFormat.ENTRANCE_BLINDS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, + {value: AscFormat.ENTRANCE_BLINDS_VERTICAL, caption: this.textVertical} + ]; + case AscFormat.ENTRANCE_BOX: + return [ + {value: AscFormat.ENTRANCE_BOX_IN, caption: this.textIn, defvalue: true}, + {value: AscFormat.ENTRANCE_BOX_OUT, caption: this.textOut} + ]; + case AscFormat.ENTRANCE_CHECKERBOARD: + return [ + {value: AscFormat.ENTRANCE_CHECKERBOARD_ACROSS, caption: this.textAcross, defvalue: true}, + {value: AscFormat.ENTRANCE_CHECKERBOARD_DOWN, caption: this.textDown} + ]; + case AscFormat.ENTRANCE_CIRCLE: + return [ + {value: AscFormat.ENTRANCE_CIRCLE_IN, caption: this.textIn, defvalue: true}, + {value: AscFormat.ENTRANCE_CIRCLE_OUT, caption: this.textOut} + ]; + case AscFormat.ENTRANCE_DIAMOND: + return [ + {value: AscFormat.ENTRANCE_DIAMOND_IN, caption: this.textIn, defvalue: true}, + {value: AscFormat.ENTRANCE_DIAMOND_OUT, caption: this.textOut} + ]; + + case AscFormat.ENTRANCE_FLY_IN_FROM: + return [ + {value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, + {value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM_LEFT, caption: this.textFromBottomLeft}, + {value: AscFormat.ENTRANCE_FLY_IN_FROM_LEFT, caption: this.textFromLeft}, + {value: AscFormat.ENTRANCE_FLY_IN_FROM_TOP_LEFT, caption: this.textFromTopLeft}, + {value: AscFormat.ENTRANCE_FLY_IN_FROM_TOP, caption: this.textFromTop}, + {value: AscFormat.ENTRANCE_FLY_IN_FROM_TOP_RIGHT, caption: this.textFromTopRight}, + {value: AscFormat.ENTRANCE_FLY_IN_FROM_RIGHT, caption: this.textFromRight}, + {value: AscFormat.ENTRANCE_FLY_IN_FROM_BOTTOM_RIGHT, caption: this.textFromBottomRight} + ]; + case AscFormat.ENTRANCE_PEEK_IN_FROM: + return [ + {value: AscFormat.ENTRANCE_PEEK_IN_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, + {value: AscFormat.ENTRANCE_PEEK_IN_FROM_LEFT, caption: this.textFromLeft}, + {value: AscFormat.ENTRANCE_PEEK_IN_FROM_RIGHT, caption: this.textFromRight}, + {value: AscFormat.ENTRANCE_PEEK_IN_FROM_TOP, caption: this.textFromTop} + ]; + case AscFormat.ENTRANCE_PLUS: + return [ + {value: AscFormat.ENTRANCE_PLUS_IN, caption: this.textIn, defvalue: true}, + {value: AscFormat.ENTRANCE_PLUS_OUT, caption: this.textOut} + ]; + case AscFormat.ENTRANCE_RANDOM_BARS: + return [ + {value: AscFormat.ENTRANCE_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, + {value: AscFormat.ENTRANCE_RANDOM_BARS_VERTICAL, caption: this.textVertical} + ]; + case AscFormat.ENTRANCE_SPLIT: + return [ + {value: AscFormat.ENTRANCE_SPLIT_HORIZONTAL_IN, caption: this.textHorizontalIn}, + {value: AscFormat.ENTRANCE_SPLIT_HORIZONTAL_OUT, caption: this.textHorizontalOut}, + {value: AscFormat.ENTRANCE_SPLIT_VERTICAL_IN, caption: this.textVerticalIn, defvalue: true}, + {value: AscFormat.ENTRANCE_SPLIT_VERTICAL_OUT, caption: this.textVerticalOut} + ]; + case AscFormat.ENTRANCE_STRIPS: + return [ + {value: AscFormat.ENTRANCE_STRIPS_LEFT_DOWN, caption: this.textLeftDown, defvalue: true}, + {value: AscFormat.ENTRANCE_STRIPS_LEFT_UP, caption: this.textLeftUp}, + {value: AscFormat.ENTRANCE_STRIPS_RIGHT_DOWN, caption: this.textRightDown}, + {value: AscFormat.ENTRANCE_STRIPS_RIGHT_UP, caption: this.textRightUp} + ]; + case AscFormat.ENTRANCE_WHEEL: + return [ + {value: AscFormat.ENTRANCE_WHEEL_1_SPOKE, caption: this.textSpoke1, defvalue: true}, + {value: AscFormat.ENTRANCE_WHEEL_2_SPOKES, caption: this.textSpoke2}, + {value: AscFormat.ENTRANCE_WHEEL_3_SPOKES, caption: this.textSpoke3}, + {value: AscFormat.ENTRANCE_WHEEL_4_SPOKES, caption: this.textSpoke4}, + {value: AscFormat.ENTRANCE_WHEEL_8_SPOKES, caption: this.textSpoke8} + ]; + case AscFormat.ENTRANCE_WIPE_FROM: + return [ + {value: AscFormat.ENTRANCE_WIPE_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, + {value: AscFormat.ENTRANCE_WIPE_FROM_LEFT, caption: this.textFromLeft}, + {value: AscFormat.ENTRANCE_WIPE_FROM_RIGHT, caption: this.textFromRight}, + {value: AscFormat.ENTRANCE_WIPE_FROM_TOP, caption: this.textFromTop} + ]; + case AscFormat.ENTRANCE_ZOOM: + return [ + {value: AscFormat.ENTRANCE_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter, defvalue: true}, + {value: AscFormat.ENTRANCE_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter} + ]; + case AscFormat.ENTRANCE_BASIC_ZOOM: + return [ + {value: AscFormat.ENTRANCE_BASIC_ZOOM_IN, caption: this.textIn, defvalue: true}, + {value: AscFormat.ENTRANCE_BASIC_ZOOM_IN_FROM_SCREEN_CENTER, caption: this.textInFromScreenCenter}, + {value: AscFormat.ENTRANCE_BASIC_ZOOM_IN_SLIGHTLY, caption: this.textInSlightly}, + {value: AscFormat.ENTRANCE_BASIC_ZOOM_OUT, caption: this.textOut}, + {value: AscFormat.ENTRANCE_BASIC_ZOOM_OUT_FROM_SCREEN_BOTTOM, caption: this.textOutFromScreenBottom}, + {value: AscFormat.ENTRANCE_BASIC_ZOOM_OUT_SLIGHTLY, caption: this.textOutSlightly} + ]; + case AscFormat.ENTRANCE_STRETCH: + return [ + {value: AscFormat.ENTRANCE_STRETCH_ACROSS, caption: this.textAcross, defvalue: true}, + {value: AscFormat.ENTRANCE_STRETCH_FROM_BOTTOM, caption: this.textFromBottom}, + {value: AscFormat.ENTRANCE_STRETCH_FROM_LEFT, caption: this.textFromLeft}, + {value: AscFormat.ENTRANCE_STRETCH_FROM_RIGHT, caption: this.textFromRight}, + {value: AscFormat.ENTRANCE_STRETCH_FROM_TOP, caption: this.textFromTop} + ]; + case AscFormat.ENTRANCE_BASIC_SWIVEL: + return [ + {value: AscFormat.ENTRANCE_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, + {value: AscFormat.ENTRANCE_BASIC_SWIVEL_VERTICAL, caption: this.textVertical} + ]; + default: + return undefined; + } + break; + + case 'menu-effect-group-exit': + switch (type){ + case AscFormat.EXIT_BLINDS: + return [ + {value: AscFormat.EXIT_BLINDS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, + {value: AscFormat.EXIT_BLINDS_VERTICAL, caption: this.textVertical} + ]; + case AscFormat.EXIT_BOX: + return [ + {value: AscFormat.EXIT_BOX_IN, caption: this.textIn}, + {value: AscFormat.EXIT_BOX_OUT, caption: this.textOut, defvalue: true} + ]; + case AscFormat.EXIT_CHECKERBOARD: + return [ + {value: AscFormat.EXIT_CHECKERBOARD_ACROSS, caption: this.textAcross, defvalue: true}, + {value: AscFormat.EXIT_CIRCLE_OUT, caption: this.textUp} + ]; + case AscFormat.EXIT_CIRCLE: + return [ + {value: AscFormat.EXIT_CIRCLE_IN, caption: this.textIn}, + {value: AscFormat.EXIT_CIRCLE_OUT, caption: this.textOut, defvalue: true} + ]; + case AscFormat.EXIT_DIAMOND: + return [ + {value: AscFormat.EXIT_DIAMOND_IN, caption: this.textIn}, + {value: AscFormat.EXIT_DIAMOND_OUT, caption: this.textOut, defvalue: true} + ]; + case AscFormat.EXIT_FLY_OUT_TO: + return [ + {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM, caption: this.textToBottom, defvalue: true}, + {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM_LEFT, caption: this.textToBottomLeft}, + {value: AscFormat.EXIT_FLY_OUT_TO_LEFT, caption: this.textToLeft}, + {value: AscFormat.EXIT_FLY_OUT_TO_TOP_LEFT, caption: this.textToTopLeft}, + {value: AscFormat.EXIT_FLY_OUT_TO_TOP, caption: this.textToTop}, + {value: AscFormat.EXIT_FLY_OUT_TO_TOP_RIGHT, caption: this.textToTopRight}, + {value: AscFormat.EXIT_FLY_OUT_TO_RIGHT, caption: this.textToRight}, + {value: AscFormat.EXIT_FLY_OUT_TO_BOTTOM_RIGHT, caption: this.textToBottomRight} + ]; + case AscFormat.EXIT_PEEK_OUT_TO: + return [ + {value: AscFormat.EXIT_PEEK_OUT_TO_BOTTOM, caption: this.textToBottom, defvalue: true}, + {value: AscFormat.EXIT_PEEK_OUT_TO_LEFT, caption: this.textToLeft}, + {value: AscFormat.EXIT_PEEK_OUT_TO_RIGHT, caption: this.textToRight}, + {value: AscFormat.EXIT_PEEK_OUT_TO_TOP, caption: this.textToTop} + ]; + case AscFormat.EXIT_PLUS: + return [ + {value: AscFormat.EXIT_PLUS_IN, caption: this.textIn}, + {value: AscFormat.EXIT_PLUS_OUT, caption: this.textOut, defvalue: true} + ]; + case AscFormat.EXIT_RANDOM_BARS: + return [ + {value: AscFormat.EXIT_RANDOM_BARS_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, + {value: AscFormat.EXIT_RANDOM_BARS_VERTICAL, caption: this.textVertical} + ]; + case AscFormat.EXIT_SPLIT: + return [ + {value: AscFormat.EXIT_SPLIT_HORIZONTAL_IN, caption: this.textHorizontalIn}, + {value: AscFormat.EXIT_SPLIT_HORIZONTAL_OUT, caption: this.textHorizontalOut}, + {value: AscFormat.EXIT_SPLIT_VERTICAL_IN, caption: this.textVerticalIn, defvalue: true}, + {value: AscFormat.EXIT_SPLIT_VERTICAL_OUT, caption: this.textVerticalOut} + ]; + case AscFormat.EXIT_STRIPS: + return [ + {value: AscFormat.EXIT_STRIPS_LEFT_DOWN, caption: this.textLeftDown, defvalue: true}, + {value: AscFormat.EXIT_STRIPS_LEFT_UP, caption: this.textLeftUp}, + {value: AscFormat.EXIT_STRIPS_RIGHT_DOWN, caption: this.textRightDown}, + {value: AscFormat.EXIT_STRIPS_RIGHT_UP, caption: this.textRightUp} + ]; + case AscFormat.EXIT_WHEEL: + return [ + {value: AscFormat.EXIT_WHEEL_1_SPOKE, caption: this.textSpoke1, defvalue: true}, + {value: AscFormat.EXIT_WHEEL_2_SPOKES, caption: this.textSpoke2}, + {value: AscFormat.EXIT_WHEEL_3_SPOKES, caption: this.textSpoke3}, + {value: AscFormat.EXIT_WHEEL_4_SPOKES, caption: this.textSpoke4}, + {value: AscFormat.EXIT_WHEEL_8_SPOKES, caption: this.textSpoke8} + ]; + case AscFormat.EXIT_WIPE_FROM: + return [ + {value: AscFormat.EXIT_WIPE_FROM_BOTTOM, caption: this.textFromBottom, defvalue: true}, + {value: AscFormat.EXIT_WIPE_FROM_LEFT, caption: this.textFromLeft}, + {value: AscFormat.EXIT_WIPE_FROM_RIGHT, caption: this.textFromRight}, + {value: AscFormat.EXIT_WIPE_FROM_TOP, caption: this.textFromTop} + ]; + case AscFormat.EXIT_ZOOM: + return [ + {value: AscFormat.EXIT_ZOOM_OBJECT_CENTER, caption: this.textObjectCenter, defvalue: true}, + {value: AscFormat.EXIT_ZOOM_SLIDE_CENTER, caption: this.textSlideCenter} + ]; + case AscFormat.EXIT_BASIC_ZOOM: + return [ + {value: AscFormat.EXIT_BASIC_ZOOM_OUT, caption: this.textOut, defvalue: true}, + {value: AscFormat.EXIT_BASIC_ZOOM_OUT_TO_SCREEN_CENTER, caption: this.textOutToScreenCenter}, + {value: AscFormat.EXIT_BASIC_ZOOM_OUT_SLIGHTLY, caption: this.textOutSlightly}, + {value: AscFormat.EXIT_BASIC_ZOOM_IN, caption: this.textIn}, + {value: AscFormat.EXIT_BASIC_ZOOM_IN_TO_SCREEN_BOTTOM, caption: this.textInToScreenBottom}, + {value: AscFormat.EXIT_BASIC_ZOOM_IN_SLIGHTLY, caption: this.textInSlightly} + ]; + case AscFormat.EXIT_COLLAPSE: + return [ + {value: AscFormat.EXIT_COLLAPSE_ACROSS, caption: this.textAcross, defvalue: true}, + {value: AscFormat.EXIT_COLLAPSE_TO_BOTTOM, caption: this.textToBottom}, + {value: AscFormat.EXIT_COLLAPSE_TO_LEFT, caption: this.textToLeft}, + {value: AscFormat.EXIT_COLLAPSE_TO_RIGHT, caption: this.textToRight}, + {value: AscFormat.EXIT_COLLAPSE_TO_TOP, caption: this.textToTop} + ]; + case AscFormat.EXIT_BASIC_SWIVEL: + return [ + {value: AscFormat.EXIT_BASIC_SWIVEL_HORIZONTAL, caption: this.textHorizontal, defvalue: true}, + {value: AscFormat.EXIT_BASIC_SWIVEL_VERTICAL, caption: this.textVertical} + ]; + default: + return undefined; + } + break; + case 'menu-effect-group-path': + switch (type) { + case AscFormat.MOTION_CUSTOM_PATH: + return [ + {value: AscFormat.MOTION_CUSTOM_PATH_CURVE, caption: this.textPathCurve, isCustom: true}, + {value: AscFormat.MOTION_CUSTOM_PATH_LINE, caption: this.textPathLine, isCustom: true}, + {value: AscFormat.MOTION_CUSTOM_PATH_SCRIBBLE, caption: this.textPathScribble, isCustom: true} + ]; + } + break; + default: + return undefined; + } + }, + getSimilarEffectsArray: function (familyEffect) { + switch (familyEffect){ + case 'shape': + return [ + {value: AscFormat.EXIT_CIRCLE, caption: this.textCircle}, + {value: AscFormat.EXIT_BOX, caption: this.textBox}, + {value: AscFormat.EXIT_DIAMOND, caption: this.textDiamond}, + {value: AscFormat.EXIT_PLUS, caption: this.textPlus} + ]; + case 'entrshape': + return [ + {value: AscFormat.ENTRANCE_CIRCLE, caption: this.textCircle}, + {value: AscFormat.ENTRANCE_BOX, caption: this.textBox}, + {value: AscFormat.ENTRANCE_DIAMOND, caption: this.textDiamond}, + {value: AscFormat.ENTRANCE_PLUS, caption: this.textPlus} + ]; + case 'pathlines': + return[ + {value: AscFormat.MOTION_DOWN, caption: this.textDown}, + {value: AscFormat.MOTION_LEFT, caption: this.textLeft}, + {value: AscFormat.MOTION_RIGHT, caption: this.textRight}, + {value: AscFormat.MOTION_UP, caption: this.textUp} + ]; + case 'patharcs': + return [ + {value: AscFormat.MOTION_ARC_DOWN, caption: this.textArcDown}, + {value: AscFormat.MOTION_ARC_LEFT, caption: this.textArcLeft}, + {value: AscFormat.MOTION_ARC_RIGHT, caption: this.textArcRight}, + {value: AscFormat.MOTION_ARC_UP, caption: this.textArcUp} + ]; + case 'pathturns': + return [ + {value: AscFormat.MOTION_TURN_DOWN, caption: this.textTurnDown}, + {value: AscFormat.MOTION_TURN_DOWN_RIGHT, caption: this.textTurnDownRight}, + {value: AscFormat.MOTION_TURN_UP, caption: this.textTurnUp}, + {value: AscFormat.MOTION_TURN_UP_RIGHT, caption: this.textTurnUpRight} + ]; + case 'pathshapes': + return [ + {value: AscFormat.MOTION_CIRCLE, caption: this.textCircle}, + {value: AscFormat.MOTION_DIAMOND, caption: this.textDiamond}, + {value: AscFormat.MOTION_EQUAL_TRIANGLE, caption: this.textEqualTriangle}, + {value: AscFormat.MOTION_HEXAGON, caption: this.textHexagon}, + {value: AscFormat.MOTION_OCTAGON, caption: this.textOctagon}, + {value: AscFormat.MOTION_PARALLELOGRAM, caption: this.textParallelogram}, + {value: AscFormat.MOTION_PENTAGON, caption: this.textPentagon}, + {value: AscFormat.MOTION_RIGHT_TRIANGLE, caption: this.textRightTriangle}, + {value: AscFormat.MOTION_SQUARE, caption: this.textSquare}, + {value: AscFormat.MOTION_TRAPEZOID, caption: this.textTrapezoid} + + ]; + case 'pathloops': + return [ + {value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, caption: this.textHorizontalFigure}, + {value: AscFormat.MOTION_VERTICAL_FIGURE_8, caption: this.textVerticalFigure}, + {value: AscFormat.MOTION_LOOP_DE_LOOP, caption: this.textLoopDeLoop} + ]; + case 'entrfloat': + return [ + {value: AscFormat.ENTRANCE_FLOAT_UP, caption: this.textFloatUp}, + {value: AscFormat.ENTRANCE_FLOAT_DOWN, caption: this.textFloatDown} + ]; + case 'exitfloat': + return [ + {value: AscFormat.EXIT_FLOAT_UP, caption: this.textFloatUp}, + {value: AscFormat.EXIT_FLOAT_DOWN, caption: this.textFloatDown} + ]; + default: + return []; + } + } + } + })(), Common.define.effectData || {}); + + Common.define.gridlineData = _.extend(new (function () { + return { + txtCm: 'cm', + txtPt: 'pt', + + getGridlineData: function (metric) { + switch (metric) { + case Common.Utils.Metric.c_MetricUnits.inch: + return [ + { caption: '1/16 \"', value: 0.06 }, + { caption: '1/12 \"', value: 0.08 }, + { caption: '1/10 \"', value: 0.1 }, + { caption: '1/8 \"', value: 0.13 }, + { caption: '1/6 \"', value: 0.17 }, + { caption: '1/5 \"', value: 0.2 }, + { caption: '1/4 \"', value: 0.25 }, + { caption: '1/3 \"', value: 0.33 }, + { caption: '1/2 \"', value: 0.5 }, + { caption: '1 \"', value: 1 }, + { caption: '2 \"', value: 2 } + ]; + case Common.Utils.Metric.c_MetricUnits.cm: + return [ + { caption: '1/8 ' + this.txtCm, value: 0.13 }, + { caption: '1/6 ' + this.txtCm, value: 0.17 }, + { caption: '1/5 ' + this.txtCm, value: 0.2 }, + { caption: '1/4 ' + this.txtCm, value: 0.25 }, + { caption: '1/3 ' + this.txtCm, value: 0.33 }, + { caption: '1/2 ' + this.txtCm, value: 0.5 }, + { caption: '1 ' + this.txtCm, value: 1 }, + { caption: '2 ' + this.txtCm, value: 2 }, + { caption: '3 ' + this.txtCm, value: 3 }, + { caption: '4 ' + this.txtCm, value: 4 }, + { caption: '5 ' + this.txtCm, value: 5 } + ]; + case Common.Utils.Metric.c_MetricUnits.pt: + return [ + { caption: '4 ' + this.txtPt, value: 4 }, + { caption: '8 ' + this.txtPt, value: 8 }, + { caption: '12 ' + this.txtPt, value: 12 }, + { caption: '16 ' + this.txtPt, value: 16 }, + { caption: '20 ' + this.txtPt, value: 20 }, + { caption: '24 ' + this.txtPt, value: 24 }, + { caption: '36 ' + this.txtPt, value: 36 }, + { caption: '40 ' + this.txtPt, value: 40 }, + { caption: '56 ' + this.txtPt, value: 56 }, + { caption: '64 ' + this.txtPt, value: 64 }, + { caption: '72 ' + this.txtPt, value: 72 }, + { caption: '144 ' + this.txtPt, value: 144 } + ]; + } + } + } + })(), Common.define.gridlineData || {}); +}); \ No newline at end of file diff --git a/apps/presentationeditor/main/app_dev.js b/apps/presentationeditor/main/app_dev.js index 8d7c9c55e..d3765f0d4 100644 --- a/apps/presentationeditor/main/app_dev.js +++ b/apps/presentationeditor/main/app_dev.js @@ -53,7 +53,7 @@ require.config({ perfectscrollbar: 'common/main/lib/mods/perfect-scrollbar', jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel', xregexp : '../vendor/xregexp/xregexp-all-min', - sockjs : '../vendor/sockjs/sockjs.min', + socketio : '../vendor/socketio/socket.io.min', api : 'api/documents/api', core : 'common/main/lib/core/application', notification : 'common/main/lib/core/NotificationCenter', @@ -119,7 +119,7 @@ require([ 'analytics', 'gateway', 'locale', - 'sockjs', + 'socketio', 'xregexp', 'underscore' ], function (Backbone, Bootstrap, Core) { diff --git a/apps/presentationeditor/main/app_dev.reporter.js b/apps/presentationeditor/main/app_dev.reporter.js index 04aac16cf..9334926a1 100644 --- a/apps/presentationeditor/main/app_dev.reporter.js +++ b/apps/presentationeditor/main/app_dev.reporter.js @@ -48,7 +48,7 @@ require.config({ jquery : '../vendor/jquery/jquery', underscore : '../vendor/underscore/underscore', xregexp : '../vendor/xregexp/xregexp-all-min', - sockjs : '../vendor/sockjs/sockjs.min', + socketio : '../vendor/socketio/socket.io.min', allfonts : '../../sdkjs/common/AllFonts' }, shim: { @@ -61,14 +61,14 @@ require.config({ 'underscore', 'allfonts', 'xregexp', - 'sockjs' + 'socketio' ] } } }); require([ - 'sockjs', + 'socketio', 'xregexp', 'underscore' ], function () { diff --git a/apps/presentationeditor/main/index.html b/apps/presentationeditor/main/index.html index 5edfda4b2..e3d73ea32 100644 --- a/apps/presentationeditor/main/index.html +++ b/apps/presentationeditor/main/index.html @@ -345,6 +345,7 @@ + diff --git a/apps/presentationeditor/main/index_loader.html b/apps/presentationeditor/main/index_loader.html index 6279967a3..1aa3a4f03 100644 --- a/apps/presentationeditor/main/index_loader.html +++ b/apps/presentationeditor/main/index_loader.html @@ -261,6 +261,7 @@ + <% } %> diff --git a/apps/presentationeditor/mobile/src/less/app.less b/apps/presentationeditor/mobile/src/less/app.less index 5fadef946..4316c57e0 100644 --- a/apps/presentationeditor/mobile/src/less/app.less +++ b/apps/presentationeditor/mobile/src/less/app.less @@ -172,4 +172,12 @@ z-index: 1; .encoded-svg-background(''); } +} + +.bullet-menu-image ul{ + padding: 0; + + li { + display: inherit; + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/page/main.jsx b/apps/presentationeditor/mobile/src/page/main.jsx index d1f099a0b..d3012f5c7 100644 --- a/apps/presentationeditor/mobile/src/page/main.jsx +++ b/apps/presentationeditor/mobile/src/page/main.jsx @@ -11,6 +11,8 @@ import { Preview } from "../controller/Preview"; import { Search, SearchSettings } from '../controller/Search'; import ContextMenu from '../controller/ContextMenu'; import { Toolbar } from "../controller/Toolbar"; +import { AddLinkController } from '../controller/add/AddLink'; +import { EditLinkController } from '../controller/edit/EditLink'; class MainPage extends Component { constructor(props) { super(props); @@ -19,7 +21,9 @@ class MainPage extends Component { addOptionsVisible: false, settingsVisible: false, collaborationVisible: false, - previewVisible: false + previewVisible: false, + addLinkSettingsVisible: false, + editLinkSettingsVisible: false }; } @@ -49,6 +53,12 @@ class MainPage extends Component { } else if ( opts === 'preview' ) { this.state.previewVisible && (opened = true); newState.previewVisible = true; + } else if ( opts === 'add-link') { + this.state.addLinkSettingsVisible && (opened = true); + newState.addLinkSettingsVisible = true; + } else if( opts === 'edit-link') { + this.state.editLinkSettingsVisible && (opened = true); + newState.editLinkSettingsVisible = true; } for (let key in this.state) { @@ -82,6 +92,10 @@ class MainPage extends Component { return {collaborationVisible: false} else if ( opts == 'preview' ) return {previewVisible: false}; + else if ( opts === 'add-link') + return {addLinkSettingsVisible: false}; + else if( opts === 'edit-link') + return {editLinkSettingsVisible: false}; }); if ((opts === 'edit' || opts === 'coauth') && Device.phone) { f7.navbar.show('.main-navbar'); @@ -144,7 +158,15 @@ class MainPage extends Component { } { !this.state.addOptionsVisible ? null : - + + } + { + !this.state.addLinkSettingsVisible ? null : + + } + { + !this.state.editLinkSettingsVisible ? null : + } { !this.state.settingsVisible ? null : @@ -155,7 +177,6 @@ class MainPage extends Component { } {appOptions.isDocReady && } - ) diff --git a/apps/presentationeditor/mobile/src/store/appOptions.js b/apps/presentationeditor/mobile/src/store/appOptions.js index a79235abd..91c0077cb 100644 --- a/apps/presentationeditor/mobile/src/store/appOptions.js +++ b/apps/presentationeditor/mobile/src/store/appOptions.js @@ -1,5 +1,5 @@ import {action, observable, makeObservable} from 'mobx'; -import { LocalStorage } from '../../../../common/mobile/utils/LocalStorage'; +import { LocalStorage } from '../../../../common/mobile/utils/LocalStorage.mjs'; export class storeAppOptions { constructor() { diff --git a/apps/presentationeditor/mobile/src/view/Toolbar.jsx b/apps/presentationeditor/mobile/src/view/Toolbar.jsx index df37c212f..3fadc06ee 100644 --- a/apps/presentationeditor/mobile/src/view/Toolbar.jsx +++ b/apps/presentationeditor/mobile/src/view/Toolbar.jsx @@ -1,10 +1,41 @@ -import React, {Fragment} from 'react'; +import React, {Fragment, useEffect} from 'react'; import {NavLeft, NavRight, NavTitle, Link, Icon} from 'framework7-react'; import { Device } from '../../../../common/mobile/utils/device'; import EditorUIController from '../lib/patch' const ToolbarView = props => { const isDisconnected = props.isDisconnected; + const docTitle = props.docTitle; + const docTitleLength = docTitle.length; + + const correctOverflowedText = el => { + if(el) { + el.innerText = docTitle; + + if(el.scrollWidth > el.clientWidth) { + const arrDocTitle = docTitle.split('.'); + const ext = arrDocTitle[1]; + const name = arrDocTitle[0]; + const diff = Math.floor(docTitleLength * el.clientWidth / el.scrollWidth - ext.length - 6); + const shortName = name.substring(0, diff).trim(); + + return `${shortName}...${ext}`; + } + + return docTitle; + } + }; + + useEffect(() => { + if(!Device.phone) { + const elemTitle = document.querySelector('.subnavbar .title'); + + if (elemTitle) { + elemTitle.innerText = correctOverflowedText(elemTitle); + } + } + }, [docTitle]); + return ( @@ -16,7 +47,7 @@ const ToolbarView = props => { onRedoClick: props.onRedo })} - {!Device.phone && {props.docTitle}} + {!Device.phone && {props.docTitle}} {Device.android && props.isEdit && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({ disabledUndo: !props.isCanUndo || isDisconnected, diff --git a/apps/presentationeditor/mobile/src/view/add/Add.jsx b/apps/presentationeditor/mobile/src/view/add/Add.jsx index 647d86ea7..0f0f3810c 100644 --- a/apps/presentationeditor/mobile/src/view/add/Add.jsx +++ b/apps/presentationeditor/mobile/src/view/add/Add.jsx @@ -12,7 +12,9 @@ import {PageImageLinkSettings} from "./AddImage"; import {AddOtherController} from "../../controller/add/AddOther"; import {PageAddTable} from "./AddOther"; import {AddLinkController} from "../../controller/add/AddLink"; -import {PageTypeLink, PageLinkTo} from "./AddLink"; +import { PageTypeLink, PageLinkTo } from "./AddLink"; +import { EditLinkController } from '../../controller/edit/EditLink'; +import { PageEditTypeLink, PageEditLinkTo } from '../../view/edit/EditLink'; const routes = [ // Image @@ -20,6 +22,7 @@ const routes = [ path: '/add-image-from-url/', component: PageImageLinkSettings }, + // Other { path: '/add-table/', @@ -36,6 +39,25 @@ const routes = [ { path: '/add-link-to/', component: PageLinkTo + }, + { + path: '/edit-link/', + component: EditLinkController + }, + { + path: '/edit-link-type/', + component: PageEditTypeLink + }, + { + path: '/edit-link-to/', + component: PageEditLinkTo + }, + + // Image + + { + path: '/add-image/', + component: AddImageController } ]; @@ -90,17 +112,19 @@ const AddTabs = props => { icon: 'icon-add-shape', component: }); - tabs.push({ - caption: _t.textImage, - id: 'add-image', - icon: 'icon-add-image', - component: - }); + + // tabs.push({ + // caption: _t.textImage, + // id: 'add-image', + // icon: 'icon-add-image', + // component: + // }); + tabs.push({ caption: _t.textOther, id: 'add-other', icon: 'icon-add-other', - component: + component: }); } if(!showPanels && !countPages) { @@ -111,13 +135,15 @@ const AddTabs = props => { component: }); } - if (showPanels && showPanels === 'link') { - tabs.push({ - caption: _t.textAddLink, - id: 'add-link', - component: - }); - } + + // if (showPanels && showPanels === 'link') { + // tabs.push({ + // caption: _t.textAddLink, + // id: 'add-link', + // component: + // }); + // } + return ( @@ -142,10 +168,10 @@ class AddView extends Component { return ( show_popover ? this.props.onclosed()}> - + : this.props.onclosed()}> - + ) } @@ -166,7 +192,7 @@ const Add = props => { props.onclosed(); } }; - return + return }; export default Add; \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/view/add/AddImage.jsx b/apps/presentationeditor/mobile/src/view/add/AddImage.jsx index d2809544e..474327217 100644 --- a/apps/presentationeditor/mobile/src/view/add/AddImage.jsx +++ b/apps/presentationeditor/mobile/src/view/add/AddImage.jsx @@ -33,16 +33,19 @@ const AddImage = props => { const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); return ( - - {props.onInsertByFile()}}> - - - - - - + + + + {props.onInsertByFile()}}> + + + + + + + ) }; diff --git a/apps/presentationeditor/mobile/src/view/add/AddLink.jsx b/apps/presentationeditor/mobile/src/view/add/AddLink.jsx index d00f01ace..849588879 100644 --- a/apps/presentationeditor/mobile/src/view/add/AddLink.jsx +++ b/apps/presentationeditor/mobile/src/view/add/AddLink.jsx @@ -1,6 +1,6 @@ import React, {useState} from 'react'; import {observer, inject} from "mobx-react"; -import {List, ListItem, Page, Navbar, Icon, ListButton, ListInput, Segmented, Button} from 'framework7-react'; +import {List, ListItem, Page, Navbar, Icon, ListButton, ListInput, Segmented, Button, Link, NavLeft, NavRight, NavTitle, f7} from 'framework7-react'; import { useTranslation } from 'react-i18next'; import {Device} from "../../../../../common/mobile/utils/device"; @@ -8,9 +8,16 @@ const PageTypeLink = props => { const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); const [typeLink, setTypeLink] = useState(props.curType); + return ( - + + {Device.phone && + + + + } + {setTypeLink(1); props.changeType(1);}}> {setTypeLink(0); props.changeType(0);}}> @@ -42,28 +49,35 @@ const PageLinkTo = props => { setNumberTo(value); props.changeTo(4, value); }; + return ( - + + {Device.phone && + + + + } + - {changeTypeTo(0)}}> - {changeTypeTo(1)}}> - {changeTypeTo(2)}}> - {changeTypeTo(3)}}> - - {!isAndroid &&
{stateNumberTo + 1}
} -
- - - {isAndroid && } - - -
-
+ {changeTypeTo(0)}}> + {changeTypeTo(1)}}> + {changeTypeTo(2)}}> + {changeTypeTo(3)}}> + + {!isAndroid &&
{stateNumberTo + 1}
} +
+ + + {isAndroid && } + + +
+
) @@ -104,7 +118,25 @@ const PageLink = props => { return ( - {!props.noNavbar && } + + + { + props.isNavigate ? f7.views.current.router.back() : props.closeModal(); + }}> + {Device.android && } + + + {t('View.Add.textLinkSettings')} + + { + props.onInsertLink(typeLink, (typeLink === 1 ? + {url: link, display: stateDisplay, displayDisabled, tip: screenTip } : + {linkTo: linkTo, numberTo: numberTo, display: stateDisplay, displayDisabled, tip: screenTip})); + }} text={Device.ios ? t('View.Add.textDone') : ''}> + {Device.android && } + + + { {typeLink === 1 ? { setLink(event.target.value); @@ -127,7 +159,7 @@ const PageLink = props => { } { @@ -142,16 +174,16 @@ const PageLink = props => { onChange={(event) => {setScreenTip(event.target.value)}} /> - + {/* { props.onInsertLink(typeLink, (typeLink === 1 ? - {url: link, display: stateDisplay, tip: screenTip, displayDisabled: displayDisabled } : - {linkTo: linkTo, numberTo: numberTo, display: stateDisplay, tip: screenTip, displayDisabled: displayDisabled})); + {url: link, display: stateDisplay, displayDisabled: displayDisabled, tip: screenTip } : + {linkTo: linkTo, numberTo: numberTo, display: stateDisplay, displayDisabled: displayDisabled, tip: screenTip})); }} /> - + */} ) }; diff --git a/apps/presentationeditor/mobile/src/view/add/AddOther.jsx b/apps/presentationeditor/mobile/src/view/add/AddOther.jsx index 2eb8d5f4a..43f4e9ec4 100644 --- a/apps/presentationeditor/mobile/src/view/add/AddOther.jsx +++ b/apps/presentationeditor/mobile/src/view/add/AddOther.jsx @@ -45,6 +45,8 @@ const AddOther = props => { const _t = t('View.Add', {returnObjects: true}); const showInsertLink = props.storeLinkSettings.canAddLink && !props.storeFocusObjects.paragraphLocked; const hideAddComment = props.hideAddComment(); + const isHyperLink = props.storeFocusObjects.settings.indexOf('hyperlink') > -1; + return ( props.onGetTableStylesPreviews()} routeProps={{ @@ -58,8 +60,14 @@ const AddOther = props => { }}> } + + + {showInsertLink && - + } diff --git a/apps/presentationeditor/mobile/src/view/edit/Edit.jsx b/apps/presentationeditor/mobile/src/view/edit/Edit.jsx index b29d68abd..b47928a1d 100644 --- a/apps/presentationeditor/mobile/src/view/edit/Edit.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/Edit.jsx @@ -14,12 +14,11 @@ import EditChartController from "../../controller/edit/EditChart"; import { EditLinkController } from "../../controller/edit/EditLink"; import { Theme, Layout, Transition, Type, Effect, StyleFillColor, CustomFillColor } from './EditSlide'; -import { PageTextFonts, PageTextFontColor, PageTextHighlightColor, PageTextCustomFontColor, PageTextAddFormatting, PageTextBulletsAndNumbers, PageTextLineSpacing } from './EditText'; +import { PageTextFonts, PageTextFontColor, PageTextHighlightColor, PageTextCustomFontColor, PageTextAddFormatting, PageTextBulletsAndNumbers, PageTextLineSpacing, PageTextBulletsLinkSettings } from './EditText'; import { PageShapeStyle, PageShapeStyleNoFill, PageReplaceContainer, PageReorderContainer, PageAlignContainer, PageShapeBorderColor, PageShapeCustomBorderColor, PageShapeCustomFillColor } from './EditShape'; import { PageImageReplace, PageImageReorder, PageImageAlign, PageLinkSettings } from './EditImage'; import { PageTableStyle, PageTableStyleOptions, PageTableCustomFillColor, PageTableBorderColor, PageTableCustomBorderColor, PageTableReorder, PageTableAlign } from './EditTable'; import { PageChartDesign, PageChartDesignType, PageChartDesignStyle, PageChartDesignFill, PageChartDesignBorder, PageChartCustomFillColor, PageChartBorderColor, PageChartCustomBorderColor, PageChartReorder, PageChartAlign } from './EditChart' -import { PageLinkTo, PageTypeLink } from './EditLink' const routes = [ @@ -78,7 +77,13 @@ const routes = [ }, { path: '/edit-bullets-and-numbers/', - component: PageTextBulletsAndNumbers + component: PageTextBulletsAndNumbers, + routes: [ + { + path: 'image-link/', + component: PageTextBulletsLinkSettings + } + ] }, { path: '/edit-text-line-spacing/', @@ -214,14 +219,9 @@ const routes = [ }, // Link - { - path: '/edit-link-type/', - component: PageTypeLink - }, - { - path: '/edit-link-to/', - component: PageLinkTo + path: '/edit-link/', + component: EditLinkController } ]; @@ -289,18 +289,11 @@ const EditTabs = props => { component: }); } else { - if (settings.indexOf('slide') > -1) { + if (settings.indexOf('image') > -1) { editors.push({ - caption: _t.textSlide, - id: 'edit-slide', - component: - }) - } - if (settings.indexOf('text') > -1) { - editors.push({ - caption: _t.textText, - id: 'edit-text', - component: + caption: _t.textImage, + id: 'edit-image', + component: }) } if (settings.indexOf('shape') > -1) { @@ -310,13 +303,6 @@ const EditTabs = props => { component: }) } - if (settings.indexOf('image') > -1) { - editors.push({ - caption: _t.textImage, - id: 'edit-image', - component: - }) - } if (settings.indexOf('table') > -1) { editors.push({ caption: _t.textTable, @@ -331,11 +317,18 @@ const EditTabs = props => { component: }) } - if (settings.indexOf('hyperlink') > -1) { + if (settings.indexOf('text') > -1) { editors.push({ - caption: _t.textHyperlink, - id: 'edit-link', - component: + caption: _t.textText, + id: 'edit-text', + component: + }) + } + if (settings.indexOf('slide') > -1) { + editors.push({ + caption: _t.textSlide, + id: 'edit-slide', + component: }) } } diff --git a/apps/presentationeditor/mobile/src/view/edit/EditImage.jsx b/apps/presentationeditor/mobile/src/view/edit/EditImage.jsx index 6c891bdfc..5915efdc1 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditImage.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditImage.jsx @@ -15,11 +15,11 @@ const EditImage = props => { return ( - - { {_t.textActualSize} - {_t.textRemoveImage} + {t('View.Edit.textDeleteImage')} ) @@ -177,6 +177,7 @@ const PageLinkSettings = props => { f7.dialog.alert(_t.textEmptyImgUrl, _t.notcriticalErrorTitle); } }; + return ( diff --git a/apps/presentationeditor/mobile/src/view/edit/EditLink.jsx b/apps/presentationeditor/mobile/src/view/edit/EditLink.jsx index 00f233d6c..5a0844f37 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditLink.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditLink.jsx @@ -1,10 +1,10 @@ import React, {useState, useEffect} from 'react'; import {observer, inject} from "mobx-react"; -import {f7, List, ListItem, Page, Navbar, Icon, ListButton, ListInput, Segmented, Button, NavRight, Link} from 'framework7-react'; +import {f7, List, ListItem, Page, Navbar, Icon, ListButton, ListInput, Segmented, Button, NavRight, Link, NavLeft, NavTitle} from 'framework7-react'; import { useTranslation } from 'react-i18next'; import {Device} from "../../../../../common/mobile/utils/device"; -const PageTypeLink = props => { +const PageEditTypeLink = props => { const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); const [typeLink, setTypeLink] = useState(props.curType); @@ -17,12 +17,10 @@ const PageTypeLink = props => { return ( - + {Device.phone && - - - + } @@ -34,7 +32,7 @@ const PageTypeLink = props => { ) }; -const PageLinkTo = props => { +const PageEditLinkTo = props => { const isAndroid = Device.android; const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); @@ -70,12 +68,10 @@ const PageLinkTo = props => { return ( - + {Device.phone && - - - + } @@ -150,14 +146,24 @@ const PageLink = props => { return ( - - {Device.phone && - - - - - - } + + + { + props.isNavigate ? f7.views.current.router.back() : props.closeModal(); + }}> + {Device.android && } + + + {t('View.Edit.textLinkSettings')} + + { + props.onEditLink(typeLink, (typeLink === 1 ? + {url: link, display: stateDisplay, tip: screenTip, displayDisabled } : + {linkTo: linkTo, numberTo: numberTo, display: stateDisplay, tip: screenTip, displayDisabled})); + }} text={Device.ios ? t('View.Edit.textDone') : ''}> + {Device.android && } + + { {typeLink !== 0 ? {setLink(event.target.value)}} /> : @@ -182,7 +188,7 @@ const PageLink = props => { } {setDisplay(event.target.value)}} @@ -195,18 +201,11 @@ const PageLink = props => { /> - { - props.onEditLink(typeLink, (typeLink === 1 ? - {url: link, display: stateDisplay, tip: screenTip, displayDisabled: displayDisabled } : - {linkTo: linkTo, numberTo: numberTo, display: stateDisplay, tip: screenTip, displayDisabled: displayDisabled})); - }} - /> - { - props.onRemoveLink() + props.onRemoveLink(); + props.isNavigate ? f7.views.current.router.back() : props.closeModal(); }} /> @@ -214,9 +213,9 @@ const PageLink = props => { ) }; -const _PageLinkTo = inject("storeFocusObjects")(observer(PageLinkTo)); -const _PageTypeLink = inject("storeFocusObjects")(observer(PageTypeLink)); +const _PageEditLinkTo = inject("storeFocusObjects")(observer(PageEditLinkTo)); +const _PageEditTypeLink = inject("storeFocusObjects")(observer(PageEditTypeLink)); export {PageLink as EditLink, - _PageLinkTo as PageLinkTo, - _PageTypeLink as PageTypeLink} \ No newline at end of file + _PageEditLinkTo as PageEditLinkTo, + _PageEditTypeLink as PageEditTypeLink} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx b/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx index 9190e8ce1..211abf3c2 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditShape.jsx @@ -9,9 +9,9 @@ const EditShape = props => { const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); const storeFocusObjects = props.storeFocusObjects; + const settings = storeFocusObjects.settings; const shapeObject = storeFocusObjects.shapeObject; const canFill = shapeObject && shapeObject.get_CanFill(); - const shapeType = shapeObject.asc_getType(); const hideChangeType = shapeObject.get_FromChart() || shapeObject.get_FromSmartArt() || shapeType=='line' || shapeType=='bentConnector2' || shapeType=='bentConnector3' @@ -38,23 +38,27 @@ const EditShape = props => { onBorderColor: props.onBorderColor }}> } - { !hideChangeType && - } - { !isSmartArtInternal && - } - - - - {_t.textRemoveShape} + {settings.indexOf('image') === -1 && + + } + {settings.indexOf('image') === -1 && + + {_t.textRemoveShape} + + }
) }; diff --git a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx index 4e003d176..41e0d959f 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx @@ -1,10 +1,10 @@ import React, {Fragment, useState, useEffect} from 'react'; import {observer, inject} from "mobx-react"; -import {f7, Swiper, View, SwiperSlide, List, ListItem, Icon, Row, Button, Page, Navbar, Segmented, BlockTitle, NavRight, Link} from 'framework7-react'; +import {f7, Swiper, View, SwiperSlide, List, ListItem, ListButton, ListInput, Icon, Row, Button, Page, Navbar, Segmented, BlockTitle, NavRight, Link} from 'framework7-react'; import { useTranslation } from 'react-i18next'; import {Device} from '../../../../../common/mobile/utils/device'; import { ThemeColorPalette, CustomColorPicker } from '../../../../../common/mobile/lib/component/ThemeColorPalette.jsx'; -import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage'; +import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage.mjs'; import HighlightColorPalette from '../../../../../common/mobile/lib/component/HighlightColorPalette.jsx'; const EditText = props => { @@ -143,7 +143,9 @@ const EditText = props => {
{previewList}
@@ -498,18 +500,69 @@ const PageAdditionalFormatting = props => { ) }; +const PageBulletLinkSettings = (props) => { + const { t } = useTranslation(); + const _t = t('View.Edit', {returnObjects: true}); + const [stateValue, setValue] = useState(''); + + return ( + + + {_t.textAddress} + + {setValue(event.target.value)}} + > + + + + {props.onInsertByUrl(stateValue)}} + > + {_t.textInsertImage} + + + + ) +} + +const PageAddImage = (props) => { + const { t } = useTranslation(); + const _t = t('View.Edit', {returnObjects: true}); + + return ( + + + + + + props.f7router.navigate('/edit-bullets-and-numbers/image-link/', + {props: {onInsertByUrl: props.onInsertByUrl}}) }> + + + + ) +} + const PageBullets = observer(props => { + const { t } = useTranslation(); + const _t = t('View.Edit', {returnObjects: true}); + const storeTextSettings = props.storeTextSettings; const typeBullets = storeTextSettings.typeBullets; const bulletArrays = [ - {id: `id-markers-0`, type: 0, subtype: -1, drawdata: {type: Asc.asc_PreviewBulletType.text, text: 'None'} }, - {id: `id-markers-1`, type: 0, subtype: 1, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x00B7), specialFont: 'Symbol'} }, - {id: `id-markers-2`, type: 0, subtype: 2, drawdata: {type: Asc.asc_PreviewBulletType.char, char: 'o', specialFont: 'Courier New'} }, - {id: `id-markers-3`, type: 0, subtype: 3, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x00A7), specialFont: 'Wingdings'} }, - {id: `id-markers-4`, type: 0, subtype: 4, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x0076), specialFont: 'Wingdings'} }, - {id: `id-markers-5`, type: 0, subtype: 5, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x00D8), specialFont: 'Wingdings'} }, - {id: `id-markers-6`, type: 0, subtype: 6, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x00FC), specialFont: 'Wingdings'} }, - {id: `id-markers-7`, type: 0, subtype: 7, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x00A8), specialFont: 'Symbol'} } + {id: 'id-markers-0', type: 0, subtype: -1, drawdata: {type: Asc.asc_PreviewBulletType.text, text: 'None'} }, + {id: 'id-markers-1', type: 0, subtype: 1, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x00B7), specialFont: 'Symbol'} }, + {id: 'id-markers-2', type: 0, subtype: 2, drawdata: {type: Asc.asc_PreviewBulletType.char, char: 'o', specialFont: 'Courier New'} }, + {id: 'id-markers-3', type: 0, subtype: 3, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x00A7), specialFont: 'Wingdings'} }, + {id: 'id-markers-4', type: 0, subtype: 4, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x0076), specialFont: 'Wingdings'} }, + {id: 'id-markers-5', type: 0, subtype: 5, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x00D8), specialFont: 'Wingdings'} }, + {id: 'id-markers-6', type: 0, subtype: 6, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x00FC), specialFont: 'Wingdings'} }, + {id: 'id-markers-7', type: 0, subtype: 7, drawdata: {type: Asc.asc_PreviewBulletType.char, char: String.fromCharCode(0x00A8), specialFont: 'Symbol'} } ]; useEffect(() => { @@ -539,6 +592,13 @@ const PageBullets = observer(props => {
))} + { !Device.isPhone && + + } ) }); @@ -547,14 +607,14 @@ const PageNumbers = observer(props => { const storeTextSettings = props.storeTextSettings; const typeNumbers = storeTextSettings.typeNumbers; const numberArrays = [ - {id: `id-numbers-0`, type: 1, subtype: -1, drawdata: {type: Asc.asc_PreviewBulletType.text, text: 'None'}}, - {id: `id-numbers-4`, type: 1, subtype: 4, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.UpperLetterDot_Left}}, - {id: `id-numbers-5`, type: 1, subtype: 5, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.LowerLetterBracket_Left}}, - {id: `id-numbers-6`, type: 1, subtype: 6, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.LowerLetterDot_Left}}, - {id: `id-numbers-1`, type: 1, subtype: 1, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.DecimalDot_Right}}, - {id: `id-numbers-2`, type: 1, subtype: 2, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.DecimalBracket_Right}}, - {id: `id-numbers-3`, type: 1, subtype: 3, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.UpperRomanDot_Right}}, - {id: `id-numbers-7`, type: 1, subtype: 7, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.LowerRomanDot_Right}} + {id: 'id-numbers-0', type: 1, subtype: -1, drawdata: {type: Asc.asc_PreviewBulletType.text, text: 'None'}}, + {id: 'id-numbers-4', type: 1, subtype: 4, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.UpperLetterDot_Left}}, + {id: 'id-numbers-5', type: 1, subtype: 5, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.LowerLetterBracket_Left}}, + {id: 'id-numbers-6', type: 1, subtype: 6, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.LowerLetterDot_Left}}, + {id: 'id-numbers-1', type: 1, subtype: 1, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.DecimalDot_Right}}, + {id: 'id-numbers-2', type: 1, subtype: 2, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.DecimalBracket_Right}}, + {id: 'id-numbers-3', type: 1, subtype: 3, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.UpperRomanDot_Right}}, + {id: 'id-numbers-7', type: 1, subtype: 7, drawdata: {type: Asc.asc_PreviewBulletType.number, numberingType: Asc.asc_oAscNumberingLevel.LowerRomanDot_Right}} ]; useEffect(() => { @@ -572,7 +632,7 @@ const PageNumbers = observer(props => { {numberArrays.map( number => ( - { storeTextSettings.resetNumbers(number.subtype); @@ -620,8 +680,19 @@ const PageBulletsAndNumbers = props => { storeTextSettings={storeTextSettings} onBullet={props.onBullet} getIconsBulletsAndNumbers={props.getIconsBulletsAndNumbers} + onImageSelect={props.onImageSelect} + onInsertByUrl={props.onInsertByUrl} /> + { Device.phone && + + + + } ) @@ -671,6 +742,7 @@ const PageTextCustomFontColor = inject("storeTextSettings", "storePalette")(obse const PageTextAddFormatting = inject("storeTextSettings", "storeFocusObjects")(observer(PageAdditionalFormatting)); const PageTextBulletsAndNumbers = inject("storeTextSettings", "storeFocusObjects")(observer(PageBulletsAndNumbers)); const PageTextLineSpacing = inject("storeTextSettings", "storeFocusObjects")(observer(PageLineSpacing)); +const PageTextBulletsLinkSettings = inject("storeTextSettings", "storeFocusObjects")(observer(PageBulletLinkSettings)); export { EditTextContainer as EditText, @@ -680,5 +752,6 @@ export { PageTextCustomFontColor, PageTextAddFormatting, PageTextBulletsAndNumbers, - PageTextLineSpacing + PageTextLineSpacing, + PageTextBulletsLinkSettings }; \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/view/settings/ApplicationSettings.jsx b/apps/presentationeditor/mobile/src/view/settings/ApplicationSettings.jsx index 1d4983ef9..d16ad8151 100644 --- a/apps/presentationeditor/mobile/src/view/settings/ApplicationSettings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/ApplicationSettings.jsx @@ -3,7 +3,7 @@ import { observer, inject } from "mobx-react"; import {f7, Page, Navbar, List, ListItem, BlockTitle, Toggle } from "framework7-react"; import { useTranslation } from "react-i18next"; import { Themes } from '../../../../../common/mobile/lib/controller/Themes.js'; -import { LocalStorage } from "../../../../../common/mobile/utils/LocalStorage.js"; +import { LocalStorage } from "../../../../../common/mobile/utils/LocalStorage.mjs"; const PageApplicationSettings = props => { const { t } = useTranslation(); @@ -46,21 +46,23 @@ const PageApplicationSettings = props => { }} /> - - {Themes.switchDarkTheme(!isThemeDark), setIsThemeDark(!isThemeDark)}}> - - {/**/} } + + + {Themes.switchDarkTheme(!isThemeDark), setIsThemeDark(!isThemeDark)}}> + + + {/* {_isShowMacros && */} - - - + + + {/* } */} ); diff --git a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx index d0fe47f00..2f2615383 100644 --- a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx @@ -12,6 +12,7 @@ import PresentationSettingsController from "../../controller/settings/Presentati import { PresentationColorSchemes } from "./PresentationSettings"; // import PresentationAboutController from '../../controller/settings/PresentationAbout'; import About from '../../../../../common/mobile/lib/view/About'; +import SharingSettings from "../../../../../common/mobile/lib/view/SharingSettings"; const routes = [ { @@ -45,6 +46,13 @@ const routes = [ { path: '/about/', component: About + }, + + // Sharing Settings + + { + path: '/sharing-settings/', + component: SharingSettings } /*{ path: '/presentation-settings/', @@ -178,6 +186,9 @@ const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer( + + + {_canDownload && diff --git a/apps/spreadsheeteditor/embed/index.html b/apps/spreadsheeteditor/embed/index.html index 01aae5619..63222e9ba 100644 --- a/apps/spreadsheeteditor/embed/index.html +++ b/apps/spreadsheeteditor/embed/index.html @@ -252,7 +252,7 @@ - + diff --git a/apps/spreadsheeteditor/embed/index.html.deploy b/apps/spreadsheeteditor/embed/index.html.deploy index 3bf4b42b7..cc75bed5b 100644 --- a/apps/spreadsheeteditor/embed/index.html.deploy +++ b/apps/spreadsheeteditor/embed/index.html.deploy @@ -244,7 +244,7 @@ - + diff --git a/apps/spreadsheeteditor/embed/index_loader.html b/apps/spreadsheeteditor/embed/index_loader.html index 3c4f5a914..5777a43a0 100644 --- a/apps/spreadsheeteditor/embed/index_loader.html +++ b/apps/spreadsheeteditor/embed/index_loader.html @@ -326,7 +326,7 @@ - + diff --git a/apps/spreadsheeteditor/embed/index_loader.html.deploy b/apps/spreadsheeteditor/embed/index_loader.html.deploy index dc420fead..9857c016e 100644 --- a/apps/spreadsheeteditor/embed/index_loader.html.deploy +++ b/apps/spreadsheeteditor/embed/index_loader.html.deploy @@ -318,7 +318,7 @@ - + diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index a479d3b58..474a9220e 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -526,6 +526,19 @@ SSE.ApplicationController = new(function(){ message = me.errorTokenExpire; break; + case Asc.c_oAscError.ID.ConvertationOpenFormat: + if (errData === 'pdf') + message = me.errorInconsistentExtPdf.replace('%1', docConfig.fileType || ''); + else if (errData === 'docx') + message = me.errorInconsistentExtDocx.replace('%1', docConfig.fileType || ''); + else if (errData === 'xlsx') + message = me.errorInconsistentExtXlsx.replace('%1', docConfig.fileType || ''); + else if (errData === 'pptx') + message = me.errorInconsistentExtPptx.replace('%1', docConfig.fileType || ''); + else + message = me.errorInconsistentExt; + break; + default: message = me.errorDefaultMessage.replace('%1', id); break; @@ -732,6 +745,11 @@ SSE.ApplicationController = new(function(){ errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.', errorTokenExpire: 'The document security token has expired.
Please contact your Document Server administrator.', - openErrorText: 'An error has occurred while opening the file' + openErrorText: 'An error has occurred while opening the file', + errorInconsistentExtDocx: 'An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.', + errorInconsistentExtXlsx: 'An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPptx: 'An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPdf: 'An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.', + errorInconsistentExt: 'An error has occurred while opening the file.
The file content does not match the file extension.' } })(); \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/be.json b/apps/spreadsheeteditor/embed/locale/be.json index 80a4b9f80..edcbd8737 100644 --- a/apps/spreadsheeteditor/embed/locale/be.json +++ b/apps/spreadsheeteditor/embed/locale/be.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Вышыня", "common.view.modals.txtShare": "Падзяліцца спасылкай", "common.view.modals.txtWidth": "Шырыня", + "common.view.SearchBar.textFind": "Пошук", "SSE.ApplicationController.convertationErrorText": "Пераўтварыць не атрымалася.", "SSE.ApplicationController.convertationTimeoutText": "Час чакання пераўтварэння сышоў.", "SSE.ApplicationController.criticalErrorTitle": "Памылка", @@ -33,6 +34,7 @@ "SSE.ApplicationView.txtEmbed": "Убудаваць", "SSE.ApplicationView.txtFileLocation": "Перайсці да дакументаў", "SSE.ApplicationView.txtFullScreen": "Поўнаэкранны рэжым", - "SSE.ApplicationView.txtPrint": "Друк", + "SSE.ApplicationView.txtPrint": "Друкаванне", + "SSE.ApplicationView.txtSearch": "Пошук", "SSE.ApplicationView.txtShare": "Падзяліцца" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/da.json b/apps/spreadsheeteditor/embed/locale/da.json index b8b7111f6..e69316973 100644 --- a/apps/spreadsheeteditor/embed/locale/da.json +++ b/apps/spreadsheeteditor/embed/locale/da.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Højde", "common.view.modals.txtShare": "Del link", "common.view.modals.txtWidth": "Bredde", + "common.view.SearchBar.textFind": "Find", "SSE.ApplicationController.convertationErrorText": "Konvertering fejlede.", "SSE.ApplicationController.convertationTimeoutText": "Konverteringstidsfrist er overskredet", "SSE.ApplicationController.criticalErrorTitle": "Fejl", @@ -16,7 +17,7 @@ "SSE.ApplicationController.errorForceSave": "Der skete en fejl under gemning af filen. Brug venligst 'Download som' for at gemme filen på din computers harddisk eller prøv igen senere.", "SSE.ApplicationController.errorLoadingFont": "Skrifttyper er ikke indlæst.
Kontakt din dokument server administrator.", "SSE.ApplicationController.errorTokenExpire": "Dokumentets sikkerhedstoken er udløbet.
Kontakt venligst din Document Server administrator. ", - "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet, og filversionen er blevet ændret.
Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.", + "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet og filversionen er blevet ændret.
Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.", "SSE.ApplicationController.errorUserDrop": "Der kan ikke opnås adgang til filen lige nu. ", "SSE.ApplicationController.notcriticalErrorTitle": "Advarsel", "SSE.ApplicationController.openErrorText": "Der skete en fejl under åbningen af filen", @@ -34,5 +35,6 @@ "SSE.ApplicationView.txtFileLocation": "Åben filplacering", "SSE.ApplicationView.txtFullScreen": "Fuld skærm", "SSE.ApplicationView.txtPrint": "Udskriv", + "SSE.ApplicationView.txtSearch": "Søg", "SSE.ApplicationView.txtShare": "Del" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/en.json b/apps/spreadsheeteditor/embed/locale/en.json index 1a99fee2a..29a9aed10 100644 --- a/apps/spreadsheeteditor/embed/locale/en.json +++ b/apps/spreadsheeteditor/embed/locale/en.json @@ -15,6 +15,11 @@ "SSE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "SSE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", "SSE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "SSE.ApplicationController.errorInconsistentExt": "An error has occurred while opening the file.
The file content does not match the file extension.", + "SSE.ApplicationController.errorInconsistentExtDocx": "An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.", + "SSE.ApplicationController.errorInconsistentExtPdf": "An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.", + "SSE.ApplicationController.errorInconsistentExtPptx": "An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.", + "SSE.ApplicationController.errorInconsistentExtXlsx": "An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.", "SSE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "SSE.ApplicationController.errorTokenExpire": "The document security token has expired.
Please contact your Document Server administrator.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "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.", diff --git a/apps/spreadsheeteditor/embed/locale/hu.json b/apps/spreadsheeteditor/embed/locale/hu.json index 03c9f32ed..dad638371 100644 --- a/apps/spreadsheeteditor/embed/locale/hu.json +++ b/apps/spreadsheeteditor/embed/locale/hu.json @@ -22,7 +22,7 @@ "SSE.ApplicationController.notcriticalErrorTitle": "Figyelmeztetés", "SSE.ApplicationController.openErrorText": "Hiba történt a fájl megnyitása során.", "SSE.ApplicationController.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", - "SSE.ApplicationController.textAnonymous": "Anonim", + "SSE.ApplicationController.textAnonymous": "Névtelen", "SSE.ApplicationController.textGuest": "Vendég", "SSE.ApplicationController.textLoadingDocument": "Munkafüzet betöltése", "SSE.ApplicationController.textOf": "-nak/-nek a ", diff --git a/apps/spreadsheeteditor/embed/locale/id.json b/apps/spreadsheeteditor/embed/locale/id.json index d2ba60a9a..e3a20482e 100644 --- a/apps/spreadsheeteditor/embed/locale/id.json +++ b/apps/spreadsheeteditor/embed/locale/id.json @@ -4,6 +4,7 @@ "common.view.modals.txtHeight": "Tinggi", "common.view.modals.txtShare": "Bagi tautan", "common.view.modals.txtWidth": "Lebar", + "common.view.SearchBar.textFind": "Temukan", "SSE.ApplicationController.convertationErrorText": "Konversi gagal.", "SSE.ApplicationController.convertationTimeoutText": "Waktu konversi habis.", "SSE.ApplicationController.criticalErrorTitle": "Kesalahan", @@ -16,7 +17,7 @@ "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.errorUpdateVersionOnDisconnect": "Koneksi internet sudah kembali dan versi file sudah diganti.
Sebelum Anda bisa melanjutkan kerja, Anda perlu mengunduh file atau salin konten untuk memastikan tidak ada yang hilang, lalu muat ulang halaman ini.", "SSE.ApplicationController.errorUserDrop": "File tidak dapat di akses", "SSE.ApplicationController.notcriticalErrorTitle": "Peringatan", "SSE.ApplicationController.openErrorText": "Eror ketika membuka file.", @@ -34,5 +35,6 @@ "SSE.ApplicationView.txtFileLocation": "Buka Dokumen", "SSE.ApplicationView.txtFullScreen": "Layar penuh", "SSE.ApplicationView.txtPrint": "Cetak", + "SSE.ApplicationView.txtSearch": "Cari", "SSE.ApplicationView.txtShare": "Bagikan" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/ru.json b/apps/spreadsheeteditor/embed/locale/ru.json index a9b157c5b..dc0d8d88a 100644 --- a/apps/spreadsheeteditor/embed/locale/ru.json +++ b/apps/spreadsheeteditor/embed/locale/ru.json @@ -15,6 +15,11 @@ "SSE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "SSE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", "SSE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", + "SSE.ApplicationController.errorInconsistentExt": "При открытии файла произошла ошибка.
Содержимое файла не соответствует расширению файла.", + "SSE.ApplicationController.errorInconsistentExtDocx": "При открытии файла произошла ошибка.
Содержимое файла соответствует документам (например, docx), но файл имеет несоответствующее расширение: %1.", + "SSE.ApplicationController.errorInconsistentExtPdf": "При открытии файла произошла ошибка.
Содержимое файла соответствует одному из следующих форматов: pdf/djvu/xps/oxps, но файл имеет несоответствующее расширение: %1.", + "SSE.ApplicationController.errorInconsistentExtPptx": "При открытии файла произошла ошибка.
Содержимое файла соответствует презентациям (например, pptx), но файл имеет несоответствующее расширение: %1.", + "SSE.ApplicationController.errorInconsistentExtXlsx": "При открытии файла произошла ошибка.
Содержимое файла соответствует электронным таблицам (например, xlsx), но файл имеет несоответствующее расширение: %1.", "SSE.ApplicationController.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "SSE.ApplicationController.errorTokenExpire": "Истек срок действия токена безопасности документа.
Пожалуйста, обратитесь к администратору Сервера документов.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Соединение было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", diff --git a/apps/spreadsheeteditor/main/app.js b/apps/spreadsheeteditor/main/app.js index 74c701ad7..d00247a5f 100644 --- a/apps/spreadsheeteditor/main/app.js +++ b/apps/spreadsheeteditor/main/app.js @@ -53,7 +53,7 @@ require.config({ perfectscrollbar: 'common/main/lib/mods/perfect-scrollbar', jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel', xregexp : '../vendor/xregexp/xregexp-all-min', - sockjs : '../vendor/sockjs/sockjs.min', + socketio : '../vendor/socketio/socket.io.min', allfonts : '../../sdkjs/common/AllFonts', sdk : '../../sdkjs/cell/sdk-all-min', api : 'api/documents/api', @@ -106,7 +106,7 @@ require.config({ 'underscore', 'allfonts', 'xregexp', - 'sockjs' + 'socketio' ] }, gateway: { diff --git a/apps/spreadsheeteditor/main/app/controller/CellEditor.js b/apps/spreadsheeteditor/main/app/controller/CellEditor.js index b79e41345..27389b535 100644 --- a/apps/spreadsheeteditor/main/app/controller/CellEditor.js +++ b/apps/spreadsheeteditor/main/app/controller/CellEditor.js @@ -153,7 +153,7 @@ define([ }, onApiSelectionChanged: function(info) { - if (this.viewmode) return; // signed file + if (this.viewmode || !info) return; // signed file var seltype = info.asc_getSelectionType(), coauth_disable = (!this.mode.isEditMailMerge && !this.mode.isEditDiagram && !this.mode.isEditOle) ? (info.asc_getLocked() === true || info.asc_getLockedTable() === true || info.asc_getLockedPivotTable()===true) : false; diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index de94aa22f..d1b023d43 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -45,6 +45,7 @@ define([ 'spreadsheeteditor/main/app/view/SortDialog', 'spreadsheeteditor/main/app/view/RemoveDuplicatesDialog', 'spreadsheeteditor/main/app/view/DataValidationDialog', + 'spreadsheeteditor/main/app/view/ExternalLinksDlg', 'common/main/lib/view/OptionsDialog' ], function () { 'use strict'; @@ -96,7 +97,8 @@ define([ 'data:sortcustom': this.onCustomSort, 'data:remduplicates': this.onRemoveDuplicates, 'data:datavalidation': this.onDataValidation, - 'data:fromtext': this.onDataFromText + 'data:fromtext': this.onDataFromText, + 'data:externallinks': this.onExternalLinks }, 'Statusbar': { 'sheet:changed': this.onApiSheetChanged @@ -429,6 +431,15 @@ define([ } }, + onExternalLinks: function() { + (new SSE.Views.ExternalLinksDlg({ + api: this.api, + handler: function(result) { + Common.NotificationCenter.trigger('edit:complete'); + } + })).show(); + }, + onWorksheetLocked: function(index,locked) { if (index == this.api.asc_getActiveWorksheetIndex()) { Common.Utils.lockControls(Common.enumLock.sheetLock, locked, {array: this.view.btnsSortDown.concat(this.view.btnsSortUp, this.view.btnCustomSort, this.view.btnGroup, this.view.btnUngroup)}); @@ -436,7 +447,7 @@ define([ }, onChangeProtectWorkbook: function() { - Common.Utils.lockControls(Common.enumLock.wbLock, this.api.asc_isProtectedWorkbook(), {array: [this.view.btnDataFromText]}); + Common.Utils.lockControls(Common.enumLock.wbLock, this.api.asc_isProtectedWorkbook(), {array: [this.view.btnDataFromText, this.view.btnExternalLinks]}); }, onApiSheetChanged: function() { diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 461a909d1..6364a2ca4 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -119,6 +119,11 @@ define([ me._state = {wsLock: false, wsProps: []}; me.fastcoauthtips = []; me._TtHeight = 20; + me.externalData = { + stackRequests: [], + stackResponse: [], + callback: undefined + }; /** coauthoring begin **/ this.wrapEvents = { apiHideComment: _.bind(this.onApiHideComment, this), @@ -211,6 +216,7 @@ define([ view.pmiFilterCells.menu.on('item:click', _.bind(me.onFilterCells, me)); view.pmiReapply.on('click', _.bind(me.onReapply, me)); view.pmiCondFormat.on('click', _.bind(me.onCondFormat, me)); + view.mnuRefreshPivot.on('click', _.bind(me.onRefreshPivot, me)); view.mnuGroupPivot.on('click', _.bind(me.onGroupPivot, me)); view.mnuUnGroupPivot.on('click', _.bind(me.onGroupPivot, me)); view.pmiClear.menu.on('item:click', _.bind(me.onClear, me)); @@ -262,6 +268,7 @@ define([ view.menuImgMacro.on('click', _.bind(me.onImgMacro, me)); view.menuImgEditPoints.on('click', _.bind(me.onImgEditPoints, me)); view.pmiGetRangeList.on('click', _.bind(me.onGetLink, me)); + view.menuParagraphEquation.menu.on('item:click', _.bind(me.convertEquation, me)); if (!me.permissions.isEditMailMerge && !me.permissions.isEditDiagram && !me.permissions.isEditOle) { var oleEditor = me.getApplication().getController('Common.Controllers.ExternalOleEditor').getView('Common.Views.ExternalOleEditor'); @@ -373,6 +380,12 @@ define([ 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)); + if (this.permissions.canRequestReferenceData) { + this.api.asc_registerCallback('asc_onUpdateExternalReference', _.bind(this.onUpdateExternalReference, this)); + Common.Gateway.on('setreferencedata', _.bind(this.setReferenceData, this)); + } + this.api.asc_registerCallback('asc_onShowMathTrack', _.bind(this.onShowMathTrack, this)); + this.api.asc_registerCallback('asc_onHideMathTrack', _.bind(this.onHideMathTrack, this)); } this.api.asc_registerCallback('asc_onShowForeignCursorLabel', _.bind(this.onShowForeignCursorLabel, this)); this.api.asc_registerCallback('asc_onHideForeignCursorLabel', _.bind(this.onHideForeignCursorLabel, this)); @@ -567,6 +580,12 @@ define([ })).show(); }, + onRefreshPivot: function(){ + if (this.api) { + this.propsPivot.asc_refresh(this.api); + } + }, + onGroupPivot: function(item) { item.value=='grouping' ? this.api.asc_groupPivot() : this.api.asc_ungroupPivot(); }, @@ -1839,6 +1858,7 @@ define([ me.documentHolder.cmpEl.offset().top - $(window).scrollTop() ]; me.tooltips.coauth.apiHeight = me.documentHolder.cmpEl.height(); + me.tooltips.coauth.apiWidth = me.documentHolder.cmpEl.width(); var rightMenu = $('#right-menu'); me.tooltips.coauth.rightMenuWidth = rightMenu.is(':visible') ? rightMenu.width() : 0; me.tooltips.coauth.bodyWidth = $(window).width(); @@ -1968,9 +1988,32 @@ define([ this.currentMenu && this.currentMenu.isVisible()){ (this.permissions.isEdit && !this._isDisabled) ? this.fillMenuProps(info, true) : this.fillViewMenuProps(info, true); } + + if (!this.mouse.isLeftButtonDown) return; + + if (this.permissions && this.permissions.isEdit) { + var selectedObjects = this.api.asc_getGraphicObjectProps(), + i = -1, + in_equation = false, + locked = false; + while (++i < selectedObjects.length) { + var type = selectedObjects[i].asc_getObjectType(); + if (type === Asc.c_oAscTypeSelectElement.Math) { + in_equation = true; + } else if (type === Asc.c_oAscTypeSelectElement.Paragraph) { + var value = selectedObjects[i].asc_getObjectValue(); + value && (locked = locked || value.asc_getLocked()); + } + } + if (in_equation) { + this._state.equationLocked = locked; + this.disableEquationBar(); + } + } }, fillMenuProps: function(cellinfo, showMenu, event){ + if (!cellinfo) return; var iscellmenu, isrowmenu, iscolmenu, isallmenu, ischartmenu, isimagemenu, istextshapemenu, isshapemenu, istextchartmenu, isimageonly, isslicermenu, documentHolder = this.documentHolder, seltype = cellinfo.asc_getSelectionType(), @@ -2250,6 +2293,14 @@ define([ } else this.clearEquationMenu(4); + documentHolder.menuParagraphEquation.setVisible(isEquation); + documentHolder.menuParagraphEquation.setDisabled(isObjLocked); + if (isEquation) { + var eq = this.api.asc_GetMathInputType(); + documentHolder.menuParagraphEquation.menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode); + documentHolder.menuParagraphEquation.menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX); + } + if (showMenu) this.showPopupMenu(documentHolder.textInShapeMenu, {}, event); documentHolder.menuParagraphBullets.setDisabled(isSmartArt || isSmartArtInternal); @@ -2258,13 +2309,13 @@ define([ 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; - + this.propsPivot = cellinfo.asc_getPivotTableInfo(); var iscelledit = this.api.isCellEdited, formatTableInfo = cellinfo.asc_getFormatTableInfo(), isinsparkline = (cellinfo.asc_getSparklineInfo()!==null), isintable = (formatTableInfo !== null), ismultiselect = cellinfo.asc_getMultiselect(), - inPivot = !!cellinfo.asc_getPivotTableInfo(); + inPivot = !!this.propsPivot; documentHolder.ssMenu.formatTableName = (isintable) ? formatTableInfo.asc_getTableName() : null; documentHolder.ssMenu.cellColor = xfs.asc_getFillColor(); documentHolder.ssMenu.fontColor = xfs.asc_getFontColor(); @@ -2285,6 +2336,7 @@ define([ documentHolder.pmiFilterCells.setVisible(iscellmenu && !iscelledit && !diagramOrMergeEditor && !inPivot); documentHolder.pmiReapply.setVisible((iscellmenu||isallmenu) && !iscelledit && !diagramOrMergeEditor && !inPivot); documentHolder.pmiCondFormat.setVisible(!iscelledit && !diagramOrMergeEditor); + documentHolder.mnuRefreshPivot.setVisible(iscellmenu && !iscelledit && !diagramOrMergeEditor && inPivot); documentHolder.mnuGroupPivot.setVisible(iscellmenu && !iscelledit && !diagramOrMergeEditor && inPivot); documentHolder.mnuUnGroupPivot.setVisible(iscellmenu && !iscelledit && !diagramOrMergeEditor && inPivot); documentHolder.ssMenu.items[12].setVisible((iscellmenu||isallmenu||isinsparkline) && !iscelledit); @@ -2316,7 +2368,7 @@ define([ /** coauthoring begin **/ var celcomments = cellinfo.asc_getComments(); // celcomments===null - has comment, but no permissions to view it - documentHolder.ssMenu.items[19].setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments && celcomments && (celcomments.length < 1)); + documentHolder.ssMenu.items[20].setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments && celcomments && (celcomments.length < 1)); documentHolder.pmiAddComment.setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments && celcomments && (celcomments.length < 1)); /** coauthoring end **/ documentHolder.pmiCellMenuSeparator.setVisible(iscellmenu && !iscelledit || isrowmenu || iscolmenu || isallmenu); @@ -2385,6 +2437,7 @@ define([ var canGroup = this.api.asc_canGroupPivot(); documentHolder.mnuGroupPivot.setDisabled(isPivotLocked || !canGroup || this._state.wsLock); documentHolder.mnuUnGroupPivot.setDisabled(isPivotLocked || !canGroup || this._state.wsLock); + documentHolder.mnuRefreshPivot.setDisabled(isPivotLocked || this._state.wsLock); } if (showMenu) this.showPopupMenu(documentHolder.ssMenu, {}, event); @@ -2403,6 +2456,7 @@ define([ documentHolder.menuParagraphVAlign.setVisible(false); // убрать после того, как заголовок можно будет растягивать по вертикали!! documentHolder.menuParagraphDirection.setVisible(false); // убрать после того, как заголовок можно будет растягивать по вертикали!! documentHolder.pmiTextAdvanced.setVisible(false); + documentHolder.menuParagraphEquation.setVisible(false); documentHolder.textInShapeMenu.items[9].setVisible(false); documentHolder.menuParagraphBullets.setVisible(false); documentHolder.textInShapeMenu.items[3].setVisible(false); @@ -2412,6 +2466,7 @@ define([ }, fillViewMenuProps: function(cellinfo, showMenu, event){ + if (!cellinfo) return; var documentHolder = this.documentHolder, seltype = cellinfo.asc_getSelectionType(), isCellLocked = cellinfo.asc_getLocked(), @@ -3317,7 +3372,7 @@ define([ }, onChangeCropState: function(state) { - this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true); + this.documentHolder.menuImgCrop && this.documentHolder.menuImgCrop.menu.items[0].setChecked(state, true); }, initEquationMenu: function() { @@ -4213,6 +4268,203 @@ define([ } }, + onUpdateExternalReference: function(arr, callback) { + if (this.permissions.isEdit && !this._isDisabled) { + var me = this; + me.externalData = { + stackRequests: [], + stackResponse: [], + callback: undefined + }; + arr && arr.length>0 && arr.forEach(function(item) { + var data; + switch (item.asc_getType()) { + case Asc.c_oAscExternalReferenceType.link: + data = {link: item.asc_getData()}; + break; + case Asc.c_oAscExternalReferenceType.path: + data = {path: item.asc_getData()}; + break; + case Asc.c_oAscExternalReferenceType.referenceData: + data = {referenceData: item.asc_getData()}; + break; + } + data && me.externalData.stackRequests.push(data); + }); + me.externalData.callback = callback; + me.requestReferenceData(); + } + }, + + requestReferenceData: function() { + if (this.externalData.stackRequests.length>0) { + var data = this.externalData.stackRequests.shift(); + Common.Gateway.requestReferenceData(data); + } + }, + + setReferenceData: function(data) { + if (this.permissions.isEdit && !this._isDisabled) { + data && this.externalData.stackResponse.push(data); + if (this.externalData.stackRequests.length>0) + this.requestReferenceData(); + else if (this.externalData.callback) + this.externalData.callback(this.externalData.stackResponse); + } + }, + + onShowMathTrack: function(bounds) { + if (bounds[3] < 0) { + this.onHideMathTrack(); + return; + } + var me = this, + documentHolder = me.documentHolder, + eqContainer = documentHolder.cmpEl.find('#equation-container'); + + // Prepare menu container + if (eqContainer.length < 1) { + var equationsStore = me.getApplication().getCollection('EquationGroups'), + eqStr = '
'; + + me.getApplication().getController('Toolbar').onMathTypes(); + + me.equationBtns = []; + for (var i = 0; i < equationsStore.length; ++i) { + var style = 'margin-right: 8px;' + (i==0 ? 'margin-left: 5px;' : ''); + eqStr += ''; + } + eqStr += '
'; + eqStr += ''; + eqStr += '
'; + eqContainer = $(eqStr); + documentHolder.cmpEl.append(eqContainer); + var onShowBefore = function (menu) { + var index = menu.options.value, + group = equationsStore.at(index); + var equationPicker = new Common.UI.DataViewSimple({ + el: $('#id-document-holder-btn-equation-menu-' + index, menu.cmpEl), + parentMenu: menu, + store: group.get('groupStore'), + scrollAlwaysVisible: true, + showLast: false, + restoreHeight: 450, + itemTemplate: _.template( + '
' + + '
' + + '
') + }); + equationPicker.on('item:click', function(picker, item, record, e) { + if (me.api) { + if (record) + me.api.asc_AddMath(record.get('data').equationType); + } + }); + menu.off('show:before', onShowBefore); + }; + var bringForward = function (menu) { + eqContainer.addClass('has-open-menu'); + }; + var sendBackward = function (menu) { + eqContainer.removeClass('has-open-menu'); + }; + for (var i = 0; i < equationsStore.length; ++i) { + var equationGroup = equationsStore.at(i); + var btn = new Common.UI.Button({ + parentEl: $('#id-document-holder-btn-equation-' + i, documentHolder.cmpEl), + cls : 'btn-toolbar no-caret', + iconCls : 'svgicon ' + equationGroup.get('groupIcon'), + hint : equationGroup.get('groupName'), + menu : new Common.UI.Menu({ + cls: 'menu-shapes', + value: i, + restoreHeight: equationGroup.get('groupHeight') ? parseInt(equationGroup.get('groupHeight')) : true, + items: [ + { template: _.template('') } + ] + }) + }); + btn.menu.on('show:before', onShowBefore); + btn.menu.on('show:before', bringForward); + btn.menu.on('hide:after', sendBackward); + me.equationBtns.push(btn); + } + + me.equationSettingsBtn = new Common.UI.Button({ + parentEl: $('#id-document-holder-btn-equation-settings', documentHolder.cmpEl), + cls : 'btn-toolbar no-caret', + iconCls : 'toolbar__icon more-vertical', + hint : me.documentHolder.advancedEquationText, + menu : me.documentHolder.createEquationMenu('popuptbeqinput', 'tl-bl') + }); + me.equationSettingsBtn.menu.options.initMenu = function() { + var eq = me.api.asc_GetMathInputType(); + var menu = me.equationSettingsBtn.menu; + menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode); + menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX); + }; + me.equationSettingsBtn.menu.on('item:click', _.bind(me.convertEquation, me)); + me.equationSettingsBtn.menu.on('show:before', function(menu) { + menu.options.initMenu(); + }); + } + + if (!me.tooltips.coauth.XY) + me.onDocumentResize(); + + var showPoint = [(bounds[0] + bounds[2])/2 - eqContainer.outerWidth()/2, bounds[1] - eqContainer.outerHeight() - 10]; + if (showPoint[1]<0) { + showPoint[1] = bounds[3] + 10; + } + showPoint[1] = Math.min(me.tooltips.coauth.apiHeight - eqContainer.outerHeight(), Math.max(0, showPoint[1])); + eqContainer.css({left: showPoint[0], top : showPoint[1]}); + + var menuAlign = (me.tooltips.coauth.apiHeight - showPoint[1] - eqContainer.outerHeight() < 220) ? 'bl-tl' : 'tl-bl'; + me.equationBtns.forEach(function(item){ + item && (item.menu.menuAlign = menuAlign); + }); + me.equationSettingsBtn.menu.menuAlign = menuAlign; + if (eqContainer.is(':visible')) { + if (me.equationSettingsBtn.menu.isVisible()) { + me.equationSettingsBtn.menu.options.initMenu(); + me.equationSettingsBtn.menu.alignPosition(); + } + } else { + eqContainer.show(); + } + me.disableEquationBar(); + }, + + onHideMathTrack: function() { + var eqContainer = this.documentHolder.cmpEl.find('#equation-container'); + if (eqContainer.is(':visible')) { + eqContainer.hide(); + } + }, + + disableEquationBar: function() { + var eqContainer = this.documentHolder.cmpEl.find('#equation-container'), + disabled = this._isDisabled || this._state.equationLocked; + + if (eqContainer.length>0 && eqContainer.is(':visible')) { + this.equationBtns.forEach(function(item){ + item && item.setDisabled(!!disabled); + }); + this.equationSettingsBtn.setDisabled(!!disabled); + } + }, + + convertEquation: function(menu, item, e) { + if (this.api) { + if (item.options.type=='input') + this.api.asc_SetMathInputType(item.value); + else if (item.options.type=='view') + this.api.asc_ConvertMathView(item.value.linear, item.value.all); + } + }, + getUserName: function(id){ var usersStore = SSE.getCollection('Common.Collections.Users'); if (usersStore){ @@ -4236,6 +4488,7 @@ define([ SetDisabled: function(state, canProtect) { this._isDisabled = state; this._canProtect = canProtect; + this.disableEquationBar(); }, guestText : 'Guest', diff --git a/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js b/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js index 29cf784bc..af5a1c710 100644 --- a/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js +++ b/apps/spreadsheeteditor/main/app/controller/FormulaDialog.js @@ -45,7 +45,8 @@ define([ 'spreadsheeteditor/main/app/collection/FormulaGroups', 'spreadsheeteditor/main/app/view/FormulaDialog', 'spreadsheeteditor/main/app/view/FormulaTab', - 'spreadsheeteditor/main/app/view/FormulaWizard' + 'spreadsheeteditor/main/app/view/FormulaWizard', + 'spreadsheeteditor/main/app/view/WatchDialog' ], function () { 'use strict'; @@ -80,7 +81,8 @@ define([ }, 'FormulaTab': { 'function:apply': this.applyFunction, - 'function:calculate': this.onCalculate + 'function:calculate': this.onCalculate, + 'function:watch': this.onWatch }, 'Toolbar': { 'function:apply': this.applyFunction, @@ -409,6 +411,24 @@ define([ } }, + onWatch: function(state) { + if (state) { + var me = this; + this._watchDlg = new SSE.Views.WatchDialog({ + api: this.api, + handler: function(result) { + Common.NotificationCenter.trigger('edit:complete'); + } + }); + this._watchDlg.on('close', function(win){ + me.formulaTab.btnWatch.toggle(false, true); + me._watchDlg = null; + }).show(); + } else if (this._watchDlg) + this._watchDlg.close(); + + }, + sCategoryAll: 'All', sCategoryLast10: '10 last used', sCategoryLogical: 'Logical', diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index 42b8be033..be6031ecf 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -93,6 +93,9 @@ define([ }, 'SearchBar': { 'search:show': _.bind(this.onShowHideSearch, this) + }, + 'ViewTab': { + 'leftmenu:hide': _.bind(this.onLeftMenuHide, this) } }); Common.NotificationCenter.on('app:comment:add', _.bind(this.onAppAddComment, this)); @@ -430,7 +433,7 @@ define([ var resolved = Common.localStorage.getBool("sse-settings-resolvedcomment"); Common.Utils.InternalSettings.set("sse-settings-resolvedcomment", resolved); - if (this.mode.canViewComments && this.leftMenu.panelComments.isVisible()) + if (this.mode.canViewComments && this.leftMenu.panelComments && this.leftMenu.panelComments.isVisible()) value = resolved = true; (value) ? this.api.asc_showComments(resolved) : this.api.asc_hideComments(); this.getApplication().getController('Common.Controllers.ReviewChanges').commentsShowHide(value ? 'show' : 'hide'); @@ -806,8 +809,8 @@ define([ this.leftMenu.btnSearchBar.setDisabled(isRangeSelection); this.leftMenu.btnSpellcheck.setDisabled(isRangeSelection); if (this.mode.canPlugins && this.leftMenu.panelPlugins) { + Common.Utils.lockControls(Common.enumLock.selRangeEdit, isRangeSelection, {array: this.leftMenu.panelPlugins.lockedControls}); this.leftMenu.panelPlugins.setLocked(isRangeSelection); - this.leftMenu.panelPlugins.disableControls(isRangeSelection); } }, @@ -818,14 +821,15 @@ define([ this.leftMenu.btnSearchBar.setDisabled(isEditFormula); this.leftMenu.btnSpellcheck.setDisabled(isEditFormula); if (this.mode.canPlugins && this.leftMenu.panelPlugins) { + Common.Utils.lockControls(Common.enumLock.editFormula, isEditFormula, {array: this.leftMenu.panelPlugins.lockedControls}); this.leftMenu.panelPlugins.setLocked(isEditFormula); - this.leftMenu.panelPlugins.disableControls(isEditFormula); } }, onPluginOpen: function(panel, type, action) { if (type == 'onboard') { if (action == 'open') { + this.tryToShowLeftMenu(); this.leftMenu.close(); this.leftMenu.panelPlugins.show(); this.leftMenu.onBtnMenuClick({pressed: true, options: {action: 'plugins'}}); @@ -841,6 +845,7 @@ define([ if (this.mode.canCoAuthoring && this.mode.canChat && !this.mode.isLightVersion) { if (state) { Common.UI.Menu.Manager.hideAll(); + this.tryToShowLeftMenu(); this.leftMenu.showMenu('chat'); } else { this.leftMenu.btnChat.toggle(false, true); @@ -904,6 +909,24 @@ define([ return this.leftMenu && this.leftMenu.panelComments && this.leftMenu.panelComments.isVisible(); }, + onLeftMenuHide: function (view, status) { + if (this.leftMenu) { + !status && this.leftMenu.close(); + status ? this.leftMenu.show() : this.leftMenu.hide(); + Common.localStorage.setBool('sse-hidden-leftmenu', !status); + + !view && this.leftMenu.fireEvent('view:hide', [this, !status]); + } + + Common.NotificationCenter.trigger('layout:changed', 'main'); + Common.NotificationCenter.trigger('edit:complete', this.leftMenu); + }, + + tryToShowLeftMenu: function() { + if ((!this.mode.canBrandingExt || !this.mode.customization || this.mode.customization.leftMenu !== false) && Common.UI.LayoutManager.isElementVisible('leftMenu')) + this.onLeftMenuHide(null, true); + }, + textNoTextFound : 'Text not found', newDocumentTitle : 'Unnamed document', textItemEntireCell : 'Entire cell contents', diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index d291c1b65..be6774232 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -377,6 +377,19 @@ define([ Common.Utils.InternalSettings.set("guest-username", value); Common.Utils.InternalSettings.set("save-guest-username", !!value); } + if (this.appOptions.customization.font) { + if (this.appOptions.customization.font.name && typeof this.appOptions.customization.font.name === 'string') { + var arr = this.appOptions.customization.font.name.split(','); + for (var i=0; iAsc.c_nAscMaxAddCellWatchesCount) ? Common.Utils.String.format(this.confirmAddCellWatchesMax, Asc.c_nAscMaxAddCellWatchesCount) : Common.Utils.String.format(this.confirmAddCellWatches, data), + buttons: ['yes', 'no'], + primary: 'yes', + callback: _.bind(function(btn) { + if (apiCallback) { + apiCallback(btn === 'yes'); + } + }, this) + }); } else if (id == Asc.c_oAscConfirm.ConfirmMaxChangesSize) { Common.UI.warning({ title: this.notcriticalErrorTitle, @@ -2606,6 +2657,9 @@ define([ case 'window:drag': this.isDiagramDrag = data.data; break; + case 'window:resize': + this.isDiagramResize = data.data; + break; case 'processmouse': this.onProcessMouse(data.data); break; @@ -3651,9 +3705,16 @@ define([ 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.', textRequestMacros: 'A macro makes a request to URL. Do you want to allow the request to the %1?', textRememberMacros: 'Remember my choice for all macros', + confirmAddCellWatches: 'This action will add {0} cell watches.
Do you want to continue?', + confirmAddCellWatchesMax: 'This action will add only {0} cell watches by memory save reason.
Do you want to continue?', confirmMaxChangesSize: 'The size of actions exceeds the limitation set for your server.
Press "Undo" to cancel your last action or press "Continue" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).', textUndo: 'Undo', - textContinue: 'Continue' + textContinue: 'Continue', + errorInconsistentExtDocx: 'An error has occurred while opening the file.
The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.', + errorInconsistentExtXlsx: 'An error has occurred while opening the file.
The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPptx: 'An error has occurred while opening the file.
The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.', + errorInconsistentExtPdf: 'An error has occurred while opening the file.
The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.', + errorInconsistentExt: 'An error has occurred while opening the file.
The file content does not match the file extension.' } })(), SSE.Controllers.Main || {})) }); diff --git a/apps/spreadsheeteditor/main/app/controller/PivotTable.js b/apps/spreadsheeteditor/main/app/controller/PivotTable.js index 110e62c93..c96371903 100644 --- a/apps/spreadsheeteditor/main/app/controller/PivotTable.js +++ b/apps/spreadsheeteditor/main/app/controller/PivotTable.js @@ -181,9 +181,10 @@ define([ Common.NotificationCenter.trigger('edit:complete', this); }, - onRefreshClick: function(btn, opts){ + onRefreshClick: function(type){ if (this.api) { - this._originalProps.asc_refresh(this.api); + if(type == 'current') this._originalProps.asc_refresh(this.api); + else if(type == 'all') this.api.asc_refreshAllPivots(); } Common.NotificationCenter.trigger('edit:complete', this); }, @@ -355,8 +356,8 @@ define([ var self = this, styles = this.view.pivotStyles; this._isTemplatesChanged = true; - var count = styles.menuPicker.store.length; + if (count>0 && count==Templates.length) { var data = styles.menuPicker.dataViewItems; data && _.each(Templates, function(template, index){ @@ -367,20 +368,62 @@ define([ styles.fieldPicker.store.reset(styles.fieldPicker.store.models); } else { styles.menuPicker.store.reset([]); - var arr = []; - _.each(Templates, function(template){ - arr.push({ + var templates = []; + var groups = [ + {id: 'menu-table-group-custom', caption: self.view.__proto__.txtGroupPivot_Custom, templates: []}, + {id: 'menu-table-group-light', caption: self.view.__proto__.txtGroupPivot_Light, templates: []}, + {id: 'menu-table-group-medium', caption: self.view.__proto__.txtGroupPivot_Medium, templates: []}, + {id: 'menu-table-group-dark', caption: self.view.__proto__.txtGroupPivot_Dark, templates: []}, + {id: 'menu-table-group-no-name', caption: ' ', templates: []}, + ]; + _.each(Templates, function(template, index){ + var tip = template.asc_getDisplayName(); + var groupItem = ''; + + if (template.asc_getType()==0) { + var arr = tip.split(' '), + last = arr.pop(); + + if(tip == 'None'){ + groupItem = 'menu-table-group-light'; + } + else { + if(arr.length > 0){ + groupItem = 'menu-table-group-' + arr[arr.length - 1].toLowerCase(); + } + if(groups.some(function(item) {return item.id === groupItem;}) == false) { + groupItem = 'menu-table-group-no-name'; + } + } + arr = 'txtTable_' + arr.join(''); + tip = self.view.__proto__[arr] ? self.view.__proto__[arr] + ' ' + last : tip; + } + else { + groupItem = 'menu-table-group-custom' + } + groups.filter(function(item){ return item.id == groupItem; })[0].templates.push({ id : Common.UI.getId(), name : template.asc_getName(), caption : template.asc_getDisplayName(), type : template.asc_getType(), imageUrl : template.asc_getImage(), + group : groupItem, allowSelected : true, selected : false, - tip : template.asc_getDisplayName() + tip : tip }); }); - styles.menuPicker.store.add(arr); + groups = groups.filter(function(item, index){ + return item.templates.length > 0 + }); + + groups.forEach(function(item){ + templates = templates.concat(item.templates); + delete item.templates; + }); + + styles.groups.reset(groups); + styles.menuPicker.store.reset(templates); } }, diff --git a/apps/spreadsheeteditor/main/app/controller/Print.js b/apps/spreadsheeteditor/main/app/controller/Print.js index d2a21bd82..5b5fa13b9 100644 --- a/apps/spreadsheeteditor/main/app/controller/Print.js +++ b/apps/spreadsheeteditor/main/app/controller/Print.js @@ -424,6 +424,7 @@ define([ this.printSettings.applySettings(); if (print) { + var view = SSE.getController('Toolbar').getView('Toolbar'); var printType = this.printSettings.getRange(); this.adjPrintParams.asc_setPrintType(printType); this.adjPrintParams.asc_setPageOptionsMap(this._changedProps); diff --git a/apps/spreadsheeteditor/main/app/controller/RightMenu.js b/apps/spreadsheeteditor/main/app/controller/RightMenu.js index 56d68c611..a406c4875 100644 --- a/apps/spreadsheeteditor/main/app/controller/RightMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/RightMenu.js @@ -69,6 +69,9 @@ define([ }, 'PivotTable': { 'insertpivot': this.onInsertPivot + }, + 'ViewTab': { + 'rightmenu:hide': this.onRightMenuHide.bind(this) } }); @@ -145,7 +148,7 @@ define([ }, onSelectionChanged: function(info) { - if (this.rangeSelectionMode) return; + if (this.rangeSelectionMode || !info) return; var SelectedObjects = [], selectType = info.asc_getSelectionType(), @@ -466,6 +469,17 @@ define([ this._state.wsLock = props.wsLock; } this.onSelectionChanged(this.api.asc_getCellInfo()); + }, + + onRightMenuHide: function (view, status) { + if (this.rightmenu) { + !status && this.rightmenu.clearSelection(); + status ? this.rightmenu.show() : this.rightmenu.hide(); + Common.localStorage.setBool('sse-hidden-rightmenu', !status); + } + + Common.NotificationCenter.trigger('layout:changed', 'main'); + Common.NotificationCenter.trigger('edit:complete', this.rightmenu); } }); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index eb82d6b5d..23b3f89b2 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -85,7 +85,9 @@ define([ 'insert:textart': this.onInsertTextart, 'change:scalespn': this.onClickChangeScaleInMenu.bind(me), 'click:customscale': this.onScaleClick.bind(me), - 'home:open' : this.onHomeOpen + 'home:open' : this.onHomeOpen, + 'generate:smartart' : this.generateSmartArt, + 'insert:smartart' : this.onInsertSmartArt }, 'FileMenu': { 'menu:hide': me.onFileMenu.bind(me, 'hide'), @@ -255,7 +257,10 @@ define([ this.onApiEndAddShape = function() { if (this.toolbar.btnInsertShape.pressed) this.toolbar.btnInsertShape.toggle(false, true); - if (this.toolbar.btnInsertText.pressed) this.toolbar.btnInsertText.toggle(false, true); + if (this.toolbar.btnInsertText.pressed) { + this.toolbar.btnInsertText.toggle(false, true); + this.toolbar.btnInsertText.menu.clearAll(); + } $(document.body).off('mouseup', checkInsertAutoshape); }; }, @@ -335,6 +340,7 @@ define([ toolbar.btnMerge.on('click', _.bind(this.onMergeCellsMenu, this, toolbar.btnMerge.menu, toolbar.btnMerge.menu.items[0])); toolbar.btnMerge.menu.on('item:click', _.bind(this.onMergeCellsMenu, this)); toolbar.btnTableTemplate.menu.on('show:after', _.bind(this.onTableTplMenuOpen, this)); + toolbar.btnCellStyle.menu.on('show:after', _.bind(this.onCellStyleMenuOpen, this)); toolbar.btnVisibleArea.menu.on('item:click', _.bind(this.onVisibleAreaMenu, this)); toolbar.btnVisibleAreaClose.on('click', _.bind(this.onVisibleAreaClose, this)); toolbar.cmbFontName.on('selected', _.bind(this.onFontNameSelect, this)); @@ -400,6 +406,7 @@ define([ toolbar.btnInsertImage.menu.on('item:click', _.bind(this.onInsertImageMenu, this)); toolbar.btnInsertHyperlink.on('click', _.bind(this.onHyperlink, this)); toolbar.btnInsertText.on('click', _.bind(this.onBtnInsertTextClick, this)); + toolbar.btnInsertText.menu.on('item:click', _.bind(this.onMenuInsertTextClick, this)); toolbar.btnInsertShape.menu.on('hide:after', _.bind(this.onInsertShapeHide, this)); toolbar.btnInsertEquation.on('click', _.bind(this.onInsertEquationClick, this)); toolbar.btnInsertSymbol.on('click', _.bind(this.onInsertSymbolClick, this)); @@ -488,6 +495,9 @@ define([ this.api.asc_registerCallback('asc_onUnLockCFManager', _.bind(this.onUnLockCFManager, this)); this.api.asc_registerCallback('asc_onZoomChanged', _.bind(this.onApiZoomChange, this)); Common.NotificationCenter.on('fonts:change', _.bind(this.onApiChangeFont, this)); + this.api.asc_registerCallback('asc_onBeginSmartArtPreview', _.bind(this.onApiBeginSmartArtPreview, this)); + this.api.asc_registerCallback('asc_onAddSmartArtPreview', _.bind(this.onApiAddSmartArtPreview, this)); + this.api.asc_registerCallback('asc_onEndSmartArtPreview', _.bind(this.onApiEndSmartArtPreview, this)); } else if (config.isEditOle) { Common.NotificationCenter.on('fonts:change', _.bind(this.onApiChangeFont, this)); } else if (config.isRestrictedEdit) { @@ -1247,8 +1257,35 @@ define([ }, onBtnInsertTextClick: function(btn, e) { + btn.menu.items.forEach(function(item) { + if(item.value == btn.options.textboxType) + item.setChecked(true); + }); + if(!this.toolbar.btnInsertText.pressed) { + this.toolbar.btnInsertText.menu.clearAll(); + } + this.onInsertText(btn.options.textboxType, btn, e); + }, + + onMenuInsertTextClick: function(btn, e) { + var oldType = this.toolbar.btnInsertText.options.textboxType; + var newType = e.value; + this.toolbar.btnInsertText.toggle(true); + + if(newType != oldType){ + this.toolbar.btnInsertText.changeIcon({ + next: e.options.iconClsForMainBtn, + curr: this.toolbar.btnInsertText.menu.items.filter(function(item){return item.value == oldType})[0].options.iconClsForMainBtn + }); + this.toolbar.btnInsertText.updateHint([e.caption, this.views.Toolbar.prototype.tipInsertText]); + this.toolbar.btnInsertText.options.textboxType = newType; + } + this.onInsertText(newType, btn, e); + }, + + onInsertText: function(type, btn, e) { if (this.api) - this._addAutoshape(btn.pressed, 'textRect'); + this._addAutoshape(this.toolbar.btnInsertText.pressed, type); if (this.toolbar.btnInsertShape.pressed) this.toolbar.btnInsertShape.toggle(false, true); @@ -2017,7 +2054,7 @@ define([ } }; shortcuts['command+shift+=,ctrl+shift+=' + (Common.Utils.isGecko ? ',command+shift+ff=,ctrl+shift+ff=' : '')] = function(e) { - if (me.editMode && !me.toolbar.btnAddCell.isDisabled()) { + if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.toolbar.mode.isEditOle && !me.toolbar.btnAddCell.isDisabled()) { var cellinfo = me.api.asc_getCellInfo(), selectionType = cellinfo.asc_getSelectionType(); if (selectionType === Asc.c_oAscSelectionType.RangeRow || selectionType === Asc.c_oAscSelectionType.RangeCol) { @@ -2048,7 +2085,7 @@ define([ return false; }; shortcuts['command+shift+-,ctrl+shift+-' + (Common.Utils.isGecko ? ',command+shift+ff-,ctrl+shift+ff-' : '')] = function(e) { - if (me.editMode && !me.toolbar.btnDeleteCell.isDisabled()) { + if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.toolbar.mode.isEditOle && !me.toolbar.btnDeleteCell.isDisabled()) { var cellinfo = me.api.asc_getCellInfo(), selectionType = cellinfo.asc_getSelectionType(); if (selectionType === Asc.c_oAscSelectionType.RangeRow || selectionType === Asc.c_oAscSelectionType.RangeCol) { @@ -2112,6 +2149,7 @@ define([ el: element, parentMenu : menu, restoreHeight: 300, + groups: new Common.UI.DataViewGroupStore(), style: 'max-height: 300px;', store: me.getCollection('TableTemplates'), itemTemplate: _.template('
'), @@ -2188,48 +2226,166 @@ define([ onApiInitTableTemplates: function(images) { var me = this; var store = this.getCollection('TableTemplates'); + this.fillTableTemplates(); + if (store) { var templates = []; + var groups = [ + {id: 'menu-table-group-custom', caption: me.txtGroupTable_Custom, templates: []}, + {id: 'menu-table-group-light', caption: me.txtGroupTable_Light, templates: []}, + {id: 'menu-table-group-medium', caption: me.txtGroupTable_Medium, templates: []}, + {id: 'menu-table-group-dark', caption: me.txtGroupTable_Dark, templates: []}, + {id: 'menu-table-group-no-name', caption: ' ', templates: []}, + ]; _.each(images, function(item) { var tip = item.asc_getDisplayName(); + var groupItem = ''; + if (item.asc_getType()==0) { var arr = tip.split(' '), last = arr.pop(); + + if(tip == 'None'){ + groupItem = 'menu-table-group-light'; + } + else { + if(arr.length > 0){ + groupItem = 'menu-table-group-' + arr[arr.length - 1].toLowerCase(); + } + if(groups.some(function(item) {return item.id === groupItem;}) == false) { + groupItem = 'menu-table-group-no-name'; + } + } arr = 'txtTable_' + arr.join(''); tip = me[arr] ? me[arr] + ' ' + last : tip; } - templates.push({ + else { + groupItem = 'menu-table-group-custom' + } + groups.filter(function(item){ return item.id == groupItem; })[0].templates.push({ name : item.asc_getName(), caption : item.asc_getDisplayName(), type : item.asc_getType(), imageUrl : item.asc_getImage(), + group : groupItem, allowSelected : true, selected : false, tip : tip }); }); + groups = groups.filter(function(item, index){ + return item.templates.length > 0 + }); + + groups.forEach(function(item){ + templates = templates.concat(item.templates); + delete item.templates; + }); + + me.toolbar.mnuTableTemplatePicker.groups.reset(groups); store.reset(templates); } - this.fillTableTemplates(); + }, + + + onCellStyleMenuOpen: function(menu) { + if (menu && this.toolbar.mnuCellStylePicker) { + var picker = this.toolbar.mnuCellStylePicker, + columnCount = 6; + + if (picker.cmpEl) { + var itemEl = $(picker.cmpEl.find('.dataview.inner .item').get(0)), + itemMargin = parseFloat(itemEl.css('margin-left')) + parseFloat(itemEl.css('margin-right')), + itemWidth = itemEl.is(':visible') ? parseFloat(itemEl.css('width')) : 106; + + var menuWidth = columnCount * (itemMargin + itemWidth) + 15, // for scroller + menuMargins = parseFloat(picker.cmpEl.css('margin-left')) + parseFloat(picker.cmpEl.css('margin-right')); + if (menuWidth + menuMargins>Common.Utils.innerWidth()) + menuWidth = Math.max(Math.floor((Common.Utils.innerWidth()-menuMargins-11)/(itemMargin + itemWidth)), 2) * (itemMargin + itemWidth) + 11; + picker.cmpEl.css({ + 'width': menuWidth + }); + menu.alignPosition(); + } + } + + var scroller = this.toolbar.mnuCellStylePicker.scroller; + if (scroller) { + scroller.update({alwaysVisibleY: true}); + scroller.scrollTop(0); + } + + var val = this.toolbar.mnuCellStylePicker.store.findWhere({name: this._state.prstyle}); + if (val) + this.toolbar.mnuCellStylePicker.selectRecord(val); + else + this.toolbar.mnuCellStylePicker.deselectAll(); }, onApiInitEditorStyles: function(styles){ window.styles_loaded = false; + if(this.toolbar.mode.isEditOle) { + var me = this; + function createPicker(element, menu) { + var picker = new Common.UI.DataView({ + el: element, + parentMenu : menu, + restoreHeight: 380, + groups: new Common.UI.DataViewGroupStore(), + store : new Common.UI.DataViewStore(), + style: 'max-height: 380px;', + itemTemplate: _.template('
'), + delayRenderTips: true + }); + + picker.on('item:click', function(picker, item, record) { + me.onListStyleSelect(picker, record); + }); + + if (picker.scroller) { + picker.scroller.update({alwaysVisibleY: true}); + } + + return picker; + } + + if (_.isUndefined(this.toolbar.mnuCellStylePicker)) { + this.toolbar.mnuCellStylePicker = createPicker($('#id-toolbar-menu-cell-styles'), this.toolbar.btnCellStyle.menu); + } + } + var self = this, - listStyles = self.toolbar.listStyles; + listStyles = this.toolbar.mode.isEditOle ? self.toolbar.mnuCellStylePicker: self.toolbar.listStyles; if (!listStyles) { self.styles = styles; return; } - + + var menuPicker = this.toolbar.mode.isEditOle ? listStyles: listStyles.menuPicker; var mainController = this.getApplication().getController('Main'); - var count = listStyles.menuPicker.store.length; - var rec = listStyles.menuPicker.getSelectedRec(); + var count = menuPicker.store.length; + var rec = menuPicker.getSelectedRec(); + var groupStore = [ + {id: 'menu-style-group-custom', caption: this.txtGroupCell_Custom}, + {id: 'menu-style-group-color', caption: this.txtGroupCell_GoodBadAndNeutral}, + {id: 'menu-style-group-model', caption: this.txtGroupCell_DataAndModel}, + {id: 'menu-style-group-title', caption: this.txtGroupCell_TitlesAndHeadings}, + {id: 'menu-style-group-themed', caption: this.txtGroupCell_ThemedCallStyles}, + {id: 'menu-style-group-number', caption: this.txtGroupCell_NumberFormat}, + {id: 'menu-style-group-no-name', caption: this.txtGroupCell_NoName} + ]; + var groups = []; + for (var i = 0; i < 4; i++) { groups.push('menu-style-group-color'); } + for (var i = 0; i < 8; i++) { groups.push('menu-style-group-model'); } + for (var i = 0; i < 6; i++) { groups.push('menu-style-group-title'); } + for (var i = 0; i < 24; i++) { groups.push('menu-style-group-themed'); } + for (var i = 0; i < 5; i++) { groups.push('menu-style-group-number'); } + if (count>0 && count==styles.length) { - var data = listStyles.menuPicker.dataViewItems; + var data = menuPicker.dataViewItems; data && _.each(styles, function(style, index){ var img = style.asc_getImage(); data[index].model.set('imageUrl', img, {silent: true}); @@ -2241,19 +2397,48 @@ define([ }); } else { var arr = []; - _.each(styles, function(style){ + var countCustomStyles = 0; + var hasNoNameGroup = false; + _.each(styles, function(style, index){ + var styleGroup; + if(style.asc_getType() == 0) { + if(index - countCustomStyles < groups.length){ + styleGroup = groups[index - countCustomStyles]; + } + else { + styleGroup = 'menu-style-group-no-name'; + hasNoNameGroup = true; + } + } + else { + styleGroup = 'menu-style-group-custom'; + } + arr.push({ imageUrl: style.asc_getImage(), name : style.asc_getName(), + group : styleGroup, tip : mainController.translationTable[style.get_Name()] || style.get_Name(), uid : Common.UI.getId() }); + if(style.asc_getType() == 1){ + countCustomStyles += 1; + } }); - listStyles.menuPicker.store.reset(arr); + + if(countCustomStyles == 0){ + groupStore = groupStore.filter(function(item) { return item.id != 'menu-style-group-custom'; }); + } + if(hasNoNameGroup === false){ + groupStore = groupStore.filter(function(item) { return item.id != 'menu-style-group-no-name'; }); + } + + menuPicker.groups.reset(groupStore); + menuPicker.store.reset(arr); } - if (listStyles.menuPicker.store.length > 0 && listStyles.rendered) { - rec = rec ? listStyles.menuPicker.store.findWhere({name: rec.get('name')}) : null; - listStyles.fillComboView(rec ? rec : listStyles.menuPicker.store.at(0), true, true); + if (!this.toolbar.mode.isEditOle && menuPicker.store.length > 0 && listStyles.rendered) { + rec = rec ? menuPicker.store.findWhere({name: rec.get('name')}) : null; + listStyles.fillComboView(rec ? rec : menuPicker.store.at(0), true, true); } window.styles_loaded = true; }, @@ -2629,7 +2814,7 @@ define([ }, onApiSelectionChanged: function(info) { - if (!this.editMode || $('.asc-window.enable-key-events:visible').length>0) return; + if (!this.editMode || $('.asc-window.enable-key-events:visible').length>0 || !info) return; if ( this.toolbar.mode.isEditDiagram ) return this.onApiSelectionChanged_DiagramEditor(info); else if ( this.toolbar.mode.isEditMailMerge ) @@ -2694,6 +2879,12 @@ define([ toolbar.lockToolbar(Common.enumLock['Objects'], !!this._state.wsProps['Objects']); toolbar.lockToolbar(Common.enumLock['FormatCells'], !!this._state.wsProps['FormatCells']); + // info.asc_getComments()===null - has comment, but no permissions to view it + toolbar.lockToolbar(Common.enumLock.commentLock, + (selectionType == Asc.c_oAscSelectionType.RangeCells) && (!info.asc_getComments() || info.asc_getComments().length>0 || info.asc_getLocked()) + || selectionType != Asc.c_oAscSelectionType.RangeCells, + { array: this.btnsComment }); + if (editOptionsDisabled) return; /* read font params */ @@ -3049,26 +3240,23 @@ define([ } toolbar.lockToolbar(Common.enumLock.itemsDisabled, !enabled, {array: [toolbar.btnDeleteCell]}); - // info.asc_getComments()===null - has comment, but no permissions to view it - toolbar.lockToolbar(Common.enumLock.commentLock, (selectionType == Asc.c_oAscSelectionType.RangeCells) && (!info.asc_getComments() || info.asc_getComments().length>0 || info.asc_getLocked()) || - this.toolbar.mode.compatibleFeatures && (selectionType != Asc.c_oAscSelectionType.RangeCells), - { array: this.btnsComment }); toolbar.lockToolbar(Common.enumLock.headerLock, info.asc_getLockedHeaderFooter(), {array: this.toolbar.btnsEditHeader}); }, onApiSelectionChangedRestricted: function(info) { - if (!this.appConfig.isRestrictedEdit) return; + if (!this.appConfig.isRestrictedEdit || !info) return; var selectionType = info.asc_getSelectionType(); - this.toolbar.lockToolbar(Common.enumLock.commentLock, (selectionType == Asc.c_oAscSelectionType.RangeCells) && (!info.asc_getComments() || info.asc_getComments().length>0 || info.asc_getLocked()) || - this.appConfig && this.appConfig.compatibleFeatures && (selectionType != Asc.c_oAscSelectionType.RangeCells), - { array: this.btnsComment }); + this.toolbar.lockToolbar(Common.enumLock.commentLock, + (selectionType == Asc.c_oAscSelectionType.RangeCells) && (!info.asc_getComments() || info.asc_getComments().length>0 || info.asc_getLocked()) + || selectionType != Asc.c_oAscSelectionType.RangeCells, + { array: this.btnsComment }); this.toolbar.lockToolbar(Common.enumLock['Objects'], !!this._state.wsProps['Objects'], { array: this.btnsComment }); }, onApiSelectionChanged_DiagramEditor: function(info) { - if ( !this.editMode || this.api.isCellEdited || this.api.isRangeSelection) return; + if ( !this.editMode || this.api.isCellEdited || this.api.isRangeSelection || !info) return; var me = this; var _disableEditOptions = function(seltype, coauth_disable) { @@ -3138,7 +3326,7 @@ define([ }, onApiSelectionChanged_MailMergeEditor: function(info) { - if ( !this.editMode || this.api.isCellEdited || this.api.isRangeSelection) return; + if ( !this.editMode || this.api.isCellEdited || this.api.isRangeSelection || !info) return; var me = this; var _disableEditOptions = function(seltype, coauth_disable) { @@ -3195,7 +3383,7 @@ define([ }, onApiSelectionChanged_OleEditor: function(info) { - if ( !this.editMode || this.api.isCellEdited || this.api.isRangeSelection) return; + if ( !this.editMode || this.api.isCellEdited || this.api.isRangeSelection || !info) return; var me = this; var _disableEditOptions = function(seltype, coauth_disable) { @@ -3465,6 +3653,19 @@ define([ } } + val = info.asc_getStyleName(); + if (this._state.prstyle != val && this.toolbar.mnuCellStylePicker) { + + val = this.toolbar.mnuCellStylePicker.store.findWhere({name: val}); + if (val) { + this.toolbar.mnuCellStylePicker.selectRecord(val); + this._state.prstyle = val.get('name'); + } else { + this.toolbar.mnuCellStylePicker.deselectAll(); + this._state.prstyle = null; + } + } + var old_name = this._state.tablename; this._state.tablename = (formatTableInfo) ? formatTableInfo.asc_getTableName() : undefined; @@ -3746,6 +3947,7 @@ define([ parentMenu: menu.items[i].menu, store: equationsStore.at(i).get('groupStore'), scrollAlwaysVisible: true, + restoreHeight: 10000, itemTemplate: _.template( '
' + '
' + @@ -3783,7 +3985,7 @@ define([ items: [ { template: _.template('') } + equationGroup.get('groupHeightStr') + 'margin-left:5px;">
') } ] }) }); @@ -3850,16 +4052,21 @@ define([ var me = this; var onShowBefore = function(menu) { me.onMathTypes(me._equationTemp); + if (me._equationTemp && me._equationTemp.get_Data().length>0) + me.fillEquations(); me.toolbar.btnInsertEquation.menu.off('show:before', onShowBefore); }; me.toolbar.btnInsertEquation.menu.on('show:before', onShowBefore); }, onMathTypes: function(equation) { + equation = equation || this._equationTemp; + var equationgrouparray = [], equationsStore = this.getCollection('EquationGroups'); - equationsStore.reset(); + if (equationsStore.length>0) + return; // equations groups @@ -3867,18 +4074,18 @@ define([ // [translate, count cells, scroll] - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Symbol ] = [this.textSymbols, 11]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Fraction ] = [this.textFraction, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Script ] = [this.textScript, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Radical ] = [this.textRadical, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Integral ] = [this.textIntegral, 3, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LargeOperator] = [this.textLargeOperator, 5, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Bracket ] = [this.textBracket, 4, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Function ] = [this.textFunction, 3, true]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Accent ] = [this.textAccent, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LimitLog ] = [this.textLimitAndLog, 3]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Operator ] = [this.textOperator, 4]; - c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Matrix ] = [this.textMatrix, 4, true]; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Symbol ] = [this.textSymbols, 11, false, 'svg-icon-symbols']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Fraction ] = [this.textFraction, 4, false, 'svg-icon-fraction']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Script ] = [this.textScript, 4, false, 'svg-icon-script']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Radical ] = [this.textRadical, 4, false, 'svg-icon-radical']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Integral ] = [this.textIntegral, 3, true, 'svg-icon-integral']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LargeOperator] = [this.textLargeOperator, 5, true, 'svg-icon-largeOperator']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Bracket ] = [this.textBracket, 4, true, 'svg-icon-bracket']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Function ] = [this.textFunction, 3, true, 'svg-icon-function']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Accent ] = [this.textAccent, 4, false, 'svg-icon-accent']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.LimitLog ] = [this.textLimitAndLog, 3, false, 'svg-icon-limAndLog']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Operator ] = [this.textOperator, 4, false, 'svg-icon-operator']; + c_oAscMathMainTypeStrings[Common.define.c_oAscMathMainType.Matrix ] = [this.textMatrix, 4, true, 'svg-icon-matrix']; // equations sub groups @@ -3948,12 +4155,14 @@ define([ groupName : c_oAscMathMainTypeStrings[id][0], groupStore : store, groupWidth : width, - groupHeight : c_oAscMathMainTypeStrings[id][2] ? ' height:'+ normHeight +'px!important; ' : '' + groupHeight : normHeight, + groupHeightStr : c_oAscMathMainTypeStrings[id][2] ? ' height:'+ normHeight +'px!important; ' : '', + groupIcon: c_oAscMathMainTypeStrings[id][3] }); } } equationsStore.add(equationgrouparray); - this.fillEquations(); + // this.fillEquations(); } } }, @@ -4735,6 +4944,51 @@ define([ Common.component.Analytics.trackEvent('ToolBar', 'Vertical align'); }, + generateSmartArt: function (groupName) { + this.api.asc_generateSmartArtPreviews(groupName); + }, + + onApiBeginSmartArtPreview: function () { + this.smartArtGroups = this.toolbar.btnInsertSmartArt.menu.items; + this.smartArtData = Common.define.smartArt.getSmartArtData(); + }, + + onApiAddSmartArtPreview: function (previews) { + previews.forEach(_.bind(function (preview) { + var image = preview.asc_getImage(), + sectionId = preview.asc_getSectionId(), + section = _.findWhere(this.smartArtData, {sectionId: sectionId}), + item = _.findWhere(section.items, {type: image.asc_getName()}), + menu = _.findWhere(this.smartArtGroups, {value: sectionId}), + menuPicker = menu.menuPicker; + if (item) { + var arr = [{ + tip: item.tip, + value: item.type, + imageUrl: image.asc_getImage() + }]; + if (menuPicker.store.length < 1) { + menuPicker.store.reset(arr); + } else { + menuPicker.store.add(arr); + } + } + this.currentSmartArtMenu = menu; + }, this)); + }, + + onApiEndSmartArtPreview: function () { + if (this.currentSmartArtMenu) { + this.currentSmartArtMenu.menu.alignPosition(); + } + }, + + onInsertSmartArt: function (value) { + if (this.api) { + this.api.asc_createSmartArt(value); + } + }, + textEmptyImgUrl : 'You need to specify image URL.', warnMergeLostData : 'Operation can destroy data in the selected cells.
Continue?', textWarning : 'Warning', @@ -5094,6 +5348,17 @@ define([ txtTable_TableStyleMedium: 'Table Style Medium', txtTable_TableStyleDark: 'Table Style Dark', txtTable_TableStyleLight: 'Table Style Light', + txtGroupTable_Custom: 'Custom', + txtGroupTable_Light: 'Light', + txtGroupTable_Medium: 'Medium', + txtGroupTable_Dark: 'Dark', + txtGroupCell_Custom: 'Custom', + txtGroupCell_GoodBadAndNeutral: 'Good, Bad, and Neutral', + txtGroupCell_DataAndModel: 'Data and Model', + txtGroupCell_TitlesAndHeadings: 'Titles and Headings', + txtGroupCell_ThemedCallStyles: 'Themed Call Styles', + txtGroupCell_NumberFormat: 'Number Format', + txtGroupCell_NoName: 'No name', textInsert: 'Insert', txtInsertCells: 'Insert Cells', txtDeleteCells: 'Delete Cells', diff --git a/apps/spreadsheeteditor/main/app/controller/ViewTab.js b/apps/spreadsheeteditor/main/app/controller/ViewTab.js index 1102f5284..7a211b90c 100644 --- a/apps/spreadsheeteditor/main/app/controller/ViewTab.js +++ b/apps/spreadsheeteditor/main/app/controller/ViewTab.js @@ -111,6 +111,11 @@ define([ 'view:compact': _.bind(function (toolbar, state) { this.view.chToolbar.setValue(!state, true); }, this) + }, + 'LeftMenu': { + 'view:hide': _.bind(function (leftmenu, state) { + this.view.chLeftMenu.setValue(!state, true); + }, this) } }); Common.NotificationCenter.on('layout:changed', _.bind(this.onLayoutChanged, this)); diff --git a/apps/spreadsheeteditor/main/app/controller/WBProtection.js b/apps/spreadsheeteditor/main/app/controller/WBProtection.js index 1cda5211a..6c5d400e3 100644 --- a/apps/spreadsheeteditor/main/app/controller/WBProtection.js +++ b/apps/spreadsheeteditor/main/app/controller/WBProtection.js @@ -329,7 +329,7 @@ define([ }, onApiSelectionChanged: function(info) { - if (!this.view) return; + if (!this.view || !info) return; if ($('.asc-window.enable-key-events:visible').length>0) return; var selectionType = info.asc_getSelectionType(); diff --git a/apps/spreadsheeteditor/main/app/template/ChartSettings.template b/apps/spreadsheeteditor/main/app/template/ChartSettings.template index f4a126bc0..d33d89931 100644 --- a/apps/spreadsheeteditor/main/app/template/ChartSettings.template +++ b/apps/spreadsheeteditor/main/app/template/ChartSettings.template @@ -46,6 +46,69 @@
diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index bf331e84d..837d0642f 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -8,10 +8,10 @@
- +
- +
@@ -110,7 +110,7 @@ -
+
@@ -127,6 +127,7 @@ +
@@ -153,7 +154,7 @@
-
+
@@ -189,7 +190,7 @@
-
+
diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index b971b32c6..4358439fb 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -203,7 +203,7 @@ define([ cls: 'combo-transitions combo-animation', itemWidth: itemWidth, itemHeight: itemHeight, - style: 'min-width:210px;', + style: 'min-width:200px;', itemTemplate: _.template([ '
', '
', diff --git a/apps/presentationeditor/main/app/view/ChartSettings.js b/apps/presentationeditor/main/app/view/ChartSettings.js index cdd777f4f..a1beac866 100644 --- a/apps/presentationeditor/main/app/view/ChartSettings.js +++ b/apps/presentationeditor/main/app/view/ChartSettings.js @@ -179,6 +179,57 @@ define([ this.btnRatio.toggle(value); this._state.keepRatio=value; } + + var props3d = this.chartProps ? this.chartProps.getView3d() : null; + this.ShowHideElem(!!props3d); + if (props3d) { + value = props3d.asc_getRotX(); + if ((this._state.X===undefined || value===undefined)&&(this._state.X!==value) || + Math.abs(this._state.X-value)>0.001) { + this.spnX.setValue((value!==null && value !== undefined) ? value : '', true); + this._state.X = value; + } + + value = props3d.asc_getRotY(); + if ( (this._state.Y===undefined || value===undefined)&&(this._state.Y!==value) || + Math.abs(this._state.Y-value)>0.001) { + this.spnY.setValue((value!==null && value !== undefined) ? value : '', true); + this._state.Y = value; + } + + value = props3d.asc_getRightAngleAxes(); + if ( this._state.RightAngle!==value ) { + this.chRightAngle.setValue((value !== null && value !== undefined) ? value : 'indeterminate', true); + this._state.RightAngle=value; + } + + value = props3d.asc_getPerspective(); + if ( (this._state.Perspective===undefined || value===undefined)&&(this._state.Perspective!==value) || + Math.abs(this._state.Perspective-value)>0.001) { + this.spnPerspective.setMinValue((value!==null && value !== undefined) ? 0.1 : 0); + this.spnPerspective.setValue((value!==null && value !== undefined) ? value : 0, true); + this._state.Perspective = value; + } + this.spnPerspective.setDisabled(this._locked || !!this._state.RightAngle); + this.btnNarrow.setDisabled(this._locked || !!this._state.RightAngle); + this.btnWiden.setDisabled(this._locked || !!this._state.RightAngle); + + value = props3d.asc_getDepth(); + if ( Math.abs(this._state.Depth-value)>0.001 || + (this._state.Depth===undefined || value===undefined)&&(this._state.Depth!==value)) { + this.spn3DDepth.setValue((value!==null && value !== undefined) ? value : '', true); + this._state.Depth = value; + } + + value = props3d.asc_getHeight(); + if ( Math.abs(this._state.Height3d-value)>0.001 || + (this._state.Height3d===undefined || this._state.Height3d===null || value===null)&&(this._state.Height3d!==value)) { + (value!==null) && this.spn3DHeight.setValue(value, true); + this.chAutoscale.setValue(value===null, true); + this._state.Height3d = value; + } + this.spn3DHeight.setDisabled(this._locked || value===null); + } } }, @@ -288,10 +339,215 @@ define([ this.fireEvent('editcomplete', this); }, this)); + // 3d rotation + this.spnX = new Common.UI.MetricSpinner({ + el: $('#chart-spin-x'), + step: 10, + width: 57, + defaultUnit : "°", + value: '20 °', + maxValue: 359.9, + minValue: 0, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spnX); + this.spnX.on('change', _.bind(this.onXRotation, this)); + this.spnX.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + + this.btnLeft = new Common.UI.Button({ + parentEl: $('#chart-btn-x-left', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-270', + hint: this.textLeft, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnLeft); + this.btnLeft.on('click', _.bind(function() { + this.spnX.setValue(this.spnX.getNumberValue() - 10); + }, this)); + + this.btnRight= new Common.UI.Button({ + parentEl: $('#chart-btn-x-right', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-90', + hint: this.textRight, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnRight); + this.btnRight.on('click', _.bind(function() { + this.spnX.setValue(this.spnX.getNumberValue() + 10); + }, this)); + + this.spnY = new Common.UI.MetricSpinner({ + el: $('#chart-spin-y'), + step: 10, + width: 57, + defaultUnit : "°", + value: '15 °', + maxValue: 90, + minValue: -90, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spnY); + this.spnY.on('change', _.bind(this.onYRotation, this)); + this.spnY.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + + this.btnUp = new Common.UI.Button({ + parentEl: $('#chart-btn-y-up', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-y-clockwise', + hint: this.textUp, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnUp); + this.btnUp.on('click', _.bind(function() { + this.spnY.setValue(this.spnY.getNumberValue() - 10); + }, this)); + + this.btnDown= new Common.UI.Button({ + parentEl: $('#chart-btn-y-down', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-y-counterclockwise', + hint: this.textDown, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnDown); + this.btnDown.on('click', _.bind(function() { + this.spnY.setValue(this.spnY.getNumberValue() + 10); + }, this)); + + this.spnPerspective = new Common.UI.MetricSpinner({ + el: $('#chart-spin-persp'), + step: 5, + width: 57, + defaultUnit : "°", + value: '0 °', + maxValue: 100, + minValue: 0.1, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spnPerspective); + this.spnPerspective.on('change', _.bind(this.onPerspective, this)); + this.spnPerspective.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + + this.btnNarrow = new Common.UI.Button({ + parentEl: $('#chart-btn-narrow', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-up', + hint: this.textNarrow, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnNarrow); + this.btnNarrow.on('click', _.bind(function() { + this.spnPerspective.setValue(this.spnPerspective.getNumberValue() - 5); + }, this)); + + this.btnWiden= new Common.UI.Button({ + parentEl: $('#chart-btn-widen', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-down', + hint: this.textWiden, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnWiden); + this.btnWiden.on('click', _.bind(function() { + this.spnPerspective.setValue(this.spnPerspective.getNumberValue() + 5); + }, this)); + + this.chRightAngle = new Common.UI.CheckBox({ + el: $('#chart-checkbox-right-angle'), + labelText: this.textRightAngle + }); + this.lockedControls.push(this.chRightAngle); + this.chRightAngle.on('change', _.bind(function(field, newValue, oldValue, eOpts) { + if (this._noApply) return; + if (this.api){ + if (this.chartProps) { + var props = new Asc.CAscChartProp(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setRightAngleAxes(field.getValue()=='checked'); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ChartApply(props); + } + } + } + }, this)); + + this.chAutoscale = new Common.UI.CheckBox({ + el: $('#chart-checkbox-autoscale'), + labelText: this.textAutoscale + }); + this.lockedControls.push(this.chAutoscale); + this.chAutoscale.on('change', _.bind(function(field, newValue, oldValue, eOpts) { + if (this._noApply) return; + if (this.api){ + if (this.chartProps) { + var props = new Asc.CAscChartProp(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setHeight(field.getValue()=='checked' ? null : this.spn3DHeight.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ChartApply(props); + } + } + } + }, this)); + + this.spn3DDepth = new Common.UI.MetricSpinner({ + el: $('#chart-spin-3d-depth'), + step: 10, + width: 70, + defaultUnit : "%", + value: '0 %', + maxValue: 2000, + minValue: 0, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spn3DDepth); + this.spn3DDepth.on('change', _.bind(this.on3DDepth, this)); + this.spn3DDepth.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + + this.spn3DHeight = new Common.UI.MetricSpinner({ + el: $('#chart-spin-3d-height'), + step: 10, + width: 70, + defaultUnit : "%", + value: '50 %', + maxValue: 500, + minValue: 5, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spn3DHeight); + this.spn3DHeight.on('change', _.bind(this.on3DHeight, this)); + this.spn3DHeight.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + + this.linkDefRotation = $('#chart-def-rotate-link'); + $(this.el).on('click', '#chart-def-rotate-link', _.bind(this.onDefRotation, this)); + this.linkAdvanced = $('#chart-advanced-link'); $(this.el).on('click', '#chart-advanced-link', _.bind(this.openAdvancedSettings, this)); this.NotCombinedSettings = $('.not-combined'); + this.Chart3DContainer = $('#chart-panel-3d-rotate'); }, createDelayedElements: function() { @@ -533,6 +789,108 @@ define([ type==Asc.c_oAscChartTypeSettings.comboAreaBar || type==Asc.c_oAscChartTypeSettings.comboCustom); }, + ShowHideElem: function(is3D) { + this.Chart3DContainer.toggleClass('settings-hidden', !is3D); + }, + + onXRotation: function(field, newValue, oldValue, eOpts){ + if (this._noApply) return; + if (this.api){ + if (this.chartProps) { + var props = new Asc.CAscChartProp(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setRotX(field.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ChartApply(props); + } + } + } + }, + + onYRotation: function(field, newValue, oldValue, eOpts){ + if (this._noApply) return; + if (this.api){ + if (this.chartProps) { + var props = new Asc.CAscChartProp(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setRotY(field.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ChartApply(props); + } + } + } + + }, + + onPerspective: function(field, newValue, oldValue, eOpts){ + if (this._noApply) return; + if (this.api){ + if (this.chartProps) { + var props = new Asc.CAscChartProp(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setPerspective(field.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ChartApply(props); + } + } + } + }, + + on3DDepth: function(field, newValue, oldValue, eOpts){ + if (this._noApply) return; + if (this.api){ + if (this.chartProps) { + var props = new Asc.CAscChartProp(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setDepth(field.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ChartApply(props); + } + } + } + }, + + on3DHeight: function(field, newValue, oldValue, eOpts){ + if (this._noApply) return; + if (this.api){ + if (this.chartProps) { + var props = new Asc.CAscChartProp(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setHeight(field.getNumberValue()); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ChartApply(props); + } + } + } + }, + + onDefRotation: function() { + if (this._noApply) return; + if (this.api){ + if (this.chartProps) { + var props = new Asc.CAscChartProp(); + var oView3D = this.chartProps.getView3d(); + if (oView3D) { + oView3D.asc_setRotX(20); + oView3D.asc_setRotY(15); + this.chartProps.putView3d(oView3D); + props.put_ChartProperties(this.chartProps); + this.api.ChartApply(props); + } + } + } + }, + setLocked: function (locked) { this._locked = locked; }, @@ -556,6 +914,21 @@ define([ textEditData: 'Edit Data', textChartType: 'Change Chart Type', textStyle: 'Style', - textAdvanced: 'Show advanced settings' + textAdvanced: 'Show advanced settings', + text3dRotation: '3D Rotation', + textX: 'X rotation', + textY: 'Y rotation', + textPerspective: 'Perspective', + text3dDepth: 'Depth (% of base)', + text3dHeight: 'Height (% of base)', + textLeft: 'Left', + textRight: 'Right', + textUp: 'Up', + textDown: 'Down', + textNarrow: 'Narrow field of view', + textWiden: 'Widen field of view', + textRightAngle: 'Right Angle Axes', + textAutoscale: 'Autoscale', + textDefault: 'Default Rotation' }, PE.Views.ChartSettings || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/DocumentHolder.js b/apps/presentationeditor/main/app/view/DocumentHolder.js index beda3d420..2e2ddc638 100644 --- a/apps/presentationeditor/main/app/view/DocumentHolder.js +++ b/apps/presentationeditor/main/app/view/DocumentHolder.js @@ -63,8 +63,10 @@ define([ me._currentParaObjDisabled = false; me._currentSpellObj = undefined; me._currLang = {}; - me._state = {}; + me._state = {unitsChanged: true}; me._isDisabled = false; + + Common.NotificationCenter.on('settings:unitschanged', _.bind(this.unitsChanged, this)); }, render: function () { @@ -959,6 +961,40 @@ define([ checked: false }); + me.mnuGuides = new Common.UI.MenuItem({ + caption : me.textGuides, + menu : new Common.UI.Menu({ + menuAlign: 'tl-tr', + items: [ + { caption: me.textShowGuides, value: 'show', checkable: true }, + { caption: '--'}, + { caption: me.textAddVGuides, iconCls: 'menu__icon vertical-guide', value: 'add-vert' }, + { caption: me.textAddHGuides, iconCls: 'menu__icon horizontal-guide', value: 'add-hor' }, + { caption: me.textDeleteGuide, value: 'del-guide' }, + { caption: '--'}, + { caption: me.textSmartGuides, value: 'smart', checkable: true }, + { caption: me.textClearGuides, value: 'clear' } + ] + }) + }); + me.mnuGridlines = new Common.UI.MenuItem({ + caption : me.textGridlines, + menu : new Common.UI.Menu({ + menuAlign: 'tl-tr', + items: [ + { caption: me.textShowGridlines, value: 'show', checkable: true }, + { caption: me.textSnapObjects, value: 'snap', checkable: true }, + { caption: '--'}, + { caption: '--'}, + { caption: me.textCustom, value: 'custom' } + ] + }) + }); + me.mnuRulers = new Common.UI.MenuItem({ + caption : me.textRulers, + checkable: true + }); + me.slideMenu = new Common.UI.Menu({ cls: 'shifted-right', restoreHeightAndTop: true, @@ -966,8 +1002,8 @@ define([ var selectedLast = me.api.asc_IsLastSlideSelected(), selectedFirst = me.api.asc_IsFirstSlideSelected(); me.menuSlidePaste.setVisible(value.fromThumbs!==true); - me.slideMenu.items[1].setVisible(value.fromThumbs===true); // New Slide - me.slideMenu.items[2].setVisible(value.isSlideSelect===true); // Duplicate Slide + me.mnuNewSlide.setVisible(value.fromThumbs===true); // New Slide + me.mnuDuplicateSlide.setVisible(value.isSlideSelect===true); // Duplicate Slide me.mnuDeleteSlide.setVisible(value.isSlideSelect===true); me.mnuSlideHide.setVisible(value.isSlideSelect===true); me.mnuSlideHide.setChecked(value.isSlideHidden===true); @@ -977,17 +1013,62 @@ define([ mnuChangeTheme.setVisible(value.isSlideSelect===true || value.fromThumbs!==true); me.menuSlideSettings.setVisible(value.isSlideSelect===true || value.fromThumbs!==true); me.menuSlideSettings.options.value = null; - me.slideMenu.items[13].setVisible((!selectedLast || !selectedFirst) && value.isSlideSelect===true); - me.mnuMoveSlideToEnd.setVisible(!selectedLast && value.isSlideSelect===true); - me.mnuMoveSlideToStart.setVisible(!selectedFirst && value.isSlideSelect===true); - me.slideMenu.items[16].setVisible(value.fromThumbs===true); - me.slideMenu.items[17].setVisible(value.fromThumbs===true); - - for (var i = 10; i < 13; i++) { - me.slideMenu.items[i].setVisible(value.fromThumbs===true); - } + + me.slideMenu.items[10].setVisible(!value.fromThumbs); // guides separator + me.mnuGuides.setVisible(!value.fromThumbs); + me.mnuGridlines.setVisible(!value.fromThumbs); + me.mnuRulers.setVisible(!value.fromThumbs); + me.slideMenu.items[14].setVisible(value.fromThumbs===true); + me.mnuSelectAll.setVisible(value.fromThumbs===true); me.mnuPrintSelection.setVisible(me.mode.canPrint && value.fromThumbs===true); + me.slideMenu.items[17].setVisible((!selectedLast || !selectedFirst) && value.isSlideSelect===true); + me.mnuMoveSlideToEnd.setVisible(!selectedLast && value.isSlideSelect===true); + me.mnuMoveSlideToStart.setVisible(!selectedFirst && value.isSlideSelect===true); + me.slideMenu.items[20].setVisible(value.fromThumbs===true); + me.mnuPreview.setVisible(value.fromThumbs===true); + + if (!value.fromThumbs) { + me.mnuGuides.menu.items[0].setChecked(me.api.asc_getShowGuides(), true); + me.mnuGuides.menu.items[4].setVisible(!!value.guideId); + me.mnuGuides.menu.items[4].options.guideId = value.guideId; + me.mnuGuides.menu.items[6].setChecked(me.api.asc_getShowSmartGuides(), true); + me.mnuGuides.menu.items[7].setDisabled(!me.api.asc_canClearGuides()); + + me.mnuGridlines.menu.items[0].setChecked(me.api.asc_getShowGridlines(), true); + me.mnuGridlines.menu.items[1].setChecked(me.api.asc_getSnapToGrid(), true); + + var spacing = Common.Utils.Metric.fnRecalcFromMM(me.api.asc_getGridSpacing()/36000), + items = me.mnuGridlines.menu.items; + if (me._state.unitsChanged) { + for (var i = 3; i < items.length-2; i++) { + me.mnuGridlines.menu.removeItem(items[i]); + i--; + } + var arr = Common.define.gridlineData.getGridlineData(Common.Utils.Metric.getCurrentMetric()); + for (var i = 0; i < arr.length; i++) { + var menuItem = new Common.UI.MenuItem({ + caption: arr[i].caption, + value: arr[i].value, + checkable: true, + toggleGroup: 'mnu-gridlines' + }); + me.mnuGridlines.menu.insertItem(3+i, menuItem); + } + me._state.unitsChanged = false; + } + + for (var i=3; i=1 && Math.abs(item.value - spacing)<0.001) + item.setChecked(true); + else + item.setChecked(false); + } + me.mnuRulers.setChecked(!Common.Utils.InternalSettings.get("pe-hidden-rulers")); + } var selectedElements = me.api.getSelectedElements(), locked = false, @@ -1030,6 +1111,10 @@ define([ mnuChangeTheme, me.menuSlideSettings, {caption: '--'}, + me.mnuGuides, + me.mnuGridlines, + me.mnuRulers, + {caption: '--'}, me.mnuSelectAll, me.mnuPrintSelection, {caption: '--'}, @@ -1385,6 +1470,11 @@ define([ caption : me.advancedParagraphText }); + me.menuChartAdvanced = new Common.UI.MenuItem({ + iconCls: 'menu__icon btn-menu-chart', + caption : me.advancedChartText + }); + var menuCommentParaSeparator = new Common.UI.MenuItem({ caption : '--' }); @@ -1544,7 +1634,6 @@ define([ }); me.menuChartEdit = new Common.UI.MenuItem({ - iconCls: 'menu__icon btn-menu-chart', caption : me.editChartText }); @@ -1706,6 +1795,14 @@ define([ }) }); + me.menuSaveAsPicture = new Common.UI.MenuItem({ + caption : me.textSaveAsPicture + }); + + var menuSaveAsPictureSeparator = new Common.UI.MenuItem({ + caption : '--' + }); + /** coauthoring begin **/ me.menuAddCommentPara = new Common.UI.MenuItem({ iconCls: 'menu__icon btn-menu-comments', @@ -1797,6 +1894,16 @@ define([ caption : '--' }); + me.menuParagraphEquation = new Common.UI.MenuItem({ + caption : me.advancedEquationText, + menu : me.createEquationMenu('popupparaeqinput', 'tl-tr') + }); + + me.menuTableEquation = new Common.UI.MenuItem({ + caption : me.advancedEquationText, + menu : me.createEquationMenu('popuptableeqinput', 'tl-tr') + }); + me.menuAddToLayoutTable = new Common.UI.MenuItem({ caption : me.addToLayoutText }); @@ -1931,6 +2038,14 @@ define([ } else me.clearEquationMenu(true, 12); menuEquationSeparator.setVisible(isEquation && eqlen>0); + + me.menuParagraphEquation.setVisible(isEquation); + me.menuParagraphEquation.setDisabled(disabled); + if (isEquation) { + var eq = me.api.asc_GetMathInputType(); + me.menuParagraphEquation.menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode); + me.menuParagraphEquation.menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX); + } }, items: [ me.menuSpellPara, @@ -1949,6 +2064,7 @@ define([ me.menuParagraphVAlign, me.menuParagraphDirection, me.menuParagraphAdvanced, + me.menuParagraphEquation, menuCommentParaSeparator, /** coauthoring begin **/ me.menuAddCommentPara, @@ -2071,6 +2187,14 @@ define([ menuHyperlinkSeparator.setVisible(menuHyperlinkSeparator.isVisible() && eqlen>0); } else me.clearEquationMenu(false, 6); + + me.menuTableEquation.setVisible(isEquation); + me.menuTableEquation.setDisabled(disabled); + if (isEquation) { + var eq = me.api.asc_GetMathInputType(); + me.menuTableEquation.menu.items[0].setChecked(eq===Asc.c_oAscMathInputType.Unicode); + me.menuTableEquation.menu.items[1].setChecked(eq===Asc.c_oAscMathInputType.LaTeX); + } }, items: [ me.menuSpellCheckTable, @@ -2095,6 +2219,7 @@ define([ menuHyperlinkSeparator, /** coauthoring begin **/ me.menuAddCommentTable, + me.menuTableEquation, /** coauthoring end **/ me.menuAddHyperlinkTable, menuHyperlinkTable, @@ -2162,7 +2287,9 @@ define([ me.menuImageAdvanced.setVisible(isimage); me.menuShapeAdvanced.setVisible(_.isUndefined(value.imgProps) && _.isUndefined(value.chartProps)); me.menuChartEdit.setVisible(_.isUndefined(value.imgProps) && !_.isUndefined(value.chartProps) && (_.isUndefined(value.shapeProps) || value.shapeProps.isChart)); - menuImgShapeSeparator.setVisible(me.menuImageAdvanced.isVisible() || me.menuShapeAdvanced.isVisible() || me.menuChartEdit.isVisible()); + me.menuChartAdvanced.setVisible(_.isUndefined(value.imgProps) && !_.isUndefined(value.chartProps) && (_.isUndefined(value.shapeProps) || value.shapeProps.isChart)); + menuImgShapeSeparator.setVisible(me.menuImageAdvanced.isVisible() || me.menuShapeAdvanced.isVisible() || me.menuChartEdit.isVisible() || me.menuChartAdvanced.isVisible()); + /** coauthoring begin **/ me.menuAddCommentImg.setVisible(me.api.can_AddQuotedComment()!==false && me.mode.canCoAuthoring && me.mode.canComments); menuCommentSeparatorImg.setVisible(me.menuAddCommentImg.isVisible()); @@ -2177,6 +2304,7 @@ define([ } me.menuImageAdvanced.setDisabled(disabled); me.menuShapeAdvanced.setDisabled(disabled); + me.menuChartAdvanced.setDisabled(disabled); if (me.menuChartEdit.isVisible()) me.menuChartEdit.setDisabled(disabled); @@ -2185,6 +2313,7 @@ define([ me.menuImgCut.setDisabled(disabled || !cancopy); me.menuImgPaste.setDisabled(disabled); menuImgShapeArrange.setDisabled(disabled); + me.menuSaveAsPicture.setDisabled(disabled); me.menuAddToLayoutImg.setDisabled(disabled); }, items: [ @@ -2204,6 +2333,9 @@ define([ me.menuImageAdvanced, me.menuShapeAdvanced ,me.menuChartEdit + ,me.menuChartAdvanced + ,menuSaveAsPictureSeparator + ,me.menuSaveAsPicture /** coauthoring begin **/ ,menuCommentSeparatorImg, me.menuAddCommentImg, @@ -2258,6 +2390,64 @@ define([ } }, + createEquationMenu: function(toggleGroup, menuAlign) { + return new Common.UI.Menu({ + cls: 'ppm-toolbar shifted-right', + menuAlign: menuAlign, + items : [ + new Common.UI.MenuItem({ + caption : this.unicodeText, + iconCls : 'menu__icon unicode', + checkable : true, + checkmark : false, + checked : false, + toggleGroup : toggleGroup, + type : 'input', + value : Asc.c_oAscMathInputType.Unicode + }), + new Common.UI.MenuItem({ + caption : this.latexText, + iconCls : 'menu__icon latex', + checkable : true, + checkmark : false, + checked : false, + toggleGroup : toggleGroup, + type : 'input', + value : Asc.c_oAscMathInputType.LaTeX + }), + { caption : '--' }, + new Common.UI.MenuItem({ + caption : this.currProfText, + iconCls : 'menu__icon professional-equation', + type : 'view', + value : {all: false, linear: false} + }), + new Common.UI.MenuItem({ + caption : this.currLinearText, + iconCls : 'menu__icon linear-equation', + type : 'view', + value : {all: false, linear: true} + }), + new Common.UI.MenuItem({ + caption : this.allProfText, + iconCls : 'menu__icon professional-equation', + type : 'view', + value : {all: true, linear: false} + }), + new Common.UI.MenuItem({ + caption : this.allLinearText, + iconCls : 'menu__icon linear-equation', + type : 'view', + value : {all: true, linear: true} + }) + ] + }); + }, + + unitsChanged: function(m) { + this._state.unitsChanged = true; + }, + SetDisabled: function(state) { this._isDisabled = state; }, @@ -2315,6 +2505,7 @@ define([ txtSlide : 'Slide', cellAlignText : 'Cell Vertical Alignment', advancedShapeText : 'Shape Advanced Settings', + textSaveAsPicture : 'Save as picture', /** coauthoring begin **/ addCommentText : 'Add Comment', /** coauthoring end **/ @@ -2443,7 +2634,29 @@ define([ txtWarnUrl: 'Clicking this link can be harmful to your device and data.
Are you sure you want to continue?', textEditPoints: 'Edit Points', txtMoveSlidesToEnd: 'Move Slide to End', - txtMoveSlidesToStart: 'Move Slide to Beginning' + txtMoveSlidesToStart: 'Move Slide to Beginning', + advancedChartText : 'Chart Advanced Settings', + textGuides: 'Guides', + tipGuides: 'Show guides', + textShowGuides: 'Show Guides', + textAddVGuides: 'Add Vertical Guide', + textAddHGuides: 'Add Horizontal Guide', + textSmartGuides: 'Smart Guides', + textClearGuides: 'Clear Guides', + textGridlines: 'Gridlines', + textShowGridlines: 'Show Gridlines', + textSnapObjects: 'Snap Object to Grid', + textCm: 'cm', + textCustom: 'Custom', + textRulers: 'Rulers', + textDeleteGuide: 'Delete Guide', + advancedEquationText: 'Equation Settings', + unicodeText: 'Unicode', + latexText: 'LaTeX', + currProfText: 'Current - Professional', + currLinearText: 'Current - Linear', + allProfText: 'All - Professional', + allLinearText: 'All - Linear' }, PE.Views.DocumentHolder || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/FileMenu.js b/apps/presentationeditor/main/app/view/FileMenu.js index eda4f9afa..3f5a3d15b 100644 --- a/apps/presentationeditor/main/app/view/FileMenu.js +++ b/apps/presentationeditor/main/app/view/FileMenu.js @@ -72,7 +72,7 @@ define([ if (item.options.action === 'help') { if ( panel.noHelpContents === true && navigator.onLine ) { this.fireEvent('item:click', [this, 'external-help', true]); - window.open(panel.urlHelpCenter, '_blank'); + !!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank'); return; } } diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index 662166101..7e0e0ba5b 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -348,6 +348,7 @@ define([ dataHintDirection: 'left', dataHintOffset: 'small' }); + (Common.Utils.isIE || Common.Utils.isMac && Common.Utils.isGecko) && this.chUseAltKey.$el.parent().parent().hide(); this.cmbZoom = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-zoom'), @@ -696,7 +697,8 @@ define([ 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); - Common.Utils.InternalSettings.set("pe-settings-showsnaplines", this.chAlignGuides.isChecked()); + + Common.localStorage.setBool("pe-settings-showsnaplines", this.chAlignGuides.isChecked()); Common.localStorage.setItem("pe-macros-mode", this.cmbMacros.getValue()); Common.Utils.InternalSettings.set("pe-macros-mode", this.cmbMacros.getValue()); @@ -772,7 +774,7 @@ define([ txtWorkspace: 'Workspace', txtHieroglyphs: 'Hieroglyphs', txtUseAltKey: 'Use Alt key to navigate the user interface using the keyboard', - txtUseOptionKey: 'Use Option key to navigate the user interface using the keyboard', + txtUseOptionKey: 'Use ⌘F6 to navigate the user interface using the keyboard', txtFastTip: 'Real-time co-editing. All changes are saved automatically', txtStrictTip: 'Use the \'Save\' button to sync the changes you and others make', strIgnoreWordsInUPPERCASE: 'Ignore words in UPPERCASE', @@ -961,6 +963,10 @@ define([ '
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+ +
+
+ +
', '', '', + '', + '', + '', + '', '', '', '', @@ -1437,6 +1445,15 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ dataHintDirection: 'left', dataHintOffset: 'small' }).on('keydown:before', keyDownBefore); + this.inputTags = new Common.UI.InputField({ + el : $markup.findById('#id-info-tags'), + style : 'width: 200px;', + placeHolder : this.txtAddText, + validateOnBlur: false, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' + }).on('keydown:before', keyDownBefore); this.inputSubject = new Common.UI.InputField({ el : $markup.findById('#id-info-subject'), style : 'width: 200px;', @@ -1641,6 +1658,8 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ value = props.asc_getTitle(); this.inputTitle.setValue(value || ''); + value = props.asc_getKeywords(); + this.inputTags.setValue(value || ''); value = props.asc_getSubject(); this.inputSubject.setValue(value || ''); value = props.asc_getDescription(); @@ -1679,6 +1698,7 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ this.tblAuthor.find('.close').toggleClass('hidden', !mode.isEdit); if (!mode.isEdit) { this.inputTitle._input.attr('placeholder', ''); + this.inputTags._input.attr('placeholder', ''); this.inputSubject._input.attr('placeholder', ''); this.inputComment._input.attr('placeholder', ''); this.inputAuthor._input.attr('placeholder', ''); @@ -1702,6 +1722,7 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ SetDisabled: function() { var disable = !this.mode.isEdit || this._locked; this.inputTitle.setDisabled(disable); + this.inputTags.setDisabled(disable); this.inputSubject.setDisabled(disable); this.inputComment.setDisabled(disable); this.inputAuthor.setDisabled(disable); @@ -1713,6 +1734,7 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ applySettings: function() { if (this.coreProps && this.api) { this.coreProps.asc_putTitle(this.inputTitle.getValue()); + this.coreProps.asc_putKeywords(this.inputTags.getValue()); this.coreProps.asc_putSubject(this.inputSubject.getValue()); this.coreProps.asc_putDescription(this.inputComment.getValue()); this.coreProps.asc_putCreator(this.authors.join(';')); @@ -1726,6 +1748,7 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ txtUploaded: 'Uploaded', txtAppName: 'Application', txtTitle: 'Title', + txtTags: 'Tags', txtSubject: 'Subject', txtComment: 'Comment', txtModifyDate: 'Last Modified', @@ -1877,7 +1900,14 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ this.menu = options.menu; this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; this.openUrl = null; - this.urlHelpCenter = '{{HELP_CENTER_WEB_SSE}}'; + + if ( !Common.Utils.isIE ) { + if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_SSE}}') ) { + const _url_obj = new URL('{{HELP_CENTER_WEB_SSE}}'); + _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); + this.urlHelpCenter = _url_obj.toString(); + } + } this.en_data = [ {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Spreadsheet Editor user interface", "headername": "Program Interface"}, diff --git a/apps/spreadsheeteditor/main/app/view/FormulaTab.js b/apps/spreadsheeteditor/main/app/view/FormulaTab.js index 9d5b26d81..329b29bf1 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaTab.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaTab.js @@ -69,6 +69,9 @@ define([ me.btnNamedRange.menu.on('item:click', function (menu, item, e) { me.fireEvent('function:namedrange', [menu, item, e]); }); + me.btnWatch.on('click', function(b, e){ + me.fireEvent('function:watch', [b.pressed]); + }); } return { options: {}, @@ -318,6 +321,21 @@ define([ }); this.lockedControls.push(this.btnNamedRange); + this.btnWatch = new Common.UI.Button({ + parentEl: $host.find('#slot-btn-watch-window'), + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon watch-window', + caption: this.txtWatch, + hint: this.tipWatch, + disabled: true, + enableToggle: true, + lock: [_set.editCell, _set.lostConnect, _set.coAuth], + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.btnWatch); + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, @@ -577,7 +595,9 @@ define([ textCalculateCurrentSheet: 'Calculate current sheet', textAutomatic: 'Automatic', textManual: 'Manual', - tipCalculateTheEntireWorkbook: 'Calculate the entire workbook' + tipCalculateTheEntireWorkbook: 'Calculate the entire workbook', + txtWatch: 'Watch Window', + tipWatch: 'Add cells to the Watch Window list' } }()), SSE.Views.FormulaTab || {})); }); diff --git a/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js b/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js index 9ae19327e..9dccb62b1 100644 --- a/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js +++ b/apps/spreadsheeteditor/main/app/view/HyperlinkSettingsDialog.js @@ -533,6 +533,8 @@ define([ me.dataRangeValid = dlg.getSettings(); me.inputRange.setValue(me.dataRangeValid); me.inputRange.checkValidate(); + me.isAutoUpdate && me.inputDisplay.setValue(me.internalList.getSelectedRec().get('name') + (me.dataRangeValid!=='' ? '!' + me.dataRangeValid : '')); + me.btnOk.setDisabled($.trim(me.dataRangeValid)==''); } }; diff --git a/apps/spreadsheeteditor/main/app/view/LeftMenu.js b/apps/spreadsheeteditor/main/app/view/LeftMenu.js index 4d07dc04b..bb9966d06 100644 --- a/apps/spreadsheeteditor/main/app/view/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/view/LeftMenu.js @@ -179,7 +179,8 @@ define([ this.$el.width(Common.localStorage.getItem('sse-mainmenu-width') || MENU_SCALE_PART); } } else if (!this._state.pluginIsRunning){ - this.isVisible() && Common.localStorage.setItem('sse-mainmenu-width',this.$el.width()); + var width = this.$el.width(); + this.isVisible() && (width>SCALE_MIN) && Common.localStorage.setItem('sse-mainmenu-width',width); this.$el.width(SCALE_MIN); } this.onCoauthOptions(); diff --git a/apps/spreadsheeteditor/main/app/view/PivotSettings.js b/apps/spreadsheeteditor/main/app/view/PivotSettings.js index 1a288750e..c3b2bfdd3 100644 --- a/apps/spreadsheeteditor/main/app/view/PivotSettings.js +++ b/apps/spreadsheeteditor/main/app/view/PivotSettings.js @@ -201,7 +201,7 @@ define([ }, getDragElement: function(value) { - this._dragEl = $('
' + value + '
'); + this._dragEl = $('
' + value + '
'); $(document.body).append(this._dragEl); return this._dragEl[0]; }, diff --git a/apps/spreadsheeteditor/main/app/view/PivotTable.js b/apps/spreadsheeteditor/main/app/view/PivotTable.js index 8a679fa8f..bfe698038 100644 --- a/apps/spreadsheeteditor/main/app/view/PivotTable.js +++ b/apps/spreadsheeteditor/main/app/view/PivotTable.js @@ -89,7 +89,7 @@ define([ '' + '' + '' + - '
' + + '
' + '
' + ''; @@ -119,7 +119,11 @@ define([ }); this.btnRefreshPivot.on('click', function (e) { - me.fireEvent('pivottable:refresh'); + me.fireEvent('pivottable:refresh', ['current']); + }); + + this.btnRefreshPivot.menu.on('item:click', function (menu, item, e) { + me.fireEvent('pivottable:refresh', [item.value]); }); this.btnSelectPivot.on('click', function (e) { @@ -254,6 +258,7 @@ define([ iconCls: 'toolbar__icon btn-update', caption: this.txtRefresh, disabled : true, + split : true, lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set.wsLock], dataHint : '1', dataHintDirection: 'bottom', @@ -274,15 +279,18 @@ define([ this.pivotStyles = new Common.UI.ComboDataView({ cls : 'combo-pivot-template', + style : 'min-width: 103px; max-width: 517px;', enableKeyEvents : true, itemWidth : 61, itemHeight : 49, menuMaxHeight : 300, + groups : new Common.UI.DataViewGroupStore(), + autoWidth : true, lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set['FormatCells'], _set['PivotTables']], beforeOpenHandler: function(e) { var cmp = this, menu = cmp.openButton.menu, - columnCount = 4; + columnCount = 7; if (menu.cmpEl) { var itemEl = $(cmp.cmpEl.find('.dataview.inner .style').get(0)).parent(); @@ -330,7 +338,6 @@ define([ me.btnsAddPivot.forEach( function(btn) { btn.updateHint(me.tipCreatePivot); }); - me.btnRefreshPivot.updateHint(me.tipRefresh); me.btnSelectPivot.updateHint(me.tipSelect); me.btnPivotLayout.updateHint(me.capLayout); me.btnPivotLayout.setMenu(new Common.UI.Menu({ @@ -371,6 +378,14 @@ define([ ] })); + me.btnRefreshPivot.setMenu(new Common.UI.Menu({ + items: [ + { caption: me.txtRefresh, value: 'current'}, + { caption: me.txtRefreshAll, value: 'all'} + ] + })); + me.btnRefreshPivot.updateHint([me.tipRefreshCurrent, me.tipRefresh]); + setEvents.call(me); }); }, @@ -440,12 +455,21 @@ define([ mniBottomSubtotals: 'Show all Subtotals at Bottom of Group', mniTopSubtotals: 'Show all Subtotals at Top of Group', txtRefresh: 'Refresh', + txtRefreshAll: 'Refresh All', + tipRefreshCurrent: 'Update the information from data source for the current table', tipRefresh: 'Update the information from data source', tipGrandTotals: 'Show or hide grand totals', tipSubtotals: 'Show or hide subtotals', txtSelect: 'Select', tipSelect: 'Select entire pivot table', - txtPivotTable: 'Pivot Table' + txtPivotTable: 'Pivot Table', + txtTable_PivotStyleMedium: 'Pivot Table Style Medium', + txtTable_PivotStyleDark: 'Pivot Table Style Dark', + txtTable_PivotStyleLight: 'Pivot Table Style Light', + txtGroupPivot_Custom: 'Custom', + txtGroupPivot_Light: 'Light', + txtGroupPivot_Medium: 'Medium', + txtGroupPivot_Dark: 'Dark' } }()), SSE.Views.PivotTable || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/TableSettings.js b/apps/spreadsheeteditor/main/app/view/TableSettings.js index 7ff952f02..4821a66b3 100644 --- a/apps/spreadsheeteditor/main/app/view/TableSettings.js +++ b/apps/spreadsheeteditor/main/app/view/TableSettings.js @@ -524,14 +524,13 @@ define([ cls : 'btn-large-dataview sheet-template-table', iconCls : 'icon-template-table', menu : new Common.UI.Menu({ - style: 'width: 505px;', items: [ - { template: _.template('') } + { template: _.template('') } ] }), dataHint : '1', dataHintDirection: 'bottom', - dataHintOffset: 'big' + dataHintOffset: 'big', }); this.btnTableTemplate.on('render:after', function(btn) { self.mnuTableTemplatePicker = new Common.UI.DataView({ @@ -540,11 +539,34 @@ define([ restoreHeight: 325, groups: new Common.UI.DataViewGroupStore(), store: new Common.UI.DataViewStore(), - itemTemplate: _.template('
'), + itemTemplate: _.template('
'), style: 'max-height: 325px;', delayRenderTips: true }); }); + + this.btnTableTemplate.menu.on('show:before', function(menu) { + if (menu && self.mnuTableTemplatePicker) { + var picker = self.mnuTableTemplatePicker, + columnCount = 7; + + if (picker.cmpEl) { + var itemEl = $(picker.cmpEl.find('.dataview.inner .item-template').get(0)).parent(), + itemMargin = 8, + itemWidth = itemEl.is(':visible') ? parseFloat(itemEl.css('width')) : 60; + + var menuWidth = columnCount * (itemMargin + itemWidth) + 11, // for scroller + menuMargins = parseFloat(picker.cmpEl.css('margin-left')) + parseFloat(picker.cmpEl.css('margin-right')); + if (menuWidth + menuMargins>Common.Utils.innerWidth()) + menuWidth = Math.max(Math.floor((Common.Utils.innerWidth()-menuMargins-11)/(itemMargin + itemWidth)), 2) * (itemMargin + itemWidth) + 11; + picker.cmpEl.css({ + 'width': menuWidth + }); + menu.alignPosition(); + } + } + }); + this.btnTableTemplate.render($('#table-btn-template')); this.lockedControls.push(this.btnTableTemplate); this.mnuTableTemplatePicker.on('item:click', _.bind(this.onTableTemplateSelect, this, this.btnTableTemplate)); @@ -560,21 +582,64 @@ define([ data[index].model.set('imageUrl', img, {silent: true}); $(data[index].el).find('img').attr('src', img); }); - } else { - var arr = []; - _.each(Templates, function(template){ - arr.push({ + } else { + var templates = []; + var groups = [ + {id: 'menu-table-group-custom', caption: self.txtGroupTable_Custom, templates: []}, + {id: 'menu-table-group-light', caption: self.txtGroupTable_Light, templates: []}, + {id: 'menu-table-group-medium', caption: self.txtGroupTable_Medium, templates: []}, + {id: 'menu-table-group-dark', caption: self.txtGroupTable_Dark, templates: []}, + {id: 'menu-table-group-no-name', caption: ' ', templates: []}, + ]; + _.each(Templates, function(item){ + var tip = item.asc_getDisplayName(); + var groupItem = ''; + + if (item.asc_getType()==0) { + var arr = tip.split(' '), + last = arr.pop(); + + if(tip == 'None'){ + groupItem = 'menu-table-group-light'; + } + else { + if(arr.length > 0){ + groupItem = 'menu-table-group-' + arr[arr.length - 1].toLowerCase(); + } + if(groups.some(function(item) {return item.id === groupItem;}) == false) { + groupItem = 'menu-table-group-no-name'; + } + } + arr = 'txtTable_' + arr.join(''); + tip = self[arr] ? self[arr] + ' ' + last : tip; + } + else { + groupItem = 'menu-table-group-custom' + } + groups.filter(function(item){ return item.id == groupItem; })[0].templates.push({ id : Common.UI.getId(), - name : template.asc_getName(), - caption : template.asc_getDisplayName(), - type : template.asc_getType(), - imageUrl : template.asc_getImage(), + name : item.asc_getName(), + caption : item.asc_getDisplayName(), + type : item.asc_getType(), + imageUrl : item.asc_getImage(), + group : groupItem, allowSelected : true, selected : false, - tip : template.asc_getDisplayName() + tip : tip }); }); - self.mnuTableTemplatePicker.store.reset(arr); + + groups = groups.filter(function(item, index){ + return item.templates.length > 0 + }); + + groups.forEach(function(item){ + templates = templates.concat(item.templates); + delete item.templates; + }); + + self.mnuTableTemplatePicker.groups.reset(groups); + self.mnuTableTemplatePicker.store.reset(templates); } }, @@ -700,7 +765,15 @@ define([ textRemDuplicates: 'Remove duplicates', textSlicer: 'Insert slicer', textPivot: 'Insert pivot table', - textActions: 'Table actions' + textActions: 'Table actions', + txtTable_TableStyleMedium: 'Table Style Medium', + txtTable_TableStyleDark: 'Table Style Dark', + txtTable_TableStyleLight: 'Table Style Light', + txtGroupTable_Custom: 'Custom', + txtGroupTable_Light: 'Light', + txtGroupTable_Medium: 'Medium', + txtGroupTable_Dark: 'Dark', + }, SSE.Views.TableSettings || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js index 3e11fe62f..6de1eed28 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -532,6 +532,20 @@ define([ dataHintDirection: 'bottom' }); + me.btnCellStyle = new Common.UI.Button({ + id : 'id-toolbar-btn-cstyle', + cls : 'btn-toolbar', + iconCls : 'toolbar__icon btn-menu-cell', + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.multiselect, _set.cantModifyFilter, _set.wsLock, _set.editVisibleArea], + menu : new Common.UI.Menu({ + items: [ + { template: _.template('
') } + ] + }), + dataHint : '1', + dataHintDirection: 'bottom' + }); + me.btnTextFormatting = new Common.UI.Button({ id : 'id-toolbar-btn-formatting', cls : 'btn-toolbar no-caret', @@ -802,7 +816,7 @@ define([ lock : [_set.editCell, _set.cantPrint, _set.disableOnStart], signals: ['disabled'], dataHint : '1', - dataHintDirection: 'top', + dataHintDirection: 'bottom', dataHintTitle: 'P' }); @@ -813,7 +827,7 @@ define([ lock : [_set.lostConnect], signals : ['disabled'], dataHint : '1', - dataHintDirection: 'bottom', + dataHintDirection: 'top', dataHintTitle: 'S' }); me.btnCollabChanges = me.btnSave; @@ -1195,6 +1209,18 @@ define([ dataHintOffset: 'small' }); + this.btnInsertSmartArt = new Common.UI.Button({ + id: 'tlbtn-insertsmartart', + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon smart-art', + lock: [_set.editCell, _set.lostConnect, _set.coAuth, _set['Objects']], + caption: me.capBtnInsSmartArt, + menu: true, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + me.btnInsertShape = new Common.UI.Button({ id : 'tlbtn-insertshape', cls : 'btn-toolbar x-huge icon-top', @@ -1215,9 +1241,11 @@ define([ caption : me.capInsertText, lock : [_set.editCell, _set.lostConnect, _set.coAuth, _set['Objects']], enableToggle: true, + split : true, dataHint : '1', dataHintDirection: 'bottom', - dataHintOffset: 'small' + dataHintOffset: 'small', + textboxType: 'textRect', }); me.btnInsertTextArt = new Common.UI.Button({ @@ -1299,46 +1327,44 @@ define([ }); me.listStyles = new Common.UI.ComboDataView({ - cls : 'combo-styles', + cls : 'combo-cell-styles', enableKeyEvents : true, - itemWidth : 112, - itemHeight : 40, - style: 'min-width:158px;', - menuMaxHeight : 226, + itemWidth : 100, + itemHeight : 20, + style: 'min-width:135px; max-width: 660px;', + groups: new Common.UI.DataViewGroupStore(), + menuMaxHeight : 380, lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set['FormatCells']], dataHint : '1', dataHintDirection: 'bottom', dataHintOffset : '-16, -4', delayRenderTips: true, + autoWidth: true, beforeOpenHandler: function(e) { var cmp = this, - menu = cmp.openButton.menu, - minMenuColumn = 6; + menu = cmp.openButton.menu; if (menu.cmpEl) { - var itemEl = $(cmp.cmpEl.find('.dataview.inner .style').get(0)).parent(); - var itemMargin = /*parseInt($(itemEl.get(0)).parent().css('margin-right'))*/-1; + var itemEl = $(menu.menuRoot.find('.dataview .item').get(0)); + var groupContainerEl = $(menu.menuRoot.find('.dataview .group-items-container').get(0)); + var itemMargin = parseFloat(itemEl.css('margin-left')) + parseFloat(itemEl.css('margin-right')); Common.Utils.applicationPixelRatio() > 1 && Common.Utils.applicationPixelRatio() < 2 && (itemMargin = -1/Common.Utils.applicationPixelRatio()); var itemWidth = itemEl.is(':visible') ? parseFloat(itemEl.css('width')) : (cmp.itemWidth + parseFloat(itemEl.css('padding-left')) + parseFloat(itemEl.css('padding-right')) + parseFloat(itemEl.css('border-left-width')) + parseFloat(itemEl.css('border-right-width'))); - var minCount = cmp.menuPicker.store.length >= minMenuColumn ? minMenuColumn : cmp.menuPicker.store.length, - columnCount = Math.min(cmp.menuPicker.store.length, Math.round($('.dataview', $(cmp.fieldPicker.el)).width() / (itemMargin + itemWidth) + 0.5)); - - columnCount = columnCount < minCount ? minCount : columnCount; + var columnCount = 6; menu.menuAlignEl = cmp.cmpEl; menu.menuAlign = 'tl-tl'; - var menuWidth = columnCount * (itemMargin + itemWidth), + var menuPickerEl = $(menu.menuRoot.find('.menu-picker-container').get(0)), + paddings = 15 + parseFloat(groupContainerEl.css('padding-left')) + parseFloat(groupContainerEl.css('padding-right')) + parseFloat(menuPickerEl.css('margin-left')) + parseFloat(menuPickerEl.css('margin-right')), + menuWidth = Math.ceil(+ columnCount * (itemWidth + itemMargin) + paddings), buttonOffsetLeft = cmp.openButton.$el.offset().left; - // if (menuWidth>buttonOffsetLeft) - // menuWidth = Math.max(Math.floor(buttonOffsetLeft/(itemMargin + itemWidth)), 2) * (itemMargin + itemWidth); if (menuWidth>Common.Utils.innerWidth()) - menuWidth = Math.max(Math.floor(Common.Utils.innerWidth()/(itemMargin + itemWidth)), 2) * (itemMargin + itemWidth); + menuWidth = Math.max(Math.floor((Common.Utils.innerWidth()-paddings)/(itemMargin + itemWidth)), 2) * (itemMargin + itemWidth) + paddings; var offset = cmp.cmpEl.width() - cmp.openButton.$el.width() - Math.min(menuWidth, buttonOffsetLeft) - 1; menu.setOffset(Math.min(offset, 0)); - menu.cmpEl.css({ 'width': menuWidth, 'min-height': cmp.cmpEl.height() @@ -2051,9 +2077,9 @@ define([ me.btnItalic, me.btnUnderline, me.btnStrikeout, me.btnSubscript, me.btnTextColor, me.btnAlignLeft, me.btnAlignCenter,me.btnAlignRight,me.btnAlignJust, me.btnAlignTop, me.btnAlignMiddle, me.btnAlignBottom, me.btnWrap, me.btnTextOrient, me.btnBackColor, me.btnInsertTable, - me.btnMerge, me.btnInsertFormula, me.btnNamedRange, me.btnIncDecimal, me.btnInsertShape, me.btnInsertEquation, me.btnInsertSymbol, me.btnInsertSlicer, + me.btnMerge, me.btnInsertFormula, me.btnNamedRange, me.btnIncDecimal, me.btnInsertShape, me.btnInsertSmartArt, me.btnInsertEquation, me.btnInsertSymbol, me.btnInsertSlicer, me.btnInsertText, me.btnInsertTextArt, me.btnSortUp, me.btnSortDown, me.btnSetAutofilter, me.btnClearAutofilter, - me.btnTableTemplate, me.btnPercentStyle, me.btnCurrencyStyle, me.btnDecDecimal, me.btnAddCell, me.btnDeleteCell, me.btnCondFormat, + me.btnTableTemplate, me.btnCellStyle, me.btnPercentStyle, me.btnCurrencyStyle, me.btnDecDecimal, me.btnAddCell, me.btnDeleteCell, me.btnCondFormat, me.cmbNumberFormat, me.btnBorders, me.btnInsertImage, me.btnInsertHyperlink, me.btnInsertChart, me.btnColorSchemas, me.btnInsertSparkline, me.btnCopy, me.btnPaste, me.btnCut, me.btnSelectAll, me.listStyles, me.btnPrint, @@ -2244,6 +2270,7 @@ define([ _injectComponent('#slot-btn-setfilter', this.btnSetAutofilter); _injectComponent('#slot-btn-clear-filter', this.btnClearAutofilter); _injectComponent('#slot-btn-table-tpl', this.btnTableTemplate); + _injectComponent('#slot-btn-cell-style', this.btnCellStyle); _injectComponent('#slot-btn-format', this.cmbNumberFormat); _injectComponent('#slot-btn-percents', this.btnPercentStyle); _injectComponent('#slot-btn-currency', this.btnCurrencyStyle); @@ -2259,6 +2286,7 @@ define([ _injectComponent('#slot-btn-search', this.btnSearch); _injectComponent('#slot-btn-inschart', this.btnInsertChart); _injectComponent('#slot-btn-inssparkline', this.btnInsertSparkline); + _injectComponent('#slot-btn-inssmartart', this.btnInsertSmartArt); _injectComponent('#slot-field-styles', this.listStyles); _injectComponent('#slot-btn-chart', this.btnEditChart); _injectComponent('#slot-btn-chart-data', this.btnEditChartData); @@ -2329,7 +2357,8 @@ define([ _updateHint(this.btnInsertImage, this.tipInsertImage); _updateHint(this.btnInsertChart, this.tipInsertChartSpark); _updateHint(this.btnInsertSparkline, this.tipInsertSpark); - _updateHint(this.btnInsertText, this.tipInsertText); + _updateHint(this.btnInsertSmartArt, this.tipInsertSmartArt); + _updateHint(this.btnInsertText, [this.tipInsertHorizontalText ,this.tipInsertText]); _updateHint(this.btnInsertTextArt, this.tipInsertTextart); _updateHint(this.btnInsertHyperlink, this.tipInsertHyperlink + Common.Utils.String.platformKey('Ctrl+K')); _updateHint(this.btnInsertShape, this.tipInsertShape); @@ -2342,6 +2371,7 @@ define([ _updateHint(this.btnClearAutofilter, this.txtClearFilter); _updateHint(this.btnSearch, this.txtSearch); _updateHint(this.btnTableTemplate, this.txtTableTemplate); + _updateHint(this.btnCellStyle, this.txtCellStyle); _updateHint(this.btnPercentStyle, this.tipDigStylePercent); _updateHint(this.btnCurrencyStyle, this.tipDigStyleAccounting); _updateHint(this.btnDecDecimal, this.tipDecDecimal); @@ -2539,6 +2569,62 @@ define([ this.btnInsertChart.menu.on('show:before', onShowBefore); } + if (this.btnInsertSmartArt) { + this.btnInsertSmartArt.setMenu(new Common.UI.Menu({ + cls: 'shifted-right', + items: [] + })); + + var smartArtData = Common.define.smartArt.getSmartArtData(); + smartArtData.forEach(function (item, index) { + var length = item.items.length, + width = 399; + if (length < 5) { + width = length * (70 + 8) + 9; // 4px margin + 4px margin + } + me.btnInsertSmartArt.menu.addItem({ + caption: item.caption, + value: item.sectionId, + itemId: item.id, + iconCls: item.icon ? 'menu__icon ' + item.icon : undefined, + menu: new Common.UI.Menu({ + items: [ + {template: _.template('')} + ], + menuAlign: 'tl-tr', + })}); + }); + var onShowBeforeSmartArt = function (menu) { // + <% if(typeof imageUrl === "undefined" || imageUrl===null || imageUrl==="") { %> style="visibility: hidden;" <% } %>/>', + me.btnInsertSmartArt.menu.items.forEach(function (item, index) { + item.$el.one('mouseenter', function () { + me.fireEvent('generate:smartart', [item.value]); + item.$el.mouseenter(); + }); + item.menuPicker = new Common.UI.DataView({ + el: $('#' + item.options.itemId), + parentMenu: me.btnInsertSmartArt.menu.items[index].menu, + itemTemplate: _.template([ + '
', + '', + '
' + ].join('')), + store: new Common.UI.DataViewStore(), + delayRenderTips: true, + scrollAlwaysVisible: true, + showLast: false + }); + item.menuPicker.on('item:click', function(picker, item, record, e) { + if (record) { + me.fireEvent('insert:smartart', [record.get('value')]); + } + Common.NotificationCenter.trigger('edit:complete', me); + }); + }); + menu.off('show:before', onShowBeforeSmartArt); + }; + this.btnInsertSmartArt.menu.on('show:before', onShowBeforeSmartArt); + } + if ( this.btnInsertSparkline ) { this.btnInsertSparkline.setMenu(new Common.UI.Menu({ style: 'width: 166px;padding: 5px 0 10px;', @@ -2567,6 +2653,31 @@ define([ this.btnInsertSparkline.menu.on('show:before', onShowBefore); } + if(this.btnInsertText) { + this.btnInsertText.setMenu(new Common.UI.Menu({ + items: [ + { + caption: this.tipInsertHorizontalText, + checkable: true, + checkmark: false, + iconCls : 'menu__icon btn-text', + toggleGroup: 'textbox', + value: 'textRect', + iconClsForMainBtn: 'btn-text' + }, + { + caption: this.tipInsertVerticalText, + checkable: true, + checkmark: false, + iconCls : 'menu__icon btn-text-vertical', + toggleGroup: 'textbox', + value: 'textRectVertical', + iconClsForMainBtn: 'btn-text-vertical' + }, + ] + })); + } + if (this.btnInsertTextArt) { var onShowBeforeTextArt = function (menu) { var collection = SSE.getCollection('Common.Collections.TextArt'); @@ -2821,6 +2932,7 @@ define([ this.lockToolbar(Common.enumLock.cantPrint, true, {array: [this.btnPrint]}); } else { this.mode = mode; + !mode.canPrint && this.btnPrint.hide(); this.lockToolbar(Common.enumLock.cantPrint, !mode.canPrint, {array: [this.btnPrint]}); } @@ -3128,7 +3240,9 @@ define([ tipSynchronize: 'The document has been changed by another user. Please click to save your changes and reload the updates.', tipIncFont: 'Increment font size', tipDecFont: 'Decrement font size', - tipInsertText: 'Insert Text', + tipInsertHorizontalText: 'Insert horizontal text box', + tipInsertVerticalText: 'Insert vertical text box', + tipInsertText: 'Insert text box', tipInsertTextart: 'Insert Text Art', tipInsertShape: 'Insert Autoshape', tipDigStylePercent: 'Percent Style', @@ -3164,6 +3278,7 @@ define([ txtSortZA: 'Sort Z to A', txtFilter: 'Filter', txtTableTemplate: 'Format As Table Template', + txtCellStyle: 'Cell Style', textHorizontal: 'Horizontal Text', textCounterCw: 'Angle Counterclockwise', textClockwise: 'Angle Clockwise', @@ -3310,6 +3425,8 @@ define([ tipHAlighOle: 'Horizontal Align', tipVAlighOle: 'Vertical Align', tipSelectAll: 'Select all', - tipCut: 'Cut' + tipCut: 'Cut', + tipInsertSmartArt: 'Insert SmartArt', + capBtnInsSmartArt: 'SmartArt' }, SSE.Views.Toolbar || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/ViewTab.js b/apps/spreadsheeteditor/main/app/view/ViewTab.js index 8516fd2e5..999a30728 100644 --- a/apps/spreadsheeteditor/main/app/view/ViewTab.js +++ b/apps/spreadsheeteditor/main/app/view/ViewTab.js @@ -101,6 +101,14 @@ define([ '' + '
' + '' + + '
' + + '
' + + '' + + '
' + + '
' + + '' + + '
' + + '
' + ''; function setEvents() { @@ -149,6 +157,12 @@ define([ me.fireEvent('editcomplete', me); }).on('combo:focusin', _.bind(this.onComboOpen, this, false)) .on('show:after', _.bind(this.onComboOpen, this, true)); + me.chLeftMenu.on('change', _.bind(function (checkbox, state) { + me.fireEvent('leftmenu:hide', [me.chLeftMenu, state === 'checked']); + }, me)); + me.chRightMenu.on('change', _.bind(function (checkbox, state) { + me.fireEvent('rightmenu:hide', [me.chRightMenu, state === 'checked']); + }, me)); } return { @@ -307,6 +321,25 @@ define([ dataHintOffset: 'small' }); this.lockedControls.push(this.chToolbar); + + this.chRightMenu = new Common.UI.CheckBox({ + lock: [_set.lostConnect], + labelText: this.textRightMenu, + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chRightMenu); + + this.chLeftMenu = new Common.UI.CheckBox({ + lock: [_set.lostConnect], + labelText: this.textLeftMenu, + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chLeftMenu); + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, @@ -334,6 +367,8 @@ define([ this.chHeadings && this.chHeadings.render($host.find('#slot-chk-heading')); this.chGridlines && this.chGridlines.render($host.find('#slot-chk-gridlines')); this.chZeros && this.chZeros.render($host.find('#slot-chk-zeros')); + this.chLeftMenu.render($host.find('#slot-chk-leftmenu')); + this.chRightMenu.render($host.find('#slot-chk-rightmenu')); return this.$el; }, @@ -391,17 +426,31 @@ define([ me.$el.find('.separator-theme').remove(); } + var emptyGroup = []; if (config.canBrandingExt && config.customization && config.customization.statusBar === false || !Common.UI.LayoutManager.isElementVisible('statusBar')) { + emptyGroup.push(me.chStatusbar.$el.closest('.elset')); me.chStatusbar.$el.remove(); - if (!config.isEdit) { - var slotChkFormula = me.chFormula.$el, - groupFormula = slotChkFormula.closest('.group'), - groupToolbar = me.chToolbar.$el.closest('.group'); - groupToolbar.find('.elset')[1].append(slotChkFormula[0]); - groupFormula.remove(); - me.$el.find('.separator-formula').remove(); - } } + + if (config.canBrandingExt && config.customization && config.customization.leftMenu === false || !Common.UI.LayoutManager.isElementVisible('leftMenu')) { + emptyGroup.push(me.chLeftMenu.$el.closest('.elset')); + me.chLeftMenu.$el.remove(); + } else if (emptyGroup.length>0) { + emptyGroup.push(me.chLeftMenu.$el.closest('.elset')); + emptyGroup.shift().append(me.chLeftMenu.$el[0]); + } + + if (!config.isEdit || config.canBrandingExt && config.customization && config.customization.rightMenu === false || !Common.UI.LayoutManager.isElementVisible('rightMenu')) { + emptyGroup.push(me.chRightMenu.$el.closest('.elset')); + me.chRightMenu.$el.remove(); + } else if (emptyGroup.length>0) { + emptyGroup.push(me.chRightMenu.$el.closest('.elset')); + emptyGroup.shift().append(me.chRightMenu.$el[0]); + } + if (emptyGroup.length>1) { // remove empty group + emptyGroup[emptyGroup.length-1].closest('.group').remove(); + } + if (Common.UI.Themes.available()) { function _fill_themes() { var btn = this.btnInterfaceTheme; @@ -430,6 +479,15 @@ define([ }, me)); } } + + var value = Common.UI.LayoutManager.getInitValue('leftMenu'); + value = (value!==undefined) ? !value : false; + me.chLeftMenu.setValue(!Common.localStorage.getBool("sse-hidden-leftmenu", value)); + + value = Common.UI.LayoutManager.getInitValue('rightMenu'); + value = (value!==undefined) ? !value : false; + me.chRightMenu.setValue(!Common.localStorage.getBool("sse-hidden-rightmenu", value)); + setEvents.call(me); }); }, @@ -531,7 +589,9 @@ define([ textAlwaysShowToolbar: 'Always show toolbar', textInterfaceTheme: 'Interface theme', textShowFrozenPanesShadow: 'Show frozen panes shadow', - tipInterfaceTheme: 'Interface theme' + tipInterfaceTheme: 'Interface theme', + textLeftMenu: 'Left panel', + textRightMenu: 'Right panel' } }()), SSE.Views.ViewTab || {})); }); diff --git a/apps/spreadsheeteditor/main/app/view/Viewport.js b/apps/spreadsheeteditor/main/app/view/Viewport.js index 89b7e2707..b1235c765 100644 --- a/apps/spreadsheeteditor/main/app/view/Viewport.js +++ b/apps/spreadsheeteditor/main/app/view/Viewport.js @@ -162,6 +162,15 @@ define([ rightMenuView = SSE.getController('RightMenu').getView('RightMenu'); me._rightMenu = rightMenuView.render(this.mode); + var value = Common.UI.LayoutManager.getInitValue('rightMenu'); + value = (value!==undefined) ? !value : false; + Common.localStorage.getBool("sse-hidden-rightmenu", value) && me._rightMenu.hide(); + }, + + applyCommonMode: function() { + var value = Common.UI.LayoutManager.getInitValue('leftMenu'); + value = (value!==undefined) ? !value : false; + Common.localStorage.getBool("sse-hidden-leftmenu", value) && SSE.getController('LeftMenu').getView('LeftMenu').hide(); }, setMode: function(mode, delay) { diff --git a/apps/spreadsheeteditor/main/app/view/WatchDialog.js b/apps/spreadsheeteditor/main/app/view/WatchDialog.js new file mode 100644 index 000000000..de00578c1 --- /dev/null +++ b/apps/spreadsheeteditor/main/app/view/WatchDialog.js @@ -0,0 +1,288 @@ +/* + * + * (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 + * +*/ +/** + * + * WatchDialog.js + * + * Created by Julia.Radzhabova on 24.06.22 + * Copyright (c) 2022 Ascensio System SIA. All rights reserved. + * + */ + +define([ 'text!spreadsheeteditor/main/app/template/WatchDialog.template', + 'common/main/lib/view/AdvancedSettingsWindow', + 'common/main/lib/component/ListView' +], function (contentTemplate) { + 'use strict'; + + SSE.Views = SSE.Views || {}; + + SSE.Views.WatchDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({ + + options: { + alias: 'WatchDialog', + contentWidth: 560, + height: 294, + modal: false, + buttons: null + }, + + initialize: function (options) { + var me = this; + _.extend(this.options, { + title: this.txtTitle, + template: [ + '
', + '
' + _.template(contentTemplate)({scope: this}) + '
', + '
', + '' + ].join('') + }, options); + + this.api = options.api; + this.handler = options.handler; + + this.wrapEvents = { + onRefreshWatchList: _.bind(this.refreshList, this) + }; + + Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options); + }, + render: function () { + Common.Views.AdvancedSettingsWindow.prototype.render.call(this); + var me = this; + + this.watchList = new Common.UI.ListView({ + el: $('#watch-dialog-list', this.$window), + multiSelect: true, + store: new Common.UI.DataViewStore(), + simpleAddMode: true, + itemTemplate: _.template([ + '
', + '
<%= Common.Utils.String.htmlEncode(book) %>
', + '
<%= Common.Utils.String.htmlEncode(sheet) %>
', + '
<%= Common.Utils.String.htmlEncode(name) %>
', + '
<%= cell %>
', + '
<%= value %>
', + '
<%= formula %>
', + '
' + ].join('')), + tabindex: 1 + }); + this.watchList.on('item:select', _.bind(this.onSelectWatch, this)) + .on('item:keydown', _.bind(this.onKeyDown, this)); + + this.btnAdd = new Common.UI.Button({ + el: $('#watch-dialog-btn-add', this.$window) + }); + this.btnAdd.on('click', _.bind(this.onAddWatch, this, false)); + + this.btnDelete = new Common.UI.Button({ + parentEl: $('#watch-dialog-btn-delete', this.$window), + cls: 'btn-text-split-default auto', + caption: this.textDelete, + split: true, + menu : new Common.UI.Menu({ + style: 'min-width:100px;', + items: [ + { + caption: this.textDelete, + value: 0 + }, + { + caption: this.textDeleteAll, + value: 1 + }] + }) + }); + $(this.btnDelete.cmpEl.find('button')[0]).css('min-width', '87px'); + this.btnDelete.on('click', _.bind(this.onDeleteWatch, this)); + this.btnDelete.menu.on('item:click', _.bind(this.onDeleteMenu, this)); + this.afterRender(); + }, + + afterRender: function() { + this._setDefaults(); + }, + + getFocusedComponents: function() { + return [ this.btnAdd, this.btnDelete, this.watchList ]; + }, + + getDefaultFocusableComponent: function () { + return this.watchList; + }, + + _setDefaults: function (props) { + this.refreshList(); + this.api.asc_registerCallback('asc_onUpdateCellWatches', this.wrapEvents.onRefreshWatchList); + }, + + refreshList: function(watches) { + if (watches) { // change existing watches + for (var idx in watches) { + if (watches.hasOwnProperty(idx)) { + var index = parseInt(idx), + item = watches[idx], + store = this.watchList.store; + if (index>=0 && index0) && this.watchList.selectByIndex(this._deletedIndex 0) && this.watchList.scrollToRecord(selectedRec[0]); + this._fromKeyDown && this.watchList.focus(); + this._fromKeyDown = false; + this._deletedIndex=undefined; + } + this.updateButtons(); + } + }, + + onAddWatch: function() { + var range = ''; + var me = this; + if (me.api) { + var handlerDlg = function(dlg, result) { + if (result == 'ok') { + me.api.asc_addCellWatches(dlg.getSettings()); + } + }; + + var win = new SSE.Views.CellRangeDialog({ + handler: handlerDlg + }).on('close', function() { + me.show(); + }); + + var xy = me.$window.offset(); + me.hide(); + win.show(xy.left + 65, xy.top + 77); + win.setSettings({ + api : me.api, + range : me.api.asc_getWorksheetName(me.api.asc_getActiveWorksheetIndex()) + '!' + me.api.asc_getActiveRangeStr(Asc.referenceType.A), + type : Asc.c_oAscSelectionDialogType.Chart + }); + } + }, + + onDeleteWatch: function() { + var me = this; + var rec = this.watchList.getSelectedRec(); + if (rec) { + var props=[]; + _.each(rec, function (r, i) { + me._deletedIndex = me.watchList.store.indexOf(r)-props.length; + props[i] =r.get('props'); + }); + this.api.asc_deleteCellWatches(props); + } + }, + + onDeleteMenu: function(menu, item) { + if (item.value == 1) { + this.api.asc_deleteCellWatches(undefined, true); + } else + this.onDeleteWatch(); + }, + + onSelectWatch: function(lisvView, itemView, record) { + this.updateButtons(); + }, + + onKeyDown: function (lisvView, record, e) { + if (e.keyCode==Common.UI.Keys.DELETE && !this.btnDelete.isDisabled()) { + this._fromKeyDown = true; + this.onDeleteWatch(); + } + }, + + updateButtons: function() { + var rec = this.watchList.getSelectedRec(); + this.btnDelete.setDisabled(!(rec && rec.length>0)); + this.watchList.scroller && this.watchList.scroller.update({alwaysVisibleY: true}); + }, + + close: function () { + this.api.asc_unregisterCallback('asc_onUpdateCellWatches', this.wrapEvents.onRefreshWatchList); + + Common.Views.AdvancedSettingsWindow.prototype.close.call(this); + }, + + txtTitle: 'Watch Window', + textAdd: 'Add watch', + textDelete: 'Delete watch', + textDeleteAll: 'Delete all', + closeButtonText: 'Close', + textBook: 'Book', + textSheet: 'Sheet', + textName: 'Name', + textCell: 'Cell', + textValue: 'Value', + textFormula: 'Formula' + + }, SSE.Views.WatchDialog || {})); +}); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app_dev.js b/apps/spreadsheeteditor/main/app_dev.js index ace713ac7..d807bf1c7 100644 --- a/apps/spreadsheeteditor/main/app_dev.js +++ b/apps/spreadsheeteditor/main/app_dev.js @@ -53,7 +53,7 @@ require.config({ perfectscrollbar: 'common/main/lib/mods/perfect-scrollbar', jmousewheel : '../vendor/perfect-scrollbar/src/jquery.mousewheel', xregexp : '../vendor/xregexp/xregexp-all-min', - sockjs : '../vendor/sockjs/sockjs.min', + socketio : '../vendor/socketio/socket.io.min', api : 'api/documents/api', core : 'common/main/lib/core/application', notification : 'common/main/lib/core/NotificationCenter', @@ -119,7 +119,7 @@ require([ 'analytics', 'gateway', 'locale', - 'sockjs', + 'socketio', 'underscore' ], function (Backbone, Bootstrap, Core) { if (Backbone.History && Backbone.History.started) diff --git a/apps/spreadsheeteditor/main/index.html b/apps/spreadsheeteditor/main/index.html index 6e5f3f13c..746eaa2a6 100644 --- a/apps/spreadsheeteditor/main/index.html +++ b/apps/spreadsheeteditor/main/index.html @@ -368,6 +368,7 @@ + diff --git a/apps/spreadsheeteditor/main/index_loader.html b/apps/spreadsheeteditor/main/index_loader.html index f7403d86e..fb64a5780 100644 --- a/apps/spreadsheeteditor/main/index_loader.html +++ b/apps/spreadsheeteditor/main/index_loader.html @@ -262,6 +262,7 @@ + <% } %> diff --git a/apps/spreadsheeteditor/mobile/src/less/app-ios.less b/apps/spreadsheeteditor/mobile/src/less/app-ios.less index 545276e22..ae6b7a373 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app-ios.less +++ b/apps/spreadsheeteditor/mobile/src/less/app-ios.less @@ -16,4 +16,24 @@ .actions-move-sheet .actions-button-text{ color: @brandColor; } + + .tooltip-cell-data { + border-radius: 4px; + } + + .all-list.popover { + .view { + border-radius: var(--f7-popover-border-radius); + } + .page-content { + border-radius: var(--f7-popover-border-radius); + + & > .list:last-child { + margin-bottom: 0; + } + } + .list { + overflow: hidden; + } + } } diff --git a/apps/spreadsheeteditor/mobile/src/less/app-material.less b/apps/spreadsheeteditor/mobile/src/less/app-material.less index b89c3ac81..2b07d2352 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app-material.less +++ b/apps/spreadsheeteditor/mobile/src/less/app-material.less @@ -58,4 +58,8 @@ } } } + + .tooltip-cell-data { + border-radius: 0; + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index 8dc8c6a6e..2f6739b8d 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -180,4 +180,90 @@ color: @text-normal; } } +} + +.tooltip-cell-data { + width: 186px; + height: 153px; + overflow-y: auto; + box-shadow: 0px 20px 46px rgba(0, 0, 0, 0.1); + border-radius: 4px; + .popover-inner { + padding: 8px; + } + &__title { + font-style: normal; + font-weight: 600; + font-size: 12px; + line-height: 16px; + color: @text-normal; + margin: 0; + margin-bottom: 4px; + } + &__msg { + font-style: normal; + font-weight: 400; + font-size: 11px; + line-height: 13px; + color: @text-secondary; + letter-spacing: 0.06px; + margin: 0; + } +} + +// Cell styles + +.cell-styles-list { + ul { + display: flex; + justify-content: space-around; + flex-wrap: wrap; + padding-left: 5px; + padding-right: 5px; + padding-top: 5px; + background-color: @background-tertiary; + li.item-theme { + // border: 0.5px solid #c8c7cc; + border: 2px solid @fill-white; + padding: 1px; + background-repeat: no-repeat; + width: 108px; + height: 53px; + margin-bottom: 8px; + background-position: center; + .item-content { + width: 100%; + height: 100%; + padding: 0; + .item-inner { + width: 100%; + height: 100%; + padding: 0; + &:after { + display: none; + } + .thumb { + width: 100%; + height: 100%; + padding: 0; + background-size: contain; + background-color: var(--canvas-content-background); + } + } + } + &.active:before { + content: ''; + position: absolute; + width: 22px; + height: 22px; + right: 2px; + bottom: 2px; + z-index: 1; + .encoded-svg-background(''); + } + } + &:after { + display: none; + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/page/app.jsx b/apps/spreadsheeteditor/mobile/src/page/app.jsx index 02bd3f4f0..561f07c3c 100644 --- a/apps/spreadsheeteditor/mobile/src/page/app.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/app.jsx @@ -12,7 +12,7 @@ import routes from '../router/routes.js'; import '../../../../common/main/lib/util/utils.js'; import '../../../../common/main/lib/util/LanguageInfo.js'; -import {LocalStorage} from '../../../../common/mobile/utils/LocalStorage.js'; +import {LocalStorage} from '../../../../common/mobile/utils/LocalStorage.mjs'; import Notifications from '../../../../common/mobile/utils/notifications.js'; import {MainController} from '../controller/Main'; import {Device} from '../../../../common/mobile/utils/device'; diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index 951bcc33b..a8273ad6f 100644 --- a/apps/spreadsheeteditor/mobile/src/page/main.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/main.jsx @@ -16,6 +16,8 @@ import { f7, Link } from 'framework7-react'; import {FunctionGroups} from "../controller/add/AddFunction"; import ContextMenu from '../controller/ContextMenu'; import { Toolbar } from "../controller/Toolbar"; +import { AddLinkController } from '../controller/add/AddLink'; +import { EditLinkController } from '../controller/edit/EditLink'; class MainPage extends Component { constructor(props) { @@ -25,7 +27,9 @@ class MainPage extends Component { addOptionsVisible: false, addShowOptions: null, settingsVisible: false, - collaborationVisible: false + collaborationVisible: false, + addLinkSettingsVisible: false, + editLinkSettingsVisible: false }; } @@ -48,6 +52,12 @@ class MainPage extends Component { } else if ( opts === 'coauth' ) { this.state.collaborationVisible && (opened = true); newState.collaborationVisible = true; + } else if ( opts === 'add-link') { + this.state.addLinkSettingsVisible && (opened = true); + newState.addLinkSettingsVisible = true; + } else if( opts === 'edit-link') { + this.state.editLinkSettingsVisible && (opened = true); + newState.editLinkSettingsVisible = true; } for (let key in this.state) { @@ -79,6 +89,10 @@ class MainPage extends Component { return {settingsVisible: false}; else if ( opts == 'coauth' ) return {collaborationVisible: false}; + else if ( opts === 'add-link') + return {addLinkSettingsVisible: false}; + else if( opts === 'edit-link') + return {editLinkSettingsVisible: false}; }); if ((opts === 'edit' || opts === 'coauth') && Device.phone) { f7.navbar.show('.main-navbar'); @@ -133,7 +147,15 @@ class MainPage extends Component { } { !this.state.addOptionsVisible ? null : - + + } + { + !this.state.addLinkSettingsVisible ? null : + + } + { + !this.state.editLinkSettingsVisible ? null : + } { !this.state.settingsVisible ? null : diff --git a/apps/spreadsheeteditor/mobile/src/store/appOptions.js b/apps/spreadsheeteditor/mobile/src/store/appOptions.js index 7c0c94181..0ce848826 100644 --- a/apps/spreadsheeteditor/mobile/src/store/appOptions.js +++ b/apps/spreadsheeteditor/mobile/src/store/appOptions.js @@ -1,5 +1,5 @@ import {action, observable, makeObservable} from 'mobx'; -import { LocalStorage } from '../../../../common/mobile/utils/LocalStorage'; +import { LocalStorage } from '../../../../common/mobile/utils/LocalStorage.mjs'; export class storeAppOptions { constructor() { diff --git a/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js b/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js index fdf83b3b3..5638cad5d 100644 --- a/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js @@ -1,10 +1,10 @@ import {makeObservable, action, observable} from 'mobx'; -import { LocalStorage } from '../../../../common/mobile/utils/LocalStorage'; +import { LocalStorage } from '../../../../common/mobile/utils/LocalStorage.mjs'; export class storeApplicationSettings { constructor() { makeObservable(this, { - unitMeasurement: observable, + unitMeasurement: observable, macrosMode: observable, macrosRequest: observable, formulaLang: observable, diff --git a/apps/spreadsheeteditor/mobile/src/store/focusObjects.js b/apps/spreadsheeteditor/mobile/src/store/focusObjects.js index dd1b117f8..9b26d70fc 100644 --- a/apps/spreadsheeteditor/mobile/src/store/focusObjects.js +++ b/apps/spreadsheeteditor/mobile/src/store/focusObjects.js @@ -44,19 +44,19 @@ export class storeFocusObjects { for (let object of this._focusObjects) { const type = object.get_ObjectType(); - if (Asc.c_oAscTypeSelectElement.Paragraph == type) { + if (Asc.c_oAscTypeSelectElement.Paragraph === type) { _objects.push('text', 'paragraph'); - } else if (Asc.c_oAscTypeSelectElement.Table == type) { + } else if (Asc.c_oAscTypeSelectElement.Table === type) { _objects.push('table'); - } else if (Asc.c_oAscTypeSelectElement.Image == type) { + } else if (Asc.c_oAscTypeSelectElement.Image === type) { if (object.get_ObjectValue().get_ChartProperties()) { _objects.push('chart'); - } else if (object.get_ObjectValue().get_ShapeProperties()) { + } else if (object.get_ObjectValue().get_ShapeProperties() && !_objects.includes('chart')) { _objects.push('shape'); } else { _objects.push('image'); } - } else if (Asc.c_oAscTypeSelectElement.Hyperlink == type) { + } else if (Asc.c_oAscTypeSelectElement.Hyperlink === type) { _objects.push('hyperlink'); } } diff --git a/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx index 56d314ab6..5512c0fca 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx @@ -1,4 +1,4 @@ -import React, {Fragment} from 'react'; +import React, {Fragment, useEffect} from 'react'; import {NavLeft, NavRight, NavTitle, Link, Icon} from 'framework7-react'; import { Device } from '../../../../common/mobile/utils/device'; import EditorUIController from '../lib/patch' @@ -14,6 +14,36 @@ const ToolbarView = props => { onUndoClick: props.onUndo, onRedoClick: props.onRedo }) : null; + const docTitle = props.docTitle; + const docTitleLength = docTitle.length; + + const correctOverflowedText = el => { + if(el) { + el.innerText = docTitle; + + if(el.scrollWidth > el.clientWidth) { + const arrDocTitle = docTitle.split('.'); + const ext = arrDocTitle[1]; + const name = arrDocTitle[0]; + const diff = Math.floor(docTitleLength * el.clientWidth / el.scrollWidth - ext.length - 6); + const shortName = name.substring(0, diff).trim(); + + return `${shortName}...${ext}`; + } + + return docTitle; + } + }; + + useEffect(() => { + if(!Device.phone) { + const elemTitle = document.querySelector('.subnavbar .title'); + + if (elemTitle) { + elemTitle.innerText = correctOverflowedText(elemTitle); + } + } + }, [docTitle]); return ( @@ -21,7 +51,7 @@ const ToolbarView = props => { {props.isShowBack && } {Device.ios && undo_box} - {!Device.phone && {props.docTitle}} + {!Device.phone && {props.docTitle}} {Device.android && undo_box} {props.showEditDocument && diff --git a/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx b/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx index 95762db4f..7807ada67 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx @@ -13,7 +13,9 @@ import {AddOtherController} from "../../controller/add/AddOther"; import {AddImageController} from "../../controller/add/AddImage"; import {PageImageLinkSettings} from "./AddImage"; import {AddLinkController} from "../../controller/add/AddLink"; +import {EditLinkController} from "../../controller/edit/EditLink"; import {PageTypeLink, PageSheet} from "./AddLink"; +import {PageEditTypeLink, PageEditSheet} from "../../view/edit/EditLink"; import AddFilterController from "../../controller/add/AddFilter"; const routes = [ @@ -48,6 +50,18 @@ const routes = [ path: '/add-link-sheet/', component: PageSheet }, + { + path: '/edit-link/', + component: EditLinkController + }, + { + path: '/edit-link-type/', + component: PageEditTypeLink + }, + { + path: '/edit-link-sheet/', + component: PageEditSheet + }, // Other { path: '/add-sort-and-filter/', @@ -123,31 +137,34 @@ const AddTabs = props => { component: }); } - if (showPanels && showPanels.indexOf('image') !== -1) { - tabs.push({ - caption: _t.textImage, - id: 'add-image', - icon: 'icon-add-image', - component: - }); - } + + // if (showPanels && showPanels.indexOf('image') !== -1) { + // tabs.push({ + // caption: _t.textImage, + // id: 'add-image', + // icon: 'icon-add-image', + // component: + // }); + // } } + if (!showPanels && (!wsProps.InsertHyperlinks || !wsProps.Objects || !wsProps.Sort)) { tabs.push({ caption: _t.textOther, id: 'add-other', icon: 'icon-add-other', - component: - }); - } - if (((showPanels && showPanels === 'hyperlink') || props.isAddShapeHyperlink) && !wsProps.InsertHyperlinks) { - tabs.push({ - caption: _t.textAddLink, - id: 'add-link', - icon: 'icon-link', - component: + component: }); } + + // if (((showPanels && showPanels === 'hyperlink') || props.isAddShapeHyperlink) && !wsProps.InsertHyperlinks) { + // tabs.push({ + // caption: _t.textAddLink, + // id: 'add-link', + // icon: 'icon-link', + // component: + // }); + // } if(!tabs.length) { if (Device.phone) { @@ -183,10 +200,10 @@ class AddView extends Component { return ( show_popover ? this.props.onclosed()}> - + : this.props.onclosed()}> - + ) } @@ -245,6 +262,7 @@ const Add = props => { isAddShapeHyperlink = {isAddShapeHyperlink} wsProps={props.wsProps} wsLock={props.wsLock} + onCloseLinkSettings={props.onCloseLinkSettings} /> }; diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddChart.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddChart.jsx index fb94e6c34..41ca9fba1 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddChart.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddChart.jsx @@ -1,38 +1,65 @@ import React, {Fragment, useState} from 'react'; import {observer, inject} from "mobx-react"; import {Swiper, SwiperSlide} from 'framework7-react'; +import {Device} from "../../../../../common/mobile/utils/device"; const AddChart = props => { const types = props.storeChartSettings.types; const countSlides = Math.floor(types.length / 3); - const arraySlides = Array(countSlides).fill(countSlides); + const arraySlides = !Device.phone ? Array(countSlides).fill(countSlides) : [types.slice(0, 6), types.slice(6)]; return (
{types && types.length ? ( - {arraySlides.map((_, indexSlide) => { - let typesSlide = types.slice(indexSlide * 3, (indexSlide * 3) + 3); + {Device.phone ? + arraySlides.map((typesSlide, indexSlide) => { + return ( + + {typesSlide.map((row, indexRow) => { + return ( +
    + {row.map((type, index) => { + return ( +
  • { + props.onInsertChart(type.type) + }}> +
    +
  • + ) + })} +
+ ) + })} +
+ ) + }) + : + arraySlides.map((_, indexSlide) => { + let typesSlide = types.slice(indexSlide * 3, (indexSlide * 3) + 3); - return ( - - {typesSlide.map((row, indexRow) => { - return ( -
    - {row.map((type, index) => { - return ( -
  • {props.onInsertChart(type.type)}}> -
    -
  • - ) - })} -
- ) - })} -
- ) - })} + return ( + + {typesSlide.map((row, indexRow) => { + return ( +
    + {row.map((type, index) => { + return ( +
  • { + props.onInsertChart(type.type) + }}> +
    +
  • + ) + })} +
+ ) + })} +
+ ) + })}
) : null}
diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx index 271866175..298629fdb 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx @@ -1,5 +1,5 @@ import React, {Fragment, useState} from 'react'; -import {Page, Navbar, BlockTitle, List, ListItem, ListInput, ListButton, Icon} from 'framework7-react'; +import {Page, Navbar, BlockTitle, List, ListItem, ListInput, ListButton, Icon, Link, NavLeft, NavRight, NavTitle, f7} from 'framework7-react'; import { useTranslation } from 'react-i18next'; import {Device} from "../../../../../common/mobile/utils/device"; @@ -7,9 +7,16 @@ const PageTypeLink = ({curType, changeType}) => { const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); const [typeLink, setTypeLink] = useState(curType); + return ( - + + {Device.phone && + + + + } + {setTypeLink('ext'); changeType('ext');}}> {setTypeLink('int'); changeType('int');}}> @@ -22,12 +29,19 @@ const PageSheet = ({curSheet, sheets, changeSheet}) => { const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); const [stateSheet, setSheet] = useState(curSheet.value); + return ( - + + {Device.phone && + + + + } + {sheets.map((sheet) => { - return( + return ( { ) }; -const AddLinkView = props => { +const AddLink = props => { const isIos = Device.ios; const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); @@ -75,7 +89,26 @@ const AddLinkView = props => { const [range, setRange] = useState(''); return ( - + + + + { + props.isNavigate ? f7.views.current.router.back() : props.closeModal(); + }}> + {Device.android && } + + + {t('View.Add.textLinkSettings')} + + { + props.onInsertLink(typeLink === 'ext' ? + {type: 'ext', url: link, text: stateDisplayText} : + {type: 'int', url: range, sheet: curSheet.caption, text: stateDisplayText}); + }} text={Device.ios ? t('View.Add.textDone') : ''}> + {Device.android && } + + + {props.allowInternal && { {typeLink === 'ext' && { setLink(event.target.value); @@ -113,7 +146,7 @@ const AddLinkView = props => { } { @@ -130,28 +163,7 @@ const AddLinkView = props => { className={isIos ? 'list-input-right' : ''} /> - - {props.onInsertLink(typeLink === 'ext' ? - {type: 'ext', url: link, text: stateDisplayText, tooltip: screenTip} : - {type: 'int', url: range, sheet: curSheet.caption, text: stateDisplayText, tooltip: screenTip})}} - /> - - - ) -}; - -const AddLink = props => { - const { t } = useTranslation(); - const _t = t('View.Add', {returnObjects: true}); - return ( - props.inTabs ? - : - - - - + ) }; diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddOther.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddOther.jsx index 592929673..f793a0d46 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddOther.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddOther.jsx @@ -1,10 +1,13 @@ import React from 'react'; +import { inject, observer } from 'mobx-react'; import {List, ListItem, Icon} from 'framework7-react'; import { useTranslation } from 'react-i18next'; -const AddOther = props => { +const AddOther = inject("storeFocusObjects")(observer(props => { const { t } = useTranslation(); const _t = t('View.Add', {returnObjects: true}); + const storeFocusObjects = props.storeFocusObjects; + const isHyperLink = storeFocusObjects.selections.indexOf('hyperlink') > -1; const hideAddComment = props.hideAddComment(); const wsProps = props.wsProps; @@ -22,11 +25,14 @@ const AddOther = props => { - + ) -}; +})); export {AddOther}; \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/Edit.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/Edit.jsx index 89d408d9d..651bb6fc5 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/Edit.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/Edit.jsx @@ -17,7 +17,7 @@ import { PageImageReplace, PageImageReorder, PageLinkSettings } from './EditImag import { TextColorCell, FillColorCell, CustomTextColorCell, CustomFillColorCell, FontsCell, TextFormatCell, TextOrientationCell, BorderStyleCell, BorderColorCell, CustomBorderColorCell, BorderSizeCell, PageFormatCell, PageAccountingFormatCell, PageCurrencyFormatCell, PageDateFormatCell, PageTimeFormatCell, CellStyle } from './EditCell'; import { PageTextFonts, PageTextFontColor, PageTextCustomFontColor } from './EditText'; import { PageChartDesign, PageChartDesignType, PageChartDesignStyle, PageChartDesignFill, PageChartDesignBorder, PageChartCustomFillColor, PageChartBorderColor, PageChartCustomBorderColor, PageChartReorder, PageChartLayout, PageLegend, PageChartTitle, PageHorizontalAxisTitle, PageVerticalAxisTitle, PageHorizontalGridlines, PageVerticalGridlines, PageDataLabels, PageChartVerticalAxis, PageVertAxisCrosses, PageDisplayUnits, PageVertMajorType, PageVertMinorType, PageVertLabelPosition, PageChartHorizontalAxis, PageHorAxisCrosses, PageHorAxisPosition, PageHorMajorType, PageHorMinorType, PageHorLabelPosition } from './EditChart'; -import { PageTypeLink, PageSheet } from './EditLink'; +import { PageEditTypeLink, PageEditSheet } from './EditLink'; const routes = [ @@ -282,11 +282,11 @@ const routes = [ { path: '/edit-link-type/', - component: PageTypeLink + component: PageEditTypeLink }, { path: '/edit-link-sheet', - component: PageSheet + component: PageEditSheet } @@ -363,11 +363,11 @@ const EditTabs = props => { component: }); } else { - if (settings.indexOf('cell') > -1) { + if (!(wsProps.Objects && store.isLockedShape) && settings.indexOf('image') > -1) { editors.push({ - caption: _t.textCell, - id: 'edit-text', - component: + caption: _t.textImage, + id: 'edit-image', + component: }) } if (!(wsProps.Objects && store.isLockedShape) && settings.indexOf('shape') > -1) { @@ -377,11 +377,11 @@ const EditTabs = props => { component: }) } - if (!(wsProps.Objects && store.isLockedText) && settings.indexOf('text') > -1) { + if (settings.indexOf('cell') > -1) { editors.push({ - caption: _t.textText, + caption: _t.textCell, id: 'edit-text', - component: + component: }) } if (!(wsProps.Objects && store.isLockedShape) && settings.indexOf('chart') > -1) { @@ -391,22 +391,23 @@ const EditTabs = props => { component: }) } - if (!(wsProps.Objects && store.isLockedShape) && settings.indexOf('image') > -1) { + if (!(wsProps.Objects && store.isLockedText) && settings.indexOf('text') > -1) { editors.push({ - caption: _t.textImage, - id: 'edit-image', - component: + caption: _t.textText, + id: 'edit-text', + component: }) } - if(!wsProps.Objects) { - if (settings.indexOf('hyperlink') > -1 || (props.hyperinfo && props.isAddShapeHyperlink)) { - editors.push({ - caption: _t.textHyperlink, - id: 'edit-link', - component: - }) - } - } + + // if(!wsProps.Objects) { + // if (settings.indexOf('hyperlink') > -1 || (props.hyperinfo && props.isAddShapeHyperlink)) { + // editors.push({ + // caption: _t.textHyperlink, + // id: 'edit-link', + // component: + // }) + // } + // } } if(!editors.length) { diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index 80aaf3b24..4f58e1100 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -4,7 +4,7 @@ import {f7, List, ListItem, Icon, Row, Button, Page, Navbar, Segmented, BlockTit import { useTranslation } from 'react-i18next'; import {Device} from '../../../../../common/mobile/utils/device'; import { ThemeColorPalette, CustomColorPicker } from '../../../../../common/mobile/lib/component/ThemeColorPalette.jsx'; -import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage'; +import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage.mjs'; const EditCell = props => { const isAndroid = Device.android; @@ -114,7 +114,7 @@ const EditCell = props => { }}> {!isAndroid && }
-
+
diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditImage.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditImage.jsx index 800494c90..a66d9862c 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditImage.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditImage.jsx @@ -14,17 +14,17 @@ const EditImage = props => { return ( - - {_t.textActualSize} - {_t.textRemoveImage} + {t('View.Edit.textDeleteImage')} ) diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditLink.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditLink.jsx index 9d09846b1..9ccd0f584 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditLink.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditLink.jsx @@ -1,10 +1,10 @@ import React, {useState, useEffect, Fragment} from 'react'; import {observer, inject} from "mobx-react"; -import {f7, List, ListItem, Page, Navbar, NavRight, Icon, ListButton, ListInput, Link} from 'framework7-react'; +import {f7, List, ListItem, Page, Navbar, NavRight, Icon, ListButton, ListInput, Link, NavLeft, NavTitle} from 'framework7-react'; import { useTranslation } from 'react-i18next'; import {Device} from "../../../../../common/mobile/utils/device"; -const PageTypeLink = ({curType, changeType, storeFocusObjects}) => { +const PageEditTypeLink = ({curType, changeType, storeFocusObjects}) => { const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); const [typeLink, setTypeLink] = useState(curType); @@ -17,10 +17,10 @@ const PageTypeLink = ({curType, changeType, storeFocusObjects}) => { return ( - + {Device.phone && - + } @@ -32,7 +32,7 @@ const PageTypeLink = ({curType, changeType, storeFocusObjects}) => { ) }; -const PageSheet = ({curSheet, sheets, changeSheet, storeFocusObjects}) => { +const PageEditSheet = ({curSheet, sheets, changeSheet, storeFocusObjects}) => { const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); const [stateSheet, setSheet] = useState(curSheet); @@ -45,10 +45,10 @@ const PageSheet = ({curSheet, sheets, changeSheet, storeFocusObjects}) => { return ( - + {Device.phone && - + } @@ -110,7 +110,27 @@ const EditLink = props => { const [range, setRange] = useState(valueRange || 'A1'); return ( - + + + + { + props.isNavigate ? f7.views.current.router.back() : props.closeModal(); + }}> + {Device.android && } + + + {t('View.Edit.textLinkSettings')} + + { + props.onEditLink(typeLink === 1 ? + {type: 1, url: link, text: stateDisplayText, tooltip: screenTip} : + {type: 2, url: range, sheet: curSheet, text: stateDisplayText, tooltip: screenTip}); + }} text={Device.ios ? t('View.Edit.textDone') : ''}> + {Device.android && } + + + + { } {setDisplayText(event.target.value)}} @@ -159,26 +179,24 @@ const EditLink = props => { /> - {props.onEditLink(typeLink === 1 ? - {type: 1, url: link, text: stateDisplayText, tooltip: screenTip} : - {type: 2, url: range, sheet: curSheet, text: stateDisplayText, tooltip: screenTip})}} - /> - props.onRemoveLink()} + { + props.onRemoveLink(); + props.isNavigate ? f7.views.current.router.back() : props.closeModal(); + }} /> - + ) }; -const _PageTypeLink = inject("storeFocusObjects")(observer(PageTypeLink)); -const _PageSheet = inject("storeFocusObjects")(observer(PageSheet)); +const _PageEditTypeLink = inject("storeFocusObjects")(observer(PageEditTypeLink)); +const _PageEditSheet = inject("storeFocusObjects")(observer(PageEditSheet)); export { EditLink, - _PageTypeLink as PageTypeLink, - _PageSheet as PageSheet + _PageEditTypeLink as PageEditTypeLink, + _PageEditSheet as PageEditSheet }; \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx index a8cef2809..89acaf088 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx @@ -9,6 +9,7 @@ const EditShape = props => { const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); const storeFocusObjects = props.storeFocusObjects; + const objects = storeFocusObjects.objects; const shapeObject = storeFocusObjects.shapeObject; const canFill = shapeObject && shapeObject.get_ShapeProperties().asc_getCanFill(); @@ -38,20 +39,22 @@ const EditShape = props => { onBorderColor: props.onBorderColor }}> } - { !hideChangeType && - } - { !isSmartArtInternal && - } - - {_t.textRemoveShape} - + {objects.indexOf('image') === -1 && + + {_t.textRemoveShape} + + }
) }; diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx index 3676ba4ec..6d4ada536 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx @@ -4,7 +4,7 @@ import {f7, List, ListItem, Icon, Row, Button, Page, Navbar, NavRight, Segmented import { useTranslation } from 'react-i18next'; import {Device} from '../../../../../common/mobile/utils/device'; import { ThemeColorPalette, CustomColorPicker } from '../../../../../common/mobile/lib/component/ThemeColorPalette.jsx'; -import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage'; +import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage.mjs'; const EditText = props => { const isAndroid = Device.android; diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx index 138789288..ea36d7edd 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx @@ -13,6 +13,7 @@ import {MacrosSettings, RegionalSettings, FormulaLanguage} from './ApplicationSe // import SpreadsheetAbout from './SpreadsheetAbout.jsx'; import About from '../../../../../common/mobile/lib/view/About'; import { Direction } from '../../../../../spreadsheeteditor/mobile/src/view/settings/ApplicationSettings'; +import SharingSettings from "../../../../../common/mobile/lib/view/SharingSettings"; const routes = [ { @@ -66,6 +67,13 @@ const routes = [ { path: '/direction/', component: Direction + }, + + // Sharing Settings + + { + path: '/sharing-settings/', + component: SharingSettings } ]; @@ -188,6 +196,9 @@ const SettingsList = inject("storeAppOptions")(observer(props => { + + + {_canDownload && diff --git a/build/Gruntfile.js b/build/Gruntfile.js index 480ba124c..a5e9b2649 100644 --- a/build/Gruntfile.js +++ b/build/Gruntfile.js @@ -281,7 +281,7 @@ module.exports = function(grunt) { }, } }); - doRegisterTask('sockjs'); + doRegisterTask('socketio'); doRegisterTask('xregexp'); doRegisterTask('megapixel'); doRegisterTask('jquery'); @@ -673,7 +673,7 @@ module.exports = function(grunt) { grunt.registerTask('deploy-apps-common', ['apps-common-init', 'clean', 'copy', 'imagemin', 'svgmin']); grunt.registerTask('deploy-sdk', ['sdk-init', 'clean', copyTask]); - grunt.registerTask('deploy-sockjs', ['sockjs-init', 'clean', 'copy']); + grunt.registerTask('deploy-socketio', ['socketio-init', 'clean', 'copy']); grunt.registerTask('deploy-xregexp', ['xregexp-init', 'clean', 'copy']); grunt.registerTask('deploy-megapixel', ['megapixel-init', 'clean', 'copy']); grunt.registerTask('deploy-jquery', ['jquery-init', 'clean', 'copy']); diff --git a/build/appforms.json b/build/appforms.json index 7a2f2ed9c..7750b7b67 100644 --- a/build/appforms.json +++ b/build/appforms.json @@ -32,7 +32,7 @@ "perfectscrollbar": "common/main/lib/mods/perfect-scrollbar", "jmousewheel": "../vendor/perfect-scrollbar/src/jquery.mousewheel", "xregexp": "empty:", - "sockjs": "empty:", + "socketio": "empty:", "coapisettings": "empty:", "allfonts": "empty:", "sdk": "empty:", @@ -85,7 +85,7 @@ "coapisettings", "allfonts", "xregexp", - "sockjs" + "socketio" ] }, "gateway": { diff --git a/build/bower.json b/build/bower.json index c99679ee9..e23eff4dc 100644 --- a/build/bower.json +++ b/build/bower.json @@ -10,7 +10,7 @@ "requirejs-text": "~2.0.5", "less": "~1.5.0", "bootstrap": "~3.0.3", - "sockjs": "~0.3.2", + "socketio": "~4.5.3", "perfect-scrollbar": "latest" } } \ No newline at end of file diff --git a/build/common.json b/build/common.json index e6dae49ed..238c9e3f9 100644 --- a/build/common.json +++ b/build/common.json @@ -180,14 +180,14 @@ } } }, - "sockjs": { + "socketio": { "clean": [ - "../deploy/web-apps/vendor/sockjs" + "../deploy/web-apps/vendor/socketio" ], "copy": { "script": { - "src": "../vendor/sockjs/sockjs.min.js", - "dest": "../deploy/web-apps/vendor/sockjs/sockjs.min.js" + "src": "../vendor/socketio/socket.io.min.js", + "dest": "../deploy/web-apps/vendor/socketio/socket.io.min.js" } } }, @@ -272,7 +272,7 @@ "deploy-api", "deploy-apps-common", "deploy-sdk", - "deploy-sockjs", + "deploy-socketio", "deploy-xregexp", "deploy-requirejs", "deploy-megapixel", diff --git a/build/documenteditor.json b/build/documenteditor.json index 86d0f48ce..3ebde78d9 100644 --- a/build/documenteditor.json +++ b/build/documenteditor.json @@ -30,7 +30,7 @@ "perfectscrollbar": "common/main/lib/mods/perfect-scrollbar", "jmousewheel": "../vendor/perfect-scrollbar/src/jquery.mousewheel", "xregexp": "empty:", - "sockjs": "empty:", + "socketio": "empty:", "coapisettings": "empty:", "allfonts": "empty:", "sdk": "empty:", @@ -83,7 +83,7 @@ "coapisettings", "allfonts", "xregexp", - "sockjs" + "socketio" ] }, "gateway": { diff --git a/build/package-lock.json b/build/package-lock.json index 1c65b5eba..7b29b6378 100644 --- a/build/package-lock.json +++ b/build/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.1", "dependencies": { "grunt": "^1.5.3", - "grunt-contrib-clean": "^2.0.0", + "grunt-contrib-clean": "^2.0.1", "grunt-contrib-concat": "^2.0.0", "grunt-contrib-copy": "^1.0.0", "grunt-contrib-cssmin": "^4.0.0", @@ -17,7 +17,7 @@ "grunt-contrib-imagemin": "^4.0.0", "grunt-contrib-less": "^3.0.0", "grunt-contrib-requirejs": "^1.0.0", - "grunt-contrib-uglify": "^5.0.1", + "grunt-contrib-uglify": "^5.2.2", "grunt-exec": "^3.0.0", "grunt-inline": "file:plugins/grunt-inline", "grunt-json-minify": "^1.1.0", @@ -29,13 +29,13 @@ "iconv-lite": "^0.6.3", "less-plugin-clean-css": "1.5.1", "lodash": "^4.17.21", - "terser": "^5.12.1", + "terser": "^5.15.1", "vinyl-fs": "^3.0.3" }, "devDependencies": { - "chai": "1.9.1", - "grunt-mocha": "^1.0.0", - "mocha": "^9.2.0" + "chai": "^4.3.6", + "grunt-mocha": "^1.2.0", + "mocha": "^10.0.0" } }, "node_modules/@ampproject/remapping": { @@ -519,26 +519,53 @@ "node": ">=8" } }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, "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/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, "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 + "integrity": "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==" }, "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, + "version": "0.3.15", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", + "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" @@ -883,9 +910,9 @@ } }, "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=", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", "dev": true, "engines": { "node": "*" @@ -900,9 +927,9 @@ } }, "node_modules/async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "dependencies": { "lodash": "^4.17.14" } @@ -1663,16 +1690,21 @@ } }, "node_modules/chai": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/chai/-/chai-1.9.1.tgz", - "integrity": "sha1-NxG7ZwbhVo80wLNgmL+PGUVcga4=", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.6.tgz", + "integrity": "sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==", "dev": true, "dependencies": { - "assertion-error": "1.0.0", - "deep-eql": "0.1.3" + "assertion-error": "^1.1.0", + "check-error": "^1.0.2", + "deep-eql": "^3.0.1", + "get-func-name": "^2.0.0", + "loupe": "^2.3.1", + "pathval": "^1.1.1", + "type-detect": "^4.0.5" }, "engines": { - "node": ">= 0.4.0" + "node": ">=4" } }, "node_modules/chalk": { @@ -1690,6 +1722,15 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/check-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", + "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/chokidar": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", @@ -2564,15 +2605,15 @@ } }, "node_modules/deep-eql": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz", - "integrity": "sha1-71WKyrjeJSBs1xOQbXTlaTDrafI=", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz", + "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==", "dev": true, "dependencies": { - "type-detect": "0.1.1" + "type-detect": "^4.0.0" }, "engines": { - "node": "*" + "node": ">=0.12" } }, "node_modules/default-require-extensions": { @@ -2762,12 +2803,12 @@ } }, "node_modules/ejs": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.6.tgz", - "integrity": "sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==", + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", + "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", "dev": true, "dependencies": { - "jake": "^10.6.1" + "jake": "^10.8.5" }, "bin": { "ejs": "bin/cli.js" @@ -3330,6 +3371,7 @@ "version": "1.7.0", "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "optional": true, "dependencies": { "escape-string-regexp": "^1.0.5", "object-assign": "^4.1.0" @@ -3352,12 +3394,33 @@ } }, "node_modules/filelist": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.2.tgz", - "integrity": "sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dev": true, "dependencies": { - "minimatch": "^3.0.4" + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" } }, "node_modules/filename-reserved-regex": { @@ -3787,6 +3850,15 @@ "node": "6.* || 8.* || >= 10.*" } }, + "node_modules/get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/get-intrinsic": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", @@ -4255,20 +4327,25 @@ } }, "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==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-2.0.1.tgz", + "integrity": "sha512-uRvnXfhiZt8akb/ZRDHJpQQtkkVkqc/opWO4Po/9ehC2hPxgptB9S6JHDC/Nxswo4CJSM0iFPT/Iym3cEMWzKA==", "dependencies": { - "async": "^2.6.1", + "async": "^3.2.3", "rimraf": "^2.6.2" }, "engines": { - "node": ">=6" + "node": ">=12" }, "peerDependencies": { "grunt": ">=0.4.5" } }, + "node_modules/grunt-contrib-clean/node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + }, "node_modules/grunt-contrib-clean/node_modules/rimraf": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", @@ -4381,49 +4458,6 @@ "node": ">=10.0" } }, - "node_modules/grunt-contrib-cssmin/node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/grunt-contrib-cssmin/node_modules/gzip-size": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", - "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", - "dependencies": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/grunt-contrib-cssmin/node_modules/maxmin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-3.0.0.tgz", - "integrity": "sha512-wcahMInmGtg/7c6a75fr21Ch/Ks1Tb+Jtoan5Ft4bAI0ZvJqyOw8kkM7e7p8hDSzY805vmxwHT50KcjGwKyJ0g==", - "dependencies": { - "chalk": "^4.1.0", - "figures": "^3.2.0", - "gzip-size": "^5.1.1", - "pretty-bytes": "^5.3.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/grunt-contrib-htmlmin": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/grunt-contrib-htmlmin/-/grunt-contrib-htmlmin-3.1.0.tgz", @@ -4571,54 +4605,19 @@ } }, "node_modules/grunt-contrib-uglify": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-5.1.0.tgz", - "integrity": "sha512-czoxpIWCwDCUy4oKUVz7Nb9aQknBPMsIq4uu4Fz5UX7UTdmU4GwBbefE6yAcgo1bT40Lhciijh8hFd4aqfb3Jg==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-5.2.2.tgz", + "integrity": "sha512-ITxiWxrjjP+RZu/aJ5GLvdele+sxlznh+6fK9Qckio5ma8f7Iv8woZjRkGfafvpuygxNefOJNc+hfjjBayRn2Q==", "dependencies": { - "chalk": "^2.4.1", - "maxmin": "^2.1.0", - "uglify-js": "^3.15.2", + "chalk": "^4.1.2", + "maxmin": "^3.0.0", + "uglify-js": "^3.16.1", "uri-path": "^1.0.0" }, "engines": { "node": ">=12" } }, - "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", @@ -4851,25 +4850,20 @@ } }, "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==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/grunt-spritesmith/-/grunt-spritesmith-6.10.0.tgz", + "integrity": "sha512-vEmw9hH1W4pT860OKYF/uWqAbmEHbvEALChr9iXe2rTn1k1DgN2Dg2SjQukXB8/R9B0rAoacZQ97FtysUGG0cg==", "dependencies": { - "async": "~1.5.0", + "async": "~2.6.4", "spritesheet-templates": "^10.3.0", "spritesmith": "^3.4.0", - "underscore": "~1.13.1", + "underscore": "~1.13.3", "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", @@ -4957,14 +4951,15 @@ } }, "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=", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", "dependencies": { - "duplexer": "^0.1.1" + "duplexer": "^0.1.1", + "pify": "^4.0.1" }, "engines": { - "node": ">=0.12.0" + "node": ">=6" } }, "node_modules/handlebars": { @@ -6215,12 +6210,12 @@ } }, "node_modules/jake": { - "version": "10.8.4", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.4.tgz", - "integrity": "sha512-MtWeTkl1qGsWUtbl/Jsca/8xSoK3x0UmS82sNbjqxxG/de/M/3b1DntdjHgPMC50enlTNwXOCRqPXLLt5cCfZA==", + "version": "10.8.5", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", + "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", "dev": true, "dependencies": { - "async": "0.9.x", + "async": "^3.2.3", "chalk": "^4.0.2", "filelist": "^1.0.1", "minimatch": "^3.0.4" @@ -6233,15 +6228,15 @@ } }, "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=", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", "dev": true }, "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==" + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" }, "node_modules/jpegtran-bin": { "version": "4.0.0", @@ -6796,6 +6791,15 @@ "node": ">=0.10.0" } }, + "node_modules/loupe": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.4.tgz", + "integrity": "sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==", + "dev": true, + "dependencies": { + "get-func-name": "^2.0.0" + } + }, "node_modules/lower-case": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", @@ -6897,89 +6901,34 @@ } }, "node_modules/maxmin": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-2.1.0.tgz", - "integrity": "sha1-TTsiCQPZXu5+t6x/qGTnLcCaMWY=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-3.0.0.tgz", + "integrity": "sha512-wcahMInmGtg/7c6a75fr21Ch/Ks1Tb+Jtoan5Ft4bAI0ZvJqyOw8kkM7e7p8hDSzY805vmxwHT50KcjGwKyJ0g==", "dependencies": { - "chalk": "^1.0.0", - "figures": "^1.0.1", - "gzip-size": "^3.0.0", - "pretty-bytes": "^3.0.0" + "chalk": "^4.1.0", + "figures": "^3.2.0", + "gzip-size": "^5.1.1", + "pretty-bytes": "^5.3.0" }, "engines": { - "node": ">=0.12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "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=", + "node_modules/maxmin/node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "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" + "escape-string-regexp": "^1.0.5" }, "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" + "node": ">=8" }, - "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" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/mdn-data": { @@ -7148,42 +7097,40 @@ } }, "node_modules/mocha": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz", - "integrity": "sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.0.0.tgz", + "integrity": "sha512-0Wl+elVUD43Y0BqPZBzZt8Tnkw9CMUdNYnUsTfOM1vuhJVZL+kiesFYsqwBkEEuEixaiPe5ZQdqDgX2jddhmoA==", "dev": true, "dependencies": { "@ungap/promise-all-settled": "1.1.2", "ansi-colors": "4.1.1", "browser-stdout": "1.3.1", "chokidar": "3.5.3", - "debug": "4.3.3", + "debug": "4.3.4", "diff": "5.0.0", "escape-string-regexp": "4.0.0", "find-up": "5.0.0", "glob": "7.2.0", - "growl": "1.10.5", "he": "1.2.0", "js-yaml": "4.1.0", "log-symbols": "4.1.0", - "minimatch": "4.2.1", + "minimatch": "5.0.1", "ms": "2.1.3", - "nanoid": "3.3.1", + "nanoid": "3.3.3", "serialize-javascript": "6.0.0", "strip-json-comments": "3.1.1", "supports-color": "8.1.1", - "which": "2.0.2", - "workerpool": "6.2.0", + "workerpool": "6.2.1", "yargs": "16.2.0", "yargs-parser": "20.2.4", "yargs-unparser": "2.0.0" }, "bin": { "_mocha": "bin/_mocha", - "mocha": "bin/mocha" + "mocha": "bin/mocha.js" }, "engines": { - "node": ">= 12.0.0" + "node": ">= 14.0.0" }, "funding": { "type": "opencollective", @@ -7197,9 +7144,9 @@ "dev": true }, "node_modules/mocha/node_modules/debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "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" @@ -7310,17 +7257,26 @@ } }, "node_modules/mocha/node_modules/minimatch": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz", - "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" }, "engines": { "node": ">=10" } }, + "node_modules/mocha/node_modules/minimatch/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, "node_modules/mocha/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -7348,9 +7304,9 @@ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" }, "node_modules/nanoid": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", - "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", + "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", "dev": true, "bin": { "nanoid": "bin/nanoid.cjs" @@ -7630,14 +7586,6 @@ "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/nyc": { "version": "15.1.0", "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz", @@ -7862,6 +7810,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "optional": true, "engines": { "node": ">=0.10.0" } @@ -8472,6 +8421,15 @@ "node": ">=4" } }, + "node_modules/pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", @@ -12393,13 +12351,13 @@ } }, "node_modules/terser": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.12.1.tgz", - "integrity": "sha512-NXbs+7nisos5E+yXwAD+y7zrcTkMqb0dEJxIGtSKPdCBzopf7ni4odPul2aechpV7EXNvOudYOX2bb5tln1jbQ==", + "version": "5.15.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", + "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", "dependencies": { + "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", "commander": "^2.20.0", - "source-map": "~0.7.2", "source-map-support": "~0.5.20" }, "bin": { @@ -12420,14 +12378,6 @@ "node": ">=0.4.0" } }, - "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==", - "engines": { - "node": ">= 8" - } - }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", @@ -12627,12 +12577,12 @@ "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=", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, "engines": { - "node": "*" + "node": ">=4" } }, "node_modules/type-fest": { @@ -12659,9 +12609,9 @@ } }, "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==", + "version": "3.17.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.3.tgz", + "integrity": "sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==", "bin": { "uglifyjs": "bin/uglifyjs" }, @@ -12702,9 +12652,9 @@ } }, "node_modules/underscore": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.2.tgz", - "integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g==" + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.4.tgz", + "integrity": "sha512-BQFnUDuAQ4Yf/cYY5LNrK9NCJFKriaRbD9uR1fTeXnBeoa97W0i41qkZfGO9pSo8I5KzjAcSY2XYtdf0oKd7KQ==" }, "node_modules/underscore.string": { "version": "3.3.6", @@ -13153,9 +13103,9 @@ "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" }, "node_modules/workerpool": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz", - "integrity": "sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", "dev": true }, "node_modules/wrap-ansi": { @@ -13342,7 +13292,7 @@ "version": "0.0.1", "integrity": "sha1-JN2XDWx749RJy7SeBD2tLML6nOc=", "dependencies": { - "grunt-spritesmith": "^6.8.0" + "grunt-spritesmith": "^6.10.0" } } }, @@ -13710,23 +13660,44 @@ "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true }, + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, "@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 + "integrity": "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==" + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + }, + "@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } }, "@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 + "integrity": "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==" }, "@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, + "version": "0.3.15", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", + "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", "requires": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" @@ -13977,9 +13948,9 @@ "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=", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", "dev": true }, "assign-symbols": { @@ -13988,9 +13959,9 @@ "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==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", "requires": { "lodash": "^4.17.14" } @@ -14575,13 +14546,18 @@ } }, "chai": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/chai/-/chai-1.9.1.tgz", - "integrity": "sha1-NxG7ZwbhVo80wLNgmL+PGUVcga4=", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.6.tgz", + "integrity": "sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==", "dev": true, "requires": { - "assertion-error": "1.0.0", - "deep-eql": "0.1.3" + "assertion-error": "^1.1.0", + "check-error": "^1.0.2", + "deep-eql": "^3.0.1", + "get-func-name": "^2.0.0", + "loupe": "^2.3.1", + "pathval": "^1.1.1", + "type-detect": "^4.0.5" } }, "chalk": { @@ -14593,6 +14569,12 @@ "supports-color": "^7.1.0" } }, + "check-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", + "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==", + "dev": true + }, "chokidar": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", @@ -15301,12 +15283,12 @@ } }, "deep-eql": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz", - "integrity": "sha1-71WKyrjeJSBs1xOQbXTlaTDrafI=", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz", + "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==", "dev": true, "requires": { - "type-detect": "0.1.1" + "type-detect": "^4.0.0" } }, "default-require-extensions": { @@ -15463,12 +15445,12 @@ } }, "ejs": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.6.tgz", - "integrity": "sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==", + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", + "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", "dev": true, "requires": { - "jake": "^10.6.1" + "jake": "^10.8.5" } }, "electron-to-chromium": { @@ -15910,6 +15892,7 @@ "version": "1.7.0", "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "optional": true, "requires": { "escape-string-regexp": "^1.0.5", "object-assign": "^4.1.0" @@ -15926,12 +15909,32 @@ "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==" }, "filelist": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.2.tgz", - "integrity": "sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dev": true, "requires": { - "minimatch": "^3.0.4" + "minimatch": "^5.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } } }, "filename-reserved-regex": { @@ -16252,6 +16255,12 @@ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, + "get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==", + "dev": true + }, "get-intrinsic": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", @@ -16642,14 +16651,19 @@ } }, "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==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-2.0.1.tgz", + "integrity": "sha512-uRvnXfhiZt8akb/ZRDHJpQQtkkVkqc/opWO4Po/9ehC2hPxgptB9S6JHDC/Nxswo4CJSM0iFPT/Iym3cEMWzKA==", "requires": { - "async": "^2.6.1", + "async": "^3.2.3", "rimraf": "^2.6.2" }, "dependencies": { + "async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + }, "rimraf": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", @@ -16731,36 +16745,6 @@ "chalk": "^4.1.0", "clean-css": "^5.0.1", "maxmin": "^3.0.0" - }, - "dependencies": { - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "gzip-size": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", - "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", - "requires": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" - } - }, - "maxmin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-3.0.0.tgz", - "integrity": "sha512-wcahMInmGtg/7c6a75fr21Ch/Ks1Tb+Jtoan5Ft4bAI0ZvJqyOw8kkM7e7p8hDSzY805vmxwHT50KcjGwKyJ0g==", - "requires": { - "chalk": "^4.1.0", - "figures": "^3.2.0", - "gzip-size": "^5.1.1", - "pretty-bytes": "^5.3.0" - } - } } }, "grunt-contrib-htmlmin": { @@ -16881,42 +16865,14 @@ } }, "grunt-contrib-uglify": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-5.1.0.tgz", - "integrity": "sha512-czoxpIWCwDCUy4oKUVz7Nb9aQknBPMsIq4uu4Fz5UX7UTdmU4GwBbefE6yAcgo1bT40Lhciijh8hFd4aqfb3Jg==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-5.2.2.tgz", + "integrity": "sha512-ITxiWxrjjP+RZu/aJ5GLvdele+sxlznh+6fK9Qckio5ma8f7Iv8woZjRkGfafvpuygxNefOJNc+hfjjBayRn2Q==", "requires": { - "chalk": "^2.4.1", - "maxmin": "^2.1.0", - "uglify-js": "^3.15.2", + "chalk": "^4.1.2", + "maxmin": "^3.0.0", + "uglify-js": "^3.16.1", "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": { @@ -17113,22 +17069,15 @@ } }, "grunt-spritesmith": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/grunt-spritesmith/-/grunt-spritesmith-6.9.0.tgz", - "integrity": "sha512-u6ZQwiivimm/sz9HalrFiniAZcesIq8eTdqqv2UinZ+eng0Ah3swFK6BvWFFeapzUXYCMHUKBc7a8liGQtn4wg==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/grunt-spritesmith/-/grunt-spritesmith-6.10.0.tgz", + "integrity": "sha512-vEmw9hH1W4pT860OKYF/uWqAbmEHbvEALChr9iXe2rTn1k1DgN2Dg2SjQukXB8/R9B0rAoacZQ97FtysUGG0cg==", "requires": { - "async": "~1.5.0", + "async": "~2.6.4", "spritesheet-templates": "^10.3.0", "spritesmith": "^3.4.0", - "underscore": "~1.13.1", + "underscore": "~1.13.3", "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": { @@ -17184,11 +17133,12 @@ "integrity": "sha1-252c5Z4v5J2id+nbwZXD4Rz7FsI=" }, "gzip-size": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz", - "integrity": "sha1-VGGI6b3DN/Zzdy+BZgRks4nc5SA=", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", "requires": { - "duplexer": "^0.1.1" + "duplexer": "^0.1.1", + "pify": "^4.0.1" } }, "handlebars": { @@ -17392,7 +17342,7 @@ "iconsprite": { "version": "file:sprites", "requires": { - "grunt-spritesmith": "^6.8.0" + "grunt-spritesmith": "^6.10.0" } }, "iconv-lite": { @@ -18086,29 +18036,29 @@ } }, "jake": { - "version": "10.8.4", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.4.tgz", - "integrity": "sha512-MtWeTkl1qGsWUtbl/Jsca/8xSoK3x0UmS82sNbjqxxG/de/M/3b1DntdjHgPMC50enlTNwXOCRqPXLLt5cCfZA==", + "version": "10.8.5", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", + "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", "dev": true, "requires": { - "async": "0.9.x", + "async": "^3.2.3", "chalk": "^4.0.2", "filelist": "^1.0.1", "minimatch": "^3.0.4" }, "dependencies": { "async": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", - "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", "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==" + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" }, "jpegtran-bin": { "version": "4.0.0", @@ -18537,6 +18487,15 @@ "signal-exit": "^3.0.0" } }, + "loupe": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.4.tgz", + "integrity": "sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==", + "dev": true, + "requires": { + "get-func-name": "^2.0.0" + } + }, "lower-case": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", @@ -18613,66 +18572,23 @@ } }, "maxmin": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-2.1.0.tgz", - "integrity": "sha1-TTsiCQPZXu5+t6x/qGTnLcCaMWY=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-3.0.0.tgz", + "integrity": "sha512-wcahMInmGtg/7c6a75fr21Ch/Ks1Tb+Jtoan5Ft4bAI0ZvJqyOw8kkM7e7p8hDSzY805vmxwHT50KcjGwKyJ0g==", "requires": { - "chalk": "^1.0.0", - "figures": "^1.0.1", - "gzip-size": "^3.0.0", - "pretty-bytes": "^3.0.0" + "chalk": "^4.1.0", + "figures": "^3.2.0", + "gzip-size": "^5.1.1", + "pretty-bytes": "^5.3.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=", + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "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" + "escape-string-regexp": "^1.0.5" } - }, - "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=" } } }, @@ -18799,32 +18715,30 @@ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" }, "mocha": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz", - "integrity": "sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.0.0.tgz", + "integrity": "sha512-0Wl+elVUD43Y0BqPZBzZt8Tnkw9CMUdNYnUsTfOM1vuhJVZL+kiesFYsqwBkEEuEixaiPe5ZQdqDgX2jddhmoA==", "dev": true, "requires": { "@ungap/promise-all-settled": "1.1.2", "ansi-colors": "4.1.1", "browser-stdout": "1.3.1", "chokidar": "3.5.3", - "debug": "4.3.3", + "debug": "4.3.4", "diff": "5.0.0", "escape-string-regexp": "4.0.0", "find-up": "5.0.0", "glob": "7.2.0", - "growl": "1.10.5", "he": "1.2.0", "js-yaml": "4.1.0", "log-symbols": "4.1.0", - "minimatch": "4.2.1", + "minimatch": "5.0.1", "ms": "2.1.3", - "nanoid": "3.3.1", + "nanoid": "3.3.3", "serialize-javascript": "6.0.0", "strip-json-comments": "3.1.1", "supports-color": "8.1.1", - "which": "2.0.2", - "workerpool": "6.2.0", + "workerpool": "6.2.1", "yargs": "16.2.0", "yargs-parser": "20.2.4", "yargs-unparser": "2.0.0" @@ -18837,9 +18751,9 @@ "dev": true }, "debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "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" @@ -18916,12 +18830,23 @@ } }, "minimatch": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz", - "integrity": "sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", "dev": true, "requires": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + } } }, "ms": { @@ -18947,9 +18872,9 @@ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" }, "nanoid": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", - "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", + "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", "dev": true }, "nanomatch": { @@ -19181,11 +19106,6 @@ "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=" - }, "nyc": { "version": "15.1.0", "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz", @@ -19360,7 +19280,8 @@ "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "optional": true }, "object-copy": { "version": "0.1.0", @@ -19807,6 +19728,12 @@ } } }, + "pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "dev": true + }, "pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", @@ -22633,13 +22560,13 @@ } }, "terser": { - "version": "5.12.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.12.1.tgz", - "integrity": "sha512-NXbs+7nisos5E+yXwAD+y7zrcTkMqb0dEJxIGtSKPdCBzopf7ni4odPul2aechpV7EXNvOudYOX2bb5tln1jbQ==", + "version": "5.15.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", + "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", "requires": { + "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", "commander": "^2.20.0", - "source-map": "~0.7.2", "source-map-support": "~0.5.20" }, "dependencies": { @@ -22647,11 +22574,6 @@ "version": "8.7.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==" - }, - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" } } }, @@ -22817,9 +22739,9 @@ "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=", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true }, "type-fest": { @@ -22843,9 +22765,9 @@ } }, "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==" + "version": "3.17.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.3.tgz", + "integrity": "sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==" }, "unbox-primitive": { "version": "1.0.1", @@ -22874,9 +22796,9 @@ "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" }, "underscore": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.2.tgz", - "integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g==" + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.4.tgz", + "integrity": "sha512-BQFnUDuAQ4Yf/cYY5LNrK9NCJFKriaRbD9uR1fTeXnBeoa97W0i41qkZfGO9pSo8I5KzjAcSY2XYtdf0oKd7KQ==" }, "underscore.string": { "version": "3.3.6", @@ -23251,9 +23173,9 @@ "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" }, "workerpool": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz", - "integrity": "sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", "dev": true }, "wrap-ansi": { diff --git a/build/package.json b/build/package.json index 117b5cedd..8c859ff04 100644 --- a/build/package.json +++ b/build/package.json @@ -5,7 +5,7 @@ "private": true, "dependencies": { "grunt": "^1.5.3", - "grunt-contrib-clean": "^2.0.0", + "grunt-contrib-clean": "^2.0.1", "grunt-contrib-concat": "^2.0.0", "grunt-contrib-copy": "^1.0.0", "grunt-contrib-cssmin": "^4.0.0", @@ -13,7 +13,7 @@ "grunt-contrib-imagemin": "^4.0.0", "grunt-contrib-less": "^3.0.0", "grunt-contrib-requirejs": "^1.0.0", - "grunt-contrib-uglify": "^5.0.1", + "grunt-contrib-uglify": "^5.2.2", "grunt-exec": "^3.0.0", "grunt-inline": "file:plugins/grunt-inline", "grunt-json-minify": "^1.1.0", @@ -25,12 +25,11 @@ "iconv-lite": "^0.6.3", "less-plugin-clean-css": "1.5.1", "lodash": "^4.17.21", - "terser": "^5.12.1", + "terser": "^5.15.1", "vinyl-fs": "^3.0.3" }, - "devDependencies": { - "chai": "1.9.1", + "chai": "^4.3.6", "grunt-mocha": "^1.2.0", - "mocha": "^9.2.0" + "mocha": "^10.0.0" } } diff --git a/build/presentationeditor.json b/build/presentationeditor.json index f66c8b22f..d7b9d1279 100644 --- a/build/presentationeditor.json +++ b/build/presentationeditor.json @@ -30,7 +30,7 @@ "perfectscrollbar": "common/main/lib/mods/perfect-scrollbar", "jmousewheel": "../vendor/perfect-scrollbar/src/jquery.mousewheel", "xregexp": "empty:", - "sockjs": "empty:", + "socketio": "empty:", "coapisettings": "empty:", "allfonts": "empty:", "sdk": "empty:", @@ -83,7 +83,7 @@ "coapisettings", "allfonts", "xregexp", - "sockjs" + "socketio" ] }, "gateway": { diff --git a/build/spreadsheeteditor.json b/build/spreadsheeteditor.json index df58fe594..1ec8adb39 100644 --- a/build/spreadsheeteditor.json +++ b/build/spreadsheeteditor.json @@ -30,7 +30,7 @@ "perfectscrollbar": "common/main/lib/mods/perfect-scrollbar", "jmousewheel": "../vendor/perfect-scrollbar/src/jquery.mousewheel", "xregexp": "empty:", - "sockjs": "empty:", + "socketio": "empty:", "coapisettings": "empty:", "allfonts": "empty:", "sdk": "empty:", @@ -83,7 +83,7 @@ "coapisettings", "allfonts", "xregexp", - "sockjs" + "socketio" ] }, "gateway": { diff --git a/build/sprites/package-lock.json b/build/sprites/package-lock.json index 2b8f521f3..532493602 100644 --- a/build/sprites/package-lock.json +++ b/build/sprites/package-lock.json @@ -425,9 +425,9 @@ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" }, "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==" + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" }, "node_modules/jsbn": { "version": "0.1.1", @@ -1377,9 +1377,9 @@ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" }, "jpeg-js": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.3.tgz", - "integrity": "sha512-ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q==" + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" }, "jsbn": { "version": "0.1.1", diff --git a/test/documenteditor/main/index.html b/test/documenteditor/main/index.html index b1ef1a729..e31e3fcf6 100644 --- a/test/documenteditor/main/index.html +++ b/test/documenteditor/main/index.html @@ -77,7 +77,7 @@ - + diff --git a/test/presentationeditor/main/index.html b/test/presentationeditor/main/index.html index 4ee99595f..39f61c785 100644 --- a/test/presentationeditor/main/index.html +++ b/test/presentationeditor/main/index.html @@ -147,7 +147,7 @@ - + diff --git a/test/spreadsheeteditor/main/index.html b/test/spreadsheeteditor/main/index.html index 9ee008707..f5da45b3b 100644 --- a/test/spreadsheeteditor/main/index.html +++ b/test/spreadsheeteditor/main/index.html @@ -113,7 +113,7 @@ - + diff --git a/vendor/framework7-react/babel.config.js b/vendor/framework7-react/babel.config.js index b6def8dbb..e1552254f 100644 --- a/vendor/framework7-react/babel.config.js +++ b/vendor/framework7-react/babel.config.js @@ -1,4 +1,4 @@ -module.exports = { +const config = { presets: [ '@babel/preset-react', ['@babel/preset-env', { @@ -12,3 +12,5 @@ module.exports = { ['@babel/plugin-proposal-class-properties',{'loose':false}], ], }; + +export default config; \ No newline at end of file diff --git a/vendor/framework7-react/build/build.js b/vendor/framework7-react/build/build.js index 5c0985858..50828275f 100644 --- a/vendor/framework7-react/build/build.js +++ b/vendor/framework7-react/build/build.js @@ -1,6 +1,6 @@ -const webpack = require('webpack'); -const rm = require('rimraf'); -const config = require('./webpack.config.js'); +import webpack from 'webpack'; +import rm from 'rimraf'; +import config from "./webpack.config.js"; const env = process.env.NODE_ENV || 'development'; const target = process.env.TARGET || 'web'; diff --git a/vendor/framework7-react/build/webpack.config.js b/vendor/framework7-react/build/webpack.config.js index ec3d574cb..83780098d 100644 --- a/vendor/framework7-react/build/webpack.config.js +++ b/vendor/framework7-react/build/webpack.config.js @@ -1,15 +1,14 @@ -const webpack = require('webpack'); -const CopyWebpackPlugin = require('copy-webpack-plugin'); -const HtmlWebpackPlugin = require('html-webpack-plugin'); -const { CleanWebpackPlugin } = require('clean-webpack-plugin'); +import webpack from 'webpack'; +import CopyWebpackPlugin from 'copy-webpack-plugin'; +import HtmlWebpackPlugin from 'html-webpack-plugin'; +import MiniCssExtractPlugin from "mini-css-extract-plugin"; +import CssMinimizerPlugin from "css-minimizer-webpack-plugin"; +import TerserPlugin from "terser-webpack-plugin"; +import fs from 'fs'; +import path from 'path'; +import { fileURLToPath } from "url"; -const MiniCssExtractPlugin = require('mini-css-extract-plugin'); -const CssMinimizerPlugin = require('css-minimizer-webpack-plugin'); -const TerserPlugin = require('terser-webpack-plugin'); -const WorkboxPlugin = require('workbox-webpack-plugin'); -const fs = require('fs') - -const path = require('path'); +const __dirname = path.dirname(fileURLToPath(import.meta.url)); function resolvePath(dir) { return path.join(__dirname, '..', dir); @@ -22,7 +21,7 @@ const editor = process.env.TARGET_EDITOR == 'cell' ? 'spreadsheeteditor' : const targetPatch = process.env.TARGET_EDITOR || 'word'; const addonPath = process.env.ADDON_ENV || 'path'; -module.exports = { +const config = { mode: env, entry: { app: `../../apps/${editor}/mobile/src/app.js`, @@ -260,4 +259,6 @@ module.exports = { //resource.request = `../../../${addonPath}/patch.jsx` : resource ), ], -}; \ No newline at end of file +}; + +export default config; \ No newline at end of file diff --git a/vendor/framework7-react/package.json b/vendor/framework7-react/package.json index f7ad68807..0d0d39ab3 100644 --- a/vendor/framework7-react/package.json +++ b/vendor/framework7-react/package.json @@ -18,6 +18,7 @@ "build-slide": "cross-env NODE_ENV=development TARGET_EDITOR=slide node ./build/build.js", "build-cell": "cross-env NODE_ENV=development TARGET_EDITOR=cell node ./build/build.js" }, + "type": "module", "browserslist": [ "Android >= 7", "IOS >= 11", @@ -28,9 +29,9 @@ ], "dependencies": { "dom7": "^3.0.0", - "framework7": "^6.0.4", + "framework7": "^7.0.8", "framework7-icons": "^3.0.1", - "framework7-react": "^6.0.4", + "framework7-react": "^7.0.8", "i18next": "^21.8.9", "i18next-fetch-backend": "^5.0.0", "postcss": "^8.4.12", @@ -40,7 +41,8 @@ "react-i18next": "^11.8.5", "react-transition-group": "^4.4.5", "swiper": "^8.2.4", - "template7": "^1.4.2" + "template7": "^1.4.2", + "url": "^0.11.0" }, "devDependencies": { "@babel/core": "^7.12.10", diff --git a/vendor/socketio/socket.io.esm.min.js b/vendor/socketio/socket.io.esm.min.js new file mode 100644 index 000000000..013ada2b4 --- /dev/null +++ b/vendor/socketio/socket.io.esm.min.js @@ -0,0 +1,7 @@ +/*! + * Socket.IO v4.5.3 + * (c) 2014-2022 Guillermo Rauch + * Released under the MIT License. + */ +const t=Object.create(null);t.open="0",t.close="1",t.ping="2",t.pong="3",t.message="4",t.upgrade="5",t.noop="6";const e=Object.create(null);Object.keys(t).forEach((s=>{e[t[s]]=s}));const s={type:"error",data:"parser error"},n="function"==typeof Blob||"undefined"!=typeof Blob&&"[object BlobConstructor]"===Object.prototype.toString.call(Blob),i="function"==typeof ArrayBuffer,r=({type:e,data:s},r,h)=>{return n&&s instanceof Blob?r?h(s):o(s,h):i&&(s instanceof ArrayBuffer||(a=s,"function"==typeof ArrayBuffer.isView?ArrayBuffer.isView(a):a&&a.buffer instanceof ArrayBuffer))?r?h(s):o(new Blob([s]),h):h(t[e]+(s||""));var a},o=(t,e)=>{const s=new FileReader;return s.onload=function(){const t=s.result.split(",")[1];e("b"+t)},s.readAsDataURL(t)},h="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",a="undefined"==typeof Uint8Array?[]:new Uint8Array(256);for(let t=0;t{if("string"!=typeof t)return{type:"message",data:l(t,n)};const i=t.charAt(0);if("b"===i)return{type:"message",data:u(t.substring(1),n)};return e[i]?t.length>1?{type:e[i],data:t.substring(1)}:{type:e[i]}:s},u=(t,e)=>{if(c){const s=(t=>{let e,s,n,i,r,o=.75*t.length,h=t.length,c=0;"="===t[t.length-1]&&(o--,"="===t[t.length-2]&&o--);const p=new ArrayBuffer(o),u=new Uint8Array(p);for(e=0;e>4,u[c++]=(15&n)<<4|i>>2,u[c++]=(3&i)<<6|63&r;return p})(t);return l(s,e)}return{base64:!0,data:t}},l=(t,e)=>"blob"===e&&t instanceof ArrayBuffer?new Blob([t]):t,d=String.fromCharCode(30);function f(t){if(t)return function(t){for(var e in f.prototype)t[e]=f.prototype[e];return t}(t)}f.prototype.on=f.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},f.prototype.once=function(t,e){function s(){this.off(t,s),e.apply(this,arguments)}return s.fn=e,this.on(t,s),this},f.prototype.off=f.prototype.removeListener=f.prototype.removeAllListeners=f.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var s,n=this._callbacks["$"+t];if(!n)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var i=0;i(t.hasOwnProperty(s)&&(e[s]=t[s]),e)),{})}const m=setTimeout,b=clearTimeout;function v(t,e){e.useNativeTimers?(t.setTimeoutFn=m.bind(y),t.clearTimeoutFn=b.bind(y)):(t.setTimeoutFn=setTimeout.bind(y),t.clearTimeoutFn=clearTimeout.bind(y))}class k extends Error{constructor(t,e,s){super(t),this.description=e,this.context=s,this.type="TransportError"}}class w extends f{constructor(t){super(),this.writable=!1,v(this,t),this.opts=t,this.query=t.query,this.readyState="",this.socket=t.socket}onError(t,e,s){return super.emitReserved("error",new k(t,e,s)),this}open(){return"closed"!==this.readyState&&""!==this.readyState||(this.readyState="opening",this.doOpen()),this}close(){return"opening"!==this.readyState&&"open"!==this.readyState||(this.doClose(),this.onClose()),this}send(t){"open"===this.readyState&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const e=p(t,this.socket.binaryType);this.onPacket(e)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}}const _="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""),E={};let A,R=0,O=0;function C(t){let e="";do{e=_[t%64]+e,t=Math.floor(t/64)}while(t>0);return e}function T(){const t=C(+new Date);return t!==A?(R=0,A=t):t+"."+C(R++)}for(;O<64;O++)E[_[O]]=O;function B(t){let e="";for(let s in t)t.hasOwnProperty(s)&&(e.length&&(e+="&"),e+=encodeURIComponent(s)+"="+encodeURIComponent(t[s]));return e}let N=!1;try{N="undefined"!=typeof XMLHttpRequest&&"withCredentials"in new XMLHttpRequest}catch(t){}const x=N;function L(t){const e=t.xdomain;try{if("undefined"!=typeof XMLHttpRequest&&(!e||x))return new XMLHttpRequest}catch(t){}if(!e)try{return new(y[["Active"].concat("Object").join("X")])("Microsoft.XMLHTTP")}catch(t){}}function S(){}const P=null!=new L({xdomain:!1}).responseType;class j extends f{constructor(t,e){super(),v(this,e),this.opts=e,this.method=e.method||"GET",this.uri=t,this.async=!1!==e.async,this.data=void 0!==e.data?e.data:null,this.create()}create(){const t=g(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");t.xdomain=!!this.opts.xd,t.xscheme=!!this.opts.xs;const e=this.xhr=new L(t);try{e.open(this.method,this.uri,this.async);try{if(this.opts.extraHeaders){e.setDisableHeaderCheck&&e.setDisableHeaderCheck(!0);for(let t in this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(t)&&e.setRequestHeader(t,this.opts.extraHeaders[t])}}catch(t){}if("POST"===this.method)try{e.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch(t){}try{e.setRequestHeader("Accept","*/*")}catch(t){}"withCredentials"in e&&(e.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(e.timeout=this.opts.requestTimeout),e.onreadystatechange=()=>{4===e.readyState&&(200===e.status||1223===e.status?this.onLoad():this.setTimeoutFn((()=>{this.onError("number"==typeof e.status?e.status:0)}),0))},e.send(this.data)}catch(t){return void this.setTimeoutFn((()=>{this.onError(t)}),0)}"undefined"!=typeof document&&(this.index=j.requestsCount++,j.requests[this.index]=this)}onError(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}cleanup(t){if(void 0!==this.xhr&&null!==this.xhr){if(this.xhr.onreadystatechange=S,t)try{this.xhr.abort()}catch(t){}"undefined"!=typeof document&&delete j.requests[this.index],this.xhr=null}}onLoad(){const t=this.xhr.responseText;null!==t&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}abort(){this.cleanup()}}if(j.requestsCount=0,j.requests={},"undefined"!=typeof document)if("function"==typeof attachEvent)attachEvent("onunload",q);else if("function"==typeof addEventListener){addEventListener("onpagehide"in y?"pagehide":"unload",q,!1)}function q(){for(let t in j.requests)j.requests.hasOwnProperty(t)&&j.requests[t].abort()}const I="function"==typeof Promise&&"function"==typeof Promise.resolve?t=>Promise.resolve().then(t):(t,e)=>e(t,0),D=y.WebSocket||y.MozWebSocket,F="undefined"!=typeof navigator&&"string"==typeof navigator.product&&"reactnative"===navigator.product.toLowerCase();const M={websocket:class extends w{constructor(t){super(t),this.supportsBinary=!t.forceBase64}get name(){return"websocket"}doOpen(){if(!this.check())return;const t=this.uri(),e=this.opts.protocols,s=F?{}:g(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(s.headers=this.opts.extraHeaders);try{this.ws=F?new D(t,e,s):e?new D(t,e):new D(t)}catch(t){return this.emitReserved("error",t)}this.ws.binaryType=this.socket.binaryType||"arraybuffer",this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let e=0;e{try{this.ws.send(t)}catch(t){}n&&I((()=>{this.writable=!0,this.emitReserved("drain")}),this.setTimeoutFn)}))}}doClose(){void 0!==this.ws&&(this.ws.close(),this.ws=null)}uri(){let t=this.query||{};const e=this.opts.secure?"wss":"ws";let s="";this.opts.port&&("wss"===e&&443!==Number(this.opts.port)||"ws"===e&&80!==Number(this.opts.port))&&(s=":"+this.opts.port),this.opts.timestampRequests&&(t[this.opts.timestampParam]=T()),this.supportsBinary||(t.b64=1);const n=B(t);return e+"://"+(-1!==this.opts.hostname.indexOf(":")?"["+this.opts.hostname+"]":this.opts.hostname)+s+this.opts.path+(n.length?"?"+n:"")}check(){return!!D}},polling:class extends w{constructor(t){if(super(t),this.polling=!1,"undefined"!=typeof location){const e="https:"===location.protocol;let s=location.port;s||(s=e?"443":"80"),this.xd="undefined"!=typeof location&&t.hostname!==location.hostname||s!==t.port,this.xs=t.secure!==e}const e=t&&t.forceBase64;this.supportsBinary=P&&!e}get name(){return"polling"}doOpen(){this.poll()}pause(t){this.readyState="pausing";const e=()=>{this.readyState="paused",t()};if(this.polling||!this.writable){let t=0;this.polling&&(t++,this.once("pollComplete",(function(){--t||e()}))),this.writable||(t++,this.once("drain",(function(){--t||e()})))}else e()}poll(){this.polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){((t,e)=>{const s=t.split(d),n=[];for(let t=0;t{if("opening"===this.readyState&&"open"===t.type&&this.onOpen(),"close"===t.type)return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(t)})),"closed"!==this.readyState&&(this.polling=!1,this.emitReserved("pollComplete"),"open"===this.readyState&&this.poll())}doClose(){const t=()=>{this.write([{type:"close"}])};"open"===this.readyState?t():this.once("open",t)}write(t){this.writable=!1,((t,e)=>{const s=t.length,n=new Array(s);let i=0;t.forEach(((t,o)=>{r(t,!1,(t=>{n[o]=t,++i===s&&e(n.join(d))}))}))})(t,(t=>{this.doWrite(t,(()=>{this.writable=!0,this.emitReserved("drain")}))}))}uri(){let t=this.query||{};const e=this.opts.secure?"https":"http";let s="";!1!==this.opts.timestampRequests&&(t[this.opts.timestampParam]=T()),this.supportsBinary||t.sid||(t.b64=1),this.opts.port&&("https"===e&&443!==Number(this.opts.port)||"http"===e&&80!==Number(this.opts.port))&&(s=":"+this.opts.port);const n=B(t);return e+"://"+(-1!==this.opts.hostname.indexOf(":")?"["+this.opts.hostname+"]":this.opts.hostname)+s+this.opts.path+(n.length?"?"+n:"")}request(t={}){return Object.assign(t,{xd:this.xd,xs:this.xs},this.opts),new j(this.uri(),t)}doWrite(t,e){const s=this.request({method:"POST",data:t});s.on("success",e),s.on("error",((t,e)=>{this.onError("xhr post error",t,e)}))}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",((t,e)=>{this.onError("xhr poll error",t,e)})),this.pollXhr=t}}},U=/^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,V=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function H(t){const e=t,s=t.indexOf("["),n=t.indexOf("]");-1!=s&&-1!=n&&(t=t.substring(0,s)+t.substring(s,n).replace(/:/g,";")+t.substring(n,t.length));let i=U.exec(t||""),r={},o=14;for(;o--;)r[V[o]]=i[o]||"";return-1!=s&&-1!=n&&(r.source=e,r.host=r.host.substring(1,r.host.length-1).replace(/;/g,":"),r.authority=r.authority.replace("[","").replace("]","").replace(/;/g,":"),r.ipv6uri=!0),r.pathNames=function(t,e){const s=/\/{2,9}/g,n=e.replace(s,"/").split("/");"/"!=e.slice(0,1)&&0!==e.length||n.splice(0,1);"/"==e.slice(-1)&&n.splice(n.length-1,1);return n}(0,r.path),r.queryKey=function(t,e){const s={};return e.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,(function(t,e,n){e&&(s[e]=n)})),s}(0,r.query),r}class K extends f{constructor(t,e={}){super(),t&&"object"==typeof t&&(e=t,t=null),t?(t=H(t),e.hostname=t.host,e.secure="https"===t.protocol||"wss"===t.protocol,e.port=t.port,t.query&&(e.query=t.query)):e.host&&(e.hostname=H(e.host).host),v(this,e),this.secure=null!=e.secure?e.secure:"undefined"!=typeof location&&"https:"===location.protocol,e.hostname&&!e.port&&(e.port=this.secure?"443":"80"),this.hostname=e.hostname||("undefined"!=typeof location?location.hostname:"localhost"),this.port=e.port||("undefined"!=typeof location&&location.port?location.port:this.secure?"443":"80"),this.transports=e.transports||["polling","websocket"],this.readyState="",this.writeBuffer=[],this.prevBufferLen=0,this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!0},e),this.opts.path=this.opts.path.replace(/\/$/,"")+"/","string"==typeof this.opts.query&&(this.opts.query=function(t){let e={},s=t.split("&");for(let t=0,n=s.length;t{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},addEventListener("beforeunload",this.beforeunloadEventListener,!1)),"localhost"!==this.hostname&&(this.offlineEventListener=()=>{this.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",this.offlineEventListener,!1))),this.open()}createTransport(t){const e=Object.assign({},this.opts.query);e.EIO=4,e.transport=t,this.id&&(e.sid=this.id);const s=Object.assign({},this.opts.transportOptions[t],this.opts,{query:e,socket:this,hostname:this.hostname,secure:this.secure,port:this.port});return new M[t](s)}open(){let t;if(this.opts.rememberUpgrade&&K.priorWebsocketSuccess&&-1!==this.transports.indexOf("websocket"))t="websocket";else{if(0===this.transports.length)return void this.setTimeoutFn((()=>{this.emitReserved("error","No transports available")}),0);t=this.transports[0]}this.readyState="opening";try{t=this.createTransport(t)}catch(t){return this.transports.shift(),void this.open()}t.open(),this.setTransport(t)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",(t=>this.onClose("transport close",t)))}probe(t){let e=this.createTransport(t),s=!1;K.priorWebsocketSuccess=!1;const n=()=>{s||(e.send([{type:"ping",data:"probe"}]),e.once("packet",(t=>{if(!s)if("pong"===t.type&&"probe"===t.data){if(this.upgrading=!0,this.emitReserved("upgrading",e),!e)return;K.priorWebsocketSuccess="websocket"===e.name,this.transport.pause((()=>{s||"closed"!==this.readyState&&(c(),this.setTransport(e),e.send([{type:"upgrade"}]),this.emitReserved("upgrade",e),e=null,this.upgrading=!1,this.flush())}))}else{const t=new Error("probe error");t.transport=e.name,this.emitReserved("upgradeError",t)}})))};function i(){s||(s=!0,c(),e.close(),e=null)}const r=t=>{const s=new Error("probe error: "+t);s.transport=e.name,i(),this.emitReserved("upgradeError",s)};function o(){r("transport closed")}function h(){r("socket closed")}function a(t){e&&t.name!==e.name&&i()}const c=()=>{e.removeListener("open",n),e.removeListener("error",r),e.removeListener("close",o),this.off("close",h),this.off("upgrading",a)};e.once("open",n),e.once("error",r),e.once("close",o),this.once("close",h),this.once("upgrading",a),e.open()}onOpen(){if(this.readyState="open",K.priorWebsocketSuccess="websocket"===this.transport.name,this.emitReserved("open"),this.flush(),"open"===this.readyState&&this.opts.upgrade&&this.transport.pause){let t=0;const e=this.upgrades.length;for(;t{this.onClose("ping timeout")}),this.pingInterval+this.pingTimeout),this.opts.autoUnref&&this.pingTimeoutTimer.unref()}onDrain(){this.writeBuffer.splice(0,this.prevBufferLen),this.prevBufferLen=0,0===this.writeBuffer.length?this.emitReserved("drain"):this.flush()}flush(){if("closed"!==this.readyState&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this.getWritablePackets();this.transport.send(t),this.prevBufferLen=t.length,this.emitReserved("flush")}}getWritablePackets(){if(!(this.maxPayload&&"polling"===this.transport.name&&this.writeBuffer.length>1))return this.writeBuffer;let t=1;for(let s=0;s=57344?s+=3:(n++,s+=4);return s}(e):Math.ceil(1.33*(e.byteLength||e.size))),s>0&&t>this.maxPayload)return this.writeBuffer.slice(0,s);t+=2}var e;return this.writeBuffer}write(t,e,s){return this.sendPacket("message",t,e,s),this}send(t,e,s){return this.sendPacket("message",t,e,s),this}sendPacket(t,e,s,n){if("function"==typeof e&&(n=e,e=void 0),"function"==typeof s&&(n=s,s=null),"closing"===this.readyState||"closed"===this.readyState)return;(s=s||{}).compress=!1!==s.compress;const i={type:t,data:e,options:s};this.emitReserved("packetCreate",i),this.writeBuffer.push(i),n&&this.once("flush",n),this.flush()}close(){const t=()=>{this.onClose("forced close"),this.transport.close()},e=()=>{this.off("upgrade",e),this.off("upgradeError",e),t()},s=()=>{this.once("upgrade",e),this.once("upgradeError",e)};return"opening"!==this.readyState&&"open"!==this.readyState||(this.readyState="closing",this.writeBuffer.length?this.once("drain",(()=>{this.upgrading?s():t()})):this.upgrading?s():t()),this}onError(t){K.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}onClose(t,e){"opening"!==this.readyState&&"open"!==this.readyState&&"closing"!==this.readyState||(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),"function"==typeof removeEventListener&&(removeEventListener("beforeunload",this.beforeunloadEventListener,!1),removeEventListener("offline",this.offlineEventListener,!1)),this.readyState="closed",this.id=null,this.emitReserved("close",t,e),this.writeBuffer=[],this.prevBufferLen=0)}filterUpgrades(t){const e=[];let s=0;const n=t.length;for(;s"function"==typeof ArrayBuffer.isView?ArrayBuffer.isView(t):t.buffer instanceof ArrayBuffer)(t))||W&&t instanceof Blob||$&&t instanceof File}function X(t,e){if(!t||"object"!=typeof t)return!1;if(Array.isArray(t)){for(let e=0,s=t.length;e0;case st.ACK:case st.BINARY_ACK:return Array.isArray(e)}}destroy(){this.reconstructor&&this.reconstructor.finishedReconstruction()}}class it{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const t=Z(this.reconPack,this.buffers);return this.finishedReconstruction(),t}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}var rt=Object.freeze({__proto__:null,protocol:5,get PacketType(){return st},Encoder:class{constructor(t){this.replacer=t}encode(t){return t.type!==st.EVENT&&t.type!==st.ACK||!X(t)?[this.encodeAsString(t)]:(t.type=t.type===st.EVENT?st.BINARY_EVENT:st.BINARY_ACK,this.encodeAsBinary(t))}encodeAsString(t){let e=""+t.type;return t.type!==st.BINARY_EVENT&&t.type!==st.BINARY_ACK||(e+=t.attachments+"-"),t.nsp&&"/"!==t.nsp&&(e+=t.nsp+","),null!=t.id&&(e+=t.id),null!=t.data&&(e+=JSON.stringify(t.data,this.replacer)),e}encodeAsBinary(t){const e=G(t),s=this.encodeAsString(e.packet),n=e.buffers;return n.unshift(s),n}},Decoder:nt});function ot(t,e,s){return t.on(e,s),function(){t.off(e,s)}}const ht=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class at extends f{constructor(t,e,s){super(),this.connected=!1,this.receiveBuffer=[],this.sendBuffer=[],this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=e,s&&s.auth&&(this.auth=s.auth),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[ot(t,"open",this.onopen.bind(this)),ot(t,"packet",this.onpacket.bind(this)),ot(t,"error",this.onerror.bind(this)),ot(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected||(this.subEvents(),this.io._reconnecting||this.io.open(),"open"===this.io._readyState&&this.onopen()),this}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...e){if(ht.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');e.unshift(t);const s={type:st.EVENT,data:e,options:{}};if(s.options.compress=!1!==this.flags.compress,"function"==typeof e[e.length-1]){const t=this.ids++,n=e.pop();this._registerAckCallback(t,n),s.id=t}const n=this.io.engine&&this.io.engine.transport&&this.io.engine.transport.writable;return this.flags.volatile&&(!n||!this.connected)||(this.connected?(this.notifyOutgoingListeners(s),this.packet(s)):this.sendBuffer.push(s)),this.flags={},this}_registerAckCallback(t,e){const s=this.flags.timeout;if(void 0===s)return void(this.acks[t]=e);const n=this.io.setTimeoutFn((()=>{delete this.acks[t];for(let e=0;e{this.io.clearTimeoutFn(n),e.apply(this,[null,...t])}}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){"function"==typeof this.auth?this.auth((t=>{this.packet({type:st.CONNECT,data:t})})):this.packet({type:st.CONNECT,data:this.auth})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,e){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,e)}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case st.CONNECT:if(t.data&&t.data.sid){const e=t.data.sid;this.onconnect(e)}else this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case st.EVENT:case st.BINARY_EVENT:this.onevent(t);break;case st.ACK:case st.BINARY_ACK:this.onack(t);break;case st.DISCONNECT:this.ondisconnect();break;case st.CONNECT_ERROR:this.destroy();const e=new Error(t.data.message);e.data=t.data.data,this.emitReserved("connect_error",e)}}onevent(t){const e=t.data||[];null!=t.id&&e.push(this.ack(t.id)),this.connected?this.emitEvent(e):this.receiveBuffer.push(Object.freeze(e))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const e=this._anyListeners.slice();for(const s of e)s.apply(this,t)}super.emit.apply(this,t)}ack(t){const e=this;let s=!1;return function(...n){s||(s=!0,e.packet({type:st.ACK,id:t,data:n}))}}onack(t){const e=this.acks[t.id];"function"==typeof e&&(e.apply(this,t.data),delete this.acks[t.id])}onconnect(t){this.id=t,this.connected=!0,this.emitBuffered(),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach((t=>this.emitEvent(t))),this.receiveBuffer=[],this.sendBuffer.forEach((t=>{this.notifyOutgoingListeners(t),this.packet(t)})),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach((t=>t())),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:st.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const e=this._anyListeners;for(let s=0;s0&&t.jitter<=1?t.jitter:0,this.attempts=0}ct.prototype.duration=function(){var t=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var e=Math.random(),s=Math.floor(e*this.jitter*t);t=0==(1&Math.floor(10*e))?t-s:t+s}return 0|Math.min(t,this.max)},ct.prototype.reset=function(){this.attempts=0},ct.prototype.setMin=function(t){this.ms=t},ct.prototype.setMax=function(t){this.max=t},ct.prototype.setJitter=function(t){this.jitter=t};class pt extends f{constructor(t,e){var s;super(),this.nsps={},this.subs=[],t&&"object"==typeof t&&(e=t,t=void 0),(e=e||{}).path=e.path||"/socket.io",this.opts=e,v(this,e),this.reconnection(!1!==e.reconnection),this.reconnectionAttempts(e.reconnectionAttempts||1/0),this.reconnectionDelay(e.reconnectionDelay||1e3),this.reconnectionDelayMax(e.reconnectionDelayMax||5e3),this.randomizationFactor(null!==(s=e.randomizationFactor)&&void 0!==s?s:.5),this.backoff=new ct({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(null==e.timeout?2e4:e.timeout),this._readyState="closed",this.uri=t;const n=e.parser||rt;this.encoder=new n.Encoder,this.decoder=new n.Decoder,this._autoConnect=!1!==e.autoConnect,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}reconnectionAttempts(t){return void 0===t?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var e;return void 0===t?this._reconnectionDelay:(this._reconnectionDelay=t,null===(e=this.backoff)||void 0===e||e.setMin(t),this)}randomizationFactor(t){var e;return void 0===t?this._randomizationFactor:(this._randomizationFactor=t,null===(e=this.backoff)||void 0===e||e.setJitter(t),this)}reconnectionDelayMax(t){var e;return void 0===t?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,null===(e=this.backoff)||void 0===e||e.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&0===this.backoff.attempts&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new K(this.uri,this.opts);const e=this.engine,s=this;this._readyState="opening",this.skipReconnect=!1;const n=ot(e,"open",(function(){s.onopen(),t&&t()})),i=ot(e,"error",(e=>{s.cleanup(),s._readyState="closed",this.emitReserved("error",e),t?t(e):s.maybeReconnectOnOpen()}));if(!1!==this._timeout){const t=this._timeout;0===t&&n();const s=this.setTimeoutFn((()=>{n(),e.close(),e.emit("error",new Error("timeout"))}),t);this.opts.autoUnref&&s.unref(),this.subs.push((function(){clearTimeout(s)}))}return this.subs.push(n),this.subs.push(i),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(ot(t,"ping",this.onping.bind(this)),ot(t,"data",this.ondata.bind(this)),ot(t,"error",this.onerror.bind(this)),ot(t,"close",this.onclose.bind(this)),ot(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch(t){this.onclose("parse error",t)}}ondecoded(t){I((()=>{this.emitReserved("packet",t)}),this.setTimeoutFn)}onerror(t){this.emitReserved("error",t)}socket(t,e){let s=this.nsps[t];return s||(s=new at(this,t,e),this.nsps[t]=s),s}_destroy(t){const e=Object.keys(this.nsps);for(const t of e){if(this.nsps[t].active)return}this._close()}_packet(t){const e=this.encoder.encode(t);for(let s=0;st())),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close"),this.engine&&this.engine.close()}disconnect(){return this._close()}onclose(t,e){this.cleanup(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,e),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const e=this.backoff.duration();this._reconnecting=!0;const s=this.setTimeoutFn((()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),t.skipReconnect||t.open((e=>{e?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",e)):t.onreconnect()})))}),e);this.opts.autoUnref&&s.unref(),this.subs.push((function(){clearTimeout(s)}))}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const ut={};function lt(t,e){"object"==typeof t&&(e=t,t=void 0);const s=function(t,e="",s){let n=t;s=s||"undefined"!=typeof location&&location,null==t&&(t=s.protocol+"//"+s.host),"string"==typeof t&&("/"===t.charAt(0)&&(t="/"===t.charAt(1)?s.protocol+t:s.host+t),/^(https?|wss?):\/\//.test(t)||(t=void 0!==s?s.protocol+"//"+t:"https://"+t),n=H(t)),n.port||(/^(http|ws)$/.test(n.protocol)?n.port="80":/^(http|ws)s$/.test(n.protocol)&&(n.port="443")),n.path=n.path||"/";const i=-1!==n.host.indexOf(":")?"["+n.host+"]":n.host;return n.id=n.protocol+"://"+i+":"+n.port+e,n.href=n.protocol+"://"+i+(s&&s.port===n.port?"":":"+n.port),n}(t,(e=e||{}).path||"/socket.io"),n=s.source,i=s.id,r=s.path,o=ut[i]&&r in ut[i].nsps;let h;return e.forceNew||e["force new connection"]||!1===e.multiplex||o?h=new pt(n,e):(ut[i]||(ut[i]=new pt(n,e)),h=ut[i]),s.query&&!e.query&&(e.query=s.queryKey),h.socket(s.path,e)}Object.assign(lt,{Manager:pt,Socket:at,io:lt,connect:lt});export{pt as Manager,at as Socket,lt as connect,lt as default,lt as io,et as protocol}; +//# sourceMappingURL=socket.io.esm.min.js.map diff --git a/vendor/socketio/socket.io.esm.min.js.map b/vendor/socketio/socket.io.esm.min.js.map new file mode 100644 index 000000000..db18891d9 --- /dev/null +++ b/vendor/socketio/socket.io.esm.min.js.map @@ -0,0 +1 @@ +{"version":3,"file":"socket.io.esm.min.js","sources":["../node_modules/engine.io-parser/build/esm/commons.js","../node_modules/engine.io-parser/build/esm/encodePacket.browser.js","../node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js","../node_modules/engine.io-parser/build/esm/decodePacket.browser.js","../node_modules/engine.io-parser/build/esm/index.js","../node_modules/@socket.io/component-emitter/index.mjs","../node_modules/engine.io-client/build/esm/globalThis.browser.js","../node_modules/engine.io-client/build/esm/util.js","../node_modules/engine.io-client/build/esm/transport.js","../node_modules/engine.io-client/build/esm/contrib/yeast.js","../node_modules/engine.io-client/build/esm/contrib/parseqs.js","../node_modules/engine.io-client/build/esm/contrib/has-cors.js","../node_modules/engine.io-client/build/esm/transports/xmlhttprequest.browser.js","../node_modules/engine.io-client/build/esm/transports/polling.js","../node_modules/engine.io-client/build/esm/transports/websocket-constructor.browser.js","../node_modules/engine.io-client/build/esm/transports/websocket.js","../node_modules/engine.io-client/build/esm/transports/index.js","../node_modules/engine.io-client/build/esm/contrib/parseuri.js","../node_modules/engine.io-client/build/esm/socket.js","../node_modules/socket.io-parser/build/esm/is-binary.js","../node_modules/socket.io-parser/build/esm/binary.js","../node_modules/socket.io-parser/build/esm/index.js","../build/esm/on.js","../build/esm/socket.js","../build/esm/contrib/backo2.js","../build/esm/manager.js","../build/esm/index.js","../build/esm/url.js"],"sourcesContent":["const PACKET_TYPES = Object.create(null); // no Map = no polyfill\nPACKET_TYPES[\"open\"] = \"0\";\nPACKET_TYPES[\"close\"] = \"1\";\nPACKET_TYPES[\"ping\"] = \"2\";\nPACKET_TYPES[\"pong\"] = \"3\";\nPACKET_TYPES[\"message\"] = \"4\";\nPACKET_TYPES[\"upgrade\"] = \"5\";\nPACKET_TYPES[\"noop\"] = \"6\";\nconst PACKET_TYPES_REVERSE = Object.create(null);\nObject.keys(PACKET_TYPES).forEach(key => {\n PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key;\n});\nconst ERROR_PACKET = { type: \"error\", data: \"parser error\" };\nexport { PACKET_TYPES, PACKET_TYPES_REVERSE, ERROR_PACKET };\n","import { PACKET_TYPES } from \"./commons.js\";\nconst withNativeBlob = typeof Blob === \"function\" ||\n (typeof Blob !== \"undefined\" &&\n Object.prototype.toString.call(Blob) === \"[object BlobConstructor]\");\nconst withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\n// ArrayBuffer.isView method is not defined in IE10\nconst isView = obj => {\n return typeof ArrayBuffer.isView === \"function\"\n ? ArrayBuffer.isView(obj)\n : obj && obj.buffer instanceof ArrayBuffer;\n};\nconst encodePacket = ({ type, data }, supportsBinary, callback) => {\n if (withNativeBlob && data instanceof Blob) {\n if (supportsBinary) {\n return callback(data);\n }\n else {\n return encodeBlobAsBase64(data, callback);\n }\n }\n else if (withNativeArrayBuffer &&\n (data instanceof ArrayBuffer || isView(data))) {\n if (supportsBinary) {\n return callback(data);\n }\n else {\n return encodeBlobAsBase64(new Blob([data]), callback);\n }\n }\n // plain string\n return callback(PACKET_TYPES[type] + (data || \"\"));\n};\nconst encodeBlobAsBase64 = (data, callback) => {\n const fileReader = new FileReader();\n fileReader.onload = function () {\n const content = fileReader.result.split(\",\")[1];\n callback(\"b\" + content);\n };\n return fileReader.readAsDataURL(data);\n};\nexport default encodePacket;\n","const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n// Use a lookup table to find the index.\nconst lookup = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256);\nfor (let i = 0; i < chars.length; i++) {\n lookup[chars.charCodeAt(i)] = i;\n}\nexport const encode = (arraybuffer) => {\n let bytes = new Uint8Array(arraybuffer), i, len = bytes.length, base64 = '';\n for (i = 0; i < len; i += 3) {\n base64 += chars[bytes[i] >> 2];\n base64 += chars[((bytes[i] & 3) << 4) | (bytes[i + 1] >> 4)];\n base64 += chars[((bytes[i + 1] & 15) << 2) | (bytes[i + 2] >> 6)];\n base64 += chars[bytes[i + 2] & 63];\n }\n if (len % 3 === 2) {\n base64 = base64.substring(0, base64.length - 1) + '=';\n }\n else if (len % 3 === 1) {\n base64 = base64.substring(0, base64.length - 2) + '==';\n }\n return base64;\n};\nexport const decode = (base64) => {\n let bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4;\n if (base64[base64.length - 1] === '=') {\n bufferLength--;\n if (base64[base64.length - 2] === '=') {\n bufferLength--;\n }\n }\n const arraybuffer = new ArrayBuffer(bufferLength), bytes = new Uint8Array(arraybuffer);\n for (i = 0; i < len; i += 4) {\n encoded1 = lookup[base64.charCodeAt(i)];\n encoded2 = lookup[base64.charCodeAt(i + 1)];\n encoded3 = lookup[base64.charCodeAt(i + 2)];\n encoded4 = lookup[base64.charCodeAt(i + 3)];\n bytes[p++] = (encoded1 << 2) | (encoded2 >> 4);\n bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2);\n bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63);\n }\n return arraybuffer;\n};\n","import { ERROR_PACKET, PACKET_TYPES_REVERSE } from \"./commons.js\";\nimport { decode } from \"./contrib/base64-arraybuffer.js\";\nconst withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\nconst decodePacket = (encodedPacket, binaryType) => {\n if (typeof encodedPacket !== \"string\") {\n return {\n type: \"message\",\n data: mapBinary(encodedPacket, binaryType)\n };\n }\n const type = encodedPacket.charAt(0);\n if (type === \"b\") {\n return {\n type: \"message\",\n data: decodeBase64Packet(encodedPacket.substring(1), binaryType)\n };\n }\n const packetType = PACKET_TYPES_REVERSE[type];\n if (!packetType) {\n return ERROR_PACKET;\n }\n return encodedPacket.length > 1\n ? {\n type: PACKET_TYPES_REVERSE[type],\n data: encodedPacket.substring(1)\n }\n : {\n type: PACKET_TYPES_REVERSE[type]\n };\n};\nconst decodeBase64Packet = (data, binaryType) => {\n if (withNativeArrayBuffer) {\n const decoded = decode(data);\n return mapBinary(decoded, binaryType);\n }\n else {\n return { base64: true, data }; // fallback for old browsers\n }\n};\nconst mapBinary = (data, binaryType) => {\n switch (binaryType) {\n case \"blob\":\n return data instanceof ArrayBuffer ? new Blob([data]) : data;\n case \"arraybuffer\":\n default:\n return data; // assuming the data is already an ArrayBuffer\n }\n};\nexport default decodePacket;\n","import encodePacket from \"./encodePacket.js\";\nimport decodePacket from \"./decodePacket.js\";\nconst SEPARATOR = String.fromCharCode(30); // see https://en.wikipedia.org/wiki/Delimiter#ASCII_delimited_text\nconst encodePayload = (packets, callback) => {\n // some packets may be added to the array while encoding, so the initial length must be saved\n const length = packets.length;\n const encodedPackets = new Array(length);\n let count = 0;\n packets.forEach((packet, i) => {\n // force base64 encoding for binary packets\n encodePacket(packet, false, encodedPacket => {\n encodedPackets[i] = encodedPacket;\n if (++count === length) {\n callback(encodedPackets.join(SEPARATOR));\n }\n });\n });\n};\nconst decodePayload = (encodedPayload, binaryType) => {\n const encodedPackets = encodedPayload.split(SEPARATOR);\n const packets = [];\n for (let i = 0; i < encodedPackets.length; i++) {\n const decodedPacket = decodePacket(encodedPackets[i], binaryType);\n packets.push(decodedPacket);\n if (decodedPacket.type === \"error\") {\n break;\n }\n }\n return packets;\n};\nexport const protocol = 4;\nexport { encodePacket, encodePayload, decodePacket, decodePayload };\n","/**\n * Initialize a new `Emitter`.\n *\n * @api public\n */\n\nexport function Emitter(obj) {\n if (obj) return mixin(obj);\n}\n\n/**\n * Mixin the emitter properties.\n *\n * @param {Object} obj\n * @return {Object}\n * @api private\n */\n\nfunction mixin(obj) {\n for (var key in Emitter.prototype) {\n obj[key] = Emitter.prototype[key];\n }\n return obj;\n}\n\n/**\n * Listen on the given `event` with `fn`.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.on =\nEmitter.prototype.addEventListener = function(event, fn){\n this._callbacks = this._callbacks || {};\n (this._callbacks['$' + event] = this._callbacks['$' + event] || [])\n .push(fn);\n return this;\n};\n\n/**\n * Adds an `event` listener that will be invoked a single\n * time then automatically removed.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.once = function(event, fn){\n function on() {\n this.off(event, on);\n fn.apply(this, arguments);\n }\n\n on.fn = fn;\n this.on(event, on);\n return this;\n};\n\n/**\n * Remove the given callback for `event` or all\n * registered callbacks.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.off =\nEmitter.prototype.removeListener =\nEmitter.prototype.removeAllListeners =\nEmitter.prototype.removeEventListener = function(event, fn){\n this._callbacks = this._callbacks || {};\n\n // all\n if (0 == arguments.length) {\n this._callbacks = {};\n return this;\n }\n\n // specific event\n var callbacks = this._callbacks['$' + event];\n if (!callbacks) return this;\n\n // remove all handlers\n if (1 == arguments.length) {\n delete this._callbacks['$' + event];\n return this;\n }\n\n // remove specific handler\n var cb;\n for (var i = 0; i < callbacks.length; i++) {\n cb = callbacks[i];\n if (cb === fn || cb.fn === fn) {\n callbacks.splice(i, 1);\n break;\n }\n }\n\n // Remove event specific arrays for event types that no\n // one is subscribed for to avoid memory leak.\n if (callbacks.length === 0) {\n delete this._callbacks['$' + event];\n }\n\n return this;\n};\n\n/**\n * Emit `event` with the given args.\n *\n * @param {String} event\n * @param {Mixed} ...\n * @return {Emitter}\n */\n\nEmitter.prototype.emit = function(event){\n this._callbacks = this._callbacks || {};\n\n var args = new Array(arguments.length - 1)\n , callbacks = this._callbacks['$' + event];\n\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n\n if (callbacks) {\n callbacks = callbacks.slice(0);\n for (var i = 0, len = callbacks.length; i < len; ++i) {\n callbacks[i].apply(this, args);\n }\n }\n\n return this;\n};\n\n// alias used for reserved events (protected method)\nEmitter.prototype.emitReserved = Emitter.prototype.emit;\n\n/**\n * Return array of callbacks for `event`.\n *\n * @param {String} event\n * @return {Array}\n * @api public\n */\n\nEmitter.prototype.listeners = function(event){\n this._callbacks = this._callbacks || {};\n return this._callbacks['$' + event] || [];\n};\n\n/**\n * Check if this emitter has `event` handlers.\n *\n * @param {String} event\n * @return {Boolean}\n * @api public\n */\n\nEmitter.prototype.hasListeners = function(event){\n return !! this.listeners(event).length;\n};\n","export const globalThisShim = (() => {\n if (typeof self !== \"undefined\") {\n return self;\n }\n else if (typeof window !== \"undefined\") {\n return window;\n }\n else {\n return Function(\"return this\")();\n }\n})();\n","import { globalThisShim as globalThis } from \"./globalThis.js\";\nexport function pick(obj, ...attr) {\n return attr.reduce((acc, k) => {\n if (obj.hasOwnProperty(k)) {\n acc[k] = obj[k];\n }\n return acc;\n }, {});\n}\n// Keep a reference to the real timeout functions so they can be used when overridden\nconst NATIVE_SET_TIMEOUT = setTimeout;\nconst NATIVE_CLEAR_TIMEOUT = clearTimeout;\nexport function installTimerFunctions(obj, opts) {\n if (opts.useNativeTimers) {\n obj.setTimeoutFn = NATIVE_SET_TIMEOUT.bind(globalThis);\n obj.clearTimeoutFn = NATIVE_CLEAR_TIMEOUT.bind(globalThis);\n }\n else {\n obj.setTimeoutFn = setTimeout.bind(globalThis);\n obj.clearTimeoutFn = clearTimeout.bind(globalThis);\n }\n}\n// base64 encoded buffers are about 33% bigger (https://en.wikipedia.org/wiki/Base64)\nconst BASE64_OVERHEAD = 1.33;\n// we could also have used `new Blob([obj]).size`, but it isn't supported in IE9\nexport function byteLength(obj) {\n if (typeof obj === \"string\") {\n return utf8Length(obj);\n }\n // arraybuffer or blob\n return Math.ceil((obj.byteLength || obj.size) * BASE64_OVERHEAD);\n}\nfunction utf8Length(str) {\n let c = 0, length = 0;\n for (let i = 0, l = str.length; i < l; i++) {\n c = str.charCodeAt(i);\n if (c < 0x80) {\n length += 1;\n }\n else if (c < 0x800) {\n length += 2;\n }\n else if (c < 0xd800 || c >= 0xe000) {\n length += 3;\n }\n else {\n i++;\n length += 4;\n }\n }\n return length;\n}\n","import { decodePacket } from \"engine.io-parser\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { installTimerFunctions } from \"./util.js\";\nclass TransportError extends Error {\n constructor(reason, description, context) {\n super(reason);\n this.description = description;\n this.context = context;\n this.type = \"TransportError\";\n }\n}\nexport class Transport extends Emitter {\n /**\n * Transport abstract constructor.\n *\n * @param {Object} options.\n * @api private\n */\n constructor(opts) {\n super();\n this.writable = false;\n installTimerFunctions(this, opts);\n this.opts = opts;\n this.query = opts.query;\n this.readyState = \"\";\n this.socket = opts.socket;\n }\n /**\n * Emits an error.\n *\n * @param {String} reason\n * @param description\n * @param context - the error context\n * @return {Transport} for chaining\n * @api protected\n */\n onError(reason, description, context) {\n super.emitReserved(\"error\", new TransportError(reason, description, context));\n return this;\n }\n /**\n * Opens the transport.\n *\n * @api public\n */\n open() {\n if (\"closed\" === this.readyState || \"\" === this.readyState) {\n this.readyState = \"opening\";\n this.doOpen();\n }\n return this;\n }\n /**\n * Closes the transport.\n *\n * @api public\n */\n close() {\n if (\"opening\" === this.readyState || \"open\" === this.readyState) {\n this.doClose();\n this.onClose();\n }\n return this;\n }\n /**\n * Sends multiple packets.\n *\n * @param {Array} packets\n * @api public\n */\n send(packets) {\n if (\"open\" === this.readyState) {\n this.write(packets);\n }\n else {\n // this might happen if the transport was silently closed in the beforeunload event handler\n }\n }\n /**\n * Called upon open\n *\n * @api protected\n */\n onOpen() {\n this.readyState = \"open\";\n this.writable = true;\n super.emitReserved(\"open\");\n }\n /**\n * Called with data.\n *\n * @param {String} data\n * @api protected\n */\n onData(data) {\n const packet = decodePacket(data, this.socket.binaryType);\n this.onPacket(packet);\n }\n /**\n * Called with a decoded packet.\n *\n * @api protected\n */\n onPacket(packet) {\n super.emitReserved(\"packet\", packet);\n }\n /**\n * Called upon close.\n *\n * @api protected\n */\n onClose(details) {\n this.readyState = \"closed\";\n super.emitReserved(\"close\", details);\n }\n}\n","// imported from https://github.com/unshiftio/yeast\n'use strict';\nconst alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'.split(''), length = 64, map = {};\nlet seed = 0, i = 0, prev;\n/**\n * Return a string representing the specified number.\n *\n * @param {Number} num The number to convert.\n * @returns {String} The string representation of the number.\n * @api public\n */\nexport function encode(num) {\n let encoded = '';\n do {\n encoded = alphabet[num % length] + encoded;\n num = Math.floor(num / length);\n } while (num > 0);\n return encoded;\n}\n/**\n * Return the integer value specified by the given string.\n *\n * @param {String} str The string to convert.\n * @returns {Number} The integer value represented by the string.\n * @api public\n */\nexport function decode(str) {\n let decoded = 0;\n for (i = 0; i < str.length; i++) {\n decoded = decoded * length + map[str.charAt(i)];\n }\n return decoded;\n}\n/**\n * Yeast: A tiny growing id generator.\n *\n * @returns {String} A unique id.\n * @api public\n */\nexport function yeast() {\n const now = encode(+new Date());\n if (now !== prev)\n return seed = 0, prev = now;\n return now + '.' + encode(seed++);\n}\n//\n// Map each character to its index.\n//\nfor (; i < length; i++)\n map[alphabet[i]] = i;\n","// imported from https://github.com/galkn/querystring\n/**\n * Compiles a querystring\n * Returns string representation of the object\n *\n * @param {Object}\n * @api private\n */\nexport function encode(obj) {\n let str = '';\n for (let i in obj) {\n if (obj.hasOwnProperty(i)) {\n if (str.length)\n str += '&';\n str += encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]);\n }\n }\n return str;\n}\n/**\n * Parses a simple querystring into an object\n *\n * @param {String} qs\n * @api private\n */\nexport function decode(qs) {\n let qry = {};\n let pairs = qs.split('&');\n for (let i = 0, l = pairs.length; i < l; i++) {\n let pair = pairs[i].split('=');\n qry[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]);\n }\n return qry;\n}\n","// imported from https://github.com/component/has-cors\nlet value = false;\ntry {\n value = typeof XMLHttpRequest !== 'undefined' &&\n 'withCredentials' in new XMLHttpRequest();\n}\ncatch (err) {\n // if XMLHttp support is disabled in IE then it will throw\n // when trying to create\n}\nexport const hasCORS = value;\n","// browser shim for xmlhttprequest module\nimport { hasCORS } from \"../contrib/has-cors.js\";\nimport { globalThisShim as globalThis } from \"../globalThis.js\";\nexport function XHR(opts) {\n const xdomain = opts.xdomain;\n // XMLHttpRequest can be disabled on IE\n try {\n if (\"undefined\" !== typeof XMLHttpRequest && (!xdomain || hasCORS)) {\n return new XMLHttpRequest();\n }\n }\n catch (e) { }\n if (!xdomain) {\n try {\n return new globalThis[[\"Active\"].concat(\"Object\").join(\"X\")](\"Microsoft.XMLHTTP\");\n }\n catch (e) { }\n }\n}\n","import { Transport } from \"../transport.js\";\nimport { yeast } from \"../contrib/yeast.js\";\nimport { encode } from \"../contrib/parseqs.js\";\nimport { encodePayload, decodePayload } from \"engine.io-parser\";\nimport { XHR as XMLHttpRequest } from \"./xmlhttprequest.js\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { installTimerFunctions, pick } from \"../util.js\";\nimport { globalThisShim as globalThis } from \"../globalThis.js\";\nfunction empty() { }\nconst hasXHR2 = (function () {\n const xhr = new XMLHttpRequest({\n xdomain: false\n });\n return null != xhr.responseType;\n})();\nexport class Polling extends Transport {\n /**\n * XHR Polling constructor.\n *\n * @param {Object} opts\n * @api public\n */\n constructor(opts) {\n super(opts);\n this.polling = false;\n if (typeof location !== \"undefined\") {\n const isSSL = \"https:\" === location.protocol;\n let port = location.port;\n // some user agents have empty `location.port`\n if (!port) {\n port = isSSL ? \"443\" : \"80\";\n }\n this.xd =\n (typeof location !== \"undefined\" &&\n opts.hostname !== location.hostname) ||\n port !== opts.port;\n this.xs = opts.secure !== isSSL;\n }\n /**\n * XHR supports binary\n */\n const forceBase64 = opts && opts.forceBase64;\n this.supportsBinary = hasXHR2 && !forceBase64;\n }\n /**\n * Transport name.\n */\n get name() {\n return \"polling\";\n }\n /**\n * Opens the socket (triggers polling). We write a PING message to determine\n * when the transport is open.\n *\n * @api private\n */\n doOpen() {\n this.poll();\n }\n /**\n * Pauses polling.\n *\n * @param {Function} callback upon buffers are flushed and transport is paused\n * @api private\n */\n pause(onPause) {\n this.readyState = \"pausing\";\n const pause = () => {\n this.readyState = \"paused\";\n onPause();\n };\n if (this.polling || !this.writable) {\n let total = 0;\n if (this.polling) {\n total++;\n this.once(\"pollComplete\", function () {\n --total || pause();\n });\n }\n if (!this.writable) {\n total++;\n this.once(\"drain\", function () {\n --total || pause();\n });\n }\n }\n else {\n pause();\n }\n }\n /**\n * Starts polling cycle.\n *\n * @api public\n */\n poll() {\n this.polling = true;\n this.doPoll();\n this.emitReserved(\"poll\");\n }\n /**\n * Overloads onData to detect payloads.\n *\n * @api private\n */\n onData(data) {\n const callback = packet => {\n // if its the first message we consider the transport open\n if (\"opening\" === this.readyState && packet.type === \"open\") {\n this.onOpen();\n }\n // if its a close packet, we close the ongoing requests\n if (\"close\" === packet.type) {\n this.onClose({ description: \"transport closed by the server\" });\n return false;\n }\n // otherwise bypass onData and handle the message\n this.onPacket(packet);\n };\n // decode payload\n decodePayload(data, this.socket.binaryType).forEach(callback);\n // if an event did not trigger closing\n if (\"closed\" !== this.readyState) {\n // if we got data we're not polling\n this.polling = false;\n this.emitReserved(\"pollComplete\");\n if (\"open\" === this.readyState) {\n this.poll();\n }\n else {\n }\n }\n }\n /**\n * For polling, send a close packet.\n *\n * @api private\n */\n doClose() {\n const close = () => {\n this.write([{ type: \"close\" }]);\n };\n if (\"open\" === this.readyState) {\n close();\n }\n else {\n // in case we're trying to close while\n // handshaking is in progress (GH-164)\n this.once(\"open\", close);\n }\n }\n /**\n * Writes a packets payload.\n *\n * @param {Array} data packets\n * @param {Function} drain callback\n * @api private\n */\n write(packets) {\n this.writable = false;\n encodePayload(packets, data => {\n this.doWrite(data, () => {\n this.writable = true;\n this.emitReserved(\"drain\");\n });\n });\n }\n /**\n * Generates uri for connection.\n *\n * @api private\n */\n uri() {\n let query = this.query || {};\n const schema = this.opts.secure ? \"https\" : \"http\";\n let port = \"\";\n // cache busting is forced\n if (false !== this.opts.timestampRequests) {\n query[this.opts.timestampParam] = yeast();\n }\n if (!this.supportsBinary && !query.sid) {\n query.b64 = 1;\n }\n // avoid port if default for schema\n if (this.opts.port &&\n ((\"https\" === schema && Number(this.opts.port) !== 443) ||\n (\"http\" === schema && Number(this.opts.port) !== 80))) {\n port = \":\" + this.opts.port;\n }\n const encodedQuery = encode(query);\n const ipv6 = this.opts.hostname.indexOf(\":\") !== -1;\n return (schema +\n \"://\" +\n (ipv6 ? \"[\" + this.opts.hostname + \"]\" : this.opts.hostname) +\n port +\n this.opts.path +\n (encodedQuery.length ? \"?\" + encodedQuery : \"\"));\n }\n /**\n * Creates a request.\n *\n * @param {String} method\n * @api private\n */\n request(opts = {}) {\n Object.assign(opts, { xd: this.xd, xs: this.xs }, this.opts);\n return new Request(this.uri(), opts);\n }\n /**\n * Sends data.\n *\n * @param {String} data to send.\n * @param {Function} called upon flush.\n * @api private\n */\n doWrite(data, fn) {\n const req = this.request({\n method: \"POST\",\n data: data\n });\n req.on(\"success\", fn);\n req.on(\"error\", (xhrStatus, context) => {\n this.onError(\"xhr post error\", xhrStatus, context);\n });\n }\n /**\n * Starts a poll cycle.\n *\n * @api private\n */\n doPoll() {\n const req = this.request();\n req.on(\"data\", this.onData.bind(this));\n req.on(\"error\", (xhrStatus, context) => {\n this.onError(\"xhr poll error\", xhrStatus, context);\n });\n this.pollXhr = req;\n }\n}\nexport class Request extends Emitter {\n /**\n * Request constructor\n *\n * @param {Object} options\n * @api public\n */\n constructor(uri, opts) {\n super();\n installTimerFunctions(this, opts);\n this.opts = opts;\n this.method = opts.method || \"GET\";\n this.uri = uri;\n this.async = false !== opts.async;\n this.data = undefined !== opts.data ? opts.data : null;\n this.create();\n }\n /**\n * Creates the XHR object and sends the request.\n *\n * @api private\n */\n create() {\n const opts = pick(this.opts, \"agent\", \"pfx\", \"key\", \"passphrase\", \"cert\", \"ca\", \"ciphers\", \"rejectUnauthorized\", \"autoUnref\");\n opts.xdomain = !!this.opts.xd;\n opts.xscheme = !!this.opts.xs;\n const xhr = (this.xhr = new XMLHttpRequest(opts));\n try {\n xhr.open(this.method, this.uri, this.async);\n try {\n if (this.opts.extraHeaders) {\n xhr.setDisableHeaderCheck && xhr.setDisableHeaderCheck(true);\n for (let i in this.opts.extraHeaders) {\n if (this.opts.extraHeaders.hasOwnProperty(i)) {\n xhr.setRequestHeader(i, this.opts.extraHeaders[i]);\n }\n }\n }\n }\n catch (e) { }\n if (\"POST\" === this.method) {\n try {\n xhr.setRequestHeader(\"Content-type\", \"text/plain;charset=UTF-8\");\n }\n catch (e) { }\n }\n try {\n xhr.setRequestHeader(\"Accept\", \"*/*\");\n }\n catch (e) { }\n // ie6 check\n if (\"withCredentials\" in xhr) {\n xhr.withCredentials = this.opts.withCredentials;\n }\n if (this.opts.requestTimeout) {\n xhr.timeout = this.opts.requestTimeout;\n }\n xhr.onreadystatechange = () => {\n if (4 !== xhr.readyState)\n return;\n if (200 === xhr.status || 1223 === xhr.status) {\n this.onLoad();\n }\n else {\n // make sure the `error` event handler that's user-set\n // does not throw in the same tick and gets caught here\n this.setTimeoutFn(() => {\n this.onError(typeof xhr.status === \"number\" ? xhr.status : 0);\n }, 0);\n }\n };\n xhr.send(this.data);\n }\n catch (e) {\n // Need to defer since .create() is called directly from the constructor\n // and thus the 'error' event can only be only bound *after* this exception\n // occurs. Therefore, also, we cannot throw here at all.\n this.setTimeoutFn(() => {\n this.onError(e);\n }, 0);\n return;\n }\n if (typeof document !== \"undefined\") {\n this.index = Request.requestsCount++;\n Request.requests[this.index] = this;\n }\n }\n /**\n * Called upon error.\n *\n * @api private\n */\n onError(err) {\n this.emitReserved(\"error\", err, this.xhr);\n this.cleanup(true);\n }\n /**\n * Cleans up house.\n *\n * @api private\n */\n cleanup(fromError) {\n if (\"undefined\" === typeof this.xhr || null === this.xhr) {\n return;\n }\n this.xhr.onreadystatechange = empty;\n if (fromError) {\n try {\n this.xhr.abort();\n }\n catch (e) { }\n }\n if (typeof document !== \"undefined\") {\n delete Request.requests[this.index];\n }\n this.xhr = null;\n }\n /**\n * Called upon load.\n *\n * @api private\n */\n onLoad() {\n const data = this.xhr.responseText;\n if (data !== null) {\n this.emitReserved(\"data\", data);\n this.emitReserved(\"success\");\n this.cleanup();\n }\n }\n /**\n * Aborts the request.\n *\n * @api public\n */\n abort() {\n this.cleanup();\n }\n}\nRequest.requestsCount = 0;\nRequest.requests = {};\n/**\n * Aborts pending requests when unloading the window. This is needed to prevent\n * memory leaks (e.g. when using IE) and to ensure that no spurious error is\n * emitted.\n */\nif (typeof document !== \"undefined\") {\n // @ts-ignore\n if (typeof attachEvent === \"function\") {\n // @ts-ignore\n attachEvent(\"onunload\", unloadHandler);\n }\n else if (typeof addEventListener === \"function\") {\n const terminationEvent = \"onpagehide\" in globalThis ? \"pagehide\" : \"unload\";\n addEventListener(terminationEvent, unloadHandler, false);\n }\n}\nfunction unloadHandler() {\n for (let i in Request.requests) {\n if (Request.requests.hasOwnProperty(i)) {\n Request.requests[i].abort();\n }\n }\n}\n","import { globalThisShim as globalThis } from \"../globalThis.js\";\nexport const nextTick = (() => {\n const isPromiseAvailable = typeof Promise === \"function\" && typeof Promise.resolve === \"function\";\n if (isPromiseAvailable) {\n return cb => Promise.resolve().then(cb);\n }\n else {\n return (cb, setTimeoutFn) => setTimeoutFn(cb, 0);\n }\n})();\nexport const WebSocket = globalThis.WebSocket || globalThis.MozWebSocket;\nexport const usingBrowserWebSocket = true;\nexport const defaultBinaryType = \"arraybuffer\";\n","import { Transport } from \"../transport.js\";\nimport { encode } from \"../contrib/parseqs.js\";\nimport { yeast } from \"../contrib/yeast.js\";\nimport { pick } from \"../util.js\";\nimport { defaultBinaryType, nextTick, usingBrowserWebSocket, WebSocket } from \"./websocket-constructor.js\";\nimport { encodePacket } from \"engine.io-parser\";\n// detect ReactNative environment\nconst isReactNative = typeof navigator !== \"undefined\" &&\n typeof navigator.product === \"string\" &&\n navigator.product.toLowerCase() === \"reactnative\";\nexport class WS extends Transport {\n /**\n * WebSocket transport constructor.\n *\n * @api {Object} connection options\n * @api public\n */\n constructor(opts) {\n super(opts);\n this.supportsBinary = !opts.forceBase64;\n }\n /**\n * Transport name.\n *\n * @api public\n */\n get name() {\n return \"websocket\";\n }\n /**\n * Opens socket.\n *\n * @api private\n */\n doOpen() {\n if (!this.check()) {\n // let probe timeout\n return;\n }\n const uri = this.uri();\n const protocols = this.opts.protocols;\n // React Native only supports the 'headers' option, and will print a warning if anything else is passed\n const opts = isReactNative\n ? {}\n : pick(this.opts, \"agent\", \"perMessageDeflate\", \"pfx\", \"key\", \"passphrase\", \"cert\", \"ca\", \"ciphers\", \"rejectUnauthorized\", \"localAddress\", \"protocolVersion\", \"origin\", \"maxPayload\", \"family\", \"checkServerIdentity\");\n if (this.opts.extraHeaders) {\n opts.headers = this.opts.extraHeaders;\n }\n try {\n this.ws =\n usingBrowserWebSocket && !isReactNative\n ? protocols\n ? new WebSocket(uri, protocols)\n : new WebSocket(uri)\n : new WebSocket(uri, protocols, opts);\n }\n catch (err) {\n return this.emitReserved(\"error\", err);\n }\n this.ws.binaryType = this.socket.binaryType || defaultBinaryType;\n this.addEventListeners();\n }\n /**\n * Adds event listeners to the socket\n *\n * @api private\n */\n addEventListeners() {\n this.ws.onopen = () => {\n if (this.opts.autoUnref) {\n this.ws._socket.unref();\n }\n this.onOpen();\n };\n this.ws.onclose = closeEvent => this.onClose({\n description: \"websocket connection closed\",\n context: closeEvent\n });\n this.ws.onmessage = ev => this.onData(ev.data);\n this.ws.onerror = e => this.onError(\"websocket error\", e);\n }\n /**\n * Writes data to socket.\n *\n * @param {Array} array of packets.\n * @api private\n */\n write(packets) {\n this.writable = false;\n // encodePacket efficient as it uses WS framing\n // no need for encodePayload\n for (let i = 0; i < packets.length; i++) {\n const packet = packets[i];\n const lastPacket = i === packets.length - 1;\n encodePacket(packet, this.supportsBinary, data => {\n // always create a new object (GH-437)\n const opts = {};\n if (!usingBrowserWebSocket) {\n if (packet.options) {\n opts.compress = packet.options.compress;\n }\n if (this.opts.perMessageDeflate) {\n const len = \n // @ts-ignore\n \"string\" === typeof data ? Buffer.byteLength(data) : data.length;\n if (len < this.opts.perMessageDeflate.threshold) {\n opts.compress = false;\n }\n }\n }\n // Sometimes the websocket has already been closed but the browser didn't\n // have a chance of informing us about it yet, in that case send will\n // throw an error\n try {\n if (usingBrowserWebSocket) {\n // TypeError is thrown when passing the second argument on Safari\n this.ws.send(data);\n }\n else {\n this.ws.send(data, opts);\n }\n }\n catch (e) {\n }\n if (lastPacket) {\n // fake drain\n // defer to next tick to allow Socket to clear writeBuffer\n nextTick(() => {\n this.writable = true;\n this.emitReserved(\"drain\");\n }, this.setTimeoutFn);\n }\n });\n }\n }\n /**\n * Closes socket.\n *\n * @api private\n */\n doClose() {\n if (typeof this.ws !== \"undefined\") {\n this.ws.close();\n this.ws = null;\n }\n }\n /**\n * Generates uri for connection.\n *\n * @api private\n */\n uri() {\n let query = this.query || {};\n const schema = this.opts.secure ? \"wss\" : \"ws\";\n let port = \"\";\n // avoid port if default for schema\n if (this.opts.port &&\n ((\"wss\" === schema && Number(this.opts.port) !== 443) ||\n (\"ws\" === schema && Number(this.opts.port) !== 80))) {\n port = \":\" + this.opts.port;\n }\n // append timestamp to URI\n if (this.opts.timestampRequests) {\n query[this.opts.timestampParam] = yeast();\n }\n // communicate binary support capabilities\n if (!this.supportsBinary) {\n query.b64 = 1;\n }\n const encodedQuery = encode(query);\n const ipv6 = this.opts.hostname.indexOf(\":\") !== -1;\n return (schema +\n \"://\" +\n (ipv6 ? \"[\" + this.opts.hostname + \"]\" : this.opts.hostname) +\n port +\n this.opts.path +\n (encodedQuery.length ? \"?\" + encodedQuery : \"\"));\n }\n /**\n * Feature detection for WebSocket.\n *\n * @return {Boolean} whether this transport is available.\n * @api public\n */\n check() {\n return !!WebSocket;\n }\n}\n","import { Polling } from \"./polling.js\";\nimport { WS } from \"./websocket.js\";\nexport const transports = {\n websocket: WS,\n polling: Polling\n};\n","// imported from https://github.com/galkn/parseuri\n/**\n * Parses an URI\n *\n * @author Steven Levithan (MIT license)\n * @api private\n */\nconst re = /^(?:(?![^:@]+:[^:@\\/]*@)(http|https|ws|wss):\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/;\nconst parts = [\n 'source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'\n];\nexport function parse(str) {\n const src = str, b = str.indexOf('['), e = str.indexOf(']');\n if (b != -1 && e != -1) {\n str = str.substring(0, b) + str.substring(b, e).replace(/:/g, ';') + str.substring(e, str.length);\n }\n let m = re.exec(str || ''), uri = {}, i = 14;\n while (i--) {\n uri[parts[i]] = m[i] || '';\n }\n if (b != -1 && e != -1) {\n uri.source = src;\n uri.host = uri.host.substring(1, uri.host.length - 1).replace(/;/g, ':');\n uri.authority = uri.authority.replace('[', '').replace(']', '').replace(/;/g, ':');\n uri.ipv6uri = true;\n }\n uri.pathNames = pathNames(uri, uri['path']);\n uri.queryKey = queryKey(uri, uri['query']);\n return uri;\n}\nfunction pathNames(obj, path) {\n const regx = /\\/{2,9}/g, names = path.replace(regx, \"/\").split(\"/\");\n if (path.slice(0, 1) == '/' || path.length === 0) {\n names.splice(0, 1);\n }\n if (path.slice(-1) == '/') {\n names.splice(names.length - 1, 1);\n }\n return names;\n}\nfunction queryKey(uri, query) {\n const data = {};\n query.replace(/(?:^|&)([^&=]*)=?([^&]*)/g, function ($0, $1, $2) {\n if ($1) {\n data[$1] = $2;\n }\n });\n return data;\n}\n","import { transports } from \"./transports/index.js\";\nimport { installTimerFunctions, byteLength } from \"./util.js\";\nimport { decode } from \"./contrib/parseqs.js\";\nimport { parse } from \"./contrib/parseuri.js\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { protocol } from \"engine.io-parser\";\nexport class Socket extends Emitter {\n /**\n * Socket constructor.\n *\n * @param {String|Object} uri or options\n * @param {Object} opts - options\n * @api public\n */\n constructor(uri, opts = {}) {\n super();\n if (uri && \"object\" === typeof uri) {\n opts = uri;\n uri = null;\n }\n if (uri) {\n uri = parse(uri);\n opts.hostname = uri.host;\n opts.secure = uri.protocol === \"https\" || uri.protocol === \"wss\";\n opts.port = uri.port;\n if (uri.query)\n opts.query = uri.query;\n }\n else if (opts.host) {\n opts.hostname = parse(opts.host).host;\n }\n installTimerFunctions(this, opts);\n this.secure =\n null != opts.secure\n ? opts.secure\n : typeof location !== \"undefined\" && \"https:\" === location.protocol;\n if (opts.hostname && !opts.port) {\n // if no port is specified manually, use the protocol default\n opts.port = this.secure ? \"443\" : \"80\";\n }\n this.hostname =\n opts.hostname ||\n (typeof location !== \"undefined\" ? location.hostname : \"localhost\");\n this.port =\n opts.port ||\n (typeof location !== \"undefined\" && location.port\n ? location.port\n : this.secure\n ? \"443\"\n : \"80\");\n this.transports = opts.transports || [\"polling\", \"websocket\"];\n this.readyState = \"\";\n this.writeBuffer = [];\n this.prevBufferLen = 0;\n this.opts = Object.assign({\n path: \"/engine.io\",\n agent: false,\n withCredentials: false,\n upgrade: true,\n timestampParam: \"t\",\n rememberUpgrade: false,\n rejectUnauthorized: true,\n perMessageDeflate: {\n threshold: 1024\n },\n transportOptions: {},\n closeOnBeforeunload: true\n }, opts);\n this.opts.path = this.opts.path.replace(/\\/$/, \"\") + \"/\";\n if (typeof this.opts.query === \"string\") {\n this.opts.query = decode(this.opts.query);\n }\n // set on handshake\n this.id = null;\n this.upgrades = null;\n this.pingInterval = null;\n this.pingTimeout = null;\n // set on heartbeat\n this.pingTimeoutTimer = null;\n if (typeof addEventListener === \"function\") {\n if (this.opts.closeOnBeforeunload) {\n // Firefox closes the connection when the \"beforeunload\" event is emitted but not Chrome. This event listener\n // ensures every browser behaves the same (no \"disconnect\" event at the Socket.IO level when the page is\n // closed/reloaded)\n this.beforeunloadEventListener = () => {\n if (this.transport) {\n // silently close the transport\n this.transport.removeAllListeners();\n this.transport.close();\n }\n };\n addEventListener(\"beforeunload\", this.beforeunloadEventListener, false);\n }\n if (this.hostname !== \"localhost\") {\n this.offlineEventListener = () => {\n this.onClose(\"transport close\", {\n description: \"network connection lost\"\n });\n };\n addEventListener(\"offline\", this.offlineEventListener, false);\n }\n }\n this.open();\n }\n /**\n * Creates transport of the given type.\n *\n * @param {String} transport name\n * @return {Transport}\n * @api private\n */\n createTransport(name) {\n const query = Object.assign({}, this.opts.query);\n // append engine.io protocol identifier\n query.EIO = protocol;\n // transport name\n query.transport = name;\n // session id if we already have one\n if (this.id)\n query.sid = this.id;\n const opts = Object.assign({}, this.opts.transportOptions[name], this.opts, {\n query,\n socket: this,\n hostname: this.hostname,\n secure: this.secure,\n port: this.port\n });\n return new transports[name](opts);\n }\n /**\n * Initializes transport to use and starts probe.\n *\n * @api private\n */\n open() {\n let transport;\n if (this.opts.rememberUpgrade &&\n Socket.priorWebsocketSuccess &&\n this.transports.indexOf(\"websocket\") !== -1) {\n transport = \"websocket\";\n }\n else if (0 === this.transports.length) {\n // Emit error on next tick so it can be listened to\n this.setTimeoutFn(() => {\n this.emitReserved(\"error\", \"No transports available\");\n }, 0);\n return;\n }\n else {\n transport = this.transports[0];\n }\n this.readyState = \"opening\";\n // Retry with the next transport if the transport is disabled (jsonp: false)\n try {\n transport = this.createTransport(transport);\n }\n catch (e) {\n this.transports.shift();\n this.open();\n return;\n }\n transport.open();\n this.setTransport(transport);\n }\n /**\n * Sets the current transport. Disables the existing one (if any).\n *\n * @api private\n */\n setTransport(transport) {\n if (this.transport) {\n this.transport.removeAllListeners();\n }\n // set up transport\n this.transport = transport;\n // set up transport listeners\n transport\n .on(\"drain\", this.onDrain.bind(this))\n .on(\"packet\", this.onPacket.bind(this))\n .on(\"error\", this.onError.bind(this))\n .on(\"close\", reason => this.onClose(\"transport close\", reason));\n }\n /**\n * Probes a transport.\n *\n * @param {String} transport name\n * @api private\n */\n probe(name) {\n let transport = this.createTransport(name);\n let failed = false;\n Socket.priorWebsocketSuccess = false;\n const onTransportOpen = () => {\n if (failed)\n return;\n transport.send([{ type: \"ping\", data: \"probe\" }]);\n transport.once(\"packet\", msg => {\n if (failed)\n return;\n if (\"pong\" === msg.type && \"probe\" === msg.data) {\n this.upgrading = true;\n this.emitReserved(\"upgrading\", transport);\n if (!transport)\n return;\n Socket.priorWebsocketSuccess = \"websocket\" === transport.name;\n this.transport.pause(() => {\n if (failed)\n return;\n if (\"closed\" === this.readyState)\n return;\n cleanup();\n this.setTransport(transport);\n transport.send([{ type: \"upgrade\" }]);\n this.emitReserved(\"upgrade\", transport);\n transport = null;\n this.upgrading = false;\n this.flush();\n });\n }\n else {\n const err = new Error(\"probe error\");\n // @ts-ignore\n err.transport = transport.name;\n this.emitReserved(\"upgradeError\", err);\n }\n });\n };\n function freezeTransport() {\n if (failed)\n return;\n // Any callback called by transport should be ignored since now\n failed = true;\n cleanup();\n transport.close();\n transport = null;\n }\n // Handle any error that happens while probing\n const onerror = err => {\n const error = new Error(\"probe error: \" + err);\n // @ts-ignore\n error.transport = transport.name;\n freezeTransport();\n this.emitReserved(\"upgradeError\", error);\n };\n function onTransportClose() {\n onerror(\"transport closed\");\n }\n // When the socket is closed while we're probing\n function onclose() {\n onerror(\"socket closed\");\n }\n // When the socket is upgraded while we're probing\n function onupgrade(to) {\n if (transport && to.name !== transport.name) {\n freezeTransport();\n }\n }\n // Remove all listeners on the transport and on self\n const cleanup = () => {\n transport.removeListener(\"open\", onTransportOpen);\n transport.removeListener(\"error\", onerror);\n transport.removeListener(\"close\", onTransportClose);\n this.off(\"close\", onclose);\n this.off(\"upgrading\", onupgrade);\n };\n transport.once(\"open\", onTransportOpen);\n transport.once(\"error\", onerror);\n transport.once(\"close\", onTransportClose);\n this.once(\"close\", onclose);\n this.once(\"upgrading\", onupgrade);\n transport.open();\n }\n /**\n * Called when connection is deemed open.\n *\n * @api private\n */\n onOpen() {\n this.readyState = \"open\";\n Socket.priorWebsocketSuccess = \"websocket\" === this.transport.name;\n this.emitReserved(\"open\");\n this.flush();\n // we check for `readyState` in case an `open`\n // listener already closed the socket\n if (\"open\" === this.readyState &&\n this.opts.upgrade &&\n this.transport.pause) {\n let i = 0;\n const l = this.upgrades.length;\n for (; i < l; i++) {\n this.probe(this.upgrades[i]);\n }\n }\n }\n /**\n * Handles a packet.\n *\n * @api private\n */\n onPacket(packet) {\n if (\"opening\" === this.readyState ||\n \"open\" === this.readyState ||\n \"closing\" === this.readyState) {\n this.emitReserved(\"packet\", packet);\n // Socket is live - any packet counts\n this.emitReserved(\"heartbeat\");\n switch (packet.type) {\n case \"open\":\n this.onHandshake(JSON.parse(packet.data));\n break;\n case \"ping\":\n this.resetPingTimeout();\n this.sendPacket(\"pong\");\n this.emitReserved(\"ping\");\n this.emitReserved(\"pong\");\n break;\n case \"error\":\n const err = new Error(\"server error\");\n // @ts-ignore\n err.code = packet.data;\n this.onError(err);\n break;\n case \"message\":\n this.emitReserved(\"data\", packet.data);\n this.emitReserved(\"message\", packet.data);\n break;\n }\n }\n else {\n }\n }\n /**\n * Called upon handshake completion.\n *\n * @param {Object} data - handshake obj\n * @api private\n */\n onHandshake(data) {\n this.emitReserved(\"handshake\", data);\n this.id = data.sid;\n this.transport.query.sid = data.sid;\n this.upgrades = this.filterUpgrades(data.upgrades);\n this.pingInterval = data.pingInterval;\n this.pingTimeout = data.pingTimeout;\n this.maxPayload = data.maxPayload;\n this.onOpen();\n // In case open handler closes socket\n if (\"closed\" === this.readyState)\n return;\n this.resetPingTimeout();\n }\n /**\n * Sets and resets ping timeout timer based on server pings.\n *\n * @api private\n */\n resetPingTimeout() {\n this.clearTimeoutFn(this.pingTimeoutTimer);\n this.pingTimeoutTimer = this.setTimeoutFn(() => {\n this.onClose(\"ping timeout\");\n }, this.pingInterval + this.pingTimeout);\n if (this.opts.autoUnref) {\n this.pingTimeoutTimer.unref();\n }\n }\n /**\n * Called on `drain` event\n *\n * @api private\n */\n onDrain() {\n this.writeBuffer.splice(0, this.prevBufferLen);\n // setting prevBufferLen = 0 is very important\n // for example, when upgrading, upgrade packet is sent over,\n // and a nonzero prevBufferLen could cause problems on `drain`\n this.prevBufferLen = 0;\n if (0 === this.writeBuffer.length) {\n this.emitReserved(\"drain\");\n }\n else {\n this.flush();\n }\n }\n /**\n * Flush write buffers.\n *\n * @api private\n */\n flush() {\n if (\"closed\" !== this.readyState &&\n this.transport.writable &&\n !this.upgrading &&\n this.writeBuffer.length) {\n const packets = this.getWritablePackets();\n this.transport.send(packets);\n // keep track of current length of writeBuffer\n // splice writeBuffer and callbackBuffer on `drain`\n this.prevBufferLen = packets.length;\n this.emitReserved(\"flush\");\n }\n }\n /**\n * Ensure the encoded size of the writeBuffer is below the maxPayload value sent by the server (only for HTTP\n * long-polling)\n *\n * @private\n */\n getWritablePackets() {\n const shouldCheckPayloadSize = this.maxPayload &&\n this.transport.name === \"polling\" &&\n this.writeBuffer.length > 1;\n if (!shouldCheckPayloadSize) {\n return this.writeBuffer;\n }\n let payloadSize = 1; // first packet type\n for (let i = 0; i < this.writeBuffer.length; i++) {\n const data = this.writeBuffer[i].data;\n if (data) {\n payloadSize += byteLength(data);\n }\n if (i > 0 && payloadSize > this.maxPayload) {\n return this.writeBuffer.slice(0, i);\n }\n payloadSize += 2; // separator + packet type\n }\n return this.writeBuffer;\n }\n /**\n * Sends a message.\n *\n * @param {String} message.\n * @param {Function} callback function.\n * @param {Object} options.\n * @return {Socket} for chaining.\n * @api public\n */\n write(msg, options, fn) {\n this.sendPacket(\"message\", msg, options, fn);\n return this;\n }\n send(msg, options, fn) {\n this.sendPacket(\"message\", msg, options, fn);\n return this;\n }\n /**\n * Sends a packet.\n *\n * @param {String} packet type.\n * @param {String} data.\n * @param {Object} options.\n * @param {Function} callback function.\n * @api private\n */\n sendPacket(type, data, options, fn) {\n if (\"function\" === typeof data) {\n fn = data;\n data = undefined;\n }\n if (\"function\" === typeof options) {\n fn = options;\n options = null;\n }\n if (\"closing\" === this.readyState || \"closed\" === this.readyState) {\n return;\n }\n options = options || {};\n options.compress = false !== options.compress;\n const packet = {\n type: type,\n data: data,\n options: options\n };\n this.emitReserved(\"packetCreate\", packet);\n this.writeBuffer.push(packet);\n if (fn)\n this.once(\"flush\", fn);\n this.flush();\n }\n /**\n * Closes the connection.\n *\n * @api public\n */\n close() {\n const close = () => {\n this.onClose(\"forced close\");\n this.transport.close();\n };\n const cleanupAndClose = () => {\n this.off(\"upgrade\", cleanupAndClose);\n this.off(\"upgradeError\", cleanupAndClose);\n close();\n };\n const waitForUpgrade = () => {\n // wait for upgrade to finish since we can't send packets while pausing a transport\n this.once(\"upgrade\", cleanupAndClose);\n this.once(\"upgradeError\", cleanupAndClose);\n };\n if (\"opening\" === this.readyState || \"open\" === this.readyState) {\n this.readyState = \"closing\";\n if (this.writeBuffer.length) {\n this.once(\"drain\", () => {\n if (this.upgrading) {\n waitForUpgrade();\n }\n else {\n close();\n }\n });\n }\n else if (this.upgrading) {\n waitForUpgrade();\n }\n else {\n close();\n }\n }\n return this;\n }\n /**\n * Called upon transport error\n *\n * @api private\n */\n onError(err) {\n Socket.priorWebsocketSuccess = false;\n this.emitReserved(\"error\", err);\n this.onClose(\"transport error\", err);\n }\n /**\n * Called upon transport close.\n *\n * @api private\n */\n onClose(reason, description) {\n if (\"opening\" === this.readyState ||\n \"open\" === this.readyState ||\n \"closing\" === this.readyState) {\n // clear timers\n this.clearTimeoutFn(this.pingTimeoutTimer);\n // stop event from firing again for transport\n this.transport.removeAllListeners(\"close\");\n // ensure transport won't stay open\n this.transport.close();\n // ignore further transport communication\n this.transport.removeAllListeners();\n if (typeof removeEventListener === \"function\") {\n removeEventListener(\"beforeunload\", this.beforeunloadEventListener, false);\n removeEventListener(\"offline\", this.offlineEventListener, false);\n }\n // set ready state\n this.readyState = \"closed\";\n // clear session id\n this.id = null;\n // emit close event\n this.emitReserved(\"close\", reason, description);\n // clean buffers after, so users can still\n // grab the buffers on `close` event\n this.writeBuffer = [];\n this.prevBufferLen = 0;\n }\n }\n /**\n * Filters upgrades, returning only those matching client transports.\n *\n * @param {Array} server upgrades\n * @api private\n *\n */\n filterUpgrades(upgrades) {\n const filteredUpgrades = [];\n let i = 0;\n const j = upgrades.length;\n for (; i < j; i++) {\n if (~this.transports.indexOf(upgrades[i]))\n filteredUpgrades.push(upgrades[i]);\n }\n return filteredUpgrades;\n }\n}\nSocket.protocol = protocol;\n","const withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\nconst isView = (obj) => {\n return typeof ArrayBuffer.isView === \"function\"\n ? ArrayBuffer.isView(obj)\n : obj.buffer instanceof ArrayBuffer;\n};\nconst toString = Object.prototype.toString;\nconst withNativeBlob = typeof Blob === \"function\" ||\n (typeof Blob !== \"undefined\" &&\n toString.call(Blob) === \"[object BlobConstructor]\");\nconst withNativeFile = typeof File === \"function\" ||\n (typeof File !== \"undefined\" &&\n toString.call(File) === \"[object FileConstructor]\");\n/**\n * Returns true if obj is a Buffer, an ArrayBuffer, a Blob or a File.\n *\n * @private\n */\nexport function isBinary(obj) {\n return ((withNativeArrayBuffer && (obj instanceof ArrayBuffer || isView(obj))) ||\n (withNativeBlob && obj instanceof Blob) ||\n (withNativeFile && obj instanceof File));\n}\nexport function hasBinary(obj, toJSON) {\n if (!obj || typeof obj !== \"object\") {\n return false;\n }\n if (Array.isArray(obj)) {\n for (let i = 0, l = obj.length; i < l; i++) {\n if (hasBinary(obj[i])) {\n return true;\n }\n }\n return false;\n }\n if (isBinary(obj)) {\n return true;\n }\n if (obj.toJSON &&\n typeof obj.toJSON === \"function\" &&\n arguments.length === 1) {\n return hasBinary(obj.toJSON(), true);\n }\n for (const key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key) && hasBinary(obj[key])) {\n return true;\n }\n }\n return false;\n}\n","import { isBinary } from \"./is-binary.js\";\n/**\n * Replaces every Buffer | ArrayBuffer | Blob | File in packet with a numbered placeholder.\n *\n * @param {Object} packet - socket.io event packet\n * @return {Object} with deconstructed packet and list of buffers\n * @public\n */\nexport function deconstructPacket(packet) {\n const buffers = [];\n const packetData = packet.data;\n const pack = packet;\n pack.data = _deconstructPacket(packetData, buffers);\n pack.attachments = buffers.length; // number of binary 'attachments'\n return { packet: pack, buffers: buffers };\n}\nfunction _deconstructPacket(data, buffers) {\n if (!data)\n return data;\n if (isBinary(data)) {\n const placeholder = { _placeholder: true, num: buffers.length };\n buffers.push(data);\n return placeholder;\n }\n else if (Array.isArray(data)) {\n const newData = new Array(data.length);\n for (let i = 0; i < data.length; i++) {\n newData[i] = _deconstructPacket(data[i], buffers);\n }\n return newData;\n }\n else if (typeof data === \"object\" && !(data instanceof Date)) {\n const newData = {};\n for (const key in data) {\n if (Object.prototype.hasOwnProperty.call(data, key)) {\n newData[key] = _deconstructPacket(data[key], buffers);\n }\n }\n return newData;\n }\n return data;\n}\n/**\n * Reconstructs a binary packet from its placeholder packet and buffers\n *\n * @param {Object} packet - event packet with placeholders\n * @param {Array} buffers - binary buffers to put in placeholder positions\n * @return {Object} reconstructed packet\n * @public\n */\nexport function reconstructPacket(packet, buffers) {\n packet.data = _reconstructPacket(packet.data, buffers);\n packet.attachments = undefined; // no longer useful\n return packet;\n}\nfunction _reconstructPacket(data, buffers) {\n if (!data)\n return data;\n if (data && data._placeholder) {\n return buffers[data.num]; // appropriate buffer (should be natural order anyway)\n }\n else if (Array.isArray(data)) {\n for (let i = 0; i < data.length; i++) {\n data[i] = _reconstructPacket(data[i], buffers);\n }\n }\n else if (typeof data === \"object\") {\n for (const key in data) {\n if (Object.prototype.hasOwnProperty.call(data, key)) {\n data[key] = _reconstructPacket(data[key], buffers);\n }\n }\n }\n return data;\n}\n","import { Emitter } from \"@socket.io/component-emitter\";\nimport { deconstructPacket, reconstructPacket } from \"./binary.js\";\nimport { isBinary, hasBinary } from \"./is-binary.js\";\n/**\n * Protocol version.\n *\n * @public\n */\nexport const protocol = 5;\nexport var PacketType;\n(function (PacketType) {\n PacketType[PacketType[\"CONNECT\"] = 0] = \"CONNECT\";\n PacketType[PacketType[\"DISCONNECT\"] = 1] = \"DISCONNECT\";\n PacketType[PacketType[\"EVENT\"] = 2] = \"EVENT\";\n PacketType[PacketType[\"ACK\"] = 3] = \"ACK\";\n PacketType[PacketType[\"CONNECT_ERROR\"] = 4] = \"CONNECT_ERROR\";\n PacketType[PacketType[\"BINARY_EVENT\"] = 5] = \"BINARY_EVENT\";\n PacketType[PacketType[\"BINARY_ACK\"] = 6] = \"BINARY_ACK\";\n})(PacketType || (PacketType = {}));\n/**\n * A socket.io Encoder instance\n */\nexport class Encoder {\n /**\n * Encoder constructor\n *\n * @param {function} replacer - custom replacer to pass down to JSON.parse\n */\n constructor(replacer) {\n this.replacer = replacer;\n }\n /**\n * Encode a packet as a single string if non-binary, or as a\n * buffer sequence, depending on packet type.\n *\n * @param {Object} obj - packet object\n */\n encode(obj) {\n if (obj.type === PacketType.EVENT || obj.type === PacketType.ACK) {\n if (hasBinary(obj)) {\n obj.type =\n obj.type === PacketType.EVENT\n ? PacketType.BINARY_EVENT\n : PacketType.BINARY_ACK;\n return this.encodeAsBinary(obj);\n }\n }\n return [this.encodeAsString(obj)];\n }\n /**\n * Encode packet as string.\n */\n encodeAsString(obj) {\n // first is type\n let str = \"\" + obj.type;\n // attachments if we have them\n if (obj.type === PacketType.BINARY_EVENT ||\n obj.type === PacketType.BINARY_ACK) {\n str += obj.attachments + \"-\";\n }\n // if we have a namespace other than `/`\n // we append it followed by a comma `,`\n if (obj.nsp && \"/\" !== obj.nsp) {\n str += obj.nsp + \",\";\n }\n // immediately followed by the id\n if (null != obj.id) {\n str += obj.id;\n }\n // json data\n if (null != obj.data) {\n str += JSON.stringify(obj.data, this.replacer);\n }\n return str;\n }\n /**\n * Encode packet as 'buffer sequence' by removing blobs, and\n * deconstructing packet into object with placeholders and\n * a list of buffers.\n */\n encodeAsBinary(obj) {\n const deconstruction = deconstructPacket(obj);\n const pack = this.encodeAsString(deconstruction.packet);\n const buffers = deconstruction.buffers;\n buffers.unshift(pack); // add packet info to beginning of data list\n return buffers; // write all the buffers\n }\n}\n/**\n * A socket.io Decoder instance\n *\n * @return {Object} decoder\n */\nexport class Decoder extends Emitter {\n /**\n * Decoder constructor\n *\n * @param {function} reviver - custom reviver to pass down to JSON.stringify\n */\n constructor(reviver) {\n super();\n this.reviver = reviver;\n }\n /**\n * Decodes an encoded packet string into packet JSON.\n *\n * @param {String} obj - encoded packet\n */\n add(obj) {\n let packet;\n if (typeof obj === \"string\") {\n packet = this.decodeString(obj);\n if (packet.type === PacketType.BINARY_EVENT ||\n packet.type === PacketType.BINARY_ACK) {\n // binary packet's json\n this.reconstructor = new BinaryReconstructor(packet);\n // no attachments, labeled binary but no binary data to follow\n if (packet.attachments === 0) {\n super.emitReserved(\"decoded\", packet);\n }\n }\n else {\n // non-binary full packet\n super.emitReserved(\"decoded\", packet);\n }\n }\n else if (isBinary(obj) || obj.base64) {\n // raw binary data\n if (!this.reconstructor) {\n throw new Error(\"got binary data when not reconstructing a packet\");\n }\n else {\n packet = this.reconstructor.takeBinaryData(obj);\n if (packet) {\n // received final buffer\n this.reconstructor = null;\n super.emitReserved(\"decoded\", packet);\n }\n }\n }\n else {\n throw new Error(\"Unknown type: \" + obj);\n }\n }\n /**\n * Decode a packet String (JSON data)\n *\n * @param {String} str\n * @return {Object} packet\n */\n decodeString(str) {\n let i = 0;\n // look up type\n const p = {\n type: Number(str.charAt(0)),\n };\n if (PacketType[p.type] === undefined) {\n throw new Error(\"unknown packet type \" + p.type);\n }\n // look up attachments if type binary\n if (p.type === PacketType.BINARY_EVENT ||\n p.type === PacketType.BINARY_ACK) {\n const start = i + 1;\n while (str.charAt(++i) !== \"-\" && i != str.length) { }\n const buf = str.substring(start, i);\n if (buf != Number(buf) || str.charAt(i) !== \"-\") {\n throw new Error(\"Illegal attachments\");\n }\n p.attachments = Number(buf);\n }\n // look up namespace (if any)\n if (\"/\" === str.charAt(i + 1)) {\n const start = i + 1;\n while (++i) {\n const c = str.charAt(i);\n if (\",\" === c)\n break;\n if (i === str.length)\n break;\n }\n p.nsp = str.substring(start, i);\n }\n else {\n p.nsp = \"/\";\n }\n // look up id\n const next = str.charAt(i + 1);\n if (\"\" !== next && Number(next) == next) {\n const start = i + 1;\n while (++i) {\n const c = str.charAt(i);\n if (null == c || Number(c) != c) {\n --i;\n break;\n }\n if (i === str.length)\n break;\n }\n p.id = Number(str.substring(start, i + 1));\n }\n // look up json data\n if (str.charAt(++i)) {\n const payload = this.tryParse(str.substr(i));\n if (Decoder.isPayloadValid(p.type, payload)) {\n p.data = payload;\n }\n else {\n throw new Error(\"invalid payload\");\n }\n }\n return p;\n }\n tryParse(str) {\n try {\n return JSON.parse(str, this.reviver);\n }\n catch (e) {\n return false;\n }\n }\n static isPayloadValid(type, payload) {\n switch (type) {\n case PacketType.CONNECT:\n return typeof payload === \"object\";\n case PacketType.DISCONNECT:\n return payload === undefined;\n case PacketType.CONNECT_ERROR:\n return typeof payload === \"string\" || typeof payload === \"object\";\n case PacketType.EVENT:\n case PacketType.BINARY_EVENT:\n return Array.isArray(payload) && payload.length > 0;\n case PacketType.ACK:\n case PacketType.BINARY_ACK:\n return Array.isArray(payload);\n }\n }\n /**\n * Deallocates a parser's resources\n */\n destroy() {\n if (this.reconstructor) {\n this.reconstructor.finishedReconstruction();\n }\n }\n}\n/**\n * A manager of a binary event's 'buffer sequence'. Should\n * be constructed whenever a packet of type BINARY_EVENT is\n * decoded.\n *\n * @param {Object} packet\n * @return {BinaryReconstructor} initialized reconstructor\n */\nclass BinaryReconstructor {\n constructor(packet) {\n this.packet = packet;\n this.buffers = [];\n this.reconPack = packet;\n }\n /**\n * Method to be called when binary data received from connection\n * after a BINARY_EVENT packet.\n *\n * @param {Buffer | ArrayBuffer} binData - the raw binary data received\n * @return {null | Object} returns null if more binary data is expected or\n * a reconstructed packet object if all buffers have been received.\n */\n takeBinaryData(binData) {\n this.buffers.push(binData);\n if (this.buffers.length === this.reconPack.attachments) {\n // done with buffer list\n const packet = reconstructPacket(this.reconPack, this.buffers);\n this.finishedReconstruction();\n return packet;\n }\n return null;\n }\n /**\n * Cleans up binary packet reconstruction variables.\n */\n finishedReconstruction() {\n this.reconPack = null;\n this.buffers = [];\n }\n}\n","export function on(obj, ev, fn) {\n obj.on(ev, fn);\n return function subDestroy() {\n obj.off(ev, fn);\n };\n}\n","import { PacketType } from \"socket.io-parser\";\nimport { on } from \"./on.js\";\nimport { Emitter, } from \"@socket.io/component-emitter\";\n/**\n * Internal events.\n * These events can't be emitted by the user.\n */\nconst RESERVED_EVENTS = Object.freeze({\n connect: 1,\n connect_error: 1,\n disconnect: 1,\n disconnecting: 1,\n // EventEmitter reserved events: https://nodejs.org/api/events.html#events_event_newlistener\n newListener: 1,\n removeListener: 1,\n});\n/**\n * A Socket is the fundamental class for interacting with the server.\n *\n * A Socket belongs to a certain Namespace (by default /) and uses an underlying {@link Manager} to communicate.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(\"connected\");\n * });\n *\n * // send an event to the server\n * socket.emit(\"foo\", \"bar\");\n *\n * socket.on(\"foobar\", () => {\n * // an event was received from the server\n * });\n *\n * // upon disconnection\n * socket.on(\"disconnect\", (reason) => {\n * console.log(`disconnected due to ${reason}`);\n * });\n */\nexport class Socket extends Emitter {\n /**\n * `Socket` constructor.\n */\n constructor(io, nsp, opts) {\n super();\n /**\n * Whether the socket is currently connected to the server.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(socket.connected); // true\n * });\n *\n * socket.on(\"disconnect\", () => {\n * console.log(socket.connected); // false\n * });\n */\n this.connected = false;\n /**\n * Buffer for packets received before the CONNECT packet\n */\n this.receiveBuffer = [];\n /**\n * Buffer for packets that will be sent once the socket is connected\n */\n this.sendBuffer = [];\n this.ids = 0;\n this.acks = {};\n this.flags = {};\n this.io = io;\n this.nsp = nsp;\n if (opts && opts.auth) {\n this.auth = opts.auth;\n }\n if (this.io._autoConnect)\n this.open();\n }\n /**\n * Whether the socket is currently disconnected\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(socket.disconnected); // false\n * });\n *\n * socket.on(\"disconnect\", () => {\n * console.log(socket.disconnected); // true\n * });\n */\n get disconnected() {\n return !this.connected;\n }\n /**\n * Subscribe to open, close and packet events\n *\n * @private\n */\n subEvents() {\n if (this.subs)\n return;\n const io = this.io;\n this.subs = [\n on(io, \"open\", this.onopen.bind(this)),\n on(io, \"packet\", this.onpacket.bind(this)),\n on(io, \"error\", this.onerror.bind(this)),\n on(io, \"close\", this.onclose.bind(this)),\n ];\n }\n /**\n * Whether the Socket will try to reconnect when its Manager connects or reconnects.\n *\n * @example\n * const socket = io();\n *\n * console.log(socket.active); // true\n *\n * socket.on(\"disconnect\", (reason) => {\n * if (reason === \"io server disconnect\") {\n * // the disconnection was initiated by the server, you need to manually reconnect\n * console.log(socket.active); // false\n * }\n * // else the socket will automatically try to reconnect\n * console.log(socket.active); // true\n * });\n */\n get active() {\n return !!this.subs;\n }\n /**\n * \"Opens\" the socket.\n *\n * @example\n * const socket = io({\n * autoConnect: false\n * });\n *\n * socket.connect();\n */\n connect() {\n if (this.connected)\n return this;\n this.subEvents();\n if (!this.io[\"_reconnecting\"])\n this.io.open(); // ensure open\n if (\"open\" === this.io._readyState)\n this.onopen();\n return this;\n }\n /**\n * Alias for {@link connect()}.\n */\n open() {\n return this.connect();\n }\n /**\n * Sends a `message` event.\n *\n * This method mimics the WebSocket.send() method.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/send\n *\n * @example\n * socket.send(\"hello\");\n *\n * // this is equivalent to\n * socket.emit(\"message\", \"hello\");\n *\n * @return self\n */\n send(...args) {\n args.unshift(\"message\");\n this.emit.apply(this, args);\n return this;\n }\n /**\n * Override `emit`.\n * If the event is in `events`, it's emitted normally.\n *\n * @example\n * socket.emit(\"hello\", \"world\");\n *\n * // all serializable datastructures are supported (no need to call JSON.stringify)\n * socket.emit(\"hello\", 1, \"2\", { 3: [\"4\"], 5: Uint8Array.from([6]) });\n *\n * // with an acknowledgement from the server\n * socket.emit(\"hello\", \"world\", (val) => {\n * // ...\n * });\n *\n * @return self\n */\n emit(ev, ...args) {\n if (RESERVED_EVENTS.hasOwnProperty(ev)) {\n throw new Error('\"' + ev.toString() + '\" is a reserved event name');\n }\n args.unshift(ev);\n const packet = {\n type: PacketType.EVENT,\n data: args,\n };\n packet.options = {};\n packet.options.compress = this.flags.compress !== false;\n // event ack callback\n if (\"function\" === typeof args[args.length - 1]) {\n const id = this.ids++;\n const ack = args.pop();\n this._registerAckCallback(id, ack);\n packet.id = id;\n }\n const isTransportWritable = this.io.engine &&\n this.io.engine.transport &&\n this.io.engine.transport.writable;\n const discardPacket = this.flags.volatile && (!isTransportWritable || !this.connected);\n if (discardPacket) {\n }\n else if (this.connected) {\n this.notifyOutgoingListeners(packet);\n this.packet(packet);\n }\n else {\n this.sendBuffer.push(packet);\n }\n this.flags = {};\n return this;\n }\n /**\n * @private\n */\n _registerAckCallback(id, ack) {\n const timeout = this.flags.timeout;\n if (timeout === undefined) {\n this.acks[id] = ack;\n return;\n }\n // @ts-ignore\n const timer = this.io.setTimeoutFn(() => {\n delete this.acks[id];\n for (let i = 0; i < this.sendBuffer.length; i++) {\n if (this.sendBuffer[i].id === id) {\n this.sendBuffer.splice(i, 1);\n }\n }\n ack.call(this, new Error(\"operation has timed out\"));\n }, timeout);\n this.acks[id] = (...args) => {\n // @ts-ignore\n this.io.clearTimeoutFn(timer);\n ack.apply(this, [null, ...args]);\n };\n }\n /**\n * Sends a packet.\n *\n * @param packet\n * @private\n */\n packet(packet) {\n packet.nsp = this.nsp;\n this.io._packet(packet);\n }\n /**\n * Called upon engine `open`.\n *\n * @private\n */\n onopen() {\n if (typeof this.auth == \"function\") {\n this.auth((data) => {\n this.packet({ type: PacketType.CONNECT, data });\n });\n }\n else {\n this.packet({ type: PacketType.CONNECT, data: this.auth });\n }\n }\n /**\n * Called upon engine or manager `error`.\n *\n * @param err\n * @private\n */\n onerror(err) {\n if (!this.connected) {\n this.emitReserved(\"connect_error\", err);\n }\n }\n /**\n * Called upon engine `close`.\n *\n * @param reason\n * @param description\n * @private\n */\n onclose(reason, description) {\n this.connected = false;\n delete this.id;\n this.emitReserved(\"disconnect\", reason, description);\n }\n /**\n * Called with socket packet.\n *\n * @param packet\n * @private\n */\n onpacket(packet) {\n const sameNamespace = packet.nsp === this.nsp;\n if (!sameNamespace)\n return;\n switch (packet.type) {\n case PacketType.CONNECT:\n if (packet.data && packet.data.sid) {\n const id = packet.data.sid;\n this.onconnect(id);\n }\n else {\n this.emitReserved(\"connect_error\", new Error(\"It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)\"));\n }\n break;\n case PacketType.EVENT:\n case PacketType.BINARY_EVENT:\n this.onevent(packet);\n break;\n case PacketType.ACK:\n case PacketType.BINARY_ACK:\n this.onack(packet);\n break;\n case PacketType.DISCONNECT:\n this.ondisconnect();\n break;\n case PacketType.CONNECT_ERROR:\n this.destroy();\n const err = new Error(packet.data.message);\n // @ts-ignore\n err.data = packet.data.data;\n this.emitReserved(\"connect_error\", err);\n break;\n }\n }\n /**\n * Called upon a server event.\n *\n * @param packet\n * @private\n */\n onevent(packet) {\n const args = packet.data || [];\n if (null != packet.id) {\n args.push(this.ack(packet.id));\n }\n if (this.connected) {\n this.emitEvent(args);\n }\n else {\n this.receiveBuffer.push(Object.freeze(args));\n }\n }\n emitEvent(args) {\n if (this._anyListeners && this._anyListeners.length) {\n const listeners = this._anyListeners.slice();\n for (const listener of listeners) {\n listener.apply(this, args);\n }\n }\n super.emit.apply(this, args);\n }\n /**\n * Produces an ack callback to emit with an event.\n *\n * @private\n */\n ack(id) {\n const self = this;\n let sent = false;\n return function (...args) {\n // prevent double callbacks\n if (sent)\n return;\n sent = true;\n self.packet({\n type: PacketType.ACK,\n id: id,\n data: args,\n });\n };\n }\n /**\n * Called upon a server acknowlegement.\n *\n * @param packet\n * @private\n */\n onack(packet) {\n const ack = this.acks[packet.id];\n if (\"function\" === typeof ack) {\n ack.apply(this, packet.data);\n delete this.acks[packet.id];\n }\n else {\n }\n }\n /**\n * Called upon server connect.\n *\n * @private\n */\n onconnect(id) {\n this.id = id;\n this.connected = true;\n this.emitBuffered();\n this.emitReserved(\"connect\");\n }\n /**\n * Emit buffered events (received and emitted).\n *\n * @private\n */\n emitBuffered() {\n this.receiveBuffer.forEach((args) => this.emitEvent(args));\n this.receiveBuffer = [];\n this.sendBuffer.forEach((packet) => {\n this.notifyOutgoingListeners(packet);\n this.packet(packet);\n });\n this.sendBuffer = [];\n }\n /**\n * Called upon server disconnect.\n *\n * @private\n */\n ondisconnect() {\n this.destroy();\n this.onclose(\"io server disconnect\");\n }\n /**\n * Called upon forced client/server side disconnections,\n * this method ensures the manager stops tracking us and\n * that reconnections don't get triggered for this.\n *\n * @private\n */\n destroy() {\n if (this.subs) {\n // clean subscriptions to avoid reconnections\n this.subs.forEach((subDestroy) => subDestroy());\n this.subs = undefined;\n }\n this.io[\"_destroy\"](this);\n }\n /**\n * Disconnects the socket manually. In that case, the socket will not try to reconnect.\n *\n * If this is the last active Socket instance of the {@link Manager}, the low-level connection will be closed.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"disconnect\", (reason) => {\n * // console.log(reason); prints \"io client disconnect\"\n * });\n *\n * socket.disconnect();\n *\n * @return self\n */\n disconnect() {\n if (this.connected) {\n this.packet({ type: PacketType.DISCONNECT });\n }\n // remove socket from pool\n this.destroy();\n if (this.connected) {\n // fire events\n this.onclose(\"io client disconnect\");\n }\n return this;\n }\n /**\n * Alias for {@link disconnect()}.\n *\n * @return self\n */\n close() {\n return this.disconnect();\n }\n /**\n * Sets the compress flag.\n *\n * @example\n * socket.compress(false).emit(\"hello\");\n *\n * @param compress - if `true`, compresses the sending data\n * @return self\n */\n compress(compress) {\n this.flags.compress = compress;\n return this;\n }\n /**\n * Sets a modifier for a subsequent event emission that the event message will be dropped when this socket is not\n * ready to send messages.\n *\n * @example\n * socket.volatile.emit(\"hello\"); // the server may or may not receive it\n *\n * @returns self\n */\n get volatile() {\n this.flags.volatile = true;\n return this;\n }\n /**\n * Sets a modifier for a subsequent event emission that the callback will be called with an error when the\n * given number of milliseconds have elapsed without an acknowledgement from the server:\n *\n * @example\n * socket.timeout(5000).emit(\"my-event\", (err) => {\n * if (err) {\n * // the server did not acknowledge the event in the given delay\n * }\n * });\n *\n * @returns self\n */\n timeout(timeout) {\n this.flags.timeout = timeout;\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback.\n *\n * @example\n * socket.onAny((event, ...args) => {\n * console.log(`got ${event}`);\n * });\n *\n * @param listener\n */\n onAny(listener) {\n this._anyListeners = this._anyListeners || [];\n this._anyListeners.push(listener);\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback. The listener is added to the beginning of the listeners array.\n *\n * @example\n * socket.prependAny((event, ...args) => {\n * console.log(`got event ${event}`);\n * });\n *\n * @param listener\n */\n prependAny(listener) {\n this._anyListeners = this._anyListeners || [];\n this._anyListeners.unshift(listener);\n return this;\n }\n /**\n * Removes the listener that will be fired when any event is emitted.\n *\n * @example\n * const catchAllListener = (event, ...args) => {\n * console.log(`got event ${event}`);\n * }\n *\n * socket.onAny(catchAllListener);\n *\n * // remove a specific listener\n * socket.offAny(catchAllListener);\n *\n * // or remove all listeners\n * socket.offAny();\n *\n * @param listener\n */\n offAny(listener) {\n if (!this._anyListeners) {\n return this;\n }\n if (listener) {\n const listeners = this._anyListeners;\n for (let i = 0; i < listeners.length; i++) {\n if (listener === listeners[i]) {\n listeners.splice(i, 1);\n return this;\n }\n }\n }\n else {\n this._anyListeners = [];\n }\n return this;\n }\n /**\n * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated,\n * e.g. to remove listeners.\n */\n listenersAny() {\n return this._anyListeners || [];\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback.\n *\n * Note: acknowledgements sent to the server are not included.\n *\n * @example\n * socket.onAnyOutgoing((event, ...args) => {\n * console.log(`sent event ${event}`);\n * });\n *\n * @param listener\n */\n onAnyOutgoing(listener) {\n this._anyOutgoingListeners = this._anyOutgoingListeners || [];\n this._anyOutgoingListeners.push(listener);\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback. The listener is added to the beginning of the listeners array.\n *\n * Note: acknowledgements sent to the server are not included.\n *\n * @example\n * socket.prependAnyOutgoing((event, ...args) => {\n * console.log(`sent event ${event}`);\n * });\n *\n * @param listener\n */\n prependAnyOutgoing(listener) {\n this._anyOutgoingListeners = this._anyOutgoingListeners || [];\n this._anyOutgoingListeners.unshift(listener);\n return this;\n }\n /**\n * Removes the listener that will be fired when any event is emitted.\n *\n * @example\n * const catchAllListener = (event, ...args) => {\n * console.log(`sent event ${event}`);\n * }\n *\n * socket.onAnyOutgoing(catchAllListener);\n *\n * // remove a specific listener\n * socket.offAnyOutgoing(catchAllListener);\n *\n * // or remove all listeners\n * socket.offAnyOutgoing();\n *\n * @param [listener] - the catch-all listener (optional)\n */\n offAnyOutgoing(listener) {\n if (!this._anyOutgoingListeners) {\n return this;\n }\n if (listener) {\n const listeners = this._anyOutgoingListeners;\n for (let i = 0; i < listeners.length; i++) {\n if (listener === listeners[i]) {\n listeners.splice(i, 1);\n return this;\n }\n }\n }\n else {\n this._anyOutgoingListeners = [];\n }\n return this;\n }\n /**\n * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated,\n * e.g. to remove listeners.\n */\n listenersAnyOutgoing() {\n return this._anyOutgoingListeners || [];\n }\n /**\n * Notify the listeners for each packet sent\n *\n * @param packet\n *\n * @private\n */\n notifyOutgoingListeners(packet) {\n if (this._anyOutgoingListeners && this._anyOutgoingListeners.length) {\n const listeners = this._anyOutgoingListeners.slice();\n for (const listener of listeners) {\n listener.apply(this, packet.data);\n }\n }\n }\n}\n","/**\n * Initialize backoff timer with `opts`.\n *\n * - `min` initial timeout in milliseconds [100]\n * - `max` max timeout [10000]\n * - `jitter` [0]\n * - `factor` [2]\n *\n * @param {Object} opts\n * @api public\n */\nexport function Backoff(opts) {\n opts = opts || {};\n this.ms = opts.min || 100;\n this.max = opts.max || 10000;\n this.factor = opts.factor || 2;\n this.jitter = opts.jitter > 0 && opts.jitter <= 1 ? opts.jitter : 0;\n this.attempts = 0;\n}\n/**\n * Return the backoff duration.\n *\n * @return {Number}\n * @api public\n */\nBackoff.prototype.duration = function () {\n var ms = this.ms * Math.pow(this.factor, this.attempts++);\n if (this.jitter) {\n var rand = Math.random();\n var deviation = Math.floor(rand * this.jitter * ms);\n ms = (Math.floor(rand * 10) & 1) == 0 ? ms - deviation : ms + deviation;\n }\n return Math.min(ms, this.max) | 0;\n};\n/**\n * Reset the number of attempts.\n *\n * @api public\n */\nBackoff.prototype.reset = function () {\n this.attempts = 0;\n};\n/**\n * Set the minimum duration\n *\n * @api public\n */\nBackoff.prototype.setMin = function (min) {\n this.ms = min;\n};\n/**\n * Set the maximum duration\n *\n * @api public\n */\nBackoff.prototype.setMax = function (max) {\n this.max = max;\n};\n/**\n * Set the jitter\n *\n * @api public\n */\nBackoff.prototype.setJitter = function (jitter) {\n this.jitter = jitter;\n};\n","import { Socket as Engine, installTimerFunctions, nextTick, } from \"engine.io-client\";\nimport { Socket } from \"./socket.js\";\nimport * as parser from \"socket.io-parser\";\nimport { on } from \"./on.js\";\nimport { Backoff } from \"./contrib/backo2.js\";\nimport { Emitter, } from \"@socket.io/component-emitter\";\nexport class Manager extends Emitter {\n constructor(uri, opts) {\n var _a;\n super();\n this.nsps = {};\n this.subs = [];\n if (uri && \"object\" === typeof uri) {\n opts = uri;\n uri = undefined;\n }\n opts = opts || {};\n opts.path = opts.path || \"/socket.io\";\n this.opts = opts;\n installTimerFunctions(this, opts);\n this.reconnection(opts.reconnection !== false);\n this.reconnectionAttempts(opts.reconnectionAttempts || Infinity);\n this.reconnectionDelay(opts.reconnectionDelay || 1000);\n this.reconnectionDelayMax(opts.reconnectionDelayMax || 5000);\n this.randomizationFactor((_a = opts.randomizationFactor) !== null && _a !== void 0 ? _a : 0.5);\n this.backoff = new Backoff({\n min: this.reconnectionDelay(),\n max: this.reconnectionDelayMax(),\n jitter: this.randomizationFactor(),\n });\n this.timeout(null == opts.timeout ? 20000 : opts.timeout);\n this._readyState = \"closed\";\n this.uri = uri;\n const _parser = opts.parser || parser;\n this.encoder = new _parser.Encoder();\n this.decoder = new _parser.Decoder();\n this._autoConnect = opts.autoConnect !== false;\n if (this._autoConnect)\n this.open();\n }\n reconnection(v) {\n if (!arguments.length)\n return this._reconnection;\n this._reconnection = !!v;\n return this;\n }\n reconnectionAttempts(v) {\n if (v === undefined)\n return this._reconnectionAttempts;\n this._reconnectionAttempts = v;\n return this;\n }\n reconnectionDelay(v) {\n var _a;\n if (v === undefined)\n return this._reconnectionDelay;\n this._reconnectionDelay = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setMin(v);\n return this;\n }\n randomizationFactor(v) {\n var _a;\n if (v === undefined)\n return this._randomizationFactor;\n this._randomizationFactor = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setJitter(v);\n return this;\n }\n reconnectionDelayMax(v) {\n var _a;\n if (v === undefined)\n return this._reconnectionDelayMax;\n this._reconnectionDelayMax = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setMax(v);\n return this;\n }\n timeout(v) {\n if (!arguments.length)\n return this._timeout;\n this._timeout = v;\n return this;\n }\n /**\n * Starts trying to reconnect if reconnection is enabled and we have not\n * started reconnecting yet\n *\n * @private\n */\n maybeReconnectOnOpen() {\n // Only try to reconnect if it's the first time we're connecting\n if (!this._reconnecting &&\n this._reconnection &&\n this.backoff.attempts === 0) {\n // keeps reconnection from firing twice for the same reconnection loop\n this.reconnect();\n }\n }\n /**\n * Sets the current transport `socket`.\n *\n * @param {Function} fn - optional, callback\n * @return self\n * @public\n */\n open(fn) {\n if (~this._readyState.indexOf(\"open\"))\n return this;\n this.engine = new Engine(this.uri, this.opts);\n const socket = this.engine;\n const self = this;\n this._readyState = \"opening\";\n this.skipReconnect = false;\n // emit `open`\n const openSubDestroy = on(socket, \"open\", function () {\n self.onopen();\n fn && fn();\n });\n // emit `error`\n const errorSub = on(socket, \"error\", (err) => {\n self.cleanup();\n self._readyState = \"closed\";\n this.emitReserved(\"error\", err);\n if (fn) {\n fn(err);\n }\n else {\n // Only do this if there is no fn to handle the error\n self.maybeReconnectOnOpen();\n }\n });\n if (false !== this._timeout) {\n const timeout = this._timeout;\n if (timeout === 0) {\n openSubDestroy(); // prevents a race condition with the 'open' event\n }\n // set timer\n const timer = this.setTimeoutFn(() => {\n openSubDestroy();\n socket.close();\n // @ts-ignore\n socket.emit(\"error\", new Error(\"timeout\"));\n }, timeout);\n if (this.opts.autoUnref) {\n timer.unref();\n }\n this.subs.push(function subDestroy() {\n clearTimeout(timer);\n });\n }\n this.subs.push(openSubDestroy);\n this.subs.push(errorSub);\n return this;\n }\n /**\n * Alias for open()\n *\n * @return self\n * @public\n */\n connect(fn) {\n return this.open(fn);\n }\n /**\n * Called upon transport open.\n *\n * @private\n */\n onopen() {\n // clear old subs\n this.cleanup();\n // mark as open\n this._readyState = \"open\";\n this.emitReserved(\"open\");\n // add new subs\n const socket = this.engine;\n this.subs.push(on(socket, \"ping\", this.onping.bind(this)), on(socket, \"data\", this.ondata.bind(this)), on(socket, \"error\", this.onerror.bind(this)), on(socket, \"close\", this.onclose.bind(this)), on(this.decoder, \"decoded\", this.ondecoded.bind(this)));\n }\n /**\n * Called upon a ping.\n *\n * @private\n */\n onping() {\n this.emitReserved(\"ping\");\n }\n /**\n * Called with data.\n *\n * @private\n */\n ondata(data) {\n try {\n this.decoder.add(data);\n }\n catch (e) {\n this.onclose(\"parse error\", e);\n }\n }\n /**\n * Called when parser fully decodes a packet.\n *\n * @private\n */\n ondecoded(packet) {\n // the nextTick call prevents an exception in a user-provided event listener from triggering a disconnection due to a \"parse error\"\n nextTick(() => {\n this.emitReserved(\"packet\", packet);\n }, this.setTimeoutFn);\n }\n /**\n * Called upon socket error.\n *\n * @private\n */\n onerror(err) {\n this.emitReserved(\"error\", err);\n }\n /**\n * Creates a new socket for the given `nsp`.\n *\n * @return {Socket}\n * @public\n */\n socket(nsp, opts) {\n let socket = this.nsps[nsp];\n if (!socket) {\n socket = new Socket(this, nsp, opts);\n this.nsps[nsp] = socket;\n }\n return socket;\n }\n /**\n * Called upon a socket close.\n *\n * @param socket\n * @private\n */\n _destroy(socket) {\n const nsps = Object.keys(this.nsps);\n for (const nsp of nsps) {\n const socket = this.nsps[nsp];\n if (socket.active) {\n return;\n }\n }\n this._close();\n }\n /**\n * Writes a packet.\n *\n * @param packet\n * @private\n */\n _packet(packet) {\n const encodedPackets = this.encoder.encode(packet);\n for (let i = 0; i < encodedPackets.length; i++) {\n this.engine.write(encodedPackets[i], packet.options);\n }\n }\n /**\n * Clean up transport subscriptions and packet buffer.\n *\n * @private\n */\n cleanup() {\n this.subs.forEach((subDestroy) => subDestroy());\n this.subs.length = 0;\n this.decoder.destroy();\n }\n /**\n * Close the current socket.\n *\n * @private\n */\n _close() {\n this.skipReconnect = true;\n this._reconnecting = false;\n this.onclose(\"forced close\");\n if (this.engine)\n this.engine.close();\n }\n /**\n * Alias for close()\n *\n * @private\n */\n disconnect() {\n return this._close();\n }\n /**\n * Called upon engine close.\n *\n * @private\n */\n onclose(reason, description) {\n this.cleanup();\n this.backoff.reset();\n this._readyState = \"closed\";\n this.emitReserved(\"close\", reason, description);\n if (this._reconnection && !this.skipReconnect) {\n this.reconnect();\n }\n }\n /**\n * Attempt a reconnection.\n *\n * @private\n */\n reconnect() {\n if (this._reconnecting || this.skipReconnect)\n return this;\n const self = this;\n if (this.backoff.attempts >= this._reconnectionAttempts) {\n this.backoff.reset();\n this.emitReserved(\"reconnect_failed\");\n this._reconnecting = false;\n }\n else {\n const delay = this.backoff.duration();\n this._reconnecting = true;\n const timer = this.setTimeoutFn(() => {\n if (self.skipReconnect)\n return;\n this.emitReserved(\"reconnect_attempt\", self.backoff.attempts);\n // check again for the case socket closed in above events\n if (self.skipReconnect)\n return;\n self.open((err) => {\n if (err) {\n self._reconnecting = false;\n self.reconnect();\n this.emitReserved(\"reconnect_error\", err);\n }\n else {\n self.onreconnect();\n }\n });\n }, delay);\n if (this.opts.autoUnref) {\n timer.unref();\n }\n this.subs.push(function subDestroy() {\n clearTimeout(timer);\n });\n }\n }\n /**\n * Called upon successful reconnect.\n *\n * @private\n */\n onreconnect() {\n const attempt = this.backoff.attempts;\n this._reconnecting = false;\n this.backoff.reset();\n this.emitReserved(\"reconnect\", attempt);\n }\n}\n","import { url } from \"./url.js\";\nimport { Manager } from \"./manager.js\";\nimport { Socket } from \"./socket.js\";\n/**\n * Managers cache.\n */\nconst cache = {};\nfunction lookup(uri, opts) {\n if (typeof uri === \"object\") {\n opts = uri;\n uri = undefined;\n }\n opts = opts || {};\n const parsed = url(uri, opts.path || \"/socket.io\");\n const source = parsed.source;\n const id = parsed.id;\n const path = parsed.path;\n const sameNamespace = cache[id] && path in cache[id][\"nsps\"];\n const newConnection = opts.forceNew ||\n opts[\"force new connection\"] ||\n false === opts.multiplex ||\n sameNamespace;\n let io;\n if (newConnection) {\n io = new Manager(source, opts);\n }\n else {\n if (!cache[id]) {\n cache[id] = new Manager(source, opts);\n }\n io = cache[id];\n }\n if (parsed.query && !opts.query) {\n opts.query = parsed.queryKey;\n }\n return io.socket(parsed.path, opts);\n}\n// so that \"lookup\" can be used both as a function (e.g. `io(...)`) and as a\n// namespace (e.g. `io.connect(...)`), for backward compatibility\nObject.assign(lookup, {\n Manager,\n Socket,\n io: lookup,\n connect: lookup,\n});\n/**\n * Protocol version.\n *\n * @public\n */\nexport { protocol } from \"socket.io-parser\";\n/**\n * Expose constructors for standalone build.\n *\n * @public\n */\nexport { Manager, Socket, lookup as io, lookup as connect, lookup as default, };\n","import { parse } from \"engine.io-client\";\n/**\n * URL parser.\n *\n * @param uri - url\n * @param path - the request path of the connection\n * @param loc - An object meant to mimic window.location.\n * Defaults to window.location.\n * @public\n */\nexport function url(uri, path = \"\", loc) {\n let obj = uri;\n // default to window.location\n loc = loc || (typeof location !== \"undefined\" && location);\n if (null == uri)\n uri = loc.protocol + \"//\" + loc.host;\n // relative path support\n if (typeof uri === \"string\") {\n if (\"/\" === uri.charAt(0)) {\n if (\"/\" === uri.charAt(1)) {\n uri = loc.protocol + uri;\n }\n else {\n uri = loc.host + uri;\n }\n }\n if (!/^(https?|wss?):\\/\\//.test(uri)) {\n if (\"undefined\" !== typeof loc) {\n uri = loc.protocol + \"//\" + uri;\n }\n else {\n uri = \"https://\" + uri;\n }\n }\n // parse\n obj = parse(uri);\n }\n // make sure we treat `localhost:80` and `localhost` equally\n if (!obj.port) {\n if (/^(http|ws)$/.test(obj.protocol)) {\n obj.port = \"80\";\n }\n else if (/^(http|ws)s$/.test(obj.protocol)) {\n obj.port = \"443\";\n }\n }\n obj.path = obj.path || \"/\";\n const ipv6 = obj.host.indexOf(\":\") !== -1;\n const host = ipv6 ? \"[\" + obj.host + \"]\" : obj.host;\n // define unique id\n obj.id = obj.protocol + \"://\" + host + \":\" + obj.port + path;\n // define href\n obj.href =\n obj.protocol +\n \"://\" +\n host +\n (loc && loc.port === obj.port ? \"\" : \":\" + obj.port);\n return obj;\n}\n"],"names":["PACKET_TYPES","Object","create","PACKET_TYPES_REVERSE","keys","forEach","key","ERROR_PACKET","type","data","withNativeBlob","Blob","prototype","toString","call","withNativeArrayBuffer","ArrayBuffer","encodePacket","supportsBinary","callback","encodeBlobAsBase64","obj","isView","buffer","fileReader","FileReader","onload","content","result","split","readAsDataURL","chars","lookup","Uint8Array","i","length","charCodeAt","decodePacket","encodedPacket","binaryType","mapBinary","charAt","decodeBase64Packet","substring","decoded","base64","encoded1","encoded2","encoded3","encoded4","bufferLength","len","p","arraybuffer","bytes","decode","SEPARATOR","String","fromCharCode","Emitter","mixin","on","addEventListener","event","fn","this","_callbacks","push","once","off","apply","arguments","removeListener","removeAllListeners","removeEventListener","cb","callbacks","splice","emit","args","Array","slice","emitReserved","listeners","hasListeners","globalThisShim","self","window","Function","pick","attr","reduce","acc","k","hasOwnProperty","NATIVE_SET_TIMEOUT","setTimeout","NATIVE_CLEAR_TIMEOUT","clearTimeout","installTimerFunctions","opts","useNativeTimers","setTimeoutFn","bind","globalThis","clearTimeoutFn","TransportError","Error","constructor","reason","description","context","super","Transport","writable","query","readyState","socket","onError","open","doOpen","close","doClose","onClose","send","packets","write","onOpen","onData","packet","onPacket","details","alphabet","map","prev","seed","encode","num","encoded","Math","floor","yeast","now","Date","str","encodeURIComponent","value","XMLHttpRequest","err","hasCORS","XHR","xdomain","e","concat","join","empty","hasXHR2","responseType","Request","uri","method","async","undefined","xd","xscheme","xs","xhr","extraHeaders","setDisableHeaderCheck","setRequestHeader","withCredentials","requestTimeout","timeout","onreadystatechange","status","onLoad","document","index","requestsCount","requests","cleanup","fromError","abort","responseText","attachEvent","unloadHandler","nextTick","Promise","resolve","then","WebSocket","MozWebSocket","isReactNative","navigator","product","toLowerCase","transports","websocket","forceBase64","name","check","protocols","headers","ws","addEventListeners","onopen","autoUnref","_socket","unref","onclose","closeEvent","onmessage","ev","onerror","lastPacket","schema","secure","port","Number","timestampRequests","timestampParam","b64","encodedQuery","hostname","indexOf","path","polling","location","isSSL","protocol","poll","pause","onPause","total","doPoll","encodedPayload","encodedPackets","decodedPacket","decodePayload","count","encodePayload","doWrite","sid","request","assign","req","xhrStatus","pollXhr","re","parts","parse","src","b","replace","m","exec","source","host","authority","ipv6uri","pathNames","regx","names","queryKey","$0","$1","$2","Socket","writeBuffer","prevBufferLen","agent","upgrade","rememberUpgrade","rejectUnauthorized","perMessageDeflate","threshold","transportOptions","closeOnBeforeunload","qs","qry","pairs","l","pair","decodeURIComponent","id","upgrades","pingInterval","pingTimeout","pingTimeoutTimer","beforeunloadEventListener","transport","offlineEventListener","createTransport","EIO","priorWebsocketSuccess","shift","setTransport","onDrain","probe","failed","onTransportOpen","msg","upgrading","flush","freezeTransport","error","onTransportClose","onupgrade","to","onHandshake","JSON","resetPingTimeout","sendPacket","code","filterUpgrades","maxPayload","getWritablePackets","payloadSize","c","utf8Length","ceil","byteLength","size","options","compress","cleanupAndClose","waitForUpgrade","filteredUpgrades","j","withNativeFile","File","isBinary","hasBinary","toJSON","isArray","deconstructPacket","buffers","packetData","pack","_deconstructPacket","attachments","placeholder","_placeholder","newData","reconstructPacket","_reconstructPacket","PacketType","Decoder","reviver","add","decodeString","BINARY_EVENT","BINARY_ACK","reconstructor","BinaryReconstructor","takeBinaryData","start","buf","nsp","next","payload","tryParse","substr","isPayloadValid","static","CONNECT","DISCONNECT","CONNECT_ERROR","EVENT","ACK","destroy","finishedReconstruction","reconPack","binData","replacer","encodeAsString","encodeAsBinary","stringify","deconstruction","unshift","RESERVED_EVENTS","freeze","connect","connect_error","disconnect","disconnecting","newListener","io","connected","receiveBuffer","sendBuffer","ids","acks","flags","auth","_autoConnect","disconnected","subEvents","subs","onpacket","active","_readyState","ack","pop","_registerAckCallback","isTransportWritable","engine","volatile","notifyOutgoingListeners","timer","_packet","onconnect","onevent","onack","ondisconnect","message","emitEvent","_anyListeners","listener","sent","emitBuffered","subDestroy","onAny","prependAny","offAny","listenersAny","onAnyOutgoing","_anyOutgoingListeners","prependAnyOutgoing","offAnyOutgoing","listenersAnyOutgoing","Backoff","ms","min","max","factor","jitter","attempts","duration","pow","rand","random","deviation","reset","setMin","setMax","setJitter","Manager","_a","nsps","reconnection","reconnectionAttempts","Infinity","reconnectionDelay","reconnectionDelayMax","randomizationFactor","backoff","_parser","parser","encoder","Encoder","decoder","autoConnect","v","_reconnection","_reconnectionAttempts","_reconnectionDelay","_randomizationFactor","_reconnectionDelayMax","_timeout","maybeReconnectOnOpen","_reconnecting","reconnect","Engine","skipReconnect","openSubDestroy","errorSub","onping","ondata","ondecoded","_destroy","_close","delay","onreconnect","attempt","cache","parsed","loc","test","href","url","sameNamespace","forceNew","multiplex"],"mappings":"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"} \ No newline at end of file diff --git a/vendor/socketio/socket.io.js b/vendor/socketio/socket.io.js new file mode 100644 index 000000000..99ba13898 --- /dev/null +++ b/vendor/socketio/socket.io.js @@ -0,0 +1,4560 @@ +/*! + * Socket.IO v4.5.3 + * (c) 2014-2022 Guillermo Rauch + * Released under the MIT License. + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.io = factory()); +})(this, (function () { 'use strict'; + + function _typeof(obj) { + "@babel/helpers - typeof"; + + return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { + return typeof obj; + } : function (obj) { + return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; + }, _typeof(obj); + } + + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } + } + + function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + Object.defineProperty(Constructor, "prototype", { + writable: false + }); + return Constructor; + } + + function _extends() { + _extends = Object.assign ? Object.assign.bind() : function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; + }; + return _extends.apply(this, arguments); + } + + function _inherits(subClass, superClass) { + if (typeof superClass !== "function" && superClass !== null) { + throw new TypeError("Super expression must either be null or a function"); + } + + subClass.prototype = Object.create(superClass && superClass.prototype, { + constructor: { + value: subClass, + writable: true, + configurable: true + } + }); + Object.defineProperty(subClass, "prototype", { + writable: false + }); + if (superClass) _setPrototypeOf(subClass, superClass); + } + + function _getPrototypeOf(o) { + _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { + return o.__proto__ || Object.getPrototypeOf(o); + }; + return _getPrototypeOf(o); + } + + function _setPrototypeOf(o, p) { + _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { + o.__proto__ = p; + return o; + }; + return _setPrototypeOf(o, p); + } + + function _isNativeReflectConstruct() { + if (typeof Reflect === "undefined" || !Reflect.construct) return false; + if (Reflect.construct.sham) return false; + if (typeof Proxy === "function") return true; + + try { + Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); + return true; + } catch (e) { + return false; + } + } + + function _construct(Parent, args, Class) { + if (_isNativeReflectConstruct()) { + _construct = Reflect.construct.bind(); + } else { + _construct = function _construct(Parent, args, Class) { + var a = [null]; + a.push.apply(a, args); + var Constructor = Function.bind.apply(Parent, a); + var instance = new Constructor(); + if (Class) _setPrototypeOf(instance, Class.prototype); + return instance; + }; + } + + return _construct.apply(null, arguments); + } + + function _isNativeFunction(fn) { + return Function.toString.call(fn).indexOf("[native code]") !== -1; + } + + function _wrapNativeSuper(Class) { + var _cache = typeof Map === "function" ? new Map() : undefined; + + _wrapNativeSuper = function _wrapNativeSuper(Class) { + if (Class === null || !_isNativeFunction(Class)) return Class; + + if (typeof Class !== "function") { + throw new TypeError("Super expression must either be null or a function"); + } + + if (typeof _cache !== "undefined") { + if (_cache.has(Class)) return _cache.get(Class); + + _cache.set(Class, Wrapper); + } + + function Wrapper() { + return _construct(Class, arguments, _getPrototypeOf(this).constructor); + } + + Wrapper.prototype = Object.create(Class.prototype, { + constructor: { + value: Wrapper, + enumerable: false, + writable: true, + configurable: true + } + }); + return _setPrototypeOf(Wrapper, Class); + }; + + return _wrapNativeSuper(Class); + } + + function _assertThisInitialized(self) { + if (self === void 0) { + throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + } + + return self; + } + + function _possibleConstructorReturn(self, call) { + if (call && (typeof call === "object" || typeof call === "function")) { + return call; + } else if (call !== void 0) { + throw new TypeError("Derived constructors may only return object or undefined"); + } + + return _assertThisInitialized(self); + } + + function _createSuper(Derived) { + var hasNativeReflectConstruct = _isNativeReflectConstruct(); + + return function _createSuperInternal() { + var Super = _getPrototypeOf(Derived), + result; + + if (hasNativeReflectConstruct) { + var NewTarget = _getPrototypeOf(this).constructor; + + result = Reflect.construct(Super, arguments, NewTarget); + } else { + result = Super.apply(this, arguments); + } + + return _possibleConstructorReturn(this, result); + }; + } + + function _superPropBase(object, property) { + while (!Object.prototype.hasOwnProperty.call(object, property)) { + object = _getPrototypeOf(object); + if (object === null) break; + } + + return object; + } + + function _get() { + if (typeof Reflect !== "undefined" && Reflect.get) { + _get = Reflect.get.bind(); + } else { + _get = function _get(target, property, receiver) { + var base = _superPropBase(target, property); + + if (!base) return; + var desc = Object.getOwnPropertyDescriptor(base, property); + + if (desc.get) { + return desc.get.call(arguments.length < 3 ? target : receiver); + } + + return desc.value; + }; + } + + return _get.apply(this, arguments); + } + + function _unsupportedIterableToArray(o, minLen) { + if (!o) return; + if (typeof o === "string") return _arrayLikeToArray(o, minLen); + var n = Object.prototype.toString.call(o).slice(8, -1); + if (n === "Object" && o.constructor) n = o.constructor.name; + if (n === "Map" || n === "Set") return Array.from(o); + if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); + } + + function _arrayLikeToArray(arr, len) { + if (len == null || len > arr.length) len = arr.length; + + for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; + + return arr2; + } + + function _createForOfIteratorHelper(o, allowArrayLike) { + var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; + + if (!it) { + if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { + if (it) o = it; + var i = 0; + + var F = function () {}; + + return { + s: F, + n: function () { + if (i >= o.length) return { + done: true + }; + return { + done: false, + value: o[i++] + }; + }, + e: function (e) { + throw e; + }, + f: F + }; + } + + throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + + var normalCompletion = true, + didErr = false, + err; + return { + s: function () { + it = it.call(o); + }, + n: function () { + var step = it.next(); + normalCompletion = step.done; + return step; + }, + e: function (e) { + didErr = true; + err = e; + }, + f: function () { + try { + if (!normalCompletion && it.return != null) it.return(); + } finally { + if (didErr) throw err; + } + } + }; + } + + var PACKET_TYPES = Object.create(null); // no Map = no polyfill + + PACKET_TYPES["open"] = "0"; + PACKET_TYPES["close"] = "1"; + PACKET_TYPES["ping"] = "2"; + PACKET_TYPES["pong"] = "3"; + PACKET_TYPES["message"] = "4"; + PACKET_TYPES["upgrade"] = "5"; + PACKET_TYPES["noop"] = "6"; + var PACKET_TYPES_REVERSE = Object.create(null); + Object.keys(PACKET_TYPES).forEach(function (key) { + PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key; + }); + var ERROR_PACKET = { + type: "error", + data: "parser error" + }; + + var withNativeBlob$1 = typeof Blob === "function" || typeof Blob !== "undefined" && Object.prototype.toString.call(Blob) === "[object BlobConstructor]"; + var withNativeArrayBuffer$2 = typeof ArrayBuffer === "function"; // ArrayBuffer.isView method is not defined in IE10 + + var isView$1 = function isView(obj) { + return typeof ArrayBuffer.isView === "function" ? ArrayBuffer.isView(obj) : obj && obj.buffer instanceof ArrayBuffer; + }; + + var encodePacket = function encodePacket(_ref, supportsBinary, callback) { + var type = _ref.type, + data = _ref.data; + + if (withNativeBlob$1 && data instanceof Blob) { + if (supportsBinary) { + return callback(data); + } else { + return encodeBlobAsBase64(data, callback); + } + } else if (withNativeArrayBuffer$2 && (data instanceof ArrayBuffer || isView$1(data))) { + if (supportsBinary) { + return callback(data); + } else { + return encodeBlobAsBase64(new Blob([data]), callback); + } + } // plain string + + + return callback(PACKET_TYPES[type] + (data || "")); + }; + + var encodeBlobAsBase64 = function encodeBlobAsBase64(data, callback) { + var fileReader = new FileReader(); + + fileReader.onload = function () { + var content = fileReader.result.split(",")[1]; + callback("b" + content); + }; + + return fileReader.readAsDataURL(data); + }; + + var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; // Use a lookup table to find the index. + + var lookup$1 = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256); + + for (var i$1 = 0; i$1 < chars.length; i$1++) { + lookup$1[chars.charCodeAt(i$1)] = i$1; + } + var decode$1 = function decode(base64) { + var bufferLength = base64.length * 0.75, + len = base64.length, + i, + p = 0, + encoded1, + encoded2, + encoded3, + encoded4; + + if (base64[base64.length - 1] === '=') { + bufferLength--; + + if (base64[base64.length - 2] === '=') { + bufferLength--; + } + } + + var arraybuffer = new ArrayBuffer(bufferLength), + bytes = new Uint8Array(arraybuffer); + + for (i = 0; i < len; i += 4) { + encoded1 = lookup$1[base64.charCodeAt(i)]; + encoded2 = lookup$1[base64.charCodeAt(i + 1)]; + encoded3 = lookup$1[base64.charCodeAt(i + 2)]; + encoded4 = lookup$1[base64.charCodeAt(i + 3)]; + bytes[p++] = encoded1 << 2 | encoded2 >> 4; + bytes[p++] = (encoded2 & 15) << 4 | encoded3 >> 2; + bytes[p++] = (encoded3 & 3) << 6 | encoded4 & 63; + } + + return arraybuffer; + }; + + var withNativeArrayBuffer$1 = typeof ArrayBuffer === "function"; + + var decodePacket = function decodePacket(encodedPacket, binaryType) { + if (typeof encodedPacket !== "string") { + return { + type: "message", + data: mapBinary(encodedPacket, binaryType) + }; + } + + var type = encodedPacket.charAt(0); + + if (type === "b") { + return { + type: "message", + data: decodeBase64Packet(encodedPacket.substring(1), binaryType) + }; + } + + var packetType = PACKET_TYPES_REVERSE[type]; + + if (!packetType) { + return ERROR_PACKET; + } + + return encodedPacket.length > 1 ? { + type: PACKET_TYPES_REVERSE[type], + data: encodedPacket.substring(1) + } : { + type: PACKET_TYPES_REVERSE[type] + }; + }; + + var decodeBase64Packet = function decodeBase64Packet(data, binaryType) { + if (withNativeArrayBuffer$1) { + var decoded = decode$1(data); + return mapBinary(decoded, binaryType); + } else { + return { + base64: true, + data: data + }; // fallback for old browsers + } + }; + + var mapBinary = function mapBinary(data, binaryType) { + switch (binaryType) { + case "blob": + return data instanceof ArrayBuffer ? new Blob([data]) : data; + + case "arraybuffer": + default: + return data; + // assuming the data is already an ArrayBuffer + } + }; + + var SEPARATOR = String.fromCharCode(30); // see https://en.wikipedia.org/wiki/Delimiter#ASCII_delimited_text + + var encodePayload = function encodePayload(packets, callback) { + // some packets may be added to the array while encoding, so the initial length must be saved + var length = packets.length; + var encodedPackets = new Array(length); + var count = 0; + packets.forEach(function (packet, i) { + // force base64 encoding for binary packets + encodePacket(packet, false, function (encodedPacket) { + encodedPackets[i] = encodedPacket; + + if (++count === length) { + callback(encodedPackets.join(SEPARATOR)); + } + }); + }); + }; + + var decodePayload = function decodePayload(encodedPayload, binaryType) { + var encodedPackets = encodedPayload.split(SEPARATOR); + var packets = []; + + for (var i = 0; i < encodedPackets.length; i++) { + var decodedPacket = decodePacket(encodedPackets[i], binaryType); + packets.push(decodedPacket); + + if (decodedPacket.type === "error") { + break; + } + } + + return packets; + }; + + var protocol$1 = 4; + + /** + * Initialize a new `Emitter`. + * + * @api public + */ + function Emitter(obj) { + if (obj) return mixin(obj); + } + /** + * Mixin the emitter properties. + * + * @param {Object} obj + * @return {Object} + * @api private + */ + + function mixin(obj) { + for (var key in Emitter.prototype) { + obj[key] = Emitter.prototype[key]; + } + + return obj; + } + /** + * Listen on the given `event` with `fn`. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + + Emitter.prototype.on = Emitter.prototype.addEventListener = function (event, fn) { + this._callbacks = this._callbacks || {}; + (this._callbacks['$' + event] = this._callbacks['$' + event] || []).push(fn); + return this; + }; + /** + * Adds an `event` listener that will be invoked a single + * time then automatically removed. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + + Emitter.prototype.once = function (event, fn) { + function on() { + this.off(event, on); + fn.apply(this, arguments); + } + + on.fn = fn; + this.on(event, on); + return this; + }; + /** + * Remove the given callback for `event` or all + * registered callbacks. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + + Emitter.prototype.off = Emitter.prototype.removeListener = Emitter.prototype.removeAllListeners = Emitter.prototype.removeEventListener = function (event, fn) { + this._callbacks = this._callbacks || {}; // all + + if (0 == arguments.length) { + this._callbacks = {}; + return this; + } // specific event + + + var callbacks = this._callbacks['$' + event]; + if (!callbacks) return this; // remove all handlers + + if (1 == arguments.length) { + delete this._callbacks['$' + event]; + return this; + } // remove specific handler + + + var cb; + + for (var i = 0; i < callbacks.length; i++) { + cb = callbacks[i]; + + if (cb === fn || cb.fn === fn) { + callbacks.splice(i, 1); + break; + } + } // Remove event specific arrays for event types that no + // one is subscribed for to avoid memory leak. + + + if (callbacks.length === 0) { + delete this._callbacks['$' + event]; + } + + return this; + }; + /** + * Emit `event` with the given args. + * + * @param {String} event + * @param {Mixed} ... + * @return {Emitter} + */ + + + Emitter.prototype.emit = function (event) { + this._callbacks = this._callbacks || {}; + var args = new Array(arguments.length - 1), + callbacks = this._callbacks['$' + event]; + + for (var i = 1; i < arguments.length; i++) { + args[i - 1] = arguments[i]; + } + + if (callbacks) { + callbacks = callbacks.slice(0); + + for (var i = 0, len = callbacks.length; i < len; ++i) { + callbacks[i].apply(this, args); + } + } + + return this; + }; // alias used for reserved events (protected method) + + + Emitter.prototype.emitReserved = Emitter.prototype.emit; + /** + * Return array of callbacks for `event`. + * + * @param {String} event + * @return {Array} + * @api public + */ + + Emitter.prototype.listeners = function (event) { + this._callbacks = this._callbacks || {}; + return this._callbacks['$' + event] || []; + }; + /** + * Check if this emitter has `event` handlers. + * + * @param {String} event + * @return {Boolean} + * @api public + */ + + + Emitter.prototype.hasListeners = function (event) { + return !!this.listeners(event).length; + }; + + var globalThisShim = function () { + if (typeof self !== "undefined") { + return self; + } else if (typeof window !== "undefined") { + return window; + } else { + return Function("return this")(); + } + }(); + + function pick(obj) { + for (var _len = arguments.length, attr = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + attr[_key - 1] = arguments[_key]; + } + + return attr.reduce(function (acc, k) { + if (obj.hasOwnProperty(k)) { + acc[k] = obj[k]; + } + + return acc; + }, {}); + } // Keep a reference to the real timeout functions so they can be used when overridden + + var NATIVE_SET_TIMEOUT = setTimeout; + var NATIVE_CLEAR_TIMEOUT = clearTimeout; + function installTimerFunctions(obj, opts) { + if (opts.useNativeTimers) { + obj.setTimeoutFn = NATIVE_SET_TIMEOUT.bind(globalThisShim); + obj.clearTimeoutFn = NATIVE_CLEAR_TIMEOUT.bind(globalThisShim); + } else { + obj.setTimeoutFn = setTimeout.bind(globalThisShim); + obj.clearTimeoutFn = clearTimeout.bind(globalThisShim); + } + } // base64 encoded buffers are about 33% bigger (https://en.wikipedia.org/wiki/Base64) + + var BASE64_OVERHEAD = 1.33; // we could also have used `new Blob([obj]).size`, but it isn't supported in IE9 + + function byteLength(obj) { + if (typeof obj === "string") { + return utf8Length(obj); + } // arraybuffer or blob + + + return Math.ceil((obj.byteLength || obj.size) * BASE64_OVERHEAD); + } + + function utf8Length(str) { + var c = 0, + length = 0; + + for (var i = 0, l = str.length; i < l; i++) { + c = str.charCodeAt(i); + + if (c < 0x80) { + length += 1; + } else if (c < 0x800) { + length += 2; + } else if (c < 0xd800 || c >= 0xe000) { + length += 3; + } else { + i++; + length += 4; + } + } + + return length; + } + + var TransportError = /*#__PURE__*/function (_Error) { + _inherits(TransportError, _Error); + + var _super = _createSuper(TransportError); + + function TransportError(reason, description, context) { + var _this; + + _classCallCheck(this, TransportError); + + _this = _super.call(this, reason); + _this.description = description; + _this.context = context; + _this.type = "TransportError"; + return _this; + } + + return _createClass(TransportError); + }( /*#__PURE__*/_wrapNativeSuper(Error)); + + var Transport = /*#__PURE__*/function (_Emitter) { + _inherits(Transport, _Emitter); + + var _super2 = _createSuper(Transport); + + /** + * Transport abstract constructor. + * + * @param {Object} options. + * @api private + */ + function Transport(opts) { + var _this2; + + _classCallCheck(this, Transport); + + _this2 = _super2.call(this); + _this2.writable = false; + installTimerFunctions(_assertThisInitialized(_this2), opts); + _this2.opts = opts; + _this2.query = opts.query; + _this2.readyState = ""; + _this2.socket = opts.socket; + return _this2; + } + /** + * Emits an error. + * + * @param {String} reason + * @param description + * @param context - the error context + * @return {Transport} for chaining + * @api protected + */ + + + _createClass(Transport, [{ + key: "onError", + value: function onError(reason, description, context) { + _get(_getPrototypeOf(Transport.prototype), "emitReserved", this).call(this, "error", new TransportError(reason, description, context)); + + return this; + } + /** + * Opens the transport. + * + * @api public + */ + + }, { + key: "open", + value: function open() { + if ("closed" === this.readyState || "" === this.readyState) { + this.readyState = "opening"; + this.doOpen(); + } + + return this; + } + /** + * Closes the transport. + * + * @api public + */ + + }, { + key: "close", + value: function close() { + if ("opening" === this.readyState || "open" === this.readyState) { + this.doClose(); + this.onClose(); + } + + return this; + } + /** + * Sends multiple packets. + * + * @param {Array} packets + * @api public + */ + + }, { + key: "send", + value: function send(packets) { + if ("open" === this.readyState) { + this.write(packets); + } + } + /** + * Called upon open + * + * @api protected + */ + + }, { + key: "onOpen", + value: function onOpen() { + this.readyState = "open"; + this.writable = true; + + _get(_getPrototypeOf(Transport.prototype), "emitReserved", this).call(this, "open"); + } + /** + * Called with data. + * + * @param {String} data + * @api protected + */ + + }, { + key: "onData", + value: function onData(data) { + var packet = decodePacket(data, this.socket.binaryType); + this.onPacket(packet); + } + /** + * Called with a decoded packet. + * + * @api protected + */ + + }, { + key: "onPacket", + value: function onPacket(packet) { + _get(_getPrototypeOf(Transport.prototype), "emitReserved", this).call(this, "packet", packet); + } + /** + * Called upon close. + * + * @api protected + */ + + }, { + key: "onClose", + value: function onClose(details) { + this.readyState = "closed"; + + _get(_getPrototypeOf(Transport.prototype), "emitReserved", this).call(this, "close", details); + } + }]); + + return Transport; + }(Emitter); + + // imported from https://github.com/unshiftio/yeast + + var alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'.split(''), + length = 64, + map = {}; + var seed = 0, + i = 0, + prev; + /** + * Return a string representing the specified number. + * + * @param {Number} num The number to convert. + * @returns {String} The string representation of the number. + * @api public + */ + + function encode$1(num) { + var encoded = ''; + + do { + encoded = alphabet[num % length] + encoded; + num = Math.floor(num / length); + } while (num > 0); + + return encoded; + } + /** + * Yeast: A tiny growing id generator. + * + * @returns {String} A unique id. + * @api public + */ + + function yeast() { + var now = encode$1(+new Date()); + if (now !== prev) return seed = 0, prev = now; + return now + '.' + encode$1(seed++); + } // + // Map each character to its index. + // + + for (; i < length; i++) { + map[alphabet[i]] = i; + } + + // imported from https://github.com/galkn/querystring + + /** + * Compiles a querystring + * Returns string representation of the object + * + * @param {Object} + * @api private + */ + function encode(obj) { + var str = ''; + + for (var i in obj) { + if (obj.hasOwnProperty(i)) { + if (str.length) str += '&'; + str += encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]); + } + } + + return str; + } + /** + * Parses a simple querystring into an object + * + * @param {String} qs + * @api private + */ + + function decode(qs) { + var qry = {}; + var pairs = qs.split('&'); + + for (var i = 0, l = pairs.length; i < l; i++) { + var pair = pairs[i].split('='); + qry[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]); + } + + return qry; + } + + // imported from https://github.com/component/has-cors + var value = false; + + try { + value = typeof XMLHttpRequest !== 'undefined' && 'withCredentials' in new XMLHttpRequest(); + } catch (err) {// if XMLHttp support is disabled in IE then it will throw + // when trying to create + } + + var hasCORS = value; + + // browser shim for xmlhttprequest module + function XHR(opts) { + var xdomain = opts.xdomain; // XMLHttpRequest can be disabled on IE + + try { + if ("undefined" !== typeof XMLHttpRequest && (!xdomain || hasCORS)) { + return new XMLHttpRequest(); + } + } catch (e) {} + + if (!xdomain) { + try { + return new globalThisShim[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP"); + } catch (e) {} + } + } + + function empty() {} + + var hasXHR2 = function () { + var xhr = new XHR({ + xdomain: false + }); + return null != xhr.responseType; + }(); + + var Polling = /*#__PURE__*/function (_Transport) { + _inherits(Polling, _Transport); + + var _super = _createSuper(Polling); + + /** + * XHR Polling constructor. + * + * @param {Object} opts + * @api public + */ + function Polling(opts) { + var _this; + + _classCallCheck(this, Polling); + + _this = _super.call(this, opts); + _this.polling = false; + + if (typeof location !== "undefined") { + var isSSL = "https:" === location.protocol; + var port = location.port; // some user agents have empty `location.port` + + if (!port) { + port = isSSL ? "443" : "80"; + } + + _this.xd = typeof location !== "undefined" && opts.hostname !== location.hostname || port !== opts.port; + _this.xs = opts.secure !== isSSL; + } + /** + * XHR supports binary + */ + + + var forceBase64 = opts && opts.forceBase64; + _this.supportsBinary = hasXHR2 && !forceBase64; + return _this; + } + /** + * Transport name. + */ + + + _createClass(Polling, [{ + key: "name", + get: function get() { + return "polling"; + } + /** + * Opens the socket (triggers polling). We write a PING message to determine + * when the transport is open. + * + * @api private + */ + + }, { + key: "doOpen", + value: function doOpen() { + this.poll(); + } + /** + * Pauses polling. + * + * @param {Function} callback upon buffers are flushed and transport is paused + * @api private + */ + + }, { + key: "pause", + value: function pause(onPause) { + var _this2 = this; + + this.readyState = "pausing"; + + var pause = function pause() { + _this2.readyState = "paused"; + onPause(); + }; + + if (this.polling || !this.writable) { + var total = 0; + + if (this.polling) { + total++; + this.once("pollComplete", function () { + --total || pause(); + }); + } + + if (!this.writable) { + total++; + this.once("drain", function () { + --total || pause(); + }); + } + } else { + pause(); + } + } + /** + * Starts polling cycle. + * + * @api public + */ + + }, { + key: "poll", + value: function poll() { + this.polling = true; + this.doPoll(); + this.emitReserved("poll"); + } + /** + * Overloads onData to detect payloads. + * + * @api private + */ + + }, { + key: "onData", + value: function onData(data) { + var _this3 = this; + + var callback = function callback(packet) { + // if its the first message we consider the transport open + if ("opening" === _this3.readyState && packet.type === "open") { + _this3.onOpen(); + } // if its a close packet, we close the ongoing requests + + + if ("close" === packet.type) { + _this3.onClose({ + description: "transport closed by the server" + }); + + return false; + } // otherwise bypass onData and handle the message + + + _this3.onPacket(packet); + }; // decode payload + + + decodePayload(data, this.socket.binaryType).forEach(callback); // if an event did not trigger closing + + if ("closed" !== this.readyState) { + // if we got data we're not polling + this.polling = false; + this.emitReserved("pollComplete"); + + if ("open" === this.readyState) { + this.poll(); + } + } + } + /** + * For polling, send a close packet. + * + * @api private + */ + + }, { + key: "doClose", + value: function doClose() { + var _this4 = this; + + var close = function close() { + _this4.write([{ + type: "close" + }]); + }; + + if ("open" === this.readyState) { + close(); + } else { + // in case we're trying to close while + // handshaking is in progress (GH-164) + this.once("open", close); + } + } + /** + * Writes a packets payload. + * + * @param {Array} data packets + * @param {Function} drain callback + * @api private + */ + + }, { + key: "write", + value: function write(packets) { + var _this5 = this; + + this.writable = false; + encodePayload(packets, function (data) { + _this5.doWrite(data, function () { + _this5.writable = true; + + _this5.emitReserved("drain"); + }); + }); + } + /** + * Generates uri for connection. + * + * @api private + */ + + }, { + key: "uri", + value: function uri() { + var query = this.query || {}; + var schema = this.opts.secure ? "https" : "http"; + var port = ""; // cache busting is forced + + if (false !== this.opts.timestampRequests) { + query[this.opts.timestampParam] = yeast(); + } + + if (!this.supportsBinary && !query.sid) { + query.b64 = 1; + } // avoid port if default for schema + + + if (this.opts.port && ("https" === schema && Number(this.opts.port) !== 443 || "http" === schema && Number(this.opts.port) !== 80)) { + port = ":" + this.opts.port; + } + + var encodedQuery = encode(query); + var ipv6 = this.opts.hostname.indexOf(":") !== -1; + return schema + "://" + (ipv6 ? "[" + this.opts.hostname + "]" : this.opts.hostname) + port + this.opts.path + (encodedQuery.length ? "?" + encodedQuery : ""); + } + /** + * Creates a request. + * + * @param {String} method + * @api private + */ + + }, { + key: "request", + value: function request() { + var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + + _extends(opts, { + xd: this.xd, + xs: this.xs + }, this.opts); + + return new Request(this.uri(), opts); + } + /** + * Sends data. + * + * @param {String} data to send. + * @param {Function} called upon flush. + * @api private + */ + + }, { + key: "doWrite", + value: function doWrite(data, fn) { + var _this6 = this; + + var req = this.request({ + method: "POST", + data: data + }); + req.on("success", fn); + req.on("error", function (xhrStatus, context) { + _this6.onError("xhr post error", xhrStatus, context); + }); + } + /** + * Starts a poll cycle. + * + * @api private + */ + + }, { + key: "doPoll", + value: function doPoll() { + var _this7 = this; + + var req = this.request(); + req.on("data", this.onData.bind(this)); + req.on("error", function (xhrStatus, context) { + _this7.onError("xhr poll error", xhrStatus, context); + }); + this.pollXhr = req; + } + }]); + + return Polling; + }(Transport); + var Request = /*#__PURE__*/function (_Emitter) { + _inherits(Request, _Emitter); + + var _super2 = _createSuper(Request); + + /** + * Request constructor + * + * @param {Object} options + * @api public + */ + function Request(uri, opts) { + var _this8; + + _classCallCheck(this, Request); + + _this8 = _super2.call(this); + installTimerFunctions(_assertThisInitialized(_this8), opts); + _this8.opts = opts; + _this8.method = opts.method || "GET"; + _this8.uri = uri; + _this8.async = false !== opts.async; + _this8.data = undefined !== opts.data ? opts.data : null; + + _this8.create(); + + return _this8; + } + /** + * Creates the XHR object and sends the request. + * + * @api private + */ + + + _createClass(Request, [{ + key: "create", + value: function create() { + var _this9 = this; + + var opts = pick(this.opts, "agent", "pfx", "key", "passphrase", "cert", "ca", "ciphers", "rejectUnauthorized", "autoUnref"); + opts.xdomain = !!this.opts.xd; + opts.xscheme = !!this.opts.xs; + var xhr = this.xhr = new XHR(opts); + + try { + xhr.open(this.method, this.uri, this.async); + + try { + if (this.opts.extraHeaders) { + xhr.setDisableHeaderCheck && xhr.setDisableHeaderCheck(true); + + for (var i in this.opts.extraHeaders) { + if (this.opts.extraHeaders.hasOwnProperty(i)) { + xhr.setRequestHeader(i, this.opts.extraHeaders[i]); + } + } + } + } catch (e) {} + + if ("POST" === this.method) { + try { + xhr.setRequestHeader("Content-type", "text/plain;charset=UTF-8"); + } catch (e) {} + } + + try { + xhr.setRequestHeader("Accept", "*/*"); + } catch (e) {} // ie6 check + + + if ("withCredentials" in xhr) { + xhr.withCredentials = this.opts.withCredentials; + } + + if (this.opts.requestTimeout) { + xhr.timeout = this.opts.requestTimeout; + } + + xhr.onreadystatechange = function () { + if (4 !== xhr.readyState) return; + + if (200 === xhr.status || 1223 === xhr.status) { + _this9.onLoad(); + } else { + // make sure the `error` event handler that's user-set + // does not throw in the same tick and gets caught here + _this9.setTimeoutFn(function () { + _this9.onError(typeof xhr.status === "number" ? xhr.status : 0); + }, 0); + } + }; + + xhr.send(this.data); + } catch (e) { + // Need to defer since .create() is called directly from the constructor + // and thus the 'error' event can only be only bound *after* this exception + // occurs. Therefore, also, we cannot throw here at all. + this.setTimeoutFn(function () { + _this9.onError(e); + }, 0); + return; + } + + if (typeof document !== "undefined") { + this.index = Request.requestsCount++; + Request.requests[this.index] = this; + } + } + /** + * Called upon error. + * + * @api private + */ + + }, { + key: "onError", + value: function onError(err) { + this.emitReserved("error", err, this.xhr); + this.cleanup(true); + } + /** + * Cleans up house. + * + * @api private + */ + + }, { + key: "cleanup", + value: function cleanup(fromError) { + if ("undefined" === typeof this.xhr || null === this.xhr) { + return; + } + + this.xhr.onreadystatechange = empty; + + if (fromError) { + try { + this.xhr.abort(); + } catch (e) {} + } + + if (typeof document !== "undefined") { + delete Request.requests[this.index]; + } + + this.xhr = null; + } + /** + * Called upon load. + * + * @api private + */ + + }, { + key: "onLoad", + value: function onLoad() { + var data = this.xhr.responseText; + + if (data !== null) { + this.emitReserved("data", data); + this.emitReserved("success"); + this.cleanup(); + } + } + /** + * Aborts the request. + * + * @api public + */ + + }, { + key: "abort", + value: function abort() { + this.cleanup(); + } + }]); + + return Request; + }(Emitter); + Request.requestsCount = 0; + Request.requests = {}; + /** + * Aborts pending requests when unloading the window. This is needed to prevent + * memory leaks (e.g. when using IE) and to ensure that no spurious error is + * emitted. + */ + + if (typeof document !== "undefined") { + // @ts-ignore + if (typeof attachEvent === "function") { + // @ts-ignore + attachEvent("onunload", unloadHandler); + } else if (typeof addEventListener === "function") { + var terminationEvent = "onpagehide" in globalThisShim ? "pagehide" : "unload"; + addEventListener(terminationEvent, unloadHandler, false); + } + } + + function unloadHandler() { + for (var i in Request.requests) { + if (Request.requests.hasOwnProperty(i)) { + Request.requests[i].abort(); + } + } + } + + var nextTick = function () { + var isPromiseAvailable = typeof Promise === "function" && typeof Promise.resolve === "function"; + + if (isPromiseAvailable) { + return function (cb) { + return Promise.resolve().then(cb); + }; + } else { + return function (cb, setTimeoutFn) { + return setTimeoutFn(cb, 0); + }; + } + }(); + var WebSocket = globalThisShim.WebSocket || globalThisShim.MozWebSocket; + var usingBrowserWebSocket = true; + var defaultBinaryType = "arraybuffer"; + + var isReactNative = typeof navigator !== "undefined" && typeof navigator.product === "string" && navigator.product.toLowerCase() === "reactnative"; + var WS = /*#__PURE__*/function (_Transport) { + _inherits(WS, _Transport); + + var _super = _createSuper(WS); + + /** + * WebSocket transport constructor. + * + * @api {Object} connection options + * @api public + */ + function WS(opts) { + var _this; + + _classCallCheck(this, WS); + + _this = _super.call(this, opts); + _this.supportsBinary = !opts.forceBase64; + return _this; + } + /** + * Transport name. + * + * @api public + */ + + + _createClass(WS, [{ + key: "name", + get: function get() { + return "websocket"; + } + /** + * Opens socket. + * + * @api private + */ + + }, { + key: "doOpen", + value: function doOpen() { + if (!this.check()) { + // let probe timeout + return; + } + + var uri = this.uri(); + var protocols = this.opts.protocols; // React Native only supports the 'headers' option, and will print a warning if anything else is passed + + var opts = isReactNative ? {} : pick(this.opts, "agent", "perMessageDeflate", "pfx", "key", "passphrase", "cert", "ca", "ciphers", "rejectUnauthorized", "localAddress", "protocolVersion", "origin", "maxPayload", "family", "checkServerIdentity"); + + if (this.opts.extraHeaders) { + opts.headers = this.opts.extraHeaders; + } + + try { + this.ws = usingBrowserWebSocket && !isReactNative ? protocols ? new WebSocket(uri, protocols) : new WebSocket(uri) : new WebSocket(uri, protocols, opts); + } catch (err) { + return this.emitReserved("error", err); + } + + this.ws.binaryType = this.socket.binaryType || defaultBinaryType; + this.addEventListeners(); + } + /** + * Adds event listeners to the socket + * + * @api private + */ + + }, { + key: "addEventListeners", + value: function addEventListeners() { + var _this2 = this; + + this.ws.onopen = function () { + if (_this2.opts.autoUnref) { + _this2.ws._socket.unref(); + } + + _this2.onOpen(); + }; + + this.ws.onclose = function (closeEvent) { + return _this2.onClose({ + description: "websocket connection closed", + context: closeEvent + }); + }; + + this.ws.onmessage = function (ev) { + return _this2.onData(ev.data); + }; + + this.ws.onerror = function (e) { + return _this2.onError("websocket error", e); + }; + } + /** + * Writes data to socket. + * + * @param {Array} array of packets. + * @api private + */ + + }, { + key: "write", + value: function write(packets) { + var _this3 = this; + + this.writable = false; // encodePacket efficient as it uses WS framing + // no need for encodePayload + + var _loop = function _loop(i) { + var packet = packets[i]; + var lastPacket = i === packets.length - 1; + encodePacket(packet, _this3.supportsBinary, function (data) { + // always create a new object (GH-437) + var opts = {}; + // have a chance of informing us about it yet, in that case send will + // throw an error + + + try { + if (usingBrowserWebSocket) { + // TypeError is thrown when passing the second argument on Safari + _this3.ws.send(data); + } + } catch (e) {} + + if (lastPacket) { + // fake drain + // defer to next tick to allow Socket to clear writeBuffer + nextTick(function () { + _this3.writable = true; + + _this3.emitReserved("drain"); + }, _this3.setTimeoutFn); + } + }); + }; + + for (var i = 0; i < packets.length; i++) { + _loop(i); + } + } + /** + * Closes socket. + * + * @api private + */ + + }, { + key: "doClose", + value: function doClose() { + if (typeof this.ws !== "undefined") { + this.ws.close(); + this.ws = null; + } + } + /** + * Generates uri for connection. + * + * @api private + */ + + }, { + key: "uri", + value: function uri() { + var query = this.query || {}; + var schema = this.opts.secure ? "wss" : "ws"; + var port = ""; // avoid port if default for schema + + if (this.opts.port && ("wss" === schema && Number(this.opts.port) !== 443 || "ws" === schema && Number(this.opts.port) !== 80)) { + port = ":" + this.opts.port; + } // append timestamp to URI + + + if (this.opts.timestampRequests) { + query[this.opts.timestampParam] = yeast(); + } // communicate binary support capabilities + + + if (!this.supportsBinary) { + query.b64 = 1; + } + + var encodedQuery = encode(query); + var ipv6 = this.opts.hostname.indexOf(":") !== -1; + return schema + "://" + (ipv6 ? "[" + this.opts.hostname + "]" : this.opts.hostname) + port + this.opts.path + (encodedQuery.length ? "?" + encodedQuery : ""); + } + /** + * Feature detection for WebSocket. + * + * @return {Boolean} whether this transport is available. + * @api public + */ + + }, { + key: "check", + value: function check() { + return !!WebSocket; + } + }]); + + return WS; + }(Transport); + + var transports = { + websocket: WS, + polling: Polling + }; + + // imported from https://github.com/galkn/parseuri + + /** + * Parses an URI + * + * @author Steven Levithan (MIT license) + * @api private + */ + var re = /^(?:(?![^:@]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/; + var parts = ['source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor']; + function parse(str) { + var src = str, + b = str.indexOf('['), + e = str.indexOf(']'); + + if (b != -1 && e != -1) { + str = str.substring(0, b) + str.substring(b, e).replace(/:/g, ';') + str.substring(e, str.length); + } + + var m = re.exec(str || ''), + uri = {}, + i = 14; + + while (i--) { + uri[parts[i]] = m[i] || ''; + } + + if (b != -1 && e != -1) { + uri.source = src; + uri.host = uri.host.substring(1, uri.host.length - 1).replace(/;/g, ':'); + uri.authority = uri.authority.replace('[', '').replace(']', '').replace(/;/g, ':'); + uri.ipv6uri = true; + } + + uri.pathNames = pathNames(uri, uri['path']); + uri.queryKey = queryKey(uri, uri['query']); + return uri; + } + + function pathNames(obj, path) { + var regx = /\/{2,9}/g, + names = path.replace(regx, "/").split("/"); + + if (path.slice(0, 1) == '/' || path.length === 0) { + names.splice(0, 1); + } + + if (path.slice(-1) == '/') { + names.splice(names.length - 1, 1); + } + + return names; + } + + function queryKey(uri, query) { + var data = {}; + query.replace(/(?:^|&)([^&=]*)=?([^&]*)/g, function ($0, $1, $2) { + if ($1) { + data[$1] = $2; + } + }); + return data; + } + + var Socket$1 = /*#__PURE__*/function (_Emitter) { + _inherits(Socket, _Emitter); + + var _super = _createSuper(Socket); + + /** + * Socket constructor. + * + * @param {String|Object} uri or options + * @param {Object} opts - options + * @api public + */ + function Socket(uri) { + var _this; + + var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + _classCallCheck(this, Socket); + + _this = _super.call(this); + + if (uri && "object" === _typeof(uri)) { + opts = uri; + uri = null; + } + + if (uri) { + uri = parse(uri); + opts.hostname = uri.host; + opts.secure = uri.protocol === "https" || uri.protocol === "wss"; + opts.port = uri.port; + if (uri.query) opts.query = uri.query; + } else if (opts.host) { + opts.hostname = parse(opts.host).host; + } + + installTimerFunctions(_assertThisInitialized(_this), opts); + _this.secure = null != opts.secure ? opts.secure : typeof location !== "undefined" && "https:" === location.protocol; + + if (opts.hostname && !opts.port) { + // if no port is specified manually, use the protocol default + opts.port = _this.secure ? "443" : "80"; + } + + _this.hostname = opts.hostname || (typeof location !== "undefined" ? location.hostname : "localhost"); + _this.port = opts.port || (typeof location !== "undefined" && location.port ? location.port : _this.secure ? "443" : "80"); + _this.transports = opts.transports || ["polling", "websocket"]; + _this.readyState = ""; + _this.writeBuffer = []; + _this.prevBufferLen = 0; + _this.opts = _extends({ + path: "/engine.io", + agent: false, + withCredentials: false, + upgrade: true, + timestampParam: "t", + rememberUpgrade: false, + rejectUnauthorized: true, + perMessageDeflate: { + threshold: 1024 + }, + transportOptions: {}, + closeOnBeforeunload: true + }, opts); + _this.opts.path = _this.opts.path.replace(/\/$/, "") + "/"; + + if (typeof _this.opts.query === "string") { + _this.opts.query = decode(_this.opts.query); + } // set on handshake + + + _this.id = null; + _this.upgrades = null; + _this.pingInterval = null; + _this.pingTimeout = null; // set on heartbeat + + _this.pingTimeoutTimer = null; + + if (typeof addEventListener === "function") { + if (_this.opts.closeOnBeforeunload) { + // Firefox closes the connection when the "beforeunload" event is emitted but not Chrome. This event listener + // ensures every browser behaves the same (no "disconnect" event at the Socket.IO level when the page is + // closed/reloaded) + _this.beforeunloadEventListener = function () { + if (_this.transport) { + // silently close the transport + _this.transport.removeAllListeners(); + + _this.transport.close(); + } + }; + + addEventListener("beforeunload", _this.beforeunloadEventListener, false); + } + + if (_this.hostname !== "localhost") { + _this.offlineEventListener = function () { + _this.onClose("transport close", { + description: "network connection lost" + }); + }; + + addEventListener("offline", _this.offlineEventListener, false); + } + } + + _this.open(); + + return _this; + } + /** + * Creates transport of the given type. + * + * @param {String} transport name + * @return {Transport} + * @api private + */ + + + _createClass(Socket, [{ + key: "createTransport", + value: function createTransport(name) { + var query = _extends({}, this.opts.query); // append engine.io protocol identifier + + + query.EIO = protocol$1; // transport name + + query.transport = name; // session id if we already have one + + if (this.id) query.sid = this.id; + + var opts = _extends({}, this.opts.transportOptions[name], this.opts, { + query: query, + socket: this, + hostname: this.hostname, + secure: this.secure, + port: this.port + }); + + return new transports[name](opts); + } + /** + * Initializes transport to use and starts probe. + * + * @api private + */ + + }, { + key: "open", + value: function open() { + var _this2 = this; + + var transport; + + if (this.opts.rememberUpgrade && Socket.priorWebsocketSuccess && this.transports.indexOf("websocket") !== -1) { + transport = "websocket"; + } else if (0 === this.transports.length) { + // Emit error on next tick so it can be listened to + this.setTimeoutFn(function () { + _this2.emitReserved("error", "No transports available"); + }, 0); + return; + } else { + transport = this.transports[0]; + } + + this.readyState = "opening"; // Retry with the next transport if the transport is disabled (jsonp: false) + + try { + transport = this.createTransport(transport); + } catch (e) { + this.transports.shift(); + this.open(); + return; + } + + transport.open(); + this.setTransport(transport); + } + /** + * Sets the current transport. Disables the existing one (if any). + * + * @api private + */ + + }, { + key: "setTransport", + value: function setTransport(transport) { + var _this3 = this; + + if (this.transport) { + this.transport.removeAllListeners(); + } // set up transport + + + this.transport = transport; // set up transport listeners + + transport.on("drain", this.onDrain.bind(this)).on("packet", this.onPacket.bind(this)).on("error", this.onError.bind(this)).on("close", function (reason) { + return _this3.onClose("transport close", reason); + }); + } + /** + * Probes a transport. + * + * @param {String} transport name + * @api private + */ + + }, { + key: "probe", + value: function probe(name) { + var _this4 = this; + + var transport = this.createTransport(name); + var failed = false; + Socket.priorWebsocketSuccess = false; + + var onTransportOpen = function onTransportOpen() { + if (failed) return; + transport.send([{ + type: "ping", + data: "probe" + }]); + transport.once("packet", function (msg) { + if (failed) return; + + if ("pong" === msg.type && "probe" === msg.data) { + _this4.upgrading = true; + + _this4.emitReserved("upgrading", transport); + + if (!transport) return; + Socket.priorWebsocketSuccess = "websocket" === transport.name; + + _this4.transport.pause(function () { + if (failed) return; + if ("closed" === _this4.readyState) return; + cleanup(); + + _this4.setTransport(transport); + + transport.send([{ + type: "upgrade" + }]); + + _this4.emitReserved("upgrade", transport); + + transport = null; + _this4.upgrading = false; + + _this4.flush(); + }); + } else { + var err = new Error("probe error"); // @ts-ignore + + err.transport = transport.name; + + _this4.emitReserved("upgradeError", err); + } + }); + }; + + function freezeTransport() { + if (failed) return; // Any callback called by transport should be ignored since now + + failed = true; + cleanup(); + transport.close(); + transport = null; + } // Handle any error that happens while probing + + + var onerror = function onerror(err) { + var error = new Error("probe error: " + err); // @ts-ignore + + error.transport = transport.name; + freezeTransport(); + + _this4.emitReserved("upgradeError", error); + }; + + function onTransportClose() { + onerror("transport closed"); + } // When the socket is closed while we're probing + + + function onclose() { + onerror("socket closed"); + } // When the socket is upgraded while we're probing + + + function onupgrade(to) { + if (transport && to.name !== transport.name) { + freezeTransport(); + } + } // Remove all listeners on the transport and on self + + + var cleanup = function cleanup() { + transport.removeListener("open", onTransportOpen); + transport.removeListener("error", onerror); + transport.removeListener("close", onTransportClose); + + _this4.off("close", onclose); + + _this4.off("upgrading", onupgrade); + }; + + transport.once("open", onTransportOpen); + transport.once("error", onerror); + transport.once("close", onTransportClose); + this.once("close", onclose); + this.once("upgrading", onupgrade); + transport.open(); + } + /** + * Called when connection is deemed open. + * + * @api private + */ + + }, { + key: "onOpen", + value: function onOpen() { + this.readyState = "open"; + Socket.priorWebsocketSuccess = "websocket" === this.transport.name; + this.emitReserved("open"); + this.flush(); // we check for `readyState` in case an `open` + // listener already closed the socket + + if ("open" === this.readyState && this.opts.upgrade && this.transport.pause) { + var i = 0; + var l = this.upgrades.length; + + for (; i < l; i++) { + this.probe(this.upgrades[i]); + } + } + } + /** + * Handles a packet. + * + * @api private + */ + + }, { + key: "onPacket", + value: function onPacket(packet) { + if ("opening" === this.readyState || "open" === this.readyState || "closing" === this.readyState) { + this.emitReserved("packet", packet); // Socket is live - any packet counts + + this.emitReserved("heartbeat"); + + switch (packet.type) { + case "open": + this.onHandshake(JSON.parse(packet.data)); + break; + + case "ping": + this.resetPingTimeout(); + this.sendPacket("pong"); + this.emitReserved("ping"); + this.emitReserved("pong"); + break; + + case "error": + var err = new Error("server error"); // @ts-ignore + + err.code = packet.data; + this.onError(err); + break; + + case "message": + this.emitReserved("data", packet.data); + this.emitReserved("message", packet.data); + break; + } + } + } + /** + * Called upon handshake completion. + * + * @param {Object} data - handshake obj + * @api private + */ + + }, { + key: "onHandshake", + value: function onHandshake(data) { + this.emitReserved("handshake", data); + this.id = data.sid; + this.transport.query.sid = data.sid; + this.upgrades = this.filterUpgrades(data.upgrades); + this.pingInterval = data.pingInterval; + this.pingTimeout = data.pingTimeout; + this.maxPayload = data.maxPayload; + this.onOpen(); // In case open handler closes socket + + if ("closed" === this.readyState) return; + this.resetPingTimeout(); + } + /** + * Sets and resets ping timeout timer based on server pings. + * + * @api private + */ + + }, { + key: "resetPingTimeout", + value: function resetPingTimeout() { + var _this5 = this; + + this.clearTimeoutFn(this.pingTimeoutTimer); + this.pingTimeoutTimer = this.setTimeoutFn(function () { + _this5.onClose("ping timeout"); + }, this.pingInterval + this.pingTimeout); + + if (this.opts.autoUnref) { + this.pingTimeoutTimer.unref(); + } + } + /** + * Called on `drain` event + * + * @api private + */ + + }, { + key: "onDrain", + value: function onDrain() { + this.writeBuffer.splice(0, this.prevBufferLen); // setting prevBufferLen = 0 is very important + // for example, when upgrading, upgrade packet is sent over, + // and a nonzero prevBufferLen could cause problems on `drain` + + this.prevBufferLen = 0; + + if (0 === this.writeBuffer.length) { + this.emitReserved("drain"); + } else { + this.flush(); + } + } + /** + * Flush write buffers. + * + * @api private + */ + + }, { + key: "flush", + value: function flush() { + if ("closed" !== this.readyState && this.transport.writable && !this.upgrading && this.writeBuffer.length) { + var packets = this.getWritablePackets(); + this.transport.send(packets); // keep track of current length of writeBuffer + // splice writeBuffer and callbackBuffer on `drain` + + this.prevBufferLen = packets.length; + this.emitReserved("flush"); + } + } + /** + * Ensure the encoded size of the writeBuffer is below the maxPayload value sent by the server (only for HTTP + * long-polling) + * + * @private + */ + + }, { + key: "getWritablePackets", + value: function getWritablePackets() { + var shouldCheckPayloadSize = this.maxPayload && this.transport.name === "polling" && this.writeBuffer.length > 1; + + if (!shouldCheckPayloadSize) { + return this.writeBuffer; + } + + var payloadSize = 1; // first packet type + + for (var i = 0; i < this.writeBuffer.length; i++) { + var data = this.writeBuffer[i].data; + + if (data) { + payloadSize += byteLength(data); + } + + if (i > 0 && payloadSize > this.maxPayload) { + return this.writeBuffer.slice(0, i); + } + + payloadSize += 2; // separator + packet type + } + + return this.writeBuffer; + } + /** + * Sends a message. + * + * @param {String} message. + * @param {Function} callback function. + * @param {Object} options. + * @return {Socket} for chaining. + * @api public + */ + + }, { + key: "write", + value: function write(msg, options, fn) { + this.sendPacket("message", msg, options, fn); + return this; + } + }, { + key: "send", + value: function send(msg, options, fn) { + this.sendPacket("message", msg, options, fn); + return this; + } + /** + * Sends a packet. + * + * @param {String} packet type. + * @param {String} data. + * @param {Object} options. + * @param {Function} callback function. + * @api private + */ + + }, { + key: "sendPacket", + value: function sendPacket(type, data, options, fn) { + if ("function" === typeof data) { + fn = data; + data = undefined; + } + + if ("function" === typeof options) { + fn = options; + options = null; + } + + if ("closing" === this.readyState || "closed" === this.readyState) { + return; + } + + options = options || {}; + options.compress = false !== options.compress; + var packet = { + type: type, + data: data, + options: options + }; + this.emitReserved("packetCreate", packet); + this.writeBuffer.push(packet); + if (fn) this.once("flush", fn); + this.flush(); + } + /** + * Closes the connection. + * + * @api public + */ + + }, { + key: "close", + value: function close() { + var _this6 = this; + + var close = function close() { + _this6.onClose("forced close"); + + _this6.transport.close(); + }; + + var cleanupAndClose = function cleanupAndClose() { + _this6.off("upgrade", cleanupAndClose); + + _this6.off("upgradeError", cleanupAndClose); + + close(); + }; + + var waitForUpgrade = function waitForUpgrade() { + // wait for upgrade to finish since we can't send packets while pausing a transport + _this6.once("upgrade", cleanupAndClose); + + _this6.once("upgradeError", cleanupAndClose); + }; + + if ("opening" === this.readyState || "open" === this.readyState) { + this.readyState = "closing"; + + if (this.writeBuffer.length) { + this.once("drain", function () { + if (_this6.upgrading) { + waitForUpgrade(); + } else { + close(); + } + }); + } else if (this.upgrading) { + waitForUpgrade(); + } else { + close(); + } + } + + return this; + } + /** + * Called upon transport error + * + * @api private + */ + + }, { + key: "onError", + value: function onError(err) { + Socket.priorWebsocketSuccess = false; + this.emitReserved("error", err); + this.onClose("transport error", err); + } + /** + * Called upon transport close. + * + * @api private + */ + + }, { + key: "onClose", + value: function onClose(reason, description) { + if ("opening" === this.readyState || "open" === this.readyState || "closing" === this.readyState) { + // clear timers + this.clearTimeoutFn(this.pingTimeoutTimer); // stop event from firing again for transport + + this.transport.removeAllListeners("close"); // ensure transport won't stay open + + this.transport.close(); // ignore further transport communication + + this.transport.removeAllListeners(); + + if (typeof removeEventListener === "function") { + removeEventListener("beforeunload", this.beforeunloadEventListener, false); + removeEventListener("offline", this.offlineEventListener, false); + } // set ready state + + + this.readyState = "closed"; // clear session id + + this.id = null; // emit close event + + this.emitReserved("close", reason, description); // clean buffers after, so users can still + // grab the buffers on `close` event + + this.writeBuffer = []; + this.prevBufferLen = 0; + } + } + /** + * Filters upgrades, returning only those matching client transports. + * + * @param {Array} server upgrades + * @api private + * + */ + + }, { + key: "filterUpgrades", + value: function filterUpgrades(upgrades) { + var filteredUpgrades = []; + var i = 0; + var j = upgrades.length; + + for (; i < j; i++) { + if (~this.transports.indexOf(upgrades[i])) filteredUpgrades.push(upgrades[i]); + } + + return filteredUpgrades; + } + }]); + + return Socket; + }(Emitter); + Socket$1.protocol = protocol$1; + + Socket$1.protocol; + + /** + * URL parser. + * + * @param uri - url + * @param path - the request path of the connection + * @param loc - An object meant to mimic window.location. + * Defaults to window.location. + * @public + */ + + function url(uri) { + var path = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ""; + var loc = arguments.length > 2 ? arguments[2] : undefined; + var obj = uri; // default to window.location + + loc = loc || typeof location !== "undefined" && location; + if (null == uri) uri = loc.protocol + "//" + loc.host; // relative path support + + if (typeof uri === "string") { + if ("/" === uri.charAt(0)) { + if ("/" === uri.charAt(1)) { + uri = loc.protocol + uri; + } else { + uri = loc.host + uri; + } + } + + if (!/^(https?|wss?):\/\//.test(uri)) { + if ("undefined" !== typeof loc) { + uri = loc.protocol + "//" + uri; + } else { + uri = "https://" + uri; + } + } // parse + + + obj = parse(uri); + } // make sure we treat `localhost:80` and `localhost` equally + + + if (!obj.port) { + if (/^(http|ws)$/.test(obj.protocol)) { + obj.port = "80"; + } else if (/^(http|ws)s$/.test(obj.protocol)) { + obj.port = "443"; + } + } + + obj.path = obj.path || "/"; + var ipv6 = obj.host.indexOf(":") !== -1; + var host = ipv6 ? "[" + obj.host + "]" : obj.host; // define unique id + + obj.id = obj.protocol + "://" + host + ":" + obj.port + path; // define href + + obj.href = obj.protocol + "://" + host + (loc && loc.port === obj.port ? "" : ":" + obj.port); + return obj; + } + + var withNativeArrayBuffer = typeof ArrayBuffer === "function"; + + var isView = function isView(obj) { + return typeof ArrayBuffer.isView === "function" ? ArrayBuffer.isView(obj) : obj.buffer instanceof ArrayBuffer; + }; + + var toString = Object.prototype.toString; + var withNativeBlob = typeof Blob === "function" || typeof Blob !== "undefined" && toString.call(Blob) === "[object BlobConstructor]"; + var withNativeFile = typeof File === "function" || typeof File !== "undefined" && toString.call(File) === "[object FileConstructor]"; + /** + * Returns true if obj is a Buffer, an ArrayBuffer, a Blob or a File. + * + * @private + */ + + function isBinary(obj) { + return withNativeArrayBuffer && (obj instanceof ArrayBuffer || isView(obj)) || withNativeBlob && obj instanceof Blob || withNativeFile && obj instanceof File; + } + function hasBinary(obj, toJSON) { + if (!obj || _typeof(obj) !== "object") { + return false; + } + + if (Array.isArray(obj)) { + for (var i = 0, l = obj.length; i < l; i++) { + if (hasBinary(obj[i])) { + return true; + } + } + + return false; + } + + if (isBinary(obj)) { + return true; + } + + if (obj.toJSON && typeof obj.toJSON === "function" && arguments.length === 1) { + return hasBinary(obj.toJSON(), true); + } + + for (var key in obj) { + if (Object.prototype.hasOwnProperty.call(obj, key) && hasBinary(obj[key])) { + return true; + } + } + + return false; + } + + /** + * Replaces every Buffer | ArrayBuffer | Blob | File in packet with a numbered placeholder. + * + * @param {Object} packet - socket.io event packet + * @return {Object} with deconstructed packet and list of buffers + * @public + */ + + function deconstructPacket(packet) { + var buffers = []; + var packetData = packet.data; + var pack = packet; + pack.data = _deconstructPacket(packetData, buffers); + pack.attachments = buffers.length; // number of binary 'attachments' + + return { + packet: pack, + buffers: buffers + }; + } + + function _deconstructPacket(data, buffers) { + if (!data) return data; + + if (isBinary(data)) { + var placeholder = { + _placeholder: true, + num: buffers.length + }; + buffers.push(data); + return placeholder; + } else if (Array.isArray(data)) { + var newData = new Array(data.length); + + for (var i = 0; i < data.length; i++) { + newData[i] = _deconstructPacket(data[i], buffers); + } + + return newData; + } else if (_typeof(data) === "object" && !(data instanceof Date)) { + var _newData = {}; + + for (var key in data) { + if (Object.prototype.hasOwnProperty.call(data, key)) { + _newData[key] = _deconstructPacket(data[key], buffers); + } + } + + return _newData; + } + + return data; + } + /** + * Reconstructs a binary packet from its placeholder packet and buffers + * + * @param {Object} packet - event packet with placeholders + * @param {Array} buffers - binary buffers to put in placeholder positions + * @return {Object} reconstructed packet + * @public + */ + + + function reconstructPacket(packet, buffers) { + packet.data = _reconstructPacket(packet.data, buffers); + packet.attachments = undefined; // no longer useful + + return packet; + } + + function _reconstructPacket(data, buffers) { + if (!data) return data; + + if (data && data._placeholder) { + return buffers[data.num]; // appropriate buffer (should be natural order anyway) + } else if (Array.isArray(data)) { + for (var i = 0; i < data.length; i++) { + data[i] = _reconstructPacket(data[i], buffers); + } + } else if (_typeof(data) === "object") { + for (var key in data) { + if (Object.prototype.hasOwnProperty.call(data, key)) { + data[key] = _reconstructPacket(data[key], buffers); + } + } + } + + return data; + } + + /** + * Protocol version. + * + * @public + */ + + var protocol = 5; + var PacketType; + + (function (PacketType) { + PacketType[PacketType["CONNECT"] = 0] = "CONNECT"; + PacketType[PacketType["DISCONNECT"] = 1] = "DISCONNECT"; + PacketType[PacketType["EVENT"] = 2] = "EVENT"; + PacketType[PacketType["ACK"] = 3] = "ACK"; + PacketType[PacketType["CONNECT_ERROR"] = 4] = "CONNECT_ERROR"; + PacketType[PacketType["BINARY_EVENT"] = 5] = "BINARY_EVENT"; + PacketType[PacketType["BINARY_ACK"] = 6] = "BINARY_ACK"; + })(PacketType || (PacketType = {})); + /** + * A socket.io Encoder instance + */ + + + var Encoder = /*#__PURE__*/function () { + /** + * Encoder constructor + * + * @param {function} replacer - custom replacer to pass down to JSON.parse + */ + function Encoder(replacer) { + _classCallCheck(this, Encoder); + + this.replacer = replacer; + } + /** + * Encode a packet as a single string if non-binary, or as a + * buffer sequence, depending on packet type. + * + * @param {Object} obj - packet object + */ + + + _createClass(Encoder, [{ + key: "encode", + value: function encode(obj) { + if (obj.type === PacketType.EVENT || obj.type === PacketType.ACK) { + if (hasBinary(obj)) { + obj.type = obj.type === PacketType.EVENT ? PacketType.BINARY_EVENT : PacketType.BINARY_ACK; + return this.encodeAsBinary(obj); + } + } + + return [this.encodeAsString(obj)]; + } + /** + * Encode packet as string. + */ + + }, { + key: "encodeAsString", + value: function encodeAsString(obj) { + // first is type + var str = "" + obj.type; // attachments if we have them + + if (obj.type === PacketType.BINARY_EVENT || obj.type === PacketType.BINARY_ACK) { + str += obj.attachments + "-"; + } // if we have a namespace other than `/` + // we append it followed by a comma `,` + + + if (obj.nsp && "/" !== obj.nsp) { + str += obj.nsp + ","; + } // immediately followed by the id + + + if (null != obj.id) { + str += obj.id; + } // json data + + + if (null != obj.data) { + str += JSON.stringify(obj.data, this.replacer); + } + + return str; + } + /** + * Encode packet as 'buffer sequence' by removing blobs, and + * deconstructing packet into object with placeholders and + * a list of buffers. + */ + + }, { + key: "encodeAsBinary", + value: function encodeAsBinary(obj) { + var deconstruction = deconstructPacket(obj); + var pack = this.encodeAsString(deconstruction.packet); + var buffers = deconstruction.buffers; + buffers.unshift(pack); // add packet info to beginning of data list + + return buffers; // write all the buffers + } + }]); + + return Encoder; + }(); + /** + * A socket.io Decoder instance + * + * @return {Object} decoder + */ + + var Decoder = /*#__PURE__*/function (_Emitter) { + _inherits(Decoder, _Emitter); + + var _super = _createSuper(Decoder); + + /** + * Decoder constructor + * + * @param {function} reviver - custom reviver to pass down to JSON.stringify + */ + function Decoder(reviver) { + var _this; + + _classCallCheck(this, Decoder); + + _this = _super.call(this); + _this.reviver = reviver; + return _this; + } + /** + * Decodes an encoded packet string into packet JSON. + * + * @param {String} obj - encoded packet + */ + + + _createClass(Decoder, [{ + key: "add", + value: function add(obj) { + var packet; + + if (typeof obj === "string") { + packet = this.decodeString(obj); + + if (packet.type === PacketType.BINARY_EVENT || packet.type === PacketType.BINARY_ACK) { + // binary packet's json + this.reconstructor = new BinaryReconstructor(packet); // no attachments, labeled binary but no binary data to follow + + if (packet.attachments === 0) { + _get(_getPrototypeOf(Decoder.prototype), "emitReserved", this).call(this, "decoded", packet); + } + } else { + // non-binary full packet + _get(_getPrototypeOf(Decoder.prototype), "emitReserved", this).call(this, "decoded", packet); + } + } else if (isBinary(obj) || obj.base64) { + // raw binary data + if (!this.reconstructor) { + throw new Error("got binary data when not reconstructing a packet"); + } else { + packet = this.reconstructor.takeBinaryData(obj); + + if (packet) { + // received final buffer + this.reconstructor = null; + + _get(_getPrototypeOf(Decoder.prototype), "emitReserved", this).call(this, "decoded", packet); + } + } + } else { + throw new Error("Unknown type: " + obj); + } + } + /** + * Decode a packet String (JSON data) + * + * @param {String} str + * @return {Object} packet + */ + + }, { + key: "decodeString", + value: function decodeString(str) { + var i = 0; // look up type + + var p = { + type: Number(str.charAt(0)) + }; + + if (PacketType[p.type] === undefined) { + throw new Error("unknown packet type " + p.type); + } // look up attachments if type binary + + + if (p.type === PacketType.BINARY_EVENT || p.type === PacketType.BINARY_ACK) { + var start = i + 1; + + while (str.charAt(++i) !== "-" && i != str.length) {} + + var buf = str.substring(start, i); + + if (buf != Number(buf) || str.charAt(i) !== "-") { + throw new Error("Illegal attachments"); + } + + p.attachments = Number(buf); + } // look up namespace (if any) + + + if ("/" === str.charAt(i + 1)) { + var _start = i + 1; + + while (++i) { + var c = str.charAt(i); + if ("," === c) break; + if (i === str.length) break; + } + + p.nsp = str.substring(_start, i); + } else { + p.nsp = "/"; + } // look up id + + + var next = str.charAt(i + 1); + + if ("" !== next && Number(next) == next) { + var _start2 = i + 1; + + while (++i) { + var _c = str.charAt(i); + + if (null == _c || Number(_c) != _c) { + --i; + break; + } + + if (i === str.length) break; + } + + p.id = Number(str.substring(_start2, i + 1)); + } // look up json data + + + if (str.charAt(++i)) { + var payload = this.tryParse(str.substr(i)); + + if (Decoder.isPayloadValid(p.type, payload)) { + p.data = payload; + } else { + throw new Error("invalid payload"); + } + } + + return p; + } + }, { + key: "tryParse", + value: function tryParse(str) { + try { + return JSON.parse(str, this.reviver); + } catch (e) { + return false; + } + } + }, { + key: "destroy", + value: + /** + * Deallocates a parser's resources + */ + function destroy() { + if (this.reconstructor) { + this.reconstructor.finishedReconstruction(); + } + } + }], [{ + key: "isPayloadValid", + value: function isPayloadValid(type, payload) { + switch (type) { + case PacketType.CONNECT: + return _typeof(payload) === "object"; + + case PacketType.DISCONNECT: + return payload === undefined; + + case PacketType.CONNECT_ERROR: + return typeof payload === "string" || _typeof(payload) === "object"; + + case PacketType.EVENT: + case PacketType.BINARY_EVENT: + return Array.isArray(payload) && payload.length > 0; + + case PacketType.ACK: + case PacketType.BINARY_ACK: + return Array.isArray(payload); + } + } + }]); + + return Decoder; + }(Emitter); + /** + * A manager of a binary event's 'buffer sequence'. Should + * be constructed whenever a packet of type BINARY_EVENT is + * decoded. + * + * @param {Object} packet + * @return {BinaryReconstructor} initialized reconstructor + */ + + var BinaryReconstructor = /*#__PURE__*/function () { + function BinaryReconstructor(packet) { + _classCallCheck(this, BinaryReconstructor); + + this.packet = packet; + this.buffers = []; + this.reconPack = packet; + } + /** + * Method to be called when binary data received from connection + * after a BINARY_EVENT packet. + * + * @param {Buffer | ArrayBuffer} binData - the raw binary data received + * @return {null | Object} returns null if more binary data is expected or + * a reconstructed packet object if all buffers have been received. + */ + + + _createClass(BinaryReconstructor, [{ + key: "takeBinaryData", + value: function takeBinaryData(binData) { + this.buffers.push(binData); + + if (this.buffers.length === this.reconPack.attachments) { + // done with buffer list + var packet = reconstructPacket(this.reconPack, this.buffers); + this.finishedReconstruction(); + return packet; + } + + return null; + } + /** + * Cleans up binary packet reconstruction variables. + */ + + }, { + key: "finishedReconstruction", + value: function finishedReconstruction() { + this.reconPack = null; + this.buffers = []; + } + }]); + + return BinaryReconstructor; + }(); + + var parser = /*#__PURE__*/Object.freeze({ + __proto__: null, + protocol: protocol, + get PacketType () { return PacketType; }, + Encoder: Encoder, + Decoder: Decoder + }); + + function on(obj, ev, fn) { + obj.on(ev, fn); + return function subDestroy() { + obj.off(ev, fn); + }; + } + + /** + * Internal events. + * These events can't be emitted by the user. + */ + + var RESERVED_EVENTS = Object.freeze({ + connect: 1, + connect_error: 1, + disconnect: 1, + disconnecting: 1, + // EventEmitter reserved events: https://nodejs.org/api/events.html#events_event_newlistener + newListener: 1, + removeListener: 1 + }); + /** + * A Socket is the fundamental class for interacting with the server. + * + * A Socket belongs to a certain Namespace (by default /) and uses an underlying {@link Manager} to communicate. + * + * @example + * const socket = io(); + * + * socket.on("connect", () => { + * console.log("connected"); + * }); + * + * // send an event to the server + * socket.emit("foo", "bar"); + * + * socket.on("foobar", () => { + * // an event was received from the server + * }); + * + * // upon disconnection + * socket.on("disconnect", (reason) => { + * console.log(`disconnected due to ${reason}`); + * }); + */ + + var Socket = /*#__PURE__*/function (_Emitter) { + _inherits(Socket, _Emitter); + + var _super = _createSuper(Socket); + + /** + * `Socket` constructor. + */ + function Socket(io, nsp, opts) { + var _this; + + _classCallCheck(this, Socket); + + _this = _super.call(this); + /** + * Whether the socket is currently connected to the server. + * + * @example + * const socket = io(); + * + * socket.on("connect", () => { + * console.log(socket.connected); // true + * }); + * + * socket.on("disconnect", () => { + * console.log(socket.connected); // false + * }); + */ + + _this.connected = false; + /** + * Buffer for packets received before the CONNECT packet + */ + + _this.receiveBuffer = []; + /** + * Buffer for packets that will be sent once the socket is connected + */ + + _this.sendBuffer = []; + _this.ids = 0; + _this.acks = {}; + _this.flags = {}; + _this.io = io; + _this.nsp = nsp; + + if (opts && opts.auth) { + _this.auth = opts.auth; + } + + if (_this.io._autoConnect) _this.open(); + return _this; + } + /** + * Whether the socket is currently disconnected + * + * @example + * const socket = io(); + * + * socket.on("connect", () => { + * console.log(socket.disconnected); // false + * }); + * + * socket.on("disconnect", () => { + * console.log(socket.disconnected); // true + * }); + */ + + + _createClass(Socket, [{ + key: "disconnected", + get: function get() { + return !this.connected; + } + /** + * Subscribe to open, close and packet events + * + * @private + */ + + }, { + key: "subEvents", + value: function subEvents() { + if (this.subs) return; + var io = this.io; + this.subs = [on(io, "open", this.onopen.bind(this)), on(io, "packet", this.onpacket.bind(this)), on(io, "error", this.onerror.bind(this)), on(io, "close", this.onclose.bind(this))]; + } + /** + * Whether the Socket will try to reconnect when its Manager connects or reconnects. + * + * @example + * const socket = io(); + * + * console.log(socket.active); // true + * + * socket.on("disconnect", (reason) => { + * if (reason === "io server disconnect") { + * // the disconnection was initiated by the server, you need to manually reconnect + * console.log(socket.active); // false + * } + * // else the socket will automatically try to reconnect + * console.log(socket.active); // true + * }); + */ + + }, { + key: "active", + get: function get() { + return !!this.subs; + } + /** + * "Opens" the socket. + * + * @example + * const socket = io({ + * autoConnect: false + * }); + * + * socket.connect(); + */ + + }, { + key: "connect", + value: function connect() { + if (this.connected) return this; + this.subEvents(); + if (!this.io["_reconnecting"]) this.io.open(); // ensure open + + if ("open" === this.io._readyState) this.onopen(); + return this; + } + /** + * Alias for {@link connect()}. + */ + + }, { + key: "open", + value: function open() { + return this.connect(); + } + /** + * Sends a `message` event. + * + * This method mimics the WebSocket.send() method. + * + * @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/send + * + * @example + * socket.send("hello"); + * + * // this is equivalent to + * socket.emit("message", "hello"); + * + * @return self + */ + + }, { + key: "send", + value: function send() { + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + + args.unshift("message"); + this.emit.apply(this, args); + return this; + } + /** + * Override `emit`. + * If the event is in `events`, it's emitted normally. + * + * @example + * socket.emit("hello", "world"); + * + * // all serializable datastructures are supported (no need to call JSON.stringify) + * socket.emit("hello", 1, "2", { 3: ["4"], 5: Uint8Array.from([6]) }); + * + * // with an acknowledgement from the server + * socket.emit("hello", "world", (val) => { + * // ... + * }); + * + * @return self + */ + + }, { + key: "emit", + value: function emit(ev) { + if (RESERVED_EVENTS.hasOwnProperty(ev)) { + throw new Error('"' + ev.toString() + '" is a reserved event name'); + } + + for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { + args[_key2 - 1] = arguments[_key2]; + } + + args.unshift(ev); + var packet = { + type: PacketType.EVENT, + data: args + }; + packet.options = {}; + packet.options.compress = this.flags.compress !== false; // event ack callback + + if ("function" === typeof args[args.length - 1]) { + var id = this.ids++; + var ack = args.pop(); + + this._registerAckCallback(id, ack); + + packet.id = id; + } + + var isTransportWritable = this.io.engine && this.io.engine.transport && this.io.engine.transport.writable; + var discardPacket = this.flags["volatile"] && (!isTransportWritable || !this.connected); + + if (discardPacket) ; else if (this.connected) { + this.notifyOutgoingListeners(packet); + this.packet(packet); + } else { + this.sendBuffer.push(packet); + } + + this.flags = {}; + return this; + } + /** + * @private + */ + + }, { + key: "_registerAckCallback", + value: function _registerAckCallback(id, ack) { + var _this2 = this; + + var timeout = this.flags.timeout; + + if (timeout === undefined) { + this.acks[id] = ack; + return; + } // @ts-ignore + + + var timer = this.io.setTimeoutFn(function () { + delete _this2.acks[id]; + + for (var i = 0; i < _this2.sendBuffer.length; i++) { + if (_this2.sendBuffer[i].id === id) { + _this2.sendBuffer.splice(i, 1); + } + } + + ack.call(_this2, new Error("operation has timed out")); + }, timeout); + + this.acks[id] = function () { + // @ts-ignore + _this2.io.clearTimeoutFn(timer); + + for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) { + args[_key3] = arguments[_key3]; + } + + ack.apply(_this2, [null].concat(args)); + }; + } + /** + * Sends a packet. + * + * @param packet + * @private + */ + + }, { + key: "packet", + value: function packet(_packet) { + _packet.nsp = this.nsp; + + this.io._packet(_packet); + } + /** + * Called upon engine `open`. + * + * @private + */ + + }, { + key: "onopen", + value: function onopen() { + var _this3 = this; + + if (typeof this.auth == "function") { + this.auth(function (data) { + _this3.packet({ + type: PacketType.CONNECT, + data: data + }); + }); + } else { + this.packet({ + type: PacketType.CONNECT, + data: this.auth + }); + } + } + /** + * Called upon engine or manager `error`. + * + * @param err + * @private + */ + + }, { + key: "onerror", + value: function onerror(err) { + if (!this.connected) { + this.emitReserved("connect_error", err); + } + } + /** + * Called upon engine `close`. + * + * @param reason + * @param description + * @private + */ + + }, { + key: "onclose", + value: function onclose(reason, description) { + this.connected = false; + delete this.id; + this.emitReserved("disconnect", reason, description); + } + /** + * Called with socket packet. + * + * @param packet + * @private + */ + + }, { + key: "onpacket", + value: function onpacket(packet) { + var sameNamespace = packet.nsp === this.nsp; + if (!sameNamespace) return; + + switch (packet.type) { + case PacketType.CONNECT: + if (packet.data && packet.data.sid) { + var id = packet.data.sid; + this.onconnect(id); + } else { + this.emitReserved("connect_error", new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)")); + } + + break; + + case PacketType.EVENT: + case PacketType.BINARY_EVENT: + this.onevent(packet); + break; + + case PacketType.ACK: + case PacketType.BINARY_ACK: + this.onack(packet); + break; + + case PacketType.DISCONNECT: + this.ondisconnect(); + break; + + case PacketType.CONNECT_ERROR: + this.destroy(); + var err = new Error(packet.data.message); // @ts-ignore + + err.data = packet.data.data; + this.emitReserved("connect_error", err); + break; + } + } + /** + * Called upon a server event. + * + * @param packet + * @private + */ + + }, { + key: "onevent", + value: function onevent(packet) { + var args = packet.data || []; + + if (null != packet.id) { + args.push(this.ack(packet.id)); + } + + if (this.connected) { + this.emitEvent(args); + } else { + this.receiveBuffer.push(Object.freeze(args)); + } + } + }, { + key: "emitEvent", + value: function emitEvent(args) { + if (this._anyListeners && this._anyListeners.length) { + var listeners = this._anyListeners.slice(); + + var _iterator = _createForOfIteratorHelper(listeners), + _step; + + try { + for (_iterator.s(); !(_step = _iterator.n()).done;) { + var listener = _step.value; + listener.apply(this, args); + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + } + + _get(_getPrototypeOf(Socket.prototype), "emit", this).apply(this, args); + } + /** + * Produces an ack callback to emit with an event. + * + * @private + */ + + }, { + key: "ack", + value: function ack(id) { + var self = this; + var sent = false; + return function () { + // prevent double callbacks + if (sent) return; + sent = true; + + for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) { + args[_key4] = arguments[_key4]; + } + + self.packet({ + type: PacketType.ACK, + id: id, + data: args + }); + }; + } + /** + * Called upon a server acknowlegement. + * + * @param packet + * @private + */ + + }, { + key: "onack", + value: function onack(packet) { + var ack = this.acks[packet.id]; + + if ("function" === typeof ack) { + ack.apply(this, packet.data); + delete this.acks[packet.id]; + } + } + /** + * Called upon server connect. + * + * @private + */ + + }, { + key: "onconnect", + value: function onconnect(id) { + this.id = id; + this.connected = true; + this.emitBuffered(); + this.emitReserved("connect"); + } + /** + * Emit buffered events (received and emitted). + * + * @private + */ + + }, { + key: "emitBuffered", + value: function emitBuffered() { + var _this4 = this; + + this.receiveBuffer.forEach(function (args) { + return _this4.emitEvent(args); + }); + this.receiveBuffer = []; + this.sendBuffer.forEach(function (packet) { + _this4.notifyOutgoingListeners(packet); + + _this4.packet(packet); + }); + this.sendBuffer = []; + } + /** + * Called upon server disconnect. + * + * @private + */ + + }, { + key: "ondisconnect", + value: function ondisconnect() { + this.destroy(); + this.onclose("io server disconnect"); + } + /** + * Called upon forced client/server side disconnections, + * this method ensures the manager stops tracking us and + * that reconnections don't get triggered for this. + * + * @private + */ + + }, { + key: "destroy", + value: function destroy() { + if (this.subs) { + // clean subscriptions to avoid reconnections + this.subs.forEach(function (subDestroy) { + return subDestroy(); + }); + this.subs = undefined; + } + + this.io["_destroy"](this); + } + /** + * Disconnects the socket manually. In that case, the socket will not try to reconnect. + * + * If this is the last active Socket instance of the {@link Manager}, the low-level connection will be closed. + * + * @example + * const socket = io(); + * + * socket.on("disconnect", (reason) => { + * // console.log(reason); prints "io client disconnect" + * }); + * + * socket.disconnect(); + * + * @return self + */ + + }, { + key: "disconnect", + value: function disconnect() { + if (this.connected) { + this.packet({ + type: PacketType.DISCONNECT + }); + } // remove socket from pool + + + this.destroy(); + + if (this.connected) { + // fire events + this.onclose("io client disconnect"); + } + + return this; + } + /** + * Alias for {@link disconnect()}. + * + * @return self + */ + + }, { + key: "close", + value: function close() { + return this.disconnect(); + } + /** + * Sets the compress flag. + * + * @example + * socket.compress(false).emit("hello"); + * + * @param compress - if `true`, compresses the sending data + * @return self + */ + + }, { + key: "compress", + value: function compress(_compress) { + this.flags.compress = _compress; + return this; + } + /** + * Sets a modifier for a subsequent event emission that the event message will be dropped when this socket is not + * ready to send messages. + * + * @example + * socket.volatile.emit("hello"); // the server may or may not receive it + * + * @returns self + */ + + }, { + key: "volatile", + get: function get() { + this.flags["volatile"] = true; + return this; + } + /** + * Sets a modifier for a subsequent event emission that the callback will be called with an error when the + * given number of milliseconds have elapsed without an acknowledgement from the server: + * + * @example + * socket.timeout(5000).emit("my-event", (err) => { + * if (err) { + * // the server did not acknowledge the event in the given delay + * } + * }); + * + * @returns self + */ + + }, { + key: "timeout", + value: function timeout(_timeout) { + this.flags.timeout = _timeout; + return this; + } + /** + * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the + * callback. + * + * @example + * socket.onAny((event, ...args) => { + * console.log(`got ${event}`); + * }); + * + * @param listener + */ + + }, { + key: "onAny", + value: function onAny(listener) { + this._anyListeners = this._anyListeners || []; + + this._anyListeners.push(listener); + + return this; + } + /** + * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the + * callback. The listener is added to the beginning of the listeners array. + * + * @example + * socket.prependAny((event, ...args) => { + * console.log(`got event ${event}`); + * }); + * + * @param listener + */ + + }, { + key: "prependAny", + value: function prependAny(listener) { + this._anyListeners = this._anyListeners || []; + + this._anyListeners.unshift(listener); + + return this; + } + /** + * Removes the listener that will be fired when any event is emitted. + * + * @example + * const catchAllListener = (event, ...args) => { + * console.log(`got event ${event}`); + * } + * + * socket.onAny(catchAllListener); + * + * // remove a specific listener + * socket.offAny(catchAllListener); + * + * // or remove all listeners + * socket.offAny(); + * + * @param listener + */ + + }, { + key: "offAny", + value: function offAny(listener) { + if (!this._anyListeners) { + return this; + } + + if (listener) { + var listeners = this._anyListeners; + + for (var i = 0; i < listeners.length; i++) { + if (listener === listeners[i]) { + listeners.splice(i, 1); + return this; + } + } + } else { + this._anyListeners = []; + } + + return this; + } + /** + * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated, + * e.g. to remove listeners. + */ + + }, { + key: "listenersAny", + value: function listenersAny() { + return this._anyListeners || []; + } + /** + * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the + * callback. + * + * Note: acknowledgements sent to the server are not included. + * + * @example + * socket.onAnyOutgoing((event, ...args) => { + * console.log(`sent event ${event}`); + * }); + * + * @param listener + */ + + }, { + key: "onAnyOutgoing", + value: function onAnyOutgoing(listener) { + this._anyOutgoingListeners = this._anyOutgoingListeners || []; + + this._anyOutgoingListeners.push(listener); + + return this; + } + /** + * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the + * callback. The listener is added to the beginning of the listeners array. + * + * Note: acknowledgements sent to the server are not included. + * + * @example + * socket.prependAnyOutgoing((event, ...args) => { + * console.log(`sent event ${event}`); + * }); + * + * @param listener + */ + + }, { + key: "prependAnyOutgoing", + value: function prependAnyOutgoing(listener) { + this._anyOutgoingListeners = this._anyOutgoingListeners || []; + + this._anyOutgoingListeners.unshift(listener); + + return this; + } + /** + * Removes the listener that will be fired when any event is emitted. + * + * @example + * const catchAllListener = (event, ...args) => { + * console.log(`sent event ${event}`); + * } + * + * socket.onAnyOutgoing(catchAllListener); + * + * // remove a specific listener + * socket.offAnyOutgoing(catchAllListener); + * + * // or remove all listeners + * socket.offAnyOutgoing(); + * + * @param [listener] - the catch-all listener (optional) + */ + + }, { + key: "offAnyOutgoing", + value: function offAnyOutgoing(listener) { + if (!this._anyOutgoingListeners) { + return this; + } + + if (listener) { + var listeners = this._anyOutgoingListeners; + + for (var i = 0; i < listeners.length; i++) { + if (listener === listeners[i]) { + listeners.splice(i, 1); + return this; + } + } + } else { + this._anyOutgoingListeners = []; + } + + return this; + } + /** + * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated, + * e.g. to remove listeners. + */ + + }, { + key: "listenersAnyOutgoing", + value: function listenersAnyOutgoing() { + return this._anyOutgoingListeners || []; + } + /** + * Notify the listeners for each packet sent + * + * @param packet + * + * @private + */ + + }, { + key: "notifyOutgoingListeners", + value: function notifyOutgoingListeners(packet) { + if (this._anyOutgoingListeners && this._anyOutgoingListeners.length) { + var listeners = this._anyOutgoingListeners.slice(); + + var _iterator2 = _createForOfIteratorHelper(listeners), + _step2; + + try { + for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) { + var listener = _step2.value; + listener.apply(this, packet.data); + } + } catch (err) { + _iterator2.e(err); + } finally { + _iterator2.f(); + } + } + } + }]); + + return Socket; + }(Emitter); + + /** + * Initialize backoff timer with `opts`. + * + * - `min` initial timeout in milliseconds [100] + * - `max` max timeout [10000] + * - `jitter` [0] + * - `factor` [2] + * + * @param {Object} opts + * @api public + */ + function Backoff(opts) { + opts = opts || {}; + this.ms = opts.min || 100; + this.max = opts.max || 10000; + this.factor = opts.factor || 2; + this.jitter = opts.jitter > 0 && opts.jitter <= 1 ? opts.jitter : 0; + this.attempts = 0; + } + /** + * Return the backoff duration. + * + * @return {Number} + * @api public + */ + + Backoff.prototype.duration = function () { + var ms = this.ms * Math.pow(this.factor, this.attempts++); + + if (this.jitter) { + var rand = Math.random(); + var deviation = Math.floor(rand * this.jitter * ms); + ms = (Math.floor(rand * 10) & 1) == 0 ? ms - deviation : ms + deviation; + } + + return Math.min(ms, this.max) | 0; + }; + /** + * Reset the number of attempts. + * + * @api public + */ + + + Backoff.prototype.reset = function () { + this.attempts = 0; + }; + /** + * Set the minimum duration + * + * @api public + */ + + + Backoff.prototype.setMin = function (min) { + this.ms = min; + }; + /** + * Set the maximum duration + * + * @api public + */ + + + Backoff.prototype.setMax = function (max) { + this.max = max; + }; + /** + * Set the jitter + * + * @api public + */ + + + Backoff.prototype.setJitter = function (jitter) { + this.jitter = jitter; + }; + + var Manager = /*#__PURE__*/function (_Emitter) { + _inherits(Manager, _Emitter); + + var _super = _createSuper(Manager); + + function Manager(uri, opts) { + var _this; + + _classCallCheck(this, Manager); + + var _a; + + _this = _super.call(this); + _this.nsps = {}; + _this.subs = []; + + if (uri && "object" === _typeof(uri)) { + opts = uri; + uri = undefined; + } + + opts = opts || {}; + opts.path = opts.path || "/socket.io"; + _this.opts = opts; + installTimerFunctions(_assertThisInitialized(_this), opts); + + _this.reconnection(opts.reconnection !== false); + + _this.reconnectionAttempts(opts.reconnectionAttempts || Infinity); + + _this.reconnectionDelay(opts.reconnectionDelay || 1000); + + _this.reconnectionDelayMax(opts.reconnectionDelayMax || 5000); + + _this.randomizationFactor((_a = opts.randomizationFactor) !== null && _a !== void 0 ? _a : 0.5); + + _this.backoff = new Backoff({ + min: _this.reconnectionDelay(), + max: _this.reconnectionDelayMax(), + jitter: _this.randomizationFactor() + }); + + _this.timeout(null == opts.timeout ? 20000 : opts.timeout); + + _this._readyState = "closed"; + _this.uri = uri; + + var _parser = opts.parser || parser; + + _this.encoder = new _parser.Encoder(); + _this.decoder = new _parser.Decoder(); + _this._autoConnect = opts.autoConnect !== false; + if (_this._autoConnect) _this.open(); + return _this; + } + + _createClass(Manager, [{ + key: "reconnection", + value: function reconnection(v) { + if (!arguments.length) return this._reconnection; + this._reconnection = !!v; + return this; + } + }, { + key: "reconnectionAttempts", + value: function reconnectionAttempts(v) { + if (v === undefined) return this._reconnectionAttempts; + this._reconnectionAttempts = v; + return this; + } + }, { + key: "reconnectionDelay", + value: function reconnectionDelay(v) { + var _a; + + if (v === undefined) return this._reconnectionDelay; + this._reconnectionDelay = v; + (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setMin(v); + return this; + } + }, { + key: "randomizationFactor", + value: function randomizationFactor(v) { + var _a; + + if (v === undefined) return this._randomizationFactor; + this._randomizationFactor = v; + (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setJitter(v); + return this; + } + }, { + key: "reconnectionDelayMax", + value: function reconnectionDelayMax(v) { + var _a; + + if (v === undefined) return this._reconnectionDelayMax; + this._reconnectionDelayMax = v; + (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setMax(v); + return this; + } + }, { + key: "timeout", + value: function timeout(v) { + if (!arguments.length) return this._timeout; + this._timeout = v; + return this; + } + /** + * Starts trying to reconnect if reconnection is enabled and we have not + * started reconnecting yet + * + * @private + */ + + }, { + key: "maybeReconnectOnOpen", + value: function maybeReconnectOnOpen() { + // Only try to reconnect if it's the first time we're connecting + if (!this._reconnecting && this._reconnection && this.backoff.attempts === 0) { + // keeps reconnection from firing twice for the same reconnection loop + this.reconnect(); + } + } + /** + * Sets the current transport `socket`. + * + * @param {Function} fn - optional, callback + * @return self + * @public + */ + + }, { + key: "open", + value: function open(fn) { + var _this2 = this; + + if (~this._readyState.indexOf("open")) return this; + this.engine = new Socket$1(this.uri, this.opts); + var socket = this.engine; + var self = this; + this._readyState = "opening"; + this.skipReconnect = false; // emit `open` + + var openSubDestroy = on(socket, "open", function () { + self.onopen(); + fn && fn(); + }); // emit `error` + + var errorSub = on(socket, "error", function (err) { + self.cleanup(); + self._readyState = "closed"; + + _this2.emitReserved("error", err); + + if (fn) { + fn(err); + } else { + // Only do this if there is no fn to handle the error + self.maybeReconnectOnOpen(); + } + }); + + if (false !== this._timeout) { + var timeout = this._timeout; + + if (timeout === 0) { + openSubDestroy(); // prevents a race condition with the 'open' event + } // set timer + + + var timer = this.setTimeoutFn(function () { + openSubDestroy(); + socket.close(); // @ts-ignore + + socket.emit("error", new Error("timeout")); + }, timeout); + + if (this.opts.autoUnref) { + timer.unref(); + } + + this.subs.push(function subDestroy() { + clearTimeout(timer); + }); + } + + this.subs.push(openSubDestroy); + this.subs.push(errorSub); + return this; + } + /** + * Alias for open() + * + * @return self + * @public + */ + + }, { + key: "connect", + value: function connect(fn) { + return this.open(fn); + } + /** + * Called upon transport open. + * + * @private + */ + + }, { + key: "onopen", + value: function onopen() { + // clear old subs + this.cleanup(); // mark as open + + this._readyState = "open"; + this.emitReserved("open"); // add new subs + + var socket = this.engine; + this.subs.push(on(socket, "ping", this.onping.bind(this)), on(socket, "data", this.ondata.bind(this)), on(socket, "error", this.onerror.bind(this)), on(socket, "close", this.onclose.bind(this)), on(this.decoder, "decoded", this.ondecoded.bind(this))); + } + /** + * Called upon a ping. + * + * @private + */ + + }, { + key: "onping", + value: function onping() { + this.emitReserved("ping"); + } + /** + * Called with data. + * + * @private + */ + + }, { + key: "ondata", + value: function ondata(data) { + try { + this.decoder.add(data); + } catch (e) { + this.onclose("parse error", e); + } + } + /** + * Called when parser fully decodes a packet. + * + * @private + */ + + }, { + key: "ondecoded", + value: function ondecoded(packet) { + var _this3 = this; + + // the nextTick call prevents an exception in a user-provided event listener from triggering a disconnection due to a "parse error" + nextTick(function () { + _this3.emitReserved("packet", packet); + }, this.setTimeoutFn); + } + /** + * Called upon socket error. + * + * @private + */ + + }, { + key: "onerror", + value: function onerror(err) { + this.emitReserved("error", err); + } + /** + * Creates a new socket for the given `nsp`. + * + * @return {Socket} + * @public + */ + + }, { + key: "socket", + value: function socket(nsp, opts) { + var socket = this.nsps[nsp]; + + if (!socket) { + socket = new Socket(this, nsp, opts); + this.nsps[nsp] = socket; + } + + return socket; + } + /** + * Called upon a socket close. + * + * @param socket + * @private + */ + + }, { + key: "_destroy", + value: function _destroy(socket) { + var nsps = Object.keys(this.nsps); + + for (var _i = 0, _nsps = nsps; _i < _nsps.length; _i++) { + var nsp = _nsps[_i]; + var _socket = this.nsps[nsp]; + + if (_socket.active) { + return; + } + } + + this._close(); + } + /** + * Writes a packet. + * + * @param packet + * @private + */ + + }, { + key: "_packet", + value: function _packet(packet) { + var encodedPackets = this.encoder.encode(packet); + + for (var i = 0; i < encodedPackets.length; i++) { + this.engine.write(encodedPackets[i], packet.options); + } + } + /** + * Clean up transport subscriptions and packet buffer. + * + * @private + */ + + }, { + key: "cleanup", + value: function cleanup() { + this.subs.forEach(function (subDestroy) { + return subDestroy(); + }); + this.subs.length = 0; + this.decoder.destroy(); + } + /** + * Close the current socket. + * + * @private + */ + + }, { + key: "_close", + value: function _close() { + this.skipReconnect = true; + this._reconnecting = false; + this.onclose("forced close"); + if (this.engine) this.engine.close(); + } + /** + * Alias for close() + * + * @private + */ + + }, { + key: "disconnect", + value: function disconnect() { + return this._close(); + } + /** + * Called upon engine close. + * + * @private + */ + + }, { + key: "onclose", + value: function onclose(reason, description) { + this.cleanup(); + this.backoff.reset(); + this._readyState = "closed"; + this.emitReserved("close", reason, description); + + if (this._reconnection && !this.skipReconnect) { + this.reconnect(); + } + } + /** + * Attempt a reconnection. + * + * @private + */ + + }, { + key: "reconnect", + value: function reconnect() { + var _this4 = this; + + if (this._reconnecting || this.skipReconnect) return this; + var self = this; + + if (this.backoff.attempts >= this._reconnectionAttempts) { + this.backoff.reset(); + this.emitReserved("reconnect_failed"); + this._reconnecting = false; + } else { + var delay = this.backoff.duration(); + this._reconnecting = true; + var timer = this.setTimeoutFn(function () { + if (self.skipReconnect) return; + + _this4.emitReserved("reconnect_attempt", self.backoff.attempts); // check again for the case socket closed in above events + + + if (self.skipReconnect) return; + self.open(function (err) { + if (err) { + self._reconnecting = false; + self.reconnect(); + + _this4.emitReserved("reconnect_error", err); + } else { + self.onreconnect(); + } + }); + }, delay); + + if (this.opts.autoUnref) { + timer.unref(); + } + + this.subs.push(function subDestroy() { + clearTimeout(timer); + }); + } + } + /** + * Called upon successful reconnect. + * + * @private + */ + + }, { + key: "onreconnect", + value: function onreconnect() { + var attempt = this.backoff.attempts; + this._reconnecting = false; + this.backoff.reset(); + this.emitReserved("reconnect", attempt); + } + }]); + + return Manager; + }(Emitter); + + /** + * Managers cache. + */ + + var cache = {}; + + function lookup(uri, opts) { + if (_typeof(uri) === "object") { + opts = uri; + uri = undefined; + } + + opts = opts || {}; + var parsed = url(uri, opts.path || "/socket.io"); + var source = parsed.source; + var id = parsed.id; + var path = parsed.path; + var sameNamespace = cache[id] && path in cache[id]["nsps"]; + var newConnection = opts.forceNew || opts["force new connection"] || false === opts.multiplex || sameNamespace; + var io; + + if (newConnection) { + io = new Manager(source, opts); + } else { + if (!cache[id]) { + cache[id] = new Manager(source, opts); + } + + io = cache[id]; + } + + if (parsed.query && !opts.query) { + opts.query = parsed.queryKey; + } + + return io.socket(parsed.path, opts); + } // so that "lookup" can be used both as a function (e.g. `io(...)`) and as a + // namespace (e.g. `io.connect(...)`), for backward compatibility + + + _extends(lookup, { + Manager: Manager, + Socket: Socket, + io: lookup, + connect: lookup + }); + + return lookup; + +})); +//# sourceMappingURL=socket.io.js.map diff --git a/vendor/socketio/socket.io.js.map b/vendor/socketio/socket.io.js.map new file mode 100644 index 000000000..2fa5c54c1 --- /dev/null +++ b/vendor/socketio/socket.io.js.map @@ -0,0 +1 @@ +{"version":3,"file":"socket.io.js","sources":["../node_modules/engine.io-parser/build/esm/commons.js","../node_modules/engine.io-parser/build/esm/encodePacket.browser.js","../node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js","../node_modules/engine.io-parser/build/esm/decodePacket.browser.js","../node_modules/engine.io-parser/build/esm/index.js","../node_modules/@socket.io/component-emitter/index.mjs","../node_modules/engine.io-client/build/esm/globalThis.browser.js","../node_modules/engine.io-client/build/esm/util.js","../node_modules/engine.io-client/build/esm/transport.js","../node_modules/engine.io-client/build/esm/contrib/yeast.js","../node_modules/engine.io-client/build/esm/contrib/parseqs.js","../node_modules/engine.io-client/build/esm/contrib/has-cors.js","../node_modules/engine.io-client/build/esm/transports/xmlhttprequest.browser.js","../node_modules/engine.io-client/build/esm/transports/polling.js","../node_modules/engine.io-client/build/esm/transports/websocket-constructor.browser.js","../node_modules/engine.io-client/build/esm/transports/websocket.js","../node_modules/engine.io-client/build/esm/transports/index.js","../node_modules/engine.io-client/build/esm/contrib/parseuri.js","../node_modules/engine.io-client/build/esm/socket.js","../node_modules/engine.io-client/build/esm/index.js","../build/esm/url.js","../node_modules/socket.io-parser/build/esm/is-binary.js","../node_modules/socket.io-parser/build/esm/binary.js","../node_modules/socket.io-parser/build/esm/index.js","../build/esm/on.js","../build/esm/socket.js","../build/esm/contrib/backo2.js","../build/esm/manager.js","../build/esm/index.js"],"sourcesContent":["const PACKET_TYPES = Object.create(null); // no Map = no polyfill\nPACKET_TYPES[\"open\"] = \"0\";\nPACKET_TYPES[\"close\"] = \"1\";\nPACKET_TYPES[\"ping\"] = \"2\";\nPACKET_TYPES[\"pong\"] = \"3\";\nPACKET_TYPES[\"message\"] = \"4\";\nPACKET_TYPES[\"upgrade\"] = \"5\";\nPACKET_TYPES[\"noop\"] = \"6\";\nconst PACKET_TYPES_REVERSE = Object.create(null);\nObject.keys(PACKET_TYPES).forEach(key => {\n PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key;\n});\nconst ERROR_PACKET = { type: \"error\", data: \"parser error\" };\nexport { PACKET_TYPES, PACKET_TYPES_REVERSE, ERROR_PACKET };\n","import { PACKET_TYPES } from \"./commons.js\";\nconst withNativeBlob = typeof Blob === \"function\" ||\n (typeof Blob !== \"undefined\" &&\n Object.prototype.toString.call(Blob) === \"[object BlobConstructor]\");\nconst withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\n// ArrayBuffer.isView method is not defined in IE10\nconst isView = obj => {\n return typeof ArrayBuffer.isView === \"function\"\n ? ArrayBuffer.isView(obj)\n : obj && obj.buffer instanceof ArrayBuffer;\n};\nconst encodePacket = ({ type, data }, supportsBinary, callback) => {\n if (withNativeBlob && data instanceof Blob) {\n if (supportsBinary) {\n return callback(data);\n }\n else {\n return encodeBlobAsBase64(data, callback);\n }\n }\n else if (withNativeArrayBuffer &&\n (data instanceof ArrayBuffer || isView(data))) {\n if (supportsBinary) {\n return callback(data);\n }\n else {\n return encodeBlobAsBase64(new Blob([data]), callback);\n }\n }\n // plain string\n return callback(PACKET_TYPES[type] + (data || \"\"));\n};\nconst encodeBlobAsBase64 = (data, callback) => {\n const fileReader = new FileReader();\n fileReader.onload = function () {\n const content = fileReader.result.split(\",\")[1];\n callback(\"b\" + content);\n };\n return fileReader.readAsDataURL(data);\n};\nexport default encodePacket;\n","const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n// Use a lookup table to find the index.\nconst lookup = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256);\nfor (let i = 0; i < chars.length; i++) {\n lookup[chars.charCodeAt(i)] = i;\n}\nexport const encode = (arraybuffer) => {\n let bytes = new Uint8Array(arraybuffer), i, len = bytes.length, base64 = '';\n for (i = 0; i < len; i += 3) {\n base64 += chars[bytes[i] >> 2];\n base64 += chars[((bytes[i] & 3) << 4) | (bytes[i + 1] >> 4)];\n base64 += chars[((bytes[i + 1] & 15) << 2) | (bytes[i + 2] >> 6)];\n base64 += chars[bytes[i + 2] & 63];\n }\n if (len % 3 === 2) {\n base64 = base64.substring(0, base64.length - 1) + '=';\n }\n else if (len % 3 === 1) {\n base64 = base64.substring(0, base64.length - 2) + '==';\n }\n return base64;\n};\nexport const decode = (base64) => {\n let bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4;\n if (base64[base64.length - 1] === '=') {\n bufferLength--;\n if (base64[base64.length - 2] === '=') {\n bufferLength--;\n }\n }\n const arraybuffer = new ArrayBuffer(bufferLength), bytes = new Uint8Array(arraybuffer);\n for (i = 0; i < len; i += 4) {\n encoded1 = lookup[base64.charCodeAt(i)];\n encoded2 = lookup[base64.charCodeAt(i + 1)];\n encoded3 = lookup[base64.charCodeAt(i + 2)];\n encoded4 = lookup[base64.charCodeAt(i + 3)];\n bytes[p++] = (encoded1 << 2) | (encoded2 >> 4);\n bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2);\n bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63);\n }\n return arraybuffer;\n};\n","import { ERROR_PACKET, PACKET_TYPES_REVERSE } from \"./commons.js\";\nimport { decode } from \"./contrib/base64-arraybuffer.js\";\nconst withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\nconst decodePacket = (encodedPacket, binaryType) => {\n if (typeof encodedPacket !== \"string\") {\n return {\n type: \"message\",\n data: mapBinary(encodedPacket, binaryType)\n };\n }\n const type = encodedPacket.charAt(0);\n if (type === \"b\") {\n return {\n type: \"message\",\n data: decodeBase64Packet(encodedPacket.substring(1), binaryType)\n };\n }\n const packetType = PACKET_TYPES_REVERSE[type];\n if (!packetType) {\n return ERROR_PACKET;\n }\n return encodedPacket.length > 1\n ? {\n type: PACKET_TYPES_REVERSE[type],\n data: encodedPacket.substring(1)\n }\n : {\n type: PACKET_TYPES_REVERSE[type]\n };\n};\nconst decodeBase64Packet = (data, binaryType) => {\n if (withNativeArrayBuffer) {\n const decoded = decode(data);\n return mapBinary(decoded, binaryType);\n }\n else {\n return { base64: true, data }; // fallback for old browsers\n }\n};\nconst mapBinary = (data, binaryType) => {\n switch (binaryType) {\n case \"blob\":\n return data instanceof ArrayBuffer ? new Blob([data]) : data;\n case \"arraybuffer\":\n default:\n return data; // assuming the data is already an ArrayBuffer\n }\n};\nexport default decodePacket;\n","import encodePacket from \"./encodePacket.js\";\nimport decodePacket from \"./decodePacket.js\";\nconst SEPARATOR = String.fromCharCode(30); // see https://en.wikipedia.org/wiki/Delimiter#ASCII_delimited_text\nconst encodePayload = (packets, callback) => {\n // some packets may be added to the array while encoding, so the initial length must be saved\n const length = packets.length;\n const encodedPackets = new Array(length);\n let count = 0;\n packets.forEach((packet, i) => {\n // force base64 encoding for binary packets\n encodePacket(packet, false, encodedPacket => {\n encodedPackets[i] = encodedPacket;\n if (++count === length) {\n callback(encodedPackets.join(SEPARATOR));\n }\n });\n });\n};\nconst decodePayload = (encodedPayload, binaryType) => {\n const encodedPackets = encodedPayload.split(SEPARATOR);\n const packets = [];\n for (let i = 0; i < encodedPackets.length; i++) {\n const decodedPacket = decodePacket(encodedPackets[i], binaryType);\n packets.push(decodedPacket);\n if (decodedPacket.type === \"error\") {\n break;\n }\n }\n return packets;\n};\nexport const protocol = 4;\nexport { encodePacket, encodePayload, decodePacket, decodePayload };\n","/**\n * Initialize a new `Emitter`.\n *\n * @api public\n */\n\nexport function Emitter(obj) {\n if (obj) return mixin(obj);\n}\n\n/**\n * Mixin the emitter properties.\n *\n * @param {Object} obj\n * @return {Object}\n * @api private\n */\n\nfunction mixin(obj) {\n for (var key in Emitter.prototype) {\n obj[key] = Emitter.prototype[key];\n }\n return obj;\n}\n\n/**\n * Listen on the given `event` with `fn`.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.on =\nEmitter.prototype.addEventListener = function(event, fn){\n this._callbacks = this._callbacks || {};\n (this._callbacks['$' + event] = this._callbacks['$' + event] || [])\n .push(fn);\n return this;\n};\n\n/**\n * Adds an `event` listener that will be invoked a single\n * time then automatically removed.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.once = function(event, fn){\n function on() {\n this.off(event, on);\n fn.apply(this, arguments);\n }\n\n on.fn = fn;\n this.on(event, on);\n return this;\n};\n\n/**\n * Remove the given callback for `event` or all\n * registered callbacks.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.off =\nEmitter.prototype.removeListener =\nEmitter.prototype.removeAllListeners =\nEmitter.prototype.removeEventListener = function(event, fn){\n this._callbacks = this._callbacks || {};\n\n // all\n if (0 == arguments.length) {\n this._callbacks = {};\n return this;\n }\n\n // specific event\n var callbacks = this._callbacks['$' + event];\n if (!callbacks) return this;\n\n // remove all handlers\n if (1 == arguments.length) {\n delete this._callbacks['$' + event];\n return this;\n }\n\n // remove specific handler\n var cb;\n for (var i = 0; i < callbacks.length; i++) {\n cb = callbacks[i];\n if (cb === fn || cb.fn === fn) {\n callbacks.splice(i, 1);\n break;\n }\n }\n\n // Remove event specific arrays for event types that no\n // one is subscribed for to avoid memory leak.\n if (callbacks.length === 0) {\n delete this._callbacks['$' + event];\n }\n\n return this;\n};\n\n/**\n * Emit `event` with the given args.\n *\n * @param {String} event\n * @param {Mixed} ...\n * @return {Emitter}\n */\n\nEmitter.prototype.emit = function(event){\n this._callbacks = this._callbacks || {};\n\n var args = new Array(arguments.length - 1)\n , callbacks = this._callbacks['$' + event];\n\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n\n if (callbacks) {\n callbacks = callbacks.slice(0);\n for (var i = 0, len = callbacks.length; i < len; ++i) {\n callbacks[i].apply(this, args);\n }\n }\n\n return this;\n};\n\n// alias used for reserved events (protected method)\nEmitter.prototype.emitReserved = Emitter.prototype.emit;\n\n/**\n * Return array of callbacks for `event`.\n *\n * @param {String} event\n * @return {Array}\n * @api public\n */\n\nEmitter.prototype.listeners = function(event){\n this._callbacks = this._callbacks || {};\n return this._callbacks['$' + event] || [];\n};\n\n/**\n * Check if this emitter has `event` handlers.\n *\n * @param {String} event\n * @return {Boolean}\n * @api public\n */\n\nEmitter.prototype.hasListeners = function(event){\n return !! this.listeners(event).length;\n};\n","export const globalThisShim = (() => {\n if (typeof self !== \"undefined\") {\n return self;\n }\n else if (typeof window !== \"undefined\") {\n return window;\n }\n else {\n return Function(\"return this\")();\n }\n})();\n","import { globalThisShim as globalThis } from \"./globalThis.js\";\nexport function pick(obj, ...attr) {\n return attr.reduce((acc, k) => {\n if (obj.hasOwnProperty(k)) {\n acc[k] = obj[k];\n }\n return acc;\n }, {});\n}\n// Keep a reference to the real timeout functions so they can be used when overridden\nconst NATIVE_SET_TIMEOUT = setTimeout;\nconst NATIVE_CLEAR_TIMEOUT = clearTimeout;\nexport function installTimerFunctions(obj, opts) {\n if (opts.useNativeTimers) {\n obj.setTimeoutFn = NATIVE_SET_TIMEOUT.bind(globalThis);\n obj.clearTimeoutFn = NATIVE_CLEAR_TIMEOUT.bind(globalThis);\n }\n else {\n obj.setTimeoutFn = setTimeout.bind(globalThis);\n obj.clearTimeoutFn = clearTimeout.bind(globalThis);\n }\n}\n// base64 encoded buffers are about 33% bigger (https://en.wikipedia.org/wiki/Base64)\nconst BASE64_OVERHEAD = 1.33;\n// we could also have used `new Blob([obj]).size`, but it isn't supported in IE9\nexport function byteLength(obj) {\n if (typeof obj === \"string\") {\n return utf8Length(obj);\n }\n // arraybuffer or blob\n return Math.ceil((obj.byteLength || obj.size) * BASE64_OVERHEAD);\n}\nfunction utf8Length(str) {\n let c = 0, length = 0;\n for (let i = 0, l = str.length; i < l; i++) {\n c = str.charCodeAt(i);\n if (c < 0x80) {\n length += 1;\n }\n else if (c < 0x800) {\n length += 2;\n }\n else if (c < 0xd800 || c >= 0xe000) {\n length += 3;\n }\n else {\n i++;\n length += 4;\n }\n }\n return length;\n}\n","import { decodePacket } from \"engine.io-parser\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { installTimerFunctions } from \"./util.js\";\nclass TransportError extends Error {\n constructor(reason, description, context) {\n super(reason);\n this.description = description;\n this.context = context;\n this.type = \"TransportError\";\n }\n}\nexport class Transport extends Emitter {\n /**\n * Transport abstract constructor.\n *\n * @param {Object} options.\n * @api private\n */\n constructor(opts) {\n super();\n this.writable = false;\n installTimerFunctions(this, opts);\n this.opts = opts;\n this.query = opts.query;\n this.readyState = \"\";\n this.socket = opts.socket;\n }\n /**\n * Emits an error.\n *\n * @param {String} reason\n * @param description\n * @param context - the error context\n * @return {Transport} for chaining\n * @api protected\n */\n onError(reason, description, context) {\n super.emitReserved(\"error\", new TransportError(reason, description, context));\n return this;\n }\n /**\n * Opens the transport.\n *\n * @api public\n */\n open() {\n if (\"closed\" === this.readyState || \"\" === this.readyState) {\n this.readyState = \"opening\";\n this.doOpen();\n }\n return this;\n }\n /**\n * Closes the transport.\n *\n * @api public\n */\n close() {\n if (\"opening\" === this.readyState || \"open\" === this.readyState) {\n this.doClose();\n this.onClose();\n }\n return this;\n }\n /**\n * Sends multiple packets.\n *\n * @param {Array} packets\n * @api public\n */\n send(packets) {\n if (\"open\" === this.readyState) {\n this.write(packets);\n }\n else {\n // this might happen if the transport was silently closed in the beforeunload event handler\n }\n }\n /**\n * Called upon open\n *\n * @api protected\n */\n onOpen() {\n this.readyState = \"open\";\n this.writable = true;\n super.emitReserved(\"open\");\n }\n /**\n * Called with data.\n *\n * @param {String} data\n * @api protected\n */\n onData(data) {\n const packet = decodePacket(data, this.socket.binaryType);\n this.onPacket(packet);\n }\n /**\n * Called with a decoded packet.\n *\n * @api protected\n */\n onPacket(packet) {\n super.emitReserved(\"packet\", packet);\n }\n /**\n * Called upon close.\n *\n * @api protected\n */\n onClose(details) {\n this.readyState = \"closed\";\n super.emitReserved(\"close\", details);\n }\n}\n","// imported from https://github.com/unshiftio/yeast\n'use strict';\nconst alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'.split(''), length = 64, map = {};\nlet seed = 0, i = 0, prev;\n/**\n * Return a string representing the specified number.\n *\n * @param {Number} num The number to convert.\n * @returns {String} The string representation of the number.\n * @api public\n */\nexport function encode(num) {\n let encoded = '';\n do {\n encoded = alphabet[num % length] + encoded;\n num = Math.floor(num / length);\n } while (num > 0);\n return encoded;\n}\n/**\n * Return the integer value specified by the given string.\n *\n * @param {String} str The string to convert.\n * @returns {Number} The integer value represented by the string.\n * @api public\n */\nexport function decode(str) {\n let decoded = 0;\n for (i = 0; i < str.length; i++) {\n decoded = decoded * length + map[str.charAt(i)];\n }\n return decoded;\n}\n/**\n * Yeast: A tiny growing id generator.\n *\n * @returns {String} A unique id.\n * @api public\n */\nexport function yeast() {\n const now = encode(+new Date());\n if (now !== prev)\n return seed = 0, prev = now;\n return now + '.' + encode(seed++);\n}\n//\n// Map each character to its index.\n//\nfor (; i < length; i++)\n map[alphabet[i]] = i;\n","// imported from https://github.com/galkn/querystring\n/**\n * Compiles a querystring\n * Returns string representation of the object\n *\n * @param {Object}\n * @api private\n */\nexport function encode(obj) {\n let str = '';\n for (let i in obj) {\n if (obj.hasOwnProperty(i)) {\n if (str.length)\n str += '&';\n str += encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]);\n }\n }\n return str;\n}\n/**\n * Parses a simple querystring into an object\n *\n * @param {String} qs\n * @api private\n */\nexport function decode(qs) {\n let qry = {};\n let pairs = qs.split('&');\n for (let i = 0, l = pairs.length; i < l; i++) {\n let pair = pairs[i].split('=');\n qry[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]);\n }\n return qry;\n}\n","// imported from https://github.com/component/has-cors\nlet value = false;\ntry {\n value = typeof XMLHttpRequest !== 'undefined' &&\n 'withCredentials' in new XMLHttpRequest();\n}\ncatch (err) {\n // if XMLHttp support is disabled in IE then it will throw\n // when trying to create\n}\nexport const hasCORS = value;\n","// browser shim for xmlhttprequest module\nimport { hasCORS } from \"../contrib/has-cors.js\";\nimport { globalThisShim as globalThis } from \"../globalThis.js\";\nexport function XHR(opts) {\n const xdomain = opts.xdomain;\n // XMLHttpRequest can be disabled on IE\n try {\n if (\"undefined\" !== typeof XMLHttpRequest && (!xdomain || hasCORS)) {\n return new XMLHttpRequest();\n }\n }\n catch (e) { }\n if (!xdomain) {\n try {\n return new globalThis[[\"Active\"].concat(\"Object\").join(\"X\")](\"Microsoft.XMLHTTP\");\n }\n catch (e) { }\n }\n}\n","import { Transport } from \"../transport.js\";\nimport { yeast } from \"../contrib/yeast.js\";\nimport { encode } from \"../contrib/parseqs.js\";\nimport { encodePayload, decodePayload } from \"engine.io-parser\";\nimport { XHR as XMLHttpRequest } from \"./xmlhttprequest.js\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { installTimerFunctions, pick } from \"../util.js\";\nimport { globalThisShim as globalThis } from \"../globalThis.js\";\nfunction empty() { }\nconst hasXHR2 = (function () {\n const xhr = new XMLHttpRequest({\n xdomain: false\n });\n return null != xhr.responseType;\n})();\nexport class Polling extends Transport {\n /**\n * XHR Polling constructor.\n *\n * @param {Object} opts\n * @api public\n */\n constructor(opts) {\n super(opts);\n this.polling = false;\n if (typeof location !== \"undefined\") {\n const isSSL = \"https:\" === location.protocol;\n let port = location.port;\n // some user agents have empty `location.port`\n if (!port) {\n port = isSSL ? \"443\" : \"80\";\n }\n this.xd =\n (typeof location !== \"undefined\" &&\n opts.hostname !== location.hostname) ||\n port !== opts.port;\n this.xs = opts.secure !== isSSL;\n }\n /**\n * XHR supports binary\n */\n const forceBase64 = opts && opts.forceBase64;\n this.supportsBinary = hasXHR2 && !forceBase64;\n }\n /**\n * Transport name.\n */\n get name() {\n return \"polling\";\n }\n /**\n * Opens the socket (triggers polling). We write a PING message to determine\n * when the transport is open.\n *\n * @api private\n */\n doOpen() {\n this.poll();\n }\n /**\n * Pauses polling.\n *\n * @param {Function} callback upon buffers are flushed and transport is paused\n * @api private\n */\n pause(onPause) {\n this.readyState = \"pausing\";\n const pause = () => {\n this.readyState = \"paused\";\n onPause();\n };\n if (this.polling || !this.writable) {\n let total = 0;\n if (this.polling) {\n total++;\n this.once(\"pollComplete\", function () {\n --total || pause();\n });\n }\n if (!this.writable) {\n total++;\n this.once(\"drain\", function () {\n --total || pause();\n });\n }\n }\n else {\n pause();\n }\n }\n /**\n * Starts polling cycle.\n *\n * @api public\n */\n poll() {\n this.polling = true;\n this.doPoll();\n this.emitReserved(\"poll\");\n }\n /**\n * Overloads onData to detect payloads.\n *\n * @api private\n */\n onData(data) {\n const callback = packet => {\n // if its the first message we consider the transport open\n if (\"opening\" === this.readyState && packet.type === \"open\") {\n this.onOpen();\n }\n // if its a close packet, we close the ongoing requests\n if (\"close\" === packet.type) {\n this.onClose({ description: \"transport closed by the server\" });\n return false;\n }\n // otherwise bypass onData and handle the message\n this.onPacket(packet);\n };\n // decode payload\n decodePayload(data, this.socket.binaryType).forEach(callback);\n // if an event did not trigger closing\n if (\"closed\" !== this.readyState) {\n // if we got data we're not polling\n this.polling = false;\n this.emitReserved(\"pollComplete\");\n if (\"open\" === this.readyState) {\n this.poll();\n }\n else {\n }\n }\n }\n /**\n * For polling, send a close packet.\n *\n * @api private\n */\n doClose() {\n const close = () => {\n this.write([{ type: \"close\" }]);\n };\n if (\"open\" === this.readyState) {\n close();\n }\n else {\n // in case we're trying to close while\n // handshaking is in progress (GH-164)\n this.once(\"open\", close);\n }\n }\n /**\n * Writes a packets payload.\n *\n * @param {Array} data packets\n * @param {Function} drain callback\n * @api private\n */\n write(packets) {\n this.writable = false;\n encodePayload(packets, data => {\n this.doWrite(data, () => {\n this.writable = true;\n this.emitReserved(\"drain\");\n });\n });\n }\n /**\n * Generates uri for connection.\n *\n * @api private\n */\n uri() {\n let query = this.query || {};\n const schema = this.opts.secure ? \"https\" : \"http\";\n let port = \"\";\n // cache busting is forced\n if (false !== this.opts.timestampRequests) {\n query[this.opts.timestampParam] = yeast();\n }\n if (!this.supportsBinary && !query.sid) {\n query.b64 = 1;\n }\n // avoid port if default for schema\n if (this.opts.port &&\n ((\"https\" === schema && Number(this.opts.port) !== 443) ||\n (\"http\" === schema && Number(this.opts.port) !== 80))) {\n port = \":\" + this.opts.port;\n }\n const encodedQuery = encode(query);\n const ipv6 = this.opts.hostname.indexOf(\":\") !== -1;\n return (schema +\n \"://\" +\n (ipv6 ? \"[\" + this.opts.hostname + \"]\" : this.opts.hostname) +\n port +\n this.opts.path +\n (encodedQuery.length ? \"?\" + encodedQuery : \"\"));\n }\n /**\n * Creates a request.\n *\n * @param {String} method\n * @api private\n */\n request(opts = {}) {\n Object.assign(opts, { xd: this.xd, xs: this.xs }, this.opts);\n return new Request(this.uri(), opts);\n }\n /**\n * Sends data.\n *\n * @param {String} data to send.\n * @param {Function} called upon flush.\n * @api private\n */\n doWrite(data, fn) {\n const req = this.request({\n method: \"POST\",\n data: data\n });\n req.on(\"success\", fn);\n req.on(\"error\", (xhrStatus, context) => {\n this.onError(\"xhr post error\", xhrStatus, context);\n });\n }\n /**\n * Starts a poll cycle.\n *\n * @api private\n */\n doPoll() {\n const req = this.request();\n req.on(\"data\", this.onData.bind(this));\n req.on(\"error\", (xhrStatus, context) => {\n this.onError(\"xhr poll error\", xhrStatus, context);\n });\n this.pollXhr = req;\n }\n}\nexport class Request extends Emitter {\n /**\n * Request constructor\n *\n * @param {Object} options\n * @api public\n */\n constructor(uri, opts) {\n super();\n installTimerFunctions(this, opts);\n this.opts = opts;\n this.method = opts.method || \"GET\";\n this.uri = uri;\n this.async = false !== opts.async;\n this.data = undefined !== opts.data ? opts.data : null;\n this.create();\n }\n /**\n * Creates the XHR object and sends the request.\n *\n * @api private\n */\n create() {\n const opts = pick(this.opts, \"agent\", \"pfx\", \"key\", \"passphrase\", \"cert\", \"ca\", \"ciphers\", \"rejectUnauthorized\", \"autoUnref\");\n opts.xdomain = !!this.opts.xd;\n opts.xscheme = !!this.opts.xs;\n const xhr = (this.xhr = new XMLHttpRequest(opts));\n try {\n xhr.open(this.method, this.uri, this.async);\n try {\n if (this.opts.extraHeaders) {\n xhr.setDisableHeaderCheck && xhr.setDisableHeaderCheck(true);\n for (let i in this.opts.extraHeaders) {\n if (this.opts.extraHeaders.hasOwnProperty(i)) {\n xhr.setRequestHeader(i, this.opts.extraHeaders[i]);\n }\n }\n }\n }\n catch (e) { }\n if (\"POST\" === this.method) {\n try {\n xhr.setRequestHeader(\"Content-type\", \"text/plain;charset=UTF-8\");\n }\n catch (e) { }\n }\n try {\n xhr.setRequestHeader(\"Accept\", \"*/*\");\n }\n catch (e) { }\n // ie6 check\n if (\"withCredentials\" in xhr) {\n xhr.withCredentials = this.opts.withCredentials;\n }\n if (this.opts.requestTimeout) {\n xhr.timeout = this.opts.requestTimeout;\n }\n xhr.onreadystatechange = () => {\n if (4 !== xhr.readyState)\n return;\n if (200 === xhr.status || 1223 === xhr.status) {\n this.onLoad();\n }\n else {\n // make sure the `error` event handler that's user-set\n // does not throw in the same tick and gets caught here\n this.setTimeoutFn(() => {\n this.onError(typeof xhr.status === \"number\" ? xhr.status : 0);\n }, 0);\n }\n };\n xhr.send(this.data);\n }\n catch (e) {\n // Need to defer since .create() is called directly from the constructor\n // and thus the 'error' event can only be only bound *after* this exception\n // occurs. Therefore, also, we cannot throw here at all.\n this.setTimeoutFn(() => {\n this.onError(e);\n }, 0);\n return;\n }\n if (typeof document !== \"undefined\") {\n this.index = Request.requestsCount++;\n Request.requests[this.index] = this;\n }\n }\n /**\n * Called upon error.\n *\n * @api private\n */\n onError(err) {\n this.emitReserved(\"error\", err, this.xhr);\n this.cleanup(true);\n }\n /**\n * Cleans up house.\n *\n * @api private\n */\n cleanup(fromError) {\n if (\"undefined\" === typeof this.xhr || null === this.xhr) {\n return;\n }\n this.xhr.onreadystatechange = empty;\n if (fromError) {\n try {\n this.xhr.abort();\n }\n catch (e) { }\n }\n if (typeof document !== \"undefined\") {\n delete Request.requests[this.index];\n }\n this.xhr = null;\n }\n /**\n * Called upon load.\n *\n * @api private\n */\n onLoad() {\n const data = this.xhr.responseText;\n if (data !== null) {\n this.emitReserved(\"data\", data);\n this.emitReserved(\"success\");\n this.cleanup();\n }\n }\n /**\n * Aborts the request.\n *\n * @api public\n */\n abort() {\n this.cleanup();\n }\n}\nRequest.requestsCount = 0;\nRequest.requests = {};\n/**\n * Aborts pending requests when unloading the window. This is needed to prevent\n * memory leaks (e.g. when using IE) and to ensure that no spurious error is\n * emitted.\n */\nif (typeof document !== \"undefined\") {\n // @ts-ignore\n if (typeof attachEvent === \"function\") {\n // @ts-ignore\n attachEvent(\"onunload\", unloadHandler);\n }\n else if (typeof addEventListener === \"function\") {\n const terminationEvent = \"onpagehide\" in globalThis ? \"pagehide\" : \"unload\";\n addEventListener(terminationEvent, unloadHandler, false);\n }\n}\nfunction unloadHandler() {\n for (let i in Request.requests) {\n if (Request.requests.hasOwnProperty(i)) {\n Request.requests[i].abort();\n }\n }\n}\n","import { globalThisShim as globalThis } from \"../globalThis.js\";\nexport const nextTick = (() => {\n const isPromiseAvailable = typeof Promise === \"function\" && typeof Promise.resolve === \"function\";\n if (isPromiseAvailable) {\n return cb => Promise.resolve().then(cb);\n }\n else {\n return (cb, setTimeoutFn) => setTimeoutFn(cb, 0);\n }\n})();\nexport const WebSocket = globalThis.WebSocket || globalThis.MozWebSocket;\nexport const usingBrowserWebSocket = true;\nexport const defaultBinaryType = \"arraybuffer\";\n","import { Transport } from \"../transport.js\";\nimport { encode } from \"../contrib/parseqs.js\";\nimport { yeast } from \"../contrib/yeast.js\";\nimport { pick } from \"../util.js\";\nimport { defaultBinaryType, nextTick, usingBrowserWebSocket, WebSocket } from \"./websocket-constructor.js\";\nimport { encodePacket } from \"engine.io-parser\";\n// detect ReactNative environment\nconst isReactNative = typeof navigator !== \"undefined\" &&\n typeof navigator.product === \"string\" &&\n navigator.product.toLowerCase() === \"reactnative\";\nexport class WS extends Transport {\n /**\n * WebSocket transport constructor.\n *\n * @api {Object} connection options\n * @api public\n */\n constructor(opts) {\n super(opts);\n this.supportsBinary = !opts.forceBase64;\n }\n /**\n * Transport name.\n *\n * @api public\n */\n get name() {\n return \"websocket\";\n }\n /**\n * Opens socket.\n *\n * @api private\n */\n doOpen() {\n if (!this.check()) {\n // let probe timeout\n return;\n }\n const uri = this.uri();\n const protocols = this.opts.protocols;\n // React Native only supports the 'headers' option, and will print a warning if anything else is passed\n const opts = isReactNative\n ? {}\n : pick(this.opts, \"agent\", \"perMessageDeflate\", \"pfx\", \"key\", \"passphrase\", \"cert\", \"ca\", \"ciphers\", \"rejectUnauthorized\", \"localAddress\", \"protocolVersion\", \"origin\", \"maxPayload\", \"family\", \"checkServerIdentity\");\n if (this.opts.extraHeaders) {\n opts.headers = this.opts.extraHeaders;\n }\n try {\n this.ws =\n usingBrowserWebSocket && !isReactNative\n ? protocols\n ? new WebSocket(uri, protocols)\n : new WebSocket(uri)\n : new WebSocket(uri, protocols, opts);\n }\n catch (err) {\n return this.emitReserved(\"error\", err);\n }\n this.ws.binaryType = this.socket.binaryType || defaultBinaryType;\n this.addEventListeners();\n }\n /**\n * Adds event listeners to the socket\n *\n * @api private\n */\n addEventListeners() {\n this.ws.onopen = () => {\n if (this.opts.autoUnref) {\n this.ws._socket.unref();\n }\n this.onOpen();\n };\n this.ws.onclose = closeEvent => this.onClose({\n description: \"websocket connection closed\",\n context: closeEvent\n });\n this.ws.onmessage = ev => this.onData(ev.data);\n this.ws.onerror = e => this.onError(\"websocket error\", e);\n }\n /**\n * Writes data to socket.\n *\n * @param {Array} array of packets.\n * @api private\n */\n write(packets) {\n this.writable = false;\n // encodePacket efficient as it uses WS framing\n // no need for encodePayload\n for (let i = 0; i < packets.length; i++) {\n const packet = packets[i];\n const lastPacket = i === packets.length - 1;\n encodePacket(packet, this.supportsBinary, data => {\n // always create a new object (GH-437)\n const opts = {};\n if (!usingBrowserWebSocket) {\n if (packet.options) {\n opts.compress = packet.options.compress;\n }\n if (this.opts.perMessageDeflate) {\n const len = \n // @ts-ignore\n \"string\" === typeof data ? Buffer.byteLength(data) : data.length;\n if (len < this.opts.perMessageDeflate.threshold) {\n opts.compress = false;\n }\n }\n }\n // Sometimes the websocket has already been closed but the browser didn't\n // have a chance of informing us about it yet, in that case send will\n // throw an error\n try {\n if (usingBrowserWebSocket) {\n // TypeError is thrown when passing the second argument on Safari\n this.ws.send(data);\n }\n else {\n this.ws.send(data, opts);\n }\n }\n catch (e) {\n }\n if (lastPacket) {\n // fake drain\n // defer to next tick to allow Socket to clear writeBuffer\n nextTick(() => {\n this.writable = true;\n this.emitReserved(\"drain\");\n }, this.setTimeoutFn);\n }\n });\n }\n }\n /**\n * Closes socket.\n *\n * @api private\n */\n doClose() {\n if (typeof this.ws !== \"undefined\") {\n this.ws.close();\n this.ws = null;\n }\n }\n /**\n * Generates uri for connection.\n *\n * @api private\n */\n uri() {\n let query = this.query || {};\n const schema = this.opts.secure ? \"wss\" : \"ws\";\n let port = \"\";\n // avoid port if default for schema\n if (this.opts.port &&\n ((\"wss\" === schema && Number(this.opts.port) !== 443) ||\n (\"ws\" === schema && Number(this.opts.port) !== 80))) {\n port = \":\" + this.opts.port;\n }\n // append timestamp to URI\n if (this.opts.timestampRequests) {\n query[this.opts.timestampParam] = yeast();\n }\n // communicate binary support capabilities\n if (!this.supportsBinary) {\n query.b64 = 1;\n }\n const encodedQuery = encode(query);\n const ipv6 = this.opts.hostname.indexOf(\":\") !== -1;\n return (schema +\n \"://\" +\n (ipv6 ? \"[\" + this.opts.hostname + \"]\" : this.opts.hostname) +\n port +\n this.opts.path +\n (encodedQuery.length ? \"?\" + encodedQuery : \"\"));\n }\n /**\n * Feature detection for WebSocket.\n *\n * @return {Boolean} whether this transport is available.\n * @api public\n */\n check() {\n return !!WebSocket;\n }\n}\n","import { Polling } from \"./polling.js\";\nimport { WS } from \"./websocket.js\";\nexport const transports = {\n websocket: WS,\n polling: Polling\n};\n","// imported from https://github.com/galkn/parseuri\n/**\n * Parses an URI\n *\n * @author Steven Levithan (MIT license)\n * @api private\n */\nconst re = /^(?:(?![^:@]+:[^:@\\/]*@)(http|https|ws|wss):\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/;\nconst parts = [\n 'source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'\n];\nexport function parse(str) {\n const src = str, b = str.indexOf('['), e = str.indexOf(']');\n if (b != -1 && e != -1) {\n str = str.substring(0, b) + str.substring(b, e).replace(/:/g, ';') + str.substring(e, str.length);\n }\n let m = re.exec(str || ''), uri = {}, i = 14;\n while (i--) {\n uri[parts[i]] = m[i] || '';\n }\n if (b != -1 && e != -1) {\n uri.source = src;\n uri.host = uri.host.substring(1, uri.host.length - 1).replace(/;/g, ':');\n uri.authority = uri.authority.replace('[', '').replace(']', '').replace(/;/g, ':');\n uri.ipv6uri = true;\n }\n uri.pathNames = pathNames(uri, uri['path']);\n uri.queryKey = queryKey(uri, uri['query']);\n return uri;\n}\nfunction pathNames(obj, path) {\n const regx = /\\/{2,9}/g, names = path.replace(regx, \"/\").split(\"/\");\n if (path.slice(0, 1) == '/' || path.length === 0) {\n names.splice(0, 1);\n }\n if (path.slice(-1) == '/') {\n names.splice(names.length - 1, 1);\n }\n return names;\n}\nfunction queryKey(uri, query) {\n const data = {};\n query.replace(/(?:^|&)([^&=]*)=?([^&]*)/g, function ($0, $1, $2) {\n if ($1) {\n data[$1] = $2;\n }\n });\n return data;\n}\n","import { transports } from \"./transports/index.js\";\nimport { installTimerFunctions, byteLength } from \"./util.js\";\nimport { decode } from \"./contrib/parseqs.js\";\nimport { parse } from \"./contrib/parseuri.js\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { protocol } from \"engine.io-parser\";\nexport class Socket extends Emitter {\n /**\n * Socket constructor.\n *\n * @param {String|Object} uri or options\n * @param {Object} opts - options\n * @api public\n */\n constructor(uri, opts = {}) {\n super();\n if (uri && \"object\" === typeof uri) {\n opts = uri;\n uri = null;\n }\n if (uri) {\n uri = parse(uri);\n opts.hostname = uri.host;\n opts.secure = uri.protocol === \"https\" || uri.protocol === \"wss\";\n opts.port = uri.port;\n if (uri.query)\n opts.query = uri.query;\n }\n else if (opts.host) {\n opts.hostname = parse(opts.host).host;\n }\n installTimerFunctions(this, opts);\n this.secure =\n null != opts.secure\n ? opts.secure\n : typeof location !== \"undefined\" && \"https:\" === location.protocol;\n if (opts.hostname && !opts.port) {\n // if no port is specified manually, use the protocol default\n opts.port = this.secure ? \"443\" : \"80\";\n }\n this.hostname =\n opts.hostname ||\n (typeof location !== \"undefined\" ? location.hostname : \"localhost\");\n this.port =\n opts.port ||\n (typeof location !== \"undefined\" && location.port\n ? location.port\n : this.secure\n ? \"443\"\n : \"80\");\n this.transports = opts.transports || [\"polling\", \"websocket\"];\n this.readyState = \"\";\n this.writeBuffer = [];\n this.prevBufferLen = 0;\n this.opts = Object.assign({\n path: \"/engine.io\",\n agent: false,\n withCredentials: false,\n upgrade: true,\n timestampParam: \"t\",\n rememberUpgrade: false,\n rejectUnauthorized: true,\n perMessageDeflate: {\n threshold: 1024\n },\n transportOptions: {},\n closeOnBeforeunload: true\n }, opts);\n this.opts.path = this.opts.path.replace(/\\/$/, \"\") + \"/\";\n if (typeof this.opts.query === \"string\") {\n this.opts.query = decode(this.opts.query);\n }\n // set on handshake\n this.id = null;\n this.upgrades = null;\n this.pingInterval = null;\n this.pingTimeout = null;\n // set on heartbeat\n this.pingTimeoutTimer = null;\n if (typeof addEventListener === \"function\") {\n if (this.opts.closeOnBeforeunload) {\n // Firefox closes the connection when the \"beforeunload\" event is emitted but not Chrome. This event listener\n // ensures every browser behaves the same (no \"disconnect\" event at the Socket.IO level when the page is\n // closed/reloaded)\n this.beforeunloadEventListener = () => {\n if (this.transport) {\n // silently close the transport\n this.transport.removeAllListeners();\n this.transport.close();\n }\n };\n addEventListener(\"beforeunload\", this.beforeunloadEventListener, false);\n }\n if (this.hostname !== \"localhost\") {\n this.offlineEventListener = () => {\n this.onClose(\"transport close\", {\n description: \"network connection lost\"\n });\n };\n addEventListener(\"offline\", this.offlineEventListener, false);\n }\n }\n this.open();\n }\n /**\n * Creates transport of the given type.\n *\n * @param {String} transport name\n * @return {Transport}\n * @api private\n */\n createTransport(name) {\n const query = Object.assign({}, this.opts.query);\n // append engine.io protocol identifier\n query.EIO = protocol;\n // transport name\n query.transport = name;\n // session id if we already have one\n if (this.id)\n query.sid = this.id;\n const opts = Object.assign({}, this.opts.transportOptions[name], this.opts, {\n query,\n socket: this,\n hostname: this.hostname,\n secure: this.secure,\n port: this.port\n });\n return new transports[name](opts);\n }\n /**\n * Initializes transport to use and starts probe.\n *\n * @api private\n */\n open() {\n let transport;\n if (this.opts.rememberUpgrade &&\n Socket.priorWebsocketSuccess &&\n this.transports.indexOf(\"websocket\") !== -1) {\n transport = \"websocket\";\n }\n else if (0 === this.transports.length) {\n // Emit error on next tick so it can be listened to\n this.setTimeoutFn(() => {\n this.emitReserved(\"error\", \"No transports available\");\n }, 0);\n return;\n }\n else {\n transport = this.transports[0];\n }\n this.readyState = \"opening\";\n // Retry with the next transport if the transport is disabled (jsonp: false)\n try {\n transport = this.createTransport(transport);\n }\n catch (e) {\n this.transports.shift();\n this.open();\n return;\n }\n transport.open();\n this.setTransport(transport);\n }\n /**\n * Sets the current transport. Disables the existing one (if any).\n *\n * @api private\n */\n setTransport(transport) {\n if (this.transport) {\n this.transport.removeAllListeners();\n }\n // set up transport\n this.transport = transport;\n // set up transport listeners\n transport\n .on(\"drain\", this.onDrain.bind(this))\n .on(\"packet\", this.onPacket.bind(this))\n .on(\"error\", this.onError.bind(this))\n .on(\"close\", reason => this.onClose(\"transport close\", reason));\n }\n /**\n * Probes a transport.\n *\n * @param {String} transport name\n * @api private\n */\n probe(name) {\n let transport = this.createTransport(name);\n let failed = false;\n Socket.priorWebsocketSuccess = false;\n const onTransportOpen = () => {\n if (failed)\n return;\n transport.send([{ type: \"ping\", data: \"probe\" }]);\n transport.once(\"packet\", msg => {\n if (failed)\n return;\n if (\"pong\" === msg.type && \"probe\" === msg.data) {\n this.upgrading = true;\n this.emitReserved(\"upgrading\", transport);\n if (!transport)\n return;\n Socket.priorWebsocketSuccess = \"websocket\" === transport.name;\n this.transport.pause(() => {\n if (failed)\n return;\n if (\"closed\" === this.readyState)\n return;\n cleanup();\n this.setTransport(transport);\n transport.send([{ type: \"upgrade\" }]);\n this.emitReserved(\"upgrade\", transport);\n transport = null;\n this.upgrading = false;\n this.flush();\n });\n }\n else {\n const err = new Error(\"probe error\");\n // @ts-ignore\n err.transport = transport.name;\n this.emitReserved(\"upgradeError\", err);\n }\n });\n };\n function freezeTransport() {\n if (failed)\n return;\n // Any callback called by transport should be ignored since now\n failed = true;\n cleanup();\n transport.close();\n transport = null;\n }\n // Handle any error that happens while probing\n const onerror = err => {\n const error = new Error(\"probe error: \" + err);\n // @ts-ignore\n error.transport = transport.name;\n freezeTransport();\n this.emitReserved(\"upgradeError\", error);\n };\n function onTransportClose() {\n onerror(\"transport closed\");\n }\n // When the socket is closed while we're probing\n function onclose() {\n onerror(\"socket closed\");\n }\n // When the socket is upgraded while we're probing\n function onupgrade(to) {\n if (transport && to.name !== transport.name) {\n freezeTransport();\n }\n }\n // Remove all listeners on the transport and on self\n const cleanup = () => {\n transport.removeListener(\"open\", onTransportOpen);\n transport.removeListener(\"error\", onerror);\n transport.removeListener(\"close\", onTransportClose);\n this.off(\"close\", onclose);\n this.off(\"upgrading\", onupgrade);\n };\n transport.once(\"open\", onTransportOpen);\n transport.once(\"error\", onerror);\n transport.once(\"close\", onTransportClose);\n this.once(\"close\", onclose);\n this.once(\"upgrading\", onupgrade);\n transport.open();\n }\n /**\n * Called when connection is deemed open.\n *\n * @api private\n */\n onOpen() {\n this.readyState = \"open\";\n Socket.priorWebsocketSuccess = \"websocket\" === this.transport.name;\n this.emitReserved(\"open\");\n this.flush();\n // we check for `readyState` in case an `open`\n // listener already closed the socket\n if (\"open\" === this.readyState &&\n this.opts.upgrade &&\n this.transport.pause) {\n let i = 0;\n const l = this.upgrades.length;\n for (; i < l; i++) {\n this.probe(this.upgrades[i]);\n }\n }\n }\n /**\n * Handles a packet.\n *\n * @api private\n */\n onPacket(packet) {\n if (\"opening\" === this.readyState ||\n \"open\" === this.readyState ||\n \"closing\" === this.readyState) {\n this.emitReserved(\"packet\", packet);\n // Socket is live - any packet counts\n this.emitReserved(\"heartbeat\");\n switch (packet.type) {\n case \"open\":\n this.onHandshake(JSON.parse(packet.data));\n break;\n case \"ping\":\n this.resetPingTimeout();\n this.sendPacket(\"pong\");\n this.emitReserved(\"ping\");\n this.emitReserved(\"pong\");\n break;\n case \"error\":\n const err = new Error(\"server error\");\n // @ts-ignore\n err.code = packet.data;\n this.onError(err);\n break;\n case \"message\":\n this.emitReserved(\"data\", packet.data);\n this.emitReserved(\"message\", packet.data);\n break;\n }\n }\n else {\n }\n }\n /**\n * Called upon handshake completion.\n *\n * @param {Object} data - handshake obj\n * @api private\n */\n onHandshake(data) {\n this.emitReserved(\"handshake\", data);\n this.id = data.sid;\n this.transport.query.sid = data.sid;\n this.upgrades = this.filterUpgrades(data.upgrades);\n this.pingInterval = data.pingInterval;\n this.pingTimeout = data.pingTimeout;\n this.maxPayload = data.maxPayload;\n this.onOpen();\n // In case open handler closes socket\n if (\"closed\" === this.readyState)\n return;\n this.resetPingTimeout();\n }\n /**\n * Sets and resets ping timeout timer based on server pings.\n *\n * @api private\n */\n resetPingTimeout() {\n this.clearTimeoutFn(this.pingTimeoutTimer);\n this.pingTimeoutTimer = this.setTimeoutFn(() => {\n this.onClose(\"ping timeout\");\n }, this.pingInterval + this.pingTimeout);\n if (this.opts.autoUnref) {\n this.pingTimeoutTimer.unref();\n }\n }\n /**\n * Called on `drain` event\n *\n * @api private\n */\n onDrain() {\n this.writeBuffer.splice(0, this.prevBufferLen);\n // setting prevBufferLen = 0 is very important\n // for example, when upgrading, upgrade packet is sent over,\n // and a nonzero prevBufferLen could cause problems on `drain`\n this.prevBufferLen = 0;\n if (0 === this.writeBuffer.length) {\n this.emitReserved(\"drain\");\n }\n else {\n this.flush();\n }\n }\n /**\n * Flush write buffers.\n *\n * @api private\n */\n flush() {\n if (\"closed\" !== this.readyState &&\n this.transport.writable &&\n !this.upgrading &&\n this.writeBuffer.length) {\n const packets = this.getWritablePackets();\n this.transport.send(packets);\n // keep track of current length of writeBuffer\n // splice writeBuffer and callbackBuffer on `drain`\n this.prevBufferLen = packets.length;\n this.emitReserved(\"flush\");\n }\n }\n /**\n * Ensure the encoded size of the writeBuffer is below the maxPayload value sent by the server (only for HTTP\n * long-polling)\n *\n * @private\n */\n getWritablePackets() {\n const shouldCheckPayloadSize = this.maxPayload &&\n this.transport.name === \"polling\" &&\n this.writeBuffer.length > 1;\n if (!shouldCheckPayloadSize) {\n return this.writeBuffer;\n }\n let payloadSize = 1; // first packet type\n for (let i = 0; i < this.writeBuffer.length; i++) {\n const data = this.writeBuffer[i].data;\n if (data) {\n payloadSize += byteLength(data);\n }\n if (i > 0 && payloadSize > this.maxPayload) {\n return this.writeBuffer.slice(0, i);\n }\n payloadSize += 2; // separator + packet type\n }\n return this.writeBuffer;\n }\n /**\n * Sends a message.\n *\n * @param {String} message.\n * @param {Function} callback function.\n * @param {Object} options.\n * @return {Socket} for chaining.\n * @api public\n */\n write(msg, options, fn) {\n this.sendPacket(\"message\", msg, options, fn);\n return this;\n }\n send(msg, options, fn) {\n this.sendPacket(\"message\", msg, options, fn);\n return this;\n }\n /**\n * Sends a packet.\n *\n * @param {String} packet type.\n * @param {String} data.\n * @param {Object} options.\n * @param {Function} callback function.\n * @api private\n */\n sendPacket(type, data, options, fn) {\n if (\"function\" === typeof data) {\n fn = data;\n data = undefined;\n }\n if (\"function\" === typeof options) {\n fn = options;\n options = null;\n }\n if (\"closing\" === this.readyState || \"closed\" === this.readyState) {\n return;\n }\n options = options || {};\n options.compress = false !== options.compress;\n const packet = {\n type: type,\n data: data,\n options: options\n };\n this.emitReserved(\"packetCreate\", packet);\n this.writeBuffer.push(packet);\n if (fn)\n this.once(\"flush\", fn);\n this.flush();\n }\n /**\n * Closes the connection.\n *\n * @api public\n */\n close() {\n const close = () => {\n this.onClose(\"forced close\");\n this.transport.close();\n };\n const cleanupAndClose = () => {\n this.off(\"upgrade\", cleanupAndClose);\n this.off(\"upgradeError\", cleanupAndClose);\n close();\n };\n const waitForUpgrade = () => {\n // wait for upgrade to finish since we can't send packets while pausing a transport\n this.once(\"upgrade\", cleanupAndClose);\n this.once(\"upgradeError\", cleanupAndClose);\n };\n if (\"opening\" === this.readyState || \"open\" === this.readyState) {\n this.readyState = \"closing\";\n if (this.writeBuffer.length) {\n this.once(\"drain\", () => {\n if (this.upgrading) {\n waitForUpgrade();\n }\n else {\n close();\n }\n });\n }\n else if (this.upgrading) {\n waitForUpgrade();\n }\n else {\n close();\n }\n }\n return this;\n }\n /**\n * Called upon transport error\n *\n * @api private\n */\n onError(err) {\n Socket.priorWebsocketSuccess = false;\n this.emitReserved(\"error\", err);\n this.onClose(\"transport error\", err);\n }\n /**\n * Called upon transport close.\n *\n * @api private\n */\n onClose(reason, description) {\n if (\"opening\" === this.readyState ||\n \"open\" === this.readyState ||\n \"closing\" === this.readyState) {\n // clear timers\n this.clearTimeoutFn(this.pingTimeoutTimer);\n // stop event from firing again for transport\n this.transport.removeAllListeners(\"close\");\n // ensure transport won't stay open\n this.transport.close();\n // ignore further transport communication\n this.transport.removeAllListeners();\n if (typeof removeEventListener === \"function\") {\n removeEventListener(\"beforeunload\", this.beforeunloadEventListener, false);\n removeEventListener(\"offline\", this.offlineEventListener, false);\n }\n // set ready state\n this.readyState = \"closed\";\n // clear session id\n this.id = null;\n // emit close event\n this.emitReserved(\"close\", reason, description);\n // clean buffers after, so users can still\n // grab the buffers on `close` event\n this.writeBuffer = [];\n this.prevBufferLen = 0;\n }\n }\n /**\n * Filters upgrades, returning only those matching client transports.\n *\n * @param {Array} server upgrades\n * @api private\n *\n */\n filterUpgrades(upgrades) {\n const filteredUpgrades = [];\n let i = 0;\n const j = upgrades.length;\n for (; i < j; i++) {\n if (~this.transports.indexOf(upgrades[i]))\n filteredUpgrades.push(upgrades[i]);\n }\n return filteredUpgrades;\n }\n}\nSocket.protocol = protocol;\n","import { Socket } from \"./socket.js\";\nexport { Socket };\nexport const protocol = Socket.protocol;\nexport { Transport } from \"./transport.js\";\nexport { transports } from \"./transports/index.js\";\nexport { installTimerFunctions } from \"./util.js\";\nexport { parse } from \"./contrib/parseuri.js\";\nexport { nextTick } from \"./transports/websocket-constructor.js\";\n","import { parse } from \"engine.io-client\";\n/**\n * URL parser.\n *\n * @param uri - url\n * @param path - the request path of the connection\n * @param loc - An object meant to mimic window.location.\n * Defaults to window.location.\n * @public\n */\nexport function url(uri, path = \"\", loc) {\n let obj = uri;\n // default to window.location\n loc = loc || (typeof location !== \"undefined\" && location);\n if (null == uri)\n uri = loc.protocol + \"//\" + loc.host;\n // relative path support\n if (typeof uri === \"string\") {\n if (\"/\" === uri.charAt(0)) {\n if (\"/\" === uri.charAt(1)) {\n uri = loc.protocol + uri;\n }\n else {\n uri = loc.host + uri;\n }\n }\n if (!/^(https?|wss?):\\/\\//.test(uri)) {\n if (\"undefined\" !== typeof loc) {\n uri = loc.protocol + \"//\" + uri;\n }\n else {\n uri = \"https://\" + uri;\n }\n }\n // parse\n obj = parse(uri);\n }\n // make sure we treat `localhost:80` and `localhost` equally\n if (!obj.port) {\n if (/^(http|ws)$/.test(obj.protocol)) {\n obj.port = \"80\";\n }\n else if (/^(http|ws)s$/.test(obj.protocol)) {\n obj.port = \"443\";\n }\n }\n obj.path = obj.path || \"/\";\n const ipv6 = obj.host.indexOf(\":\") !== -1;\n const host = ipv6 ? \"[\" + obj.host + \"]\" : obj.host;\n // define unique id\n obj.id = obj.protocol + \"://\" + host + \":\" + obj.port + path;\n // define href\n obj.href =\n obj.protocol +\n \"://\" +\n host +\n (loc && loc.port === obj.port ? \"\" : \":\" + obj.port);\n return obj;\n}\n","const withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\nconst isView = (obj) => {\n return typeof ArrayBuffer.isView === \"function\"\n ? ArrayBuffer.isView(obj)\n : obj.buffer instanceof ArrayBuffer;\n};\nconst toString = Object.prototype.toString;\nconst withNativeBlob = typeof Blob === \"function\" ||\n (typeof Blob !== \"undefined\" &&\n toString.call(Blob) === \"[object BlobConstructor]\");\nconst withNativeFile = typeof File === \"function\" ||\n (typeof File !== \"undefined\" &&\n toString.call(File) === \"[object FileConstructor]\");\n/**\n * Returns true if obj is a Buffer, an ArrayBuffer, a Blob or a File.\n *\n * @private\n */\nexport function isBinary(obj) {\n return ((withNativeArrayBuffer && (obj instanceof ArrayBuffer || isView(obj))) ||\n (withNativeBlob && obj instanceof Blob) ||\n (withNativeFile && obj instanceof File));\n}\nexport function hasBinary(obj, toJSON) {\n if (!obj || typeof obj !== \"object\") {\n return false;\n }\n if (Array.isArray(obj)) {\n for (let i = 0, l = obj.length; i < l; i++) {\n if (hasBinary(obj[i])) {\n return true;\n }\n }\n return false;\n }\n if (isBinary(obj)) {\n return true;\n }\n if (obj.toJSON &&\n typeof obj.toJSON === \"function\" &&\n arguments.length === 1) {\n return hasBinary(obj.toJSON(), true);\n }\n for (const key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key) && hasBinary(obj[key])) {\n return true;\n }\n }\n return false;\n}\n","import { isBinary } from \"./is-binary.js\";\n/**\n * Replaces every Buffer | ArrayBuffer | Blob | File in packet with a numbered placeholder.\n *\n * @param {Object} packet - socket.io event packet\n * @return {Object} with deconstructed packet and list of buffers\n * @public\n */\nexport function deconstructPacket(packet) {\n const buffers = [];\n const packetData = packet.data;\n const pack = packet;\n pack.data = _deconstructPacket(packetData, buffers);\n pack.attachments = buffers.length; // number of binary 'attachments'\n return { packet: pack, buffers: buffers };\n}\nfunction _deconstructPacket(data, buffers) {\n if (!data)\n return data;\n if (isBinary(data)) {\n const placeholder = { _placeholder: true, num: buffers.length };\n buffers.push(data);\n return placeholder;\n }\n else if (Array.isArray(data)) {\n const newData = new Array(data.length);\n for (let i = 0; i < data.length; i++) {\n newData[i] = _deconstructPacket(data[i], buffers);\n }\n return newData;\n }\n else if (typeof data === \"object\" && !(data instanceof Date)) {\n const newData = {};\n for (const key in data) {\n if (Object.prototype.hasOwnProperty.call(data, key)) {\n newData[key] = _deconstructPacket(data[key], buffers);\n }\n }\n return newData;\n }\n return data;\n}\n/**\n * Reconstructs a binary packet from its placeholder packet and buffers\n *\n * @param {Object} packet - event packet with placeholders\n * @param {Array} buffers - binary buffers to put in placeholder positions\n * @return {Object} reconstructed packet\n * @public\n */\nexport function reconstructPacket(packet, buffers) {\n packet.data = _reconstructPacket(packet.data, buffers);\n packet.attachments = undefined; // no longer useful\n return packet;\n}\nfunction _reconstructPacket(data, buffers) {\n if (!data)\n return data;\n if (data && data._placeholder) {\n return buffers[data.num]; // appropriate buffer (should be natural order anyway)\n }\n else if (Array.isArray(data)) {\n for (let i = 0; i < data.length; i++) {\n data[i] = _reconstructPacket(data[i], buffers);\n }\n }\n else if (typeof data === \"object\") {\n for (const key in data) {\n if (Object.prototype.hasOwnProperty.call(data, key)) {\n data[key] = _reconstructPacket(data[key], buffers);\n }\n }\n }\n return data;\n}\n","import { Emitter } from \"@socket.io/component-emitter\";\nimport { deconstructPacket, reconstructPacket } from \"./binary.js\";\nimport { isBinary, hasBinary } from \"./is-binary.js\";\n/**\n * Protocol version.\n *\n * @public\n */\nexport const protocol = 5;\nexport var PacketType;\n(function (PacketType) {\n PacketType[PacketType[\"CONNECT\"] = 0] = \"CONNECT\";\n PacketType[PacketType[\"DISCONNECT\"] = 1] = \"DISCONNECT\";\n PacketType[PacketType[\"EVENT\"] = 2] = \"EVENT\";\n PacketType[PacketType[\"ACK\"] = 3] = \"ACK\";\n PacketType[PacketType[\"CONNECT_ERROR\"] = 4] = \"CONNECT_ERROR\";\n PacketType[PacketType[\"BINARY_EVENT\"] = 5] = \"BINARY_EVENT\";\n PacketType[PacketType[\"BINARY_ACK\"] = 6] = \"BINARY_ACK\";\n})(PacketType || (PacketType = {}));\n/**\n * A socket.io Encoder instance\n */\nexport class Encoder {\n /**\n * Encoder constructor\n *\n * @param {function} replacer - custom replacer to pass down to JSON.parse\n */\n constructor(replacer) {\n this.replacer = replacer;\n }\n /**\n * Encode a packet as a single string if non-binary, or as a\n * buffer sequence, depending on packet type.\n *\n * @param {Object} obj - packet object\n */\n encode(obj) {\n if (obj.type === PacketType.EVENT || obj.type === PacketType.ACK) {\n if (hasBinary(obj)) {\n obj.type =\n obj.type === PacketType.EVENT\n ? PacketType.BINARY_EVENT\n : PacketType.BINARY_ACK;\n return this.encodeAsBinary(obj);\n }\n }\n return [this.encodeAsString(obj)];\n }\n /**\n * Encode packet as string.\n */\n encodeAsString(obj) {\n // first is type\n let str = \"\" + obj.type;\n // attachments if we have them\n if (obj.type === PacketType.BINARY_EVENT ||\n obj.type === PacketType.BINARY_ACK) {\n str += obj.attachments + \"-\";\n }\n // if we have a namespace other than `/`\n // we append it followed by a comma `,`\n if (obj.nsp && \"/\" !== obj.nsp) {\n str += obj.nsp + \",\";\n }\n // immediately followed by the id\n if (null != obj.id) {\n str += obj.id;\n }\n // json data\n if (null != obj.data) {\n str += JSON.stringify(obj.data, this.replacer);\n }\n return str;\n }\n /**\n * Encode packet as 'buffer sequence' by removing blobs, and\n * deconstructing packet into object with placeholders and\n * a list of buffers.\n */\n encodeAsBinary(obj) {\n const deconstruction = deconstructPacket(obj);\n const pack = this.encodeAsString(deconstruction.packet);\n const buffers = deconstruction.buffers;\n buffers.unshift(pack); // add packet info to beginning of data list\n return buffers; // write all the buffers\n }\n}\n/**\n * A socket.io Decoder instance\n *\n * @return {Object} decoder\n */\nexport class Decoder extends Emitter {\n /**\n * Decoder constructor\n *\n * @param {function} reviver - custom reviver to pass down to JSON.stringify\n */\n constructor(reviver) {\n super();\n this.reviver = reviver;\n }\n /**\n * Decodes an encoded packet string into packet JSON.\n *\n * @param {String} obj - encoded packet\n */\n add(obj) {\n let packet;\n if (typeof obj === \"string\") {\n packet = this.decodeString(obj);\n if (packet.type === PacketType.BINARY_EVENT ||\n packet.type === PacketType.BINARY_ACK) {\n // binary packet's json\n this.reconstructor = new BinaryReconstructor(packet);\n // no attachments, labeled binary but no binary data to follow\n if (packet.attachments === 0) {\n super.emitReserved(\"decoded\", packet);\n }\n }\n else {\n // non-binary full packet\n super.emitReserved(\"decoded\", packet);\n }\n }\n else if (isBinary(obj) || obj.base64) {\n // raw binary data\n if (!this.reconstructor) {\n throw new Error(\"got binary data when not reconstructing a packet\");\n }\n else {\n packet = this.reconstructor.takeBinaryData(obj);\n if (packet) {\n // received final buffer\n this.reconstructor = null;\n super.emitReserved(\"decoded\", packet);\n }\n }\n }\n else {\n throw new Error(\"Unknown type: \" + obj);\n }\n }\n /**\n * Decode a packet String (JSON data)\n *\n * @param {String} str\n * @return {Object} packet\n */\n decodeString(str) {\n let i = 0;\n // look up type\n const p = {\n type: Number(str.charAt(0)),\n };\n if (PacketType[p.type] === undefined) {\n throw new Error(\"unknown packet type \" + p.type);\n }\n // look up attachments if type binary\n if (p.type === PacketType.BINARY_EVENT ||\n p.type === PacketType.BINARY_ACK) {\n const start = i + 1;\n while (str.charAt(++i) !== \"-\" && i != str.length) { }\n const buf = str.substring(start, i);\n if (buf != Number(buf) || str.charAt(i) !== \"-\") {\n throw new Error(\"Illegal attachments\");\n }\n p.attachments = Number(buf);\n }\n // look up namespace (if any)\n if (\"/\" === str.charAt(i + 1)) {\n const start = i + 1;\n while (++i) {\n const c = str.charAt(i);\n if (\",\" === c)\n break;\n if (i === str.length)\n break;\n }\n p.nsp = str.substring(start, i);\n }\n else {\n p.nsp = \"/\";\n }\n // look up id\n const next = str.charAt(i + 1);\n if (\"\" !== next && Number(next) == next) {\n const start = i + 1;\n while (++i) {\n const c = str.charAt(i);\n if (null == c || Number(c) != c) {\n --i;\n break;\n }\n if (i === str.length)\n break;\n }\n p.id = Number(str.substring(start, i + 1));\n }\n // look up json data\n if (str.charAt(++i)) {\n const payload = this.tryParse(str.substr(i));\n if (Decoder.isPayloadValid(p.type, payload)) {\n p.data = payload;\n }\n else {\n throw new Error(\"invalid payload\");\n }\n }\n return p;\n }\n tryParse(str) {\n try {\n return JSON.parse(str, this.reviver);\n }\n catch (e) {\n return false;\n }\n }\n static isPayloadValid(type, payload) {\n switch (type) {\n case PacketType.CONNECT:\n return typeof payload === \"object\";\n case PacketType.DISCONNECT:\n return payload === undefined;\n case PacketType.CONNECT_ERROR:\n return typeof payload === \"string\" || typeof payload === \"object\";\n case PacketType.EVENT:\n case PacketType.BINARY_EVENT:\n return Array.isArray(payload) && payload.length > 0;\n case PacketType.ACK:\n case PacketType.BINARY_ACK:\n return Array.isArray(payload);\n }\n }\n /**\n * Deallocates a parser's resources\n */\n destroy() {\n if (this.reconstructor) {\n this.reconstructor.finishedReconstruction();\n }\n }\n}\n/**\n * A manager of a binary event's 'buffer sequence'. Should\n * be constructed whenever a packet of type BINARY_EVENT is\n * decoded.\n *\n * @param {Object} packet\n * @return {BinaryReconstructor} initialized reconstructor\n */\nclass BinaryReconstructor {\n constructor(packet) {\n this.packet = packet;\n this.buffers = [];\n this.reconPack = packet;\n }\n /**\n * Method to be called when binary data received from connection\n * after a BINARY_EVENT packet.\n *\n * @param {Buffer | ArrayBuffer} binData - the raw binary data received\n * @return {null | Object} returns null if more binary data is expected or\n * a reconstructed packet object if all buffers have been received.\n */\n takeBinaryData(binData) {\n this.buffers.push(binData);\n if (this.buffers.length === this.reconPack.attachments) {\n // done with buffer list\n const packet = reconstructPacket(this.reconPack, this.buffers);\n this.finishedReconstruction();\n return packet;\n }\n return null;\n }\n /**\n * Cleans up binary packet reconstruction variables.\n */\n finishedReconstruction() {\n this.reconPack = null;\n this.buffers = [];\n }\n}\n","export function on(obj, ev, fn) {\n obj.on(ev, fn);\n return function subDestroy() {\n obj.off(ev, fn);\n };\n}\n","import { PacketType } from \"socket.io-parser\";\nimport { on } from \"./on.js\";\nimport { Emitter, } from \"@socket.io/component-emitter\";\n/**\n * Internal events.\n * These events can't be emitted by the user.\n */\nconst RESERVED_EVENTS = Object.freeze({\n connect: 1,\n connect_error: 1,\n disconnect: 1,\n disconnecting: 1,\n // EventEmitter reserved events: https://nodejs.org/api/events.html#events_event_newlistener\n newListener: 1,\n removeListener: 1,\n});\n/**\n * A Socket is the fundamental class for interacting with the server.\n *\n * A Socket belongs to a certain Namespace (by default /) and uses an underlying {@link Manager} to communicate.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(\"connected\");\n * });\n *\n * // send an event to the server\n * socket.emit(\"foo\", \"bar\");\n *\n * socket.on(\"foobar\", () => {\n * // an event was received from the server\n * });\n *\n * // upon disconnection\n * socket.on(\"disconnect\", (reason) => {\n * console.log(`disconnected due to ${reason}`);\n * });\n */\nexport class Socket extends Emitter {\n /**\n * `Socket` constructor.\n */\n constructor(io, nsp, opts) {\n super();\n /**\n * Whether the socket is currently connected to the server.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(socket.connected); // true\n * });\n *\n * socket.on(\"disconnect\", () => {\n * console.log(socket.connected); // false\n * });\n */\n this.connected = false;\n /**\n * Buffer for packets received before the CONNECT packet\n */\n this.receiveBuffer = [];\n /**\n * Buffer for packets that will be sent once the socket is connected\n */\n this.sendBuffer = [];\n this.ids = 0;\n this.acks = {};\n this.flags = {};\n this.io = io;\n this.nsp = nsp;\n if (opts && opts.auth) {\n this.auth = opts.auth;\n }\n if (this.io._autoConnect)\n this.open();\n }\n /**\n * Whether the socket is currently disconnected\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(socket.disconnected); // false\n * });\n *\n * socket.on(\"disconnect\", () => {\n * console.log(socket.disconnected); // true\n * });\n */\n get disconnected() {\n return !this.connected;\n }\n /**\n * Subscribe to open, close and packet events\n *\n * @private\n */\n subEvents() {\n if (this.subs)\n return;\n const io = this.io;\n this.subs = [\n on(io, \"open\", this.onopen.bind(this)),\n on(io, \"packet\", this.onpacket.bind(this)),\n on(io, \"error\", this.onerror.bind(this)),\n on(io, \"close\", this.onclose.bind(this)),\n ];\n }\n /**\n * Whether the Socket will try to reconnect when its Manager connects or reconnects.\n *\n * @example\n * const socket = io();\n *\n * console.log(socket.active); // true\n *\n * socket.on(\"disconnect\", (reason) => {\n * if (reason === \"io server disconnect\") {\n * // the disconnection was initiated by the server, you need to manually reconnect\n * console.log(socket.active); // false\n * }\n * // else the socket will automatically try to reconnect\n * console.log(socket.active); // true\n * });\n */\n get active() {\n return !!this.subs;\n }\n /**\n * \"Opens\" the socket.\n *\n * @example\n * const socket = io({\n * autoConnect: false\n * });\n *\n * socket.connect();\n */\n connect() {\n if (this.connected)\n return this;\n this.subEvents();\n if (!this.io[\"_reconnecting\"])\n this.io.open(); // ensure open\n if (\"open\" === this.io._readyState)\n this.onopen();\n return this;\n }\n /**\n * Alias for {@link connect()}.\n */\n open() {\n return this.connect();\n }\n /**\n * Sends a `message` event.\n *\n * This method mimics the WebSocket.send() method.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/send\n *\n * @example\n * socket.send(\"hello\");\n *\n * // this is equivalent to\n * socket.emit(\"message\", \"hello\");\n *\n * @return self\n */\n send(...args) {\n args.unshift(\"message\");\n this.emit.apply(this, args);\n return this;\n }\n /**\n * Override `emit`.\n * If the event is in `events`, it's emitted normally.\n *\n * @example\n * socket.emit(\"hello\", \"world\");\n *\n * // all serializable datastructures are supported (no need to call JSON.stringify)\n * socket.emit(\"hello\", 1, \"2\", { 3: [\"4\"], 5: Uint8Array.from([6]) });\n *\n * // with an acknowledgement from the server\n * socket.emit(\"hello\", \"world\", (val) => {\n * // ...\n * });\n *\n * @return self\n */\n emit(ev, ...args) {\n if (RESERVED_EVENTS.hasOwnProperty(ev)) {\n throw new Error('\"' + ev.toString() + '\" is a reserved event name');\n }\n args.unshift(ev);\n const packet = {\n type: PacketType.EVENT,\n data: args,\n };\n packet.options = {};\n packet.options.compress = this.flags.compress !== false;\n // event ack callback\n if (\"function\" === typeof args[args.length - 1]) {\n const id = this.ids++;\n const ack = args.pop();\n this._registerAckCallback(id, ack);\n packet.id = id;\n }\n const isTransportWritable = this.io.engine &&\n this.io.engine.transport &&\n this.io.engine.transport.writable;\n const discardPacket = this.flags.volatile && (!isTransportWritable || !this.connected);\n if (discardPacket) {\n }\n else if (this.connected) {\n this.notifyOutgoingListeners(packet);\n this.packet(packet);\n }\n else {\n this.sendBuffer.push(packet);\n }\n this.flags = {};\n return this;\n }\n /**\n * @private\n */\n _registerAckCallback(id, ack) {\n const timeout = this.flags.timeout;\n if (timeout === undefined) {\n this.acks[id] = ack;\n return;\n }\n // @ts-ignore\n const timer = this.io.setTimeoutFn(() => {\n delete this.acks[id];\n for (let i = 0; i < this.sendBuffer.length; i++) {\n if (this.sendBuffer[i].id === id) {\n this.sendBuffer.splice(i, 1);\n }\n }\n ack.call(this, new Error(\"operation has timed out\"));\n }, timeout);\n this.acks[id] = (...args) => {\n // @ts-ignore\n this.io.clearTimeoutFn(timer);\n ack.apply(this, [null, ...args]);\n };\n }\n /**\n * Sends a packet.\n *\n * @param packet\n * @private\n */\n packet(packet) {\n packet.nsp = this.nsp;\n this.io._packet(packet);\n }\n /**\n * Called upon engine `open`.\n *\n * @private\n */\n onopen() {\n if (typeof this.auth == \"function\") {\n this.auth((data) => {\n this.packet({ type: PacketType.CONNECT, data });\n });\n }\n else {\n this.packet({ type: PacketType.CONNECT, data: this.auth });\n }\n }\n /**\n * Called upon engine or manager `error`.\n *\n * @param err\n * @private\n */\n onerror(err) {\n if (!this.connected) {\n this.emitReserved(\"connect_error\", err);\n }\n }\n /**\n * Called upon engine `close`.\n *\n * @param reason\n * @param description\n * @private\n */\n onclose(reason, description) {\n this.connected = false;\n delete this.id;\n this.emitReserved(\"disconnect\", reason, description);\n }\n /**\n * Called with socket packet.\n *\n * @param packet\n * @private\n */\n onpacket(packet) {\n const sameNamespace = packet.nsp === this.nsp;\n if (!sameNamespace)\n return;\n switch (packet.type) {\n case PacketType.CONNECT:\n if (packet.data && packet.data.sid) {\n const id = packet.data.sid;\n this.onconnect(id);\n }\n else {\n this.emitReserved(\"connect_error\", new Error(\"It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)\"));\n }\n break;\n case PacketType.EVENT:\n case PacketType.BINARY_EVENT:\n this.onevent(packet);\n break;\n case PacketType.ACK:\n case PacketType.BINARY_ACK:\n this.onack(packet);\n break;\n case PacketType.DISCONNECT:\n this.ondisconnect();\n break;\n case PacketType.CONNECT_ERROR:\n this.destroy();\n const err = new Error(packet.data.message);\n // @ts-ignore\n err.data = packet.data.data;\n this.emitReserved(\"connect_error\", err);\n break;\n }\n }\n /**\n * Called upon a server event.\n *\n * @param packet\n * @private\n */\n onevent(packet) {\n const args = packet.data || [];\n if (null != packet.id) {\n args.push(this.ack(packet.id));\n }\n if (this.connected) {\n this.emitEvent(args);\n }\n else {\n this.receiveBuffer.push(Object.freeze(args));\n }\n }\n emitEvent(args) {\n if (this._anyListeners && this._anyListeners.length) {\n const listeners = this._anyListeners.slice();\n for (const listener of listeners) {\n listener.apply(this, args);\n }\n }\n super.emit.apply(this, args);\n }\n /**\n * Produces an ack callback to emit with an event.\n *\n * @private\n */\n ack(id) {\n const self = this;\n let sent = false;\n return function (...args) {\n // prevent double callbacks\n if (sent)\n return;\n sent = true;\n self.packet({\n type: PacketType.ACK,\n id: id,\n data: args,\n });\n };\n }\n /**\n * Called upon a server acknowlegement.\n *\n * @param packet\n * @private\n */\n onack(packet) {\n const ack = this.acks[packet.id];\n if (\"function\" === typeof ack) {\n ack.apply(this, packet.data);\n delete this.acks[packet.id];\n }\n else {\n }\n }\n /**\n * Called upon server connect.\n *\n * @private\n */\n onconnect(id) {\n this.id = id;\n this.connected = true;\n this.emitBuffered();\n this.emitReserved(\"connect\");\n }\n /**\n * Emit buffered events (received and emitted).\n *\n * @private\n */\n emitBuffered() {\n this.receiveBuffer.forEach((args) => this.emitEvent(args));\n this.receiveBuffer = [];\n this.sendBuffer.forEach((packet) => {\n this.notifyOutgoingListeners(packet);\n this.packet(packet);\n });\n this.sendBuffer = [];\n }\n /**\n * Called upon server disconnect.\n *\n * @private\n */\n ondisconnect() {\n this.destroy();\n this.onclose(\"io server disconnect\");\n }\n /**\n * Called upon forced client/server side disconnections,\n * this method ensures the manager stops tracking us and\n * that reconnections don't get triggered for this.\n *\n * @private\n */\n destroy() {\n if (this.subs) {\n // clean subscriptions to avoid reconnections\n this.subs.forEach((subDestroy) => subDestroy());\n this.subs = undefined;\n }\n this.io[\"_destroy\"](this);\n }\n /**\n * Disconnects the socket manually. In that case, the socket will not try to reconnect.\n *\n * If this is the last active Socket instance of the {@link Manager}, the low-level connection will be closed.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"disconnect\", (reason) => {\n * // console.log(reason); prints \"io client disconnect\"\n * });\n *\n * socket.disconnect();\n *\n * @return self\n */\n disconnect() {\n if (this.connected) {\n this.packet({ type: PacketType.DISCONNECT });\n }\n // remove socket from pool\n this.destroy();\n if (this.connected) {\n // fire events\n this.onclose(\"io client disconnect\");\n }\n return this;\n }\n /**\n * Alias for {@link disconnect()}.\n *\n * @return self\n */\n close() {\n return this.disconnect();\n }\n /**\n * Sets the compress flag.\n *\n * @example\n * socket.compress(false).emit(\"hello\");\n *\n * @param compress - if `true`, compresses the sending data\n * @return self\n */\n compress(compress) {\n this.flags.compress = compress;\n return this;\n }\n /**\n * Sets a modifier for a subsequent event emission that the event message will be dropped when this socket is not\n * ready to send messages.\n *\n * @example\n * socket.volatile.emit(\"hello\"); // the server may or may not receive it\n *\n * @returns self\n */\n get volatile() {\n this.flags.volatile = true;\n return this;\n }\n /**\n * Sets a modifier for a subsequent event emission that the callback will be called with an error when the\n * given number of milliseconds have elapsed without an acknowledgement from the server:\n *\n * @example\n * socket.timeout(5000).emit(\"my-event\", (err) => {\n * if (err) {\n * // the server did not acknowledge the event in the given delay\n * }\n * });\n *\n * @returns self\n */\n timeout(timeout) {\n this.flags.timeout = timeout;\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback.\n *\n * @example\n * socket.onAny((event, ...args) => {\n * console.log(`got ${event}`);\n * });\n *\n * @param listener\n */\n onAny(listener) {\n this._anyListeners = this._anyListeners || [];\n this._anyListeners.push(listener);\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback. The listener is added to the beginning of the listeners array.\n *\n * @example\n * socket.prependAny((event, ...args) => {\n * console.log(`got event ${event}`);\n * });\n *\n * @param listener\n */\n prependAny(listener) {\n this._anyListeners = this._anyListeners || [];\n this._anyListeners.unshift(listener);\n return this;\n }\n /**\n * Removes the listener that will be fired when any event is emitted.\n *\n * @example\n * const catchAllListener = (event, ...args) => {\n * console.log(`got event ${event}`);\n * }\n *\n * socket.onAny(catchAllListener);\n *\n * // remove a specific listener\n * socket.offAny(catchAllListener);\n *\n * // or remove all listeners\n * socket.offAny();\n *\n * @param listener\n */\n offAny(listener) {\n if (!this._anyListeners) {\n return this;\n }\n if (listener) {\n const listeners = this._anyListeners;\n for (let i = 0; i < listeners.length; i++) {\n if (listener === listeners[i]) {\n listeners.splice(i, 1);\n return this;\n }\n }\n }\n else {\n this._anyListeners = [];\n }\n return this;\n }\n /**\n * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated,\n * e.g. to remove listeners.\n */\n listenersAny() {\n return this._anyListeners || [];\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback.\n *\n * Note: acknowledgements sent to the server are not included.\n *\n * @example\n * socket.onAnyOutgoing((event, ...args) => {\n * console.log(`sent event ${event}`);\n * });\n *\n * @param listener\n */\n onAnyOutgoing(listener) {\n this._anyOutgoingListeners = this._anyOutgoingListeners || [];\n this._anyOutgoingListeners.push(listener);\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback. The listener is added to the beginning of the listeners array.\n *\n * Note: acknowledgements sent to the server are not included.\n *\n * @example\n * socket.prependAnyOutgoing((event, ...args) => {\n * console.log(`sent event ${event}`);\n * });\n *\n * @param listener\n */\n prependAnyOutgoing(listener) {\n this._anyOutgoingListeners = this._anyOutgoingListeners || [];\n this._anyOutgoingListeners.unshift(listener);\n return this;\n }\n /**\n * Removes the listener that will be fired when any event is emitted.\n *\n * @example\n * const catchAllListener = (event, ...args) => {\n * console.log(`sent event ${event}`);\n * }\n *\n * socket.onAnyOutgoing(catchAllListener);\n *\n * // remove a specific listener\n * socket.offAnyOutgoing(catchAllListener);\n *\n * // or remove all listeners\n * socket.offAnyOutgoing();\n *\n * @param [listener] - the catch-all listener (optional)\n */\n offAnyOutgoing(listener) {\n if (!this._anyOutgoingListeners) {\n return this;\n }\n if (listener) {\n const listeners = this._anyOutgoingListeners;\n for (let i = 0; i < listeners.length; i++) {\n if (listener === listeners[i]) {\n listeners.splice(i, 1);\n return this;\n }\n }\n }\n else {\n this._anyOutgoingListeners = [];\n }\n return this;\n }\n /**\n * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated,\n * e.g. to remove listeners.\n */\n listenersAnyOutgoing() {\n return this._anyOutgoingListeners || [];\n }\n /**\n * Notify the listeners for each packet sent\n *\n * @param packet\n *\n * @private\n */\n notifyOutgoingListeners(packet) {\n if (this._anyOutgoingListeners && this._anyOutgoingListeners.length) {\n const listeners = this._anyOutgoingListeners.slice();\n for (const listener of listeners) {\n listener.apply(this, packet.data);\n }\n }\n }\n}\n","/**\n * Initialize backoff timer with `opts`.\n *\n * - `min` initial timeout in milliseconds [100]\n * - `max` max timeout [10000]\n * - `jitter` [0]\n * - `factor` [2]\n *\n * @param {Object} opts\n * @api public\n */\nexport function Backoff(opts) {\n opts = opts || {};\n this.ms = opts.min || 100;\n this.max = opts.max || 10000;\n this.factor = opts.factor || 2;\n this.jitter = opts.jitter > 0 && opts.jitter <= 1 ? opts.jitter : 0;\n this.attempts = 0;\n}\n/**\n * Return the backoff duration.\n *\n * @return {Number}\n * @api public\n */\nBackoff.prototype.duration = function () {\n var ms = this.ms * Math.pow(this.factor, this.attempts++);\n if (this.jitter) {\n var rand = Math.random();\n var deviation = Math.floor(rand * this.jitter * ms);\n ms = (Math.floor(rand * 10) & 1) == 0 ? ms - deviation : ms + deviation;\n }\n return Math.min(ms, this.max) | 0;\n};\n/**\n * Reset the number of attempts.\n *\n * @api public\n */\nBackoff.prototype.reset = function () {\n this.attempts = 0;\n};\n/**\n * Set the minimum duration\n *\n * @api public\n */\nBackoff.prototype.setMin = function (min) {\n this.ms = min;\n};\n/**\n * Set the maximum duration\n *\n * @api public\n */\nBackoff.prototype.setMax = function (max) {\n this.max = max;\n};\n/**\n * Set the jitter\n *\n * @api public\n */\nBackoff.prototype.setJitter = function (jitter) {\n this.jitter = jitter;\n};\n","import { Socket as Engine, installTimerFunctions, nextTick, } from \"engine.io-client\";\nimport { Socket } from \"./socket.js\";\nimport * as parser from \"socket.io-parser\";\nimport { on } from \"./on.js\";\nimport { Backoff } from \"./contrib/backo2.js\";\nimport { Emitter, } from \"@socket.io/component-emitter\";\nexport class Manager extends Emitter {\n constructor(uri, opts) {\n var _a;\n super();\n this.nsps = {};\n this.subs = [];\n if (uri && \"object\" === typeof uri) {\n opts = uri;\n uri = undefined;\n }\n opts = opts || {};\n opts.path = opts.path || \"/socket.io\";\n this.opts = opts;\n installTimerFunctions(this, opts);\n this.reconnection(opts.reconnection !== false);\n this.reconnectionAttempts(opts.reconnectionAttempts || Infinity);\n this.reconnectionDelay(opts.reconnectionDelay || 1000);\n this.reconnectionDelayMax(opts.reconnectionDelayMax || 5000);\n this.randomizationFactor((_a = opts.randomizationFactor) !== null && _a !== void 0 ? _a : 0.5);\n this.backoff = new Backoff({\n min: this.reconnectionDelay(),\n max: this.reconnectionDelayMax(),\n jitter: this.randomizationFactor(),\n });\n this.timeout(null == opts.timeout ? 20000 : opts.timeout);\n this._readyState = \"closed\";\n this.uri = uri;\n const _parser = opts.parser || parser;\n this.encoder = new _parser.Encoder();\n this.decoder = new _parser.Decoder();\n this._autoConnect = opts.autoConnect !== false;\n if (this._autoConnect)\n this.open();\n }\n reconnection(v) {\n if (!arguments.length)\n return this._reconnection;\n this._reconnection = !!v;\n return this;\n }\n reconnectionAttempts(v) {\n if (v === undefined)\n return this._reconnectionAttempts;\n this._reconnectionAttempts = v;\n return this;\n }\n reconnectionDelay(v) {\n var _a;\n if (v === undefined)\n return this._reconnectionDelay;\n this._reconnectionDelay = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setMin(v);\n return this;\n }\n randomizationFactor(v) {\n var _a;\n if (v === undefined)\n return this._randomizationFactor;\n this._randomizationFactor = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setJitter(v);\n return this;\n }\n reconnectionDelayMax(v) {\n var _a;\n if (v === undefined)\n return this._reconnectionDelayMax;\n this._reconnectionDelayMax = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setMax(v);\n return this;\n }\n timeout(v) {\n if (!arguments.length)\n return this._timeout;\n this._timeout = v;\n return this;\n }\n /**\n * Starts trying to reconnect if reconnection is enabled and we have not\n * started reconnecting yet\n *\n * @private\n */\n maybeReconnectOnOpen() {\n // Only try to reconnect if it's the first time we're connecting\n if (!this._reconnecting &&\n this._reconnection &&\n this.backoff.attempts === 0) {\n // keeps reconnection from firing twice for the same reconnection loop\n this.reconnect();\n }\n }\n /**\n * Sets the current transport `socket`.\n *\n * @param {Function} fn - optional, callback\n * @return self\n * @public\n */\n open(fn) {\n if (~this._readyState.indexOf(\"open\"))\n return this;\n this.engine = new Engine(this.uri, this.opts);\n const socket = this.engine;\n const self = this;\n this._readyState = \"opening\";\n this.skipReconnect = false;\n // emit `open`\n const openSubDestroy = on(socket, \"open\", function () {\n self.onopen();\n fn && fn();\n });\n // emit `error`\n const errorSub = on(socket, \"error\", (err) => {\n self.cleanup();\n self._readyState = \"closed\";\n this.emitReserved(\"error\", err);\n if (fn) {\n fn(err);\n }\n else {\n // Only do this if there is no fn to handle the error\n self.maybeReconnectOnOpen();\n }\n });\n if (false !== this._timeout) {\n const timeout = this._timeout;\n if (timeout === 0) {\n openSubDestroy(); // prevents a race condition with the 'open' event\n }\n // set timer\n const timer = this.setTimeoutFn(() => {\n openSubDestroy();\n socket.close();\n // @ts-ignore\n socket.emit(\"error\", new Error(\"timeout\"));\n }, timeout);\n if (this.opts.autoUnref) {\n timer.unref();\n }\n this.subs.push(function subDestroy() {\n clearTimeout(timer);\n });\n }\n this.subs.push(openSubDestroy);\n this.subs.push(errorSub);\n return this;\n }\n /**\n * Alias for open()\n *\n * @return self\n * @public\n */\n connect(fn) {\n return this.open(fn);\n }\n /**\n * Called upon transport open.\n *\n * @private\n */\n onopen() {\n // clear old subs\n this.cleanup();\n // mark as open\n this._readyState = \"open\";\n this.emitReserved(\"open\");\n // add new subs\n const socket = this.engine;\n this.subs.push(on(socket, \"ping\", this.onping.bind(this)), on(socket, \"data\", this.ondata.bind(this)), on(socket, \"error\", this.onerror.bind(this)), on(socket, \"close\", this.onclose.bind(this)), on(this.decoder, \"decoded\", this.ondecoded.bind(this)));\n }\n /**\n * Called upon a ping.\n *\n * @private\n */\n onping() {\n this.emitReserved(\"ping\");\n }\n /**\n * Called with data.\n *\n * @private\n */\n ondata(data) {\n try {\n this.decoder.add(data);\n }\n catch (e) {\n this.onclose(\"parse error\", e);\n }\n }\n /**\n * Called when parser fully decodes a packet.\n *\n * @private\n */\n ondecoded(packet) {\n // the nextTick call prevents an exception in a user-provided event listener from triggering a disconnection due to a \"parse error\"\n nextTick(() => {\n this.emitReserved(\"packet\", packet);\n }, this.setTimeoutFn);\n }\n /**\n * Called upon socket error.\n *\n * @private\n */\n onerror(err) {\n this.emitReserved(\"error\", err);\n }\n /**\n * Creates a new socket for the given `nsp`.\n *\n * @return {Socket}\n * @public\n */\n socket(nsp, opts) {\n let socket = this.nsps[nsp];\n if (!socket) {\n socket = new Socket(this, nsp, opts);\n this.nsps[nsp] = socket;\n }\n return socket;\n }\n /**\n * Called upon a socket close.\n *\n * @param socket\n * @private\n */\n _destroy(socket) {\n const nsps = Object.keys(this.nsps);\n for (const nsp of nsps) {\n const socket = this.nsps[nsp];\n if (socket.active) {\n return;\n }\n }\n this._close();\n }\n /**\n * Writes a packet.\n *\n * @param packet\n * @private\n */\n _packet(packet) {\n const encodedPackets = this.encoder.encode(packet);\n for (let i = 0; i < encodedPackets.length; i++) {\n this.engine.write(encodedPackets[i], packet.options);\n }\n }\n /**\n * Clean up transport subscriptions and packet buffer.\n *\n * @private\n */\n cleanup() {\n this.subs.forEach((subDestroy) => subDestroy());\n this.subs.length = 0;\n this.decoder.destroy();\n }\n /**\n * Close the current socket.\n *\n * @private\n */\n _close() {\n this.skipReconnect = true;\n this._reconnecting = false;\n this.onclose(\"forced close\");\n if (this.engine)\n this.engine.close();\n }\n /**\n * Alias for close()\n *\n * @private\n */\n disconnect() {\n return this._close();\n }\n /**\n * Called upon engine close.\n *\n * @private\n */\n onclose(reason, description) {\n this.cleanup();\n this.backoff.reset();\n this._readyState = \"closed\";\n this.emitReserved(\"close\", reason, description);\n if (this._reconnection && !this.skipReconnect) {\n this.reconnect();\n }\n }\n /**\n * Attempt a reconnection.\n *\n * @private\n */\n reconnect() {\n if (this._reconnecting || this.skipReconnect)\n return this;\n const self = this;\n if (this.backoff.attempts >= this._reconnectionAttempts) {\n this.backoff.reset();\n this.emitReserved(\"reconnect_failed\");\n this._reconnecting = false;\n }\n else {\n const delay = this.backoff.duration();\n this._reconnecting = true;\n const timer = this.setTimeoutFn(() => {\n if (self.skipReconnect)\n return;\n this.emitReserved(\"reconnect_attempt\", self.backoff.attempts);\n // check again for the case socket closed in above events\n if (self.skipReconnect)\n return;\n self.open((err) => {\n if (err) {\n self._reconnecting = false;\n self.reconnect();\n this.emitReserved(\"reconnect_error\", err);\n }\n else {\n self.onreconnect();\n }\n });\n }, delay);\n if (this.opts.autoUnref) {\n timer.unref();\n }\n this.subs.push(function subDestroy() {\n clearTimeout(timer);\n });\n }\n }\n /**\n * Called upon successful reconnect.\n *\n * @private\n */\n onreconnect() {\n const attempt = this.backoff.attempts;\n this._reconnecting = false;\n this.backoff.reset();\n this.emitReserved(\"reconnect\", attempt);\n }\n}\n","import { url } from \"./url.js\";\nimport { Manager } from \"./manager.js\";\nimport { Socket } from \"./socket.js\";\n/**\n * Managers cache.\n */\nconst cache = {};\nfunction lookup(uri, opts) {\n if (typeof uri === \"object\") {\n opts = uri;\n uri = undefined;\n }\n opts = opts || {};\n const parsed = url(uri, opts.path || \"/socket.io\");\n const source = parsed.source;\n const id = parsed.id;\n const path = parsed.path;\n const sameNamespace = cache[id] && path in cache[id][\"nsps\"];\n const newConnection = opts.forceNew ||\n opts[\"force new connection\"] ||\n false === opts.multiplex ||\n sameNamespace;\n let io;\n if (newConnection) {\n io = new Manager(source, opts);\n }\n else {\n if (!cache[id]) {\n cache[id] = new Manager(source, opts);\n }\n io = cache[id];\n }\n if (parsed.query && !opts.query) {\n opts.query = parsed.queryKey;\n }\n return io.socket(parsed.path, opts);\n}\n// so that \"lookup\" can be used both as a function (e.g. `io(...)`) and as a\n// namespace (e.g. `io.connect(...)`), for backward compatibility\nObject.assign(lookup, {\n Manager,\n Socket,\n io: lookup,\n connect: lookup,\n});\n/**\n * Protocol version.\n *\n * @public\n */\nexport { protocol } from \"socket.io-parser\";\n/**\n * Expose constructors for standalone build.\n *\n * @public\n */\nexport { Manager, Socket, lookup as io, lookup as connect, lookup as default, };\n"],"names":["PACKET_TYPES","Object","create","PACKET_TYPES_REVERSE","keys","forEach","key","ERROR_PACKET","type","data","withNativeBlob","Blob","prototype","toString","call","withNativeArrayBuffer","ArrayBuffer","isView","obj","buffer","encodePacket","supportsBinary","callback","encodeBlobAsBase64","fileReader","FileReader","onload","content","result","split","readAsDataURL","chars","lookup","Uint8Array","i","length","charCodeAt","decode","base64","bufferLength","len","p","encoded1","encoded2","encoded3","encoded4","arraybuffer","bytes","decodePacket","encodedPacket","binaryType","mapBinary","charAt","decodeBase64Packet","substring","packetType","decoded","SEPARATOR","String","fromCharCode","encodePayload","packets","encodedPackets","Array","count","packet","join","decodePayload","encodedPayload","decodedPacket","push","protocol","Emitter","mixin","on","addEventListener","event","fn","_callbacks","once","off","apply","arguments","removeListener","removeAllListeners","removeEventListener","callbacks","cb","splice","emit","args","slice","emitReserved","listeners","hasListeners","globalThisShim","self","window","Function","pick","attr","reduce","acc","k","hasOwnProperty","NATIVE_SET_TIMEOUT","setTimeout","NATIVE_CLEAR_TIMEOUT","clearTimeout","installTimerFunctions","opts","useNativeTimers","setTimeoutFn","bind","globalThis","clearTimeoutFn","BASE64_OVERHEAD","byteLength","utf8Length","Math","ceil","size","str","c","l","TransportError","reason","description","context","Error","Transport","writable","query","readyState","socket","doOpen","doClose","onClose","write","onPacket","details","alphabet","map","seed","prev","encode","num","encoded","floor","yeast","now","Date","encodeURIComponent","qs","qry","pairs","pair","decodeURIComponent","value","XMLHttpRequest","err","hasCORS","XHR","xdomain","e","concat","empty","hasXHR2","xhr","responseType","Polling","polling","location","isSSL","port","xd","hostname","xs","secure","forceBase64","poll","onPause","pause","total","doPoll","onOpen","close","doWrite","schema","timestampRequests","timestampParam","sid","b64","Number","encodedQuery","ipv6","indexOf","path","Request","uri","req","request","method","xhrStatus","onError","onData","pollXhr","async","undefined","xscheme","open","extraHeaders","setDisableHeaderCheck","setRequestHeader","withCredentials","requestTimeout","timeout","onreadystatechange","status","onLoad","send","document","index","requestsCount","requests","cleanup","fromError","abort","responseText","attachEvent","unloadHandler","terminationEvent","nextTick","isPromiseAvailable","Promise","resolve","then","WebSocket","MozWebSocket","usingBrowserWebSocket","defaultBinaryType","isReactNative","navigator","product","toLowerCase","WS","check","protocols","headers","ws","addEventListeners","onopen","autoUnref","_socket","unref","onclose","closeEvent","onmessage","ev","onerror","lastPacket","transports","websocket","re","parts","parse","src","b","replace","m","exec","source","host","authority","ipv6uri","pathNames","queryKey","regx","names","$0","$1","$2","Socket","writeBuffer","prevBufferLen","agent","upgrade","rememberUpgrade","rejectUnauthorized","perMessageDeflate","threshold","transportOptions","closeOnBeforeunload","id","upgrades","pingInterval","pingTimeout","pingTimeoutTimer","beforeunloadEventListener","transport","offlineEventListener","name","EIO","priorWebsocketSuccess","createTransport","shift","setTransport","onDrain","failed","onTransportOpen","msg","upgrading","flush","freezeTransport","error","onTransportClose","onupgrade","to","probe","onHandshake","JSON","resetPingTimeout","sendPacket","code","filterUpgrades","maxPayload","getWritablePackets","shouldCheckPayloadSize","payloadSize","options","compress","cleanupAndClose","waitForUpgrade","filteredUpgrades","j","url","loc","test","href","withNativeFile","File","isBinary","hasBinary","toJSON","isArray","deconstructPacket","buffers","packetData","pack","_deconstructPacket","attachments","placeholder","_placeholder","newData","reconstructPacket","_reconstructPacket","PacketType","Encoder","replacer","EVENT","ACK","BINARY_EVENT","BINARY_ACK","encodeAsBinary","encodeAsString","nsp","stringify","deconstruction","unshift","Decoder","reviver","decodeString","reconstructor","BinaryReconstructor","takeBinaryData","start","buf","next","payload","tryParse","substr","isPayloadValid","finishedReconstruction","CONNECT","DISCONNECT","CONNECT_ERROR","reconPack","binData","subDestroy","RESERVED_EVENTS","freeze","connect","connect_error","disconnect","disconnecting","newListener","io","connected","receiveBuffer","sendBuffer","ids","acks","flags","auth","_autoConnect","subs","onpacket","subEvents","_readyState","ack","pop","_registerAckCallback","isTransportWritable","engine","discardPacket","notifyOutgoingListeners","timer","_packet","sameNamespace","onconnect","onevent","onack","ondisconnect","destroy","message","emitEvent","_anyListeners","listener","sent","emitBuffered","_anyOutgoingListeners","Backoff","ms","min","max","factor","jitter","attempts","duration","pow","rand","random","deviation","reset","setMin","setMax","setJitter","Manager","_a","nsps","reconnection","reconnectionAttempts","Infinity","reconnectionDelay","reconnectionDelayMax","randomizationFactor","backoff","_parser","parser","encoder","decoder","autoConnect","v","_reconnection","_reconnectionAttempts","_reconnectionDelay","_randomizationFactor","_reconnectionDelayMax","_timeout","_reconnecting","reconnect","Engine","skipReconnect","openSubDestroy","errorSub","maybeReconnectOnOpen","onping","ondata","ondecoded","add","active","_close","delay","onreconnect","attempt","cache","parsed","newConnection","forceNew","multiplex"],"mappings":"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"} \ No newline at end of file diff --git a/vendor/socketio/socket.io.min.js b/vendor/socketio/socket.io.min.js new file mode 100644 index 000000000..ae6fa8b7f --- /dev/null +++ b/vendor/socketio/socket.io.min.js @@ -0,0 +1,7 @@ +/*! + * Socket.IO v4.5.3 + * (c) 2014-2022 Guillermo Rauch + * Released under the MIT License. + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).io=e()}(this,(function(){"use strict";function t(e){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},t(e)}function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function n(t,e){for(var n=0;nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,s=!0,a=!1;return{s:function(){n=n.call(t)},n:function(){var t=n.next();return s=t.done,t},e:function(t){a=!0,o=t},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw o}}}}var m=Object.create(null);m.open="0",m.close="1",m.ping="2",m.pong="3",m.message="4",m.upgrade="5",m.noop="6";var b=Object.create(null);Object.keys(m).forEach((function(t){b[m[t]]=t}));for(var k={type:"error",data:"parser error"},w="function"==typeof Blob||"undefined"!=typeof Blob&&"[object BlobConstructor]"===Object.prototype.toString.call(Blob),_="function"==typeof ArrayBuffer,O=function(t,e,n){var r,i=t.type,o=t.data;return w&&o instanceof Blob?e?n(o):E(o,n):_&&(o instanceof ArrayBuffer||(r=o,"function"==typeof ArrayBuffer.isView?ArrayBuffer.isView(r):r&&r.buffer instanceof ArrayBuffer))?e?n(o):E(new Blob([o]),n):n(m[i]+(o||""))},E=function(t,e){var n=new FileReader;return n.onload=function(){var t=n.result.split(",")[1];e("b"+t)},n.readAsDataURL(t)},A="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",R="undefined"==typeof Uint8Array?[]:new Uint8Array(256),T=0;T1?{type:b[n],data:t.substring(1)}:{type:b[n]}:k},S=function(t,e){if(C){var n=function(t){var e,n,r,i,o,s=.75*t.length,a=t.length,c=0;"="===t[t.length-1]&&(s--,"="===t[t.length-2]&&s--);var u=new ArrayBuffer(s),h=new Uint8Array(u);for(e=0;e>4,h[c++]=(15&r)<<4|i>>2,h[c++]=(3&i)<<6|63&o;return u}(t);return N(n,e)}return{base64:!0,data:t}},N=function(t,e){return"blob"===e&&t instanceof ArrayBuffer?new Blob([t]):t},x=String.fromCharCode(30);function L(t){if(t)return function(t){for(var e in L.prototype)t[e]=L.prototype[e];return t}(t)}L.prototype.on=L.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},L.prototype.once=function(t,e){function n(){this.off(t,n),e.apply(this,arguments)}return n.fn=e,this.on(t,n),this},L.prototype.off=L.prototype.removeListener=L.prototype.removeAllListeners=L.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+t];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var i=0;i1?e-1:0),r=1;r0);return e}function W(){var t=z(+new Date);return t!==F?(K=0,F=t):t+"."+z(K++)}for(;Y<64;Y++)H[V[Y]]=Y;function $(t){var e="";for(var n in t)t.hasOwnProperty(n)&&(e.length&&(e+="&"),e+=encodeURIComponent(n)+"="+encodeURIComponent(t[n]));return e}function J(t){for(var e={},n=t.split("&"),r=0,i=n.length;r0&&void 0!==arguments[0]?arguments[0]:{};return i(t,{xd:this.xd,xs:this.xs},this.opts),new nt(this.uri(),t)}},{key:"doWrite",value:function(t,e){var n=this,r=this.request({method:"POST",data:t});r.on("success",e),r.on("error",(function(t,e){n.onError("xhr post error",t,e)}))}},{key:"doPoll",value:function(){var t=this,e=this.request();e.on("data",this.onData.bind(this)),e.on("error",(function(e,n){t.onError("xhr poll error",e,n)})),this.pollXhr=e}}]),s}(U),nt=function(t){o(i,t);var n=p(i);function i(t,r){var o;return e(this,i),D(f(o=n.call(this)),r),o.opts=r,o.method=r.method||"GET",o.uri=t,o.async=!1!==r.async,o.data=void 0!==r.data?r.data:null,o.create(),o}return r(i,[{key:"create",value:function(){var t=this,e=j(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");e.xdomain=!!this.opts.xd,e.xscheme=!!this.opts.xs;var n=this.xhr=new Q(e);try{n.open(this.method,this.uri,this.async);try{if(this.opts.extraHeaders)for(var r in n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0),this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(r)&&n.setRequestHeader(r,this.opts.extraHeaders[r])}catch(t){}if("POST"===this.method)try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch(t){}try{n.setRequestHeader("Accept","*/*")}catch(t){}"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=function(){4===n.readyState&&(200===n.status||1223===n.status?t.onLoad():t.setTimeoutFn((function(){t.onError("number"==typeof n.status?n.status:0)}),0))},n.send(this.data)}catch(e){return void this.setTimeoutFn((function(){t.onError(e)}),0)}"undefined"!=typeof document&&(this.index=i.requestsCount++,i.requests[this.index]=this)}},{key:"onError",value:function(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}},{key:"cleanup",value:function(t){if(void 0!==this.xhr&&null!==this.xhr){if(this.xhr.onreadystatechange=Z,t)try{this.xhr.abort()}catch(t){}"undefined"!=typeof document&&delete i.requests[this.index],this.xhr=null}}},{key:"onLoad",value:function(){var t=this.xhr.responseText;null!==t&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}},{key:"abort",value:function(){this.cleanup()}}]),i}(L);if(nt.requestsCount=0,nt.requests={},"undefined"!=typeof document)if("function"==typeof attachEvent)attachEvent("onunload",rt);else if("function"==typeof addEventListener){addEventListener("onpagehide"in P?"pagehide":"unload",rt,!1)}function rt(){for(var t in nt.requests)nt.requests.hasOwnProperty(t)&&nt.requests[t].abort()}var it="function"==typeof Promise&&"function"==typeof Promise.resolve?function(t){return Promise.resolve().then(t)}:function(t,e){return e(t,0)},ot=P.WebSocket||P.MozWebSocket,st="undefined"!=typeof navigator&&"string"==typeof navigator.product&&"reactnative"===navigator.product.toLowerCase(),at=function(t){o(i,t);var n=p(i);function i(t){var r;return e(this,i),(r=n.call(this,t)).supportsBinary=!t.forceBase64,r}return r(i,[{key:"name",get:function(){return"websocket"}},{key:"doOpen",value:function(){if(this.check()){var t=this.uri(),e=this.opts.protocols,n=st?{}:j(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(n.headers=this.opts.extraHeaders);try{this.ws=st?new ot(t,e,n):e?new ot(t,e):new ot(t)}catch(t){return this.emitReserved("error",t)}this.ws.binaryType=this.socket.binaryType||"arraybuffer",this.addEventListeners()}}},{key:"addEventListeners",value:function(){var t=this;this.ws.onopen=function(){t.opts.autoUnref&&t.ws._socket.unref(),t.onOpen()},this.ws.onclose=function(e){return t.onClose({description:"websocket connection closed",context:e})},this.ws.onmessage=function(e){return t.onData(e.data)},this.ws.onerror=function(e){return t.onError("websocket error",e)}}},{key:"write",value:function(t){var e=this;this.writable=!1;for(var n=function(n){var r=t[n],i=n===t.length-1;O(r,e.supportsBinary,(function(t){try{e.ws.send(t)}catch(t){}i&&it((function(){e.writable=!0,e.emitReserved("drain")}),e.setTimeoutFn)}))},r=0;r1&&void 0!==arguments[1]?arguments[1]:{};return e(this,a),r=s.call(this),n&&"object"===t(n)&&(o=n,n=null),n?(n=ft(n),o.hostname=n.host,o.secure="https"===n.protocol||"wss"===n.protocol,o.port=n.port,n.query&&(o.query=n.query)):o.host&&(o.hostname=ft(o.host).host),D(f(r),o),r.secure=null!=o.secure?o.secure:"undefined"!=typeof location&&"https:"===location.protocol,o.hostname&&!o.port&&(o.port=r.secure?"443":"80"),r.hostname=o.hostname||("undefined"!=typeof location?location.hostname:"localhost"),r.port=o.port||("undefined"!=typeof location&&location.port?location.port:r.secure?"443":"80"),r.transports=o.transports||["polling","websocket"],r.readyState="",r.writeBuffer=[],r.prevBufferLen=0,r.opts=i({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!0},o),r.opts.path=r.opts.path.replace(/\/$/,"")+"/","string"==typeof r.opts.query&&(r.opts.query=J(r.opts.query)),r.id=null,r.upgrades=null,r.pingInterval=null,r.pingTimeout=null,r.pingTimeoutTimer=null,"function"==typeof addEventListener&&(r.opts.closeOnBeforeunload&&(r.beforeunloadEventListener=function(){r.transport&&(r.transport.removeAllListeners(),r.transport.close())},addEventListener("beforeunload",r.beforeunloadEventListener,!1)),"localhost"!==r.hostname&&(r.offlineEventListener=function(){r.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",r.offlineEventListener,!1))),r.open(),r}return r(a,[{key:"createTransport",value:function(t){var e=i({},this.opts.query);e.EIO=4,e.transport=t,this.id&&(e.sid=this.id);var n=i({},this.opts.transportOptions[t],this.opts,{query:e,socket:this,hostname:this.hostname,secure:this.secure,port:this.port});return new ct[t](n)}},{key:"open",value:function(){var t,e=this;if(this.opts.rememberUpgrade&&a.priorWebsocketSuccess&&-1!==this.transports.indexOf("websocket"))t="websocket";else{if(0===this.transports.length)return void this.setTimeoutFn((function(){e.emitReserved("error","No transports available")}),0);t=this.transports[0]}this.readyState="opening";try{t=this.createTransport(t)}catch(t){return this.transports.shift(),void this.open()}t.open(),this.setTransport(t)}},{key:"setTransport",value:function(t){var e=this;this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",(function(t){return e.onClose("transport close",t)}))}},{key:"probe",value:function(t){var e=this,n=this.createTransport(t),r=!1;a.priorWebsocketSuccess=!1;var i=function(){r||(n.send([{type:"ping",data:"probe"}]),n.once("packet",(function(t){if(!r)if("pong"===t.type&&"probe"===t.data){if(e.upgrading=!0,e.emitReserved("upgrading",n),!n)return;a.priorWebsocketSuccess="websocket"===n.name,e.transport.pause((function(){r||"closed"!==e.readyState&&(f(),e.setTransport(n),n.send([{type:"upgrade"}]),e.emitReserved("upgrade",n),n=null,e.upgrading=!1,e.flush())}))}else{var i=new Error("probe error");i.transport=n.name,e.emitReserved("upgradeError",i)}})))};function o(){r||(r=!0,f(),n.close(),n=null)}var s=function(t){var r=new Error("probe error: "+t);r.transport=n.name,o(),e.emitReserved("upgradeError",r)};function c(){s("transport closed")}function u(){s("socket closed")}function h(t){n&&t.name!==n.name&&o()}var f=function(){n.removeListener("open",i),n.removeListener("error",s),n.removeListener("close",c),e.off("close",u),e.off("upgrading",h)};n.once("open",i),n.once("error",s),n.once("close",c),this.once("close",u),this.once("upgrading",h),n.open()}},{key:"onOpen",value:function(){if(this.readyState="open",a.priorWebsocketSuccess="websocket"===this.transport.name,this.emitReserved("open"),this.flush(),"open"===this.readyState&&this.opts.upgrade&&this.transport.pause)for(var t=0,e=this.upgrades.length;t1))return this.writeBuffer;for(var t,e=1,n=0;n=57344?n+=3:(r++,n+=4);return n}(t):Math.ceil(1.33*(t.byteLength||t.size))),n>0&&e>this.maxPayload)return this.writeBuffer.slice(0,n);e+=2}return this.writeBuffer}},{key:"write",value:function(t,e,n){return this.sendPacket("message",t,e,n),this}},{key:"send",value:function(t,e,n){return this.sendPacket("message",t,e,n),this}},{key:"sendPacket",value:function(t,e,n,r){if("function"==typeof e&&(r=e,e=void 0),"function"==typeof n&&(r=n,n=null),"closing"!==this.readyState&&"closed"!==this.readyState){(n=n||{}).compress=!1!==n.compress;var i={type:t,data:e,options:n};this.emitReserved("packetCreate",i),this.writeBuffer.push(i),r&&this.once("flush",r),this.flush()}}},{key:"close",value:function(){var t=this,e=function(){t.onClose("forced close"),t.transport.close()},n=function n(){t.off("upgrade",n),t.off("upgradeError",n),e()},r=function(){t.once("upgrade",n),t.once("upgradeError",n)};return"opening"!==this.readyState&&"open"!==this.readyState||(this.readyState="closing",this.writeBuffer.length?this.once("drain",(function(){t.upgrading?r():e()})):this.upgrading?r():e()),this}},{key:"onError",value:function(t){a.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}},{key:"onClose",value:function(t,e){"opening"!==this.readyState&&"open"!==this.readyState&&"closing"!==this.readyState||(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),"function"==typeof removeEventListener&&(removeEventListener("beforeunload",this.beforeunloadEventListener,!1),removeEventListener("offline",this.offlineEventListener,!1)),this.readyState="closed",this.id=null,this.emitReserved("close",t,e),this.writeBuffer=[],this.prevBufferLen=0)}},{key:"filterUpgrades",value:function(t){for(var e=[],n=0,r=t.length;n0;case Ot.ACK:case Ot.BINARY_ACK:return Array.isArray(n)}}}]),a}(L),Rt=function(){function t(n){e(this,t),this.packet=n,this.buffers=[],this.reconPack=n}return r(t,[{key:"takeBinaryData",value:function(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){var e=wt(this.reconPack,this.buffers);return this.finishedReconstruction(),e}return null}},{key:"finishedReconstruction",value:function(){this.reconPack=null,this.buffers=[]}}]),t}(),Tt=Object.freeze({__proto__:null,protocol:5,get PacketType(){return Ot},Encoder:Et,Decoder:At});function Ct(t,e,n){return t.on(e,n),function(){t.off(e,n)}}var Bt=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1}),St=function(t){o(i,t);var n=p(i);function i(t,r,o){var s;return e(this,i),(s=n.call(this)).connected=!1,s.receiveBuffer=[],s.sendBuffer=[],s.ids=0,s.acks={},s.flags={},s.io=t,s.nsp=r,o&&o.auth&&(s.auth=o.auth),s.io._autoConnect&&s.open(),s}return r(i,[{key:"disconnected",get:function(){return!this.connected}},{key:"subEvents",value:function(){if(!this.subs){var t=this.io;this.subs=[Ct(t,"open",this.onopen.bind(this)),Ct(t,"packet",this.onpacket.bind(this)),Ct(t,"error",this.onerror.bind(this)),Ct(t,"close",this.onclose.bind(this))]}}},{key:"active",get:function(){return!!this.subs}},{key:"connect",value:function(){return this.connected||(this.subEvents(),this.io._reconnecting||this.io.open(),"open"===this.io._readyState&&this.onopen()),this}},{key:"open",value:function(){return this.connect()}},{key:"send",value:function(){for(var t=arguments.length,e=new Array(t),n=0;n1?e-1:0),r=1;r0&&t.jitter<=1?t.jitter:0,this.attempts=0}Nt.prototype.duration=function(){var t=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var e=Math.random(),n=Math.floor(e*this.jitter*t);t=0==(1&Math.floor(10*e))?t-n:t+n}return 0|Math.min(t,this.max)},Nt.prototype.reset=function(){this.attempts=0},Nt.prototype.setMin=function(t){this.ms=t},Nt.prototype.setMax=function(t){this.max=t},Nt.prototype.setJitter=function(t){this.jitter=t};var xt=function(n){o(s,n);var i=p(s);function s(n,r){var o,a;e(this,s),(o=i.call(this)).nsps={},o.subs=[],n&&"object"===t(n)&&(r=n,n=void 0),(r=r||{}).path=r.path||"/socket.io",o.opts=r,D(f(o),r),o.reconnection(!1!==r.reconnection),o.reconnectionAttempts(r.reconnectionAttempts||1/0),o.reconnectionDelay(r.reconnectionDelay||1e3),o.reconnectionDelayMax(r.reconnectionDelayMax||5e3),o.randomizationFactor(null!==(a=r.randomizationFactor)&&void 0!==a?a:.5),o.backoff=new Nt({min:o.reconnectionDelay(),max:o.reconnectionDelayMax(),jitter:o.randomizationFactor()}),o.timeout(null==r.timeout?2e4:r.timeout),o._readyState="closed",o.uri=n;var c=r.parser||Tt;return o.encoder=new c.Encoder,o.decoder=new c.Decoder,o._autoConnect=!1!==r.autoConnect,o._autoConnect&&o.open(),o}return r(s,[{key:"reconnection",value:function(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}},{key:"reconnectionAttempts",value:function(t){return void 0===t?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}},{key:"reconnectionDelay",value:function(t){var e;return void 0===t?this._reconnectionDelay:(this._reconnectionDelay=t,null===(e=this.backoff)||void 0===e||e.setMin(t),this)}},{key:"randomizationFactor",value:function(t){var e;return void 0===t?this._randomizationFactor:(this._randomizationFactor=t,null===(e=this.backoff)||void 0===e||e.setJitter(t),this)}},{key:"reconnectionDelayMax",value:function(t){var e;return void 0===t?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,null===(e=this.backoff)||void 0===e||e.setMax(t),this)}},{key:"timeout",value:function(t){return arguments.length?(this._timeout=t,this):this._timeout}},{key:"maybeReconnectOnOpen",value:function(){!this._reconnecting&&this._reconnection&&0===this.backoff.attempts&&this.reconnect()}},{key:"open",value:function(t){var e=this;if(~this._readyState.indexOf("open"))return this;this.engine=new lt(this.uri,this.opts);var n=this.engine,r=this;this._readyState="opening",this.skipReconnect=!1;var i=Ct(n,"open",(function(){r.onopen(),t&&t()})),o=Ct(n,"error",(function(n){r.cleanup(),r._readyState="closed",e.emitReserved("error",n),t?t(n):r.maybeReconnectOnOpen()}));if(!1!==this._timeout){var s=this._timeout;0===s&&i();var a=this.setTimeoutFn((function(){i(),n.close(),n.emit("error",new Error("timeout"))}),s);this.opts.autoUnref&&a.unref(),this.subs.push((function(){clearTimeout(a)}))}return this.subs.push(i),this.subs.push(o),this}},{key:"connect",value:function(t){return this.open(t)}},{key:"onopen",value:function(){this.cleanup(),this._readyState="open",this.emitReserved("open");var t=this.engine;this.subs.push(Ct(t,"ping",this.onping.bind(this)),Ct(t,"data",this.ondata.bind(this)),Ct(t,"error",this.onerror.bind(this)),Ct(t,"close",this.onclose.bind(this)),Ct(this.decoder,"decoded",this.ondecoded.bind(this)))}},{key:"onping",value:function(){this.emitReserved("ping")}},{key:"ondata",value:function(t){try{this.decoder.add(t)}catch(t){this.onclose("parse error",t)}}},{key:"ondecoded",value:function(t){var e=this;it((function(){e.emitReserved("packet",t)}),this.setTimeoutFn)}},{key:"onerror",value:function(t){this.emitReserved("error",t)}},{key:"socket",value:function(t,e){var n=this.nsps[t];return n||(n=new St(this,t,e),this.nsps[t]=n),n}},{key:"_destroy",value:function(t){for(var e=0,n=Object.keys(this.nsps);e=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{var n=this.backoff.duration();this._reconnecting=!0;var r=this.setTimeoutFn((function(){e.skipReconnect||(t.emitReserved("reconnect_attempt",e.backoff.attempts),e.skipReconnect||e.open((function(n){n?(e._reconnecting=!1,e.reconnect(),t.emitReserved("reconnect_error",n)):e.onreconnect()})))}),n);this.opts.autoUnref&&r.unref(),this.subs.push((function(){clearTimeout(r)}))}}},{key:"onreconnect",value:function(){var t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}]),s}(L),Lt={};function Pt(e,n){"object"===t(e)&&(n=e,e=void 0);var r,i=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2?arguments[2]:void 0,r=t;n=n||"undefined"!=typeof location&&location,null==t&&(t=n.protocol+"//"+n.host),"string"==typeof t&&("/"===t.charAt(0)&&(t="/"===t.charAt(1)?n.protocol+t:n.host+t),/^(https?|wss?):\/\//.test(t)||(t=void 0!==n?n.protocol+"//"+t:"https://"+t),r=ft(t)),r.port||(/^(http|ws)$/.test(r.protocol)?r.port="80":/^(http|ws)s$/.test(r.protocol)&&(r.port="443")),r.path=r.path||"/";var i=-1!==r.host.indexOf(":")?"["+r.host+"]":r.host;return r.id=r.protocol+"://"+i+":"+r.port+e,r.href=r.protocol+"://"+i+(n&&n.port===r.port?"":":"+r.port),r}(e,(n=n||{}).path||"/socket.io"),o=i.source,s=i.id,a=i.path,c=Lt[s]&&a in Lt[s].nsps;return n.forceNew||n["force new connection"]||!1===n.multiplex||c?r=new xt(o,n):(Lt[s]||(Lt[s]=new xt(o,n)),r=Lt[s]),i.query&&!n.query&&(n.query=i.queryKey),r.socket(i.path,n)}return i(Pt,{Manager:xt,Socket:St,io:Pt,connect:Pt}),Pt})); +//# sourceMappingURL=socket.io.min.js.map diff --git a/vendor/socketio/socket.io.min.js.map b/vendor/socketio/socket.io.min.js.map new file mode 100644 index 000000000..f266039b6 --- /dev/null +++ b/vendor/socketio/socket.io.min.js.map @@ -0,0 +1 @@ +{"version":3,"file":"socket.io.min.js","sources":["../node_modules/engine.io-parser/build/esm/commons.js","../node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js","../node_modules/engine.io-parser/build/esm/encodePacket.browser.js","../node_modules/engine.io-parser/build/esm/decodePacket.browser.js","../node_modules/engine.io-parser/build/esm/index.js","../node_modules/@socket.io/component-emitter/index.mjs","../node_modules/engine.io-client/build/esm/globalThis.browser.js","../node_modules/engine.io-client/build/esm/util.js","../node_modules/engine.io-client/build/esm/contrib/yeast.js","../node_modules/engine.io-client/build/esm/transport.js","../node_modules/engine.io-client/build/esm/contrib/parseqs.js","../node_modules/engine.io-client/build/esm/contrib/has-cors.js","../node_modules/engine.io-client/build/esm/transports/xmlhttprequest.browser.js","../node_modules/engine.io-client/build/esm/transports/polling.js","../node_modules/engine.io-client/build/esm/transports/websocket-constructor.browser.js","../node_modules/engine.io-client/build/esm/transports/websocket.js","../node_modules/engine.io-client/build/esm/transports/index.js","../node_modules/engine.io-client/build/esm/contrib/parseuri.js","../node_modules/engine.io-client/build/esm/socket.js","../node_modules/engine.io-client/build/esm/index.js","../node_modules/socket.io-parser/build/esm/is-binary.js","../node_modules/socket.io-parser/build/esm/binary.js","../node_modules/socket.io-parser/build/esm/index.js","../build/esm/on.js","../build/esm/socket.js","../build/esm/contrib/backo2.js","../build/esm/manager.js","../build/esm/index.js","../build/esm/url.js"],"sourcesContent":["const PACKET_TYPES = Object.create(null); // no Map = no polyfill\nPACKET_TYPES[\"open\"] = \"0\";\nPACKET_TYPES[\"close\"] = \"1\";\nPACKET_TYPES[\"ping\"] = \"2\";\nPACKET_TYPES[\"pong\"] = \"3\";\nPACKET_TYPES[\"message\"] = \"4\";\nPACKET_TYPES[\"upgrade\"] = \"5\";\nPACKET_TYPES[\"noop\"] = \"6\";\nconst PACKET_TYPES_REVERSE = Object.create(null);\nObject.keys(PACKET_TYPES).forEach(key => {\n PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key;\n});\nconst ERROR_PACKET = { type: \"error\", data: \"parser error\" };\nexport { PACKET_TYPES, PACKET_TYPES_REVERSE, ERROR_PACKET };\n","const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n// Use a lookup table to find the index.\nconst lookup = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256);\nfor (let i = 0; i < chars.length; i++) {\n lookup[chars.charCodeAt(i)] = i;\n}\nexport const encode = (arraybuffer) => {\n let bytes = new Uint8Array(arraybuffer), i, len = bytes.length, base64 = '';\n for (i = 0; i < len; i += 3) {\n base64 += chars[bytes[i] >> 2];\n base64 += chars[((bytes[i] & 3) << 4) | (bytes[i + 1] >> 4)];\n base64 += chars[((bytes[i + 1] & 15) << 2) | (bytes[i + 2] >> 6)];\n base64 += chars[bytes[i + 2] & 63];\n }\n if (len % 3 === 2) {\n base64 = base64.substring(0, base64.length - 1) + '=';\n }\n else if (len % 3 === 1) {\n base64 = base64.substring(0, base64.length - 2) + '==';\n }\n return base64;\n};\nexport const decode = (base64) => {\n let bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4;\n if (base64[base64.length - 1] === '=') {\n bufferLength--;\n if (base64[base64.length - 2] === '=') {\n bufferLength--;\n }\n }\n const arraybuffer = new ArrayBuffer(bufferLength), bytes = new Uint8Array(arraybuffer);\n for (i = 0; i < len; i += 4) {\n encoded1 = lookup[base64.charCodeAt(i)];\n encoded2 = lookup[base64.charCodeAt(i + 1)];\n encoded3 = lookup[base64.charCodeAt(i + 2)];\n encoded4 = lookup[base64.charCodeAt(i + 3)];\n bytes[p++] = (encoded1 << 2) | (encoded2 >> 4);\n bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2);\n bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63);\n }\n return arraybuffer;\n};\n","import { PACKET_TYPES } from \"./commons.js\";\nconst withNativeBlob = typeof Blob === \"function\" ||\n (typeof Blob !== \"undefined\" &&\n Object.prototype.toString.call(Blob) === \"[object BlobConstructor]\");\nconst withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\n// ArrayBuffer.isView method is not defined in IE10\nconst isView = obj => {\n return typeof ArrayBuffer.isView === \"function\"\n ? ArrayBuffer.isView(obj)\n : obj && obj.buffer instanceof ArrayBuffer;\n};\nconst encodePacket = ({ type, data }, supportsBinary, callback) => {\n if (withNativeBlob && data instanceof Blob) {\n if (supportsBinary) {\n return callback(data);\n }\n else {\n return encodeBlobAsBase64(data, callback);\n }\n }\n else if (withNativeArrayBuffer &&\n (data instanceof ArrayBuffer || isView(data))) {\n if (supportsBinary) {\n return callback(data);\n }\n else {\n return encodeBlobAsBase64(new Blob([data]), callback);\n }\n }\n // plain string\n return callback(PACKET_TYPES[type] + (data || \"\"));\n};\nconst encodeBlobAsBase64 = (data, callback) => {\n const fileReader = new FileReader();\n fileReader.onload = function () {\n const content = fileReader.result.split(\",\")[1];\n callback(\"b\" + content);\n };\n return fileReader.readAsDataURL(data);\n};\nexport default encodePacket;\n","import { ERROR_PACKET, PACKET_TYPES_REVERSE } from \"./commons.js\";\nimport { decode } from \"./contrib/base64-arraybuffer.js\";\nconst withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\nconst decodePacket = (encodedPacket, binaryType) => {\n if (typeof encodedPacket !== \"string\") {\n return {\n type: \"message\",\n data: mapBinary(encodedPacket, binaryType)\n };\n }\n const type = encodedPacket.charAt(0);\n if (type === \"b\") {\n return {\n type: \"message\",\n data: decodeBase64Packet(encodedPacket.substring(1), binaryType)\n };\n }\n const packetType = PACKET_TYPES_REVERSE[type];\n if (!packetType) {\n return ERROR_PACKET;\n }\n return encodedPacket.length > 1\n ? {\n type: PACKET_TYPES_REVERSE[type],\n data: encodedPacket.substring(1)\n }\n : {\n type: PACKET_TYPES_REVERSE[type]\n };\n};\nconst decodeBase64Packet = (data, binaryType) => {\n if (withNativeArrayBuffer) {\n const decoded = decode(data);\n return mapBinary(decoded, binaryType);\n }\n else {\n return { base64: true, data }; // fallback for old browsers\n }\n};\nconst mapBinary = (data, binaryType) => {\n switch (binaryType) {\n case \"blob\":\n return data instanceof ArrayBuffer ? new Blob([data]) : data;\n case \"arraybuffer\":\n default:\n return data; // assuming the data is already an ArrayBuffer\n }\n};\nexport default decodePacket;\n","import encodePacket from \"./encodePacket.js\";\nimport decodePacket from \"./decodePacket.js\";\nconst SEPARATOR = String.fromCharCode(30); // see https://en.wikipedia.org/wiki/Delimiter#ASCII_delimited_text\nconst encodePayload = (packets, callback) => {\n // some packets may be added to the array while encoding, so the initial length must be saved\n const length = packets.length;\n const encodedPackets = new Array(length);\n let count = 0;\n packets.forEach((packet, i) => {\n // force base64 encoding for binary packets\n encodePacket(packet, false, encodedPacket => {\n encodedPackets[i] = encodedPacket;\n if (++count === length) {\n callback(encodedPackets.join(SEPARATOR));\n }\n });\n });\n};\nconst decodePayload = (encodedPayload, binaryType) => {\n const encodedPackets = encodedPayload.split(SEPARATOR);\n const packets = [];\n for (let i = 0; i < encodedPackets.length; i++) {\n const decodedPacket = decodePacket(encodedPackets[i], binaryType);\n packets.push(decodedPacket);\n if (decodedPacket.type === \"error\") {\n break;\n }\n }\n return packets;\n};\nexport const protocol = 4;\nexport { encodePacket, encodePayload, decodePacket, decodePayload };\n","/**\n * Initialize a new `Emitter`.\n *\n * @api public\n */\n\nexport function Emitter(obj) {\n if (obj) return mixin(obj);\n}\n\n/**\n * Mixin the emitter properties.\n *\n * @param {Object} obj\n * @return {Object}\n * @api private\n */\n\nfunction mixin(obj) {\n for (var key in Emitter.prototype) {\n obj[key] = Emitter.prototype[key];\n }\n return obj;\n}\n\n/**\n * Listen on the given `event` with `fn`.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.on =\nEmitter.prototype.addEventListener = function(event, fn){\n this._callbacks = this._callbacks || {};\n (this._callbacks['$' + event] = this._callbacks['$' + event] || [])\n .push(fn);\n return this;\n};\n\n/**\n * Adds an `event` listener that will be invoked a single\n * time then automatically removed.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.once = function(event, fn){\n function on() {\n this.off(event, on);\n fn.apply(this, arguments);\n }\n\n on.fn = fn;\n this.on(event, on);\n return this;\n};\n\n/**\n * Remove the given callback for `event` or all\n * registered callbacks.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.off =\nEmitter.prototype.removeListener =\nEmitter.prototype.removeAllListeners =\nEmitter.prototype.removeEventListener = function(event, fn){\n this._callbacks = this._callbacks || {};\n\n // all\n if (0 == arguments.length) {\n this._callbacks = {};\n return this;\n }\n\n // specific event\n var callbacks = this._callbacks['$' + event];\n if (!callbacks) return this;\n\n // remove all handlers\n if (1 == arguments.length) {\n delete this._callbacks['$' + event];\n return this;\n }\n\n // remove specific handler\n var cb;\n for (var i = 0; i < callbacks.length; i++) {\n cb = callbacks[i];\n if (cb === fn || cb.fn === fn) {\n callbacks.splice(i, 1);\n break;\n }\n }\n\n // Remove event specific arrays for event types that no\n // one is subscribed for to avoid memory leak.\n if (callbacks.length === 0) {\n delete this._callbacks['$' + event];\n }\n\n return this;\n};\n\n/**\n * Emit `event` with the given args.\n *\n * @param {String} event\n * @param {Mixed} ...\n * @return {Emitter}\n */\n\nEmitter.prototype.emit = function(event){\n this._callbacks = this._callbacks || {};\n\n var args = new Array(arguments.length - 1)\n , callbacks = this._callbacks['$' + event];\n\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n\n if (callbacks) {\n callbacks = callbacks.slice(0);\n for (var i = 0, len = callbacks.length; i < len; ++i) {\n callbacks[i].apply(this, args);\n }\n }\n\n return this;\n};\n\n// alias used for reserved events (protected method)\nEmitter.prototype.emitReserved = Emitter.prototype.emit;\n\n/**\n * Return array of callbacks for `event`.\n *\n * @param {String} event\n * @return {Array}\n * @api public\n */\n\nEmitter.prototype.listeners = function(event){\n this._callbacks = this._callbacks || {};\n return this._callbacks['$' + event] || [];\n};\n\n/**\n * Check if this emitter has `event` handlers.\n *\n * @param {String} event\n * @return {Boolean}\n * @api public\n */\n\nEmitter.prototype.hasListeners = function(event){\n return !! this.listeners(event).length;\n};\n","export const globalThisShim = (() => {\n if (typeof self !== \"undefined\") {\n return self;\n }\n else if (typeof window !== \"undefined\") {\n return window;\n }\n else {\n return Function(\"return this\")();\n }\n})();\n","import { globalThisShim as globalThis } from \"./globalThis.js\";\nexport function pick(obj, ...attr) {\n return attr.reduce((acc, k) => {\n if (obj.hasOwnProperty(k)) {\n acc[k] = obj[k];\n }\n return acc;\n }, {});\n}\n// Keep a reference to the real timeout functions so they can be used when overridden\nconst NATIVE_SET_TIMEOUT = setTimeout;\nconst NATIVE_CLEAR_TIMEOUT = clearTimeout;\nexport function installTimerFunctions(obj, opts) {\n if (opts.useNativeTimers) {\n obj.setTimeoutFn = NATIVE_SET_TIMEOUT.bind(globalThis);\n obj.clearTimeoutFn = NATIVE_CLEAR_TIMEOUT.bind(globalThis);\n }\n else {\n obj.setTimeoutFn = setTimeout.bind(globalThis);\n obj.clearTimeoutFn = clearTimeout.bind(globalThis);\n }\n}\n// base64 encoded buffers are about 33% bigger (https://en.wikipedia.org/wiki/Base64)\nconst BASE64_OVERHEAD = 1.33;\n// we could also have used `new Blob([obj]).size`, but it isn't supported in IE9\nexport function byteLength(obj) {\n if (typeof obj === \"string\") {\n return utf8Length(obj);\n }\n // arraybuffer or blob\n return Math.ceil((obj.byteLength || obj.size) * BASE64_OVERHEAD);\n}\nfunction utf8Length(str) {\n let c = 0, length = 0;\n for (let i = 0, l = str.length; i < l; i++) {\n c = str.charCodeAt(i);\n if (c < 0x80) {\n length += 1;\n }\n else if (c < 0x800) {\n length += 2;\n }\n else if (c < 0xd800 || c >= 0xe000) {\n length += 3;\n }\n else {\n i++;\n length += 4;\n }\n }\n return length;\n}\n","// imported from https://github.com/unshiftio/yeast\n'use strict';\nconst alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'.split(''), length = 64, map = {};\nlet seed = 0, i = 0, prev;\n/**\n * Return a string representing the specified number.\n *\n * @param {Number} num The number to convert.\n * @returns {String} The string representation of the number.\n * @api public\n */\nexport function encode(num) {\n let encoded = '';\n do {\n encoded = alphabet[num % length] + encoded;\n num = Math.floor(num / length);\n } while (num > 0);\n return encoded;\n}\n/**\n * Return the integer value specified by the given string.\n *\n * @param {String} str The string to convert.\n * @returns {Number} The integer value represented by the string.\n * @api public\n */\nexport function decode(str) {\n let decoded = 0;\n for (i = 0; i < str.length; i++) {\n decoded = decoded * length + map[str.charAt(i)];\n }\n return decoded;\n}\n/**\n * Yeast: A tiny growing id generator.\n *\n * @returns {String} A unique id.\n * @api public\n */\nexport function yeast() {\n const now = encode(+new Date());\n if (now !== prev)\n return seed = 0, prev = now;\n return now + '.' + encode(seed++);\n}\n//\n// Map each character to its index.\n//\nfor (; i < length; i++)\n map[alphabet[i]] = i;\n","import { decodePacket } from \"engine.io-parser\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { installTimerFunctions } from \"./util.js\";\nclass TransportError extends Error {\n constructor(reason, description, context) {\n super(reason);\n this.description = description;\n this.context = context;\n this.type = \"TransportError\";\n }\n}\nexport class Transport extends Emitter {\n /**\n * Transport abstract constructor.\n *\n * @param {Object} options.\n * @api private\n */\n constructor(opts) {\n super();\n this.writable = false;\n installTimerFunctions(this, opts);\n this.opts = opts;\n this.query = opts.query;\n this.readyState = \"\";\n this.socket = opts.socket;\n }\n /**\n * Emits an error.\n *\n * @param {String} reason\n * @param description\n * @param context - the error context\n * @return {Transport} for chaining\n * @api protected\n */\n onError(reason, description, context) {\n super.emitReserved(\"error\", new TransportError(reason, description, context));\n return this;\n }\n /**\n * Opens the transport.\n *\n * @api public\n */\n open() {\n if (\"closed\" === this.readyState || \"\" === this.readyState) {\n this.readyState = \"opening\";\n this.doOpen();\n }\n return this;\n }\n /**\n * Closes the transport.\n *\n * @api public\n */\n close() {\n if (\"opening\" === this.readyState || \"open\" === this.readyState) {\n this.doClose();\n this.onClose();\n }\n return this;\n }\n /**\n * Sends multiple packets.\n *\n * @param {Array} packets\n * @api public\n */\n send(packets) {\n if (\"open\" === this.readyState) {\n this.write(packets);\n }\n else {\n // this might happen if the transport was silently closed in the beforeunload event handler\n }\n }\n /**\n * Called upon open\n *\n * @api protected\n */\n onOpen() {\n this.readyState = \"open\";\n this.writable = true;\n super.emitReserved(\"open\");\n }\n /**\n * Called with data.\n *\n * @param {String} data\n * @api protected\n */\n onData(data) {\n const packet = decodePacket(data, this.socket.binaryType);\n this.onPacket(packet);\n }\n /**\n * Called with a decoded packet.\n *\n * @api protected\n */\n onPacket(packet) {\n super.emitReserved(\"packet\", packet);\n }\n /**\n * Called upon close.\n *\n * @api protected\n */\n onClose(details) {\n this.readyState = \"closed\";\n super.emitReserved(\"close\", details);\n }\n}\n","// imported from https://github.com/galkn/querystring\n/**\n * Compiles a querystring\n * Returns string representation of the object\n *\n * @param {Object}\n * @api private\n */\nexport function encode(obj) {\n let str = '';\n for (let i in obj) {\n if (obj.hasOwnProperty(i)) {\n if (str.length)\n str += '&';\n str += encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]);\n }\n }\n return str;\n}\n/**\n * Parses a simple querystring into an object\n *\n * @param {String} qs\n * @api private\n */\nexport function decode(qs) {\n let qry = {};\n let pairs = qs.split('&');\n for (let i = 0, l = pairs.length; i < l; i++) {\n let pair = pairs[i].split('=');\n qry[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]);\n }\n return qry;\n}\n","// imported from https://github.com/component/has-cors\nlet value = false;\ntry {\n value = typeof XMLHttpRequest !== 'undefined' &&\n 'withCredentials' in new XMLHttpRequest();\n}\ncatch (err) {\n // if XMLHttp support is disabled in IE then it will throw\n // when trying to create\n}\nexport const hasCORS = value;\n","// browser shim for xmlhttprequest module\nimport { hasCORS } from \"../contrib/has-cors.js\";\nimport { globalThisShim as globalThis } from \"../globalThis.js\";\nexport function XHR(opts) {\n const xdomain = opts.xdomain;\n // XMLHttpRequest can be disabled on IE\n try {\n if (\"undefined\" !== typeof XMLHttpRequest && (!xdomain || hasCORS)) {\n return new XMLHttpRequest();\n }\n }\n catch (e) { }\n if (!xdomain) {\n try {\n return new globalThis[[\"Active\"].concat(\"Object\").join(\"X\")](\"Microsoft.XMLHTTP\");\n }\n catch (e) { }\n }\n}\n","import { Transport } from \"../transport.js\";\nimport { yeast } from \"../contrib/yeast.js\";\nimport { encode } from \"../contrib/parseqs.js\";\nimport { encodePayload, decodePayload } from \"engine.io-parser\";\nimport { XHR as XMLHttpRequest } from \"./xmlhttprequest.js\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { installTimerFunctions, pick } from \"../util.js\";\nimport { globalThisShim as globalThis } from \"../globalThis.js\";\nfunction empty() { }\nconst hasXHR2 = (function () {\n const xhr = new XMLHttpRequest({\n xdomain: false\n });\n return null != xhr.responseType;\n})();\nexport class Polling extends Transport {\n /**\n * XHR Polling constructor.\n *\n * @param {Object} opts\n * @api public\n */\n constructor(opts) {\n super(opts);\n this.polling = false;\n if (typeof location !== \"undefined\") {\n const isSSL = \"https:\" === location.protocol;\n let port = location.port;\n // some user agents have empty `location.port`\n if (!port) {\n port = isSSL ? \"443\" : \"80\";\n }\n this.xd =\n (typeof location !== \"undefined\" &&\n opts.hostname !== location.hostname) ||\n port !== opts.port;\n this.xs = opts.secure !== isSSL;\n }\n /**\n * XHR supports binary\n */\n const forceBase64 = opts && opts.forceBase64;\n this.supportsBinary = hasXHR2 && !forceBase64;\n }\n /**\n * Transport name.\n */\n get name() {\n return \"polling\";\n }\n /**\n * Opens the socket (triggers polling). We write a PING message to determine\n * when the transport is open.\n *\n * @api private\n */\n doOpen() {\n this.poll();\n }\n /**\n * Pauses polling.\n *\n * @param {Function} callback upon buffers are flushed and transport is paused\n * @api private\n */\n pause(onPause) {\n this.readyState = \"pausing\";\n const pause = () => {\n this.readyState = \"paused\";\n onPause();\n };\n if (this.polling || !this.writable) {\n let total = 0;\n if (this.polling) {\n total++;\n this.once(\"pollComplete\", function () {\n --total || pause();\n });\n }\n if (!this.writable) {\n total++;\n this.once(\"drain\", function () {\n --total || pause();\n });\n }\n }\n else {\n pause();\n }\n }\n /**\n * Starts polling cycle.\n *\n * @api public\n */\n poll() {\n this.polling = true;\n this.doPoll();\n this.emitReserved(\"poll\");\n }\n /**\n * Overloads onData to detect payloads.\n *\n * @api private\n */\n onData(data) {\n const callback = packet => {\n // if its the first message we consider the transport open\n if (\"opening\" === this.readyState && packet.type === \"open\") {\n this.onOpen();\n }\n // if its a close packet, we close the ongoing requests\n if (\"close\" === packet.type) {\n this.onClose({ description: \"transport closed by the server\" });\n return false;\n }\n // otherwise bypass onData and handle the message\n this.onPacket(packet);\n };\n // decode payload\n decodePayload(data, this.socket.binaryType).forEach(callback);\n // if an event did not trigger closing\n if (\"closed\" !== this.readyState) {\n // if we got data we're not polling\n this.polling = false;\n this.emitReserved(\"pollComplete\");\n if (\"open\" === this.readyState) {\n this.poll();\n }\n else {\n }\n }\n }\n /**\n * For polling, send a close packet.\n *\n * @api private\n */\n doClose() {\n const close = () => {\n this.write([{ type: \"close\" }]);\n };\n if (\"open\" === this.readyState) {\n close();\n }\n else {\n // in case we're trying to close while\n // handshaking is in progress (GH-164)\n this.once(\"open\", close);\n }\n }\n /**\n * Writes a packets payload.\n *\n * @param {Array} data packets\n * @param {Function} drain callback\n * @api private\n */\n write(packets) {\n this.writable = false;\n encodePayload(packets, data => {\n this.doWrite(data, () => {\n this.writable = true;\n this.emitReserved(\"drain\");\n });\n });\n }\n /**\n * Generates uri for connection.\n *\n * @api private\n */\n uri() {\n let query = this.query || {};\n const schema = this.opts.secure ? \"https\" : \"http\";\n let port = \"\";\n // cache busting is forced\n if (false !== this.opts.timestampRequests) {\n query[this.opts.timestampParam] = yeast();\n }\n if (!this.supportsBinary && !query.sid) {\n query.b64 = 1;\n }\n // avoid port if default for schema\n if (this.opts.port &&\n ((\"https\" === schema && Number(this.opts.port) !== 443) ||\n (\"http\" === schema && Number(this.opts.port) !== 80))) {\n port = \":\" + this.opts.port;\n }\n const encodedQuery = encode(query);\n const ipv6 = this.opts.hostname.indexOf(\":\") !== -1;\n return (schema +\n \"://\" +\n (ipv6 ? \"[\" + this.opts.hostname + \"]\" : this.opts.hostname) +\n port +\n this.opts.path +\n (encodedQuery.length ? \"?\" + encodedQuery : \"\"));\n }\n /**\n * Creates a request.\n *\n * @param {String} method\n * @api private\n */\n request(opts = {}) {\n Object.assign(opts, { xd: this.xd, xs: this.xs }, this.opts);\n return new Request(this.uri(), opts);\n }\n /**\n * Sends data.\n *\n * @param {String} data to send.\n * @param {Function} called upon flush.\n * @api private\n */\n doWrite(data, fn) {\n const req = this.request({\n method: \"POST\",\n data: data\n });\n req.on(\"success\", fn);\n req.on(\"error\", (xhrStatus, context) => {\n this.onError(\"xhr post error\", xhrStatus, context);\n });\n }\n /**\n * Starts a poll cycle.\n *\n * @api private\n */\n doPoll() {\n const req = this.request();\n req.on(\"data\", this.onData.bind(this));\n req.on(\"error\", (xhrStatus, context) => {\n this.onError(\"xhr poll error\", xhrStatus, context);\n });\n this.pollXhr = req;\n }\n}\nexport class Request extends Emitter {\n /**\n * Request constructor\n *\n * @param {Object} options\n * @api public\n */\n constructor(uri, opts) {\n super();\n installTimerFunctions(this, opts);\n this.opts = opts;\n this.method = opts.method || \"GET\";\n this.uri = uri;\n this.async = false !== opts.async;\n this.data = undefined !== opts.data ? opts.data : null;\n this.create();\n }\n /**\n * Creates the XHR object and sends the request.\n *\n * @api private\n */\n create() {\n const opts = pick(this.opts, \"agent\", \"pfx\", \"key\", \"passphrase\", \"cert\", \"ca\", \"ciphers\", \"rejectUnauthorized\", \"autoUnref\");\n opts.xdomain = !!this.opts.xd;\n opts.xscheme = !!this.opts.xs;\n const xhr = (this.xhr = new XMLHttpRequest(opts));\n try {\n xhr.open(this.method, this.uri, this.async);\n try {\n if (this.opts.extraHeaders) {\n xhr.setDisableHeaderCheck && xhr.setDisableHeaderCheck(true);\n for (let i in this.opts.extraHeaders) {\n if (this.opts.extraHeaders.hasOwnProperty(i)) {\n xhr.setRequestHeader(i, this.opts.extraHeaders[i]);\n }\n }\n }\n }\n catch (e) { }\n if (\"POST\" === this.method) {\n try {\n xhr.setRequestHeader(\"Content-type\", \"text/plain;charset=UTF-8\");\n }\n catch (e) { }\n }\n try {\n xhr.setRequestHeader(\"Accept\", \"*/*\");\n }\n catch (e) { }\n // ie6 check\n if (\"withCredentials\" in xhr) {\n xhr.withCredentials = this.opts.withCredentials;\n }\n if (this.opts.requestTimeout) {\n xhr.timeout = this.opts.requestTimeout;\n }\n xhr.onreadystatechange = () => {\n if (4 !== xhr.readyState)\n return;\n if (200 === xhr.status || 1223 === xhr.status) {\n this.onLoad();\n }\n else {\n // make sure the `error` event handler that's user-set\n // does not throw in the same tick and gets caught here\n this.setTimeoutFn(() => {\n this.onError(typeof xhr.status === \"number\" ? xhr.status : 0);\n }, 0);\n }\n };\n xhr.send(this.data);\n }\n catch (e) {\n // Need to defer since .create() is called directly from the constructor\n // and thus the 'error' event can only be only bound *after* this exception\n // occurs. Therefore, also, we cannot throw here at all.\n this.setTimeoutFn(() => {\n this.onError(e);\n }, 0);\n return;\n }\n if (typeof document !== \"undefined\") {\n this.index = Request.requestsCount++;\n Request.requests[this.index] = this;\n }\n }\n /**\n * Called upon error.\n *\n * @api private\n */\n onError(err) {\n this.emitReserved(\"error\", err, this.xhr);\n this.cleanup(true);\n }\n /**\n * Cleans up house.\n *\n * @api private\n */\n cleanup(fromError) {\n if (\"undefined\" === typeof this.xhr || null === this.xhr) {\n return;\n }\n this.xhr.onreadystatechange = empty;\n if (fromError) {\n try {\n this.xhr.abort();\n }\n catch (e) { }\n }\n if (typeof document !== \"undefined\") {\n delete Request.requests[this.index];\n }\n this.xhr = null;\n }\n /**\n * Called upon load.\n *\n * @api private\n */\n onLoad() {\n const data = this.xhr.responseText;\n if (data !== null) {\n this.emitReserved(\"data\", data);\n this.emitReserved(\"success\");\n this.cleanup();\n }\n }\n /**\n * Aborts the request.\n *\n * @api public\n */\n abort() {\n this.cleanup();\n }\n}\nRequest.requestsCount = 0;\nRequest.requests = {};\n/**\n * Aborts pending requests when unloading the window. This is needed to prevent\n * memory leaks (e.g. when using IE) and to ensure that no spurious error is\n * emitted.\n */\nif (typeof document !== \"undefined\") {\n // @ts-ignore\n if (typeof attachEvent === \"function\") {\n // @ts-ignore\n attachEvent(\"onunload\", unloadHandler);\n }\n else if (typeof addEventListener === \"function\") {\n const terminationEvent = \"onpagehide\" in globalThis ? \"pagehide\" : \"unload\";\n addEventListener(terminationEvent, unloadHandler, false);\n }\n}\nfunction unloadHandler() {\n for (let i in Request.requests) {\n if (Request.requests.hasOwnProperty(i)) {\n Request.requests[i].abort();\n }\n }\n}\n","import { globalThisShim as globalThis } from \"../globalThis.js\";\nexport const nextTick = (() => {\n const isPromiseAvailable = typeof Promise === \"function\" && typeof Promise.resolve === \"function\";\n if (isPromiseAvailable) {\n return cb => Promise.resolve().then(cb);\n }\n else {\n return (cb, setTimeoutFn) => setTimeoutFn(cb, 0);\n }\n})();\nexport const WebSocket = globalThis.WebSocket || globalThis.MozWebSocket;\nexport const usingBrowserWebSocket = true;\nexport const defaultBinaryType = \"arraybuffer\";\n","import { Transport } from \"../transport.js\";\nimport { encode } from \"../contrib/parseqs.js\";\nimport { yeast } from \"../contrib/yeast.js\";\nimport { pick } from \"../util.js\";\nimport { defaultBinaryType, nextTick, usingBrowserWebSocket, WebSocket } from \"./websocket-constructor.js\";\nimport { encodePacket } from \"engine.io-parser\";\n// detect ReactNative environment\nconst isReactNative = typeof navigator !== \"undefined\" &&\n typeof navigator.product === \"string\" &&\n navigator.product.toLowerCase() === \"reactnative\";\nexport class WS extends Transport {\n /**\n * WebSocket transport constructor.\n *\n * @api {Object} connection options\n * @api public\n */\n constructor(opts) {\n super(opts);\n this.supportsBinary = !opts.forceBase64;\n }\n /**\n * Transport name.\n *\n * @api public\n */\n get name() {\n return \"websocket\";\n }\n /**\n * Opens socket.\n *\n * @api private\n */\n doOpen() {\n if (!this.check()) {\n // let probe timeout\n return;\n }\n const uri = this.uri();\n const protocols = this.opts.protocols;\n // React Native only supports the 'headers' option, and will print a warning if anything else is passed\n const opts = isReactNative\n ? {}\n : pick(this.opts, \"agent\", \"perMessageDeflate\", \"pfx\", \"key\", \"passphrase\", \"cert\", \"ca\", \"ciphers\", \"rejectUnauthorized\", \"localAddress\", \"protocolVersion\", \"origin\", \"maxPayload\", \"family\", \"checkServerIdentity\");\n if (this.opts.extraHeaders) {\n opts.headers = this.opts.extraHeaders;\n }\n try {\n this.ws =\n usingBrowserWebSocket && !isReactNative\n ? protocols\n ? new WebSocket(uri, protocols)\n : new WebSocket(uri)\n : new WebSocket(uri, protocols, opts);\n }\n catch (err) {\n return this.emitReserved(\"error\", err);\n }\n this.ws.binaryType = this.socket.binaryType || defaultBinaryType;\n this.addEventListeners();\n }\n /**\n * Adds event listeners to the socket\n *\n * @api private\n */\n addEventListeners() {\n this.ws.onopen = () => {\n if (this.opts.autoUnref) {\n this.ws._socket.unref();\n }\n this.onOpen();\n };\n this.ws.onclose = closeEvent => this.onClose({\n description: \"websocket connection closed\",\n context: closeEvent\n });\n this.ws.onmessage = ev => this.onData(ev.data);\n this.ws.onerror = e => this.onError(\"websocket error\", e);\n }\n /**\n * Writes data to socket.\n *\n * @param {Array} array of packets.\n * @api private\n */\n write(packets) {\n this.writable = false;\n // encodePacket efficient as it uses WS framing\n // no need for encodePayload\n for (let i = 0; i < packets.length; i++) {\n const packet = packets[i];\n const lastPacket = i === packets.length - 1;\n encodePacket(packet, this.supportsBinary, data => {\n // always create a new object (GH-437)\n const opts = {};\n if (!usingBrowserWebSocket) {\n if (packet.options) {\n opts.compress = packet.options.compress;\n }\n if (this.opts.perMessageDeflate) {\n const len = \n // @ts-ignore\n \"string\" === typeof data ? Buffer.byteLength(data) : data.length;\n if (len < this.opts.perMessageDeflate.threshold) {\n opts.compress = false;\n }\n }\n }\n // Sometimes the websocket has already been closed but the browser didn't\n // have a chance of informing us about it yet, in that case send will\n // throw an error\n try {\n if (usingBrowserWebSocket) {\n // TypeError is thrown when passing the second argument on Safari\n this.ws.send(data);\n }\n else {\n this.ws.send(data, opts);\n }\n }\n catch (e) {\n }\n if (lastPacket) {\n // fake drain\n // defer to next tick to allow Socket to clear writeBuffer\n nextTick(() => {\n this.writable = true;\n this.emitReserved(\"drain\");\n }, this.setTimeoutFn);\n }\n });\n }\n }\n /**\n * Closes socket.\n *\n * @api private\n */\n doClose() {\n if (typeof this.ws !== \"undefined\") {\n this.ws.close();\n this.ws = null;\n }\n }\n /**\n * Generates uri for connection.\n *\n * @api private\n */\n uri() {\n let query = this.query || {};\n const schema = this.opts.secure ? \"wss\" : \"ws\";\n let port = \"\";\n // avoid port if default for schema\n if (this.opts.port &&\n ((\"wss\" === schema && Number(this.opts.port) !== 443) ||\n (\"ws\" === schema && Number(this.opts.port) !== 80))) {\n port = \":\" + this.opts.port;\n }\n // append timestamp to URI\n if (this.opts.timestampRequests) {\n query[this.opts.timestampParam] = yeast();\n }\n // communicate binary support capabilities\n if (!this.supportsBinary) {\n query.b64 = 1;\n }\n const encodedQuery = encode(query);\n const ipv6 = this.opts.hostname.indexOf(\":\") !== -1;\n return (schema +\n \"://\" +\n (ipv6 ? \"[\" + this.opts.hostname + \"]\" : this.opts.hostname) +\n port +\n this.opts.path +\n (encodedQuery.length ? \"?\" + encodedQuery : \"\"));\n }\n /**\n * Feature detection for WebSocket.\n *\n * @return {Boolean} whether this transport is available.\n * @api public\n */\n check() {\n return !!WebSocket;\n }\n}\n","import { Polling } from \"./polling.js\";\nimport { WS } from \"./websocket.js\";\nexport const transports = {\n websocket: WS,\n polling: Polling\n};\n","// imported from https://github.com/galkn/parseuri\n/**\n * Parses an URI\n *\n * @author Steven Levithan (MIT license)\n * @api private\n */\nconst re = /^(?:(?![^:@]+:[^:@\\/]*@)(http|https|ws|wss):\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/;\nconst parts = [\n 'source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'\n];\nexport function parse(str) {\n const src = str, b = str.indexOf('['), e = str.indexOf(']');\n if (b != -1 && e != -1) {\n str = str.substring(0, b) + str.substring(b, e).replace(/:/g, ';') + str.substring(e, str.length);\n }\n let m = re.exec(str || ''), uri = {}, i = 14;\n while (i--) {\n uri[parts[i]] = m[i] || '';\n }\n if (b != -1 && e != -1) {\n uri.source = src;\n uri.host = uri.host.substring(1, uri.host.length - 1).replace(/;/g, ':');\n uri.authority = uri.authority.replace('[', '').replace(']', '').replace(/;/g, ':');\n uri.ipv6uri = true;\n }\n uri.pathNames = pathNames(uri, uri['path']);\n uri.queryKey = queryKey(uri, uri['query']);\n return uri;\n}\nfunction pathNames(obj, path) {\n const regx = /\\/{2,9}/g, names = path.replace(regx, \"/\").split(\"/\");\n if (path.slice(0, 1) == '/' || path.length === 0) {\n names.splice(0, 1);\n }\n if (path.slice(-1) == '/') {\n names.splice(names.length - 1, 1);\n }\n return names;\n}\nfunction queryKey(uri, query) {\n const data = {};\n query.replace(/(?:^|&)([^&=]*)=?([^&]*)/g, function ($0, $1, $2) {\n if ($1) {\n data[$1] = $2;\n }\n });\n return data;\n}\n","import { transports } from \"./transports/index.js\";\nimport { installTimerFunctions, byteLength } from \"./util.js\";\nimport { decode } from \"./contrib/parseqs.js\";\nimport { parse } from \"./contrib/parseuri.js\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { protocol } from \"engine.io-parser\";\nexport class Socket extends Emitter {\n /**\n * Socket constructor.\n *\n * @param {String|Object} uri or options\n * @param {Object} opts - options\n * @api public\n */\n constructor(uri, opts = {}) {\n super();\n if (uri && \"object\" === typeof uri) {\n opts = uri;\n uri = null;\n }\n if (uri) {\n uri = parse(uri);\n opts.hostname = uri.host;\n opts.secure = uri.protocol === \"https\" || uri.protocol === \"wss\";\n opts.port = uri.port;\n if (uri.query)\n opts.query = uri.query;\n }\n else if (opts.host) {\n opts.hostname = parse(opts.host).host;\n }\n installTimerFunctions(this, opts);\n this.secure =\n null != opts.secure\n ? opts.secure\n : typeof location !== \"undefined\" && \"https:\" === location.protocol;\n if (opts.hostname && !opts.port) {\n // if no port is specified manually, use the protocol default\n opts.port = this.secure ? \"443\" : \"80\";\n }\n this.hostname =\n opts.hostname ||\n (typeof location !== \"undefined\" ? location.hostname : \"localhost\");\n this.port =\n opts.port ||\n (typeof location !== \"undefined\" && location.port\n ? location.port\n : this.secure\n ? \"443\"\n : \"80\");\n this.transports = opts.transports || [\"polling\", \"websocket\"];\n this.readyState = \"\";\n this.writeBuffer = [];\n this.prevBufferLen = 0;\n this.opts = Object.assign({\n path: \"/engine.io\",\n agent: false,\n withCredentials: false,\n upgrade: true,\n timestampParam: \"t\",\n rememberUpgrade: false,\n rejectUnauthorized: true,\n perMessageDeflate: {\n threshold: 1024\n },\n transportOptions: {},\n closeOnBeforeunload: true\n }, opts);\n this.opts.path = this.opts.path.replace(/\\/$/, \"\") + \"/\";\n if (typeof this.opts.query === \"string\") {\n this.opts.query = decode(this.opts.query);\n }\n // set on handshake\n this.id = null;\n this.upgrades = null;\n this.pingInterval = null;\n this.pingTimeout = null;\n // set on heartbeat\n this.pingTimeoutTimer = null;\n if (typeof addEventListener === \"function\") {\n if (this.opts.closeOnBeforeunload) {\n // Firefox closes the connection when the \"beforeunload\" event is emitted but not Chrome. This event listener\n // ensures every browser behaves the same (no \"disconnect\" event at the Socket.IO level when the page is\n // closed/reloaded)\n this.beforeunloadEventListener = () => {\n if (this.transport) {\n // silently close the transport\n this.transport.removeAllListeners();\n this.transport.close();\n }\n };\n addEventListener(\"beforeunload\", this.beforeunloadEventListener, false);\n }\n if (this.hostname !== \"localhost\") {\n this.offlineEventListener = () => {\n this.onClose(\"transport close\", {\n description: \"network connection lost\"\n });\n };\n addEventListener(\"offline\", this.offlineEventListener, false);\n }\n }\n this.open();\n }\n /**\n * Creates transport of the given type.\n *\n * @param {String} transport name\n * @return {Transport}\n * @api private\n */\n createTransport(name) {\n const query = Object.assign({}, this.opts.query);\n // append engine.io protocol identifier\n query.EIO = protocol;\n // transport name\n query.transport = name;\n // session id if we already have one\n if (this.id)\n query.sid = this.id;\n const opts = Object.assign({}, this.opts.transportOptions[name], this.opts, {\n query,\n socket: this,\n hostname: this.hostname,\n secure: this.secure,\n port: this.port\n });\n return new transports[name](opts);\n }\n /**\n * Initializes transport to use and starts probe.\n *\n * @api private\n */\n open() {\n let transport;\n if (this.opts.rememberUpgrade &&\n Socket.priorWebsocketSuccess &&\n this.transports.indexOf(\"websocket\") !== -1) {\n transport = \"websocket\";\n }\n else if (0 === this.transports.length) {\n // Emit error on next tick so it can be listened to\n this.setTimeoutFn(() => {\n this.emitReserved(\"error\", \"No transports available\");\n }, 0);\n return;\n }\n else {\n transport = this.transports[0];\n }\n this.readyState = \"opening\";\n // Retry with the next transport if the transport is disabled (jsonp: false)\n try {\n transport = this.createTransport(transport);\n }\n catch (e) {\n this.transports.shift();\n this.open();\n return;\n }\n transport.open();\n this.setTransport(transport);\n }\n /**\n * Sets the current transport. Disables the existing one (if any).\n *\n * @api private\n */\n setTransport(transport) {\n if (this.transport) {\n this.transport.removeAllListeners();\n }\n // set up transport\n this.transport = transport;\n // set up transport listeners\n transport\n .on(\"drain\", this.onDrain.bind(this))\n .on(\"packet\", this.onPacket.bind(this))\n .on(\"error\", this.onError.bind(this))\n .on(\"close\", reason => this.onClose(\"transport close\", reason));\n }\n /**\n * Probes a transport.\n *\n * @param {String} transport name\n * @api private\n */\n probe(name) {\n let transport = this.createTransport(name);\n let failed = false;\n Socket.priorWebsocketSuccess = false;\n const onTransportOpen = () => {\n if (failed)\n return;\n transport.send([{ type: \"ping\", data: \"probe\" }]);\n transport.once(\"packet\", msg => {\n if (failed)\n return;\n if (\"pong\" === msg.type && \"probe\" === msg.data) {\n this.upgrading = true;\n this.emitReserved(\"upgrading\", transport);\n if (!transport)\n return;\n Socket.priorWebsocketSuccess = \"websocket\" === transport.name;\n this.transport.pause(() => {\n if (failed)\n return;\n if (\"closed\" === this.readyState)\n return;\n cleanup();\n this.setTransport(transport);\n transport.send([{ type: \"upgrade\" }]);\n this.emitReserved(\"upgrade\", transport);\n transport = null;\n this.upgrading = false;\n this.flush();\n });\n }\n else {\n const err = new Error(\"probe error\");\n // @ts-ignore\n err.transport = transport.name;\n this.emitReserved(\"upgradeError\", err);\n }\n });\n };\n function freezeTransport() {\n if (failed)\n return;\n // Any callback called by transport should be ignored since now\n failed = true;\n cleanup();\n transport.close();\n transport = null;\n }\n // Handle any error that happens while probing\n const onerror = err => {\n const error = new Error(\"probe error: \" + err);\n // @ts-ignore\n error.transport = transport.name;\n freezeTransport();\n this.emitReserved(\"upgradeError\", error);\n };\n function onTransportClose() {\n onerror(\"transport closed\");\n }\n // When the socket is closed while we're probing\n function onclose() {\n onerror(\"socket closed\");\n }\n // When the socket is upgraded while we're probing\n function onupgrade(to) {\n if (transport && to.name !== transport.name) {\n freezeTransport();\n }\n }\n // Remove all listeners on the transport and on self\n const cleanup = () => {\n transport.removeListener(\"open\", onTransportOpen);\n transport.removeListener(\"error\", onerror);\n transport.removeListener(\"close\", onTransportClose);\n this.off(\"close\", onclose);\n this.off(\"upgrading\", onupgrade);\n };\n transport.once(\"open\", onTransportOpen);\n transport.once(\"error\", onerror);\n transport.once(\"close\", onTransportClose);\n this.once(\"close\", onclose);\n this.once(\"upgrading\", onupgrade);\n transport.open();\n }\n /**\n * Called when connection is deemed open.\n *\n * @api private\n */\n onOpen() {\n this.readyState = \"open\";\n Socket.priorWebsocketSuccess = \"websocket\" === this.transport.name;\n this.emitReserved(\"open\");\n this.flush();\n // we check for `readyState` in case an `open`\n // listener already closed the socket\n if (\"open\" === this.readyState &&\n this.opts.upgrade &&\n this.transport.pause) {\n let i = 0;\n const l = this.upgrades.length;\n for (; i < l; i++) {\n this.probe(this.upgrades[i]);\n }\n }\n }\n /**\n * Handles a packet.\n *\n * @api private\n */\n onPacket(packet) {\n if (\"opening\" === this.readyState ||\n \"open\" === this.readyState ||\n \"closing\" === this.readyState) {\n this.emitReserved(\"packet\", packet);\n // Socket is live - any packet counts\n this.emitReserved(\"heartbeat\");\n switch (packet.type) {\n case \"open\":\n this.onHandshake(JSON.parse(packet.data));\n break;\n case \"ping\":\n this.resetPingTimeout();\n this.sendPacket(\"pong\");\n this.emitReserved(\"ping\");\n this.emitReserved(\"pong\");\n break;\n case \"error\":\n const err = new Error(\"server error\");\n // @ts-ignore\n err.code = packet.data;\n this.onError(err);\n break;\n case \"message\":\n this.emitReserved(\"data\", packet.data);\n this.emitReserved(\"message\", packet.data);\n break;\n }\n }\n else {\n }\n }\n /**\n * Called upon handshake completion.\n *\n * @param {Object} data - handshake obj\n * @api private\n */\n onHandshake(data) {\n this.emitReserved(\"handshake\", data);\n this.id = data.sid;\n this.transport.query.sid = data.sid;\n this.upgrades = this.filterUpgrades(data.upgrades);\n this.pingInterval = data.pingInterval;\n this.pingTimeout = data.pingTimeout;\n this.maxPayload = data.maxPayload;\n this.onOpen();\n // In case open handler closes socket\n if (\"closed\" === this.readyState)\n return;\n this.resetPingTimeout();\n }\n /**\n * Sets and resets ping timeout timer based on server pings.\n *\n * @api private\n */\n resetPingTimeout() {\n this.clearTimeoutFn(this.pingTimeoutTimer);\n this.pingTimeoutTimer = this.setTimeoutFn(() => {\n this.onClose(\"ping timeout\");\n }, this.pingInterval + this.pingTimeout);\n if (this.opts.autoUnref) {\n this.pingTimeoutTimer.unref();\n }\n }\n /**\n * Called on `drain` event\n *\n * @api private\n */\n onDrain() {\n this.writeBuffer.splice(0, this.prevBufferLen);\n // setting prevBufferLen = 0 is very important\n // for example, when upgrading, upgrade packet is sent over,\n // and a nonzero prevBufferLen could cause problems on `drain`\n this.prevBufferLen = 0;\n if (0 === this.writeBuffer.length) {\n this.emitReserved(\"drain\");\n }\n else {\n this.flush();\n }\n }\n /**\n * Flush write buffers.\n *\n * @api private\n */\n flush() {\n if (\"closed\" !== this.readyState &&\n this.transport.writable &&\n !this.upgrading &&\n this.writeBuffer.length) {\n const packets = this.getWritablePackets();\n this.transport.send(packets);\n // keep track of current length of writeBuffer\n // splice writeBuffer and callbackBuffer on `drain`\n this.prevBufferLen = packets.length;\n this.emitReserved(\"flush\");\n }\n }\n /**\n * Ensure the encoded size of the writeBuffer is below the maxPayload value sent by the server (only for HTTP\n * long-polling)\n *\n * @private\n */\n getWritablePackets() {\n const shouldCheckPayloadSize = this.maxPayload &&\n this.transport.name === \"polling\" &&\n this.writeBuffer.length > 1;\n if (!shouldCheckPayloadSize) {\n return this.writeBuffer;\n }\n let payloadSize = 1; // first packet type\n for (let i = 0; i < this.writeBuffer.length; i++) {\n const data = this.writeBuffer[i].data;\n if (data) {\n payloadSize += byteLength(data);\n }\n if (i > 0 && payloadSize > this.maxPayload) {\n return this.writeBuffer.slice(0, i);\n }\n payloadSize += 2; // separator + packet type\n }\n return this.writeBuffer;\n }\n /**\n * Sends a message.\n *\n * @param {String} message.\n * @param {Function} callback function.\n * @param {Object} options.\n * @return {Socket} for chaining.\n * @api public\n */\n write(msg, options, fn) {\n this.sendPacket(\"message\", msg, options, fn);\n return this;\n }\n send(msg, options, fn) {\n this.sendPacket(\"message\", msg, options, fn);\n return this;\n }\n /**\n * Sends a packet.\n *\n * @param {String} packet type.\n * @param {String} data.\n * @param {Object} options.\n * @param {Function} callback function.\n * @api private\n */\n sendPacket(type, data, options, fn) {\n if (\"function\" === typeof data) {\n fn = data;\n data = undefined;\n }\n if (\"function\" === typeof options) {\n fn = options;\n options = null;\n }\n if (\"closing\" === this.readyState || \"closed\" === this.readyState) {\n return;\n }\n options = options || {};\n options.compress = false !== options.compress;\n const packet = {\n type: type,\n data: data,\n options: options\n };\n this.emitReserved(\"packetCreate\", packet);\n this.writeBuffer.push(packet);\n if (fn)\n this.once(\"flush\", fn);\n this.flush();\n }\n /**\n * Closes the connection.\n *\n * @api public\n */\n close() {\n const close = () => {\n this.onClose(\"forced close\");\n this.transport.close();\n };\n const cleanupAndClose = () => {\n this.off(\"upgrade\", cleanupAndClose);\n this.off(\"upgradeError\", cleanupAndClose);\n close();\n };\n const waitForUpgrade = () => {\n // wait for upgrade to finish since we can't send packets while pausing a transport\n this.once(\"upgrade\", cleanupAndClose);\n this.once(\"upgradeError\", cleanupAndClose);\n };\n if (\"opening\" === this.readyState || \"open\" === this.readyState) {\n this.readyState = \"closing\";\n if (this.writeBuffer.length) {\n this.once(\"drain\", () => {\n if (this.upgrading) {\n waitForUpgrade();\n }\n else {\n close();\n }\n });\n }\n else if (this.upgrading) {\n waitForUpgrade();\n }\n else {\n close();\n }\n }\n return this;\n }\n /**\n * Called upon transport error\n *\n * @api private\n */\n onError(err) {\n Socket.priorWebsocketSuccess = false;\n this.emitReserved(\"error\", err);\n this.onClose(\"transport error\", err);\n }\n /**\n * Called upon transport close.\n *\n * @api private\n */\n onClose(reason, description) {\n if (\"opening\" === this.readyState ||\n \"open\" === this.readyState ||\n \"closing\" === this.readyState) {\n // clear timers\n this.clearTimeoutFn(this.pingTimeoutTimer);\n // stop event from firing again for transport\n this.transport.removeAllListeners(\"close\");\n // ensure transport won't stay open\n this.transport.close();\n // ignore further transport communication\n this.transport.removeAllListeners();\n if (typeof removeEventListener === \"function\") {\n removeEventListener(\"beforeunload\", this.beforeunloadEventListener, false);\n removeEventListener(\"offline\", this.offlineEventListener, false);\n }\n // set ready state\n this.readyState = \"closed\";\n // clear session id\n this.id = null;\n // emit close event\n this.emitReserved(\"close\", reason, description);\n // clean buffers after, so users can still\n // grab the buffers on `close` event\n this.writeBuffer = [];\n this.prevBufferLen = 0;\n }\n }\n /**\n * Filters upgrades, returning only those matching client transports.\n *\n * @param {Array} server upgrades\n * @api private\n *\n */\n filterUpgrades(upgrades) {\n const filteredUpgrades = [];\n let i = 0;\n const j = upgrades.length;\n for (; i < j; i++) {\n if (~this.transports.indexOf(upgrades[i]))\n filteredUpgrades.push(upgrades[i]);\n }\n return filteredUpgrades;\n }\n}\nSocket.protocol = protocol;\n","import { Socket } from \"./socket.js\";\nexport { Socket };\nexport const protocol = Socket.protocol;\nexport { Transport } from \"./transport.js\";\nexport { transports } from \"./transports/index.js\";\nexport { installTimerFunctions } from \"./util.js\";\nexport { parse } from \"./contrib/parseuri.js\";\nexport { nextTick } from \"./transports/websocket-constructor.js\";\n","const withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\nconst isView = (obj) => {\n return typeof ArrayBuffer.isView === \"function\"\n ? ArrayBuffer.isView(obj)\n : obj.buffer instanceof ArrayBuffer;\n};\nconst toString = Object.prototype.toString;\nconst withNativeBlob = typeof Blob === \"function\" ||\n (typeof Blob !== \"undefined\" &&\n toString.call(Blob) === \"[object BlobConstructor]\");\nconst withNativeFile = typeof File === \"function\" ||\n (typeof File !== \"undefined\" &&\n toString.call(File) === \"[object FileConstructor]\");\n/**\n * Returns true if obj is a Buffer, an ArrayBuffer, a Blob or a File.\n *\n * @private\n */\nexport function isBinary(obj) {\n return ((withNativeArrayBuffer && (obj instanceof ArrayBuffer || isView(obj))) ||\n (withNativeBlob && obj instanceof Blob) ||\n (withNativeFile && obj instanceof File));\n}\nexport function hasBinary(obj, toJSON) {\n if (!obj || typeof obj !== \"object\") {\n return false;\n }\n if (Array.isArray(obj)) {\n for (let i = 0, l = obj.length; i < l; i++) {\n if (hasBinary(obj[i])) {\n return true;\n }\n }\n return false;\n }\n if (isBinary(obj)) {\n return true;\n }\n if (obj.toJSON &&\n typeof obj.toJSON === \"function\" &&\n arguments.length === 1) {\n return hasBinary(obj.toJSON(), true);\n }\n for (const key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key) && hasBinary(obj[key])) {\n return true;\n }\n }\n return false;\n}\n","import { isBinary } from \"./is-binary.js\";\n/**\n * Replaces every Buffer | ArrayBuffer | Blob | File in packet with a numbered placeholder.\n *\n * @param {Object} packet - socket.io event packet\n * @return {Object} with deconstructed packet and list of buffers\n * @public\n */\nexport function deconstructPacket(packet) {\n const buffers = [];\n const packetData = packet.data;\n const pack = packet;\n pack.data = _deconstructPacket(packetData, buffers);\n pack.attachments = buffers.length; // number of binary 'attachments'\n return { packet: pack, buffers: buffers };\n}\nfunction _deconstructPacket(data, buffers) {\n if (!data)\n return data;\n if (isBinary(data)) {\n const placeholder = { _placeholder: true, num: buffers.length };\n buffers.push(data);\n return placeholder;\n }\n else if (Array.isArray(data)) {\n const newData = new Array(data.length);\n for (let i = 0; i < data.length; i++) {\n newData[i] = _deconstructPacket(data[i], buffers);\n }\n return newData;\n }\n else if (typeof data === \"object\" && !(data instanceof Date)) {\n const newData = {};\n for (const key in data) {\n if (Object.prototype.hasOwnProperty.call(data, key)) {\n newData[key] = _deconstructPacket(data[key], buffers);\n }\n }\n return newData;\n }\n return data;\n}\n/**\n * Reconstructs a binary packet from its placeholder packet and buffers\n *\n * @param {Object} packet - event packet with placeholders\n * @param {Array} buffers - binary buffers to put in placeholder positions\n * @return {Object} reconstructed packet\n * @public\n */\nexport function reconstructPacket(packet, buffers) {\n packet.data = _reconstructPacket(packet.data, buffers);\n packet.attachments = undefined; // no longer useful\n return packet;\n}\nfunction _reconstructPacket(data, buffers) {\n if (!data)\n return data;\n if (data && data._placeholder) {\n return buffers[data.num]; // appropriate buffer (should be natural order anyway)\n }\n else if (Array.isArray(data)) {\n for (let i = 0; i < data.length; i++) {\n data[i] = _reconstructPacket(data[i], buffers);\n }\n }\n else if (typeof data === \"object\") {\n for (const key in data) {\n if (Object.prototype.hasOwnProperty.call(data, key)) {\n data[key] = _reconstructPacket(data[key], buffers);\n }\n }\n }\n return data;\n}\n","import { Emitter } from \"@socket.io/component-emitter\";\nimport { deconstructPacket, reconstructPacket } from \"./binary.js\";\nimport { isBinary, hasBinary } from \"./is-binary.js\";\n/**\n * Protocol version.\n *\n * @public\n */\nexport const protocol = 5;\nexport var PacketType;\n(function (PacketType) {\n PacketType[PacketType[\"CONNECT\"] = 0] = \"CONNECT\";\n PacketType[PacketType[\"DISCONNECT\"] = 1] = \"DISCONNECT\";\n PacketType[PacketType[\"EVENT\"] = 2] = \"EVENT\";\n PacketType[PacketType[\"ACK\"] = 3] = \"ACK\";\n PacketType[PacketType[\"CONNECT_ERROR\"] = 4] = \"CONNECT_ERROR\";\n PacketType[PacketType[\"BINARY_EVENT\"] = 5] = \"BINARY_EVENT\";\n PacketType[PacketType[\"BINARY_ACK\"] = 6] = \"BINARY_ACK\";\n})(PacketType || (PacketType = {}));\n/**\n * A socket.io Encoder instance\n */\nexport class Encoder {\n /**\n * Encoder constructor\n *\n * @param {function} replacer - custom replacer to pass down to JSON.parse\n */\n constructor(replacer) {\n this.replacer = replacer;\n }\n /**\n * Encode a packet as a single string if non-binary, or as a\n * buffer sequence, depending on packet type.\n *\n * @param {Object} obj - packet object\n */\n encode(obj) {\n if (obj.type === PacketType.EVENT || obj.type === PacketType.ACK) {\n if (hasBinary(obj)) {\n obj.type =\n obj.type === PacketType.EVENT\n ? PacketType.BINARY_EVENT\n : PacketType.BINARY_ACK;\n return this.encodeAsBinary(obj);\n }\n }\n return [this.encodeAsString(obj)];\n }\n /**\n * Encode packet as string.\n */\n encodeAsString(obj) {\n // first is type\n let str = \"\" + obj.type;\n // attachments if we have them\n if (obj.type === PacketType.BINARY_EVENT ||\n obj.type === PacketType.BINARY_ACK) {\n str += obj.attachments + \"-\";\n }\n // if we have a namespace other than `/`\n // we append it followed by a comma `,`\n if (obj.nsp && \"/\" !== obj.nsp) {\n str += obj.nsp + \",\";\n }\n // immediately followed by the id\n if (null != obj.id) {\n str += obj.id;\n }\n // json data\n if (null != obj.data) {\n str += JSON.stringify(obj.data, this.replacer);\n }\n return str;\n }\n /**\n * Encode packet as 'buffer sequence' by removing blobs, and\n * deconstructing packet into object with placeholders and\n * a list of buffers.\n */\n encodeAsBinary(obj) {\n const deconstruction = deconstructPacket(obj);\n const pack = this.encodeAsString(deconstruction.packet);\n const buffers = deconstruction.buffers;\n buffers.unshift(pack); // add packet info to beginning of data list\n return buffers; // write all the buffers\n }\n}\n/**\n * A socket.io Decoder instance\n *\n * @return {Object} decoder\n */\nexport class Decoder extends Emitter {\n /**\n * Decoder constructor\n *\n * @param {function} reviver - custom reviver to pass down to JSON.stringify\n */\n constructor(reviver) {\n super();\n this.reviver = reviver;\n }\n /**\n * Decodes an encoded packet string into packet JSON.\n *\n * @param {String} obj - encoded packet\n */\n add(obj) {\n let packet;\n if (typeof obj === \"string\") {\n packet = this.decodeString(obj);\n if (packet.type === PacketType.BINARY_EVENT ||\n packet.type === PacketType.BINARY_ACK) {\n // binary packet's json\n this.reconstructor = new BinaryReconstructor(packet);\n // no attachments, labeled binary but no binary data to follow\n if (packet.attachments === 0) {\n super.emitReserved(\"decoded\", packet);\n }\n }\n else {\n // non-binary full packet\n super.emitReserved(\"decoded\", packet);\n }\n }\n else if (isBinary(obj) || obj.base64) {\n // raw binary data\n if (!this.reconstructor) {\n throw new Error(\"got binary data when not reconstructing a packet\");\n }\n else {\n packet = this.reconstructor.takeBinaryData(obj);\n if (packet) {\n // received final buffer\n this.reconstructor = null;\n super.emitReserved(\"decoded\", packet);\n }\n }\n }\n else {\n throw new Error(\"Unknown type: \" + obj);\n }\n }\n /**\n * Decode a packet String (JSON data)\n *\n * @param {String} str\n * @return {Object} packet\n */\n decodeString(str) {\n let i = 0;\n // look up type\n const p = {\n type: Number(str.charAt(0)),\n };\n if (PacketType[p.type] === undefined) {\n throw new Error(\"unknown packet type \" + p.type);\n }\n // look up attachments if type binary\n if (p.type === PacketType.BINARY_EVENT ||\n p.type === PacketType.BINARY_ACK) {\n const start = i + 1;\n while (str.charAt(++i) !== \"-\" && i != str.length) { }\n const buf = str.substring(start, i);\n if (buf != Number(buf) || str.charAt(i) !== \"-\") {\n throw new Error(\"Illegal attachments\");\n }\n p.attachments = Number(buf);\n }\n // look up namespace (if any)\n if (\"/\" === str.charAt(i + 1)) {\n const start = i + 1;\n while (++i) {\n const c = str.charAt(i);\n if (\",\" === c)\n break;\n if (i === str.length)\n break;\n }\n p.nsp = str.substring(start, i);\n }\n else {\n p.nsp = \"/\";\n }\n // look up id\n const next = str.charAt(i + 1);\n if (\"\" !== next && Number(next) == next) {\n const start = i + 1;\n while (++i) {\n const c = str.charAt(i);\n if (null == c || Number(c) != c) {\n --i;\n break;\n }\n if (i === str.length)\n break;\n }\n p.id = Number(str.substring(start, i + 1));\n }\n // look up json data\n if (str.charAt(++i)) {\n const payload = this.tryParse(str.substr(i));\n if (Decoder.isPayloadValid(p.type, payload)) {\n p.data = payload;\n }\n else {\n throw new Error(\"invalid payload\");\n }\n }\n return p;\n }\n tryParse(str) {\n try {\n return JSON.parse(str, this.reviver);\n }\n catch (e) {\n return false;\n }\n }\n static isPayloadValid(type, payload) {\n switch (type) {\n case PacketType.CONNECT:\n return typeof payload === \"object\";\n case PacketType.DISCONNECT:\n return payload === undefined;\n case PacketType.CONNECT_ERROR:\n return typeof payload === \"string\" || typeof payload === \"object\";\n case PacketType.EVENT:\n case PacketType.BINARY_EVENT:\n return Array.isArray(payload) && payload.length > 0;\n case PacketType.ACK:\n case PacketType.BINARY_ACK:\n return Array.isArray(payload);\n }\n }\n /**\n * Deallocates a parser's resources\n */\n destroy() {\n if (this.reconstructor) {\n this.reconstructor.finishedReconstruction();\n }\n }\n}\n/**\n * A manager of a binary event's 'buffer sequence'. Should\n * be constructed whenever a packet of type BINARY_EVENT is\n * decoded.\n *\n * @param {Object} packet\n * @return {BinaryReconstructor} initialized reconstructor\n */\nclass BinaryReconstructor {\n constructor(packet) {\n this.packet = packet;\n this.buffers = [];\n this.reconPack = packet;\n }\n /**\n * Method to be called when binary data received from connection\n * after a BINARY_EVENT packet.\n *\n * @param {Buffer | ArrayBuffer} binData - the raw binary data received\n * @return {null | Object} returns null if more binary data is expected or\n * a reconstructed packet object if all buffers have been received.\n */\n takeBinaryData(binData) {\n this.buffers.push(binData);\n if (this.buffers.length === this.reconPack.attachments) {\n // done with buffer list\n const packet = reconstructPacket(this.reconPack, this.buffers);\n this.finishedReconstruction();\n return packet;\n }\n return null;\n }\n /**\n * Cleans up binary packet reconstruction variables.\n */\n finishedReconstruction() {\n this.reconPack = null;\n this.buffers = [];\n }\n}\n","export function on(obj, ev, fn) {\n obj.on(ev, fn);\n return function subDestroy() {\n obj.off(ev, fn);\n };\n}\n","import { PacketType } from \"socket.io-parser\";\nimport { on } from \"./on.js\";\nimport { Emitter, } from \"@socket.io/component-emitter\";\n/**\n * Internal events.\n * These events can't be emitted by the user.\n */\nconst RESERVED_EVENTS = Object.freeze({\n connect: 1,\n connect_error: 1,\n disconnect: 1,\n disconnecting: 1,\n // EventEmitter reserved events: https://nodejs.org/api/events.html#events_event_newlistener\n newListener: 1,\n removeListener: 1,\n});\n/**\n * A Socket is the fundamental class for interacting with the server.\n *\n * A Socket belongs to a certain Namespace (by default /) and uses an underlying {@link Manager} to communicate.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(\"connected\");\n * });\n *\n * // send an event to the server\n * socket.emit(\"foo\", \"bar\");\n *\n * socket.on(\"foobar\", () => {\n * // an event was received from the server\n * });\n *\n * // upon disconnection\n * socket.on(\"disconnect\", (reason) => {\n * console.log(`disconnected due to ${reason}`);\n * });\n */\nexport class Socket extends Emitter {\n /**\n * `Socket` constructor.\n */\n constructor(io, nsp, opts) {\n super();\n /**\n * Whether the socket is currently connected to the server.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(socket.connected); // true\n * });\n *\n * socket.on(\"disconnect\", () => {\n * console.log(socket.connected); // false\n * });\n */\n this.connected = false;\n /**\n * Buffer for packets received before the CONNECT packet\n */\n this.receiveBuffer = [];\n /**\n * Buffer for packets that will be sent once the socket is connected\n */\n this.sendBuffer = [];\n this.ids = 0;\n this.acks = {};\n this.flags = {};\n this.io = io;\n this.nsp = nsp;\n if (opts && opts.auth) {\n this.auth = opts.auth;\n }\n if (this.io._autoConnect)\n this.open();\n }\n /**\n * Whether the socket is currently disconnected\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(socket.disconnected); // false\n * });\n *\n * socket.on(\"disconnect\", () => {\n * console.log(socket.disconnected); // true\n * });\n */\n get disconnected() {\n return !this.connected;\n }\n /**\n * Subscribe to open, close and packet events\n *\n * @private\n */\n subEvents() {\n if (this.subs)\n return;\n const io = this.io;\n this.subs = [\n on(io, \"open\", this.onopen.bind(this)),\n on(io, \"packet\", this.onpacket.bind(this)),\n on(io, \"error\", this.onerror.bind(this)),\n on(io, \"close\", this.onclose.bind(this)),\n ];\n }\n /**\n * Whether the Socket will try to reconnect when its Manager connects or reconnects.\n *\n * @example\n * const socket = io();\n *\n * console.log(socket.active); // true\n *\n * socket.on(\"disconnect\", (reason) => {\n * if (reason === \"io server disconnect\") {\n * // the disconnection was initiated by the server, you need to manually reconnect\n * console.log(socket.active); // false\n * }\n * // else the socket will automatically try to reconnect\n * console.log(socket.active); // true\n * });\n */\n get active() {\n return !!this.subs;\n }\n /**\n * \"Opens\" the socket.\n *\n * @example\n * const socket = io({\n * autoConnect: false\n * });\n *\n * socket.connect();\n */\n connect() {\n if (this.connected)\n return this;\n this.subEvents();\n if (!this.io[\"_reconnecting\"])\n this.io.open(); // ensure open\n if (\"open\" === this.io._readyState)\n this.onopen();\n return this;\n }\n /**\n * Alias for {@link connect()}.\n */\n open() {\n return this.connect();\n }\n /**\n * Sends a `message` event.\n *\n * This method mimics the WebSocket.send() method.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/send\n *\n * @example\n * socket.send(\"hello\");\n *\n * // this is equivalent to\n * socket.emit(\"message\", \"hello\");\n *\n * @return self\n */\n send(...args) {\n args.unshift(\"message\");\n this.emit.apply(this, args);\n return this;\n }\n /**\n * Override `emit`.\n * If the event is in `events`, it's emitted normally.\n *\n * @example\n * socket.emit(\"hello\", \"world\");\n *\n * // all serializable datastructures are supported (no need to call JSON.stringify)\n * socket.emit(\"hello\", 1, \"2\", { 3: [\"4\"], 5: Uint8Array.from([6]) });\n *\n * // with an acknowledgement from the server\n * socket.emit(\"hello\", \"world\", (val) => {\n * // ...\n * });\n *\n * @return self\n */\n emit(ev, ...args) {\n if (RESERVED_EVENTS.hasOwnProperty(ev)) {\n throw new Error('\"' + ev.toString() + '\" is a reserved event name');\n }\n args.unshift(ev);\n const packet = {\n type: PacketType.EVENT,\n data: args,\n };\n packet.options = {};\n packet.options.compress = this.flags.compress !== false;\n // event ack callback\n if (\"function\" === typeof args[args.length - 1]) {\n const id = this.ids++;\n const ack = args.pop();\n this._registerAckCallback(id, ack);\n packet.id = id;\n }\n const isTransportWritable = this.io.engine &&\n this.io.engine.transport &&\n this.io.engine.transport.writable;\n const discardPacket = this.flags.volatile && (!isTransportWritable || !this.connected);\n if (discardPacket) {\n }\n else if (this.connected) {\n this.notifyOutgoingListeners(packet);\n this.packet(packet);\n }\n else {\n this.sendBuffer.push(packet);\n }\n this.flags = {};\n return this;\n }\n /**\n * @private\n */\n _registerAckCallback(id, ack) {\n const timeout = this.flags.timeout;\n if (timeout === undefined) {\n this.acks[id] = ack;\n return;\n }\n // @ts-ignore\n const timer = this.io.setTimeoutFn(() => {\n delete this.acks[id];\n for (let i = 0; i < this.sendBuffer.length; i++) {\n if (this.sendBuffer[i].id === id) {\n this.sendBuffer.splice(i, 1);\n }\n }\n ack.call(this, new Error(\"operation has timed out\"));\n }, timeout);\n this.acks[id] = (...args) => {\n // @ts-ignore\n this.io.clearTimeoutFn(timer);\n ack.apply(this, [null, ...args]);\n };\n }\n /**\n * Sends a packet.\n *\n * @param packet\n * @private\n */\n packet(packet) {\n packet.nsp = this.nsp;\n this.io._packet(packet);\n }\n /**\n * Called upon engine `open`.\n *\n * @private\n */\n onopen() {\n if (typeof this.auth == \"function\") {\n this.auth((data) => {\n this.packet({ type: PacketType.CONNECT, data });\n });\n }\n else {\n this.packet({ type: PacketType.CONNECT, data: this.auth });\n }\n }\n /**\n * Called upon engine or manager `error`.\n *\n * @param err\n * @private\n */\n onerror(err) {\n if (!this.connected) {\n this.emitReserved(\"connect_error\", err);\n }\n }\n /**\n * Called upon engine `close`.\n *\n * @param reason\n * @param description\n * @private\n */\n onclose(reason, description) {\n this.connected = false;\n delete this.id;\n this.emitReserved(\"disconnect\", reason, description);\n }\n /**\n * Called with socket packet.\n *\n * @param packet\n * @private\n */\n onpacket(packet) {\n const sameNamespace = packet.nsp === this.nsp;\n if (!sameNamespace)\n return;\n switch (packet.type) {\n case PacketType.CONNECT:\n if (packet.data && packet.data.sid) {\n const id = packet.data.sid;\n this.onconnect(id);\n }\n else {\n this.emitReserved(\"connect_error\", new Error(\"It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)\"));\n }\n break;\n case PacketType.EVENT:\n case PacketType.BINARY_EVENT:\n this.onevent(packet);\n break;\n case PacketType.ACK:\n case PacketType.BINARY_ACK:\n this.onack(packet);\n break;\n case PacketType.DISCONNECT:\n this.ondisconnect();\n break;\n case PacketType.CONNECT_ERROR:\n this.destroy();\n const err = new Error(packet.data.message);\n // @ts-ignore\n err.data = packet.data.data;\n this.emitReserved(\"connect_error\", err);\n break;\n }\n }\n /**\n * Called upon a server event.\n *\n * @param packet\n * @private\n */\n onevent(packet) {\n const args = packet.data || [];\n if (null != packet.id) {\n args.push(this.ack(packet.id));\n }\n if (this.connected) {\n this.emitEvent(args);\n }\n else {\n this.receiveBuffer.push(Object.freeze(args));\n }\n }\n emitEvent(args) {\n if (this._anyListeners && this._anyListeners.length) {\n const listeners = this._anyListeners.slice();\n for (const listener of listeners) {\n listener.apply(this, args);\n }\n }\n super.emit.apply(this, args);\n }\n /**\n * Produces an ack callback to emit with an event.\n *\n * @private\n */\n ack(id) {\n const self = this;\n let sent = false;\n return function (...args) {\n // prevent double callbacks\n if (sent)\n return;\n sent = true;\n self.packet({\n type: PacketType.ACK,\n id: id,\n data: args,\n });\n };\n }\n /**\n * Called upon a server acknowlegement.\n *\n * @param packet\n * @private\n */\n onack(packet) {\n const ack = this.acks[packet.id];\n if (\"function\" === typeof ack) {\n ack.apply(this, packet.data);\n delete this.acks[packet.id];\n }\n else {\n }\n }\n /**\n * Called upon server connect.\n *\n * @private\n */\n onconnect(id) {\n this.id = id;\n this.connected = true;\n this.emitBuffered();\n this.emitReserved(\"connect\");\n }\n /**\n * Emit buffered events (received and emitted).\n *\n * @private\n */\n emitBuffered() {\n this.receiveBuffer.forEach((args) => this.emitEvent(args));\n this.receiveBuffer = [];\n this.sendBuffer.forEach((packet) => {\n this.notifyOutgoingListeners(packet);\n this.packet(packet);\n });\n this.sendBuffer = [];\n }\n /**\n * Called upon server disconnect.\n *\n * @private\n */\n ondisconnect() {\n this.destroy();\n this.onclose(\"io server disconnect\");\n }\n /**\n * Called upon forced client/server side disconnections,\n * this method ensures the manager stops tracking us and\n * that reconnections don't get triggered for this.\n *\n * @private\n */\n destroy() {\n if (this.subs) {\n // clean subscriptions to avoid reconnections\n this.subs.forEach((subDestroy) => subDestroy());\n this.subs = undefined;\n }\n this.io[\"_destroy\"](this);\n }\n /**\n * Disconnects the socket manually. In that case, the socket will not try to reconnect.\n *\n * If this is the last active Socket instance of the {@link Manager}, the low-level connection will be closed.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"disconnect\", (reason) => {\n * // console.log(reason); prints \"io client disconnect\"\n * });\n *\n * socket.disconnect();\n *\n * @return self\n */\n disconnect() {\n if (this.connected) {\n this.packet({ type: PacketType.DISCONNECT });\n }\n // remove socket from pool\n this.destroy();\n if (this.connected) {\n // fire events\n this.onclose(\"io client disconnect\");\n }\n return this;\n }\n /**\n * Alias for {@link disconnect()}.\n *\n * @return self\n */\n close() {\n return this.disconnect();\n }\n /**\n * Sets the compress flag.\n *\n * @example\n * socket.compress(false).emit(\"hello\");\n *\n * @param compress - if `true`, compresses the sending data\n * @return self\n */\n compress(compress) {\n this.flags.compress = compress;\n return this;\n }\n /**\n * Sets a modifier for a subsequent event emission that the event message will be dropped when this socket is not\n * ready to send messages.\n *\n * @example\n * socket.volatile.emit(\"hello\"); // the server may or may not receive it\n *\n * @returns self\n */\n get volatile() {\n this.flags.volatile = true;\n return this;\n }\n /**\n * Sets a modifier for a subsequent event emission that the callback will be called with an error when the\n * given number of milliseconds have elapsed without an acknowledgement from the server:\n *\n * @example\n * socket.timeout(5000).emit(\"my-event\", (err) => {\n * if (err) {\n * // the server did not acknowledge the event in the given delay\n * }\n * });\n *\n * @returns self\n */\n timeout(timeout) {\n this.flags.timeout = timeout;\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback.\n *\n * @example\n * socket.onAny((event, ...args) => {\n * console.log(`got ${event}`);\n * });\n *\n * @param listener\n */\n onAny(listener) {\n this._anyListeners = this._anyListeners || [];\n this._anyListeners.push(listener);\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback. The listener is added to the beginning of the listeners array.\n *\n * @example\n * socket.prependAny((event, ...args) => {\n * console.log(`got event ${event}`);\n * });\n *\n * @param listener\n */\n prependAny(listener) {\n this._anyListeners = this._anyListeners || [];\n this._anyListeners.unshift(listener);\n return this;\n }\n /**\n * Removes the listener that will be fired when any event is emitted.\n *\n * @example\n * const catchAllListener = (event, ...args) => {\n * console.log(`got event ${event}`);\n * }\n *\n * socket.onAny(catchAllListener);\n *\n * // remove a specific listener\n * socket.offAny(catchAllListener);\n *\n * // or remove all listeners\n * socket.offAny();\n *\n * @param listener\n */\n offAny(listener) {\n if (!this._anyListeners) {\n return this;\n }\n if (listener) {\n const listeners = this._anyListeners;\n for (let i = 0; i < listeners.length; i++) {\n if (listener === listeners[i]) {\n listeners.splice(i, 1);\n return this;\n }\n }\n }\n else {\n this._anyListeners = [];\n }\n return this;\n }\n /**\n * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated,\n * e.g. to remove listeners.\n */\n listenersAny() {\n return this._anyListeners || [];\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback.\n *\n * Note: acknowledgements sent to the server are not included.\n *\n * @example\n * socket.onAnyOutgoing((event, ...args) => {\n * console.log(`sent event ${event}`);\n * });\n *\n * @param listener\n */\n onAnyOutgoing(listener) {\n this._anyOutgoingListeners = this._anyOutgoingListeners || [];\n this._anyOutgoingListeners.push(listener);\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback. The listener is added to the beginning of the listeners array.\n *\n * Note: acknowledgements sent to the server are not included.\n *\n * @example\n * socket.prependAnyOutgoing((event, ...args) => {\n * console.log(`sent event ${event}`);\n * });\n *\n * @param listener\n */\n prependAnyOutgoing(listener) {\n this._anyOutgoingListeners = this._anyOutgoingListeners || [];\n this._anyOutgoingListeners.unshift(listener);\n return this;\n }\n /**\n * Removes the listener that will be fired when any event is emitted.\n *\n * @example\n * const catchAllListener = (event, ...args) => {\n * console.log(`sent event ${event}`);\n * }\n *\n * socket.onAnyOutgoing(catchAllListener);\n *\n * // remove a specific listener\n * socket.offAnyOutgoing(catchAllListener);\n *\n * // or remove all listeners\n * socket.offAnyOutgoing();\n *\n * @param [listener] - the catch-all listener (optional)\n */\n offAnyOutgoing(listener) {\n if (!this._anyOutgoingListeners) {\n return this;\n }\n if (listener) {\n const listeners = this._anyOutgoingListeners;\n for (let i = 0; i < listeners.length; i++) {\n if (listener === listeners[i]) {\n listeners.splice(i, 1);\n return this;\n }\n }\n }\n else {\n this._anyOutgoingListeners = [];\n }\n return this;\n }\n /**\n * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated,\n * e.g. to remove listeners.\n */\n listenersAnyOutgoing() {\n return this._anyOutgoingListeners || [];\n }\n /**\n * Notify the listeners for each packet sent\n *\n * @param packet\n *\n * @private\n */\n notifyOutgoingListeners(packet) {\n if (this._anyOutgoingListeners && this._anyOutgoingListeners.length) {\n const listeners = this._anyOutgoingListeners.slice();\n for (const listener of listeners) {\n listener.apply(this, packet.data);\n }\n }\n }\n}\n","/**\n * Initialize backoff timer with `opts`.\n *\n * - `min` initial timeout in milliseconds [100]\n * - `max` max timeout [10000]\n * - `jitter` [0]\n * - `factor` [2]\n *\n * @param {Object} opts\n * @api public\n */\nexport function Backoff(opts) {\n opts = opts || {};\n this.ms = opts.min || 100;\n this.max = opts.max || 10000;\n this.factor = opts.factor || 2;\n this.jitter = opts.jitter > 0 && opts.jitter <= 1 ? opts.jitter : 0;\n this.attempts = 0;\n}\n/**\n * Return the backoff duration.\n *\n * @return {Number}\n * @api public\n */\nBackoff.prototype.duration = function () {\n var ms = this.ms * Math.pow(this.factor, this.attempts++);\n if (this.jitter) {\n var rand = Math.random();\n var deviation = Math.floor(rand * this.jitter * ms);\n ms = (Math.floor(rand * 10) & 1) == 0 ? ms - deviation : ms + deviation;\n }\n return Math.min(ms, this.max) | 0;\n};\n/**\n * Reset the number of attempts.\n *\n * @api public\n */\nBackoff.prototype.reset = function () {\n this.attempts = 0;\n};\n/**\n * Set the minimum duration\n *\n * @api public\n */\nBackoff.prototype.setMin = function (min) {\n this.ms = min;\n};\n/**\n * Set the maximum duration\n *\n * @api public\n */\nBackoff.prototype.setMax = function (max) {\n this.max = max;\n};\n/**\n * Set the jitter\n *\n * @api public\n */\nBackoff.prototype.setJitter = function (jitter) {\n this.jitter = jitter;\n};\n","import { Socket as Engine, installTimerFunctions, nextTick, } from \"engine.io-client\";\nimport { Socket } from \"./socket.js\";\nimport * as parser from \"socket.io-parser\";\nimport { on } from \"./on.js\";\nimport { Backoff } from \"./contrib/backo2.js\";\nimport { Emitter, } from \"@socket.io/component-emitter\";\nexport class Manager extends Emitter {\n constructor(uri, opts) {\n var _a;\n super();\n this.nsps = {};\n this.subs = [];\n if (uri && \"object\" === typeof uri) {\n opts = uri;\n uri = undefined;\n }\n opts = opts || {};\n opts.path = opts.path || \"/socket.io\";\n this.opts = opts;\n installTimerFunctions(this, opts);\n this.reconnection(opts.reconnection !== false);\n this.reconnectionAttempts(opts.reconnectionAttempts || Infinity);\n this.reconnectionDelay(opts.reconnectionDelay || 1000);\n this.reconnectionDelayMax(opts.reconnectionDelayMax || 5000);\n this.randomizationFactor((_a = opts.randomizationFactor) !== null && _a !== void 0 ? _a : 0.5);\n this.backoff = new Backoff({\n min: this.reconnectionDelay(),\n max: this.reconnectionDelayMax(),\n jitter: this.randomizationFactor(),\n });\n this.timeout(null == opts.timeout ? 20000 : opts.timeout);\n this._readyState = \"closed\";\n this.uri = uri;\n const _parser = opts.parser || parser;\n this.encoder = new _parser.Encoder();\n this.decoder = new _parser.Decoder();\n this._autoConnect = opts.autoConnect !== false;\n if (this._autoConnect)\n this.open();\n }\n reconnection(v) {\n if (!arguments.length)\n return this._reconnection;\n this._reconnection = !!v;\n return this;\n }\n reconnectionAttempts(v) {\n if (v === undefined)\n return this._reconnectionAttempts;\n this._reconnectionAttempts = v;\n return this;\n }\n reconnectionDelay(v) {\n var _a;\n if (v === undefined)\n return this._reconnectionDelay;\n this._reconnectionDelay = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setMin(v);\n return this;\n }\n randomizationFactor(v) {\n var _a;\n if (v === undefined)\n return this._randomizationFactor;\n this._randomizationFactor = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setJitter(v);\n return this;\n }\n reconnectionDelayMax(v) {\n var _a;\n if (v === undefined)\n return this._reconnectionDelayMax;\n this._reconnectionDelayMax = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setMax(v);\n return this;\n }\n timeout(v) {\n if (!arguments.length)\n return this._timeout;\n this._timeout = v;\n return this;\n }\n /**\n * Starts trying to reconnect if reconnection is enabled and we have not\n * started reconnecting yet\n *\n * @private\n */\n maybeReconnectOnOpen() {\n // Only try to reconnect if it's the first time we're connecting\n if (!this._reconnecting &&\n this._reconnection &&\n this.backoff.attempts === 0) {\n // keeps reconnection from firing twice for the same reconnection loop\n this.reconnect();\n }\n }\n /**\n * Sets the current transport `socket`.\n *\n * @param {Function} fn - optional, callback\n * @return self\n * @public\n */\n open(fn) {\n if (~this._readyState.indexOf(\"open\"))\n return this;\n this.engine = new Engine(this.uri, this.opts);\n const socket = this.engine;\n const self = this;\n this._readyState = \"opening\";\n this.skipReconnect = false;\n // emit `open`\n const openSubDestroy = on(socket, \"open\", function () {\n self.onopen();\n fn && fn();\n });\n // emit `error`\n const errorSub = on(socket, \"error\", (err) => {\n self.cleanup();\n self._readyState = \"closed\";\n this.emitReserved(\"error\", err);\n if (fn) {\n fn(err);\n }\n else {\n // Only do this if there is no fn to handle the error\n self.maybeReconnectOnOpen();\n }\n });\n if (false !== this._timeout) {\n const timeout = this._timeout;\n if (timeout === 0) {\n openSubDestroy(); // prevents a race condition with the 'open' event\n }\n // set timer\n const timer = this.setTimeoutFn(() => {\n openSubDestroy();\n socket.close();\n // @ts-ignore\n socket.emit(\"error\", new Error(\"timeout\"));\n }, timeout);\n if (this.opts.autoUnref) {\n timer.unref();\n }\n this.subs.push(function subDestroy() {\n clearTimeout(timer);\n });\n }\n this.subs.push(openSubDestroy);\n this.subs.push(errorSub);\n return this;\n }\n /**\n * Alias for open()\n *\n * @return self\n * @public\n */\n connect(fn) {\n return this.open(fn);\n }\n /**\n * Called upon transport open.\n *\n * @private\n */\n onopen() {\n // clear old subs\n this.cleanup();\n // mark as open\n this._readyState = \"open\";\n this.emitReserved(\"open\");\n // add new subs\n const socket = this.engine;\n this.subs.push(on(socket, \"ping\", this.onping.bind(this)), on(socket, \"data\", this.ondata.bind(this)), on(socket, \"error\", this.onerror.bind(this)), on(socket, \"close\", this.onclose.bind(this)), on(this.decoder, \"decoded\", this.ondecoded.bind(this)));\n }\n /**\n * Called upon a ping.\n *\n * @private\n */\n onping() {\n this.emitReserved(\"ping\");\n }\n /**\n * Called with data.\n *\n * @private\n */\n ondata(data) {\n try {\n this.decoder.add(data);\n }\n catch (e) {\n this.onclose(\"parse error\", e);\n }\n }\n /**\n * Called when parser fully decodes a packet.\n *\n * @private\n */\n ondecoded(packet) {\n // the nextTick call prevents an exception in a user-provided event listener from triggering a disconnection due to a \"parse error\"\n nextTick(() => {\n this.emitReserved(\"packet\", packet);\n }, this.setTimeoutFn);\n }\n /**\n * Called upon socket error.\n *\n * @private\n */\n onerror(err) {\n this.emitReserved(\"error\", err);\n }\n /**\n * Creates a new socket for the given `nsp`.\n *\n * @return {Socket}\n * @public\n */\n socket(nsp, opts) {\n let socket = this.nsps[nsp];\n if (!socket) {\n socket = new Socket(this, nsp, opts);\n this.nsps[nsp] = socket;\n }\n return socket;\n }\n /**\n * Called upon a socket close.\n *\n * @param socket\n * @private\n */\n _destroy(socket) {\n const nsps = Object.keys(this.nsps);\n for (const nsp of nsps) {\n const socket = this.nsps[nsp];\n if (socket.active) {\n return;\n }\n }\n this._close();\n }\n /**\n * Writes a packet.\n *\n * @param packet\n * @private\n */\n _packet(packet) {\n const encodedPackets = this.encoder.encode(packet);\n for (let i = 0; i < encodedPackets.length; i++) {\n this.engine.write(encodedPackets[i], packet.options);\n }\n }\n /**\n * Clean up transport subscriptions and packet buffer.\n *\n * @private\n */\n cleanup() {\n this.subs.forEach((subDestroy) => subDestroy());\n this.subs.length = 0;\n this.decoder.destroy();\n }\n /**\n * Close the current socket.\n *\n * @private\n */\n _close() {\n this.skipReconnect = true;\n this._reconnecting = false;\n this.onclose(\"forced close\");\n if (this.engine)\n this.engine.close();\n }\n /**\n * Alias for close()\n *\n * @private\n */\n disconnect() {\n return this._close();\n }\n /**\n * Called upon engine close.\n *\n * @private\n */\n onclose(reason, description) {\n this.cleanup();\n this.backoff.reset();\n this._readyState = \"closed\";\n this.emitReserved(\"close\", reason, description);\n if (this._reconnection && !this.skipReconnect) {\n this.reconnect();\n }\n }\n /**\n * Attempt a reconnection.\n *\n * @private\n */\n reconnect() {\n if (this._reconnecting || this.skipReconnect)\n return this;\n const self = this;\n if (this.backoff.attempts >= this._reconnectionAttempts) {\n this.backoff.reset();\n this.emitReserved(\"reconnect_failed\");\n this._reconnecting = false;\n }\n else {\n const delay = this.backoff.duration();\n this._reconnecting = true;\n const timer = this.setTimeoutFn(() => {\n if (self.skipReconnect)\n return;\n this.emitReserved(\"reconnect_attempt\", self.backoff.attempts);\n // check again for the case socket closed in above events\n if (self.skipReconnect)\n return;\n self.open((err) => {\n if (err) {\n self._reconnecting = false;\n self.reconnect();\n this.emitReserved(\"reconnect_error\", err);\n }\n else {\n self.onreconnect();\n }\n });\n }, delay);\n if (this.opts.autoUnref) {\n timer.unref();\n }\n this.subs.push(function subDestroy() {\n clearTimeout(timer);\n });\n }\n }\n /**\n * Called upon successful reconnect.\n *\n * @private\n */\n onreconnect() {\n const attempt = this.backoff.attempts;\n this._reconnecting = false;\n this.backoff.reset();\n this.emitReserved(\"reconnect\", attempt);\n }\n}\n","import { url } from \"./url.js\";\nimport { Manager } from \"./manager.js\";\nimport { Socket } from \"./socket.js\";\n/**\n * Managers cache.\n */\nconst cache = {};\nfunction lookup(uri, opts) {\n if (typeof uri === \"object\") {\n opts = uri;\n uri = undefined;\n }\n opts = opts || {};\n const parsed = url(uri, opts.path || \"/socket.io\");\n const source = parsed.source;\n const id = parsed.id;\n const path = parsed.path;\n const sameNamespace = cache[id] && path in cache[id][\"nsps\"];\n const newConnection = opts.forceNew ||\n opts[\"force new connection\"] ||\n false === opts.multiplex ||\n sameNamespace;\n let io;\n if (newConnection) {\n io = new Manager(source, opts);\n }\n else {\n if (!cache[id]) {\n cache[id] = new Manager(source, opts);\n }\n io = cache[id];\n }\n if (parsed.query && !opts.query) {\n opts.query = parsed.queryKey;\n }\n return io.socket(parsed.path, opts);\n}\n// so that \"lookup\" can be used both as a function (e.g. `io(...)`) and as a\n// namespace (e.g. `io.connect(...)`), for backward compatibility\nObject.assign(lookup, {\n Manager,\n Socket,\n io: lookup,\n connect: lookup,\n});\n/**\n * Protocol version.\n *\n * @public\n */\nexport { protocol } from \"socket.io-parser\";\n/**\n * Expose constructors for standalone build.\n *\n * @public\n */\nexport { Manager, Socket, lookup as io, lookup as connect, lookup as default, };\n","import { parse } from \"engine.io-client\";\n/**\n * URL parser.\n *\n * @param uri - url\n * @param path - the request path of the connection\n * @param loc - An object meant to mimic window.location.\n * Defaults to window.location.\n * @public\n */\nexport function url(uri, path = \"\", loc) {\n let obj = uri;\n // default to window.location\n loc = loc || (typeof location !== \"undefined\" && location);\n if (null == uri)\n uri = loc.protocol + \"//\" + loc.host;\n // relative path support\n if (typeof uri === \"string\") {\n if (\"/\" === uri.charAt(0)) {\n if (\"/\" === uri.charAt(1)) {\n uri = loc.protocol + uri;\n }\n else {\n uri = loc.host + uri;\n }\n }\n if (!/^(https?|wss?):\\/\\//.test(uri)) {\n if (\"undefined\" !== typeof loc) {\n uri = loc.protocol + \"//\" + uri;\n }\n else {\n uri = \"https://\" + uri;\n }\n }\n // parse\n obj = parse(uri);\n }\n // make sure we treat `localhost:80` and `localhost` equally\n if (!obj.port) {\n if (/^(http|ws)$/.test(obj.protocol)) {\n obj.port = \"80\";\n }\n else if (/^(http|ws)s$/.test(obj.protocol)) {\n obj.port = \"443\";\n }\n }\n obj.path = obj.path || \"/\";\n const ipv6 = obj.host.indexOf(\":\") !== -1;\n const host = ipv6 ? \"[\" + obj.host + \"]\" : obj.host;\n // define unique id\n obj.id = obj.protocol + \"://\" + host + \":\" + obj.port + path;\n // define href\n obj.href =\n obj.protocol +\n \"://\" +\n host +\n (loc && loc.port === obj.port ? \"\" : \":\" + obj.port);\n return obj;\n}\n"],"names":["PACKET_TYPES","Object","create","PACKET_TYPES_REVERSE","keys","forEach","key","ERROR_PACKET","type","data","withNativeBlob","Blob","prototype","toString","call","withNativeArrayBuffer","ArrayBuffer","encodePacket","supportsBinary","callback","obj","encodeBlobAsBase64","isView","buffer","fileReader","FileReader","onload","content","result","split","readAsDataURL","chars","lookup","Uint8Array","i","length","charCodeAt","decodePacket","encodedPacket","binaryType","mapBinary","charAt","decodeBase64Packet","substring","decoded","base64","encoded1","encoded2","encoded3","encoded4","bufferLength","len","p","arraybuffer","bytes","decode","SEPARATOR","String","fromCharCode","Emitter","mixin","on","addEventListener","event","fn","this","_callbacks","push","once","off","apply","arguments","removeListener","removeAllListeners","removeEventListener","cb","callbacks","splice","emit","args","Array","slice","emitReserved","listeners","hasListeners","globalThisShim","self","window","Function","pick","_len","attr","_key","reduce","acc","k","hasOwnProperty","NATIVE_SET_TIMEOUT","setTimeout","NATIVE_CLEAR_TIMEOUT","clearTimeout","installTimerFunctions","opts","useNativeTimers","setTimeoutFn","bind","globalThis","clearTimeoutFn","prev","TransportError","reason","description","context","_this","_classCallCheck","_super","Error","Transport","_Emitter","_inherits","_super2","_createSuper","_this2","writable","_assertThisInitialized","query","readyState","socket","_createClass","value","_get","_getPrototypeOf","doOpen","doClose","onClose","packets","write","packet","onPacket","details","alphabet","map","seed","encode","num","encoded","Math","floor","yeast","now","Date","str","encodeURIComponent","qs","qry","pairs","l","pair","decodeURIComponent","XMLHttpRequest","err","hasCORS","XHR","xdomain","e","concat","join","empty","hasXHR2","responseType","Polling","_Transport","polling","location","isSSL","protocol","port","xd","hostname","xs","secure","forceBase64","get","poll","onPause","pause","total","doPoll","_this3","encodedPayload","encodedPackets","decodedPacket","decodePayload","onOpen","_this4","close","_this5","count","encodePayload","doWrite","schema","timestampRequests","timestampParam","sid","b64","Number","encodedQuery","indexOf","path","_extends","Request","uri","_this6","req","request","method","xhrStatus","onError","_this7","onData","pollXhr","_this8","async","undefined","_this9","xscheme","xhr","open","extraHeaders","setDisableHeaderCheck","setRequestHeader","withCredentials","requestTimeout","timeout","onreadystatechange","status","onLoad","send","document","index","requestsCount","requests","cleanup","fromError","abort","responseText","attachEvent","unloadHandler","nextTick","Promise","resolve","then","WebSocket","MozWebSocket","isReactNative","navigator","product","toLowerCase","WS","check","protocols","headers","ws","addEventListeners","onopen","autoUnref","_socket","unref","onclose","closeEvent","onmessage","ev","onerror","_loop","lastPacket","transports","websocket","re","parts","parse","src","b","replace","m","exec","source","host","authority","ipv6uri","pathNames","regx","names","queryKey","$0","$1","$2","Socket","writeBuffer","prevBufferLen","agent","upgrade","rememberUpgrade","rejectUnauthorized","perMessageDeflate","threshold","transportOptions","closeOnBeforeunload","id","upgrades","pingInterval","pingTimeout","pingTimeoutTimer","beforeunloadEventListener","transport","offlineEventListener","name","EIO","priorWebsocketSuccess","createTransport","shift","setTransport","onDrain","failed","onTransportOpen","msg","upgrading","flush","freezeTransport","error","onTransportClose","onupgrade","to","probe","onHandshake","JSON","resetPingTimeout","sendPacket","code","filterUpgrades","maxPayload","getWritablePackets","payloadSize","c","utf8Length","ceil","byteLength","size","options","compress","cleanupAndClose","waitForUpgrade","filteredUpgrades","j","Socket$1","withNativeFile","File","isBinary","hasBinary","toJSON","_typeof","isArray","deconstructPacket","buffers","packetData","pack","_deconstructPacket","attachments","placeholder","_placeholder","newData","reconstructPacket","_reconstructPacket","PacketType","Encoder","replacer","EVENT","ACK","encodeAsString","BINARY_EVENT","BINARY_ACK","encodeAsBinary","nsp","stringify","deconstruction","unshift","Decoder","reviver","decodeString","reconstructor","BinaryReconstructor","takeBinaryData","start","buf","next","payload","tryParse","substr","isPayloadValid","finishedReconstruction","CONNECT","DISCONNECT","CONNECT_ERROR","reconPack","binData","RESERVED_EVENTS","freeze","connect","connect_error","disconnect","disconnecting","newListener","io","connected","receiveBuffer","sendBuffer","ids","acks","flags","auth","_autoConnect","subs","onpacket","subEvents","_readyState","_len2","_key2","ack","pop","_registerAckCallback","isTransportWritable","engine","discardPacket","notifyOutgoingListeners","timer","_len3","_key3","_packet","onconnect","onevent","onack","ondisconnect","destroy","message","emitEvent","_anyListeners","_step","_iterator","_createForOfIteratorHelper","s","n","done","f","sent","_len4","_key4","emitBuffered","subDestroy","listener","_anyOutgoingListeners","_step2","_iterator2","Backoff","ms","min","max","factor","jitter","attempts","duration","pow","rand","random","deviation","reset","setMin","setMax","setJitter","Manager","_a","nsps","reconnection","reconnectionAttempts","Infinity","reconnectionDelay","reconnectionDelayMax","randomizationFactor","backoff","_parser","parser","encoder","decoder","autoConnect","v","_reconnection","_reconnectionAttempts","_reconnectionDelay","_randomizationFactor","_reconnectionDelayMax","_timeout","_reconnecting","reconnect","Engine","skipReconnect","openSubDestroy","errorSub","maybeReconnectOnOpen","onping","ondata","ondecoded","add","_i","_nsps","active","_close","delay","onreconnect","attempt","cache","parsed","loc","test","href","url","sameNamespace","forceNew","multiplex"],"mappings":"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"} \ No newline at end of file diff --git a/vendor/socketio/socket.io.msgpack.min.js b/vendor/socketio/socket.io.msgpack.min.js new file mode 100644 index 000000000..f4c785adc --- /dev/null +++ b/vendor/socketio/socket.io.msgpack.min.js @@ -0,0 +1,7 @@ +/*! + * Socket.IO v4.5.3 + * (c) 2014-2022 Guillermo Rauch + * Released under the MIT License. + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).io=e()}(this,(function(){"use strict";function t(t,e){return e.forEach((function(e){e&&"string"!=typeof e&&!Array.isArray(e)&&Object.keys(e).forEach((function(n){if("default"!==n&&!(n in t)){var r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,r.get?r:{enumerable:!0,get:function(){return e[n]}})}}))})),Object.freeze(t)}function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},e(t)}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function r(t,e){for(var n=0;nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,s=!0,a=!1;return{s:function(){n=n.call(t)},n:function(){var t=n.next();return s=t.done,t},e:function(t){a=!0,o=t},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw o}}}}var _=Object.create(null);_.open="0",_.close="1",_.ping="2",_.pong="3",_.message="4",_.upgrade="5",_.noop="6";var b=Object.create(null);Object.keys(_).forEach((function(t){b[_[t]]=t}));for(var k={type:"error",data:"parser error"},w="function"==typeof Blob||"undefined"!=typeof Blob&&"[object BlobConstructor]"===Object.prototype.toString.call(Blob),O="function"==typeof ArrayBuffer,E=function(t,e,n){var r,i=t.type,o=t.data;return w&&o instanceof Blob?e?n(o):C(o,n):O&&(o instanceof ArrayBuffer||(r=o,"function"==typeof ArrayBuffer.isView?ArrayBuffer.isView(r):r&&r.buffer instanceof ArrayBuffer))?e?n(o):C(new Blob([o]),n):n(_[i]+(o||""))},C=function(t,e){var n=new FileReader;return n.onload=function(){var t=n.result.split(",")[1];e("b"+t)},n.readAsDataURL(t)},R="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",T="undefined"==typeof Uint8Array?[]:new Uint8Array(256),S=0;S1?{type:b[n],data:t.substring(1)}:{type:b[n]}:k},x=function(t,e){if(L){var n=function(t){var e,n,r,i,o,s=.75*t.length,a=t.length,c=0;"="===t[t.length-1]&&(s--,"="===t[t.length-2]&&s--);var u=new ArrayBuffer(s),h=new Uint8Array(u);for(e=0;e>4,h[c++]=(15&r)<<4|i>>2,h[c++]=(3&i)<<6|63&o;return u}(t);return B(n,e)}return{base64:!0,data:t}},B=function(t,e){return"blob"===e&&t instanceof ArrayBuffer?new Blob([t]):t},U=String.fromCharCode(30);function j(t){if(t)return function(t){for(var e in j.prototype)t[e]=j.prototype[e];return t}(t)}j.prototype.on=j.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},j.prototype.once=function(t,e){function n(){this.off(t,n),e.apply(this,arguments)}return n.fn=e,this.on(t,n),this},j.prototype.off=j.prototype.removeListener=j.prototype.removeAllListeners=j.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+t];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var i=0;i1?e-1:0),r=1;r0);return e}function K(){var t=X(+new Date);return t!==I?(V=0,I=t):t+"."+X(V++)}for(;W<64;W++)z[$[W]]=W;function J(t){var e="";for(var n in t)t.hasOwnProperty(n)&&(e.length&&(e+="&"),e+=encodeURIComponent(n)+"="+encodeURIComponent(t[n]));return e}function Y(t){for(var e={},n=t.split("&"),r=0,i=n.length;r0&&void 0!==arguments[0]?arguments[0]:{};return o(t,{xd:this.xd,xs:this.xs},this.opts),new rt(this.uri(),t)}},{key:"doWrite",value:function(t,e){var n=this,r=this.request({method:"POST",data:t});r.on("success",e),r.on("error",(function(t,e){n.onError("xhr post error",t,e)}))}},{key:"doPoll",value:function(){var t=this,e=this.request();e.on("data",this.onData.bind(this)),e.on("error",(function(e,n){t.onError("xhr poll error",e,n)})),this.pollXhr=e}}]),r}(H),rt=function(t){s(r,t);var e=d(r);function r(t,i){var o;return n(this,r),D(l(o=e.call(this)),i),o.opts=i,o.method=i.method||"GET",o.uri=t,o.async=!1!==i.async,o.data=void 0!==i.data?i.data:null,o.create(),o}return i(r,[{key:"create",value:function(){var t=this,e=N(this.opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");e.xdomain=!!this.opts.xd,e.xscheme=!!this.opts.xs;var n=this.xhr=new Z(e);try{n.open(this.method,this.uri,this.async);try{if(this.opts.extraHeaders)for(var i in n.setDisableHeaderCheck&&n.setDisableHeaderCheck(!0),this.opts.extraHeaders)this.opts.extraHeaders.hasOwnProperty(i)&&n.setRequestHeader(i,this.opts.extraHeaders[i])}catch(t){}if("POST"===this.method)try{n.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch(t){}try{n.setRequestHeader("Accept","*/*")}catch(t){}"withCredentials"in n&&(n.withCredentials=this.opts.withCredentials),this.opts.requestTimeout&&(n.timeout=this.opts.requestTimeout),n.onreadystatechange=function(){4===n.readyState&&(200===n.status||1223===n.status?t.onLoad():t.setTimeoutFn((function(){t.onError("number"==typeof n.status?n.status:0)}),0))},n.send(this.data)}catch(e){return void this.setTimeoutFn((function(){t.onError(e)}),0)}"undefined"!=typeof document&&(this.index=r.requestsCount++,r.requests[this.index]=this)}},{key:"onError",value:function(t){this.emitReserved("error",t,this.xhr),this.cleanup(!0)}},{key:"cleanup",value:function(t){if(void 0!==this.xhr&&null!==this.xhr){if(this.xhr.onreadystatechange=tt,t)try{this.xhr.abort()}catch(t){}"undefined"!=typeof document&&delete r.requests[this.index],this.xhr=null}}},{key:"onLoad",value:function(){var t=this.xhr.responseText;null!==t&&(this.emitReserved("data",t),this.emitReserved("success"),this.cleanup())}},{key:"abort",value:function(){this.cleanup()}}]),r}(j);if(rt.requestsCount=0,rt.requests={},"undefined"!=typeof document)if("function"==typeof attachEvent)attachEvent("onunload",it);else if("function"==typeof addEventListener){addEventListener("onpagehide"in P?"pagehide":"unload",it,!1)}function it(){for(var t in rt.requests)rt.requests.hasOwnProperty(t)&&rt.requests[t].abort()}var ot="function"==typeof Promise&&"function"==typeof Promise.resolve?function(t){return Promise.resolve().then(t)}:function(t,e){return e(t,0)},st=P.WebSocket||P.MozWebSocket,at="undefined"!=typeof navigator&&"string"==typeof navigator.product&&"reactnative"===navigator.product.toLowerCase(),ct=function(t){s(r,t);var e=d(r);function r(t){var i;return n(this,r),(i=e.call(this,t)).supportsBinary=!t.forceBase64,i}return i(r,[{key:"name",get:function(){return"websocket"}},{key:"doOpen",value:function(){if(this.check()){var t=this.uri(),e=this.opts.protocols,n=at?{}:N(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(n.headers=this.opts.extraHeaders);try{this.ws=at?new st(t,e,n):e?new st(t,e):new st(t)}catch(t){return this.emitReserved("error",t)}this.ws.binaryType=this.socket.binaryType||"arraybuffer",this.addEventListeners()}}},{key:"addEventListeners",value:function(){var t=this;this.ws.onopen=function(){t.opts.autoUnref&&t.ws._socket.unref(),t.onOpen()},this.ws.onclose=function(e){return t.onClose({description:"websocket connection closed",context:e})},this.ws.onmessage=function(e){return t.onData(e.data)},this.ws.onerror=function(e){return t.onError("websocket error",e)}}},{key:"write",value:function(t){var e=this;this.writable=!1;for(var n=function(n){var r=t[n],i=n===t.length-1;E(r,e.supportsBinary,(function(t){try{e.ws.send(t)}catch(t){}i&&ot((function(){e.writable=!0,e.emitReserved("drain")}),e.setTimeoutFn)}))},r=0;r1&&void 0!==arguments[1]?arguments[1]:{};return n(this,a),i=r.call(this),t&&"object"===e(t)&&(s=t,t=null),t?(t=lt(t),s.hostname=t.host,s.secure="https"===t.protocol||"wss"===t.protocol,s.port=t.port,t.query&&(s.query=t.query)):s.host&&(s.hostname=lt(s.host).host),D(l(i),s),i.secure=null!=s.secure?s.secure:"undefined"!=typeof location&&"https:"===location.protocol,s.hostname&&!s.port&&(s.port=i.secure?"443":"80"),i.hostname=s.hostname||("undefined"!=typeof location?location.hostname:"localhost"),i.port=s.port||("undefined"!=typeof location&&location.port?location.port:i.secure?"443":"80"),i.transports=s.transports||["polling","websocket"],i.readyState="",i.writeBuffer=[],i.prevBufferLen=0,i.opts=o({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!0},s),i.opts.path=i.opts.path.replace(/\/$/,"")+"/","string"==typeof i.opts.query&&(i.opts.query=Y(i.opts.query)),i.id=null,i.upgrades=null,i.pingInterval=null,i.pingTimeout=null,i.pingTimeoutTimer=null,"function"==typeof addEventListener&&(i.opts.closeOnBeforeunload&&(i.beforeunloadEventListener=function(){i.transport&&(i.transport.removeAllListeners(),i.transport.close())},addEventListener("beforeunload",i.beforeunloadEventListener,!1)),"localhost"!==i.hostname&&(i.offlineEventListener=function(){i.onClose("transport close",{description:"network connection lost"})},addEventListener("offline",i.offlineEventListener,!1))),i.open(),i}return i(a,[{key:"createTransport",value:function(t){var e=o({},this.opts.query);e.EIO=4,e.transport=t,this.id&&(e.sid=this.id);var n=o({},this.opts.transportOptions[t],this.opts,{query:e,socket:this,hostname:this.hostname,secure:this.secure,port:this.port});return new ut[t](n)}},{key:"open",value:function(){var t,e=this;if(this.opts.rememberUpgrade&&a.priorWebsocketSuccess&&-1!==this.transports.indexOf("websocket"))t="websocket";else{if(0===this.transports.length)return void this.setTimeoutFn((function(){e.emitReserved("error","No transports available")}),0);t=this.transports[0]}this.readyState="opening";try{t=this.createTransport(t)}catch(t){return this.transports.shift(),void this.open()}t.open(),this.setTransport(t)}},{key:"setTransport",value:function(t){var e=this;this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this.onDrain.bind(this)).on("packet",this.onPacket.bind(this)).on("error",this.onError.bind(this)).on("close",(function(t){return e.onClose("transport close",t)}))}},{key:"probe",value:function(t){var e=this,n=this.createTransport(t),r=!1;a.priorWebsocketSuccess=!1;var i=function(){r||(n.send([{type:"ping",data:"probe"}]),n.once("packet",(function(t){if(!r)if("pong"===t.type&&"probe"===t.data){if(e.upgrading=!0,e.emitReserved("upgrading",n),!n)return;a.priorWebsocketSuccess="websocket"===n.name,e.transport.pause((function(){r||"closed"!==e.readyState&&(f(),e.setTransport(n),n.send([{type:"upgrade"}]),e.emitReserved("upgrade",n),n=null,e.upgrading=!1,e.flush())}))}else{var i=new Error("probe error");i.transport=n.name,e.emitReserved("upgradeError",i)}})))};function o(){r||(r=!0,f(),n.close(),n=null)}var s=function(t){var r=new Error("probe error: "+t);r.transport=n.name,o(),e.emitReserved("upgradeError",r)};function c(){s("transport closed")}function u(){s("socket closed")}function h(t){n&&t.name!==n.name&&o()}var f=function(){n.removeListener("open",i),n.removeListener("error",s),n.removeListener("close",c),e.off("close",u),e.off("upgrading",h)};n.once("open",i),n.once("error",s),n.once("close",c),this.once("close",u),this.once("upgrading",h),n.open()}},{key:"onOpen",value:function(){if(this.readyState="open",a.priorWebsocketSuccess="websocket"===this.transport.name,this.emitReserved("open"),this.flush(),"open"===this.readyState&&this.opts.upgrade&&this.transport.pause)for(var t=0,e=this.upgrades.length;t1))return this.writeBuffer;for(var t,e=1,n=0;n=57344?n+=3:(r++,n+=4);return n}(t):Math.ceil(1.33*(t.byteLength||t.size))),n>0&&e>this.maxPayload)return this.writeBuffer.slice(0,n);e+=2}return this.writeBuffer}},{key:"write",value:function(t,e,n){return this.sendPacket("message",t,e,n),this}},{key:"send",value:function(t,e,n){return this.sendPacket("message",t,e,n),this}},{key:"sendPacket",value:function(t,e,n,r){if("function"==typeof e&&(r=e,e=void 0),"function"==typeof n&&(r=n,n=null),"closing"!==this.readyState&&"closed"!==this.readyState){(n=n||{}).compress=!1!==n.compress;var i={type:t,data:e,options:n};this.emitReserved("packetCreate",i),this.writeBuffer.push(i),r&&this.once("flush",r),this.flush()}}},{key:"close",value:function(){var t=this,e=function(){t.onClose("forced close"),t.transport.close()},n=function n(){t.off("upgrade",n),t.off("upgradeError",n),e()},r=function(){t.once("upgrade",n),t.once("upgradeError",n)};return"opening"!==this.readyState&&"open"!==this.readyState||(this.readyState="closing",this.writeBuffer.length?this.once("drain",(function(){t.upgrading?r():e()})):this.upgrading?r():e()),this}},{key:"onError",value:function(t){a.priorWebsocketSuccess=!1,this.emitReserved("error",t),this.onClose("transport error",t)}},{key:"onClose",value:function(t,e){"opening"!==this.readyState&&"open"!==this.readyState&&"closing"!==this.readyState||(this.clearTimeoutFn(this.pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),"function"==typeof removeEventListener&&(removeEventListener("beforeunload",this.beforeunloadEventListener,!1),removeEventListener("offline",this.offlineEventListener,!1)),this.readyState="closed",this.id=null,this.emitReserved("close",t,e),this.writeBuffer=[],this.prevBufferLen=0)}},{key:"filterUpgrades",value:function(t){for(var e=[],n=0,r=t.length;n>6),t.setUint8(e++,128|63&r)):r<55296||r>=57344?(t.setUint8(e++,224|r>>12),t.setUint8(e++,128|r>>6&63),t.setUint8(e++,128|63&r)):(i++,r=65536+((1023&r)<<10|1023&n.charCodeAt(i)),t.setUint8(e++,240|r>>18),t.setUint8(e++,128|r>>12&63),t.setUint8(e++,128|r>>6&63),t.setUint8(e++,128|63&r))}function gt(t,n,r){var i=e(r),o=0,s=0,a=0,c=0,u=0,h=0;if("string"===i){if(u=function(t){for(var e=0,n=0,r=0,i=t.length;r=57344?n+=3:(r++,n+=4);return n}(r),u<32)t.push(160|u),h=1;else if(u<256)t.push(217,u),h=2;else if(u<65536)t.push(218,u>>8,u),h=3;else{if(!(u<4294967296))throw new Error("String too long");t.push(219,u>>24,u>>16,u>>8,u),h=5}return n.push({_str:r,_length:u,_offset:t.length}),h+u}if("number"===i)return Math.floor(r)===r&&isFinite(r)?r>=0?r<128?(t.push(r),1):r<256?(t.push(204,r),2):r<65536?(t.push(205,r>>8,r),3):r<4294967296?(t.push(206,r>>24,r>>16,r>>8,r),5):(a=r/Math.pow(2,32)>>0,c=r>>>0,t.push(207,a>>24,a>>16,a>>8,a,c>>24,c>>16,c>>8,c),9):r>=-32?(t.push(r),1):r>=-128?(t.push(208,r),2):r>=-32768?(t.push(209,r>>8,r),3):r>=-2147483648?(t.push(210,r>>24,r>>16,r>>8,r),5):(a=Math.floor(r/Math.pow(2,32)),c=r>>>0,t.push(211,a>>24,a>>16,a>>8,a,c>>24,c>>16,c>>8,c),9):(t.push(203),n.push({_float:r,_length:8,_offset:t.length}),9);if("object"===i){if(null===r)return t.push(192),1;if(Array.isArray(r)){if((u=r.length)<16)t.push(144|u),h=1;else if(u<65536)t.push(220,u>>8,u),h=3;else{if(!(u<4294967296))throw new Error("Array too large");t.push(221,u>>24,u>>16,u>>8,u),h=5}for(o=0;o>>0,t.push(215,0,a>>24,a>>16,a>>8,a,c>>24,c>>16,c>>8,c),10}if(r instanceof ArrayBuffer){if((u=r.byteLength)<256)t.push(196,u),h=2;else if(u<65536)t.push(197,u>>8,u),h=3;else{if(!(u<4294967296))throw new Error("Buffer too large");t.push(198,u>>24,u>>16,u>>8,u),h=5}return n.push({_bin:r,_length:u,_offset:t.length}),h+u}if("function"==typeof r.toJSON)return gt(t,n,r.toJSON());var l=[],p="",d=Object.keys(r);for(o=0,s=d.length;o>8,u),h=3;else{if(!(u<4294967296))throw new Error("Object too large");t.push(223,u>>24,u>>16,u>>8,u),h=5}for(o=0;o0&&(c=n[0]._offset);for(var u,h=0,f=0,l=0,p=e.length;l=65536?(i-=65536,r+=String.fromCharCode(55296+(i>>>10),56320+(1023&i))):r+=String.fromCharCode(i)}else r+=String.fromCharCode((15&a)<<12|(63&t.getUint8(++o))<<6|(63&t.getUint8(++o))<<0);else r+=String.fromCharCode((31&a)<<6|63&t.getUint8(++o));else r+=String.fromCharCode(a)}return r}(this._view,this._offset,t);return this._offset+=t,e},_t.prototype._bin=function(t){var e=this._buffer.slice(this._offset,this._offset+t);return this._offset+=t,e},_t.prototype._parse=function(){var t,e=this._view.getUint8(this._offset++),n=0,r=0,i=0,o=0;if(e<192)return e<128?e:e<144?this._map(15&e):e<160?this._array(15&e):this._str(31&e);if(e>223)return-1*(255-e+1);switch(e){case 192:return null;case 194:return!1;case 195:return!0;case 196:return n=this._view.getUint8(this._offset),this._offset+=1,this._bin(n);case 197:return n=this._view.getUint16(this._offset),this._offset+=2,this._bin(n);case 198:return n=this._view.getUint32(this._offset),this._offset+=4,this._bin(n);case 199:return n=this._view.getUint8(this._offset),r=this._view.getInt8(this._offset+1),this._offset+=2,[r,this._bin(n)];case 200:return n=this._view.getUint16(this._offset),r=this._view.getInt8(this._offset+2),this._offset+=3,[r,this._bin(n)];case 201:return n=this._view.getUint32(this._offset),r=this._view.getInt8(this._offset+4),this._offset+=5,[r,this._bin(n)];case 202:return t=this._view.getFloat32(this._offset),this._offset+=4,t;case 203:return t=this._view.getFloat64(this._offset),this._offset+=8,t;case 204:return t=this._view.getUint8(this._offset),this._offset+=1,t;case 205:return t=this._view.getUint16(this._offset),this._offset+=2,t;case 206:return t=this._view.getUint32(this._offset),this._offset+=4,t;case 207:return i=this._view.getUint32(this._offset)*Math.pow(2,32),o=this._view.getUint32(this._offset+4),this._offset+=8,i+o;case 208:return t=this._view.getInt8(this._offset),this._offset+=1,t;case 209:return t=this._view.getInt16(this._offset),this._offset+=2,t;case 210:return t=this._view.getInt32(this._offset),this._offset+=4,t;case 211:return i=this._view.getInt32(this._offset)*Math.pow(2,32),o=this._view.getUint32(this._offset+4),this._offset+=8,i+o;case 212:return r=this._view.getInt8(this._offset),this._offset+=1,0===r?void(this._offset+=1):[r,this._bin(1)];case 213:return r=this._view.getInt8(this._offset),this._offset+=1,[r,this._bin(2)];case 214:return r=this._view.getInt8(this._offset),this._offset+=1,[r,this._bin(4)];case 215:return r=this._view.getInt8(this._offset),this._offset+=1,0===r?(i=this._view.getInt32(this._offset)*Math.pow(2,32),o=this._view.getUint32(this._offset+4),this._offset+=8,new Date(i+o)):[r,this._bin(8)];case 216:return r=this._view.getInt8(this._offset),this._offset+=1,[r,this._bin(16)];case 217:return n=this._view.getUint8(this._offset),this._offset+=1,this._str(n);case 218:return n=this._view.getUint16(this._offset),this._offset+=2,this._str(n);case 219:return n=this._view.getUint32(this._offset),this._offset+=4,this._str(n);case 220:return n=this._view.getUint16(this._offset),this._offset+=2,this._array(n);case 221:return n=this._view.getUint32(this._offset),this._offset+=4,this._array(n);case 222:return n=this._view.getUint16(this._offset),this._offset+=2,this._map(n);case 223:return n=this._view.getUint32(this._offset),this._offset+=4,this._map(n)}throw new Error("Could not parse")};var bt=function(t){var e=new _t(t),n=e._parse();if(e._offset!==t.byteLength)throw new Error(t.byteLength-e._offset+" trailing bytes");return n};yt.encode=mt,yt.decode=bt;var kt,wt={exports:{}};!function(t){function e(t){if(t)return function(t){for(var n in e.prototype)t[n]=e.prototype[n];return t}(t)}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},e.prototype.once=function(t,e){function n(){this.off(t,n),e.apply(this,arguments)}return n.fn=e,this.on(t,n),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+t];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var i=0;i=Rt.CONNECT&&t.type<=Rt.CONNECT_ERROR))throw new Error("invalid packet type");if(!St(t.nsp))throw new Error("invalid namespace");if(!function(t){switch(t.type){case Rt.CONNECT:return void 0===t.data||Lt(t.data);case Rt.DISCONNECT:return void 0===t.data;case Rt.CONNECT_ERROR:return St(t.data)||Lt(t.data);default:return Array.isArray(t.data)}}(t))throw new Error("invalid payload");if(!(void 0===t.id||Tt(t.id)))throw new Error("invalid packet id")},xt.prototype.destroy=function(){};var Bt=dt.Encoder=At,Ut=dt.Decoder=xt,jt=t({__proto__:null,default:dt,protocol:Ct,get PacketType(){return kt},Encoder:Bt,Decoder:Ut},[dt]);function Pt(t,e,n){return t.on(e,n),function(){t.off(e,n)}}var Nt=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1}),qt=function(t){s(r,t);var e=d(r);function r(t,i,o){var s;return n(this,r),(s=e.call(this)).connected=!1,s.receiveBuffer=[],s.sendBuffer=[],s.ids=0,s.acks={},s.flags={},s.io=t,s.nsp=i,o&&o.auth&&(s.auth=o.auth),s.io._autoConnect&&s.open(),s}return i(r,[{key:"disconnected",get:function(){return!this.connected}},{key:"subEvents",value:function(){if(!this.subs){var t=this.io;this.subs=[Pt(t,"open",this.onopen.bind(this)),Pt(t,"packet",this.onpacket.bind(this)),Pt(t,"error",this.onerror.bind(this)),Pt(t,"close",this.onclose.bind(this))]}}},{key:"active",get:function(){return!!this.subs}},{key:"connect",value:function(){return this.connected||(this.subEvents(),this.io._reconnecting||this.io.open(),"open"===this.io._readyState&&this.onopen()),this}},{key:"open",value:function(){return this.connect()}},{key:"send",value:function(){for(var t=arguments.length,e=new Array(t),n=0;n1?e-1:0),r=1;r0&&t.jitter<=1?t.jitter:0,this.attempts=0}Mt.prototype.duration=function(){var t=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var e=Math.random(),n=Math.floor(e*this.jitter*t);t=0==(1&Math.floor(10*e))?t-n:t+n}return 0|Math.min(t,this.max)},Mt.prototype.reset=function(){this.attempts=0},Mt.prototype.setMin=function(t){this.ms=t},Mt.prototype.setMax=function(t){this.max=t},Mt.prototype.setJitter=function(t){this.jitter=t};var Dt=function(t){s(o,t);var r=d(o);function o(t,i){var s,a;n(this,o),(s=r.call(this)).nsps={},s.subs=[],t&&"object"===e(t)&&(i=t,t=void 0),(i=i||{}).path=i.path||"/socket.io",s.opts=i,D(l(s),i),s.reconnection(!1!==i.reconnection),s.reconnectionAttempts(i.reconnectionAttempts||1/0),s.reconnectionDelay(i.reconnectionDelay||1e3),s.reconnectionDelayMax(i.reconnectionDelayMax||5e3),s.randomizationFactor(null!==(a=i.randomizationFactor)&&void 0!==a?a:.5),s.backoff=new Mt({min:s.reconnectionDelay(),max:s.reconnectionDelayMax(),jitter:s.randomizationFactor()}),s.timeout(null==i.timeout?2e4:i.timeout),s._readyState="closed",s.uri=t;var c=i.parser||jt;return s.encoder=new c.Encoder,s.decoder=new c.Decoder,s._autoConnect=!1!==i.autoConnect,s._autoConnect&&s.open(),s}return i(o,[{key:"reconnection",value:function(t){return arguments.length?(this._reconnection=!!t,this):this._reconnection}},{key:"reconnectionAttempts",value:function(t){return void 0===t?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}},{key:"reconnectionDelay",value:function(t){var e;return void 0===t?this._reconnectionDelay:(this._reconnectionDelay=t,null===(e=this.backoff)||void 0===e||e.setMin(t),this)}},{key:"randomizationFactor",value:function(t){var e;return void 0===t?this._randomizationFactor:(this._randomizationFactor=t,null===(e=this.backoff)||void 0===e||e.setJitter(t),this)}},{key:"reconnectionDelayMax",value:function(t){var e;return void 0===t?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,null===(e=this.backoff)||void 0===e||e.setMax(t),this)}},{key:"timeout",value:function(t){return arguments.length?(this._timeout=t,this):this._timeout}},{key:"maybeReconnectOnOpen",value:function(){!this._reconnecting&&this._reconnection&&0===this.backoff.attempts&&this.reconnect()}},{key:"open",value:function(t){var e=this;if(~this._readyState.indexOf("open"))return this;this.engine=new pt(this.uri,this.opts);var n=this.engine,r=this;this._readyState="opening",this.skipReconnect=!1;var i=Pt(n,"open",(function(){r.onopen(),t&&t()})),o=Pt(n,"error",(function(n){r.cleanup(),r._readyState="closed",e.emitReserved("error",n),t?t(n):r.maybeReconnectOnOpen()}));if(!1!==this._timeout){var s=this._timeout;0===s&&i();var a=this.setTimeoutFn((function(){i(),n.close(),n.emit("error",new Error("timeout"))}),s);this.opts.autoUnref&&a.unref(),this.subs.push((function(){clearTimeout(a)}))}return this.subs.push(i),this.subs.push(o),this}},{key:"connect",value:function(t){return this.open(t)}},{key:"onopen",value:function(){this.cleanup(),this._readyState="open",this.emitReserved("open");var t=this.engine;this.subs.push(Pt(t,"ping",this.onping.bind(this)),Pt(t,"data",this.ondata.bind(this)),Pt(t,"error",this.onerror.bind(this)),Pt(t,"close",this.onclose.bind(this)),Pt(this.decoder,"decoded",this.ondecoded.bind(this)))}},{key:"onping",value:function(){this.emitReserved("ping")}},{key:"ondata",value:function(t){try{this.decoder.add(t)}catch(t){this.onclose("parse error",t)}}},{key:"ondecoded",value:function(t){var e=this;ot((function(){e.emitReserved("packet",t)}),this.setTimeoutFn)}},{key:"onerror",value:function(t){this.emitReserved("error",t)}},{key:"socket",value:function(t,e){var n=this.nsps[t];return n||(n=new qt(this,t,e),this.nsps[t]=n),n}},{key:"_destroy",value:function(t){for(var e=0,n=Object.keys(this.nsps);e=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{var n=this.backoff.duration();this._reconnecting=!0;var r=this.setTimeoutFn((function(){e.skipReconnect||(t.emitReserved("reconnect_attempt",e.backoff.attempts),e.skipReconnect||e.open((function(n){n?(e._reconnecting=!1,e.reconnect(),t.emitReserved("reconnect_error",n)):e.onreconnect()})))}),n);this.opts.autoUnref&&r.unref(),this.subs.push((function(){clearTimeout(r)}))}}},{key:"onreconnect",value:function(){var t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}]),o}(j),It={};function Ft(t,n){"object"===e(t)&&(n=t,t=void 0);var r,i=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2?arguments[2]:void 0,r=t;n=n||"undefined"!=typeof location&&location,null==t&&(t=n.protocol+"//"+n.host),"string"==typeof t&&("/"===t.charAt(0)&&(t="/"===t.charAt(1)?n.protocol+t:n.host+t),/^(https?|wss?):\/\//.test(t)||(t=void 0!==n?n.protocol+"//"+t:"https://"+t),r=lt(t)),r.port||(/^(http|ws)$/.test(r.protocol)?r.port="80":/^(http|ws)s$/.test(r.protocol)&&(r.port="443")),r.path=r.path||"/";var i=-1!==r.host.indexOf(":")?"["+r.host+"]":r.host;return r.id=r.protocol+"://"+i+":"+r.port+e,r.href=r.protocol+"://"+i+(n&&n.port===r.port?"":":"+r.port),r}(t,(n=n||{}).path||"/socket.io"),o=i.source,s=i.id,a=i.path,c=It[s]&&a in It[s].nsps;return n.forceNew||n["force new connection"]||!1===n.multiplex||c?r=new Dt(o,n):(It[s]||(It[s]=new Dt(o,n)),r=It[s]),i.query&&!n.query&&(n.query=i.queryKey),r.socket(i.path,n)}return o(Ft,{Manager:Dt,Socket:qt,io:Ft,connect:Ft}),Ft})); +//# sourceMappingURL=socket.io.msgpack.min.js.map diff --git a/vendor/socketio/socket.io.msgpack.min.js.map b/vendor/socketio/socket.io.msgpack.min.js.map new file mode 100644 index 000000000..6c09ccfb5 --- /dev/null +++ b/vendor/socketio/socket.io.msgpack.min.js.map @@ -0,0 +1 @@ +{"version":3,"file":"socket.io.msgpack.min.js","sources":["../node_modules/engine.io-parser/build/esm/commons.js","../node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js","../node_modules/engine.io-parser/build/esm/encodePacket.browser.js","../node_modules/engine.io-parser/build/esm/decodePacket.browser.js","../node_modules/engine.io-parser/build/esm/index.js","../node_modules/@socket.io/component-emitter/index.mjs","../node_modules/engine.io-client/build/esm/globalThis.browser.js","../node_modules/engine.io-client/build/esm/util.js","../node_modules/engine.io-client/build/esm/contrib/yeast.js","../node_modules/engine.io-client/build/esm/transport.js","../node_modules/engine.io-client/build/esm/contrib/parseqs.js","../node_modules/engine.io-client/build/esm/contrib/has-cors.js","../node_modules/engine.io-client/build/esm/transports/xmlhttprequest.browser.js","../node_modules/engine.io-client/build/esm/transports/polling.js","../node_modules/engine.io-client/build/esm/transports/websocket-constructor.browser.js","../node_modules/engine.io-client/build/esm/transports/websocket.js","../node_modules/engine.io-client/build/esm/transports/index.js","../node_modules/engine.io-client/build/esm/contrib/parseuri.js","../node_modules/engine.io-client/build/esm/socket.js","../node_modules/engine.io-client/build/esm/index.js","../node_modules/notepack.io/browser/encode.js","../node_modules/notepack.io/browser/decode.js","../node_modules/notepack.io/lib/index.js","../node_modules/component-emitter/index.js","../node_modules/socket.io-msgpack-parser/index.js","../build/esm/on.js","../build/esm/socket.js","../build/esm/contrib/backo2.js","../build/esm/manager.js","../build/esm/index.js","../build/esm/url.js"],"sourcesContent":["const PACKET_TYPES = Object.create(null); // no Map = no polyfill\nPACKET_TYPES[\"open\"] = \"0\";\nPACKET_TYPES[\"close\"] = \"1\";\nPACKET_TYPES[\"ping\"] = \"2\";\nPACKET_TYPES[\"pong\"] = \"3\";\nPACKET_TYPES[\"message\"] = \"4\";\nPACKET_TYPES[\"upgrade\"] = \"5\";\nPACKET_TYPES[\"noop\"] = \"6\";\nconst PACKET_TYPES_REVERSE = Object.create(null);\nObject.keys(PACKET_TYPES).forEach(key => {\n PACKET_TYPES_REVERSE[PACKET_TYPES[key]] = key;\n});\nconst ERROR_PACKET = { type: \"error\", data: \"parser error\" };\nexport { PACKET_TYPES, PACKET_TYPES_REVERSE, ERROR_PACKET };\n","const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n// Use a lookup table to find the index.\nconst lookup = typeof Uint8Array === 'undefined' ? [] : new Uint8Array(256);\nfor (let i = 0; i < chars.length; i++) {\n lookup[chars.charCodeAt(i)] = i;\n}\nexport const encode = (arraybuffer) => {\n let bytes = new Uint8Array(arraybuffer), i, len = bytes.length, base64 = '';\n for (i = 0; i < len; i += 3) {\n base64 += chars[bytes[i] >> 2];\n base64 += chars[((bytes[i] & 3) << 4) | (bytes[i + 1] >> 4)];\n base64 += chars[((bytes[i + 1] & 15) << 2) | (bytes[i + 2] >> 6)];\n base64 += chars[bytes[i + 2] & 63];\n }\n if (len % 3 === 2) {\n base64 = base64.substring(0, base64.length - 1) + '=';\n }\n else if (len % 3 === 1) {\n base64 = base64.substring(0, base64.length - 2) + '==';\n }\n return base64;\n};\nexport const decode = (base64) => {\n let bufferLength = base64.length * 0.75, len = base64.length, i, p = 0, encoded1, encoded2, encoded3, encoded4;\n if (base64[base64.length - 1] === '=') {\n bufferLength--;\n if (base64[base64.length - 2] === '=') {\n bufferLength--;\n }\n }\n const arraybuffer = new ArrayBuffer(bufferLength), bytes = new Uint8Array(arraybuffer);\n for (i = 0; i < len; i += 4) {\n encoded1 = lookup[base64.charCodeAt(i)];\n encoded2 = lookup[base64.charCodeAt(i + 1)];\n encoded3 = lookup[base64.charCodeAt(i + 2)];\n encoded4 = lookup[base64.charCodeAt(i + 3)];\n bytes[p++] = (encoded1 << 2) | (encoded2 >> 4);\n bytes[p++] = ((encoded2 & 15) << 4) | (encoded3 >> 2);\n bytes[p++] = ((encoded3 & 3) << 6) | (encoded4 & 63);\n }\n return arraybuffer;\n};\n","import { PACKET_TYPES } from \"./commons.js\";\nconst withNativeBlob = typeof Blob === \"function\" ||\n (typeof Blob !== \"undefined\" &&\n Object.prototype.toString.call(Blob) === \"[object BlobConstructor]\");\nconst withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\n// ArrayBuffer.isView method is not defined in IE10\nconst isView = obj => {\n return typeof ArrayBuffer.isView === \"function\"\n ? ArrayBuffer.isView(obj)\n : obj && obj.buffer instanceof ArrayBuffer;\n};\nconst encodePacket = ({ type, data }, supportsBinary, callback) => {\n if (withNativeBlob && data instanceof Blob) {\n if (supportsBinary) {\n return callback(data);\n }\n else {\n return encodeBlobAsBase64(data, callback);\n }\n }\n else if (withNativeArrayBuffer &&\n (data instanceof ArrayBuffer || isView(data))) {\n if (supportsBinary) {\n return callback(data);\n }\n else {\n return encodeBlobAsBase64(new Blob([data]), callback);\n }\n }\n // plain string\n return callback(PACKET_TYPES[type] + (data || \"\"));\n};\nconst encodeBlobAsBase64 = (data, callback) => {\n const fileReader = new FileReader();\n fileReader.onload = function () {\n const content = fileReader.result.split(\",\")[1];\n callback(\"b\" + content);\n };\n return fileReader.readAsDataURL(data);\n};\nexport default encodePacket;\n","import { ERROR_PACKET, PACKET_TYPES_REVERSE } from \"./commons.js\";\nimport { decode } from \"./contrib/base64-arraybuffer.js\";\nconst withNativeArrayBuffer = typeof ArrayBuffer === \"function\";\nconst decodePacket = (encodedPacket, binaryType) => {\n if (typeof encodedPacket !== \"string\") {\n return {\n type: \"message\",\n data: mapBinary(encodedPacket, binaryType)\n };\n }\n const type = encodedPacket.charAt(0);\n if (type === \"b\") {\n return {\n type: \"message\",\n data: decodeBase64Packet(encodedPacket.substring(1), binaryType)\n };\n }\n const packetType = PACKET_TYPES_REVERSE[type];\n if (!packetType) {\n return ERROR_PACKET;\n }\n return encodedPacket.length > 1\n ? {\n type: PACKET_TYPES_REVERSE[type],\n data: encodedPacket.substring(1)\n }\n : {\n type: PACKET_TYPES_REVERSE[type]\n };\n};\nconst decodeBase64Packet = (data, binaryType) => {\n if (withNativeArrayBuffer) {\n const decoded = decode(data);\n return mapBinary(decoded, binaryType);\n }\n else {\n return { base64: true, data }; // fallback for old browsers\n }\n};\nconst mapBinary = (data, binaryType) => {\n switch (binaryType) {\n case \"blob\":\n return data instanceof ArrayBuffer ? new Blob([data]) : data;\n case \"arraybuffer\":\n default:\n return data; // assuming the data is already an ArrayBuffer\n }\n};\nexport default decodePacket;\n","import encodePacket from \"./encodePacket.js\";\nimport decodePacket from \"./decodePacket.js\";\nconst SEPARATOR = String.fromCharCode(30); // see https://en.wikipedia.org/wiki/Delimiter#ASCII_delimited_text\nconst encodePayload = (packets, callback) => {\n // some packets may be added to the array while encoding, so the initial length must be saved\n const length = packets.length;\n const encodedPackets = new Array(length);\n let count = 0;\n packets.forEach((packet, i) => {\n // force base64 encoding for binary packets\n encodePacket(packet, false, encodedPacket => {\n encodedPackets[i] = encodedPacket;\n if (++count === length) {\n callback(encodedPackets.join(SEPARATOR));\n }\n });\n });\n};\nconst decodePayload = (encodedPayload, binaryType) => {\n const encodedPackets = encodedPayload.split(SEPARATOR);\n const packets = [];\n for (let i = 0; i < encodedPackets.length; i++) {\n const decodedPacket = decodePacket(encodedPackets[i], binaryType);\n packets.push(decodedPacket);\n if (decodedPacket.type === \"error\") {\n break;\n }\n }\n return packets;\n};\nexport const protocol = 4;\nexport { encodePacket, encodePayload, decodePacket, decodePayload };\n","/**\n * Initialize a new `Emitter`.\n *\n * @api public\n */\n\nexport function Emitter(obj) {\n if (obj) return mixin(obj);\n}\n\n/**\n * Mixin the emitter properties.\n *\n * @param {Object} obj\n * @return {Object}\n * @api private\n */\n\nfunction mixin(obj) {\n for (var key in Emitter.prototype) {\n obj[key] = Emitter.prototype[key];\n }\n return obj;\n}\n\n/**\n * Listen on the given `event` with `fn`.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.on =\nEmitter.prototype.addEventListener = function(event, fn){\n this._callbacks = this._callbacks || {};\n (this._callbacks['$' + event] = this._callbacks['$' + event] || [])\n .push(fn);\n return this;\n};\n\n/**\n * Adds an `event` listener that will be invoked a single\n * time then automatically removed.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.once = function(event, fn){\n function on() {\n this.off(event, on);\n fn.apply(this, arguments);\n }\n\n on.fn = fn;\n this.on(event, on);\n return this;\n};\n\n/**\n * Remove the given callback for `event` or all\n * registered callbacks.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.off =\nEmitter.prototype.removeListener =\nEmitter.prototype.removeAllListeners =\nEmitter.prototype.removeEventListener = function(event, fn){\n this._callbacks = this._callbacks || {};\n\n // all\n if (0 == arguments.length) {\n this._callbacks = {};\n return this;\n }\n\n // specific event\n var callbacks = this._callbacks['$' + event];\n if (!callbacks) return this;\n\n // remove all handlers\n if (1 == arguments.length) {\n delete this._callbacks['$' + event];\n return this;\n }\n\n // remove specific handler\n var cb;\n for (var i = 0; i < callbacks.length; i++) {\n cb = callbacks[i];\n if (cb === fn || cb.fn === fn) {\n callbacks.splice(i, 1);\n break;\n }\n }\n\n // Remove event specific arrays for event types that no\n // one is subscribed for to avoid memory leak.\n if (callbacks.length === 0) {\n delete this._callbacks['$' + event];\n }\n\n return this;\n};\n\n/**\n * Emit `event` with the given args.\n *\n * @param {String} event\n * @param {Mixed} ...\n * @return {Emitter}\n */\n\nEmitter.prototype.emit = function(event){\n this._callbacks = this._callbacks || {};\n\n var args = new Array(arguments.length - 1)\n , callbacks = this._callbacks['$' + event];\n\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n\n if (callbacks) {\n callbacks = callbacks.slice(0);\n for (var i = 0, len = callbacks.length; i < len; ++i) {\n callbacks[i].apply(this, args);\n }\n }\n\n return this;\n};\n\n// alias used for reserved events (protected method)\nEmitter.prototype.emitReserved = Emitter.prototype.emit;\n\n/**\n * Return array of callbacks for `event`.\n *\n * @param {String} event\n * @return {Array}\n * @api public\n */\n\nEmitter.prototype.listeners = function(event){\n this._callbacks = this._callbacks || {};\n return this._callbacks['$' + event] || [];\n};\n\n/**\n * Check if this emitter has `event` handlers.\n *\n * @param {String} event\n * @return {Boolean}\n * @api public\n */\n\nEmitter.prototype.hasListeners = function(event){\n return !! this.listeners(event).length;\n};\n","export const globalThisShim = (() => {\n if (typeof self !== \"undefined\") {\n return self;\n }\n else if (typeof window !== \"undefined\") {\n return window;\n }\n else {\n return Function(\"return this\")();\n }\n})();\n","import { globalThisShim as globalThis } from \"./globalThis.js\";\nexport function pick(obj, ...attr) {\n return attr.reduce((acc, k) => {\n if (obj.hasOwnProperty(k)) {\n acc[k] = obj[k];\n }\n return acc;\n }, {});\n}\n// Keep a reference to the real timeout functions so they can be used when overridden\nconst NATIVE_SET_TIMEOUT = setTimeout;\nconst NATIVE_CLEAR_TIMEOUT = clearTimeout;\nexport function installTimerFunctions(obj, opts) {\n if (opts.useNativeTimers) {\n obj.setTimeoutFn = NATIVE_SET_TIMEOUT.bind(globalThis);\n obj.clearTimeoutFn = NATIVE_CLEAR_TIMEOUT.bind(globalThis);\n }\n else {\n obj.setTimeoutFn = setTimeout.bind(globalThis);\n obj.clearTimeoutFn = clearTimeout.bind(globalThis);\n }\n}\n// base64 encoded buffers are about 33% bigger (https://en.wikipedia.org/wiki/Base64)\nconst BASE64_OVERHEAD = 1.33;\n// we could also have used `new Blob([obj]).size`, but it isn't supported in IE9\nexport function byteLength(obj) {\n if (typeof obj === \"string\") {\n return utf8Length(obj);\n }\n // arraybuffer or blob\n return Math.ceil((obj.byteLength || obj.size) * BASE64_OVERHEAD);\n}\nfunction utf8Length(str) {\n let c = 0, length = 0;\n for (let i = 0, l = str.length; i < l; i++) {\n c = str.charCodeAt(i);\n if (c < 0x80) {\n length += 1;\n }\n else if (c < 0x800) {\n length += 2;\n }\n else if (c < 0xd800 || c >= 0xe000) {\n length += 3;\n }\n else {\n i++;\n length += 4;\n }\n }\n return length;\n}\n","// imported from https://github.com/unshiftio/yeast\n'use strict';\nconst alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_'.split(''), length = 64, map = {};\nlet seed = 0, i = 0, prev;\n/**\n * Return a string representing the specified number.\n *\n * @param {Number} num The number to convert.\n * @returns {String} The string representation of the number.\n * @api public\n */\nexport function encode(num) {\n let encoded = '';\n do {\n encoded = alphabet[num % length] + encoded;\n num = Math.floor(num / length);\n } while (num > 0);\n return encoded;\n}\n/**\n * Return the integer value specified by the given string.\n *\n * @param {String} str The string to convert.\n * @returns {Number} The integer value represented by the string.\n * @api public\n */\nexport function decode(str) {\n let decoded = 0;\n for (i = 0; i < str.length; i++) {\n decoded = decoded * length + map[str.charAt(i)];\n }\n return decoded;\n}\n/**\n * Yeast: A tiny growing id generator.\n *\n * @returns {String} A unique id.\n * @api public\n */\nexport function yeast() {\n const now = encode(+new Date());\n if (now !== prev)\n return seed = 0, prev = now;\n return now + '.' + encode(seed++);\n}\n//\n// Map each character to its index.\n//\nfor (; i < length; i++)\n map[alphabet[i]] = i;\n","import { decodePacket } from \"engine.io-parser\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { installTimerFunctions } from \"./util.js\";\nclass TransportError extends Error {\n constructor(reason, description, context) {\n super(reason);\n this.description = description;\n this.context = context;\n this.type = \"TransportError\";\n }\n}\nexport class Transport extends Emitter {\n /**\n * Transport abstract constructor.\n *\n * @param {Object} options.\n * @api private\n */\n constructor(opts) {\n super();\n this.writable = false;\n installTimerFunctions(this, opts);\n this.opts = opts;\n this.query = opts.query;\n this.readyState = \"\";\n this.socket = opts.socket;\n }\n /**\n * Emits an error.\n *\n * @param {String} reason\n * @param description\n * @param context - the error context\n * @return {Transport} for chaining\n * @api protected\n */\n onError(reason, description, context) {\n super.emitReserved(\"error\", new TransportError(reason, description, context));\n return this;\n }\n /**\n * Opens the transport.\n *\n * @api public\n */\n open() {\n if (\"closed\" === this.readyState || \"\" === this.readyState) {\n this.readyState = \"opening\";\n this.doOpen();\n }\n return this;\n }\n /**\n * Closes the transport.\n *\n * @api public\n */\n close() {\n if (\"opening\" === this.readyState || \"open\" === this.readyState) {\n this.doClose();\n this.onClose();\n }\n return this;\n }\n /**\n * Sends multiple packets.\n *\n * @param {Array} packets\n * @api public\n */\n send(packets) {\n if (\"open\" === this.readyState) {\n this.write(packets);\n }\n else {\n // this might happen if the transport was silently closed in the beforeunload event handler\n }\n }\n /**\n * Called upon open\n *\n * @api protected\n */\n onOpen() {\n this.readyState = \"open\";\n this.writable = true;\n super.emitReserved(\"open\");\n }\n /**\n * Called with data.\n *\n * @param {String} data\n * @api protected\n */\n onData(data) {\n const packet = decodePacket(data, this.socket.binaryType);\n this.onPacket(packet);\n }\n /**\n * Called with a decoded packet.\n *\n * @api protected\n */\n onPacket(packet) {\n super.emitReserved(\"packet\", packet);\n }\n /**\n * Called upon close.\n *\n * @api protected\n */\n onClose(details) {\n this.readyState = \"closed\";\n super.emitReserved(\"close\", details);\n }\n}\n","// imported from https://github.com/galkn/querystring\n/**\n * Compiles a querystring\n * Returns string representation of the object\n *\n * @param {Object}\n * @api private\n */\nexport function encode(obj) {\n let str = '';\n for (let i in obj) {\n if (obj.hasOwnProperty(i)) {\n if (str.length)\n str += '&';\n str += encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]);\n }\n }\n return str;\n}\n/**\n * Parses a simple querystring into an object\n *\n * @param {String} qs\n * @api private\n */\nexport function decode(qs) {\n let qry = {};\n let pairs = qs.split('&');\n for (let i = 0, l = pairs.length; i < l; i++) {\n let pair = pairs[i].split('=');\n qry[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]);\n }\n return qry;\n}\n","// imported from https://github.com/component/has-cors\nlet value = false;\ntry {\n value = typeof XMLHttpRequest !== 'undefined' &&\n 'withCredentials' in new XMLHttpRequest();\n}\ncatch (err) {\n // if XMLHttp support is disabled in IE then it will throw\n // when trying to create\n}\nexport const hasCORS = value;\n","// browser shim for xmlhttprequest module\nimport { hasCORS } from \"../contrib/has-cors.js\";\nimport { globalThisShim as globalThis } from \"../globalThis.js\";\nexport function XHR(opts) {\n const xdomain = opts.xdomain;\n // XMLHttpRequest can be disabled on IE\n try {\n if (\"undefined\" !== typeof XMLHttpRequest && (!xdomain || hasCORS)) {\n return new XMLHttpRequest();\n }\n }\n catch (e) { }\n if (!xdomain) {\n try {\n return new globalThis[[\"Active\"].concat(\"Object\").join(\"X\")](\"Microsoft.XMLHTTP\");\n }\n catch (e) { }\n }\n}\n","import { Transport } from \"../transport.js\";\nimport { yeast } from \"../contrib/yeast.js\";\nimport { encode } from \"../contrib/parseqs.js\";\nimport { encodePayload, decodePayload } from \"engine.io-parser\";\nimport { XHR as XMLHttpRequest } from \"./xmlhttprequest.js\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { installTimerFunctions, pick } from \"../util.js\";\nimport { globalThisShim as globalThis } from \"../globalThis.js\";\nfunction empty() { }\nconst hasXHR2 = (function () {\n const xhr = new XMLHttpRequest({\n xdomain: false\n });\n return null != xhr.responseType;\n})();\nexport class Polling extends Transport {\n /**\n * XHR Polling constructor.\n *\n * @param {Object} opts\n * @api public\n */\n constructor(opts) {\n super(opts);\n this.polling = false;\n if (typeof location !== \"undefined\") {\n const isSSL = \"https:\" === location.protocol;\n let port = location.port;\n // some user agents have empty `location.port`\n if (!port) {\n port = isSSL ? \"443\" : \"80\";\n }\n this.xd =\n (typeof location !== \"undefined\" &&\n opts.hostname !== location.hostname) ||\n port !== opts.port;\n this.xs = opts.secure !== isSSL;\n }\n /**\n * XHR supports binary\n */\n const forceBase64 = opts && opts.forceBase64;\n this.supportsBinary = hasXHR2 && !forceBase64;\n }\n /**\n * Transport name.\n */\n get name() {\n return \"polling\";\n }\n /**\n * Opens the socket (triggers polling). We write a PING message to determine\n * when the transport is open.\n *\n * @api private\n */\n doOpen() {\n this.poll();\n }\n /**\n * Pauses polling.\n *\n * @param {Function} callback upon buffers are flushed and transport is paused\n * @api private\n */\n pause(onPause) {\n this.readyState = \"pausing\";\n const pause = () => {\n this.readyState = \"paused\";\n onPause();\n };\n if (this.polling || !this.writable) {\n let total = 0;\n if (this.polling) {\n total++;\n this.once(\"pollComplete\", function () {\n --total || pause();\n });\n }\n if (!this.writable) {\n total++;\n this.once(\"drain\", function () {\n --total || pause();\n });\n }\n }\n else {\n pause();\n }\n }\n /**\n * Starts polling cycle.\n *\n * @api public\n */\n poll() {\n this.polling = true;\n this.doPoll();\n this.emitReserved(\"poll\");\n }\n /**\n * Overloads onData to detect payloads.\n *\n * @api private\n */\n onData(data) {\n const callback = packet => {\n // if its the first message we consider the transport open\n if (\"opening\" === this.readyState && packet.type === \"open\") {\n this.onOpen();\n }\n // if its a close packet, we close the ongoing requests\n if (\"close\" === packet.type) {\n this.onClose({ description: \"transport closed by the server\" });\n return false;\n }\n // otherwise bypass onData and handle the message\n this.onPacket(packet);\n };\n // decode payload\n decodePayload(data, this.socket.binaryType).forEach(callback);\n // if an event did not trigger closing\n if (\"closed\" !== this.readyState) {\n // if we got data we're not polling\n this.polling = false;\n this.emitReserved(\"pollComplete\");\n if (\"open\" === this.readyState) {\n this.poll();\n }\n else {\n }\n }\n }\n /**\n * For polling, send a close packet.\n *\n * @api private\n */\n doClose() {\n const close = () => {\n this.write([{ type: \"close\" }]);\n };\n if (\"open\" === this.readyState) {\n close();\n }\n else {\n // in case we're trying to close while\n // handshaking is in progress (GH-164)\n this.once(\"open\", close);\n }\n }\n /**\n * Writes a packets payload.\n *\n * @param {Array} data packets\n * @param {Function} drain callback\n * @api private\n */\n write(packets) {\n this.writable = false;\n encodePayload(packets, data => {\n this.doWrite(data, () => {\n this.writable = true;\n this.emitReserved(\"drain\");\n });\n });\n }\n /**\n * Generates uri for connection.\n *\n * @api private\n */\n uri() {\n let query = this.query || {};\n const schema = this.opts.secure ? \"https\" : \"http\";\n let port = \"\";\n // cache busting is forced\n if (false !== this.opts.timestampRequests) {\n query[this.opts.timestampParam] = yeast();\n }\n if (!this.supportsBinary && !query.sid) {\n query.b64 = 1;\n }\n // avoid port if default for schema\n if (this.opts.port &&\n ((\"https\" === schema && Number(this.opts.port) !== 443) ||\n (\"http\" === schema && Number(this.opts.port) !== 80))) {\n port = \":\" + this.opts.port;\n }\n const encodedQuery = encode(query);\n const ipv6 = this.opts.hostname.indexOf(\":\") !== -1;\n return (schema +\n \"://\" +\n (ipv6 ? \"[\" + this.opts.hostname + \"]\" : this.opts.hostname) +\n port +\n this.opts.path +\n (encodedQuery.length ? \"?\" + encodedQuery : \"\"));\n }\n /**\n * Creates a request.\n *\n * @param {String} method\n * @api private\n */\n request(opts = {}) {\n Object.assign(opts, { xd: this.xd, xs: this.xs }, this.opts);\n return new Request(this.uri(), opts);\n }\n /**\n * Sends data.\n *\n * @param {String} data to send.\n * @param {Function} called upon flush.\n * @api private\n */\n doWrite(data, fn) {\n const req = this.request({\n method: \"POST\",\n data: data\n });\n req.on(\"success\", fn);\n req.on(\"error\", (xhrStatus, context) => {\n this.onError(\"xhr post error\", xhrStatus, context);\n });\n }\n /**\n * Starts a poll cycle.\n *\n * @api private\n */\n doPoll() {\n const req = this.request();\n req.on(\"data\", this.onData.bind(this));\n req.on(\"error\", (xhrStatus, context) => {\n this.onError(\"xhr poll error\", xhrStatus, context);\n });\n this.pollXhr = req;\n }\n}\nexport class Request extends Emitter {\n /**\n * Request constructor\n *\n * @param {Object} options\n * @api public\n */\n constructor(uri, opts) {\n super();\n installTimerFunctions(this, opts);\n this.opts = opts;\n this.method = opts.method || \"GET\";\n this.uri = uri;\n this.async = false !== opts.async;\n this.data = undefined !== opts.data ? opts.data : null;\n this.create();\n }\n /**\n * Creates the XHR object and sends the request.\n *\n * @api private\n */\n create() {\n const opts = pick(this.opts, \"agent\", \"pfx\", \"key\", \"passphrase\", \"cert\", \"ca\", \"ciphers\", \"rejectUnauthorized\", \"autoUnref\");\n opts.xdomain = !!this.opts.xd;\n opts.xscheme = !!this.opts.xs;\n const xhr = (this.xhr = new XMLHttpRequest(opts));\n try {\n xhr.open(this.method, this.uri, this.async);\n try {\n if (this.opts.extraHeaders) {\n xhr.setDisableHeaderCheck && xhr.setDisableHeaderCheck(true);\n for (let i in this.opts.extraHeaders) {\n if (this.opts.extraHeaders.hasOwnProperty(i)) {\n xhr.setRequestHeader(i, this.opts.extraHeaders[i]);\n }\n }\n }\n }\n catch (e) { }\n if (\"POST\" === this.method) {\n try {\n xhr.setRequestHeader(\"Content-type\", \"text/plain;charset=UTF-8\");\n }\n catch (e) { }\n }\n try {\n xhr.setRequestHeader(\"Accept\", \"*/*\");\n }\n catch (e) { }\n // ie6 check\n if (\"withCredentials\" in xhr) {\n xhr.withCredentials = this.opts.withCredentials;\n }\n if (this.opts.requestTimeout) {\n xhr.timeout = this.opts.requestTimeout;\n }\n xhr.onreadystatechange = () => {\n if (4 !== xhr.readyState)\n return;\n if (200 === xhr.status || 1223 === xhr.status) {\n this.onLoad();\n }\n else {\n // make sure the `error` event handler that's user-set\n // does not throw in the same tick and gets caught here\n this.setTimeoutFn(() => {\n this.onError(typeof xhr.status === \"number\" ? xhr.status : 0);\n }, 0);\n }\n };\n xhr.send(this.data);\n }\n catch (e) {\n // Need to defer since .create() is called directly from the constructor\n // and thus the 'error' event can only be only bound *after* this exception\n // occurs. Therefore, also, we cannot throw here at all.\n this.setTimeoutFn(() => {\n this.onError(e);\n }, 0);\n return;\n }\n if (typeof document !== \"undefined\") {\n this.index = Request.requestsCount++;\n Request.requests[this.index] = this;\n }\n }\n /**\n * Called upon error.\n *\n * @api private\n */\n onError(err) {\n this.emitReserved(\"error\", err, this.xhr);\n this.cleanup(true);\n }\n /**\n * Cleans up house.\n *\n * @api private\n */\n cleanup(fromError) {\n if (\"undefined\" === typeof this.xhr || null === this.xhr) {\n return;\n }\n this.xhr.onreadystatechange = empty;\n if (fromError) {\n try {\n this.xhr.abort();\n }\n catch (e) { }\n }\n if (typeof document !== \"undefined\") {\n delete Request.requests[this.index];\n }\n this.xhr = null;\n }\n /**\n * Called upon load.\n *\n * @api private\n */\n onLoad() {\n const data = this.xhr.responseText;\n if (data !== null) {\n this.emitReserved(\"data\", data);\n this.emitReserved(\"success\");\n this.cleanup();\n }\n }\n /**\n * Aborts the request.\n *\n * @api public\n */\n abort() {\n this.cleanup();\n }\n}\nRequest.requestsCount = 0;\nRequest.requests = {};\n/**\n * Aborts pending requests when unloading the window. This is needed to prevent\n * memory leaks (e.g. when using IE) and to ensure that no spurious error is\n * emitted.\n */\nif (typeof document !== \"undefined\") {\n // @ts-ignore\n if (typeof attachEvent === \"function\") {\n // @ts-ignore\n attachEvent(\"onunload\", unloadHandler);\n }\n else if (typeof addEventListener === \"function\") {\n const terminationEvent = \"onpagehide\" in globalThis ? \"pagehide\" : \"unload\";\n addEventListener(terminationEvent, unloadHandler, false);\n }\n}\nfunction unloadHandler() {\n for (let i in Request.requests) {\n if (Request.requests.hasOwnProperty(i)) {\n Request.requests[i].abort();\n }\n }\n}\n","import { globalThisShim as globalThis } from \"../globalThis.js\";\nexport const nextTick = (() => {\n const isPromiseAvailable = typeof Promise === \"function\" && typeof Promise.resolve === \"function\";\n if (isPromiseAvailable) {\n return cb => Promise.resolve().then(cb);\n }\n else {\n return (cb, setTimeoutFn) => setTimeoutFn(cb, 0);\n }\n})();\nexport const WebSocket = globalThis.WebSocket || globalThis.MozWebSocket;\nexport const usingBrowserWebSocket = true;\nexport const defaultBinaryType = \"arraybuffer\";\n","import { Transport } from \"../transport.js\";\nimport { encode } from \"../contrib/parseqs.js\";\nimport { yeast } from \"../contrib/yeast.js\";\nimport { pick } from \"../util.js\";\nimport { defaultBinaryType, nextTick, usingBrowserWebSocket, WebSocket } from \"./websocket-constructor.js\";\nimport { encodePacket } from \"engine.io-parser\";\n// detect ReactNative environment\nconst isReactNative = typeof navigator !== \"undefined\" &&\n typeof navigator.product === \"string\" &&\n navigator.product.toLowerCase() === \"reactnative\";\nexport class WS extends Transport {\n /**\n * WebSocket transport constructor.\n *\n * @api {Object} connection options\n * @api public\n */\n constructor(opts) {\n super(opts);\n this.supportsBinary = !opts.forceBase64;\n }\n /**\n * Transport name.\n *\n * @api public\n */\n get name() {\n return \"websocket\";\n }\n /**\n * Opens socket.\n *\n * @api private\n */\n doOpen() {\n if (!this.check()) {\n // let probe timeout\n return;\n }\n const uri = this.uri();\n const protocols = this.opts.protocols;\n // React Native only supports the 'headers' option, and will print a warning if anything else is passed\n const opts = isReactNative\n ? {}\n : pick(this.opts, \"agent\", \"perMessageDeflate\", \"pfx\", \"key\", \"passphrase\", \"cert\", \"ca\", \"ciphers\", \"rejectUnauthorized\", \"localAddress\", \"protocolVersion\", \"origin\", \"maxPayload\", \"family\", \"checkServerIdentity\");\n if (this.opts.extraHeaders) {\n opts.headers = this.opts.extraHeaders;\n }\n try {\n this.ws =\n usingBrowserWebSocket && !isReactNative\n ? protocols\n ? new WebSocket(uri, protocols)\n : new WebSocket(uri)\n : new WebSocket(uri, protocols, opts);\n }\n catch (err) {\n return this.emitReserved(\"error\", err);\n }\n this.ws.binaryType = this.socket.binaryType || defaultBinaryType;\n this.addEventListeners();\n }\n /**\n * Adds event listeners to the socket\n *\n * @api private\n */\n addEventListeners() {\n this.ws.onopen = () => {\n if (this.opts.autoUnref) {\n this.ws._socket.unref();\n }\n this.onOpen();\n };\n this.ws.onclose = closeEvent => this.onClose({\n description: \"websocket connection closed\",\n context: closeEvent\n });\n this.ws.onmessage = ev => this.onData(ev.data);\n this.ws.onerror = e => this.onError(\"websocket error\", e);\n }\n /**\n * Writes data to socket.\n *\n * @param {Array} array of packets.\n * @api private\n */\n write(packets) {\n this.writable = false;\n // encodePacket efficient as it uses WS framing\n // no need for encodePayload\n for (let i = 0; i < packets.length; i++) {\n const packet = packets[i];\n const lastPacket = i === packets.length - 1;\n encodePacket(packet, this.supportsBinary, data => {\n // always create a new object (GH-437)\n const opts = {};\n if (!usingBrowserWebSocket) {\n if (packet.options) {\n opts.compress = packet.options.compress;\n }\n if (this.opts.perMessageDeflate) {\n const len = \n // @ts-ignore\n \"string\" === typeof data ? Buffer.byteLength(data) : data.length;\n if (len < this.opts.perMessageDeflate.threshold) {\n opts.compress = false;\n }\n }\n }\n // Sometimes the websocket has already been closed but the browser didn't\n // have a chance of informing us about it yet, in that case send will\n // throw an error\n try {\n if (usingBrowserWebSocket) {\n // TypeError is thrown when passing the second argument on Safari\n this.ws.send(data);\n }\n else {\n this.ws.send(data, opts);\n }\n }\n catch (e) {\n }\n if (lastPacket) {\n // fake drain\n // defer to next tick to allow Socket to clear writeBuffer\n nextTick(() => {\n this.writable = true;\n this.emitReserved(\"drain\");\n }, this.setTimeoutFn);\n }\n });\n }\n }\n /**\n * Closes socket.\n *\n * @api private\n */\n doClose() {\n if (typeof this.ws !== \"undefined\") {\n this.ws.close();\n this.ws = null;\n }\n }\n /**\n * Generates uri for connection.\n *\n * @api private\n */\n uri() {\n let query = this.query || {};\n const schema = this.opts.secure ? \"wss\" : \"ws\";\n let port = \"\";\n // avoid port if default for schema\n if (this.opts.port &&\n ((\"wss\" === schema && Number(this.opts.port) !== 443) ||\n (\"ws\" === schema && Number(this.opts.port) !== 80))) {\n port = \":\" + this.opts.port;\n }\n // append timestamp to URI\n if (this.opts.timestampRequests) {\n query[this.opts.timestampParam] = yeast();\n }\n // communicate binary support capabilities\n if (!this.supportsBinary) {\n query.b64 = 1;\n }\n const encodedQuery = encode(query);\n const ipv6 = this.opts.hostname.indexOf(\":\") !== -1;\n return (schema +\n \"://\" +\n (ipv6 ? \"[\" + this.opts.hostname + \"]\" : this.opts.hostname) +\n port +\n this.opts.path +\n (encodedQuery.length ? \"?\" + encodedQuery : \"\"));\n }\n /**\n * Feature detection for WebSocket.\n *\n * @return {Boolean} whether this transport is available.\n * @api public\n */\n check() {\n return !!WebSocket;\n }\n}\n","import { Polling } from \"./polling.js\";\nimport { WS } from \"./websocket.js\";\nexport const transports = {\n websocket: WS,\n polling: Polling\n};\n","// imported from https://github.com/galkn/parseuri\n/**\n * Parses an URI\n *\n * @author Steven Levithan (MIT license)\n * @api private\n */\nconst re = /^(?:(?![^:@]+:[^:@\\/]*@)(http|https|ws|wss):\\/\\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\\/?#]*)(?::(\\d*))?)(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))(?:\\?([^#]*))?(?:#(.*))?)/;\nconst parts = [\n 'source', 'protocol', 'authority', 'userInfo', 'user', 'password', 'host', 'port', 'relative', 'path', 'directory', 'file', 'query', 'anchor'\n];\nexport function parse(str) {\n const src = str, b = str.indexOf('['), e = str.indexOf(']');\n if (b != -1 && e != -1) {\n str = str.substring(0, b) + str.substring(b, e).replace(/:/g, ';') + str.substring(e, str.length);\n }\n let m = re.exec(str || ''), uri = {}, i = 14;\n while (i--) {\n uri[parts[i]] = m[i] || '';\n }\n if (b != -1 && e != -1) {\n uri.source = src;\n uri.host = uri.host.substring(1, uri.host.length - 1).replace(/;/g, ':');\n uri.authority = uri.authority.replace('[', '').replace(']', '').replace(/;/g, ':');\n uri.ipv6uri = true;\n }\n uri.pathNames = pathNames(uri, uri['path']);\n uri.queryKey = queryKey(uri, uri['query']);\n return uri;\n}\nfunction pathNames(obj, path) {\n const regx = /\\/{2,9}/g, names = path.replace(regx, \"/\").split(\"/\");\n if (path.slice(0, 1) == '/' || path.length === 0) {\n names.splice(0, 1);\n }\n if (path.slice(-1) == '/') {\n names.splice(names.length - 1, 1);\n }\n return names;\n}\nfunction queryKey(uri, query) {\n const data = {};\n query.replace(/(?:^|&)([^&=]*)=?([^&]*)/g, function ($0, $1, $2) {\n if ($1) {\n data[$1] = $2;\n }\n });\n return data;\n}\n","import { transports } from \"./transports/index.js\";\nimport { installTimerFunctions, byteLength } from \"./util.js\";\nimport { decode } from \"./contrib/parseqs.js\";\nimport { parse } from \"./contrib/parseuri.js\";\nimport { Emitter } from \"@socket.io/component-emitter\";\nimport { protocol } from \"engine.io-parser\";\nexport class Socket extends Emitter {\n /**\n * Socket constructor.\n *\n * @param {String|Object} uri or options\n * @param {Object} opts - options\n * @api public\n */\n constructor(uri, opts = {}) {\n super();\n if (uri && \"object\" === typeof uri) {\n opts = uri;\n uri = null;\n }\n if (uri) {\n uri = parse(uri);\n opts.hostname = uri.host;\n opts.secure = uri.protocol === \"https\" || uri.protocol === \"wss\";\n opts.port = uri.port;\n if (uri.query)\n opts.query = uri.query;\n }\n else if (opts.host) {\n opts.hostname = parse(opts.host).host;\n }\n installTimerFunctions(this, opts);\n this.secure =\n null != opts.secure\n ? opts.secure\n : typeof location !== \"undefined\" && \"https:\" === location.protocol;\n if (opts.hostname && !opts.port) {\n // if no port is specified manually, use the protocol default\n opts.port = this.secure ? \"443\" : \"80\";\n }\n this.hostname =\n opts.hostname ||\n (typeof location !== \"undefined\" ? location.hostname : \"localhost\");\n this.port =\n opts.port ||\n (typeof location !== \"undefined\" && location.port\n ? location.port\n : this.secure\n ? \"443\"\n : \"80\");\n this.transports = opts.transports || [\"polling\", \"websocket\"];\n this.readyState = \"\";\n this.writeBuffer = [];\n this.prevBufferLen = 0;\n this.opts = Object.assign({\n path: \"/engine.io\",\n agent: false,\n withCredentials: false,\n upgrade: true,\n timestampParam: \"t\",\n rememberUpgrade: false,\n rejectUnauthorized: true,\n perMessageDeflate: {\n threshold: 1024\n },\n transportOptions: {},\n closeOnBeforeunload: true\n }, opts);\n this.opts.path = this.opts.path.replace(/\\/$/, \"\") + \"/\";\n if (typeof this.opts.query === \"string\") {\n this.opts.query = decode(this.opts.query);\n }\n // set on handshake\n this.id = null;\n this.upgrades = null;\n this.pingInterval = null;\n this.pingTimeout = null;\n // set on heartbeat\n this.pingTimeoutTimer = null;\n if (typeof addEventListener === \"function\") {\n if (this.opts.closeOnBeforeunload) {\n // Firefox closes the connection when the \"beforeunload\" event is emitted but not Chrome. This event listener\n // ensures every browser behaves the same (no \"disconnect\" event at the Socket.IO level when the page is\n // closed/reloaded)\n this.beforeunloadEventListener = () => {\n if (this.transport) {\n // silently close the transport\n this.transport.removeAllListeners();\n this.transport.close();\n }\n };\n addEventListener(\"beforeunload\", this.beforeunloadEventListener, false);\n }\n if (this.hostname !== \"localhost\") {\n this.offlineEventListener = () => {\n this.onClose(\"transport close\", {\n description: \"network connection lost\"\n });\n };\n addEventListener(\"offline\", this.offlineEventListener, false);\n }\n }\n this.open();\n }\n /**\n * Creates transport of the given type.\n *\n * @param {String} transport name\n * @return {Transport}\n * @api private\n */\n createTransport(name) {\n const query = Object.assign({}, this.opts.query);\n // append engine.io protocol identifier\n query.EIO = protocol;\n // transport name\n query.transport = name;\n // session id if we already have one\n if (this.id)\n query.sid = this.id;\n const opts = Object.assign({}, this.opts.transportOptions[name], this.opts, {\n query,\n socket: this,\n hostname: this.hostname,\n secure: this.secure,\n port: this.port\n });\n return new transports[name](opts);\n }\n /**\n * Initializes transport to use and starts probe.\n *\n * @api private\n */\n open() {\n let transport;\n if (this.opts.rememberUpgrade &&\n Socket.priorWebsocketSuccess &&\n this.transports.indexOf(\"websocket\") !== -1) {\n transport = \"websocket\";\n }\n else if (0 === this.transports.length) {\n // Emit error on next tick so it can be listened to\n this.setTimeoutFn(() => {\n this.emitReserved(\"error\", \"No transports available\");\n }, 0);\n return;\n }\n else {\n transport = this.transports[0];\n }\n this.readyState = \"opening\";\n // Retry with the next transport if the transport is disabled (jsonp: false)\n try {\n transport = this.createTransport(transport);\n }\n catch (e) {\n this.transports.shift();\n this.open();\n return;\n }\n transport.open();\n this.setTransport(transport);\n }\n /**\n * Sets the current transport. Disables the existing one (if any).\n *\n * @api private\n */\n setTransport(transport) {\n if (this.transport) {\n this.transport.removeAllListeners();\n }\n // set up transport\n this.transport = transport;\n // set up transport listeners\n transport\n .on(\"drain\", this.onDrain.bind(this))\n .on(\"packet\", this.onPacket.bind(this))\n .on(\"error\", this.onError.bind(this))\n .on(\"close\", reason => this.onClose(\"transport close\", reason));\n }\n /**\n * Probes a transport.\n *\n * @param {String} transport name\n * @api private\n */\n probe(name) {\n let transport = this.createTransport(name);\n let failed = false;\n Socket.priorWebsocketSuccess = false;\n const onTransportOpen = () => {\n if (failed)\n return;\n transport.send([{ type: \"ping\", data: \"probe\" }]);\n transport.once(\"packet\", msg => {\n if (failed)\n return;\n if (\"pong\" === msg.type && \"probe\" === msg.data) {\n this.upgrading = true;\n this.emitReserved(\"upgrading\", transport);\n if (!transport)\n return;\n Socket.priorWebsocketSuccess = \"websocket\" === transport.name;\n this.transport.pause(() => {\n if (failed)\n return;\n if (\"closed\" === this.readyState)\n return;\n cleanup();\n this.setTransport(transport);\n transport.send([{ type: \"upgrade\" }]);\n this.emitReserved(\"upgrade\", transport);\n transport = null;\n this.upgrading = false;\n this.flush();\n });\n }\n else {\n const err = new Error(\"probe error\");\n // @ts-ignore\n err.transport = transport.name;\n this.emitReserved(\"upgradeError\", err);\n }\n });\n };\n function freezeTransport() {\n if (failed)\n return;\n // Any callback called by transport should be ignored since now\n failed = true;\n cleanup();\n transport.close();\n transport = null;\n }\n // Handle any error that happens while probing\n const onerror = err => {\n const error = new Error(\"probe error: \" + err);\n // @ts-ignore\n error.transport = transport.name;\n freezeTransport();\n this.emitReserved(\"upgradeError\", error);\n };\n function onTransportClose() {\n onerror(\"transport closed\");\n }\n // When the socket is closed while we're probing\n function onclose() {\n onerror(\"socket closed\");\n }\n // When the socket is upgraded while we're probing\n function onupgrade(to) {\n if (transport && to.name !== transport.name) {\n freezeTransport();\n }\n }\n // Remove all listeners on the transport and on self\n const cleanup = () => {\n transport.removeListener(\"open\", onTransportOpen);\n transport.removeListener(\"error\", onerror);\n transport.removeListener(\"close\", onTransportClose);\n this.off(\"close\", onclose);\n this.off(\"upgrading\", onupgrade);\n };\n transport.once(\"open\", onTransportOpen);\n transport.once(\"error\", onerror);\n transport.once(\"close\", onTransportClose);\n this.once(\"close\", onclose);\n this.once(\"upgrading\", onupgrade);\n transport.open();\n }\n /**\n * Called when connection is deemed open.\n *\n * @api private\n */\n onOpen() {\n this.readyState = \"open\";\n Socket.priorWebsocketSuccess = \"websocket\" === this.transport.name;\n this.emitReserved(\"open\");\n this.flush();\n // we check for `readyState` in case an `open`\n // listener already closed the socket\n if (\"open\" === this.readyState &&\n this.opts.upgrade &&\n this.transport.pause) {\n let i = 0;\n const l = this.upgrades.length;\n for (; i < l; i++) {\n this.probe(this.upgrades[i]);\n }\n }\n }\n /**\n * Handles a packet.\n *\n * @api private\n */\n onPacket(packet) {\n if (\"opening\" === this.readyState ||\n \"open\" === this.readyState ||\n \"closing\" === this.readyState) {\n this.emitReserved(\"packet\", packet);\n // Socket is live - any packet counts\n this.emitReserved(\"heartbeat\");\n switch (packet.type) {\n case \"open\":\n this.onHandshake(JSON.parse(packet.data));\n break;\n case \"ping\":\n this.resetPingTimeout();\n this.sendPacket(\"pong\");\n this.emitReserved(\"ping\");\n this.emitReserved(\"pong\");\n break;\n case \"error\":\n const err = new Error(\"server error\");\n // @ts-ignore\n err.code = packet.data;\n this.onError(err);\n break;\n case \"message\":\n this.emitReserved(\"data\", packet.data);\n this.emitReserved(\"message\", packet.data);\n break;\n }\n }\n else {\n }\n }\n /**\n * Called upon handshake completion.\n *\n * @param {Object} data - handshake obj\n * @api private\n */\n onHandshake(data) {\n this.emitReserved(\"handshake\", data);\n this.id = data.sid;\n this.transport.query.sid = data.sid;\n this.upgrades = this.filterUpgrades(data.upgrades);\n this.pingInterval = data.pingInterval;\n this.pingTimeout = data.pingTimeout;\n this.maxPayload = data.maxPayload;\n this.onOpen();\n // In case open handler closes socket\n if (\"closed\" === this.readyState)\n return;\n this.resetPingTimeout();\n }\n /**\n * Sets and resets ping timeout timer based on server pings.\n *\n * @api private\n */\n resetPingTimeout() {\n this.clearTimeoutFn(this.pingTimeoutTimer);\n this.pingTimeoutTimer = this.setTimeoutFn(() => {\n this.onClose(\"ping timeout\");\n }, this.pingInterval + this.pingTimeout);\n if (this.opts.autoUnref) {\n this.pingTimeoutTimer.unref();\n }\n }\n /**\n * Called on `drain` event\n *\n * @api private\n */\n onDrain() {\n this.writeBuffer.splice(0, this.prevBufferLen);\n // setting prevBufferLen = 0 is very important\n // for example, when upgrading, upgrade packet is sent over,\n // and a nonzero prevBufferLen could cause problems on `drain`\n this.prevBufferLen = 0;\n if (0 === this.writeBuffer.length) {\n this.emitReserved(\"drain\");\n }\n else {\n this.flush();\n }\n }\n /**\n * Flush write buffers.\n *\n * @api private\n */\n flush() {\n if (\"closed\" !== this.readyState &&\n this.transport.writable &&\n !this.upgrading &&\n this.writeBuffer.length) {\n const packets = this.getWritablePackets();\n this.transport.send(packets);\n // keep track of current length of writeBuffer\n // splice writeBuffer and callbackBuffer on `drain`\n this.prevBufferLen = packets.length;\n this.emitReserved(\"flush\");\n }\n }\n /**\n * Ensure the encoded size of the writeBuffer is below the maxPayload value sent by the server (only for HTTP\n * long-polling)\n *\n * @private\n */\n getWritablePackets() {\n const shouldCheckPayloadSize = this.maxPayload &&\n this.transport.name === \"polling\" &&\n this.writeBuffer.length > 1;\n if (!shouldCheckPayloadSize) {\n return this.writeBuffer;\n }\n let payloadSize = 1; // first packet type\n for (let i = 0; i < this.writeBuffer.length; i++) {\n const data = this.writeBuffer[i].data;\n if (data) {\n payloadSize += byteLength(data);\n }\n if (i > 0 && payloadSize > this.maxPayload) {\n return this.writeBuffer.slice(0, i);\n }\n payloadSize += 2; // separator + packet type\n }\n return this.writeBuffer;\n }\n /**\n * Sends a message.\n *\n * @param {String} message.\n * @param {Function} callback function.\n * @param {Object} options.\n * @return {Socket} for chaining.\n * @api public\n */\n write(msg, options, fn) {\n this.sendPacket(\"message\", msg, options, fn);\n return this;\n }\n send(msg, options, fn) {\n this.sendPacket(\"message\", msg, options, fn);\n return this;\n }\n /**\n * Sends a packet.\n *\n * @param {String} packet type.\n * @param {String} data.\n * @param {Object} options.\n * @param {Function} callback function.\n * @api private\n */\n sendPacket(type, data, options, fn) {\n if (\"function\" === typeof data) {\n fn = data;\n data = undefined;\n }\n if (\"function\" === typeof options) {\n fn = options;\n options = null;\n }\n if (\"closing\" === this.readyState || \"closed\" === this.readyState) {\n return;\n }\n options = options || {};\n options.compress = false !== options.compress;\n const packet = {\n type: type,\n data: data,\n options: options\n };\n this.emitReserved(\"packetCreate\", packet);\n this.writeBuffer.push(packet);\n if (fn)\n this.once(\"flush\", fn);\n this.flush();\n }\n /**\n * Closes the connection.\n *\n * @api public\n */\n close() {\n const close = () => {\n this.onClose(\"forced close\");\n this.transport.close();\n };\n const cleanupAndClose = () => {\n this.off(\"upgrade\", cleanupAndClose);\n this.off(\"upgradeError\", cleanupAndClose);\n close();\n };\n const waitForUpgrade = () => {\n // wait for upgrade to finish since we can't send packets while pausing a transport\n this.once(\"upgrade\", cleanupAndClose);\n this.once(\"upgradeError\", cleanupAndClose);\n };\n if (\"opening\" === this.readyState || \"open\" === this.readyState) {\n this.readyState = \"closing\";\n if (this.writeBuffer.length) {\n this.once(\"drain\", () => {\n if (this.upgrading) {\n waitForUpgrade();\n }\n else {\n close();\n }\n });\n }\n else if (this.upgrading) {\n waitForUpgrade();\n }\n else {\n close();\n }\n }\n return this;\n }\n /**\n * Called upon transport error\n *\n * @api private\n */\n onError(err) {\n Socket.priorWebsocketSuccess = false;\n this.emitReserved(\"error\", err);\n this.onClose(\"transport error\", err);\n }\n /**\n * Called upon transport close.\n *\n * @api private\n */\n onClose(reason, description) {\n if (\"opening\" === this.readyState ||\n \"open\" === this.readyState ||\n \"closing\" === this.readyState) {\n // clear timers\n this.clearTimeoutFn(this.pingTimeoutTimer);\n // stop event from firing again for transport\n this.transport.removeAllListeners(\"close\");\n // ensure transport won't stay open\n this.transport.close();\n // ignore further transport communication\n this.transport.removeAllListeners();\n if (typeof removeEventListener === \"function\") {\n removeEventListener(\"beforeunload\", this.beforeunloadEventListener, false);\n removeEventListener(\"offline\", this.offlineEventListener, false);\n }\n // set ready state\n this.readyState = \"closed\";\n // clear session id\n this.id = null;\n // emit close event\n this.emitReserved(\"close\", reason, description);\n // clean buffers after, so users can still\n // grab the buffers on `close` event\n this.writeBuffer = [];\n this.prevBufferLen = 0;\n }\n }\n /**\n * Filters upgrades, returning only those matching client transports.\n *\n * @param {Array} server upgrades\n * @api private\n *\n */\n filterUpgrades(upgrades) {\n const filteredUpgrades = [];\n let i = 0;\n const j = upgrades.length;\n for (; i < j; i++) {\n if (~this.transports.indexOf(upgrades[i]))\n filteredUpgrades.push(upgrades[i]);\n }\n return filteredUpgrades;\n }\n}\nSocket.protocol = protocol;\n","import { Socket } from \"./socket.js\";\nexport { Socket };\nexport const protocol = Socket.protocol;\nexport { Transport } from \"./transport.js\";\nexport { transports } from \"./transports/index.js\";\nexport { installTimerFunctions } from \"./util.js\";\nexport { parse } from \"./contrib/parseuri.js\";\nexport { nextTick } from \"./transports/websocket-constructor.js\";\n","'use strict';\n\nfunction utf8Write(view, offset, str) {\n var c = 0;\n for (var i = 0, l = str.length; i < l; i++) {\n c = str.charCodeAt(i);\n if (c < 0x80) {\n view.setUint8(offset++, c);\n }\n else if (c < 0x800) {\n view.setUint8(offset++, 0xc0 | (c >> 6));\n view.setUint8(offset++, 0x80 | (c & 0x3f));\n }\n else if (c < 0xd800 || c >= 0xe000) {\n view.setUint8(offset++, 0xe0 | (c >> 12));\n view.setUint8(offset++, 0x80 | (c >> 6) & 0x3f);\n view.setUint8(offset++, 0x80 | (c & 0x3f));\n }\n else {\n i++;\n c = 0x10000 + (((c & 0x3ff) << 10) | (str.charCodeAt(i) & 0x3ff));\n view.setUint8(offset++, 0xf0 | (c >> 18));\n view.setUint8(offset++, 0x80 | (c >> 12) & 0x3f);\n view.setUint8(offset++, 0x80 | (c >> 6) & 0x3f);\n view.setUint8(offset++, 0x80 | (c & 0x3f));\n }\n }\n}\n\nfunction utf8Length(str) {\n var c = 0, length = 0;\n for (var i = 0, l = str.length; i < l; i++) {\n c = str.charCodeAt(i);\n if (c < 0x80) {\n length += 1;\n }\n else if (c < 0x800) {\n length += 2;\n }\n else if (c < 0xd800 || c >= 0xe000) {\n length += 3;\n }\n else {\n i++;\n length += 4;\n }\n }\n return length;\n}\n\nfunction _encode(bytes, defers, value) {\n var type = typeof value, i = 0, l = 0, hi = 0, lo = 0, length = 0, size = 0;\n\n if (type === 'string') {\n length = utf8Length(value);\n\n // fixstr\n if (length < 0x20) {\n bytes.push(length | 0xa0);\n size = 1;\n }\n // str 8\n else if (length < 0x100) {\n bytes.push(0xd9, length);\n size = 2;\n }\n // str 16\n else if (length < 0x10000) {\n bytes.push(0xda, length >> 8, length);\n size = 3;\n }\n // str 32\n else if (length < 0x100000000) {\n bytes.push(0xdb, length >> 24, length >> 16, length >> 8, length);\n size = 5;\n } else {\n throw new Error('String too long');\n }\n defers.push({ _str: value, _length: length, _offset: bytes.length });\n return size + length;\n }\n if (type === 'number') {\n // TODO: encode to float 32?\n\n // float 64\n if (Math.floor(value) !== value || !isFinite(value)) {\n bytes.push(0xcb);\n defers.push({ _float: value, _length: 8, _offset: bytes.length });\n return 9;\n }\n\n if (value >= 0) {\n // positive fixnum\n if (value < 0x80) {\n bytes.push(value);\n return 1;\n }\n // uint 8\n if (value < 0x100) {\n bytes.push(0xcc, value);\n return 2;\n }\n // uint 16\n if (value < 0x10000) {\n bytes.push(0xcd, value >> 8, value);\n return 3;\n }\n // uint 32\n if (value < 0x100000000) {\n bytes.push(0xce, value >> 24, value >> 16, value >> 8, value);\n return 5;\n }\n // uint 64\n hi = (value / Math.pow(2, 32)) >> 0;\n lo = value >>> 0;\n bytes.push(0xcf, hi >> 24, hi >> 16, hi >> 8, hi, lo >> 24, lo >> 16, lo >> 8, lo);\n return 9;\n } else {\n // negative fixnum\n if (value >= -0x20) {\n bytes.push(value);\n return 1;\n }\n // int 8\n if (value >= -0x80) {\n bytes.push(0xd0, value);\n return 2;\n }\n // int 16\n if (value >= -0x8000) {\n bytes.push(0xd1, value >> 8, value);\n return 3;\n }\n // int 32\n if (value >= -0x80000000) {\n bytes.push(0xd2, value >> 24, value >> 16, value >> 8, value);\n return 5;\n }\n // int 64\n hi = Math.floor(value / Math.pow(2, 32));\n lo = value >>> 0;\n bytes.push(0xd3, hi >> 24, hi >> 16, hi >> 8, hi, lo >> 24, lo >> 16, lo >> 8, lo);\n return 9;\n }\n }\n if (type === 'object') {\n // nil\n if (value === null) {\n bytes.push(0xc0);\n return 1;\n }\n\n if (Array.isArray(value)) {\n length = value.length;\n\n // fixarray\n if (length < 0x10) {\n bytes.push(length | 0x90);\n size = 1;\n }\n // array 16\n else if (length < 0x10000) {\n bytes.push(0xdc, length >> 8, length);\n size = 3;\n }\n // array 32\n else if (length < 0x100000000) {\n bytes.push(0xdd, length >> 24, length >> 16, length >> 8, length);\n size = 5;\n } else {\n throw new Error('Array too large');\n }\n for (i = 0; i < length; i++) {\n size += _encode(bytes, defers, value[i]);\n }\n return size;\n }\n\n // fixext 8 / Date\n if (value instanceof Date) {\n var time = value.getTime();\n hi = Math.floor(time / Math.pow(2, 32));\n lo = time >>> 0;\n bytes.push(0xd7, 0, hi >> 24, hi >> 16, hi >> 8, hi, lo >> 24, lo >> 16, lo >> 8, lo);\n return 10;\n }\n\n if (value instanceof ArrayBuffer) {\n length = value.byteLength;\n\n // bin 8\n if (length < 0x100) {\n bytes.push(0xc4, length);\n size = 2;\n } else\n // bin 16\n if (length < 0x10000) {\n bytes.push(0xc5, length >> 8, length);\n size = 3;\n } else\n // bin 32\n if (length < 0x100000000) {\n bytes.push(0xc6, length >> 24, length >> 16, length >> 8, length);\n size = 5;\n } else {\n throw new Error('Buffer too large');\n }\n defers.push({ _bin: value, _length: length, _offset: bytes.length });\n return size + length;\n }\n\n if (typeof value.toJSON === 'function') {\n return _encode(bytes, defers, value.toJSON());\n }\n\n var keys = [], key = '';\n\n var allKeys = Object.keys(value);\n for (i = 0, l = allKeys.length; i < l; i++) {\n key = allKeys[i];\n if (typeof value[key] !== 'function') {\n keys.push(key);\n }\n }\n length = keys.length;\n\n // fixmap\n if (length < 0x10) {\n bytes.push(length | 0x80);\n size = 1;\n }\n // map 16\n else if (length < 0x10000) {\n bytes.push(0xde, length >> 8, length);\n size = 3;\n }\n // map 32\n else if (length < 0x100000000) {\n bytes.push(0xdf, length >> 24, length >> 16, length >> 8, length);\n size = 5;\n } else {\n throw new Error('Object too large');\n }\n\n for (i = 0; i < length; i++) {\n key = keys[i];\n size += _encode(bytes, defers, key);\n size += _encode(bytes, defers, value[key]);\n }\n return size;\n }\n // false/true\n if (type === 'boolean') {\n bytes.push(value ? 0xc3 : 0xc2);\n return 1;\n }\n // fixext 1 / undefined\n if (type === 'undefined') {\n bytes.push(0xd4, 0, 0);\n return 3;\n }\n throw new Error('Could not encode');\n}\n\nfunction encode(value) {\n var bytes = [];\n var defers = [];\n var size = _encode(bytes, defers, value);\n var buf = new ArrayBuffer(size);\n var view = new DataView(buf);\n\n var deferIndex = 0;\n var deferWritten = 0;\n var nextOffset = -1;\n if (defers.length > 0) {\n nextOffset = defers[0]._offset;\n }\n\n var defer, deferLength = 0, offset = 0;\n for (var i = 0, l = bytes.length; i < l; i++) {\n view.setUint8(deferWritten + i, bytes[i]);\n if (i + 1 !== nextOffset) { continue; }\n defer = defers[deferIndex];\n deferLength = defer._length;\n offset = deferWritten + nextOffset;\n if (defer._bin) {\n var bin = new Uint8Array(defer._bin);\n for (var j = 0; j < deferLength; j++) {\n view.setUint8(offset + j, bin[j]);\n }\n } else if (defer._str) {\n utf8Write(view, offset, defer._str);\n } else if (defer._float !== undefined) {\n view.setFloat64(offset, defer._float);\n }\n deferIndex++;\n deferWritten += deferLength;\n if (defers[deferIndex]) {\n nextOffset = defers[deferIndex]._offset;\n }\n }\n return buf;\n}\n\nmodule.exports = encode;\n","'use strict';\n\nfunction Decoder(buffer) {\n this._offset = 0;\n if (buffer instanceof ArrayBuffer) {\n this._buffer = buffer;\n this._view = new DataView(this._buffer);\n } else if (ArrayBuffer.isView(buffer)) {\n this._buffer = buffer.buffer;\n this._view = new DataView(this._buffer, buffer.byteOffset, buffer.byteLength);\n } else {\n throw new Error('Invalid argument');\n }\n}\n\nfunction utf8Read(view, offset, length) {\n var string = '', chr = 0;\n for (var i = offset, end = offset + length; i < end; i++) {\n var byte = view.getUint8(i);\n if ((byte & 0x80) === 0x00) {\n string += String.fromCharCode(byte);\n continue;\n }\n if ((byte & 0xe0) === 0xc0) {\n string += String.fromCharCode(\n ((byte & 0x1f) << 6) |\n (view.getUint8(++i) & 0x3f)\n );\n continue;\n }\n if ((byte & 0xf0) === 0xe0) {\n string += String.fromCharCode(\n ((byte & 0x0f) << 12) |\n ((view.getUint8(++i) & 0x3f) << 6) |\n ((view.getUint8(++i) & 0x3f) << 0)\n );\n continue;\n }\n if ((byte & 0xf8) === 0xf0) {\n chr = ((byte & 0x07) << 18) |\n ((view.getUint8(++i) & 0x3f) << 12) |\n ((view.getUint8(++i) & 0x3f) << 6) |\n ((view.getUint8(++i) & 0x3f) << 0);\n if (chr >= 0x010000) { // surrogate pair\n chr -= 0x010000;\n string += String.fromCharCode((chr >>> 10) + 0xD800, (chr & 0x3FF) + 0xDC00);\n } else {\n string += String.fromCharCode(chr);\n }\n continue;\n }\n throw new Error('Invalid byte ' + byte.toString(16));\n }\n return string;\n}\n\nDecoder.prototype._array = function (length) {\n var value = new Array(length);\n for (var i = 0; i < length; i++) {\n value[i] = this._parse();\n }\n return value;\n};\n\nDecoder.prototype._map = function (length) {\n var key = '', value = {};\n for (var i = 0; i < length; i++) {\n key = this._parse();\n value[key] = this._parse();\n }\n return value;\n};\n\nDecoder.prototype._str = function (length) {\n var value = utf8Read(this._view, this._offset, length);\n this._offset += length;\n return value;\n};\n\nDecoder.prototype._bin = function (length) {\n var value = this._buffer.slice(this._offset, this._offset + length);\n this._offset += length;\n return value;\n};\n\nDecoder.prototype._parse = function () {\n var prefix = this._view.getUint8(this._offset++);\n var value, length = 0, type = 0, hi = 0, lo = 0;\n\n if (prefix < 0xc0) {\n // positive fixint\n if (prefix < 0x80) {\n return prefix;\n }\n // fixmap\n if (prefix < 0x90) {\n return this._map(prefix & 0x0f);\n }\n // fixarray\n if (prefix < 0xa0) {\n return this._array(prefix & 0x0f);\n }\n // fixstr\n return this._str(prefix & 0x1f);\n }\n\n // negative fixint\n if (prefix > 0xdf) {\n return (0xff - prefix + 1) * -1;\n }\n\n switch (prefix) {\n // nil\n case 0xc0:\n return null;\n // false\n case 0xc2:\n return false;\n // true\n case 0xc3:\n return true;\n\n // bin\n case 0xc4:\n length = this._view.getUint8(this._offset);\n this._offset += 1;\n return this._bin(length);\n case 0xc5:\n length = this._view.getUint16(this._offset);\n this._offset += 2;\n return this._bin(length);\n case 0xc6:\n length = this._view.getUint32(this._offset);\n this._offset += 4;\n return this._bin(length);\n\n // ext\n case 0xc7:\n length = this._view.getUint8(this._offset);\n type = this._view.getInt8(this._offset + 1);\n this._offset += 2;\n return [type, this._bin(length)];\n case 0xc8:\n length = this._view.getUint16(this._offset);\n type = this._view.getInt8(this._offset + 2);\n this._offset += 3;\n return [type, this._bin(length)];\n case 0xc9:\n length = this._view.getUint32(this._offset);\n type = this._view.getInt8(this._offset + 4);\n this._offset += 5;\n return [type, this._bin(length)];\n\n // float\n case 0xca:\n value = this._view.getFloat32(this._offset);\n this._offset += 4;\n return value;\n case 0xcb:\n value = this._view.getFloat64(this._offset);\n this._offset += 8;\n return value;\n\n // uint\n case 0xcc:\n value = this._view.getUint8(this._offset);\n this._offset += 1;\n return value;\n case 0xcd:\n value = this._view.getUint16(this._offset);\n this._offset += 2;\n return value;\n case 0xce:\n value = this._view.getUint32(this._offset);\n this._offset += 4;\n return value;\n case 0xcf:\n hi = this._view.getUint32(this._offset) * Math.pow(2, 32);\n lo = this._view.getUint32(this._offset + 4);\n this._offset += 8;\n return hi + lo;\n\n // int\n case 0xd0:\n value = this._view.getInt8(this._offset);\n this._offset += 1;\n return value;\n case 0xd1:\n value = this._view.getInt16(this._offset);\n this._offset += 2;\n return value;\n case 0xd2:\n value = this._view.getInt32(this._offset);\n this._offset += 4;\n return value;\n case 0xd3:\n hi = this._view.getInt32(this._offset) * Math.pow(2, 32);\n lo = this._view.getUint32(this._offset + 4);\n this._offset += 8;\n return hi + lo;\n\n // fixext\n case 0xd4:\n type = this._view.getInt8(this._offset);\n this._offset += 1;\n if (type === 0x00) {\n this._offset += 1;\n return void 0;\n }\n return [type, this._bin(1)];\n case 0xd5:\n type = this._view.getInt8(this._offset);\n this._offset += 1;\n return [type, this._bin(2)];\n case 0xd6:\n type = this._view.getInt8(this._offset);\n this._offset += 1;\n return [type, this._bin(4)];\n case 0xd7:\n type = this._view.getInt8(this._offset);\n this._offset += 1;\n if (type === 0x00) {\n hi = this._view.getInt32(this._offset) * Math.pow(2, 32);\n lo = this._view.getUint32(this._offset + 4);\n this._offset += 8;\n return new Date(hi + lo);\n }\n return [type, this._bin(8)];\n case 0xd8:\n type = this._view.getInt8(this._offset);\n this._offset += 1;\n return [type, this._bin(16)];\n\n // str\n case 0xd9:\n length = this._view.getUint8(this._offset);\n this._offset += 1;\n return this._str(length);\n case 0xda:\n length = this._view.getUint16(this._offset);\n this._offset += 2;\n return this._str(length);\n case 0xdb:\n length = this._view.getUint32(this._offset);\n this._offset += 4;\n return this._str(length);\n\n // array\n case 0xdc:\n length = this._view.getUint16(this._offset);\n this._offset += 2;\n return this._array(length);\n case 0xdd:\n length = this._view.getUint32(this._offset);\n this._offset += 4;\n return this._array(length);\n\n // map\n case 0xde:\n length = this._view.getUint16(this._offset);\n this._offset += 2;\n return this._map(length);\n case 0xdf:\n length = this._view.getUint32(this._offset);\n this._offset += 4;\n return this._map(length);\n }\n\n throw new Error('Could not parse');\n};\n\nfunction decode(buffer) {\n var decoder = new Decoder(buffer);\n var value = decoder._parse();\n if (decoder._offset !== buffer.byteLength) {\n throw new Error((buffer.byteLength - decoder._offset) + ' trailing bytes');\n }\n return value;\n}\n\nmodule.exports = decode;\n","exports.encode = require('./encode');\nexports.decode = require('./decode');\n","\r\n/**\r\n * Expose `Emitter`.\r\n */\r\n\r\nif (typeof module !== 'undefined') {\r\n module.exports = Emitter;\r\n}\r\n\r\n/**\r\n * Initialize a new `Emitter`.\r\n *\r\n * @api public\r\n */\r\n\r\nfunction Emitter(obj) {\r\n if (obj) return mixin(obj);\r\n};\r\n\r\n/**\r\n * Mixin the emitter properties.\r\n *\r\n * @param {Object} obj\r\n * @return {Object}\r\n * @api private\r\n */\r\n\r\nfunction mixin(obj) {\r\n for (var key in Emitter.prototype) {\r\n obj[key] = Emitter.prototype[key];\r\n }\r\n return obj;\r\n}\r\n\r\n/**\r\n * Listen on the given `event` with `fn`.\r\n *\r\n * @param {String} event\r\n * @param {Function} fn\r\n * @return {Emitter}\r\n * @api public\r\n */\r\n\r\nEmitter.prototype.on =\r\nEmitter.prototype.addEventListener = function(event, fn){\r\n this._callbacks = this._callbacks || {};\r\n (this._callbacks['$' + event] = this._callbacks['$' + event] || [])\r\n .push(fn);\r\n return this;\r\n};\r\n\r\n/**\r\n * Adds an `event` listener that will be invoked a single\r\n * time then automatically removed.\r\n *\r\n * @param {String} event\r\n * @param {Function} fn\r\n * @return {Emitter}\r\n * @api public\r\n */\r\n\r\nEmitter.prototype.once = function(event, fn){\r\n function on() {\r\n this.off(event, on);\r\n fn.apply(this, arguments);\r\n }\r\n\r\n on.fn = fn;\r\n this.on(event, on);\r\n return this;\r\n};\r\n\r\n/**\r\n * Remove the given callback for `event` or all\r\n * registered callbacks.\r\n *\r\n * @param {String} event\r\n * @param {Function} fn\r\n * @return {Emitter}\r\n * @api public\r\n */\r\n\r\nEmitter.prototype.off =\r\nEmitter.prototype.removeListener =\r\nEmitter.prototype.removeAllListeners =\r\nEmitter.prototype.removeEventListener = function(event, fn){\r\n this._callbacks = this._callbacks || {};\r\n\r\n // all\r\n if (0 == arguments.length) {\r\n this._callbacks = {};\r\n return this;\r\n }\r\n\r\n // specific event\r\n var callbacks = this._callbacks['$' + event];\r\n if (!callbacks) return this;\r\n\r\n // remove all handlers\r\n if (1 == arguments.length) {\r\n delete this._callbacks['$' + event];\r\n return this;\r\n }\r\n\r\n // remove specific handler\r\n var cb;\r\n for (var i = 0; i < callbacks.length; i++) {\r\n cb = callbacks[i];\r\n if (cb === fn || cb.fn === fn) {\r\n callbacks.splice(i, 1);\r\n break;\r\n }\r\n }\r\n\r\n // Remove event specific arrays for event types that no\r\n // one is subscribed for to avoid memory leak.\r\n if (callbacks.length === 0) {\r\n delete this._callbacks['$' + event];\r\n }\r\n\r\n return this;\r\n};\r\n\r\n/**\r\n * Emit `event` with the given args.\r\n *\r\n * @param {String} event\r\n * @param {Mixed} ...\r\n * @return {Emitter}\r\n */\r\n\r\nEmitter.prototype.emit = function(event){\r\n this._callbacks = this._callbacks || {};\r\n\r\n var args = new Array(arguments.length - 1)\r\n , callbacks = this._callbacks['$' + event];\r\n\r\n for (var i = 1; i < arguments.length; i++) {\r\n args[i - 1] = arguments[i];\r\n }\r\n\r\n if (callbacks) {\r\n callbacks = callbacks.slice(0);\r\n for (var i = 0, len = callbacks.length; i < len; ++i) {\r\n callbacks[i].apply(this, args);\r\n }\r\n }\r\n\r\n return this;\r\n};\r\n\r\n/**\r\n * Return array of callbacks for `event`.\r\n *\r\n * @param {String} event\r\n * @return {Array}\r\n * @api public\r\n */\r\n\r\nEmitter.prototype.listeners = function(event){\r\n this._callbacks = this._callbacks || {};\r\n return this._callbacks['$' + event] || [];\r\n};\r\n\r\n/**\r\n * Check if this emitter has `event` handlers.\r\n *\r\n * @param {String} event\r\n * @return {Boolean}\r\n * @api public\r\n */\r\n\r\nEmitter.prototype.hasListeners = function(event){\r\n return !! this.listeners(event).length;\r\n};\r\n","var msgpack = require(\"notepack.io\");\nvar Emitter = require(\"component-emitter\");\n\nexports.protocol = 5;\n\n/**\n * Packet types (see https://github.com/socketio/socket.io-protocol)\n */\n\nvar PacketType = (exports.PacketType = {\n CONNECT: 0,\n DISCONNECT: 1,\n EVENT: 2,\n ACK: 3,\n CONNECT_ERROR: 4,\n});\n\nvar isInteger =\n Number.isInteger ||\n function (value) {\n return (\n typeof value === \"number\" &&\n isFinite(value) &&\n Math.floor(value) === value\n );\n };\n\nvar isString = function (value) {\n return typeof value === \"string\";\n};\n\nvar isObject = function (value) {\n return Object.prototype.toString.call(value) === \"[object Object]\";\n};\n\nfunction Encoder() {}\n\nEncoder.prototype.encode = function (packet) {\n return [msgpack.encode(packet)];\n};\n\nfunction Decoder() {}\n\nEmitter(Decoder.prototype);\n\nDecoder.prototype.add = function (obj) {\n var decoded = msgpack.decode(obj);\n this.checkPacket(decoded);\n this.emit(\"decoded\", decoded);\n};\n\nfunction isDataValid(decoded) {\n switch (decoded.type) {\n case PacketType.CONNECT:\n return decoded.data === undefined || isObject(decoded.data);\n case PacketType.DISCONNECT:\n return decoded.data === undefined;\n case PacketType.CONNECT_ERROR:\n return isString(decoded.data) || isObject(decoded.data);\n default:\n return Array.isArray(decoded.data);\n }\n}\n\nDecoder.prototype.checkPacket = function (decoded) {\n var isTypeValid =\n isInteger(decoded.type) &&\n decoded.type >= PacketType.CONNECT &&\n decoded.type <= PacketType.CONNECT_ERROR;\n if (!isTypeValid) {\n throw new Error(\"invalid packet type\");\n }\n\n if (!isString(decoded.nsp)) {\n throw new Error(\"invalid namespace\");\n }\n\n if (!isDataValid(decoded)) {\n throw new Error(\"invalid payload\");\n }\n\n var isAckValid = decoded.id === undefined || isInteger(decoded.id);\n if (!isAckValid) {\n throw new Error(\"invalid packet id\");\n }\n};\n\nDecoder.prototype.destroy = function () {};\n\nexports.Encoder = Encoder;\nexports.Decoder = Decoder;\n","export function on(obj, ev, fn) {\n obj.on(ev, fn);\n return function subDestroy() {\n obj.off(ev, fn);\n };\n}\n","import { PacketType } from \"socket.io-parser\";\nimport { on } from \"./on.js\";\nimport { Emitter, } from \"@socket.io/component-emitter\";\n/**\n * Internal events.\n * These events can't be emitted by the user.\n */\nconst RESERVED_EVENTS = Object.freeze({\n connect: 1,\n connect_error: 1,\n disconnect: 1,\n disconnecting: 1,\n // EventEmitter reserved events: https://nodejs.org/api/events.html#events_event_newlistener\n newListener: 1,\n removeListener: 1,\n});\n/**\n * A Socket is the fundamental class for interacting with the server.\n *\n * A Socket belongs to a certain Namespace (by default /) and uses an underlying {@link Manager} to communicate.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(\"connected\");\n * });\n *\n * // send an event to the server\n * socket.emit(\"foo\", \"bar\");\n *\n * socket.on(\"foobar\", () => {\n * // an event was received from the server\n * });\n *\n * // upon disconnection\n * socket.on(\"disconnect\", (reason) => {\n * console.log(`disconnected due to ${reason}`);\n * });\n */\nexport class Socket extends Emitter {\n /**\n * `Socket` constructor.\n */\n constructor(io, nsp, opts) {\n super();\n /**\n * Whether the socket is currently connected to the server.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(socket.connected); // true\n * });\n *\n * socket.on(\"disconnect\", () => {\n * console.log(socket.connected); // false\n * });\n */\n this.connected = false;\n /**\n * Buffer for packets received before the CONNECT packet\n */\n this.receiveBuffer = [];\n /**\n * Buffer for packets that will be sent once the socket is connected\n */\n this.sendBuffer = [];\n this.ids = 0;\n this.acks = {};\n this.flags = {};\n this.io = io;\n this.nsp = nsp;\n if (opts && opts.auth) {\n this.auth = opts.auth;\n }\n if (this.io._autoConnect)\n this.open();\n }\n /**\n * Whether the socket is currently disconnected\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"connect\", () => {\n * console.log(socket.disconnected); // false\n * });\n *\n * socket.on(\"disconnect\", () => {\n * console.log(socket.disconnected); // true\n * });\n */\n get disconnected() {\n return !this.connected;\n }\n /**\n * Subscribe to open, close and packet events\n *\n * @private\n */\n subEvents() {\n if (this.subs)\n return;\n const io = this.io;\n this.subs = [\n on(io, \"open\", this.onopen.bind(this)),\n on(io, \"packet\", this.onpacket.bind(this)),\n on(io, \"error\", this.onerror.bind(this)),\n on(io, \"close\", this.onclose.bind(this)),\n ];\n }\n /**\n * Whether the Socket will try to reconnect when its Manager connects or reconnects.\n *\n * @example\n * const socket = io();\n *\n * console.log(socket.active); // true\n *\n * socket.on(\"disconnect\", (reason) => {\n * if (reason === \"io server disconnect\") {\n * // the disconnection was initiated by the server, you need to manually reconnect\n * console.log(socket.active); // false\n * }\n * // else the socket will automatically try to reconnect\n * console.log(socket.active); // true\n * });\n */\n get active() {\n return !!this.subs;\n }\n /**\n * \"Opens\" the socket.\n *\n * @example\n * const socket = io({\n * autoConnect: false\n * });\n *\n * socket.connect();\n */\n connect() {\n if (this.connected)\n return this;\n this.subEvents();\n if (!this.io[\"_reconnecting\"])\n this.io.open(); // ensure open\n if (\"open\" === this.io._readyState)\n this.onopen();\n return this;\n }\n /**\n * Alias for {@link connect()}.\n */\n open() {\n return this.connect();\n }\n /**\n * Sends a `message` event.\n *\n * This method mimics the WebSocket.send() method.\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/send\n *\n * @example\n * socket.send(\"hello\");\n *\n * // this is equivalent to\n * socket.emit(\"message\", \"hello\");\n *\n * @return self\n */\n send(...args) {\n args.unshift(\"message\");\n this.emit.apply(this, args);\n return this;\n }\n /**\n * Override `emit`.\n * If the event is in `events`, it's emitted normally.\n *\n * @example\n * socket.emit(\"hello\", \"world\");\n *\n * // all serializable datastructures are supported (no need to call JSON.stringify)\n * socket.emit(\"hello\", 1, \"2\", { 3: [\"4\"], 5: Uint8Array.from([6]) });\n *\n * // with an acknowledgement from the server\n * socket.emit(\"hello\", \"world\", (val) => {\n * // ...\n * });\n *\n * @return self\n */\n emit(ev, ...args) {\n if (RESERVED_EVENTS.hasOwnProperty(ev)) {\n throw new Error('\"' + ev.toString() + '\" is a reserved event name');\n }\n args.unshift(ev);\n const packet = {\n type: PacketType.EVENT,\n data: args,\n };\n packet.options = {};\n packet.options.compress = this.flags.compress !== false;\n // event ack callback\n if (\"function\" === typeof args[args.length - 1]) {\n const id = this.ids++;\n const ack = args.pop();\n this._registerAckCallback(id, ack);\n packet.id = id;\n }\n const isTransportWritable = this.io.engine &&\n this.io.engine.transport &&\n this.io.engine.transport.writable;\n const discardPacket = this.flags.volatile && (!isTransportWritable || !this.connected);\n if (discardPacket) {\n }\n else if (this.connected) {\n this.notifyOutgoingListeners(packet);\n this.packet(packet);\n }\n else {\n this.sendBuffer.push(packet);\n }\n this.flags = {};\n return this;\n }\n /**\n * @private\n */\n _registerAckCallback(id, ack) {\n const timeout = this.flags.timeout;\n if (timeout === undefined) {\n this.acks[id] = ack;\n return;\n }\n // @ts-ignore\n const timer = this.io.setTimeoutFn(() => {\n delete this.acks[id];\n for (let i = 0; i < this.sendBuffer.length; i++) {\n if (this.sendBuffer[i].id === id) {\n this.sendBuffer.splice(i, 1);\n }\n }\n ack.call(this, new Error(\"operation has timed out\"));\n }, timeout);\n this.acks[id] = (...args) => {\n // @ts-ignore\n this.io.clearTimeoutFn(timer);\n ack.apply(this, [null, ...args]);\n };\n }\n /**\n * Sends a packet.\n *\n * @param packet\n * @private\n */\n packet(packet) {\n packet.nsp = this.nsp;\n this.io._packet(packet);\n }\n /**\n * Called upon engine `open`.\n *\n * @private\n */\n onopen() {\n if (typeof this.auth == \"function\") {\n this.auth((data) => {\n this.packet({ type: PacketType.CONNECT, data });\n });\n }\n else {\n this.packet({ type: PacketType.CONNECT, data: this.auth });\n }\n }\n /**\n * Called upon engine or manager `error`.\n *\n * @param err\n * @private\n */\n onerror(err) {\n if (!this.connected) {\n this.emitReserved(\"connect_error\", err);\n }\n }\n /**\n * Called upon engine `close`.\n *\n * @param reason\n * @param description\n * @private\n */\n onclose(reason, description) {\n this.connected = false;\n delete this.id;\n this.emitReserved(\"disconnect\", reason, description);\n }\n /**\n * Called with socket packet.\n *\n * @param packet\n * @private\n */\n onpacket(packet) {\n const sameNamespace = packet.nsp === this.nsp;\n if (!sameNamespace)\n return;\n switch (packet.type) {\n case PacketType.CONNECT:\n if (packet.data && packet.data.sid) {\n const id = packet.data.sid;\n this.onconnect(id);\n }\n else {\n this.emitReserved(\"connect_error\", new Error(\"It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)\"));\n }\n break;\n case PacketType.EVENT:\n case PacketType.BINARY_EVENT:\n this.onevent(packet);\n break;\n case PacketType.ACK:\n case PacketType.BINARY_ACK:\n this.onack(packet);\n break;\n case PacketType.DISCONNECT:\n this.ondisconnect();\n break;\n case PacketType.CONNECT_ERROR:\n this.destroy();\n const err = new Error(packet.data.message);\n // @ts-ignore\n err.data = packet.data.data;\n this.emitReserved(\"connect_error\", err);\n break;\n }\n }\n /**\n * Called upon a server event.\n *\n * @param packet\n * @private\n */\n onevent(packet) {\n const args = packet.data || [];\n if (null != packet.id) {\n args.push(this.ack(packet.id));\n }\n if (this.connected) {\n this.emitEvent(args);\n }\n else {\n this.receiveBuffer.push(Object.freeze(args));\n }\n }\n emitEvent(args) {\n if (this._anyListeners && this._anyListeners.length) {\n const listeners = this._anyListeners.slice();\n for (const listener of listeners) {\n listener.apply(this, args);\n }\n }\n super.emit.apply(this, args);\n }\n /**\n * Produces an ack callback to emit with an event.\n *\n * @private\n */\n ack(id) {\n const self = this;\n let sent = false;\n return function (...args) {\n // prevent double callbacks\n if (sent)\n return;\n sent = true;\n self.packet({\n type: PacketType.ACK,\n id: id,\n data: args,\n });\n };\n }\n /**\n * Called upon a server acknowlegement.\n *\n * @param packet\n * @private\n */\n onack(packet) {\n const ack = this.acks[packet.id];\n if (\"function\" === typeof ack) {\n ack.apply(this, packet.data);\n delete this.acks[packet.id];\n }\n else {\n }\n }\n /**\n * Called upon server connect.\n *\n * @private\n */\n onconnect(id) {\n this.id = id;\n this.connected = true;\n this.emitBuffered();\n this.emitReserved(\"connect\");\n }\n /**\n * Emit buffered events (received and emitted).\n *\n * @private\n */\n emitBuffered() {\n this.receiveBuffer.forEach((args) => this.emitEvent(args));\n this.receiveBuffer = [];\n this.sendBuffer.forEach((packet) => {\n this.notifyOutgoingListeners(packet);\n this.packet(packet);\n });\n this.sendBuffer = [];\n }\n /**\n * Called upon server disconnect.\n *\n * @private\n */\n ondisconnect() {\n this.destroy();\n this.onclose(\"io server disconnect\");\n }\n /**\n * Called upon forced client/server side disconnections,\n * this method ensures the manager stops tracking us and\n * that reconnections don't get triggered for this.\n *\n * @private\n */\n destroy() {\n if (this.subs) {\n // clean subscriptions to avoid reconnections\n this.subs.forEach((subDestroy) => subDestroy());\n this.subs = undefined;\n }\n this.io[\"_destroy\"](this);\n }\n /**\n * Disconnects the socket manually. In that case, the socket will not try to reconnect.\n *\n * If this is the last active Socket instance of the {@link Manager}, the low-level connection will be closed.\n *\n * @example\n * const socket = io();\n *\n * socket.on(\"disconnect\", (reason) => {\n * // console.log(reason); prints \"io client disconnect\"\n * });\n *\n * socket.disconnect();\n *\n * @return self\n */\n disconnect() {\n if (this.connected) {\n this.packet({ type: PacketType.DISCONNECT });\n }\n // remove socket from pool\n this.destroy();\n if (this.connected) {\n // fire events\n this.onclose(\"io client disconnect\");\n }\n return this;\n }\n /**\n * Alias for {@link disconnect()}.\n *\n * @return self\n */\n close() {\n return this.disconnect();\n }\n /**\n * Sets the compress flag.\n *\n * @example\n * socket.compress(false).emit(\"hello\");\n *\n * @param compress - if `true`, compresses the sending data\n * @return self\n */\n compress(compress) {\n this.flags.compress = compress;\n return this;\n }\n /**\n * Sets a modifier for a subsequent event emission that the event message will be dropped when this socket is not\n * ready to send messages.\n *\n * @example\n * socket.volatile.emit(\"hello\"); // the server may or may not receive it\n *\n * @returns self\n */\n get volatile() {\n this.flags.volatile = true;\n return this;\n }\n /**\n * Sets a modifier for a subsequent event emission that the callback will be called with an error when the\n * given number of milliseconds have elapsed without an acknowledgement from the server:\n *\n * @example\n * socket.timeout(5000).emit(\"my-event\", (err) => {\n * if (err) {\n * // the server did not acknowledge the event in the given delay\n * }\n * });\n *\n * @returns self\n */\n timeout(timeout) {\n this.flags.timeout = timeout;\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback.\n *\n * @example\n * socket.onAny((event, ...args) => {\n * console.log(`got ${event}`);\n * });\n *\n * @param listener\n */\n onAny(listener) {\n this._anyListeners = this._anyListeners || [];\n this._anyListeners.push(listener);\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback. The listener is added to the beginning of the listeners array.\n *\n * @example\n * socket.prependAny((event, ...args) => {\n * console.log(`got event ${event}`);\n * });\n *\n * @param listener\n */\n prependAny(listener) {\n this._anyListeners = this._anyListeners || [];\n this._anyListeners.unshift(listener);\n return this;\n }\n /**\n * Removes the listener that will be fired when any event is emitted.\n *\n * @example\n * const catchAllListener = (event, ...args) => {\n * console.log(`got event ${event}`);\n * }\n *\n * socket.onAny(catchAllListener);\n *\n * // remove a specific listener\n * socket.offAny(catchAllListener);\n *\n * // or remove all listeners\n * socket.offAny();\n *\n * @param listener\n */\n offAny(listener) {\n if (!this._anyListeners) {\n return this;\n }\n if (listener) {\n const listeners = this._anyListeners;\n for (let i = 0; i < listeners.length; i++) {\n if (listener === listeners[i]) {\n listeners.splice(i, 1);\n return this;\n }\n }\n }\n else {\n this._anyListeners = [];\n }\n return this;\n }\n /**\n * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated,\n * e.g. to remove listeners.\n */\n listenersAny() {\n return this._anyListeners || [];\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback.\n *\n * Note: acknowledgements sent to the server are not included.\n *\n * @example\n * socket.onAnyOutgoing((event, ...args) => {\n * console.log(`sent event ${event}`);\n * });\n *\n * @param listener\n */\n onAnyOutgoing(listener) {\n this._anyOutgoingListeners = this._anyOutgoingListeners || [];\n this._anyOutgoingListeners.push(listener);\n return this;\n }\n /**\n * Adds a listener that will be fired when any event is emitted. The event name is passed as the first argument to the\n * callback. The listener is added to the beginning of the listeners array.\n *\n * Note: acknowledgements sent to the server are not included.\n *\n * @example\n * socket.prependAnyOutgoing((event, ...args) => {\n * console.log(`sent event ${event}`);\n * });\n *\n * @param listener\n */\n prependAnyOutgoing(listener) {\n this._anyOutgoingListeners = this._anyOutgoingListeners || [];\n this._anyOutgoingListeners.unshift(listener);\n return this;\n }\n /**\n * Removes the listener that will be fired when any event is emitted.\n *\n * @example\n * const catchAllListener = (event, ...args) => {\n * console.log(`sent event ${event}`);\n * }\n *\n * socket.onAnyOutgoing(catchAllListener);\n *\n * // remove a specific listener\n * socket.offAnyOutgoing(catchAllListener);\n *\n * // or remove all listeners\n * socket.offAnyOutgoing();\n *\n * @param [listener] - the catch-all listener (optional)\n */\n offAnyOutgoing(listener) {\n if (!this._anyOutgoingListeners) {\n return this;\n }\n if (listener) {\n const listeners = this._anyOutgoingListeners;\n for (let i = 0; i < listeners.length; i++) {\n if (listener === listeners[i]) {\n listeners.splice(i, 1);\n return this;\n }\n }\n }\n else {\n this._anyOutgoingListeners = [];\n }\n return this;\n }\n /**\n * Returns an array of listeners that are listening for any event that is specified. This array can be manipulated,\n * e.g. to remove listeners.\n */\n listenersAnyOutgoing() {\n return this._anyOutgoingListeners || [];\n }\n /**\n * Notify the listeners for each packet sent\n *\n * @param packet\n *\n * @private\n */\n notifyOutgoingListeners(packet) {\n if (this._anyOutgoingListeners && this._anyOutgoingListeners.length) {\n const listeners = this._anyOutgoingListeners.slice();\n for (const listener of listeners) {\n listener.apply(this, packet.data);\n }\n }\n }\n}\n","/**\n * Initialize backoff timer with `opts`.\n *\n * - `min` initial timeout in milliseconds [100]\n * - `max` max timeout [10000]\n * - `jitter` [0]\n * - `factor` [2]\n *\n * @param {Object} opts\n * @api public\n */\nexport function Backoff(opts) {\n opts = opts || {};\n this.ms = opts.min || 100;\n this.max = opts.max || 10000;\n this.factor = opts.factor || 2;\n this.jitter = opts.jitter > 0 && opts.jitter <= 1 ? opts.jitter : 0;\n this.attempts = 0;\n}\n/**\n * Return the backoff duration.\n *\n * @return {Number}\n * @api public\n */\nBackoff.prototype.duration = function () {\n var ms = this.ms * Math.pow(this.factor, this.attempts++);\n if (this.jitter) {\n var rand = Math.random();\n var deviation = Math.floor(rand * this.jitter * ms);\n ms = (Math.floor(rand * 10) & 1) == 0 ? ms - deviation : ms + deviation;\n }\n return Math.min(ms, this.max) | 0;\n};\n/**\n * Reset the number of attempts.\n *\n * @api public\n */\nBackoff.prototype.reset = function () {\n this.attempts = 0;\n};\n/**\n * Set the minimum duration\n *\n * @api public\n */\nBackoff.prototype.setMin = function (min) {\n this.ms = min;\n};\n/**\n * Set the maximum duration\n *\n * @api public\n */\nBackoff.prototype.setMax = function (max) {\n this.max = max;\n};\n/**\n * Set the jitter\n *\n * @api public\n */\nBackoff.prototype.setJitter = function (jitter) {\n this.jitter = jitter;\n};\n","import { Socket as Engine, installTimerFunctions, nextTick, } from \"engine.io-client\";\nimport { Socket } from \"./socket.js\";\nimport * as parser from \"socket.io-parser\";\nimport { on } from \"./on.js\";\nimport { Backoff } from \"./contrib/backo2.js\";\nimport { Emitter, } from \"@socket.io/component-emitter\";\nexport class Manager extends Emitter {\n constructor(uri, opts) {\n var _a;\n super();\n this.nsps = {};\n this.subs = [];\n if (uri && \"object\" === typeof uri) {\n opts = uri;\n uri = undefined;\n }\n opts = opts || {};\n opts.path = opts.path || \"/socket.io\";\n this.opts = opts;\n installTimerFunctions(this, opts);\n this.reconnection(opts.reconnection !== false);\n this.reconnectionAttempts(opts.reconnectionAttempts || Infinity);\n this.reconnectionDelay(opts.reconnectionDelay || 1000);\n this.reconnectionDelayMax(opts.reconnectionDelayMax || 5000);\n this.randomizationFactor((_a = opts.randomizationFactor) !== null && _a !== void 0 ? _a : 0.5);\n this.backoff = new Backoff({\n min: this.reconnectionDelay(),\n max: this.reconnectionDelayMax(),\n jitter: this.randomizationFactor(),\n });\n this.timeout(null == opts.timeout ? 20000 : opts.timeout);\n this._readyState = \"closed\";\n this.uri = uri;\n const _parser = opts.parser || parser;\n this.encoder = new _parser.Encoder();\n this.decoder = new _parser.Decoder();\n this._autoConnect = opts.autoConnect !== false;\n if (this._autoConnect)\n this.open();\n }\n reconnection(v) {\n if (!arguments.length)\n return this._reconnection;\n this._reconnection = !!v;\n return this;\n }\n reconnectionAttempts(v) {\n if (v === undefined)\n return this._reconnectionAttempts;\n this._reconnectionAttempts = v;\n return this;\n }\n reconnectionDelay(v) {\n var _a;\n if (v === undefined)\n return this._reconnectionDelay;\n this._reconnectionDelay = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setMin(v);\n return this;\n }\n randomizationFactor(v) {\n var _a;\n if (v === undefined)\n return this._randomizationFactor;\n this._randomizationFactor = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setJitter(v);\n return this;\n }\n reconnectionDelayMax(v) {\n var _a;\n if (v === undefined)\n return this._reconnectionDelayMax;\n this._reconnectionDelayMax = v;\n (_a = this.backoff) === null || _a === void 0 ? void 0 : _a.setMax(v);\n return this;\n }\n timeout(v) {\n if (!arguments.length)\n return this._timeout;\n this._timeout = v;\n return this;\n }\n /**\n * Starts trying to reconnect if reconnection is enabled and we have not\n * started reconnecting yet\n *\n * @private\n */\n maybeReconnectOnOpen() {\n // Only try to reconnect if it's the first time we're connecting\n if (!this._reconnecting &&\n this._reconnection &&\n this.backoff.attempts === 0) {\n // keeps reconnection from firing twice for the same reconnection loop\n this.reconnect();\n }\n }\n /**\n * Sets the current transport `socket`.\n *\n * @param {Function} fn - optional, callback\n * @return self\n * @public\n */\n open(fn) {\n if (~this._readyState.indexOf(\"open\"))\n return this;\n this.engine = new Engine(this.uri, this.opts);\n const socket = this.engine;\n const self = this;\n this._readyState = \"opening\";\n this.skipReconnect = false;\n // emit `open`\n const openSubDestroy = on(socket, \"open\", function () {\n self.onopen();\n fn && fn();\n });\n // emit `error`\n const errorSub = on(socket, \"error\", (err) => {\n self.cleanup();\n self._readyState = \"closed\";\n this.emitReserved(\"error\", err);\n if (fn) {\n fn(err);\n }\n else {\n // Only do this if there is no fn to handle the error\n self.maybeReconnectOnOpen();\n }\n });\n if (false !== this._timeout) {\n const timeout = this._timeout;\n if (timeout === 0) {\n openSubDestroy(); // prevents a race condition with the 'open' event\n }\n // set timer\n const timer = this.setTimeoutFn(() => {\n openSubDestroy();\n socket.close();\n // @ts-ignore\n socket.emit(\"error\", new Error(\"timeout\"));\n }, timeout);\n if (this.opts.autoUnref) {\n timer.unref();\n }\n this.subs.push(function subDestroy() {\n clearTimeout(timer);\n });\n }\n this.subs.push(openSubDestroy);\n this.subs.push(errorSub);\n return this;\n }\n /**\n * Alias for open()\n *\n * @return self\n * @public\n */\n connect(fn) {\n return this.open(fn);\n }\n /**\n * Called upon transport open.\n *\n * @private\n */\n onopen() {\n // clear old subs\n this.cleanup();\n // mark as open\n this._readyState = \"open\";\n this.emitReserved(\"open\");\n // add new subs\n const socket = this.engine;\n this.subs.push(on(socket, \"ping\", this.onping.bind(this)), on(socket, \"data\", this.ondata.bind(this)), on(socket, \"error\", this.onerror.bind(this)), on(socket, \"close\", this.onclose.bind(this)), on(this.decoder, \"decoded\", this.ondecoded.bind(this)));\n }\n /**\n * Called upon a ping.\n *\n * @private\n */\n onping() {\n this.emitReserved(\"ping\");\n }\n /**\n * Called with data.\n *\n * @private\n */\n ondata(data) {\n try {\n this.decoder.add(data);\n }\n catch (e) {\n this.onclose(\"parse error\", e);\n }\n }\n /**\n * Called when parser fully decodes a packet.\n *\n * @private\n */\n ondecoded(packet) {\n // the nextTick call prevents an exception in a user-provided event listener from triggering a disconnection due to a \"parse error\"\n nextTick(() => {\n this.emitReserved(\"packet\", packet);\n }, this.setTimeoutFn);\n }\n /**\n * Called upon socket error.\n *\n * @private\n */\n onerror(err) {\n this.emitReserved(\"error\", err);\n }\n /**\n * Creates a new socket for the given `nsp`.\n *\n * @return {Socket}\n * @public\n */\n socket(nsp, opts) {\n let socket = this.nsps[nsp];\n if (!socket) {\n socket = new Socket(this, nsp, opts);\n this.nsps[nsp] = socket;\n }\n return socket;\n }\n /**\n * Called upon a socket close.\n *\n * @param socket\n * @private\n */\n _destroy(socket) {\n const nsps = Object.keys(this.nsps);\n for (const nsp of nsps) {\n const socket = this.nsps[nsp];\n if (socket.active) {\n return;\n }\n }\n this._close();\n }\n /**\n * Writes a packet.\n *\n * @param packet\n * @private\n */\n _packet(packet) {\n const encodedPackets = this.encoder.encode(packet);\n for (let i = 0; i < encodedPackets.length; i++) {\n this.engine.write(encodedPackets[i], packet.options);\n }\n }\n /**\n * Clean up transport subscriptions and packet buffer.\n *\n * @private\n */\n cleanup() {\n this.subs.forEach((subDestroy) => subDestroy());\n this.subs.length = 0;\n this.decoder.destroy();\n }\n /**\n * Close the current socket.\n *\n * @private\n */\n _close() {\n this.skipReconnect = true;\n this._reconnecting = false;\n this.onclose(\"forced close\");\n if (this.engine)\n this.engine.close();\n }\n /**\n * Alias for close()\n *\n * @private\n */\n disconnect() {\n return this._close();\n }\n /**\n * Called upon engine close.\n *\n * @private\n */\n onclose(reason, description) {\n this.cleanup();\n this.backoff.reset();\n this._readyState = \"closed\";\n this.emitReserved(\"close\", reason, description);\n if (this._reconnection && !this.skipReconnect) {\n this.reconnect();\n }\n }\n /**\n * Attempt a reconnection.\n *\n * @private\n */\n reconnect() {\n if (this._reconnecting || this.skipReconnect)\n return this;\n const self = this;\n if (this.backoff.attempts >= this._reconnectionAttempts) {\n this.backoff.reset();\n this.emitReserved(\"reconnect_failed\");\n this._reconnecting = false;\n }\n else {\n const delay = this.backoff.duration();\n this._reconnecting = true;\n const timer = this.setTimeoutFn(() => {\n if (self.skipReconnect)\n return;\n this.emitReserved(\"reconnect_attempt\", self.backoff.attempts);\n // check again for the case socket closed in above events\n if (self.skipReconnect)\n return;\n self.open((err) => {\n if (err) {\n self._reconnecting = false;\n self.reconnect();\n this.emitReserved(\"reconnect_error\", err);\n }\n else {\n self.onreconnect();\n }\n });\n }, delay);\n if (this.opts.autoUnref) {\n timer.unref();\n }\n this.subs.push(function subDestroy() {\n clearTimeout(timer);\n });\n }\n }\n /**\n * Called upon successful reconnect.\n *\n * @private\n */\n onreconnect() {\n const attempt = this.backoff.attempts;\n this._reconnecting = false;\n this.backoff.reset();\n this.emitReserved(\"reconnect\", attempt);\n }\n}\n","import { url } from \"./url.js\";\nimport { Manager } from \"./manager.js\";\nimport { Socket } from \"./socket.js\";\n/**\n * Managers cache.\n */\nconst cache = {};\nfunction lookup(uri, opts) {\n if (typeof uri === \"object\") {\n opts = uri;\n uri = undefined;\n }\n opts = opts || {};\n const parsed = url(uri, opts.path || \"/socket.io\");\n const source = parsed.source;\n const id = parsed.id;\n const path = parsed.path;\n const sameNamespace = cache[id] && path in cache[id][\"nsps\"];\n const newConnection = opts.forceNew ||\n opts[\"force new connection\"] ||\n false === opts.multiplex ||\n sameNamespace;\n let io;\n if (newConnection) {\n io = new Manager(source, opts);\n }\n else {\n if (!cache[id]) {\n cache[id] = new Manager(source, opts);\n }\n io = cache[id];\n }\n if (parsed.query && !opts.query) {\n opts.query = parsed.queryKey;\n }\n return io.socket(parsed.path, opts);\n}\n// so that \"lookup\" can be used both as a function (e.g. `io(...)`) and as a\n// namespace (e.g. `io.connect(...)`), for backward compatibility\nObject.assign(lookup, {\n Manager,\n Socket,\n io: lookup,\n connect: lookup,\n});\n/**\n * Protocol version.\n *\n * @public\n */\nexport { protocol } from \"socket.io-parser\";\n/**\n * Expose constructors for standalone build.\n *\n * @public\n */\nexport { Manager, Socket, lookup as io, lookup as connect, lookup as default, };\n","import { parse } from \"engine.io-client\";\n/**\n * URL parser.\n *\n * @param uri - url\n * @param path - the request path of the connection\n * @param loc - An object meant to mimic window.location.\n * Defaults to window.location.\n * @public\n */\nexport function url(uri, path = \"\", loc) {\n let obj = uri;\n // default to window.location\n loc = loc || (typeof location !== \"undefined\" && location);\n if (null == uri)\n uri = loc.protocol + \"//\" + loc.host;\n // relative path support\n if (typeof uri === \"string\") {\n if (\"/\" === uri.charAt(0)) {\n if (\"/\" === uri.charAt(1)) {\n uri = loc.protocol + uri;\n }\n else {\n uri = loc.host + uri;\n }\n }\n if (!/^(https?|wss?):\\/\\//.test(uri)) {\n if (\"undefined\" !== typeof loc) {\n uri = loc.protocol + \"//\" + uri;\n }\n else {\n uri = \"https://\" + uri;\n }\n }\n // parse\n obj = parse(uri);\n }\n // make sure we treat `localhost:80` and `localhost` equally\n if (!obj.port) {\n if (/^(http|ws)$/.test(obj.protocol)) {\n obj.port = \"80\";\n }\n else if (/^(http|ws)s$/.test(obj.protocol)) {\n obj.port = \"443\";\n }\n }\n obj.path = obj.path || \"/\";\n const ipv6 = obj.host.indexOf(\":\") !== -1;\n const host = ipv6 ? \"[\" + obj.host + \"]\" : obj.host;\n // define unique id\n obj.id = obj.protocol + \"://\" + host + \":\" + obj.port + path;\n // define href\n obj.href =\n obj.protocol +\n \"://\" +\n host +\n (loc && loc.port === obj.port ? \"\" : \":\" + obj.port);\n return obj;\n}\n"],"names":["PACKET_TYPES","Object","create","PACKET_TYPES_REVERSE","keys","forEach","key","ERROR_PACKET","type","data","withNativeBlob","Blob","prototype","toString","call","withNativeArrayBuffer","ArrayBuffer","encodePacket","supportsBinary","callback","obj","encodeBlobAsBase64","isView","buffer","fileReader","FileReader","onload","content","result","split","readAsDataURL","chars","lookup","Uint8Array","i","length","charCodeAt","decodePacket","encodedPacket","binaryType","mapBinary","charAt","decodeBase64Packet","substring","decoded","base64","encoded1","encoded2","encoded3","encoded4","bufferLength","len","p","arraybuffer","bytes","decode","SEPARATOR","String","fromCharCode","Emitter","mixin","on","addEventListener","event","fn","this","_callbacks","push","Emitter$1","once","off","apply","arguments","removeListener","removeAllListeners","removeEventListener","cb","callbacks","splice","emit","args","Array","slice","emitReserved","listeners","hasListeners","globalThisShim","self","window","Function","pick","_len","attr","_key","reduce","acc","k","hasOwnProperty","NATIVE_SET_TIMEOUT","setTimeout","NATIVE_CLEAR_TIMEOUT","clearTimeout","installTimerFunctions","opts","useNativeTimers","setTimeoutFn","bind","globalThis","clearTimeoutFn","prev","TransportError","reason","description","context","_this","_classCallCheck","_super","Error","Transport","_Emitter","_inherits","_super2","_createSuper","_this2","writable","_assertThisInitialized","query","readyState","socket","_createClass","value","_get","_getPrototypeOf","doOpen","doClose","onClose","packets","write","packet","onPacket","details","alphabet","map","seed","encode","num","encoded","Math","floor","yeast","now","Date","str","encodeURIComponent","qs","qry","pairs","l","pair","decodeURIComponent","XMLHttpRequest","err","hasCORS","XHR","xdomain","e","concat","join","empty","hasXHR2","responseType","Polling","_Transport","polling","location","isSSL","protocol","port","xd","hostname","xs","secure","forceBase64","get","poll","onPause","pause","total","doPoll","_this3","encodedPayload","encodedPackets","decodedPacket","decodePayload","onOpen","_this4","close","_this5","count","encodePayload","doWrite","schema","timestampRequests","timestampParam","sid","b64","Number","encodedQuery","indexOf","path","_extends","Request","uri","_this6","req","request","method","xhrStatus","onError","_this7","onData","pollXhr","_this8","async","undefined","_this9","xscheme","xhr","open","extraHeaders","setDisableHeaderCheck","setRequestHeader","withCredentials","requestTimeout","timeout","onreadystatechange","status","onLoad","send","document","index","requestsCount","requests","cleanup","fromError","abort","responseText","attachEvent","unloadHandler","nextTick","Promise","resolve","then","WebSocket","MozWebSocket","isReactNative","navigator","product","toLowerCase","WS","check","protocols","headers","ws","addEventListeners","onopen","autoUnref","_socket","unref","onclose","closeEvent","onmessage","ev","onerror","_loop","lastPacket","transports","websocket","re","parts","parse","src","b","replace","m","exec","source","host","authority","ipv6uri","pathNames","regx","names","queryKey","$0","$1","$2","Socket","writeBuffer","prevBufferLen","agent","upgrade","rememberUpgrade","rejectUnauthorized","perMessageDeflate","threshold","transportOptions","closeOnBeforeunload","id","upgrades","pingInterval","pingTimeout","pingTimeoutTimer","beforeunloadEventListener","transport","offlineEventListener","name","EIO","priorWebsocketSuccess","createTransport","shift","setTransport","onDrain","failed","onTransportOpen","msg","upgrading","flush","freezeTransport","error","onTransportClose","onupgrade","to","probe","onHandshake","JSON","resetPingTimeout","sendPacket","code","filterUpgrades","maxPayload","getWritablePackets","payloadSize","c","utf8Length","ceil","byteLength","size","options","compress","cleanupAndClose","waitForUpgrade","filteredUpgrades","j","Socket$1","utf8Write","view","offset","setUint8","_encode","defers","hi","lo","_str","_length","_offset","isFinite","pow","_float","isArray","time","getTime","_bin","toJSON","allKeys","encode_1","buf","DataView","deferIndex","deferWritten","nextOffset","defer","deferLength","bin","setFloat64","Decoder","_buffer","_view","byteOffset","_array","_parse","_map","string","chr","end","byte","getUint8","utf8Read","prefix","getUint16","getUint32","getInt8","getFloat32","getFloat64","getInt16","getInt32","decode_1","decoder","lib","require$$0","require$$1","module","exports","msgpack","socket_ioMsgpackParser","PacketType","PacketType_1","CONNECT","DISCONNECT","EVENT","ACK","CONNECT_ERROR","isInteger","isString","isObject","Encoder","add","checkPacket","nsp","isDataValid","destroy","Encoder_1","Decoder_1","RESERVED_EVENTS","freeze","connect","connect_error","disconnect","disconnecting","newListener","io","connected","receiveBuffer","sendBuffer","ids","acks","flags","auth","_autoConnect","subs","onpacket","subEvents","_readyState","unshift","_len2","_key2","ack","pop","_registerAckCallback","isTransportWritable","engine","discardPacket","notifyOutgoingListeners","timer","_len3","_key3","_packet","onconnect","BINARY_EVENT","onevent","BINARY_ACK","onack","ondisconnect","message","emitEvent","_anyListeners","_step","_iterator","_createForOfIteratorHelper","s","n","done","f","sent","_len4","_key4","emitBuffered","subDestroy","listener","_anyOutgoingListeners","_step2","_iterator2","Backoff","ms","min","max","factor","jitter","attempts","duration","rand","random","deviation","reset","setMin","setMax","setJitter","Manager","_a","nsps","reconnection","reconnectionAttempts","Infinity","reconnectionDelay","reconnectionDelayMax","randomizationFactor","backoff","_parser","parser","encoder","autoConnect","v","_reconnection","_reconnectionAttempts","_reconnectionDelay","_randomizationFactor","_reconnectionDelayMax","_timeout","_reconnecting","reconnect","Engine","skipReconnect","openSubDestroy","errorSub","maybeReconnectOnOpen","onping","ondata","ondecoded","_i","_nsps","active","_close","delay","onreconnect","attempt","cache","_typeof","parsed","loc","test","href","url","sameNamespace","forceNew","multiplex"],"mappings":"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"} \ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/app/template/Toolbar.template b/apps/spreadsheeteditor/main/app/template/Toolbar.template index 7671925c2..ae91b33b1 100644 --- a/apps/spreadsheeteditor/main/app/template/Toolbar.template +++ b/apps/spreadsheeteditor/main/app/template/Toolbar.template @@ -8,10 +8,10 @@
- +
- +
@@ -125,7 +125,7 @@ -
+
@@ -140,6 +140,7 @@ +
@@ -212,6 +213,10 @@
+
+ +
+
@@ -221,6 +226,10 @@
+
+ +
+
diff --git a/apps/spreadsheeteditor/main/app/template/ToolbarAnother.template b/apps/spreadsheeteditor/main/app/template/ToolbarAnother.template index eca22316b..b2c161b2c 100644 --- a/apps/spreadsheeteditor/main/app/template/ToolbarAnother.template +++ b/apps/spreadsheeteditor/main/app/template/ToolbarAnother.template @@ -23,7 +23,7 @@
- +
@@ -86,9 +86,9 @@
-
- - +
+ +
@@ -108,12 +108,13 @@ +
- +
@@ -128,7 +129,7 @@ -
+
diff --git a/apps/spreadsheeteditor/main/app/template/WatchDialog.template b/apps/spreadsheeteditor/main/app/template/WatchDialog.template new file mode 100644 index 000000000..d9dfe4296 --- /dev/null +++ b/apps/spreadsheeteditor/main/app/template/WatchDialog.template @@ -0,0 +1,27 @@ +
+
+ + + + + + + + + + +
+ +
+
+ +
+
+
+
+
\ 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 218ced987..2e57fae71 100644 --- a/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js +++ b/apps/spreadsheeteditor/main/app/view/AutoFilterDialog.js @@ -179,8 +179,8 @@ define([ isN2 = n2!==undefined; if (isN1 !== isN2) return (isN1) ? -1 : 1; !isN1 && (n1 = item1.get('value').toLowerCase()) && (n2 = item2.get('value').toLowerCase()); - if (n1==n2) return 0; - return (n2=='' || n1!=='' && n1', - '
', + '
', '
', '', '
', @@ -1328,8 +1328,8 @@ define([ isN2 = n2!==undefined; if (isN1 !== isN2) return (isN1) ? -1 : 1; !isN1 && (n1 = item1.get('cellvalue').toLowerCase()) && (n2 = item2.get('cellvalue').toLowerCase()); - if (n1==n2) return 0; - return (n2=='' || n1!=='' && n10.001) { + this.spnX.setValue((value!==null && value !== undefined) ? value : '', true); + this._state.X = value; + } + + value = props3d.asc_getRotY(); + if ( (this._state.Y===undefined || value===undefined)&&(this._state.Y!==value) || + Math.abs(this._state.Y-value)>0.001) { + this.spnY.setValue((value!==null && value !== undefined) ? value : '', true); + this._state.Y = value; + } + + value = props3d.asc_getRightAngleAxes(); + if ( this._state.RightAngle!==value ) { + this.chRightAngle.setValue((value !== null && value !== undefined) ? value : 'indeterminate', true); + this._state.RightAngle=value; + } + + value = props3d.asc_getPerspective(); + if ( (this._state.Perspective===undefined || value===undefined)&&(this._state.Perspective!==value) || + Math.abs(this._state.Perspective-value)>0.001) { + this.spnPerspective.setMinValue((value!==null && value !== undefined) ? 0.1 : 0); + this.spnPerspective.setValue((value!==null && value !== undefined) ? value : 0, true); + this._state.Perspective = value; + } + this.spnPerspective.setDisabled(this._locked || !!this._state.RightAngle); + this.btnNarrow.setDisabled(this._locked || !!this._state.RightAngle); + this.btnWiden.setDisabled(this._locked || !!this._state.RightAngle); + + value = props3d.asc_getDepth(); + if ( Math.abs(this._state.Depth-value)>0.001 || + (this._state.Depth===undefined || value===undefined)&&(this._state.Depth!==value)) { + this.spn3DDepth.setValue((value!==null && value !== undefined) ? value : '', true); + this._state.Depth = value; + } + + value = props3d.asc_getHeight(); + if ( Math.abs(this._state.Height3d-value)>0.001 || + (this._state.Height3d===undefined || this._state.Height3d===null || value===null)&&(this._state.Height3d!==value)) { + (value!==null) && this.spn3DHeight.setValue(value, true); + this.chAutoscale.setValue(value===null, true); + this._state.Height3d = value; + } + this.spn3DHeight.setDisabled(this._locked || value===null); + } } else { //sparkline this._originalProps = props; this.isChart = false; @@ -778,6 +831,208 @@ define([ this.btnSwitch.on('click', _.bind(this.onSwitch, this)); this.lockedControls.push(this.btnSwitch); + // 3d rotation + this.spnX = new Common.UI.MetricSpinner({ + el: $('#chart-spin-x'), + step: 10, + width: 57, + defaultUnit : "°", + value: '20 °', + maxValue: 359.9, + minValue: 0, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spnX); + this.spnX.on('change', _.bind(this.onXRotation, this)); + this.spnX.on('inputleave', function(){ Common.NotificationCenter.trigger('edit:complete', me);}); + + this.btnLeft = new Common.UI.Button({ + parentEl: $('#chart-btn-x-left', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-270', + hint: this.textLeft, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnLeft); + this.btnLeft.on('click', _.bind(function() { + this.spnX.setValue(this.spnX.getNumberValue() - 10); + }, this)); + + this.btnRight= new Common.UI.Button({ + parentEl: $('#chart-btn-x-right', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-90', + hint: this.textRight, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnRight); + this.btnRight.on('click', _.bind(function() { + this.spnX.setValue(this.spnX.getNumberValue() + 10); + }, this)); + + this.spnY = new Common.UI.MetricSpinner({ + el: $('#chart-spin-y'), + step: 10, + width: 57, + defaultUnit : "°", + value: '15 °', + maxValue: 90, + minValue: -90, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spnY); + this.spnY.on('change', _.bind(this.onYRotation, this)); + this.spnY.on('inputleave', function(){ Common.NotificationCenter.trigger('edit:complete', me);}); + + this.btnUp = new Common.UI.Button({ + parentEl: $('#chart-btn-y-up', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-y-clockwise', + hint: this.textUp, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnUp); + this.btnUp.on('click', _.bind(function() { + this.spnY.setValue(this.spnY.getNumberValue() - 10); + }, this)); + + this.btnDown= new Common.UI.Button({ + parentEl: $('#chart-btn-y-down', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-y-counterclockwise', + hint: this.textDown, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnDown); + this.btnDown.on('click', _.bind(function() { + this.spnY.setValue(this.spnY.getNumberValue() + 10); + }, this)); + + this.spnPerspective = new Common.UI.MetricSpinner({ + el: $('#chart-spin-persp'), + step: 5, + width: 57, + defaultUnit : "°", + value: '0 °', + maxValue: 100, + minValue: 0.1, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spnPerspective); + this.spnPerspective.on('change', _.bind(this.onPerspective, this)); + this.spnPerspective.on('inputleave', function(){ Common.NotificationCenter.trigger('edit:complete', me);}); + + this.btnNarrow = new Common.UI.Button({ + parentEl: $('#chart-btn-narrow', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-up', + hint: this.textNarrow, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnNarrow); + this.btnNarrow.on('click', _.bind(function() { + this.spnPerspective.setValue(this.spnPerspective.getNumberValue() - 5); + }, this)); + + this.btnWiden= new Common.UI.Button({ + parentEl: $('#chart-btn-widen', me.$el), + cls: 'btn-toolbar', + iconCls: 'toolbar__icon btn-rotate-down', + hint: this.textWiden, + dataHint: '1', + dataHintDirection: 'top' + }); + this.lockedControls.push(this.btnWiden); + this.btnWiden.on('click', _.bind(function() { + this.spnPerspective.setValue(this.spnPerspective.getNumberValue() + 5); + }, this)); + + this.chRightAngle = new Common.UI.CheckBox({ + el: $('#chart-checkbox-right-angle'), + labelText: this.textRightAngle + }); + this.lockedControls.push(this.chRightAngle); + this.chRightAngle.on('change', _.bind(function(field, newValue, oldValue, eOpts) { + if (this.api){ + var props = this.api.asc_getChartObject(); + if (props) { + var oView3D = props.getView3d(); + if (oView3D) { + oView3D.asc_setRightAngleAxes(field.getValue()=='checked'); + props.startEdit(); + props.setView3d(oView3D); + props.endEdit(); + } + } + } + }, this)); + + this.chAutoscale = new Common.UI.CheckBox({ + el: $('#chart-checkbox-autoscale'), + labelText: this.textAutoscale + }); + this.lockedControls.push(this.chAutoscale); + this.chAutoscale.on('change', _.bind(function(field, newValue, oldValue, eOpts) { + if (this.api){ + var props = this.api.asc_getChartObject(); + if (props) { + var oView3D = props.getView3d(); + if (oView3D) { + oView3D.asc_setHeight(field.getValue()=='checked' ? null : this.spn3DHeight.getNumberValue()); + props.startEdit(); + props.setView3d(oView3D); + props.endEdit(); + } + } + } + }, this)); + + this.spn3DDepth = new Common.UI.MetricSpinner({ + el: $('#chart-spin-3d-depth'), + step: 10, + width: 70, + defaultUnit : "%", + value: '0 %', + maxValue: 2000, + minValue: 0, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spn3DDepth); + this.spn3DDepth.on('change', _.bind(this.on3DDepth, this)); + this.spn3DDepth.on('inputleave', function(){ Common.NotificationCenter.trigger('edit:complete', me);}); + + this.spn3DHeight = new Common.UI.MetricSpinner({ + el: $('#chart-spin-3d-height'), + step: 10, + width: 70, + defaultUnit : "%", + value: '50 %', + maxValue: 500, + minValue: 5, + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.spn3DHeight); + this.spn3DHeight.on('change', _.bind(this.on3DHeight, this)); + this.spn3DHeight.on('inputleave', function(){ Common.NotificationCenter.trigger('edit:complete', me);}); + + this.linkDefRotation = $('#chart-def-rotate-link'); + $(this.el).on('click', '#chart-def-rotate-link', _.bind(this.onDefRotation, this)); + this.linkAdvanced = $('#chart-advanced-link'); $(this.el).on('click', '#chart-advanced-link', _.bind(this.openAdvancedSettings, this)); }, @@ -789,11 +1044,12 @@ define([ this.UpdateThemeColors(); }, - ShowHideElem: function(isChart) { + ShowHideElem: function(isChart, is3D) { this.ChartSizeContainer.toggleClass('settings-hidden', !isChart); this.ChartTypesContainer.toggleClass('settings-hidden', !isChart); this.SparkTypesContainer.toggleClass('settings-hidden', isChart); this.SparkPointsContainer.toggleClass('settings-hidden', isChart); + this.Chart3DContainer.toggleClass('settings-hidden', !isChart || !is3D); }, ShowCombinedProps: function(type) { @@ -1300,6 +1556,97 @@ define([ } }, + onXRotation: function(field, newValue, oldValue, eOpts){ + if (this.api){ + var props = this.api.asc_getChartObject(); + if (props) { + var oView3D = props.getView3d(); + if (oView3D) { + oView3D.asc_setRotX(field.getNumberValue()); + props.startEdit(); + props.setView3d(oView3D); + props.endEdit(); + } + } + } + }, + + onYRotation: function(field, newValue, oldValue, eOpts){ + if (this.api){ + var props = this.api.asc_getChartObject(); + if (props) { + var oView3D = props.getView3d(); + if (oView3D) { + oView3D.asc_setRotY(field.getNumberValue()); + props.startEdit(); + props.setView3d(oView3D); + props.endEdit(); + } + } + } + }, + + onPerspective: function(field, newValue, oldValue, eOpts){ + if (this.api){ + var props = this.api.asc_getChartObject(); + if (props) { + var oView3D = props.getView3d(); + if (oView3D) { + oView3D.asc_setPerspective(field.getNumberValue()); + props.startEdit(); + props.setView3d(oView3D); + props.endEdit(); + } + } + } + }, + + on3DDepth: function(field, newValue, oldValue, eOpts){ + if (this.api){ + var props = this.api.asc_getChartObject(); + if (props) { + var oView3D = props.getView3d(); + if (oView3D) { + oView3D.asc_setDepth(field.getNumberValue()); + props.startEdit(); + props.setView3d(oView3D); + props.endEdit(); + } + } + } + }, + + on3DHeight: function(field, newValue, oldValue, eOpts){ + if (this.api){ + var props = this.api.asc_getChartObject(); + if (props) { + var oView3D = props.getView3d(); + if (oView3D) { + oView3D.asc_setHeight(field.getNumberValue()); + props.startEdit(); + props.setView3d(oView3D); + props.endEdit(); + } + } + } + }, + + onDefRotation: function() { + if (this.api){ + var props = this.api.asc_getChartObject(); + if (props) { + var oView3D = props.getView3d(); + if (oView3D) { + oView3D.asc_setRotX(20); + oView3D.asc_setRotY(15); + props.startEdit(); + props.setView3d(oView3D); + props.endEdit(); + } + } + } + }, + setLocked: function (locked) { this._locked = locked; }, @@ -1340,7 +1687,22 @@ define([ textBorderSizeErr: 'The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.', textChangeType: 'Change type', textSwitch: 'Switch Row/Column', - errorMaxRows: 'The maximum number of data series per chart is 255.' + errorMaxRows: 'The maximum number of data series per chart is 255.', + text3dRotation: '3D Rotation', + textX: 'X rotation', + textY: 'Y rotation', + textPerspective: 'Perspective', + text3dDepth: 'Depth (% of base)', + text3dHeight: 'Height (% of base)', + textLeft: 'Left', + textRight: 'Right', + textUp: 'Up', + textDown: 'Down', + textNarrow: 'Narrow field of view', + textWiden: 'Widen field of view', + textRightAngle: 'Right Angle Axes', + textAutoscale: 'Autoscale', + textDefault: 'Default Rotation' }, SSE.Views.ChartSettings || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/DataTab.js b/apps/spreadsheeteditor/main/app/view/DataTab.js index c28e4ebce..1b88616f6 100644 --- a/apps/spreadsheeteditor/main/app/view/DataTab.js +++ b/apps/spreadsheeteditor/main/app/view/DataTab.js @@ -102,6 +102,11 @@ define([ me.btnCustomSort.on('click', function (b, e) { me.fireEvent('data:sortcustom'); }); + + me.btnExternalLinks.on('click', function (b, e) { + me.fireEvent('data:externallinks'); + }); + me.btnDataFromText.menu ? me.btnDataFromText.menu.on('item:click', function (menu, item, e) { me.fireEvent('data:fromtext', [item.value]); @@ -240,6 +245,19 @@ define([ }); this.lockedControls.push(this.btnCustomSort); + this.btnExternalLinks = new Common.UI.Button({ + parentEl: $host.find('#slot-btn-data-external-links'), + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon edit-links', + caption: this.capDataExternalLinks, + disabled: true, + lock: [_set.editCell, _set.sheetLock, _set.wbLock, _set.lostConnect, _set.coAuth, _set.wsLock], + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.btnExternalLinks); + this.btnsSortDown = Common.Utils.injectButtons($host.find('.slot-sortdesc'), '', 'toolbar__icon btn-sort-down', '', [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.cantModifyFilter, _set.sheetLock, _set.cantSort, _set['Sort']], undefined, undefined, undefined, '1', 'top', undefined, 'D'); @@ -301,6 +319,7 @@ define([ me.btnTextToColumns.updateHint(me.tipToColumns); me.btnRemoveDuplicates.updateHint(me.tipRemDuplicates); me.btnDataValidation.updateHint(me.tipDataValidation); + me.btnExternalLinks.updateHint(me.tipExternalLinks); me.btnsSortDown.forEach( function(btn) { btn.updateHint(me.toolbar.txtSortAZ); @@ -377,7 +396,9 @@ define([ capDataFromText: 'From Text/CSV', tipDataFromText: 'Get data from Text/CSV file', mniFromFile: 'Get Data from File', - mniFromUrl: 'Get Data from URL' + mniFromUrl: 'Get Data from URL', + capDataExternalLinks: 'External Links', + tipExternalLinks: 'View other files this spreadsheet is linked to' } }()), SSE.Views.DataTab || {})); }); diff --git a/apps/spreadsheeteditor/main/app/view/DocumentHolder.js b/apps/spreadsheeteditor/main/app/view/DocumentHolder.js index 1cb8e067e..90d3f9e3f 100644 --- a/apps/spreadsheeteditor/main/app/view/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/view/DocumentHolder.js @@ -335,6 +335,10 @@ define([ caption : me.txtReapply }); + me.mnuRefreshPivot = new Common.UI.MenuItem({ + caption : me.txtRefresh + }); + me.mnuGroupPivot = new Common.UI.MenuItem({ caption : this.txtGroup, value : 'grouping' @@ -584,6 +588,7 @@ define([ me.pmiSortCells, me.pmiFilterCells, me.pmiReapply, + me.mnuRefreshPivot, me.mnuGroupPivot, me.mnuUnGroupPivot, {caption: '--'}, @@ -1069,6 +1074,11 @@ define([ value : 'paste' }); + me.menuParagraphEquation = new Common.UI.MenuItem({ + caption : me.advancedEquationText, + menu : me.createEquationMenu('popupparaeqinput', 'tl-tr') + }); + this.textInShapeMenu = new Common.UI.Menu({ cls: 'shifted-right', items: [ @@ -1082,7 +1092,8 @@ define([ me.menuAddHyperlinkShape, me.menuHyperlinkShape, {caption: '--'}, - me.pmiTextAdvanced + me.pmiTextAdvanced, + me.menuParagraphEquation ] }); @@ -1162,6 +1173,60 @@ define([ item.setCaption(add ? this.txtAddComment : (editable ? this.txtEditComment : this.txtShowComment), true); }, + createEquationMenu: function(toggleGroup, menuAlign) { + return new Common.UI.Menu({ + cls: 'ppm-toolbar shifted-right', + menuAlign: menuAlign, + items : [ + new Common.UI.MenuItem({ + caption : this.unicodeText, + iconCls : 'menu__icon unicode', + checkable : true, + checkmark : false, + checked : false, + toggleGroup : toggleGroup, + type : 'input', + value : Asc.c_oAscMathInputType.Unicode + }), + new Common.UI.MenuItem({ + caption : this.latexText, + iconCls : 'menu__icon latex', + checkable : true, + checkmark : false, + checked : false, + toggleGroup : toggleGroup, + type : 'input', + value : Asc.c_oAscMathInputType.LaTeX + }), + { caption : '--' }, + new Common.UI.MenuItem({ + caption : this.currProfText, + iconCls : 'menu__icon professional-equation', + type : 'view', + value : {all: false, linear: false} + }), + new Common.UI.MenuItem({ + caption : this.currLinearText, + iconCls : 'menu__icon linear-equation', + type : 'view', + value : {all: false, linear: true} + }), + new Common.UI.MenuItem({ + caption : this.allProfText, + iconCls : 'menu__icon professional-equation', + type : 'view', + value : {all: true, linear: false} + }), + new Common.UI.MenuItem({ + caption : this.allLinearText, + iconCls : 'menu__icon linear-equation', + type : 'view', + value : {all: true, linear: true} + }) + ] + }); + }, + txtSort: 'Sort', txtAscending: 'Ascending', txtDescending: 'Descending', @@ -1319,7 +1384,15 @@ define([ tipMarkersDash: 'Dash bullets', chartDataText: 'Select Chart Data', chartTypeText: 'Change Chart Type', - txtGetLink: 'Get link to this range' + txtGetLink: 'Get link to this range', + txtRefresh: 'Refresh', + advancedEquationText: 'Equation Settings', + unicodeText: 'Unicode', + latexText: 'LaTeX', + currProfText: 'Current - Professional', + currLinearText: 'Current - Linear', + allProfText: 'All - Professional', + allLinearText: 'All - Linear' }, SSE.Views.DocumentHolder || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js new file mode 100644 index 000000000..41c7b68b7 --- /dev/null +++ b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js @@ -0,0 +1,254 @@ +/* + * + * (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 + * +*/ +/** + * + * ExternalLinksDlg.js + * + * Created by Julia.Radzhabova on 26.07.22 + * Copyright (c) 2022 Ascensio System SIA. All rights reserved. + * + */ + +define([ + 'common/main/lib/view/AdvancedSettingsWindow', + 'common/main/lib/component/ListView' +], function () { + 'use strict'; + + SSE.Views = SSE.Views || {}; + + SSE.Views.ExternalLinksDlg = Common.Views.AdvancedSettingsWindow.extend(_.extend({ + + options: { + alias: 'ExternalLinksDlg', + contentWidth: 450, + height: 294, + buttons: null + }, + + initialize: function (options) { + var me = this; + _.extend(this.options, { + title: this.txtTitle, + template: [ + '
', + '
', + '
', + '', + '', + '', + '', + '', + '', + '', + '
', + '', + '', + // '', + // '', + '
', + '', + '', + '
', + '
', + '
', + '
', + '' + ].join('') + }, options); + + this.api = options.api; + this.handler = options.handler; + + Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options); + }, + render: function () { + Common.Views.AdvancedSettingsWindow.prototype.render.call(this); + var me = this; + + this.linksList = new Common.UI.ListView({ + el: $('#external-links-list', this.$window), + store: new Common.UI.DataViewStore(), + simpleAddMode: true, + tabindex: 1 + }); + + this.btnUpdate = new Common.UI.Button({ + parentEl: $('#external-links-btn-update', this.$window), + cls: 'btn-text-split-default auto', + caption: this.textUpdate, + split: true, + menu : new Common.UI.Menu({ + style: 'min-width:100px;', + items: [ + { + caption: this.textUpdate, + value: 0 + }, + { + caption: this.textUpdateAll, + value: 1 + }] + }) + }); + $(this.btnUpdate.cmpEl.find('button')[0]).css('min-width', '87px'); + this.btnUpdate.on('click', _.bind(this.onUpdate, this)); + this.btnUpdate.menu.on('item:click', _.bind(this.onUpdateMenu, this)); + + this.btnDelete = new Common.UI.Button({ + parentEl: $('#external-links-btn-delete', this.$window), + cls: 'btn-text-split-default auto', + caption: this.textDelete, + split: true, + menu : new Common.UI.Menu({ + style: 'min-width:100px;', + items: [ + { + caption: this.textDelete, + value: 0 + }, + { + caption: this.textDeleteAll, + value: 1 + }] + }) + }); + $(this.btnDelete.cmpEl.find('button')[0]).css('min-width', '87px'); + this.btnDelete.on('click', _.bind(this.onDelete, this)); + this.btnDelete.menu.on('item:click', _.bind(this.onDeleteMenu, this)); + + this.btnOpen = new Common.UI.Button({ + el: $('#external-links-btn-open', this.$window) + }); + this.btnOpen.on('click', _.bind(this.onOpen, this)); + + this.btnChange = new Common.UI.Button({ + el: $('#external-links-btn-change', this.$window) + }); + this.btnChange.on('click', _.bind(this.onChange, this)); + + this.afterRender(); + }, + + afterRender: function() { + this._setDefaults(); + }, + + getFocusedComponents: function() { + return [ this.btnUpdate, this.btnDelete, this.btnOpen, this.btnChange, this.linksList ]; + }, + + getDefaultFocusableComponent: function () { + return this.linksList; + }, + + _setDefaults: function (props) { + this.refreshList(); + }, + + refreshList: function() { + var arr = []; + var links = this.api.asc_getExternalReferences(); + if (links) { + for (var i=0; i0) && this.linksList.selectByIndex(0); + this.btnUpdate.setDisabled(this.linksList.store.length<1 || !this.linksList.getSelectedRec()); + this.btnDelete.setDisabled(this.linksList.store.length<1 || !this.linksList.getSelectedRec()); + this.btnOpen.setDisabled(this.linksList.store.length<1 || !this.linksList.getSelectedRec()); + this.btnChange.setDisabled(this.linksList.store.length<1 || !this.linksList.getSelectedRec()); + }, + + onUpdate: function() { + var rec = this.linksList.getSelectedRec(); + rec && this.api.asc_updateExternalReferences([rec.get('externalRef')]); + }, + + onUpdateMenu: function(menu, item) { + if (item.value == 1) { + var arr = []; + this.linksList.store.each(function(item){ + arr.push(item.get('externalRef')); + }, this); + (arr.length>0) && this.api.asc_updateExternalReferences(arr); + } else + this.onUpdate(); + }, + + onDelete: function() { + var rec = this.linksList.getSelectedRec(); + rec && this.api.asc_removeExternalReferences([rec.get('externalRef')]); + this.refreshList(); + }, + + onDeleteMenu: function(menu, item) { + if (item.value == 1) { + var arr = []; + this.linksList.store.each(function(item){ + arr.push(item.get('externalRef')); + }, this); + (arr.length>0) && this.api.asc_removeExternalReferences(arr); + this.refreshList(); + } else + this.onDelete(); + }, + + onOpen: function() { + + }, + + onChange: function() { + + }, + + txtTitle: 'External Links', + textUpdate: 'Update Values', + textUpdateAll: 'Update All', + textSource: 'Source', + closeButtonText: 'Close', + textDelete: 'Break Links', + textDeleteAll: 'Break All Links', + textOpen: 'Open Source', + textChange: 'Change Source' + + }, SSE.Views.ExternalLinksDlg || {})); +}); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/FileMenu.js b/apps/spreadsheeteditor/main/app/view/FileMenu.js index c841f3721..84b635217 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenu.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenu.js @@ -59,7 +59,7 @@ define([ if (item.options.action === 'help') { if ( panel.noHelpContents === true && navigator.onLine ) { this.fireEvent('item:click', [this, 'external-help', true]); - window.open(panel.urlHelpCenter, '_blank'); + !!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank'); return; } } @@ -587,6 +587,8 @@ define([ }, SetDisabled: function(disable, options) { + if (!this.mode) return; + if ( !this.panels ) { this.mode.disableEditing = disable; } else { diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index aae0402bf..88d13dd80 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -378,6 +378,7 @@ define([ dataHintDirection: 'left', dataHintOffset: 'small' }); + (Common.Utils.isIE || Common.Utils.isMac && Common.Utils.isGecko) && this.chUseAltKey.$el.parent().parent().hide(); this.rbCoAuthModeFast = new Common.UI.RadioBox({ el : $markup.findById('#fms-rb-coauth-mode-fast'), @@ -892,6 +893,7 @@ define([ if (Common.UI.FeaturesManager.canChange('spellcheck') && this.mode.isEdit) { var arrLang = SSE.getController('Spellcheck').loadLanguages(), + defaultShortName = "en-US", allLangs = arrLang[0], langs = arrLang[1], change = arrLang[2]; @@ -911,6 +913,8 @@ define([ item = this.cmbDictionaryLanguage.store.find(function (model) { return model.get('shortName').indexOf(value) == 0; }); + if(!item) + item = this.cmbDictionaryLanguage.store.findWhere({shortName: defaultShortName}) } this.cmbDictionaryLanguage.setValue(item ? item.get('value') : langs[0].value); value = this.cmbDictionaryLanguage.getValue(); @@ -1158,7 +1162,7 @@ define([ txtWorkspace: 'Workspace', strReferenceStyle: 'R1C1 reference style', txtUseAltKey: 'Use Alt key to navigate the user interface using the keyboard', - txtUseOptionKey: 'Use Option key to navigate the user interface using the keyboard', + txtUseOptionKey: 'Use ⌘F6 to navigate the user interface using the keyboard', txtRegion: 'Region', txtProofing: 'Proofing', strDictionaryLanguage: 'Dictionary language', @@ -1350,6 +1354,10 @@ SSE.Views.FileMenuPanels.RecentFiles = Common.UI.BaseView.extend({ '