Merge branch 'develop' into feature/rtl-support
|
@ -175,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
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/socketio/socket.io.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
|
||||
<script type="text/javascript" src="../../../../sdkjs/common/AllFonts.js"></script>
|
||||
<script type="text/javascript" src="../../../../sdkjs/word/sdk-all-min.js"></script>
|
||||
|
|
|
@ -408,8 +408,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; i<this.store.length; i++) {
|
||||
|
@ -418,6 +419,8 @@ define([
|
|||
if (!itemCandidate) {
|
||||
itemCandidate = item;
|
||||
idxCandidate = i;
|
||||
if(!isFirstCharsEqual)
|
||||
break;
|
||||
}
|
||||
if (this._search.full && i==index || i>index) {
|
||||
itemCandidate = item;
|
||||
|
|
|
@ -482,8 +482,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; i<this.items.length; i++) {
|
||||
|
@ -492,6 +493,8 @@ define([
|
|||
if (!itemCandidate) {
|
||||
itemCandidate = item;
|
||||
idxCandidate = i;
|
||||
if(!isFirstCharsEqual)
|
||||
break;
|
||||
}
|
||||
if (this._search.full && i==index || i>index) {
|
||||
itemCandidate = item;
|
||||
|
@ -1061,8 +1064,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; i<this.items.length; i++) {
|
||||
|
@ -1071,6 +1075,8 @@ define([
|
|||
if (!itemCandidate) {
|
||||
itemCandidate = item;
|
||||
idxCandidate = i;
|
||||
if(!isFirstCharsEqual)
|
||||
break;
|
||||
}
|
||||
if (this._search.full && i==index || i>index) {
|
||||
itemCandidate = item;
|
||||
|
|
|
@ -406,9 +406,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'))));
|
||||
|
@ -452,6 +454,7 @@ define([
|
|||
}
|
||||
|
||||
t.api.asc_changeComment(id, ascComment);
|
||||
t.mode && t.mode.canRequestSendNotify && t.view.pickEMail(ascComment.asc_getGuid(), commentVal, oldCommentVal);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -465,7 +468,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'));
|
||||
|
@ -489,6 +493,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());
|
||||
|
@ -508,7 +513,7 @@ define([
|
|||
}
|
||||
|
||||
me.api.asc_changeComment(id, ascComment);
|
||||
|
||||
me.mode && me.mode.canRequestSendNotify && me.view.pickEMail(ascComment.asc_getGuid(), replyVal, oldReplyVal);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -45,7 +45,8 @@ define([
|
|||
version: '{{PRODUCT_VERSION}}',
|
||||
eventloading: true,
|
||||
titlebuttons: true,
|
||||
uithemes: true
|
||||
uithemes: true,
|
||||
btnhome: true,
|
||||
};
|
||||
|
||||
var native = window.desktop || window.AscDesktopEditor;
|
||||
|
@ -93,8 +94,9 @@ define([
|
|||
}
|
||||
|
||||
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)) {
|
||||
|
@ -245,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', event => {
|
||||
native.execCommand('title:button', JSON.stringify({click: "home"}));
|
||||
});
|
||||
|
||||
$('#id-box-doc-name').on({
|
||||
'dblclick': e => {
|
||||
native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
||||
},
|
||||
'mousedown': e => {
|
||||
native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
||||
},
|
||||
'mousemove': e => {
|
||||
native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
||||
},
|
||||
'mouseup': e => {
|
||||
native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (!!header.btnSave) {
|
||||
titlebuttons['save'] = {btn: header.btnSave};
|
||||
|
||||
|
@ -278,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);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@ Common.UI.HintManager = new(function() {
|
|||
_usedTitles = [],
|
||||
_appPrefix,
|
||||
_staticHints = { // for desktop buttons
|
||||
"btnhome": 'K'
|
||||
// "btnhome": 'K'
|
||||
};
|
||||
|
||||
var _api;
|
||||
|
|
|
@ -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<arr.length; i++) {
|
||||
if (typeof obj[arr[i]] === 'object' && obj[arr[i]]) {
|
||||
obj = obj[arr[i]];
|
||||
} else
|
||||
break;
|
||||
}
|
||||
if (i===arr.length) {
|
||||
if (typeof obj === 'object' && obj)
|
||||
return obj.mode;
|
||||
else
|
||||
return obj;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
return {
|
||||
init: _init,
|
||||
applyCustomization: _applyCustomization,
|
||||
isElementVisible: _isElementVisible
|
||||
isElementVisible: _isElementVisible,
|
||||
getInitValue: _getInitValue
|
||||
}
|
||||
})();
|
||||
|
||||
|
|
|
@ -102,6 +102,8 @@ 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: [],
|
||||
disableEditing: false, // disable editing when disconnect/signed file/mail merge preview/review final or original/forms preview
|
||||
|
@ -234,7 +236,7 @@ define([
|
|||
Common.Utils.lockControls(Common.enumLock.reviewChangelock, btnlock, {array: [this.view.btnAccept, this.view.btnReject]});
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -626,7 +628,7 @@ define([
|
|||
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);
|
||||
|
@ -641,19 +643,19 @@ 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
|
||||
Common.localStorage.setItem(this.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.Utils.InternalSettings.set(this.view.appPrefix + "review-mode-editor", item.value);
|
||||
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);
|
||||
},
|
||||
|
@ -785,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);
|
||||
|
@ -800,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);
|
||||
|
@ -855,7 +857,7 @@ define([
|
|||
// 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;
|
||||
|
@ -867,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.view.appPrefix + "review-mode-editor", val);
|
||||
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);
|
||||
|
||||
|
@ -891,7 +893,7 @@ define([
|
|||
} 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"));
|
||||
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);
|
||||
|
@ -910,16 +912,16 @@ define([
|
|||
}
|
||||
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.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");
|
||||
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.view.appPrefix + "settings-review-hover-mode", val);
|
||||
Common.Utils.InternalSettings.set(me.appPrefix + "settings-review-hover-mode", val);
|
||||
me.appConfig.reviewHoverMode = val;
|
||||
|
||||
me.view && me.view.onAppReady(config);
|
||||
|
@ -927,8 +929,8 @@ define([
|
|||
},
|
||||
|
||||
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();
|
||||
},
|
||||
|
@ -1018,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]});
|
||||
},
|
||||
|
||||
|
|
|
@ -806,11 +806,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
|
||||
|
|
|
@ -123,9 +123,10 @@ define([
|
|||
'<div id="header-logo"><i></i></div>' +
|
||||
'</section>';
|
||||
|
||||
var templateTitleBox = '<section id="box-document-title">' +
|
||||
var templateTitleBox = '<section id="box-document-title">' +
|
||||
'<div class="extra"></div>' +
|
||||
'<div class="hedset">' +
|
||||
'<div class="btn-slot" id="slot-btn-dt-home"></div>' +
|
||||
'<div class="btn-slot" id="slot-btn-dt-save" data-layout-name="header-save"></div>' +
|
||||
'<div class="btn-slot" id="slot-btn-dt-print"></div>' +
|
||||
'<div class="btn-slot" id="slot-btn-dt-undo"></div>' +
|
||||
|
|
|
@ -449,6 +449,7 @@ 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,
|
||||
|
@ -660,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',
|
||||
|
@ -694,7 +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);
|
||||
});
|
||||
},
|
||||
|
|
BIN
apps/common/main/resources/img/toolbar/1.25x/btn-home.png
Normal file
After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 310 B After Width: | Height: | Size: 185 B |
Before Width: | Height: | Size: 295 B After Width: | Height: | Size: 204 B |
BIN
apps/common/main/resources/img/toolbar/1.5x/btn-home.png
Normal file
After Width: | Height: | Size: 360 B |
Before Width: | Height: | Size: 328 B After Width: | Height: | Size: 195 B |
Before Width: | Height: | Size: 296 B After Width: | Height: | Size: 219 B |
BIN
apps/common/main/resources/img/toolbar/1.75x/btn-home.png
Normal file
After Width: | Height: | Size: 417 B |
Before Width: | Height: | Size: 351 B After Width: | Height: | Size: 214 B |
Before Width: | Height: | Size: 330 B After Width: | Height: | Size: 244 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-home.png
Normal file
After Width: | Height: | Size: 287 B |
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 178 B |
Before Width: | Height: | Size: 256 B After Width: | Height: | Size: 194 B |
BIN
apps/common/main/resources/img/toolbar/2x/btn-home.png
Normal file
After Width: | Height: | Size: 511 B |
Before Width: | Height: | Size: 482 B After Width: | Height: | Size: 308 B |
Before Width: | Height: | Size: 455 B After Width: | Height: | Size: 315 B |
|
@ -1,5 +1,5 @@
|
|||
import { Dom7 } from 'framework7'
|
||||
import { LocalStorage } from "../../utils/LocalStorage";
|
||||
import { LocalStorage } from "../../utils/LocalStorage.mjs";
|
||||
|
||||
class ThemesController {
|
||||
constructor() {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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';
|
||||
|
||||
|
|
|
@ -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){
|
||||
|
|
|
@ -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,11 +102,7 @@ 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,
|
||||
|
|
|
@ -229,7 +229,7 @@
|
|||
<script type="text/javascript" src="../../../vendor/jquery.browser/dist/jquery.browser.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/bootstrap/dist/js/bootstrap.js"></script>
|
||||
|
||||
<script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/socketio/socket.io.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
|
||||
|
||||
<script src="../../../vendor/requirejs/require.js"></script>
|
||||
|
|
|
@ -220,7 +220,7 @@
|
|||
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/jquery/jquery.browser.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/socketio/socket.io.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
|
||||
<script src="../../../vendor/requirejs/require.js"></script>
|
||||
<script>
|
||||
|
|
|
@ -329,7 +329,7 @@
|
|||
<script type="text/javascript" src="../../../vendor/jquery.browser/dist/jquery.browser.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/bootstrap/dist/js/bootstrap.js"></script>
|
||||
|
||||
<script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/socketio/socket.io.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="../../../../sdkjs/develop/sdkjs/word/scripts.js"></script>
|
||||
|
|
|
@ -320,7 +320,7 @@
|
|||
<script type="text/javascript" src="../../../vendor/jquery/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/jquery/jquery.browser.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/sockjs/sockjs.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/socketio/socket.io.min.js"></script>
|
||||
<script type="text/javascript" src="../../../vendor/xregexp/xregexp-all-min.js"></script>
|
||||
|
||||
<!--sdk-->
|
||||
|
|
|
@ -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"
|
||||
}
|
|
@ -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: {
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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: {
|
||||
|
|
|
@ -1238,7 +1238,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) {
|
||||
|
|
|
@ -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)
|
||||
|
@ -217,7 +218,6 @@ 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();
|
||||
|
@ -444,10 +444,6 @@ define([
|
|||
applySettings: function(menu) {
|
||||
var value;
|
||||
|
||||
value = Common.localStorage.getBool("de-settings-inputmode");
|
||||
Common.Utils.InternalSettings.set("de-settings-inputmode", value);
|
||||
this.api.SetTextBoxInputMode(value);
|
||||
|
||||
var fast_coauth = Common.Utils.InternalSettings.get("de-settings-coauthmode");
|
||||
/** coauthoring begin **/
|
||||
if (this.mode.isEdit && !this.mode.isOffline && this.mode.canCoAuthoring ) {
|
||||
|
@ -835,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'}});
|
||||
|
@ -861,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);
|
||||
|
@ -872,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);
|
||||
|
@ -916,6 +915,24 @@ define([
|
|||
}
|
||||
},
|
||||
|
||||
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...',
|
||||
|
|
|
@ -1225,10 +1225,6 @@ define([
|
|||
appHeader.setDocumentCaption(me.api.asc_getDocumentName());
|
||||
me.updateWindowTitle(true);
|
||||
|
||||
value = Common.localStorage.getBool("de-settings-inputmode");
|
||||
Common.Utils.InternalSettings.set("de-settings-inputmode", value);
|
||||
me.api.SetTextBoxInputMode(value);
|
||||
|
||||
value = Common.localStorage.getBool("de-settings-show-alt-hints", Common.Utils.isMac ? false : true);
|
||||
Common.Utils.InternalSettings.set("de-settings-show-alt-hints", value);
|
||||
|
||||
|
@ -1262,7 +1258,7 @@ define([
|
|||
|
||||
|
||||
leftmenuController.getView('LeftMenu').getMenu('file').loadDocument({doc:me.document});
|
||||
leftmenuController.setMode(me.appOptions).createDelayedElements().setApi(me.api);
|
||||
leftmenuController.createDelayedElements().setApi(me.api);
|
||||
|
||||
navigationController.setMode(me.appOptions).setApi(me.api);
|
||||
|
||||
|
@ -1571,7 +1567,7 @@ define([
|
|||
this.appOptions.canRename && appHeader.setCanRename(true);
|
||||
this.appOptions.canBrandingExt = params.asc_getCanBranding() && (typeof this.editorConfig.customization == 'object' || this.editorConfig.plugins);
|
||||
this.getApplication().getController('Common.Controllers.Plugins').setMode(this.appOptions, this.api);
|
||||
this.appOptions.canBrandingExt && this.editorConfig.customization && Common.UI.LayoutManager.init(this.editorConfig.customization.layout);
|
||||
this.editorConfig.customization && Common.UI.LayoutManager.init(this.editorConfig.customization.layout, this.appOptions.canBrandingExt);
|
||||
this.editorConfig.customization && Common.UI.FeaturesManager.init(this.editorConfig.customization.features, this.appOptions.canBrandingExt);
|
||||
|
||||
if (this.appOptions.canComments)
|
||||
|
@ -1661,12 +1657,16 @@ define([
|
|||
viewport = app.getController('Viewport').getView('Viewport'),
|
||||
statusbarView = app.getController('Statusbar').getView('Statusbar'),
|
||||
documentHolder = app.getController('DocumentHolder'),
|
||||
toolbarController = app.getController('Toolbar');
|
||||
toolbarController = app.getController('Toolbar'),
|
||||
leftMenu = app.getController('LeftMenu');
|
||||
|
||||
viewport && viewport.setMode(this.appOptions);
|
||||
statusbarView && statusbarView.setMode(this.appOptions);
|
||||
toolbarController.setMode(this.appOptions);
|
||||
documentHolder.setMode(this.appOptions);
|
||||
leftMenu.setMode(this.appOptions);
|
||||
|
||||
viewport.applyCommonMode();
|
||||
|
||||
this.api.asc_registerCallback('asc_onSendThemeColors', _.bind(this.onSendThemeColors, this));
|
||||
this.api.asc_registerCallback('asc_onDownloadUrl', _.bind(this.onDownloadUrl, this));
|
||||
|
|
|
@ -65,6 +65,9 @@ define([
|
|||
this.addListeners({
|
||||
'RightMenu': {
|
||||
'rightmenuclick': this.onRightMenuClick
|
||||
},
|
||||
'ViewTab': {
|
||||
'rightmenu:hide': _.bind(this.onRightMenuHide, this)
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -491,6 +494,17 @@ define([
|
|||
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);
|
||||
}
|
||||
});
|
||||
});
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
@ -338,9 +338,6 @@ define([
|
|||
'<tr class="edit">',
|
||||
'<td colspan="2"><span id="fms-chb-align-guides"></span></td>',
|
||||
'</tr>',
|
||||
'<tr class="edit">',
|
||||
'<td colspan="2"><div id="fms-chb-input-mode"></div></td>',
|
||||
'</tr>',
|
||||
'<tr>',
|
||||
'<td colspan="2"><div id="fms-chb-use-alt-key"></div></td>',
|
||||
'</tr>',
|
||||
|
@ -398,14 +395,6 @@ define([
|
|||
var me = this;
|
||||
var $markup = $(this.template({scope: this}));
|
||||
|
||||
this.chInputMode = new Common.UI.CheckBox({
|
||||
el: $markup.findById('#fms-chb-input-mode'),
|
||||
labelText: this.txtHieroglyphs,
|
||||
dataHint: '2',
|
||||
dataHintDirection: 'left',
|
||||
dataHintOffset: 'small'
|
||||
});
|
||||
|
||||
this.chUseAltKey = new Common.UI.CheckBox({
|
||||
el: $markup.findById('#fms-chb-use-alt-key'),
|
||||
labelText: Common.Utils.isMac ? this.txtUseOptionKey : this.txtUseAltKey,
|
||||
|
@ -800,8 +789,6 @@ define([
|
|||
},
|
||||
|
||||
updateSettings: function() {
|
||||
this.chInputMode.setValue(Common.Utils.InternalSettings.get("de-settings-inputmode"));
|
||||
|
||||
this.chUseAltKey.setValue(Common.Utils.InternalSettings.get("de-settings-show-alt-hints"));
|
||||
|
||||
var value = Common.Utils.InternalSettings.get("de-settings-zoom");
|
||||
|
@ -886,7 +873,6 @@ define([
|
|||
Common.UI.Themes.setTheme(this.cmbTheme.getValue());
|
||||
if (!this.chDarkMode.isDisabled() && (this.chDarkMode.isChecked() !== Common.UI.Themes.isContentThemeDark()))
|
||||
Common.UI.Themes.toggleContentTheme();
|
||||
Common.localStorage.setItem("de-settings-inputmode", this.chInputMode.isChecked() ? 1 : 0);
|
||||
Common.localStorage.setItem("de-settings-show-alt-hints", this.chUseAltKey.isChecked() ? 1 : 0);
|
||||
Common.Utils.InternalSettings.set("de-settings-show-alt-hints", Common.localStorage.getBool("de-settings-show-alt-hints"));
|
||||
Common.localStorage.setItem("de-settings-zoom", this.cmbZoom.getValue());
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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;
|
||||
},
|
||||
|
||||
|
|
|
@ -82,6 +82,14 @@ define([
|
|||
'<span class="btn-slot text" id="slot-chk-statusbar"></span>' +
|
||||
'</div>' +
|
||||
'</div>' +
|
||||
'<div class="group small">' +
|
||||
'<div class="elset">' +
|
||||
'<span class="btn-slot text" id="slot-chk-leftmenu"></span>' +
|
||||
'</div>' +
|
||||
'<div class="elset">' +
|
||||
'<span class="btn-slot text" id="slot-chk-rightmenu"></span>' +
|
||||
'</div>' +
|
||||
'</div>' +
|
||||
'<div class="separator long separator-rulers"></div>' +
|
||||
'<div class="group small">' +
|
||||
'<div class="elset">' +
|
||||
|
@ -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 || {}));
|
||||
});
|
|
@ -154,9 +154,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) {
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -1329,6 +1329,7 @@
|
|||
"DE.Views.CellsAddDialog.textRow": "Files",
|
||||
"DE.Views.CellsAddDialog.textTitle": "Insereix diversos",
|
||||
"DE.Views.CellsAddDialog.textUp": "Per damunt del cursor",
|
||||
"DE.Views.ChartSettings.text3dRotation": "Rotació 3D",
|
||||
"DE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada",
|
||||
"DE.Views.ChartSettings.textChartType": "Canvia el tipus de gràfic",
|
||||
"DE.Views.ChartSettings.textEditData": "Edita les dades",
|
||||
|
|
|
@ -151,7 +151,7 @@
|
|||
"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-Tranparent Text",
|
||||
"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",
|
||||
|
@ -715,6 +715,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.<br>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",
|
||||
|
@ -804,6 +805,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.<br>Convert now?",
|
||||
"DE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.<br>Please contact our Sales Department to get a quote.",
|
||||
"DE.Controllers.Main.textDisconnect": "Connection is lost",
|
||||
|
@ -824,6 +826,7 @@
|
|||
"DE.Controllers.Main.textStrict": "Strict mode",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.<br>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",
|
||||
|
@ -1092,9 +1095,6 @@
|
|||
"DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>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.<br>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",
|
||||
|
@ -1950,8 +1950,8 @@
|
|||
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistics",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbols",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Words",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Yes",
|
||||
|
@ -3160,6 +3160,8 @@
|
|||
"DE.Views.ViewTab.tipFitToWidth": "Fit to width",
|
||||
"DE.Views.ViewTab.tipHeadings": "Headings",
|
||||
"DE.Views.ViewTab.tipInterfaceTheme": "Interface theme",
|
||||
"DE.Views.ViewTab.textLeftMenu": "Left panel",
|
||||
"DE.Views.ViewTab.textRightMenu": "Right panel",
|
||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
|
||||
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
|
||||
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",
|
||||
|
|
|
@ -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",
|
||||
|
@ -288,6 +447,8 @@
|
|||
"Common.Views.DocumentAccessDialog.textLoading": "Chargement en cours...",
|
||||
"Common.Views.DocumentAccessDialog.textTitle": "Paramètres de partage",
|
||||
"Common.Views.ExternalDiagramEditor.textTitle": "Éditeur de graphique",
|
||||
"Common.Views.ExternalEditor.textClose": "Fermer",
|
||||
"Common.Views.ExternalEditor.textSave": "Enregistrer et quitter",
|
||||
"Common.Views.ExternalMergeEditor.textTitle": "Destinataires de fusion et publipostage",
|
||||
"Common.Views.ExternalOleEditor.textTitle": "Tableur",
|
||||
"Common.Views.Header.labelCoUsersDescr": "Le document est en cours de modification par les utilisateurs suivants :",
|
||||
|
@ -354,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",
|
||||
|
@ -499,9 +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.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",
|
||||
|
@ -552,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.<br>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",
|
||||
|
@ -584,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.<br>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.",
|
||||
|
@ -640,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.<br>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.<br>Veuillez contacter notre Service des Ventes pour obtenir le devis.",
|
||||
"DE.Controllers.Main.textDisconnect": "La connexion est perdue",
|
||||
|
@ -660,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.<br>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",
|
||||
|
@ -1329,17 +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",
|
||||
|
@ -1429,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é. <br>Vous ne pouvez que laisser des commentaires dans ce document.",
|
||||
"DE.Views.DocProtection.txtDocProtectedForms": "Le document est protégé. <br>Vous ne pouvez que remplir les champs de ce document.",
|
||||
"DE.Views.DocProtection.txtDocProtectedTrack": "Le document est protégé. <br>Vous pouvez modifier ce document, mais toutes les modifications seront suivies.",
|
||||
"DE.Views.DocProtection.txtDocProtectedView": "Le document est protégé. <br>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",
|
||||
|
@ -1445,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",
|
||||
|
@ -1457,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",
|
||||
|
@ -1471,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",
|
||||
|
@ -1658,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. <br>Ê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",
|
||||
|
@ -1754,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",
|
||||
|
@ -2067,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",
|
||||
|
@ -2374,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",
|
||||
|
@ -2564,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",
|
||||
|
@ -2704,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",
|
||||
|
@ -2850,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",
|
||||
|
|
|
@ -125,6 +125,11 @@
|
|||
"Common.define.chartData.textScatterSmoothMarker": "Ցրել սահուն գծերով և նշիչներով",
|
||||
"Common.define.chartData.textStock": "Տվյալների տատանում",
|
||||
"Common.define.chartData.textSurface": "Մակերեսային",
|
||||
"Common.define.smartArt.textBalance": "Հաշվեկշիռ",
|
||||
"Common.define.smartArt.textEquation": "Հավասարում",
|
||||
"Common.define.smartArt.textFunnel": "Ձագարաձև",
|
||||
"Common.define.smartArt.textList": "Ցուցակ",
|
||||
"Common.define.smartArt.textOther": "Այլ",
|
||||
"Common.Translation.textMoreButton": "Ավել",
|
||||
"Common.Translation.warnFileLocked": "Դուք չեք կարող խմբագրել այս ֆայլը, քանի որ այն խմբագրվում է մեկ այլ հավելվածում:",
|
||||
"Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն",
|
||||
|
@ -288,6 +293,7 @@
|
|||
"Common.Views.DocumentAccessDialog.textLoading": "Բեռնում...",
|
||||
"Common.Views.DocumentAccessDialog.textTitle": "Համօգտագործման կարգավորումներ",
|
||||
"Common.Views.ExternalDiagramEditor.textTitle": "Գծապատկերի խմբագրիչ",
|
||||
"Common.Views.ExternalEditor.textClose": "Փակել",
|
||||
"Common.Views.ExternalMergeEditor.textTitle": "Փոստի միավորման հաղորդագրություն ստացողներ",
|
||||
"Common.Views.ExternalOleEditor.textTitle": "Աղյուսակաթերթի խմբագիր",
|
||||
"Common.Views.Header.labelCoUsersDescr": "Փաստաթուղթը խմբագրողներ՝",
|
||||
|
@ -354,6 +360,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": "Դնել գաղտնաբառ",
|
||||
|
@ -640,6 +647,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": "Խնդրում ենք նկատի ունենալ,որ ըստ թույլատրագրի պայմանների՝ Դուք իրավունք չունեք փոխելու բեռնման էկրանը։<br>Հարցման համար խնդրում ենք դիմել մեր վաճառքի բաժին։",
|
||||
"DE.Controllers.Main.textDisconnect": "Կապը կորել է",
|
||||
|
@ -660,6 +668,7 @@
|
|||
"DE.Controllers.Main.textStrict": "Խիստ աշխատակարգ",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "Համախմբագրման արագ աշխատակարգում հետարկումն ու վերարկումն անջատված են։<br>«Խիստ աշխատակարգ»-ի սեղմումով անցեք համախմբագրման խիստ աշխատակարգին, որպեսզի նիշքը խմբագրեք առանց այլ օգտատերերի միջամտության և փոփոխումներն ուղարկեք միայն դրանք պահպանելուց հետո։ Կարող եք համախմբագրման աշխատակարգերը փոխել լրացուցիչ կարգավորումների միջոցով։",
|
||||
"DE.Controllers.Main.textTryUndoRedoWarn": "Հետարկումն ու վերարկումն գործառույթներն անջատված են արագ համատեղ խմբագրման ռեժիմի համար:",
|
||||
"DE.Controllers.Main.textUndo": "Հետարկել",
|
||||
"DE.Controllers.Main.titleLicenseExp": "Լիցենզիայի ժամկետը լրացել է",
|
||||
"DE.Controllers.Main.titleServerVersion": "Խմբագրիչը արդիացվել է",
|
||||
"DE.Controllers.Main.titleUpdateVersion": "Տարբերակը փոխվել է",
|
||||
|
@ -1331,12 +1340,16 @@
|
|||
"DE.Views.CellsAddDialog.textUp": "Նշորդի վերևում",
|
||||
"DE.Views.ChartSettings.textAdvanced": "Ցուցադրել լրացուցիչ կարգավորումները",
|
||||
"DE.Views.ChartSettings.textChartType": "Փոխել գծապատկերի տեսակը",
|
||||
"DE.Views.ChartSettings.textDown": "Ներքև",
|
||||
"DE.Views.ChartSettings.textEditData": "Խմբագրել տվյալները",
|
||||
"DE.Views.ChartSettings.textHeight": "Բարձրություն",
|
||||
"DE.Views.ChartSettings.textLeft": "Ձախ",
|
||||
"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": "Տեքստի հետևում",
|
||||
|
@ -1428,6 +1441,8 @@
|
|||
"DE.Views.DateTimeDialog.textLang": "Լեզու",
|
||||
"DE.Views.DateTimeDialog.textUpdate": "Ինքնաբար արդիացնել",
|
||||
"DE.Views.DateTimeDialog.txtTitle": "Ամիս-ամսաթիվ, ժամ",
|
||||
"DE.Views.DocProtection.hintProtectDoc": "Պաշտպանել փաստաթուղթը",
|
||||
"DE.Views.DocProtection.txtProtectDoc": "Պաշտպանել փաստաթուղթը",
|
||||
"DE.Views.DocumentHolder.aboveText": "Վերև",
|
||||
"DE.Views.DocumentHolder.addCommentText": "Ավելացնել մեկնաբանություն",
|
||||
"DE.Views.DocumentHolder.advancedDropCapText": "Սկզբնատառի կարգավորումներ",
|
||||
|
@ -2066,6 +2081,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": "Հետադարձ կապ և աջակցություն",
|
||||
|
@ -2373,6 +2389,13 @@
|
|||
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Սահմանել միայն վերին եզրագիծը",
|
||||
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Ինքնաշխատ",
|
||||
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Առանց եզրագծերի",
|
||||
"DE.Views.ProtectDialog.textComments": "Մեկնաբանություններ",
|
||||
"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.RightMenu.txtChartSettings": "Գծապատկերի կարգավորումներ",
|
||||
"DE.Views.RightMenu.txtFormSettings": "Ձևի կարգավորումներ",
|
||||
"DE.Views.RightMenu.txtHeaderFooterSettings": "Էջագլխի և էջատակի կարգավորումներ",
|
||||
|
@ -2563,6 +2586,7 @@
|
|||
"DE.Views.TableSettings.tipOuter": "Սահմանել միայն արտաքին եզրագիծը",
|
||||
"DE.Views.TableSettings.tipRight": "Սահմանել միայն արտաքին աջ եզրագիծը",
|
||||
"DE.Views.TableSettings.tipTop": "Սահմանել միայն արտաքին վերին եզրագիծը",
|
||||
"DE.Views.TableSettings.txtGroupTable_Custom": "Հարմարեցված",
|
||||
"DE.Views.TableSettings.txtNoBorders": "Առանց եզրագծերի",
|
||||
"DE.Views.TableSettings.txtTable_Accent": "Շեշտ",
|
||||
"DE.Views.TableSettings.txtTable_Colorful": "Գունավոր",
|
||||
|
@ -2703,6 +2727,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": "Տեքստարվեստ",
|
||||
|
|
|
@ -588,6 +588,7 @@
|
|||
"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.<br>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.",
|
||||
|
@ -1447,6 +1448,13 @@
|
|||
"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.<br>Anda hanya bisa menyisipkan komentar pada dokumen ini.",
|
||||
"DE.Views.DocProtection.txtDocProtectedForms": "Dokumen terproteksi.<br>Anda hanya bisa mengisi formulir pada dokumen ini.",
|
||||
"DE.Views.DocProtection.txtDocProtectedTrack": "Dokumen terproteksi.<br>Anda dapat menyunting dokumen ini, tapi semua perubahan akan dilacak.",
|
||||
"DE.Views.DocProtection.txtDocProtectedView": "Dokumen terproteksi.<br>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",
|
||||
|
@ -2401,6 +2409,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",
|
||||
|
@ -2885,6 +2905,7 @@
|
|||
"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",
|
||||
|
@ -2892,6 +2913,7 @@
|
|||
"DE.Views.Toolbar.tipInsertTable": "Sisipkan Tabel",
|
||||
"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",
|
||||
|
|
|
@ -1838,6 +1838,7 @@
|
|||
"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.textDisconnect": "Disconnetti",
|
||||
|
@ -1876,11 +1877,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",
|
||||
|
@ -1897,10 +1900,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",
|
||||
|
|
|
@ -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": "コピーを作成する",
|
||||
|
@ -288,6 +447,8 @@
|
|||
"Common.Views.DocumentAccessDialog.textLoading": "読み込み中...",
|
||||
"Common.Views.DocumentAccessDialog.textTitle": "共有設定",
|
||||
"Common.Views.ExternalDiagramEditor.textTitle": "チャートのエディタ",
|
||||
"Common.Views.ExternalEditor.textClose": "閉じる",
|
||||
"Common.Views.ExternalEditor.textSave": "保存&終了",
|
||||
"Common.Views.ExternalMergeEditor.textTitle": "差し込み印刷の宛先",
|
||||
"Common.Views.ExternalOleEditor.textTitle": "スプレッドシートエディター",
|
||||
"Common.Views.Header.labelCoUsersDescr": "ファイルを編集しているユーザー:",
|
||||
|
@ -354,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": "パスワードの追加",
|
||||
|
@ -499,9 +661,10 @@
|
|||
"Common.Views.SignDialog.tipFontName": "フォント名",
|
||||
"Common.Views.SignDialog.tipFontSize": "フォントのサイズ",
|
||||
"Common.Views.SignSettingsDialog.textAllowComment": "署名ダイアログで署名者がコメントを追加できるようにする",
|
||||
"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": "署名の設定",
|
||||
|
@ -552,6 +715,7 @@
|
|||
"DE.Controllers.LeftMenu.warnReplaceString": "{0} は、置換フィールドに有効な特殊文字ではありません。",
|
||||
"DE.Controllers.Main.applyChangesTextText": "変更の読み込み中...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "変更の読み込み中",
|
||||
"DE.Controllers.Main.confirmMaxChangesSize": "アクションのサイズがサーバーに設定された制限を超えています。<br>「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "変換タイムアウトを超過しました。",
|
||||
"DE.Controllers.Main.criticalErrorExtText": "OKボタンを押すとドキュメントリストに戻ることができます。",
|
||||
"DE.Controllers.Main.criticalErrorTitle": "エラー",
|
||||
|
@ -584,6 +748,7 @@
|
|||
"DE.Controllers.Main.errorMailMergeLoadFile": "ドキュメントの読み込みに失敗しました。別のファイルを選択してください。",
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "結合に失敗しました。",
|
||||
"DE.Controllers.Main.errorNoTOC": "更新する目次がありません。「参考文献」タブから挿入できます",
|
||||
"DE.Controllers.Main.errorPasswordIsNotCorrect": "入力されたパスワードが正しくありません。<br>CAPS LOCKキーがオフになっていることを確認し、大文字を正しく使用するようにしてください。",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "保存に失敗しました",
|
||||
"DE.Controllers.Main.errorServerVersion": "エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。",
|
||||
"DE.Controllers.Main.errorSessionAbsolute": "ドキュメント編集セッションが終了しました。 ページを再度読み込みしてください。",
|
||||
|
@ -640,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形式に変換します。<br>今すぐ変換しますか?",
|
||||
"DE.Controllers.Main.textCustomLoader": "ライセンス条項により、ローダーを変更する権利がないことにご注意ください。<br>見積もりについては、弊社営業部門にお問い合わせください。",
|
||||
"DE.Controllers.Main.textDisconnect": "接続が切断されました",
|
||||
|
@ -660,6 +826,7 @@
|
|||
"DE.Controllers.Main.textStrict": "厳格モード",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "高速共同編集モードでは、元に戻す/やり直し機能は無効になります。<br>「厳格モード」ボタンをクリックすると、他のユーザーの干渉を受けずにファイルを編集し、保存後に変更内容を送信する厳格共同編集モードに切り替わります。共同編集モードの切り替えは、エディタの詳細設定を使用して行うことができます。",
|
||||
"DE.Controllers.Main.textTryUndoRedoWarn": "高速共同編集モードでは、元に戻す/やり直し機能が無効になります。",
|
||||
"DE.Controllers.Main.textUndo": "元に戻す",
|
||||
"DE.Controllers.Main.titleLicenseExp": "ライセンスの有効期限が切れています",
|
||||
"DE.Controllers.Main.titleServerVersion": "編集者が更新されました",
|
||||
"DE.Controllers.Main.titleUpdateVersion": "バージョンが変更されました",
|
||||
|
@ -1329,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": "テキストに沿って",
|
||||
|
@ -1428,14 +1610,24 @@
|
|||
"DE.Views.DateTimeDialog.textLang": "言語",
|
||||
"DE.Views.DateTimeDialog.textUpdate": "自動的に更新",
|
||||
"DE.Views.DateTimeDialog.txtTitle": "日付&時刻",
|
||||
"DE.Views.DocProtection.hintProtectDoc": "文書を保護する",
|
||||
"DE.Views.DocProtection.txtDocProtectedComment": "文書は保護されています。<br>この文書には、コメントしか挿入できません。",
|
||||
"DE.Views.DocProtection.txtDocProtectedForms": "文書は保護されています。<br>この文書では、フォームにのみ記入することができます。",
|
||||
"DE.Views.DocProtection.txtDocProtectedTrack": "文書は保護されています。<br>この文書を編集することは可能ですが、すべての変更は追跡されます。",
|
||||
"DE.Views.DocProtection.txtDocProtectedView": "ドキュメントが保護されています。<br>このドキュメントは閲覧のみ可能です。",
|
||||
"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": "箇条書きと段落番号",
|
||||
|
@ -1444,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": "表の削除",
|
||||
|
@ -1456,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": "全てを無視する",
|
||||
|
@ -1470,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": "セルの結合",
|
||||
|
@ -1657,6 +1853,7 @@
|
|||
"DE.Views.DocumentHolder.txtUnderbar": "テキストの下のバー",
|
||||
"DE.Views.DocumentHolder.txtUngroup": "グループ化解除",
|
||||
"DE.Views.DocumentHolder.txtWarnUrl": "このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。<br>本当に続けてよろしいですか?",
|
||||
"DE.Views.DocumentHolder.unicodeText": "Unicode",
|
||||
"DE.Views.DocumentHolder.updateStyleText": "%1スタイルの更新",
|
||||
"DE.Views.DocumentHolder.vertAlignText": "垂直方向の配置",
|
||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "罫線と塗りつぶし",
|
||||
|
@ -1753,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": "単語",
|
||||
|
@ -2066,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": "フィードバック&サポート",
|
||||
|
@ -2373,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": "ヘッダーとフッターの設定",
|
||||
|
@ -2563,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": "テーブルの枠線",
|
||||
|
@ -2703,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": "テキストアート",
|
||||
|
@ -2849,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": "差し込み印刷",
|
||||
|
|
|
@ -503,9 +503,9 @@
|
|||
"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.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 Assinante",
|
||||
"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",
|
||||
|
@ -588,6 +588,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.<br>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.",
|
||||
|
@ -940,7 +941,7 @@
|
|||
"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": "<b>Sem ligação</b><br>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",
|
||||
|
@ -1447,6 +1448,13 @@
|
|||
"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.<br>Apenas pode inserir comentários a este documento.",
|
||||
"DE.Views.DocProtection.txtDocProtectedForms": "O documento está protegido.<br>Apenas pode preencher formulários neste documento.",
|
||||
"DE.Views.DocProtection.txtDocProtectedTrack": "O documento está protegido.<br>Pode editar este documento, mas todas as alterações serão rastreadas.",
|
||||
"DE.Views.DocProtection.txtDocProtectedView": "O documento está protegido.<br>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",
|
||||
|
@ -2401,6 +2409,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é",
|
||||
|
@ -2885,6 +2905,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",
|
||||
|
@ -2892,6 +2913,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",
|
||||
|
|
|
@ -288,6 +288,8 @@
|
|||
"Common.Views.DocumentAccessDialog.textLoading": "Carregando...",
|
||||
"Common.Views.DocumentAccessDialog.textTitle": "Configurações de compartilhamento",
|
||||
"Common.Views.ExternalDiagramEditor.textTitle": "Editor de gráfico",
|
||||
"Common.Views.ExternalEditor.textClose": "Fechar",
|
||||
"Common.Views.ExternalEditor.textSave": "Salvar e Sair",
|
||||
"Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recepients",
|
||||
"Common.Views.ExternalOleEditor.textTitle": "Editor de planilhas",
|
||||
"Common.Views.Header.labelCoUsersDescr": "Usuários que estão editando o arquivo:",
|
||||
|
@ -354,6 +356,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",
|
||||
|
@ -499,6 +502,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.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",
|
||||
|
@ -584,6 +588,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. <br> 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.",
|
||||
|
@ -1329,17 +1334,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",
|
||||
|
@ -1429,14 +1448,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.<br>Você só pode inserir comentários neste documento.",
|
||||
"DE.Views.DocProtection.txtDocProtectedForms": "O documento está protegido.<br>Você só pode preencher formulários neste documento.",
|
||||
"DE.Views.DocProtection.txtDocProtectedTrack": "O documento está protegido.<br>Você pode editar este documento, mas todas as alterações serão rastreadas.",
|
||||
"DE.Views.DocProtection.txtDocProtectedView": "O documento está protegido.<br>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",
|
||||
|
@ -1445,6 +1474,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",
|
||||
|
@ -1457,6 +1488,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",
|
||||
|
@ -1471,6 +1503,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",
|
||||
|
@ -1658,6 +1691,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.<br>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",
|
||||
|
@ -2067,6 +2101,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",
|
||||
|
@ -2374,6 +2409,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é",
|
||||
|
@ -2564,12 +2611,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",
|
||||
|
@ -2850,6 +2905,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",
|
||||
|
@ -2857,6 +2913,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",
|
||||
|
|
|
@ -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": "Создать копию",
|
||||
|
@ -556,6 +715,7 @@
|
|||
"DE.Controllers.LeftMenu.warnReplaceString": "{0} нельзя использовать как специальный символ в поле замены.",
|
||||
"DE.Controllers.Main.applyChangesTextText": "Загрузка изменений...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "Загрузка изменений",
|
||||
"DE.Controllers.Main.confirmMaxChangesSize": "Размер внесенных изменений превышает ограничение, установленное для вашего сервера.<br>Нажмите \"Отменить\" для отмены последнего действия или нажмите \"Продолжить\", чтобы сохранить действие локально (потребуется скачать файл или скопировать его содержимое чтобы ничего не потерялось).",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.",
|
||||
"DE.Controllers.Main.criticalErrorExtText": "Нажмите \"OK\", чтобы вернуться к списку документов.",
|
||||
"DE.Controllers.Main.criticalErrorTitle": "Ошибка",
|
||||
|
@ -645,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.<br>Преобразовать сейчас?",
|
||||
"DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
|
||||
"DE.Controllers.Main.textDisconnect": "Соединение потеряно",
|
||||
|
@ -665,6 +826,7 @@
|
|||
"DE.Controllers.Main.textStrict": "Строгий режим",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.<br>Нажмите на кнопку 'Строгий режим' для переключения в Строгий режим совместного редактирования, чтобы редактировать файл без вмешательства других пользователей и отправлять изменения только после того, как вы их сохраните. Переключаться между режимами совместного редактирования можно с помощью Дополнительных параметров редактора.",
|
||||
"DE.Controllers.Main.textTryUndoRedoWarn": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.",
|
||||
"DE.Controllers.Main.textUndo": "Отменить",
|
||||
"DE.Controllers.Main.titleLicenseExp": "Истек срок действия лицензии",
|
||||
"DE.Controllers.Main.titleServerVersion": "Редактор обновлен",
|
||||
"DE.Controllers.Main.titleUpdateVersion": "Версия изменилась",
|
||||
|
@ -1788,8 +1950,8 @@
|
|||
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Статистика",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Символы",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Теги",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Загружен",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Слова",
|
||||
"DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Да",
|
||||
|
@ -2760,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": "Text Art",
|
||||
|
@ -2910,6 +3073,7 @@
|
|||
"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": "Вставить надпись",
|
||||
|
|
|
@ -125,6 +125,9 @@
|
|||
"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",
|
||||
|
@ -181,7 +184,7 @@
|
|||
"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",
|
||||
|
@ -287,6 +290,8 @@
|
|||
"Common.Views.DocumentAccessDialog.textLoading": "Laddar...",
|
||||
"Common.Views.DocumentAccessDialog.textTitle": "Dela inställningar",
|
||||
"Common.Views.ExternalDiagramEditor.textTitle": "Diagram editor",
|
||||
"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",
|
||||
|
@ -352,6 +357,7 @@
|
|||
"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",
|
||||
|
@ -472,7 +478,9 @@
|
|||
"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",
|
||||
|
@ -634,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. <br> Konvertera nu?",
|
||||
"DE.Controllers.Main.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren. <br> Kontakta vår försäljningsavdelning för att få en offert.",
|
||||
"DE.Controllers.Main.textDisconnect": "Anslutningen förlorades",
|
||||
|
@ -653,6 +662,7 @@
|
|||
"DE.Controllers.Main.textStrict": "Strikt läge",
|
||||
"DE.Controllers.Main.textTryUndoRedo": "Ångra/Återställ-funktionerna är inaktiva i snabbt samredigeringsläget.<br>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",
|
||||
|
@ -1323,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",
|
||||
|
@ -1745,6 +1759,7 @@
|
|||
"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",
|
||||
|
@ -2194,6 +2209,7 @@
|
|||
"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",
|
||||
|
@ -2344,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",
|
||||
|
@ -2534,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",
|
||||
|
|
|
@ -125,6 +125,145 @@
|
|||
"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.textTitlePictureLineup": "标题图片排列",
|
||||
"Common.Translation.textMoreButton": "更多",
|
||||
"Common.Translation.warnFileLocked": "您不能编辑此文件,因为它正在另一个应用程序中被编辑。",
|
||||
"Common.Translation.warnFileLockedBtnEdit": "建立副本",
|
||||
|
@ -556,6 +695,7 @@
|
|||
"DE.Controllers.LeftMenu.warnReplaceString": "{0}不是可用于“替换字段”的有效特殊字符。",
|
||||
"DE.Controllers.Main.applyChangesTextText": "载入更改...",
|
||||
"DE.Controllers.Main.applyChangesTitleText": "加载更改",
|
||||
"DE.Controllers.Main.confirmMaxChangesSize": "行动的大小超过了对您服务器设置的限制。<br>按 \"撤消\"取消您的最后一次行动,或按\"继续\"在本地保留该行动(您需要下载文件或复制其内容以确保没有任何损失)。",
|
||||
"DE.Controllers.Main.convertationTimeoutText": "转换超时",
|
||||
"DE.Controllers.Main.criticalErrorExtText": "按“确定”返回该文件列表。",
|
||||
"DE.Controllers.Main.criticalErrorTitle": "错误:",
|
||||
|
@ -588,6 +728,7 @@
|
|||
"DE.Controllers.Main.errorMailMergeLoadFile": "加载文件失败了。请选择另一份文件。",
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "合并失败",
|
||||
"DE.Controllers.Main.errorNoTOC": "没有目录要更新。你可以从引用标签插入一个目录。",
|
||||
"DE.Controllers.Main.errorPasswordIsNotCorrect": "输入的密码不正确。<br> 请检查 CAPS LOCK 键的状态,确认输入密码的大小写正确。",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "保存失败",
|
||||
"DE.Controllers.Main.errorServerVersion": "该编辑版本已经更新。该页面将被重新加载以应用更改。",
|
||||
"DE.Controllers.Main.errorSessionAbsolute": "文档编辑会话已过期。请重新加载页面。",
|
||||
|
@ -644,6 +785,7 @@
|
|||
"DE.Controllers.Main.textClose": "关闭",
|
||||
"DE.Controllers.Main.textCloseTip": "点击关闭提示",
|
||||
"DE.Controllers.Main.textContactUs": "联系销售",
|
||||
"DE.Controllers.Main.textContinue": "继续",
|
||||
"DE.Controllers.Main.textConvertEquation": "这个公式是由一个早期版本的公式编辑器创建的。这个版本现在不受支持了。要想编辑这个公式,你需要将其转换成 Office Math ML 格式.<br>现在转换吗?",
|
||||
"DE.Controllers.Main.textCustomLoader": "请注意,根据许可条款您无权更改加载程序。<br>请联系我们的销售部门获取报价。",
|
||||
"DE.Controllers.Main.textDisconnect": "网络连接失败",
|
||||
|
@ -1447,6 +1589,13 @@
|
|||
"DE.Views.DateTimeDialog.textLang": "语言",
|
||||
"DE.Views.DateTimeDialog.textUpdate": "自动更新",
|
||||
"DE.Views.DateTimeDialog.txtTitle": "日期、时间",
|
||||
"DE.Views.DocProtection.hintProtectDoc": "保护文档",
|
||||
"DE.Views.DocProtection.txtDocProtectedComment": "文件是受保护的。<br>您仅能对这个文件添加评论。",
|
||||
"DE.Views.DocProtection.txtDocProtectedForms": "文件是受保护的。<br>您仅能填写本文件中的字段。",
|
||||
"DE.Views.DocProtection.txtDocProtectedTrack": "文件是受保护的。<br>您可以编辑这个文件,但所做的变化都会被跟踪。",
|
||||
"DE.Views.DocProtection.txtDocProtectedView": "文件是受保护的。<br>您仅能查看这个文件。",
|
||||
"DE.Views.DocProtection.txtDocUnlockDescription": "输入密码以解除文件的保护",
|
||||
"DE.Views.DocProtection.txtProtectDoc": "保护文档",
|
||||
"DE.Views.DocumentHolder.aboveText": "以上",
|
||||
"DE.Views.DocumentHolder.addCommentText": "添加批注",
|
||||
"DE.Views.DocumentHolder.advancedDropCapText": "首字下沉设置",
|
||||
|
@ -1780,6 +1929,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": "字幕",
|
||||
|
@ -2401,6 +2551,16 @@
|
|||
"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.RightMenu.txtChartSettings": "图表设置",
|
||||
"DE.Views.RightMenu.txtFormSettings": "表单设置",
|
||||
"DE.Views.RightMenu.txtHeaderFooterSettings": "页眉和页脚设置",
|
||||
|
@ -2739,6 +2899,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": "艺术字",
|
||||
|
@ -2885,13 +3046,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": "邮件合并",
|
||||
|
|
|
@ -457,8 +457,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.<br>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",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Запампоўванне выявы",
|
||||
"waitText": "Калі ласка, пачакайце...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "Памылка",
|
||||
|
|
|
@ -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",
|
||||
|
@ -61,10 +64,7 @@
|
|||
"textTableSize": "Mida de la taula",
|
||||
"textWithBlueLinks": "Amb enllaços blaus",
|
||||
"textWithPageNumbers": "Amb números de pàgina",
|
||||
"txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\"",
|
||||
"textDone": "Done",
|
||||
"textRecommended": "Recommended",
|
||||
"textRequired": "Required"
|
||||
"txtNotUrl": "Aquest camp hauria de ser un URL amb el format \"http://www.exemple.com\""
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
|
@ -147,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",
|
||||
|
@ -163,8 +164,7 @@
|
|||
"textTryUndoRedo": "S'han desactivat les funcions desfés/refés per al mode de coedició ràpida.",
|
||||
"textUnderline": "Subratllat",
|
||||
"textUsers": "Usuaris",
|
||||
"textWidow": "Control de finestra",
|
||||
"textSharingSettings": "Sharing Settings"
|
||||
"textWidow": "Control de finestra"
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "Sense emplenament"
|
||||
|
@ -184,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",
|
||||
|
@ -204,8 +205,7 @@
|
|||
"textRefreshEntireTable": "Actualitza la taula sencera",
|
||||
"textRefreshPageNumbersOnly": "Actualitza només els números de pàgina",
|
||||
"textRows": "Files",
|
||||
"txtWarnUrl": "Fer clic en aquest enllaç pot ser perjudicial per al dispositiu i les dades. <br>Segur que voleu continuar?",
|
||||
"menuEditLink": "Edit Link"
|
||||
"txtWarnUrl": "Fer clic en aquest enllaç pot ser perjudicial per al dispositiu i les dades. <br>Segur que voleu continuar?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Advertiment",
|
||||
|
@ -238,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",
|
||||
|
@ -247,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",
|
||||
|
@ -319,6 +322,7 @@
|
|||
"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",
|
||||
|
@ -330,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.",
|
||||
|
@ -359,6 +364,7 @@
|
|||
"textTableOfCont": "IDC",
|
||||
"textTableOptions": "Opcions de la taula",
|
||||
"textText": "Text",
|
||||
"textTextWrapping": "Ajustament del text",
|
||||
"textTh": "dj.",
|
||||
"textThrough": "A través",
|
||||
"textTight": "Estret",
|
||||
|
@ -369,14 +375,8 @@
|
|||
"textType": "Tipus",
|
||||
"textWe": "dc.",
|
||||
"textWrap": "Ajustament",
|
||||
"textChangeShape": "Change Shape",
|
||||
"textCustomStyle": "Custom Style",
|
||||
"textDeleteImage": "Delete Image",
|
||||
"textDeleteLink": "Delete Link",
|
||||
"textRecommended": "Recommended",
|
||||
"textRequired": "Required",
|
||||
"textTextWrapping": "Text Wrapping",
|
||||
"textWrappingStyle": "Wrapping Style"
|
||||
"textWrappingStyle": "Estil d'ajustament",
|
||||
"textCustomStyle": "Custom Style"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "S'ha superat el temps de conversió.",
|
||||
|
@ -390,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. <br>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. <br> 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.",
|
||||
|
@ -419,8 +420,7 @@
|
|||
"unknownErrorText": "Error desconegut.",
|
||||
"uploadImageExtMessage": "Format d'imatge desconegut.",
|
||||
"uploadImageFileCountMessage": "No s'ha carregat cap imatge.",
|
||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "S'estan carregant les dades...",
|
||||
|
@ -451,14 +451,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.<br>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.<br>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",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Nahrávání obrázku",
|
||||
"waitText": "Čekejte prosím...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Bild wird hochgeladen",
|
||||
"waitText": "Bitte warten...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "Fehler",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Μεταφόρτωση Εικόνας",
|
||||
"waitText": "Παρακαλούμε, περιμένετε...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "Σφάλμα",
|
||||
|
|
|
@ -425,6 +425,7 @@
|
|||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
"applyChangesTitleText": "Loading Data",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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...",
|
||||
|
@ -451,14 +452,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.<br>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",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Cargando imagen",
|
||||
"waitText": "Por favor, espere...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "Error",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Irudia kargatzen",
|
||||
"waitText": "Mesedez, itxaron...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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",
|
||||
|
|
|
@ -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",
|
||||
|
@ -61,10 +64,7 @@
|
|||
"textTableSize": "Taille du tableau",
|
||||
"textWithBlueLinks": "Avec les liens bleus",
|
||||
"textWithPageNumbers": "Avec les numéros de page",
|
||||
"txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"",
|
||||
"textDone": "Done",
|
||||
"textRecommended": "Recommended",
|
||||
"textRequired": "Required"
|
||||
"txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\""
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
|
@ -147,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",
|
||||
|
@ -163,8 +164,7 @@
|
|||
"textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.",
|
||||
"textUnderline": "Souligné",
|
||||
"textUsers": "Utilisateurs",
|
||||
"textWidow": "Contrôle des veuves",
|
||||
"textSharingSettings": "Sharing Settings"
|
||||
"textWidow": "Contrôle des veuves"
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "Pas de remplissage"
|
||||
|
@ -184,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",
|
||||
|
@ -204,8 +205,7 @@
|
|||
"textRefreshEntireTable": "Actualiser le tableau entier",
|
||||
"textRefreshPageNumbersOnly": "Actualiser les numéros de page uniquement",
|
||||
"textRows": "Lignes",
|
||||
"txtWarnUrl": "Cliquer sur ce lien peut être dangereux pour votre appareil et vos données. <br>Êtes-vous sûr de vouloir continuer ?",
|
||||
"menuEditLink": "Edit Link"
|
||||
"txtWarnUrl": "Cliquer sur ce lien peut être dangereux pour votre appareil et vos données. <br>Êtes-vous sûr de vouloir continuer ?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Avertissement",
|
||||
|
@ -238,6 +238,7 @@
|
|||
"textCancel": "Annuler",
|
||||
"textCellMargins": "Marges de la cellule",
|
||||
"textCentered": "Centré",
|
||||
"textChangeShape": "Changer la forme",
|
||||
"textChart": "Graphique",
|
||||
"textClassic": "Classique",
|
||||
"textClose": "Fermer",
|
||||
|
@ -246,7 +247,10 @@
|
|||
"textCreateTextStyle": "Créer un nouveau style de texte",
|
||||
"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",
|
||||
|
@ -319,6 +323,7 @@
|
|||
"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",
|
||||
|
@ -330,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.",
|
||||
|
@ -359,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é",
|
||||
|
@ -369,14 +376,7 @@
|
|||
"textType": "Type",
|
||||
"textWe": "mer.",
|
||||
"textWrap": "Renvoi à la ligne",
|
||||
"textChangeShape": "Change Shape",
|
||||
"textCustomStyle": "Custom Style",
|
||||
"textDeleteImage": "Delete Image",
|
||||
"textDeleteLink": "Delete Link",
|
||||
"textRecommended": "Recommended",
|
||||
"textRequired": "Required",
|
||||
"textTextWrapping": "Text Wrapping",
|
||||
"textWrappingStyle": "Wrapping Style"
|
||||
"textWrappingStyle": "Style d'habillage"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Délai de conversion expiré.",
|
||||
|
@ -390,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.<br>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.<br>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.",
|
||||
|
@ -419,12 +420,12 @@
|
|||
"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.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo."
|
||||
},
|
||||
"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.<br>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...",
|
||||
|
@ -451,14 +452,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.<br>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",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Cargando imaxe",
|
||||
"waitText": "Agarde...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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",
|
||||
|
|
|
@ -457,8 +457,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.<br>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",
|
||||
|
|
|
@ -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": "Տողեր",
|
||||
|
@ -61,10 +64,7 @@
|
|||
"textTableSize": "Աղյուսակի չափ",
|
||||
"textWithBlueLinks": "Կապույտ հղումներով",
|
||||
"textWithPageNumbers": "Էջի համարներով",
|
||||
"txtNotUrl": "Այս դաշտը պիտի լինի URL հասցե՝ \"http://www.example.com\" ձևաչափով։ ",
|
||||
"textDone": "Done",
|
||||
"textRecommended": "Recommended",
|
||||
"textRequired": "Required"
|
||||
"txtNotUrl": "Այս դաշտը պիտի լինի URL հասցե՝ \"http://www.example.com\" ձևաչափով։ "
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
|
@ -147,6 +147,7 @@
|
|||
"textReviewChange": "Փոփոխումների վերանայում",
|
||||
"textRight": "Հավասարեցնել աջից",
|
||||
"textShape": "Պատկեր",
|
||||
"textSharingSettings": "Համօգտագործման կարգավորումներ",
|
||||
"textShd": "Խորքի գույն",
|
||||
"textSmallCaps": "Փոքրատառեր",
|
||||
"textSpacing": "Միջատարածք",
|
||||
|
@ -163,8 +164,7 @@
|
|||
"textTryUndoRedo": "Հետարկումն ու վերարկումն գործառույթներն անջատված են արագ համատեղ խմբագրման ռեժիմի համար:",
|
||||
"textUnderline": "Ընդգծված",
|
||||
"textUsers": "Օգտատերեր",
|
||||
"textWidow": "Վերջակախ տողի կառավարում",
|
||||
"textSharingSettings": "Sharing Settings"
|
||||
"textWidow": "Վերջակախ տողի կառավարում"
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "Առանց լցման"
|
||||
|
@ -184,6 +184,7 @@
|
|||
"menuDelete": "Ջնջել",
|
||||
"menuDeleteTable": "Ջնջել աղյուսակը",
|
||||
"menuEdit": "Խմբագրել",
|
||||
"menuEditLink": "Խմբագրել հղումը",
|
||||
"menuJoinList": "Միացնել նախորդ ցուցակին",
|
||||
"menuMerge": "Միաձուլել",
|
||||
"menuMore": "Ավել",
|
||||
|
@ -204,8 +205,7 @@
|
|||
"textRefreshEntireTable": "Թարմացրել ամբողջ աղյուսակը",
|
||||
"textRefreshPageNumbersOnly": "Թարմացնել միայն էջերի համարները",
|
||||
"textRows": "Տողեր",
|
||||
"txtWarnUrl": "Այս հղմանը հետևելը կարող է վնասել ձեր սարքավորումն ու տվյալները:<br>Վստա՞հ եք, որ ցանկանում եք շարունակել:",
|
||||
"menuEditLink": "Edit Link"
|
||||
"txtWarnUrl": "Այս հղմանը հետևելը կարող է վնասել ձեր սարքավորումն ու տվյալները:<br>Վստա՞հ եք, որ ցանկանում եք շարունակել:"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Զգուշացում",
|
||||
|
@ -319,6 +319,7 @@
|
|||
"textPictureFromLibrary": "Նկար գրադարանից",
|
||||
"textPictureFromURL": "Նկար URL-ից",
|
||||
"textPt": "կտ",
|
||||
"textRecommended": "Առաջարկվում է",
|
||||
"textRefresh": "Թարմացնել",
|
||||
"textRefreshEntireTable": "Թարմացրել ամբողջ աղյուսակը",
|
||||
"textRefreshPageNumbersOnly": "Թարմացնել միայն էջերի համարները",
|
||||
|
@ -330,6 +331,7 @@
|
|||
"textRepeatAsHeaderRow": "Կրկնել որպես գլխամասի տող",
|
||||
"textReplace": "Փոխարինել",
|
||||
"textReplaceImage": "Փոխարինել նկարը",
|
||||
"textRequired": "Պարտադիր",
|
||||
"textResizeToFitContent": "Չափափոխել ըստ պարունակության",
|
||||
"textRightAlign": "Վերև-աջ հավասարեցում",
|
||||
"textSa": "ՈԱ",
|
||||
|
@ -359,6 +361,7 @@
|
|||
"textTableOfCont": "ԲՑ ",
|
||||
"textTableOptions": "Աղյուսակի ընտրանքներ",
|
||||
"textText": "Տեքստ",
|
||||
"textTextWrapping": "Տեքստի ծալում",
|
||||
"textTh": "Հնգ",
|
||||
"textThrough": "Միջով",
|
||||
"textTight": "Ձիգ",
|
||||
|
@ -369,14 +372,11 @@
|
|||
"textType": "Տեսակ",
|
||||
"textWe": "Չրք",
|
||||
"textWrap": "Ծալում",
|
||||
"textWrappingStyle": "Ծալման ոճ",
|
||||
"textChangeShape": "Change Shape",
|
||||
"textCustomStyle": "Custom Style",
|
||||
"textDeleteImage": "Delete Image",
|
||||
"textDeleteLink": "Delete Link",
|
||||
"textRecommended": "Recommended",
|
||||
"textRequired": "Required",
|
||||
"textTextWrapping": "Text Wrapping",
|
||||
"textWrappingStyle": "Wrapping Style"
|
||||
"textDeleteLink": "Delete Link"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։",
|
||||
|
@ -390,6 +390,7 @@
|
|||
"errorDataEncrypted": "Ընդունվել են գաղտնագրված փոփոխությունները, դրանք չեն կարող վերծանելվել։",
|
||||
"errorDataRange": "Տվյալների սխալ ընդգրկույթ։",
|
||||
"errorDefaultMessage": "Սխալի կոդ՝ %1",
|
||||
"errorDirectUrl": "Խնդրում ենք ստուգել փաստաթղթի հղումը:<br> Այս հղումը պետք է լինի ուղիղ հղում դեպի ներբեռնելու ֆայլը:",
|
||||
"errorEditingDownloadas": "Փաստաթղթի հետ աշխատանքի ընթացքում սխալ է տեղի ունեցել:<br>Ներբեռնեք փաստաթուղթը՝ ֆայլի կրկնօրինակը տեղում պահելու համար:",
|
||||
"errorEmptyTOC": "Սկսել ստեղծել բովանդակության աղյուսակ՝ կիրառելով վերնագրի ոճը ոճերի սրահից ընտրված տեքստում:",
|
||||
"errorFilePassProtect": "Ֆայլը պաշտպանված է գաղտնաբառով և հնարավոր չէ բացել:",
|
||||
|
@ -419,8 +420,7 @@
|
|||
"unknownErrorText": "Անհայտ սխալ։",
|
||||
"uploadImageExtMessage": "Նկարի անհայտ ձևաչափ։",
|
||||
"uploadImageFileCountMessage": "Ոչ մի նկար չի բեռնվել։",
|
||||
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"uploadImageSizeMessage": "Պատկերը չափազանց մեծ է:Առավելագույն չափը 25 ՄԲ է:"
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Տվյալների բեռնում...",
|
||||
|
@ -451,14 +451,14 @@
|
|||
"saveTitleText": "Փաստաթղթի պահպանում",
|
||||
"sendMergeText": "Ձուլման ուղարկում․․․",
|
||||
"sendMergeTitle": "Ձուլման ուղարկում",
|
||||
"textContinue": "Շարունակել",
|
||||
"textLoadingDocument": "Փաստաթղթի բեռնում",
|
||||
"textUndo": "Հետարկել",
|
||||
"txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․",
|
||||
"uploadImageTextText": "Նկարի վերբեռնում...",
|
||||
"uploadImageTitleText": "Նկարի վերբեռնում",
|
||||
"waitText": "Խնդրում ենք սպասել...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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.<br>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": "Սխալ",
|
||||
|
|
|
@ -425,6 +425,7 @@
|
|||
"LongActions": {
|
||||
"applyChangesTextText": "Memuat data...",
|
||||
"applyChangesTitleText": "Memuat Data",
|
||||
"confirmMaxChangesSize": "Ukuran tindakan melebihi batas yang ditetapkan untuk server Anda.<br>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...",
|
||||
|
@ -451,14 +452,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.<br>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",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Caricamento dell'immagine",
|
||||
"waitText": "Attendere prego...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "Errore",
|
||||
|
|
|
@ -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": "行",
|
||||
|
@ -61,10 +64,7 @@
|
|||
"textTableSize": "表のサイズ",
|
||||
"textWithBlueLinks": "ブルーリンク付き",
|
||||
"textWithPageNumbers": "ページ番号付き",
|
||||
"txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。",
|
||||
"textDone": "Done",
|
||||
"textRecommended": "Recommended",
|
||||
"textRequired": "Required"
|
||||
"txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります。"
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
|
@ -147,6 +147,7 @@
|
|||
"textReviewChange": "変更の批評",
|
||||
"textRight": "右揃え",
|
||||
"textShape": "形",
|
||||
"textSharingSettings": "共有設定",
|
||||
"textShd": "背景色",
|
||||
"textSmallCaps": "小型英大文字",
|
||||
"textSpacing": "間隔",
|
||||
|
@ -163,8 +164,7 @@
|
|||
"textTryUndoRedo": "高速で共同な編集モードでは、元に戻す/やり直し機能が無効になります。",
|
||||
"textUnderline": "下線",
|
||||
"textUsers": "ユーザー",
|
||||
"textWidow": "改ページ時 1 行残して段落を区切らない",
|
||||
"textSharingSettings": "Sharing Settings"
|
||||
"textWidow": "改ページ時 1 行残して段落を区切らない"
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "塗りつぶしなし"
|
||||
|
@ -184,6 +184,7 @@
|
|||
"menuDelete": "削除",
|
||||
"menuDeleteTable": "表を削除する",
|
||||
"menuEdit": "編集する",
|
||||
"menuEditLink": "リンクの編集",
|
||||
"menuJoinList": "前のリストに結合する",
|
||||
"menuMerge": "結合",
|
||||
"menuMore": "もっと",
|
||||
|
@ -204,8 +205,7 @@
|
|||
"textRefreshEntireTable": "テーブル全体を更新する",
|
||||
"textRefreshPageNumbersOnly": "ページ番号のみを更新する",
|
||||
"textRows": "行",
|
||||
"txtWarnUrl": "このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。<br>本当に続けてよろしいですか?",
|
||||
"menuEditLink": "Edit Link"
|
||||
"txtWarnUrl": "このリンクをクリックすると、お使いの端末やデータに悪影響を与える可能性があります。<br>本当に続けてよろしいですか?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": " 警告",
|
||||
|
@ -238,6 +238,7 @@
|
|||
"textCancel": "キャンセル",
|
||||
"textCellMargins": "セルの余白",
|
||||
"textCentered": "中央揃え済み",
|
||||
"textChangeShape": "図形の変更",
|
||||
"textChart": "グラフ",
|
||||
"textClassic": "クラシック",
|
||||
"textClose": "閉じる",
|
||||
|
@ -246,7 +247,10 @@
|
|||
"textCreateTextStyle": "新しいテキストスタイルを作成する",
|
||||
"textCurrent": "現在",
|
||||
"textCustomColor": "ユーザー設定の色",
|
||||
"textCustomStyle": "カスタムスタイル",
|
||||
"textDecember": "12月",
|
||||
"textDeleteImage": "画像の削除",
|
||||
"textDeleteLink": "リンクの削除",
|
||||
"textDesign": "デザイン",
|
||||
"textDifferentFirstPage": "先頭ページのみ別指定",
|
||||
"textDifferentOddAndEvenPages": "奇数/偶数ページ別指定",
|
||||
|
@ -319,6 +323,7 @@
|
|||
"textPictureFromLibrary": "ライブラリからのイメージ",
|
||||
"textPictureFromURL": "URLからのイメージ",
|
||||
"textPt": "pt",
|
||||
"textRecommended": "おすすめ",
|
||||
"textRefresh": "更新する",
|
||||
"textRefreshEntireTable": "テーブル全体を更新する",
|
||||
"textRefreshPageNumbersOnly": "ページ番号のみを更新する",
|
||||
|
@ -330,6 +335,7 @@
|
|||
"textRepeatAsHeaderRow": "ヘッダー行として繰り返す",
|
||||
"textReplace": "置換する",
|
||||
"textReplaceImage": "イメージを置換する",
|
||||
"textRequired": "必須",
|
||||
"textResizeToFitContent": "内容に合わせてサイズを変更する",
|
||||
"textRightAlign": "右揃え",
|
||||
"textSa": "土",
|
||||
|
@ -359,6 +365,7 @@
|
|||
"textTableOfCont": "目次",
|
||||
"textTableOptions": "表の設定",
|
||||
"textText": "テキスト",
|
||||
"textTextWrapping": "テキストの折り返し\t",
|
||||
"textTh": "木",
|
||||
"textThrough": "スルー",
|
||||
"textTight": "外周",
|
||||
|
@ -369,14 +376,7 @@
|
|||
"textType": "タイプ",
|
||||
"textWe": "水",
|
||||
"textWrap": "折り返す",
|
||||
"textChangeShape": "Change Shape",
|
||||
"textCustomStyle": "Custom Style",
|
||||
"textDeleteImage": "Delete Image",
|
||||
"textDeleteLink": "Delete Link",
|
||||
"textRecommended": "Recommended",
|
||||
"textRequired": "Required",
|
||||
"textTextWrapping": "Text Wrapping",
|
||||
"textWrappingStyle": "Wrapping Style"
|
||||
"textWrappingStyle": "折り返しの種類"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "変換のタイムアウトを超過しました。",
|
||||
|
@ -390,6 +390,7 @@
|
|||
"errorDataEncrypted": "暗号化された変更を受け取りましたが、解読できません。",
|
||||
"errorDataRange": "データの範囲は正しくありません。",
|
||||
"errorDefaultMessage": "エラー コード:%1",
|
||||
"errorDirectUrl": "ドキュメントへのリンクを確認してください。<br>このリンクは、ダウンロード用のファイルへの直接リンクである必要があります。",
|
||||
"errorEditingDownloadas": "文書を操作中にエラーがありました.<br>ファイルのバックアップコピーを保存するように文書をダウンロードしてください。",
|
||||
"errorEmptyTOC": "スタイルギャラリーからの見出しスタイルを選択したテキストに適用して、目次の作成を開始します",
|
||||
"errorFilePassProtect": "ファイルはパスワードで保護されており、開けませんでした。",
|
||||
|
@ -419,12 +420,12 @@
|
|||
"unknownErrorText": "不明なエラー",
|
||||
"uploadImageExtMessage": "不明なイメージの形式",
|
||||
"uploadImageFileCountMessage": "アップロードしたイメージがない",
|
||||
"uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"uploadImageSizeMessage": "イメージのサイズの上限が超えさせました。サイズの上限が25MB。"
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "データの読み込み中...",
|
||||
"applyChangesTitleText": "データの読み込み中",
|
||||
"confirmMaxChangesSize": "アクションのサイズがサーバーに設定された制限を超えています。<br>「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。",
|
||||
"downloadMergeText": "ダウンロード中...",
|
||||
"downloadMergeTitle": "ダウンロード中",
|
||||
"downloadTextText": "文書のダウンロード中...",
|
||||
|
@ -451,14 +452,13 @@
|
|||
"saveTitleText": "文書を保存中",
|
||||
"sendMergeText": "結合の結果の送信中...",
|
||||
"sendMergeTitle": "結合の結果の送信中",
|
||||
"textContinue": "続ける",
|
||||
"textLoadingDocument": "文書の読み込み中",
|
||||
"textUndo": "元に戻す",
|
||||
"txtEditingMode": "編集モードを設定します...",
|
||||
"uploadImageTextText": "イメージのアップロード中...",
|
||||
"uploadImageTitleText": "イメージのアップロード中",
|
||||
"waitText": "少々お待ちください...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "エラー",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "이미지 업로드 중",
|
||||
"waitText": "잠시만 기다려주세요...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "오류",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ",
|
||||
"waitText": "ກະລຸນາລໍຖ້າ...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "ຂໍ້ຜິດພາດ",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Imej dimuat naik",
|
||||
"waitText": "Sila, tunggu…",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Afbeelding wordt geüpload",
|
||||
"waitText": "Een moment geduld...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "A carregar imagem",
|
||||
"waitText": "Aguarde...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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",
|
||||
|
|
|
@ -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",
|
||||
|
@ -61,10 +64,7 @@
|
|||
"textTableSize": "Tamanho da tabela",
|
||||
"textWithBlueLinks": "Com links azuis",
|
||||
"textWithPageNumbers": "Com números de página",
|
||||
"txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"",
|
||||
"textDone": "Done",
|
||||
"textRecommended": "Recommended",
|
||||
"textRequired": "Required"
|
||||
"txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\""
|
||||
},
|
||||
"Common": {
|
||||
"Collaboration": {
|
||||
|
@ -147,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",
|
||||
|
@ -163,8 +164,7 @@
|
|||
"textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido",
|
||||
"textUnderline": "Sublinhado",
|
||||
"textUsers": "Usuários",
|
||||
"textWidow": "Controle de linhas órfãs/viúvas.",
|
||||
"textSharingSettings": "Sharing Settings"
|
||||
"textWidow": "Controle de linhas órfãs/viúvas."
|
||||
},
|
||||
"HighlightColorPalette": {
|
||||
"textNoFill": "Sem preenchimento"
|
||||
|
@ -184,6 +184,7 @@
|
|||
"menuDelete": "Excluir",
|
||||
"menuDeleteTable": "Excluir tabela",
|
||||
"menuEdit": "Editar",
|
||||
"menuEditLink": "Editar Link",
|
||||
"menuJoinList": "Junta-se à lista anterior",
|
||||
"menuMerge": "Mesclar",
|
||||
"menuMore": "Mais",
|
||||
|
@ -204,8 +205,7 @@
|
|||
"textRefreshEntireTable": "Atualizar tabela inteira",
|
||||
"textRefreshPageNumbersOnly": "Atualizar apenas números de página",
|
||||
"textRows": "Linhas",
|
||||
"txtWarnUrl": "Clicar neste link pode ser prejudicial ao seu dispositivo e dados.<br>Você tem certeza de que quer continuar?",
|
||||
"menuEditLink": "Edit Link"
|
||||
"txtWarnUrl": "Clicar neste link pode ser prejudicial ao seu dispositivo e dados.<br>Você tem certeza de que quer continuar?"
|
||||
},
|
||||
"Edit": {
|
||||
"notcriticalErrorTitle": "Aviso",
|
||||
|
@ -238,6 +238,7 @@
|
|||
"textCancel": "Cancelar",
|
||||
"textCellMargins": "Margens da célula",
|
||||
"textCentered": "Centralizado",
|
||||
"textChangeShape": "Mudar forma",
|
||||
"textChart": "Gráfico",
|
||||
"textClassic": "Clássico",
|
||||
"textClose": "Fechar",
|
||||
|
@ -246,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",
|
||||
|
@ -319,6 +323,7 @@
|
|||
"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",
|
||||
|
@ -330,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",
|
||||
|
@ -359,6 +365,7 @@
|
|||
"textTableOfCont": "Índice",
|
||||
"textTableOptions": "Opções de tabela",
|
||||
"textText": "Тexto",
|
||||
"textTextWrapping": "Disposição do texto",
|
||||
"textTh": "Qui.",
|
||||
"textThrough": "Através",
|
||||
"textTight": "Justo",
|
||||
|
@ -369,14 +376,7 @@
|
|||
"textType": "Tipo",
|
||||
"textWe": "Qua",
|
||||
"textWrap": "Encapsulamento",
|
||||
"textChangeShape": "Change Shape",
|
||||
"textCustomStyle": "Custom Style",
|
||||
"textDeleteImage": "Delete Image",
|
||||
"textDeleteLink": "Delete Link",
|
||||
"textRecommended": "Recommended",
|
||||
"textRequired": "Required",
|
||||
"textTextWrapping": "Text Wrapping",
|
||||
"textWrappingStyle": "Wrapping Style"
|
||||
"textWrappingStyle": "Estilo da quebra"
|
||||
},
|
||||
"Error": {
|
||||
"convertationTimeoutText": "Tempo limite de conversão excedido.",
|
||||
|
@ -390,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.<br>Este link deve ser o link direto para baixar o arquivo.",
|
||||
"errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento. <br> 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.",
|
||||
|
@ -419,8 +420,7 @@
|
|||
"unknownErrorText": "Erro desconhecido.",
|
||||
"uploadImageExtMessage": "Formato de imagem desconhecido.",
|
||||
"uploadImageFileCountMessage": "Sem imagens carregadas.",
|
||||
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.",
|
||||
"errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading."
|
||||
"uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB."
|
||||
},
|
||||
"LongActions": {
|
||||
"applyChangesTextText": "Carregando dados...",
|
||||
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Carregando imagem",
|
||||
"waitText": "Por favor, aguarde...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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",
|
||||
|
|
|
@ -457,8 +457,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.<br>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",
|
||||
|
|
|
@ -425,6 +425,7 @@
|
|||
"LongActions": {
|
||||
"applyChangesTextText": "Загрузка данных...",
|
||||
"applyChangesTitleText": "Загрузка данных",
|
||||
"confirmMaxChangesSize": "Размер внесенных изменений превышает ограничение, установленное для вашего сервера.<br>Нажмите \"Отменить\" для отмены последнего действия или нажмите \"Продолжить\", чтобы сохранить действие локально (потребуется скачать файл или скопировать его содержимое чтобы ничего не потерялось).",
|
||||
"downloadMergeText": "Загрузка...",
|
||||
"downloadMergeTitle": "Загрузка",
|
||||
"downloadTextText": "Загрузка документа...",
|
||||
|
@ -451,14 +452,13 @@
|
|||
"saveTitleText": "Сохранение документа",
|
||||
"sendMergeText": "Отправка результатов слияния...",
|
||||
"sendMergeTitle": "Отправка результатов слияния",
|
||||
"textContinue": "Продолжить",
|
||||
"textLoadingDocument": "Загрузка документа",
|
||||
"textUndo": "Отменить",
|
||||
"txtEditingMode": "Установка режима редактирования...",
|
||||
"uploadImageTextText": "Загрузка рисунка...",
|
||||
"uploadImageTitleText": "Загрузка рисунка",
|
||||
"waitText": "Пожалуйста, подождите...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "Ошибка",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Nahrávanie obrázku",
|
||||
"waitText": "Čakajte, prosím...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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",
|
||||
|
|
|
@ -653,6 +653,7 @@
|
|||
"LongActions": {
|
||||
"applyChangesTextText": "Loading data...",
|
||||
"applyChangesTitleText": "Loading Data",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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...",
|
||||
|
@ -679,14 +680,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.<br>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.",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Resim Yükleniyor",
|
||||
"waitText": "Lütfen bekleyin...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "Завантаження зображення",
|
||||
"waitText": "Будь ласка, зачекайте...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "Помилка",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "上傳圖片中",
|
||||
"waitText": "請耐心等待...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "錯誤",
|
||||
|
|
|
@ -457,8 +457,8 @@
|
|||
"uploadImageTitleText": "图片上传中",
|
||||
"waitText": "请稍候...",
|
||||
"confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>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": "错误",
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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) => {
|
||||
|
@ -256,8 +256,6 @@ class MainController extends Component {
|
|||
|
||||
this.updateWindowTitle(true);
|
||||
|
||||
this.api.SetTextBoxInputMode(LocalStorage.getBool("de-settings-inputmode"));
|
||||
|
||||
value = LocalStorage.getBool("de-mobile-no-characters");
|
||||
appSettings.changeNoCharacters(value);
|
||||
this.api.put_ShowParaMarks(value);
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -3,7 +3,7 @@ import { inject, observer } from 'mobx-react';
|
|||
import { f7 } from 'framework7-react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import ToolbarView from "../view/Toolbar";
|
||||
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();
|
||||
|
|
|
@ -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';
|
||||
|
||||
|
|