Merge branch 'develop' into feature/remove-comments
This commit is contained in:
commit
f0985cdd80
54
Readme.md
54
Readme.md
|
@ -1,25 +1,29 @@
|
||||||
[](https://www.gnu.org/licenses/agpl-3.0.en.html)
|
[](https://www.gnu.org/licenses/agpl-3.0.en.html)
|
||||||
|
|
||||||
## web-apps
|
## web-apps
|
||||||
|
|
||||||
The frontend for [ONLYOFFICE Document Server][2]. Builds the program interface and allows the user create, edit, save and export text, spreadsheet and presentation documents using the common interface of a document editor.
|
The frontend for [ONLYOFFICE Document Server][2]. Builds the program interface and allows the user create, edit, save and export text, spreadsheet and presentation documents using the common interface of a document editor.
|
||||||
|
|
||||||
## Project Information
|
## Previos versions
|
||||||
|
|
||||||
Official website: [http://www.onlyoffice.org](http://onlyoffice.org "http://www.onlyoffice.org")
|
Until 2019-10-23 the repository was called web-apps-pro
|
||||||
|
|
||||||
Code repository: [https://github.com/ONLYOFFICE/web-apps](https://github.com/ONLYOFFICE/web-apps "https://github.com/ONLYOFFICE/web-apps")
|
## Project Information
|
||||||
|
|
||||||
SaaS version: [http://www.onlyoffice.com](http://www.onlyoffice.com "http://www.onlyoffice.com")
|
Official website: [http://www.onlyoffice.org](http://onlyoffice.org "http://www.onlyoffice.org")
|
||||||
|
|
||||||
## User Feedback and Support
|
Code repository: [https://github.com/ONLYOFFICE/web-apps](https://github.com/ONLYOFFICE/web-apps "https://github.com/ONLYOFFICE/web-apps")
|
||||||
|
|
||||||
If you have any problems with or questions about [ONLYOFFICE Document Server][2], please visit our official forum to find answers to your questions: [dev.onlyoffice.org][1] or you can ask and answer ONLYOFFICE development questions on [Stack Overflow][3].
|
SaaS version: [http://www.onlyoffice.com](http://www.onlyoffice.com "http://www.onlyoffice.com")
|
||||||
|
|
||||||
[1]: http://dev.onlyoffice.org
|
## User Feedback and Support
|
||||||
[2]: https://github.com/ONLYOFFICE/DocumentServer
|
|
||||||
[3]: http://stackoverflow.com/questions/tagged/onlyoffice
|
If you have any problems with or questions about [ONLYOFFICE Document Server][2], please visit our official forum to find answers to your questions: [dev.onlyoffice.org][1] or you can ask and answer ONLYOFFICE development questions on [Stack Overflow][3].
|
||||||
|
|
||||||
## License
|
[1]: http://dev.onlyoffice.org
|
||||||
|
[2]: https://github.com/ONLYOFFICE/DocumentServer
|
||||||
web-apps is released under an GNU AGPL v3.0 license. See the LICENSE file for more information.
|
[3]: http://stackoverflow.com/questions/tagged/onlyoffice
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
web-apps is released under an GNU AGPL v3.0 license. See the LICENSE file for more information.
|
||||||
|
|
|
@ -129,7 +129,8 @@
|
||||||
toolbarNoTabs: false,
|
toolbarNoTabs: false,
|
||||||
toolbarHideFileName: false,
|
toolbarHideFileName: false,
|
||||||
reviewDisplay: 'original',
|
reviewDisplay: 'original',
|
||||||
spellcheck: true
|
spellcheck: true,
|
||||||
|
compatibleFeatures: false
|
||||||
},
|
},
|
||||||
plugins: {
|
plugins: {
|
||||||
autostart: ['asc.{FFE1F462-1EA2-4391-990D-4CC84940B754}'],
|
autostart: ['asc.{FFE1F462-1EA2-4391-990D-4CC84940B754}'],
|
||||||
|
|
|
@ -113,6 +113,8 @@ define([
|
||||||
this.bounds.push(me.bar.tabs[i].$el.get(0).getBoundingClientRect());
|
this.bounds.push(me.bar.tabs[i].$el.get(0).getBoundingClientRect());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
me.lastTabRight = me.bounds[length - 1].right;
|
||||||
|
|
||||||
me.tabBarLeft = me.bounds[0].left;
|
me.tabBarLeft = me.bounds[0].left;
|
||||||
me.tabBarRight = me.bounds[length - 1].right;
|
me.tabBarRight = me.bounds[length - 1].right;
|
||||||
me.tabBarRight = Math.min(me.tabBarRight, barBounds.right - 1);
|
me.tabBarRight = Math.min(me.tabBarRight, barBounds.right - 1);
|
||||||
|
@ -322,17 +324,18 @@ define([
|
||||||
function dragMove (event) {
|
function dragMove (event) {
|
||||||
if (!_.isUndefined(me.drag)) {
|
if (!_.isUndefined(me.drag)) {
|
||||||
me.drag.moveX = event.clientX*Common.Utils.zoom();
|
me.drag.moveX = event.clientX*Common.Utils.zoom();
|
||||||
if (me.drag.moveX > me.tabBarRight) {
|
if (me.drag.moveX < me.tabBarRight && me.drag.moveX > me.tabBarLeft) {
|
||||||
|
var name = $(event.target).parent().data('label'),
|
||||||
|
currentTab = _.findIndex(bar.tabs, {label: name});
|
||||||
|
if (currentTab !== -1 && (me.bounds[currentTab].left - me.scrollLeft >= me.tabBarLeft)) {
|
||||||
|
me.drag.place = currentTab;
|
||||||
|
$(event.target).parent().parent().find('li.mousemove').removeClass('mousemove right');
|
||||||
|
$(event.target).parent().addClass('mousemove');
|
||||||
|
}
|
||||||
|
} else if ((me.drag.moveX > me.lastTabRight - me.scrollLeft) && (me.tabBarRight >= me.lastTabRight - me.scrollLeft)) { //move to end of list, right border of the right tab is visible
|
||||||
|
bar.$el.find('li.mousemove').removeClass('mousemove right');
|
||||||
bar.tabs[bar.tabs.length - 1].$el.addClass('mousemove right');
|
bar.tabs[bar.tabs.length - 1].$el.addClass('mousemove right');
|
||||||
me.drag.place = bar.tabs.length;
|
me.drag.place = bar.tabs.length;
|
||||||
} else {
|
|
||||||
$(event.target).parent().parent().find('li.mousemove').removeClass('mousemove right');
|
|
||||||
$(event.target).parent().addClass('mousemove');
|
|
||||||
var name = event.target.parentElement.dataset.label,
|
|
||||||
currentTab = _.findWhere(bar.tabs, {label: name});
|
|
||||||
if (!_.isUndefined(currentTab)) {
|
|
||||||
me.drag.place = currentTab.sheetindex;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -357,7 +360,9 @@ define([
|
||||||
click: $.proxy(function (event) {
|
click: $.proxy(function (event) {
|
||||||
if (!tab.disabled) {
|
if (!tab.disabled) {
|
||||||
if (event.ctrlKey || event.metaKey) {
|
if (event.ctrlKey || event.metaKey) {
|
||||||
tab.changeState(true);
|
if (!tab.isActive()) {
|
||||||
|
tab.changeState(true);
|
||||||
|
}
|
||||||
} else if (event.shiftKey) {
|
} else if (event.shiftKey) {
|
||||||
this.bar.$el.find('ul > li.selected').removeClass('selected');
|
this.bar.$el.find('ul > li.selected').removeClass('selected');
|
||||||
this.bar.selectTabs.length = 0;
|
this.bar.selectTabs.length = 0;
|
||||||
|
|
|
@ -559,9 +559,13 @@ define([
|
||||||
add = $('.new-comment-ct', this.el),
|
add = $('.new-comment-ct', this.el),
|
||||||
to = $('.add-link-ct', this.el),
|
to = $('.add-link-ct', this.el),
|
||||||
msgs = $('.messages-ct', this.el);
|
msgs = $('.messages-ct', this.el);
|
||||||
msgs.toggleClass('stretch', !mode.canComments);
|
msgs.toggleClass('stretch', !mode.canComments || mode.compatibleFeatures);
|
||||||
if (!mode.canComments) {
|
if (!mode.canComments || mode.compatibleFeatures) {
|
||||||
add.hide(); to.hide();
|
if (mode.compatibleFeatures) {
|
||||||
|
add.remove(); to.remove();
|
||||||
|
} else {
|
||||||
|
add.hide(); to.hide();
|
||||||
|
}
|
||||||
this.layout.changeLayout([{el: msgs[0], rely: false, stretch: true}]);
|
this.layout.changeLayout([{el: msgs[0], rely: false, stretch: true}]);
|
||||||
} else {
|
} else {
|
||||||
var container = $('#comments-box', this.el),
|
var container = $('#comments-box', this.el),
|
||||||
|
|
|
@ -183,7 +183,7 @@ define([
|
||||||
|
|
||||||
function onLostEditRights() {
|
function onLostEditRights() {
|
||||||
_readonlyRights = true;
|
_readonlyRights = true;
|
||||||
$panelUsers.find('#tlb-change-rights').hide();
|
$panelUsers && $panelUsers.find('#tlb-change-rights').hide();
|
||||||
$btnUsers && !$btnUsers.menu && $panelUsers.hide();
|
$btnUsers && !$btnUsers.menu && $panelUsers.hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,8 +47,7 @@ define([
|
||||||
width: 330,
|
width: 330,
|
||||||
header: false,
|
header: false,
|
||||||
cls: 'modal-dlg',
|
cls: 'modal-dlg',
|
||||||
buttons: ['ok', 'cancel'],
|
buttons: ['ok', 'cancel']
|
||||||
footerCls: 'right'
|
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
|
|
|
@ -52,8 +52,7 @@ define([
|
||||||
header: false,
|
header: false,
|
||||||
width: 350,
|
width: 350,
|
||||||
cls: 'modal-dlg',
|
cls: 'modal-dlg',
|
||||||
buttons: ['ok', 'cancel'],
|
buttons: ['ok', 'cancel']
|
||||||
footerCls: 'right'
|
|
||||||
},
|
},
|
||||||
|
|
||||||
template: '<div class="box">' +
|
template: '<div class="box">' +
|
||||||
|
|
|
@ -48,8 +48,7 @@ define([
|
||||||
header: false,
|
header: false,
|
||||||
cls: 'modal-dlg',
|
cls: 'modal-dlg',
|
||||||
filename: '',
|
filename: '',
|
||||||
buttons: ['ok', 'cancel'],
|
buttons: ['ok', 'cancel']
|
||||||
footerCls: 'right'
|
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Binary file not shown.
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
|
@ -399,6 +399,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.dropdown-menu {
|
||||||
|
li.disabled {
|
||||||
|
opacity: 0.65;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@color-gray: @secondary;
|
@color-gray: @secondary;
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"DE.ApplicationController.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
"DE.ApplicationController.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.",
|
"DE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.",
|
||||||
|
"DE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
|
||||||
"DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
"DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
"DE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
||||||
"DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
|
"DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"DE.ApplicationController.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
"DE.ApplicationController.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Codice errore: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Codice errore: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
|
"DE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
|
||||||
|
"DE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
|
||||||
"DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
"DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
"DE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
||||||
"DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
"DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"DE.ApplicationController.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"DE.ApplicationController.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"DE.ApplicationController.errorDefaultMessage": "Код ошибки: %1",
|
"DE.ApplicationController.errorDefaultMessage": "Код ошибки: %1",
|
||||||
"DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
"DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
||||||
|
"DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
|
||||||
"DE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.",
|
"DE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.",
|
||||||
"DE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
"DE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
||||||
"DE.ApplicationController.scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.",
|
"DE.ApplicationController.scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.",
|
||||||
|
|
|
@ -352,6 +352,7 @@ define([
|
||||||
this.appOptions.canRequestSaveAs = this.editorConfig.canRequestSaveAs;
|
this.appOptions.canRequestSaveAs = this.editorConfig.canRequestSaveAs;
|
||||||
this.appOptions.canRequestInsertImage = this.editorConfig.canRequestInsertImage;
|
this.appOptions.canRequestInsertImage = this.editorConfig.canRequestInsertImage;
|
||||||
this.appOptions.canRequestMailMergeRecipients = this.editorConfig.canRequestMailMergeRecipients;
|
this.appOptions.canRequestMailMergeRecipients = this.editorConfig.canRequestMailMergeRecipients;
|
||||||
|
this.appOptions.compatibleFeatures = (typeof (this.appOptions.customization) == 'object') && !!this.appOptions.customization.compatibleFeatures;
|
||||||
|
|
||||||
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
|
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
|
||||||
appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '')
|
appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '')
|
||||||
|
@ -365,7 +366,7 @@ define([
|
||||||
|
|
||||||
if (!( this.editorConfig.customization && ( this.editorConfig.customization.toolbarNoTabs ||
|
if (!( this.editorConfig.customization && ( this.editorConfig.customization.toolbarNoTabs ||
|
||||||
(this.editorConfig.targetApp!=='desktop') && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo)))) {
|
(this.editorConfig.targetApp!=='desktop') && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo)))) {
|
||||||
$('#editor_sdk').append('<div class="doc-placeholder">' + '<div class="line"></div>'.repeat(20) + '</div>');
|
$('#editor-container').append('<div class="doc-placeholder">' + '<div class="line"></div>'.repeat(20) + '</div>');
|
||||||
}
|
}
|
||||||
|
|
||||||
Common.Controllers.Desktop.init(this.appOptions);
|
Common.Controllers.Desktop.init(this.appOptions);
|
||||||
|
@ -1447,7 +1448,7 @@ define([
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Asc.c_oAscError.ID.Warning:
|
case Asc.c_oAscError.ID.Warning:
|
||||||
config.msg = this.errorConnectToServer.replace('%1', '{{API_URL_EDITING_CALLBACK}}');
|
config.msg = this.errorConnectToServer;
|
||||||
config.closable = false;
|
config.closable = false;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -2217,15 +2218,14 @@ define([
|
||||||
sendMergeTitle: 'Sending Merge',
|
sendMergeTitle: 'Sending Merge',
|
||||||
sendMergeText: 'Sending Merge...',
|
sendMergeText: 'Sending Merge...',
|
||||||
txtArt: 'Your text here',
|
txtArt: 'Your text here',
|
||||||
errorConnectToServer: 'The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the \'OK\' button, you will be prompted to download the document.<br><br>' +
|
errorConnectToServer: 'The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the \'OK\' button, you will be prompted to download the document.',
|
||||||
'Find more information about connecting Document Server <a href=\"%1\" target=\"_blank\">here</a>',
|
|
||||||
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.',
|
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.',
|
||||||
textStrict: 'Strict mode',
|
textStrict: 'Strict mode',
|
||||||
txtErrorLoadHistory: 'Loading history failed',
|
txtErrorLoadHistory: 'Loading history failed',
|
||||||
textBuyNow: 'Visit website',
|
textBuyNow: 'Visit website',
|
||||||
textNoLicenseTitle: '%1 connection limitation',
|
textNoLicenseTitle: '%1 connection limitation',
|
||||||
textContactUs: 'Contact sales',
|
textContactUs: 'Contact sales',
|
||||||
errorViewerDisconnect: 'Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored.',
|
errorViewerDisconnect: 'Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored and page is reloaded.',
|
||||||
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
||||||
titleLicenseExp: 'License expired',
|
titleLicenseExp: 'License expired',
|
||||||
openErrorText: 'An error has occurred while opening the file',
|
openErrorText: 'An error has occurred while opening the file',
|
||||||
|
|
|
@ -653,7 +653,8 @@ define([
|
||||||
var i = -1, type,
|
var i = -1, type,
|
||||||
paragraph_locked = false,
|
paragraph_locked = false,
|
||||||
header_locked = false,
|
header_locked = false,
|
||||||
image_locked = false;
|
image_locked = false,
|
||||||
|
in_image = false;
|
||||||
|
|
||||||
while (++i < selectedObjects.length) {
|
while (++i < selectedObjects.length) {
|
||||||
type = selectedObjects[i].get_ObjectType();
|
type = selectedObjects[i].get_ObjectType();
|
||||||
|
@ -663,11 +664,15 @@ define([
|
||||||
} else if (type === Asc.c_oAscTypeSelectElement.Header) {
|
} else if (type === Asc.c_oAscTypeSelectElement.Header) {
|
||||||
header_locked = selectedObjects[i].get_ObjectValue().get_Locked();
|
header_locked = selectedObjects[i].get_ObjectValue().get_Locked();
|
||||||
} else if (type === Asc.c_oAscTypeSelectElement.Image) {
|
} else if (type === Asc.c_oAscTypeSelectElement.Image) {
|
||||||
|
in_image = true;
|
||||||
image_locked = selectedObjects[i].get_ObjectValue().get_Locked();
|
image_locked = selectedObjects[i].get_ObjectValue().get_Locked();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var need_disable = !this.api.can_AddQuotedComment() || paragraph_locked || header_locked || image_locked;
|
var need_disable = !this.api.can_AddQuotedComment() || paragraph_locked || header_locked || image_locked;
|
||||||
|
if (this.mode.compatibleFeatures) {
|
||||||
|
need_disable = need_disable || in_image;
|
||||||
|
}
|
||||||
if ( this.btnsComment && this.btnsComment.length > 0 )
|
if ( this.btnsComment && this.btnsComment.length > 0 )
|
||||||
this.btnsComment.setDisabled(need_disable);
|
this.btnsComment.setDisabled(need_disable);
|
||||||
},
|
},
|
||||||
|
@ -829,6 +834,9 @@ define([
|
||||||
toolbar.listStylesAdditionalMenuItem.setDisabled(frame_pr===undefined);
|
toolbar.listStylesAdditionalMenuItem.setDisabled(frame_pr===undefined);
|
||||||
|
|
||||||
need_disable = !this.api.can_AddQuotedComment() || paragraph_locked || header_locked || image_locked;
|
need_disable = !this.api.can_AddQuotedComment() || paragraph_locked || header_locked || image_locked;
|
||||||
|
if (this.mode.compatibleFeatures) {
|
||||||
|
need_disable = need_disable || in_image;
|
||||||
|
}
|
||||||
if ( this.btnsComment && this.btnsComment.length > 0 )
|
if ( this.btnsComment && this.btnsComment.length > 0 )
|
||||||
this.btnsComment.setDisabled(need_disable);
|
this.btnsComment.setDisabled(need_disable);
|
||||||
|
|
||||||
|
@ -2827,45 +2835,43 @@ define([
|
||||||
compactview = true;
|
compactview = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
setTimeout(function () {
|
me.toolbar.render(_.extend({isCompactView: compactview}, config));
|
||||||
me.toolbar.render(_.extend({isCompactView: compactview}, config));
|
|
||||||
|
|
||||||
var tab = {action: 'review', caption: me.toolbar.textTabCollaboration};
|
var tab = {action: 'review', caption: me.toolbar.textTabCollaboration};
|
||||||
var $panel = me.application.getController('Common.Controllers.ReviewChanges').createToolbarPanel();
|
var $panel = me.application.getController('Common.Controllers.ReviewChanges').createToolbarPanel();
|
||||||
if ( $panel )
|
if ( $panel )
|
||||||
me.toolbar.addTab(tab, $panel, 4);
|
me.toolbar.addTab(tab, $panel, 4);
|
||||||
|
|
||||||
if ( config.isEdit ) {
|
if ( config.isEdit ) {
|
||||||
me.toolbar.setMode(config);
|
me.toolbar.setMode(config);
|
||||||
|
|
||||||
me.toolbar.btnSave.on('disabled', _.bind(me.onBtnChangeState, me, 'save:disabled'));
|
me.toolbar.btnSave.on('disabled', _.bind(me.onBtnChangeState, me, 'save:disabled'));
|
||||||
|
|
||||||
if (!(config.customization && config.customization.compactHeader)) {
|
if (!(config.customization && config.customization.compactHeader)) {
|
||||||
// hide 'print' and 'save' buttons group and next separator
|
// hide 'print' and 'save' buttons group and next separator
|
||||||
me.toolbar.btnPrint.$el.parents('.group').hide().next().hide();
|
me.toolbar.btnPrint.$el.parents('.group').hide().next().hide();
|
||||||
|
|
||||||
// hide 'undo' and 'redo' buttons and retrieve parent container
|
// hide 'undo' and 'redo' buttons and retrieve parent container
|
||||||
var $box = me.toolbar.btnUndo.$el.hide().next().hide().parent();
|
var $box = me.toolbar.btnUndo.$el.hide().next().hide().parent();
|
||||||
|
|
||||||
// move 'paste' button to the container instead of 'undo' and 'redo'
|
// move 'paste' button to the container instead of 'undo' and 'redo'
|
||||||
me.toolbar.btnPaste.$el.detach().appendTo($box);
|
me.toolbar.btnPaste.$el.detach().appendTo($box);
|
||||||
me.toolbar.btnCopy.$el.removeClass('split');
|
me.toolbar.btnCopy.$el.removeClass('split');
|
||||||
}
|
|
||||||
|
|
||||||
if ( config.isDesktopApp ) {
|
|
||||||
if ( config.canProtect ) {
|
|
||||||
tab = {action: 'protect', caption: me.toolbar.textTabProtect};
|
|
||||||
$panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel();
|
|
||||||
|
|
||||||
if ($panel) me.toolbar.addTab(tab, $panel, 5);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var links = me.getApplication().getController('Links');
|
|
||||||
links.setApi(me.api).setConfig({toolbar: me});
|
|
||||||
Array.prototype.push.apply(me.toolbar.toolbarControls, links.getView('Links').getButtons());
|
|
||||||
}
|
}
|
||||||
}, 0);
|
|
||||||
|
if ( config.isDesktopApp ) {
|
||||||
|
if ( config.canProtect ) {
|
||||||
|
tab = {action: 'protect', caption: me.toolbar.textTabProtect};
|
||||||
|
$panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel();
|
||||||
|
|
||||||
|
if ($panel) me.toolbar.addTab(tab, $panel, 5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var links = me.getApplication().getController('Links');
|
||||||
|
links.setApi(me.api).setConfig({toolbar: me});
|
||||||
|
Array.prototype.push.apply(me.toolbar.toolbarControls, links.getView('Links').getButtons());
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onAppReady: function (config) {
|
onAppReady: function (config) {
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<div id="viewport-hbox-layout" class="layout-ct hbox">
|
<div id="viewport-hbox-layout" class="layout-ct hbox">
|
||||||
<div id="left-menu" class="layout-item" style="width: 40px;"></div>
|
<div id="left-menu" class="layout-item" style="width: 40px;"></div>
|
||||||
<div id="about-menu-panel" class="left-menu-full-ct" style="display:none;"></div>
|
<div id="about-menu-panel" class="left-menu-full-ct" style="display:none;"></div>
|
||||||
<div id="editor_sdk" class="layout-item"></div>
|
<div id="editor-container" class="layout-item"><div id="editor_sdk"></div></div>
|
||||||
<div id="right-menu" class="layout-item"></div>
|
<div id="right-menu" class="layout-item"></div>
|
||||||
<div id="left-panel-history" class="layout-item" />
|
<div id="left-panel-history" class="layout-item" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -48,8 +48,7 @@ define([
|
||||||
width: 330,
|
width: 330,
|
||||||
header: false,
|
header: false,
|
||||||
cls: 'modal-dlg',
|
cls: 'modal-dlg',
|
||||||
buttons: ['ok', 'cancel'],
|
buttons: ['ok', 'cancel']
|
||||||
footerCls: 'center'
|
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
|
|
|
@ -110,7 +110,7 @@ define([
|
||||||
'</div></div>',
|
'</div></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div class="footer right">',
|
'<div class="footer center">',
|
||||||
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + me.textClose + '</button>',
|
'<button class="btn normal dlg-btn" result="cancel" style="width: 86px;">' + me.textClose + '</button>',
|
||||||
'</div>'
|
'</div>'
|
||||||
].join('')
|
].join('')
|
||||||
|
|
|
@ -1995,10 +1995,13 @@ define([
|
||||||
this.viewModeMenu = new Common.UI.Menu({
|
this.viewModeMenu = new Common.UI.Menu({
|
||||||
initMenu: function (value) {
|
initMenu: function (value) {
|
||||||
var isInChart = (value.imgProps && value.imgProps.value && !_.isNull(value.imgProps.value.get_ChartProperties())),
|
var isInChart = (value.imgProps && value.imgProps.value && !_.isNull(value.imgProps.value.get_ChartProperties())),
|
||||||
|
isInShape = (value.imgProps && value.imgProps.value && !_.isNull(value.imgProps.value.get_ShapeProperties())),
|
||||||
signGuid = (value.imgProps && value.imgProps.value && me.mode.isSignatureSupport) ? value.imgProps.value.asc_getSignatureId() : undefined,
|
signGuid = (value.imgProps && value.imgProps.value && me.mode.isSignatureSupport) ? value.imgProps.value.asc_getSignatureId() : undefined,
|
||||||
signProps = (signGuid) ? me.api.asc_getSignatureSetup(signGuid) : null,
|
signProps = (signGuid) ? me.api.asc_getSignatureSetup(signGuid) : null,
|
||||||
isInSign = !!signProps && me._canProtect,
|
isInSign = !!signProps && me._canProtect,
|
||||||
canComment = !isInChart && me.api.can_AddQuotedComment() !== false && me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled;
|
canComment = !isInChart && me.api.can_AddQuotedComment() !== false && me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled;
|
||||||
|
if (me.mode.compatibleFeatures)
|
||||||
|
canComment = canComment && !isInShape;
|
||||||
|
|
||||||
menuViewUndo.setVisible(me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled);
|
menuViewUndo.setVisible(me.mode.canCoAuthoring && me.mode.canComments && !me._isDisabled);
|
||||||
menuViewUndo.setDisabled(!me.api.asc_getCanUndo() && !me._isDisabled);
|
menuViewUndo.setDisabled(!me.api.asc_getCanUndo() && !me._isDisabled);
|
||||||
|
@ -3625,8 +3628,11 @@ define([
|
||||||
text = me.api.can_AddHyperlink();
|
text = me.api.can_AddHyperlink();
|
||||||
}
|
}
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
menuCommentSeparatorPara.setVisible(!isInChart && me.api.can_AddQuotedComment()!==false && me.mode.canCoAuthoring && me.mode.canComments);
|
var isVisible = !isInChart && me.api.can_AddQuotedComment()!==false && me.mode.canCoAuthoring && me.mode.canComments;
|
||||||
menuAddCommentPara.setVisible(!isInChart && me.api.can_AddQuotedComment()!==false && me.mode.canCoAuthoring && me.mode.canComments);
|
if (me.mode.compatibleFeatures)
|
||||||
|
isVisible = isVisible && !isInShape;
|
||||||
|
menuCommentSeparatorPara.setVisible(isVisible);
|
||||||
|
menuAddCommentPara.setVisible(isVisible);
|
||||||
menuAddCommentPara.setDisabled(value.paraProps && value.paraProps.locked === true);
|
menuAddCommentPara.setDisabled(value.paraProps && value.paraProps.locked === true);
|
||||||
/** coauthoring end **/
|
/** coauthoring end **/
|
||||||
|
|
||||||
|
@ -3976,7 +3982,7 @@ define([
|
||||||
mergeCellsText : 'Merge Cells',
|
mergeCellsText : 'Merge Cells',
|
||||||
splitCellsText : 'Split Cell...',
|
splitCellsText : 'Split Cell...',
|
||||||
splitCellTitleText : 'Split Cell',
|
splitCellTitleText : 'Split Cell',
|
||||||
originalSizeText : 'Default Size',
|
originalSizeText : 'Actual Size',
|
||||||
advancedText : 'Advanced Settings',
|
advancedText : 'Advanced Settings',
|
||||||
breakBeforeText : 'Page break before',
|
breakBeforeText : 'Page break before',
|
||||||
keepLinesText : 'Keep lines together',
|
keepLinesText : 'Keep lines together',
|
||||||
|
|
|
@ -1003,6 +1003,7 @@ define([
|
||||||
me.authors.push(item);
|
me.authors.push(item);
|
||||||
});
|
});
|
||||||
this.tblAuthor.find('.close').toggleClass('hidden', !this.mode.isEdit);
|
this.tblAuthor.find('.close').toggleClass('hidden', !this.mode.isEdit);
|
||||||
|
!this.mode.isEdit && this._ShowHideInfoItem(this.tblAuthor, !!this.authors.length);
|
||||||
}
|
}
|
||||||
this.SetDisabled();
|
this.SetDisabled();
|
||||||
},
|
},
|
||||||
|
@ -1047,6 +1048,12 @@ define([
|
||||||
this.inputAuthor.setVisible(mode.isEdit);
|
this.inputAuthor.setVisible(mode.isEdit);
|
||||||
this.btnApply.setVisible(mode.isEdit);
|
this.btnApply.setVisible(mode.isEdit);
|
||||||
this.tblAuthor.find('.close').toggleClass('hidden', !mode.isEdit);
|
this.tblAuthor.find('.close').toggleClass('hidden', !mode.isEdit);
|
||||||
|
if (!mode.isEdit) {
|
||||||
|
this.inputTitle._input.attr('placeholder', '');
|
||||||
|
this.inputSubject._input.attr('placeholder', '');
|
||||||
|
this.inputComment._input.attr('placeholder', '');
|
||||||
|
this.inputAuthor._input.attr('placeholder', '');
|
||||||
|
}
|
||||||
this.SetDisabled();
|
this.SetDisabled();
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
|
@ -58,8 +58,7 @@ define([
|
||||||
width: 350,
|
width: 350,
|
||||||
style: 'min-width: 230px;',
|
style: 'min-width: 230px;',
|
||||||
cls: 'modal-dlg',
|
cls: 'modal-dlg',
|
||||||
buttons: ['ok', 'cancel'],
|
buttons: ['ok', 'cancel']
|
||||||
footerCls: 'right'
|
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
|
|
|
@ -572,7 +572,7 @@ define([
|
||||||
textWrap: 'Wraping Style',
|
textWrap: 'Wraping Style',
|
||||||
textWidth: 'Width',
|
textWidth: 'Width',
|
||||||
textHeight: 'Height',
|
textHeight: 'Height',
|
||||||
textOriginalSize: 'Default Size',
|
textOriginalSize: 'Actual Size',
|
||||||
textInsert: 'Replace Image',
|
textInsert: 'Replace Image',
|
||||||
textFromUrl: 'From URL',
|
textFromUrl: 'From URL',
|
||||||
textFromFile: 'From File',
|
textFromFile: 'From File',
|
||||||
|
|
|
@ -2013,7 +2013,7 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
|
||||||
textLeft: 'Left',
|
textLeft: 'Left',
|
||||||
textBottom: 'Bottom',
|
textBottom: 'Bottom',
|
||||||
textRight: 'Right',
|
textRight: 'Right',
|
||||||
textOriginalSize: 'Default Size',
|
textOriginalSize: 'Actual Size',
|
||||||
textPosition: 'Position',
|
textPosition: 'Position',
|
||||||
textDistance: 'Distance From Text',
|
textDistance: 'Distance From Text',
|
||||||
textSize: 'Size',
|
textSize: 'Size',
|
||||||
|
|
|
@ -124,9 +124,9 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
|
||||||
}
|
}
|
||||||
|
|
||||||
this._arrTabAlign = [
|
this._arrTabAlign = [
|
||||||
{ value: 1, displayValue: this.textTabLeft },
|
{ value: Asc.c_oAscTabType.Left, displayValue: this.textTabLeft },
|
||||||
{ value: 3, displayValue: this.textTabCenter },
|
{ value: Asc.c_oAscTabType.Center, displayValue: this.textTabCenter },
|
||||||
{ value: 2, displayValue: this.textTabRight }
|
{ value: Asc.c_oAscTabType.Right, displayValue: this.textTabRight }
|
||||||
];
|
];
|
||||||
this._arrKeyTabAlign = [];
|
this._arrKeyTabAlign = [];
|
||||||
this._arrTabAlign.forEach(function(item) {
|
this._arrTabAlign.forEach(function(item) {
|
||||||
|
@ -577,7 +577,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
|
||||||
cls : 'input-group-nr',
|
cls : 'input-group-nr',
|
||||||
data : this._arrTabAlign
|
data : this._arrTabAlign
|
||||||
});
|
});
|
||||||
this.cmbAlign.setValue(1);
|
this.cmbAlign.setValue(Asc.c_oAscTabType.Left);
|
||||||
|
|
||||||
this.cmbLeader = new Common.UI.ComboBox({
|
this.cmbLeader = new Common.UI.ComboBox({
|
||||||
el : $('#paraadv-cmb-leader'),
|
el : $('#paraadv-cmb-leader'),
|
||||||
|
|
|
@ -45,11 +45,9 @@ define([
|
||||||
DE.Views.StyleTitleDialog = Common.UI.Window.extend(_.extend({
|
DE.Views.StyleTitleDialog = Common.UI.Window.extend(_.extend({
|
||||||
options: {
|
options: {
|
||||||
width: 350,
|
width: 350,
|
||||||
height: 200,
|
|
||||||
style: 'min-width: 230px;',
|
style: 'min-width: 230px;',
|
||||||
cls: 'modal-dlg',
|
cls: 'modal-dlg',
|
||||||
buttons: ['ok', 'cancel'],
|
buttons: ['ok', 'cancel']
|
||||||
footerCls: 'right'
|
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
|
|
|
@ -48,8 +48,7 @@ define([
|
||||||
width: 300,
|
width: 300,
|
||||||
style: 'min-width: 230px;',
|
style: 'min-width: 230px;',
|
||||||
cls: 'modal-dlg',
|
cls: 'modal-dlg',
|
||||||
buttons: ['ok', 'cancel'],
|
buttons: ['ok', 'cancel']
|
||||||
footerCls: 'right'
|
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: #f4f4f4;
|
background: #f1f1f1;
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,6 +31,7 @@
|
||||||
.loadmask > .brendpanel > div {
|
.loadmask > .brendpanel > div {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel .spacer {
|
.loadmask > .brendpanel .spacer {
|
||||||
|
@ -50,15 +51,6 @@
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel .circle {
|
|
||||||
vertical-align: middle;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
border-radius: 12px;
|
|
||||||
margin: 4px 10px;
|
|
||||||
background: rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.loadmask > .brendpanel .rect {
|
.loadmask > .brendpanel .rect {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
|
@ -69,8 +61,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar {
|
.loadmask > .sktoolbar {
|
||||||
background: #fafafa;
|
background: #f1f1f1;
|
||||||
border-bottom: 1px solid #e2e2e2;
|
border-bottom: 1px solid #cfcfcf;
|
||||||
height: 46px;
|
height: 46px;
|
||||||
padding: 10px 12px;
|
padding: 10px 12px;
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
|
@ -130,24 +122,24 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes flickerAnimation {
|
@keyframes flickerAnimation {
|
||||||
0% { opacity:0.1; }
|
0% { opacity:0.5; }
|
||||||
50% { opacity:1; }
|
50% { opacity:1; }
|
||||||
100% { opacity:0.1; }
|
100% { opacity:0.5; }
|
||||||
}
|
}
|
||||||
@-o-keyframes flickerAnimation{
|
@-o-keyframes flickerAnimation{
|
||||||
0% { opacity:0.1; }
|
0% { opacity:0.5; }
|
||||||
50% { opacity:1; }
|
50% { opacity:1; }
|
||||||
100% { opacity:0.1; }
|
100% { opacity:0.5; }
|
||||||
}
|
}
|
||||||
@-moz-keyframes flickerAnimation{
|
@-moz-keyframes flickerAnimation{
|
||||||
0% { opacity:0.1; }
|
0% { opacity:0.5; }
|
||||||
50% { opacity:1; }
|
50% { opacity:1; }
|
||||||
100% { opacity:0.1; }
|
100% { opacity:0.5; }
|
||||||
}
|
}
|
||||||
@-webkit-keyframes flickerAnimation{
|
@-webkit-keyframes flickerAnimation{
|
||||||
0% { opacity:0.1; }
|
0% { opacity:0.5; }
|
||||||
50% { opacity:1; }
|
50% { opacity:1; }
|
||||||
100% { opacity:0.1; }
|
100% { opacity:0.5; }
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
@ -217,7 +209,7 @@
|
||||||
<body>
|
<body>
|
||||||
<div id="loading-mask" class="loadmask">
|
<div id="loading-mask" class="loadmask">
|
||||||
<div class="brendpanel">
|
<div class="brendpanel">
|
||||||
<div><div class="loading-logo"><img src="../../common/main/resources/img/header/header-logo@2x.png"></div><div class="circle"></div><div class="circle"></div><div class="circle"></div><div class="circle"></div><div class="spacer"></div><div class="rect"></div></div><div><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><div class="spacer"></div><span class="circle"></span><span class="circle"></span><span class="circle"></span></div></div>
|
<div><div class="loading-logo"><img src="../../common/main/resources/img/header/header-logo@2x.png"></div><div class="spacer"></div><div class="rect"></div></div><div><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span></div></div>
|
||||||
<div class="sktoolbar">
|
<div class="sktoolbar">
|
||||||
<ul><li></li><li class="space"></li><li style="width: 255px;"></li><li class="space"></li><li style="width: 180px;"></li><li class="space"></li><li style="width: 60px;"></li><li class="fat"></li></ul>
|
<ul><li></li><li class="space"></li><li style="width: 255px;"></li><li class="space"></li><li style="width: 180px;"></li><li class="space"></li><li style="width: 60px;"></li><li class="fat"></li></ul>
|
||||||
<ul><li></li><li class="space"></li><li style="width: 255px;"></li><li class="space"></li><li style="width: 180px;"></li><li class="space"></li><li style="width: 60px;"></li></ul>
|
<ul><li></li><li class="space"></li><li style="width: 255px;"></li><li class="space"></li><li style="width: 180px;"></li><li class="space"></li><li style="width: 60px;"></li></ul>
|
||||||
|
|
|
@ -19,19 +19,20 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: #f4f4f4;
|
background: #f1f1f1;
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel {
|
.loadmask > .brendpanel {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 56px;
|
min-height: 32px;
|
||||||
background: #446995;
|
background: #446995;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel > div {
|
.loadmask > .brendpanel > div {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel .spacer {
|
.loadmask > .brendpanel .spacer {
|
||||||
|
@ -51,15 +52,6 @@
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel .circle {
|
|
||||||
vertical-align: middle;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
border-radius: 12px;
|
|
||||||
margin: 4px 10px;
|
|
||||||
background: rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.loadmask > .brendpanel .rect {
|
.loadmask > .brendpanel .rect {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
|
@ -70,8 +62,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar {
|
.loadmask > .sktoolbar {
|
||||||
background: #fafafa;
|
background: #f1f1f1;
|
||||||
border-bottom: 1px solid #e2e2e2;
|
border-bottom: 1px solid #cfcfcf;
|
||||||
height: 46px;
|
height: 46px;
|
||||||
padding: 10px 12px;
|
padding: 10px 12px;
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
|
@ -82,11 +74,6 @@
|
||||||
padding: 0;
|
padding: 0;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
-webkit-animation: flickerAnimation 2s infinite ease-in-out;
|
|
||||||
-moz-animation: flickerAnimation 2s infinite ease-in-out;
|
|
||||||
-o-animation: flickerAnimation 2s infinite ease-in-out;
|
|
||||||
animation: flickerAnimation 2s infinite ease-in-out;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar li {
|
.loadmask > .sktoolbar li {
|
||||||
|
@ -136,24 +123,24 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes flickerAnimation {
|
@keyframes flickerAnimation {
|
||||||
0% { opacity:0.1; }
|
0% { opacity:0.5; }
|
||||||
50% { opacity:1; }
|
50% { opacity:1; }
|
||||||
100% { opacity:0.1; }
|
100% { opacity:0.5; }
|
||||||
}
|
}
|
||||||
@-o-keyframes flickerAnimation{
|
@-o-keyframes flickerAnimation{
|
||||||
0% { opacity:0.1; }
|
0% { opacity:0.5; }
|
||||||
50% { opacity:1; }
|
50% { opacity:1; }
|
||||||
100% { opacity:0.1; }
|
100% { opacity:0.5; }
|
||||||
}
|
}
|
||||||
@-moz-keyframes flickerAnimation{
|
@-moz-keyframes flickerAnimation{
|
||||||
0% { opacity:0.1; }
|
0% { opacity:0.5; }
|
||||||
50% { opacity:1; }
|
50% { opacity:1; }
|
||||||
100% { opacity:0.1; }
|
100% { opacity:0.5; }
|
||||||
}
|
}
|
||||||
@-webkit-keyframes flickerAnimation{
|
@-webkit-keyframes flickerAnimation{
|
||||||
0% { opacity:0.1; }
|
0% { opacity:0.5; }
|
||||||
50% { opacity:1; }
|
50% { opacity:1; }
|
||||||
100% { opacity:0.1; }
|
100% { opacity:0.5; }
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
@ -217,7 +204,7 @@
|
||||||
<link rel="stylesheet" type="text/css" href="../../../apps/documenteditor/main/resources/css/app.css">
|
<link rel="stylesheet" type="text/css" href="../../../apps/documenteditor/main/resources/css/app.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="loading-mask" class="loadmask"><div class="brendpanel"><div><div class="loading-logo"><img src="../../../apps/documenteditor/main/resources/img/header/header-logo@2x.png"></div><div class="circle"></div><div class="circle"></div><div class="circle"></div><div class="circle"></div><div class="spacer"></div><div class="rect"></div></div><div><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><div class="spacer"></div><span class="circle"></span><span class="circle"></span><span class="circle"></span></div></div><div class="sktoolbar"><ul><li></li><li class="space"></li><li style="width: 255px;"></li><li class="space"></li><li style="width: 180px;"></li><li class="space"></li><li style="width: 60px;"></li><li class="fat"></li></ul><ul><li></li><li class="space"></li><li style="width: 255px;"></li><li class="space"></li><li style="width: 180px;"></li><li class="space"></li><li style="width: 60px;"></li></ul></div><div class="placeholder"><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div></div></div>
|
<div id="loading-mask" class="loadmask"><div class="brendpanel"><div><div class="loading-logo"><img src="../../../apps/documenteditor/main/resources/img/header/header-logo@2x.png"></div><div class="spacer"></div><div class="rect"></div></div><div><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span></div></div><div class="sktoolbar"><ul><li></li><li class="space"></li><li style="width: 255px;"></li><li class="space"></li><li style="width: 180px;"></li><li class="space"></li><li style="width: 60px;"></li><li class="fat"></li></ul><ul><li></li><li class="space"></li><li style="width: 255px;"></li><li class="space"></li><li style="width: 180px;"></li><li class="space"></li><li style="width: 60px;"></li></ul></div><div class="placeholder"><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div></div></div>
|
||||||
<div id="viewport"></div>
|
<div id="viewport"></div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -321,7 +321,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права. <br> Моля, свържете се с администратора на сървъра за документи.",
|
"DE.Controllers.Main.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права. <br> Моля, свържете се с администратора на сървъра за документи.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL адресът на изображението е неправилен",
|
"DE.Controllers.Main.errorBadImageUrl": "URL адресът на изображението е неправилен",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Връзката със сървъра е загубена. Документът не може да бъде редактиран в момента.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Връзката със сървъра е загубена. Документът не може да бъде редактиран в момента.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Документът не може да бъде запасен. Моля, проверете настройките за връзка или се свържете с администратора си.<br>Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа. <br><br>Намерете повече информация за свързването на сървър за документи <a href=\"%1\" target=\"_blank\">тук</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Документът не може да бъде запасен. Моля, проверете настройките за връзка или се свържете с администратора си.<br>Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Външна грешка. <br> Грешка при свързване към база данни. Моля, свържете се с екипа за поддръжка, в случай че грешката продължава.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Външна грешка. <br> Грешка при свързване към база данни. Моля, свържете се с екипа за поддръжка, в случай че грешката продължава.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Получени са криптирани промени, които не могат да бъдат дешифрирани.",
|
"DE.Controllers.Main.errorDataEncrypted": "Получени са криптирани промени, които не могат да бъдат дешифрирани.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Неправилен обхват от данни.",
|
"DE.Controllers.Main.errorDataRange": "Неправилен обхват от данни.",
|
||||||
|
@ -1982,7 +1982,7 @@
|
||||||
"DE.Views.Toolbar.capImgForward": "Изведи напред",
|
"DE.Views.Toolbar.capImgForward": "Изведи напред",
|
||||||
"DE.Views.Toolbar.capImgGroup": "Група",
|
"DE.Views.Toolbar.capImgGroup": "Група",
|
||||||
"DE.Views.Toolbar.capImgWrapping": "Опаковане",
|
"DE.Views.Toolbar.capImgWrapping": "Опаковане",
|
||||||
"DE.Views.Toolbar.mniCustomTable": "Вмъкване на персонализирана таблица",
|
"DE.Views.Toolbar.mniCustomTable": "Персонализирана таблица",
|
||||||
"DE.Views.Toolbar.mniEditControls": "Настройки за управление",
|
"DE.Views.Toolbar.mniEditControls": "Настройки за управление",
|
||||||
"DE.Views.Toolbar.mniEditDropCap": "Пуснете настройките на капачката",
|
"DE.Views.Toolbar.mniEditDropCap": "Пуснете настройките на капачката",
|
||||||
"DE.Views.Toolbar.mniEditFooter": "Редактиране на долен колонтитул",
|
"DE.Views.Toolbar.mniEditFooter": "Редактиране на долен колонтитул",
|
||||||
|
|
|
@ -237,7 +237,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
"DE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná",
|
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Spojení se serverem ztraceno. Dokument nyní nelze upravovat.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Spojení se serverem ztraceno. Dokument nyní nelze upravovat.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím, zkontrolujte nastavení vašeho připojení nebo kontaktujte vašeho administrátora.<br> Při kliknutí na tlačítko \"OK\" budete vyzváni ke stažení dokumentu.<br><br> Více informací o připojení najdete v Dokumentovém serveru <a href=\"%1\" target=\"_blank\">here</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím, zkontrolujte nastavení vašeho připojení nebo kontaktujte vašeho administrátora.<br> Při kliknutí na tlačítko \"OK\" budete vyzváni ke stažení dokumentu.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Externí chyba.<br>Chyba spojení s databází. Prosím kontaktujte podporu, pokud chyba přetrvává.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Externí chyba.<br>Chyba spojení s databází. Prosím kontaktujte podporu, pokud chyba přetrvává.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.",
|
"DE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||||
|
|
|
@ -321,7 +321,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Sie haben versucht die Änderungen im Dokument, zu dem Sie keine Berechtigungen haben, vorzunehemen.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
"DE.Controllers.Main.errorAccessDeny": "Sie haben versucht die Änderungen im Dokument, zu dem Sie keine Berechtigungen haben, vorzunehemen.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch",
|
"DE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Das Dokument kann momentan nicht bearbeitet werden.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Das Dokument kann momentan nicht bearbeitet werden.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.<br><br>Mehr Informationen über die Verbindung zum Dokumentenserver finden Sie <a href=\"%1\" target=\"_blank\">hier</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Externer Fehler.<br>Fehler beim Verbinden zur Datenbank. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Externer Fehler.<br>Fehler beim Verbinden zur Datenbank. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
|
"DE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
"DE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
||||||
|
|
|
@ -357,7 +357,7 @@
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
"DE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
"DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||||
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
|
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Loading data...",
|
"DE.Controllers.Main.loadFontsTextText": "Loading data...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Loading Data",
|
"DE.Controllers.Main.loadFontsTitleText": "Loading Data",
|
||||||
|
@ -429,12 +429,15 @@
|
||||||
"DE.Controllers.Main.txtHyperlink": "Hyperlink",
|
"DE.Controllers.Main.txtHyperlink": "Hyperlink",
|
||||||
"DE.Controllers.Main.txtIndTooLarge": "Index Too Large",
|
"DE.Controllers.Main.txtIndTooLarge": "Index Too Large",
|
||||||
"DE.Controllers.Main.txtLines": "Lines",
|
"DE.Controllers.Main.txtLines": "Lines",
|
||||||
|
"DE.Controllers.Main.txtMainDocOnly": "Error! Main Document Only.",
|
||||||
"DE.Controllers.Main.txtMath": "Math",
|
"DE.Controllers.Main.txtMath": "Math",
|
||||||
"DE.Controllers.Main.txtMissArg": "Missing Argument",
|
"DE.Controllers.Main.txtMissArg": "Missing Argument",
|
||||||
"DE.Controllers.Main.txtMissOperator": "Missing Operator",
|
"DE.Controllers.Main.txtMissOperator": "Missing Operator",
|
||||||
"DE.Controllers.Main.txtNeedSynchronize": "You have updates",
|
"DE.Controllers.Main.txtNeedSynchronize": "You have updates",
|
||||||
"DE.Controllers.Main.txtNoTableOfContents": "No table of contents entries found.",
|
"DE.Controllers.Main.txtNoTableOfContents": "No table of contents entries found.",
|
||||||
|
"DE.Controllers.Main.txtNoText": "Error! No text of specified style in document.",
|
||||||
"DE.Controllers.Main.txtNotInTable": "Is Not In Table",
|
"DE.Controllers.Main.txtNotInTable": "Is Not In Table",
|
||||||
|
"DE.Controllers.Main.txtNotValidBookmark": "Error! Not a valid bookmark self-reference.",
|
||||||
"DE.Controllers.Main.txtOddPage": "Odd Page",
|
"DE.Controllers.Main.txtOddPage": "Odd Page",
|
||||||
"DE.Controllers.Main.txtOnPage": "on page",
|
"DE.Controllers.Main.txtOnPage": "on page",
|
||||||
"DE.Controllers.Main.txtRectangles": "Rectangles",
|
"DE.Controllers.Main.txtRectangles": "Rectangles",
|
||||||
|
@ -654,9 +657,6 @@
|
||||||
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||||
"DE.Controllers.Main.txtMainDocOnly": "Error! Main Document Only.",
|
|
||||||
"DE.Controllers.Main.txtNotValidBookmark": "Error! Not a valid bookmark self-reference.",
|
|
||||||
"DE.Controllers.Main.txtNoText": "Error! No text of specified style in document.",
|
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
|
||||||
|
@ -1015,28 +1015,28 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "Sort by",
|
"DE.Views.BookmarksDialog.textSort": "Sort by",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Bookmarks",
|
"DE.Views.BookmarksDialog.textTitle": "Bookmarks",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "Bookmark name can only contain letters, digits and underscores, and should begin with the letter",
|
"DE.Views.BookmarksDialog.txtInvalidName": "Bookmark name can only contain letters, digits and underscores, and should begin with the letter",
|
||||||
"DE.Views.CaptionDialog.textTitle": "Insert Caption",
|
"DE.Views.CaptionDialog.textAdd": "Add label",
|
||||||
|
"DE.Views.CaptionDialog.textAfter": "After",
|
||||||
|
"DE.Views.CaptionDialog.textBefore": "Before",
|
||||||
"DE.Views.CaptionDialog.textCaption": "Caption",
|
"DE.Views.CaptionDialog.textCaption": "Caption",
|
||||||
|
"DE.Views.CaptionDialog.textChapter": "Chapter starts with style",
|
||||||
|
"DE.Views.CaptionDialog.textChapterInc": "Include chapter number",
|
||||||
|
"DE.Views.CaptionDialog.textColon": "colon",
|
||||||
|
"DE.Views.CaptionDialog.textDash": "dash",
|
||||||
|
"DE.Views.CaptionDialog.textDelete": "Delete label",
|
||||||
|
"DE.Views.CaptionDialog.textEquation": "Equation",
|
||||||
|
"DE.Views.CaptionDialog.textExamples": "Examples: Table 2-A, Image 1.IV",
|
||||||
|
"DE.Views.CaptionDialog.textExclude": "Exclude label from caption",
|
||||||
|
"DE.Views.CaptionDialog.textFigure": "Figure",
|
||||||
|
"DE.Views.CaptionDialog.textHyphen": "hyphen",
|
||||||
"DE.Views.CaptionDialog.textInsert": "Insert",
|
"DE.Views.CaptionDialog.textInsert": "Insert",
|
||||||
"DE.Views.CaptionDialog.textLabel": "Label",
|
"DE.Views.CaptionDialog.textLabel": "Label",
|
||||||
"DE.Views.CaptionDialog.textAdd": "Add label",
|
|
||||||
"DE.Views.CaptionDialog.textDelete": "Delete label",
|
|
||||||
"DE.Views.CaptionDialog.textNumbering": "Numbering",
|
|
||||||
"DE.Views.CaptionDialog.textChapterInc": "Include chapter number",
|
|
||||||
"DE.Views.CaptionDialog.textChapter": "Chapter starts with style",
|
|
||||||
"DE.Views.CaptionDialog.textSeparator": "Use separator",
|
|
||||||
"DE.Views.CaptionDialog.textExamples": "Examples: Table 2-A, Image 1.IV",
|
|
||||||
"DE.Views.CaptionDialog.textBefore": "Before",
|
|
||||||
"DE.Views.CaptionDialog.textAfter": "After",
|
|
||||||
"DE.Views.CaptionDialog.textHyphen": "hyphen",
|
|
||||||
"DE.Views.CaptionDialog.textPeriod": "period",
|
|
||||||
"DE.Views.CaptionDialog.textColon": "colon",
|
|
||||||
"DE.Views.CaptionDialog.textLongDash": "long dash",
|
"DE.Views.CaptionDialog.textLongDash": "long dash",
|
||||||
"DE.Views.CaptionDialog.textDash": "dash",
|
"DE.Views.CaptionDialog.textNumbering": "Numbering",
|
||||||
"DE.Views.CaptionDialog.textEquation": "Equation",
|
"DE.Views.CaptionDialog.textPeriod": "period",
|
||||||
"DE.Views.CaptionDialog.textFigure": "Figure",
|
"DE.Views.CaptionDialog.textSeparator": "Use separator",
|
||||||
"DE.Views.CaptionDialog.textTable": "Table",
|
"DE.Views.CaptionDialog.textTable": "Table",
|
||||||
"DE.Views.CaptionDialog.textExclude": "Exclude label from caption",
|
"DE.Views.CaptionDialog.textTitle": "Insert Caption",
|
||||||
"DE.Views.CellsAddDialog.textCol": "Columns",
|
"DE.Views.CellsAddDialog.textCol": "Columns",
|
||||||
"DE.Views.CellsAddDialog.textDown": "Below the cursor",
|
"DE.Views.CellsAddDialog.textDown": "Below the cursor",
|
||||||
"DE.Views.CellsAddDialog.textLeft": "To the left",
|
"DE.Views.CellsAddDialog.textLeft": "To the left",
|
||||||
|
@ -1056,7 +1056,7 @@
|
||||||
"DE.Views.ChartSettings.textEditData": "Edit Data",
|
"DE.Views.ChartSettings.textEditData": "Edit Data",
|
||||||
"DE.Views.ChartSettings.textHeight": "Height",
|
"DE.Views.ChartSettings.textHeight": "Height",
|
||||||
"DE.Views.ChartSettings.textLine": "Line",
|
"DE.Views.ChartSettings.textLine": "Line",
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Default Size",
|
"DE.Views.ChartSettings.textOriginalSize": "Actual Size",
|
||||||
"DE.Views.ChartSettings.textPie": "Pie",
|
"DE.Views.ChartSettings.textPie": "Pie",
|
||||||
"DE.Views.ChartSettings.textPoint": "XY (Scatter)",
|
"DE.Views.ChartSettings.textPoint": "XY (Scatter)",
|
||||||
"DE.Views.ChartSettings.textSize": "Size",
|
"DE.Views.ChartSettings.textSize": "Size",
|
||||||
|
@ -1138,7 +1138,7 @@
|
||||||
"DE.Views.DocumentHolder.mergeCellsText": "Merge Cells",
|
"DE.Views.DocumentHolder.mergeCellsText": "Merge Cells",
|
||||||
"DE.Views.DocumentHolder.moreText": "More variants...",
|
"DE.Views.DocumentHolder.moreText": "More variants...",
|
||||||
"DE.Views.DocumentHolder.noSpellVariantsText": "No variants",
|
"DE.Views.DocumentHolder.noSpellVariantsText": "No variants",
|
||||||
"DE.Views.DocumentHolder.originalSizeText": "Default Size",
|
"DE.Views.DocumentHolder.originalSizeText": "Actual Size",
|
||||||
"DE.Views.DocumentHolder.paragraphText": "Paragraph",
|
"DE.Views.DocumentHolder.paragraphText": "Paragraph",
|
||||||
"DE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink",
|
"DE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink",
|
||||||
"DE.Views.DocumentHolder.rightText": "Right",
|
"DE.Views.DocumentHolder.rightText": "Right",
|
||||||
|
@ -1265,6 +1265,7 @@
|
||||||
"DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after",
|
"DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after",
|
||||||
"DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before",
|
"DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before",
|
||||||
"DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break",
|
"DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break",
|
||||||
|
"DE.Views.DocumentHolder.txtInsertCaption": "Insert Caption",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after",
|
"DE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before",
|
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before",
|
||||||
"DE.Views.DocumentHolder.txtKeepTextOnly": "Keep text only",
|
"DE.Views.DocumentHolder.txtKeepTextOnly": "Keep text only",
|
||||||
|
@ -1303,7 +1304,6 @@
|
||||||
"DE.Views.DocumentHolder.txtUngroup": "Ungroup",
|
"DE.Views.DocumentHolder.txtUngroup": "Ungroup",
|
||||||
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
|
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
|
||||||
"DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
|
"DE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
|
||||||
"DE.Views.DocumentHolder.txtInsertCaption": "Insert Caption",
|
|
||||||
"DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill",
|
"DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill",
|
||||||
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap",
|
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap",
|
||||||
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margins",
|
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margins",
|
||||||
|
@ -1498,7 +1498,7 @@
|
||||||
"DE.Views.ImageSettings.textHintFlipH": "Flip Horizontally",
|
"DE.Views.ImageSettings.textHintFlipH": "Flip Horizontally",
|
||||||
"DE.Views.ImageSettings.textHintFlipV": "Flip Vertically",
|
"DE.Views.ImageSettings.textHintFlipV": "Flip Vertically",
|
||||||
"DE.Views.ImageSettings.textInsert": "Replace Image",
|
"DE.Views.ImageSettings.textInsert": "Replace Image",
|
||||||
"DE.Views.ImageSettings.textOriginalSize": "Default Size",
|
"DE.Views.ImageSettings.textOriginalSize": "Actual Size",
|
||||||
"DE.Views.ImageSettings.textRotate90": "Rotate 90°",
|
"DE.Views.ImageSettings.textRotate90": "Rotate 90°",
|
||||||
"DE.Views.ImageSettings.textRotation": "Rotation",
|
"DE.Views.ImageSettings.textRotation": "Rotation",
|
||||||
"DE.Views.ImageSettings.textSize": "Size",
|
"DE.Views.ImageSettings.textSize": "Size",
|
||||||
|
@ -1550,7 +1550,7 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textMiter": "Miter",
|
"DE.Views.ImageSettingsAdvanced.textMiter": "Miter",
|
||||||
"DE.Views.ImageSettingsAdvanced.textMove": "Move object with text",
|
"DE.Views.ImageSettingsAdvanced.textMove": "Move object with text",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOptions": "Options",
|
"DE.Views.ImageSettingsAdvanced.textOptions": "Options",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Default Size",
|
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Actual Size",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOverlap": "Allow overlap",
|
"DE.Views.ImageSettingsAdvanced.textOverlap": "Allow overlap",
|
||||||
"DE.Views.ImageSettingsAdvanced.textPage": "Page",
|
"DE.Views.ImageSettingsAdvanced.textPage": "Page",
|
||||||
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraph",
|
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraph",
|
||||||
|
@ -1955,14 +1955,14 @@
|
||||||
"DE.Views.TableSettings.tipRight": "Set outer right border only",
|
"DE.Views.TableSettings.tipRight": "Set outer right border only",
|
||||||
"DE.Views.TableSettings.tipTop": "Set outer top border only",
|
"DE.Views.TableSettings.tipTop": "Set outer top border only",
|
||||||
"DE.Views.TableSettings.txtNoBorders": "No borders",
|
"DE.Views.TableSettings.txtNoBorders": "No borders",
|
||||||
"DE.Views.TableSettings.txtTable_TableGrid": "Table Grid",
|
|
||||||
"DE.Views.TableSettings.txtTable_PlainTable": "Plain Table",
|
|
||||||
"DE.Views.TableSettings.txtTable_GridTable": "Grid Table",
|
|
||||||
"DE.Views.TableSettings.txtTable_ListTable": "List Table",
|
|
||||||
"DE.Views.TableSettings.txtTable_Light": "Light",
|
|
||||||
"DE.Views.TableSettings.txtTable_Dark": "Dark",
|
|
||||||
"DE.Views.TableSettings.txtTable_Colorful": "Colorful",
|
|
||||||
"DE.Views.TableSettings.txtTable_Accent": "Accent",
|
"DE.Views.TableSettings.txtTable_Accent": "Accent",
|
||||||
|
"DE.Views.TableSettings.txtTable_Colorful": "Colorful",
|
||||||
|
"DE.Views.TableSettings.txtTable_Dark": "Dark",
|
||||||
|
"DE.Views.TableSettings.txtTable_GridTable": "Grid Table",
|
||||||
|
"DE.Views.TableSettings.txtTable_Light": "Light",
|
||||||
|
"DE.Views.TableSettings.txtTable_ListTable": "List Table",
|
||||||
|
"DE.Views.TableSettings.txtTable_PlainTable": "Plain Table",
|
||||||
|
"DE.Views.TableSettings.txtTable_TableGrid": "Table Grid",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlign": "Alignment",
|
"DE.Views.TableSettingsAdvanced.textAlign": "Alignment",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignment",
|
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignment",
|
||||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells",
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells",
|
||||||
|
|
|
@ -322,7 +322,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con el Administrador del Servidor de Documentos.",
|
"DE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con el Administrador del Servidor de Documentos.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
|
"DE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. El documento no puede ser editado ahora.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. El documento no puede ser editado ahora.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.<br>Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de la conexión de Servidor de Documentos <a href=\"%1\" target=\"_blank\">aquí</a>",
|
"DE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.<br>Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión de base de datos. Por favor póngase en contacto con soporte si el error se mantiene.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión de base de datos. Por favor póngase en contacto con soporte si el error se mantiene.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
|
"DE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
"DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
||||||
|
|
|
@ -322,7 +322,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
"DE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte",
|
"DE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Connexion au serveur perdue. Le document ne peut être modifié en ce moment.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Connexion au serveur perdue. Le document ne peut être modifié en ce moment.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.<br>Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.<br><br>Trouvez plus d'informations sur la connexion au Serveur de Documents <a href=\"%1\" target=\"_blank\">ici</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.<br>Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Erreur externe.<br>Erreur de connexion à la base de données. Si l'erreur persiste veillez contactez l'assistance technique.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Erreur externe.<br>Erreur de connexion à la base de données. Si l'erreur persiste veillez contactez l'assistance technique.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.",
|
"DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.",
|
"DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.",
|
||||||
|
@ -331,6 +331,7 @@
|
||||||
"DE.Controllers.Main.errorEditingSaveas": "Une erreure s'est produite lors du travail avec le document.<br>Utilisez l'option 'Enregistrer comme...' pour enregistrer une copie de sauvegarde sur le disque dur de votre ordinateur. ",
|
"DE.Controllers.Main.errorEditingSaveas": "Une erreure s'est produite lors du travail avec le document.<br>Utilisez l'option 'Enregistrer comme...' pour enregistrer une copie de sauvegarde sur le disque dur de votre ordinateur. ",
|
||||||
"DE.Controllers.Main.errorEmailClient": "Pas de client messagerie trouvé",
|
"DE.Controllers.Main.errorEmailClient": "Pas de client messagerie trouvé",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
|
"DE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
|
||||||
"DE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
|
"DE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
|
"DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Descripteur clé a expiré",
|
"DE.Controllers.Main.errorKeyExpire": "Descripteur clé a expiré",
|
||||||
|
@ -1000,6 +1001,17 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "Trier par",
|
"DE.Views.BookmarksDialog.textSort": "Trier par",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Signets",
|
"DE.Views.BookmarksDialog.textTitle": "Signets",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "Nom du signet ne peut pas contenir que des lettres, des chiffres et des barres de soulignement et doit commencer avec une lettre",
|
"DE.Views.BookmarksDialog.txtInvalidName": "Nom du signet ne peut pas contenir que des lettres, des chiffres et des barres de soulignement et doit commencer avec une lettre",
|
||||||
|
"DE.Views.CellsAddDialog.textCol": "Colonnes",
|
||||||
|
"DE.Views.CellsAddDialog.textDown": "Au-dessous du curseur",
|
||||||
|
"DE.Views.CellsAddDialog.textLeft": "Vers la gauche",
|
||||||
|
"DE.Views.CellsAddDialog.textRight": "Vers la droite",
|
||||||
|
"DE.Views.CellsAddDialog.textRow": "Lignes",
|
||||||
|
"DE.Views.CellsAddDialog.textTitle": "Inserer Plusieurs",
|
||||||
|
"DE.Views.CellsAddDialog.textUp": "au-dessus du curseur",
|
||||||
|
"DE.Views.CellsRemoveDialog.textCol": "Supprimer la colonne entière",
|
||||||
|
"DE.Views.CellsRemoveDialog.textLeft": "Décaler les cellules vers la gauche",
|
||||||
|
"DE.Views.CellsRemoveDialog.textRow": "Supprimer la ligne entière",
|
||||||
|
"DE.Views.CellsRemoveDialog.textTitle": "Supprimer les cellules",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
"DE.Views.ChartSettings.textAdvanced": "Afficher les paramètres avancés",
|
||||||
"DE.Views.ChartSettings.textArea": "En aires",
|
"DE.Views.ChartSettings.textArea": "En aires",
|
||||||
"DE.Views.ChartSettings.textBar": "En barre",
|
"DE.Views.ChartSettings.textBar": "En barre",
|
||||||
|
@ -1117,6 +1129,7 @@
|
||||||
"DE.Views.DocumentHolder.textArrangeBackward": "Reculer",
|
"DE.Views.DocumentHolder.textArrangeBackward": "Reculer",
|
||||||
"DE.Views.DocumentHolder.textArrangeForward": "Avancer",
|
"DE.Views.DocumentHolder.textArrangeForward": "Avancer",
|
||||||
"DE.Views.DocumentHolder.textArrangeFront": "Mettre au premier plan",
|
"DE.Views.DocumentHolder.textArrangeFront": "Mettre au premier plan",
|
||||||
|
"DE.Views.DocumentHolder.textCells": "Cellules",
|
||||||
"DE.Views.DocumentHolder.textContentControls": "Contrôle du contenu",
|
"DE.Views.DocumentHolder.textContentControls": "Contrôle du contenu",
|
||||||
"DE.Views.DocumentHolder.textContinueNumbering": "Continuer la numérotation",
|
"DE.Views.DocumentHolder.textContinueNumbering": "Continuer la numérotation",
|
||||||
"DE.Views.DocumentHolder.textCopy": "Copier",
|
"DE.Views.DocumentHolder.textCopy": "Copier",
|
||||||
|
@ -1148,6 +1161,7 @@
|
||||||
"DE.Views.DocumentHolder.textRotate90": "Faire pivoter à droite de 90°",
|
"DE.Views.DocumentHolder.textRotate90": "Faire pivoter à droite de 90°",
|
||||||
"DE.Views.DocumentHolder.textSeparateList": "Liste séparée",
|
"DE.Views.DocumentHolder.textSeparateList": "Liste séparée",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Paramètres",
|
"DE.Views.DocumentHolder.textSettings": "Paramètres",
|
||||||
|
"DE.Views.DocumentHolder.textSeveral": "Plusieurs Lignes/Colonnes ",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Aligner en bas",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Aligner en bas",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Aligner au centre",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Aligner au centre",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignLeft": "Aligner à gauche",
|
"DE.Views.DocumentHolder.textShapeAlignLeft": "Aligner à gauche",
|
||||||
|
@ -1164,6 +1178,7 @@
|
||||||
"DE.Views.DocumentHolder.textUpdateTOC": "Actualiser la table des matières",
|
"DE.Views.DocumentHolder.textUpdateTOC": "Actualiser la table des matières",
|
||||||
"DE.Views.DocumentHolder.textWrap": "Style d'habillage",
|
"DE.Views.DocumentHolder.textWrap": "Style d'habillage",
|
||||||
"DE.Views.DocumentHolder.tipIsLocked": "Cet élément est en cours d'édition par un autre utilisateur.",
|
"DE.Views.DocumentHolder.tipIsLocked": "Cet élément est en cours d'édition par un autre utilisateur.",
|
||||||
|
"DE.Views.DocumentHolder.toDictionaryText": "Ajouter au dictionnaire",
|
||||||
"DE.Views.DocumentHolder.txtAddBottom": "Ajouter bordure inférieure",
|
"DE.Views.DocumentHolder.txtAddBottom": "Ajouter bordure inférieure",
|
||||||
"DE.Views.DocumentHolder.txtAddFractionBar": "Ajouter barre de fraction",
|
"DE.Views.DocumentHolder.txtAddFractionBar": "Ajouter barre de fraction",
|
||||||
"DE.Views.DocumentHolder.txtAddHor": "Ajouter une ligne horizontale",
|
"DE.Views.DocumentHolder.txtAddHor": "Ajouter une ligne horizontale",
|
||||||
|
@ -1226,6 +1241,7 @@
|
||||||
"DE.Views.DocumentHolder.txtOverwriteCells": "Remplacer les cellules",
|
"DE.Views.DocumentHolder.txtOverwriteCells": "Remplacer les cellules",
|
||||||
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Garder la mise en forme source",
|
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Garder la mise en forme source",
|
||||||
"DE.Views.DocumentHolder.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien",
|
"DE.Views.DocumentHolder.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien",
|
||||||
|
"DE.Views.DocumentHolder.txtPrintSelection": "Imprimer la sélection",
|
||||||
"DE.Views.DocumentHolder.txtRemFractionBar": "Supprimer la barre de fraction",
|
"DE.Views.DocumentHolder.txtRemFractionBar": "Supprimer la barre de fraction",
|
||||||
"DE.Views.DocumentHolder.txtRemLimit": "Supprimer la limite",
|
"DE.Views.DocumentHolder.txtRemLimit": "Supprimer la limite",
|
||||||
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Supprimer le caractère d'accent",
|
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Supprimer le caractère d'accent",
|
||||||
|
@ -1317,6 +1333,7 @@
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Créez un nouveau document texte vierge que vous serez en mesure de styliser et de formater après sa création au cours de la modification. Ou choisissez un des modèles où certains styles sont déjà pré-appliqués pour commencer un document d'un certain type ou objectif.",
|
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Créez un nouveau document texte vierge que vous serez en mesure de styliser et de formater après sa création au cours de la modification. Ou choisissez un des modèles où certains styles sont déjà pré-appliqués pour commencer un document d'un certain type ou objectif.",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nouveau document texte ",
|
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nouveau document texte ",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Pas de modèles",
|
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Pas de modèles",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Appliquer",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Ajouter un auteur",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Ajouter un auteur",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Ajouter du texte",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Ajouter du texte",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
|
||||||
|
@ -1325,12 +1342,16 @@
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Commentaire",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Commentaire",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Créé",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Créé",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Chargement en cours...",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Chargement en cours...",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Dernière modification par",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Dernière modification",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propriétaire",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pages",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pages",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphes",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphes",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Emplacement",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Emplacement",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personnes qui ont des droits",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personnes qui ont des droits",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboles avec des espaces",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboles avec des espaces",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiques",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiques",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Sujet",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboles",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboles",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titre du document",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titre du document",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Chargé",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Chargé",
|
||||||
|
@ -1373,6 +1394,7 @@
|
||||||
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Guides d'alignement",
|
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Guides d'alignement",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Récupération automatique",
|
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Récupération automatique",
|
||||||
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Enregistrement automatique",
|
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Enregistrement automatique",
|
||||||
|
"DE.Views.FileMenuPanels.Settings.textCompatible": "Compatibilité",
|
||||||
"DE.Views.FileMenuPanels.Settings.textDisabled": "Désactivé",
|
"DE.Views.FileMenuPanels.Settings.textDisabled": "Désactivé",
|
||||||
"DE.Views.FileMenuPanels.Settings.textForceSave": "Enregistrer sur le serveur",
|
"DE.Views.FileMenuPanels.Settings.textForceSave": "Enregistrer sur le serveur",
|
||||||
"DE.Views.FileMenuPanels.Settings.textMinute": "Chaque minute",
|
"DE.Views.FileMenuPanels.Settings.textMinute": "Chaque minute",
|
||||||
|
@ -1659,33 +1681,52 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordures et remplissage",
|
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordures et remplissage",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Saut de page avant",
|
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Saut de page avant",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré",
|
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Niveau hiérarchique",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite",
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Après",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Avant",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Spécial",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Lignes solidaires",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Lignes solidaires",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Paragraphes solidaires",
|
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Paragraphes solidaires",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Marges intérieures",
|
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Marges intérieures",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Éviter orphelines",
|
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Éviter orphelines",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Police",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Police",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Retraits et emplacement",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Retraits et emplacement",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Enchaînements",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Emplacement",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Emplacement",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Petites majuscules",
|
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Petites majuscules",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Ne pas ajouter d'intervalle entre paragraphes du même style",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.strSpacing": "Espacement",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Barré",
|
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Barré",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Indice",
|
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Indice",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Exposant",
|
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Exposant",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation",
|
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement",
|
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Au moins ",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Plusieurs",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan",
|
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texte simple",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Couleur",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Couleur",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Cliquez sur le diagramme ou utilisez les boutons pour sélectionner les bordures et appliquez le style choisi",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Cliquez sur le diagramme ou utilisez les boutons pour sélectionner les bordures et appliquez le style choisi",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Taille de bordure",
|
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Taille de bordure",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textBottom": "En bas",
|
"DE.Views.ParagraphSettingsAdvanced.textBottom": "En bas",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centré",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
|
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut",
|
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
|
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactement",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Première ligne",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Suspendu",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Justifié",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Guide",
|
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Guide",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "A gauche",
|
"DE.Views.ParagraphSettingsAdvanced.textLeft": "A gauche",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Niveau",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Couleur personnalisée",
|
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Couleur personnalisée",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textNone": "Aucune",
|
"DE.Views.ParagraphSettingsAdvanced.textNone": "Aucune",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(aucun)",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
|
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Supprimer",
|
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Supprimer",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout",
|
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout",
|
||||||
|
@ -1706,6 +1747,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "Seulement bordure extérieure",
|
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "Seulement bordure extérieure",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipRight": "Seulement bordure droite",
|
"DE.Views.ParagraphSettingsAdvanced.tipRight": "Seulement bordure droite",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Seulement bordure supérieure",
|
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Seulement bordure supérieure",
|
||||||
|
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Pas de bordures",
|
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Pas de bordures",
|
||||||
"DE.Views.RightMenu.txtChartSettings": "Paramètres du graphique",
|
"DE.Views.RightMenu.txtChartSettings": "Paramètres du graphique",
|
||||||
"DE.Views.RightMenu.txtHeaderFooterSettings": "Paramètres d'en-têtes et de pieds de page",
|
"DE.Views.RightMenu.txtHeaderFooterSettings": "Paramètres d'en-têtes et de pieds de page",
|
||||||
|
@ -1873,6 +1915,14 @@
|
||||||
"DE.Views.TableSettings.tipRight": "Seulement bordure extérieure droite",
|
"DE.Views.TableSettings.tipRight": "Seulement bordure extérieure droite",
|
||||||
"DE.Views.TableSettings.tipTop": "Seulement bordure extérieure supérieure",
|
"DE.Views.TableSettings.tipTop": "Seulement bordure extérieure supérieure",
|
||||||
"DE.Views.TableSettings.txtNoBorders": "Pas de bordures",
|
"DE.Views.TableSettings.txtNoBorders": "Pas de bordures",
|
||||||
|
"DE.Views.TableSettings.txtTable_Accent": "Accentuation",
|
||||||
|
"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_ListTable": "Tableau de listes",
|
||||||
|
"DE.Views.TableSettings.txtTable_PlainTable": "Tableau simple",
|
||||||
|
"DE.Views.TableSettings.txtTable_TableGrid": "Grille du tableau",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlign": "Alignement",
|
"DE.Views.TableSettingsAdvanced.textAlign": "Alignement",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignement",
|
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignement",
|
||||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espacement entre les cellules",
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espacement entre les cellules",
|
||||||
|
@ -2046,6 +2096,7 @@
|
||||||
"DE.Views.Toolbar.textPoint": "Nuages de points (XY)",
|
"DE.Views.Toolbar.textPoint": "Nuages de points (XY)",
|
||||||
"DE.Views.Toolbar.textPortrait": "Portrait",
|
"DE.Views.Toolbar.textPortrait": "Portrait",
|
||||||
"DE.Views.Toolbar.textRemoveControl": "Supprimer le contrôle du contenu",
|
"DE.Views.Toolbar.textRemoveControl": "Supprimer le contrôle du contenu",
|
||||||
|
"DE.Views.Toolbar.textRemWatermark": "Supprimer le filigrane",
|
||||||
"DE.Views.Toolbar.textRichControl": "Insérer un contrôle de contenu en texte enrichi",
|
"DE.Views.Toolbar.textRichControl": "Insérer un contrôle de contenu en texte enrichi",
|
||||||
"DE.Views.Toolbar.textRight": "A droite: ",
|
"DE.Views.Toolbar.textRight": "A droite: ",
|
||||||
"DE.Views.Toolbar.textStock": "Boursier",
|
"DE.Views.Toolbar.textStock": "Boursier",
|
||||||
|
@ -2127,6 +2178,7 @@
|
||||||
"DE.Views.Toolbar.tipShowHiddenChars": "Caractères non imprimables",
|
"DE.Views.Toolbar.tipShowHiddenChars": "Caractères non imprimables",
|
||||||
"DE.Views.Toolbar.tipSynchronize": "Le document a été modifié par un autre utilisateur. Cliquez pour enregistrer vos modifications et recharger des mises à jour.",
|
"DE.Views.Toolbar.tipSynchronize": "Le document a été modifié par un autre utilisateur. Cliquez pour enregistrer vos modifications et recharger des mises à jour.",
|
||||||
"DE.Views.Toolbar.tipUndo": "Annuler",
|
"DE.Views.Toolbar.tipUndo": "Annuler",
|
||||||
|
"DE.Views.Toolbar.tipWatermark": "Modifier le filigrane",
|
||||||
"DE.Views.Toolbar.txtDistribHor": "Distribuer horizontalement",
|
"DE.Views.Toolbar.txtDistribHor": "Distribuer horizontalement",
|
||||||
"DE.Views.Toolbar.txtDistribVert": "Distribuer verticalement",
|
"DE.Views.Toolbar.txtDistribVert": "Distribuer verticalement",
|
||||||
"DE.Views.Toolbar.txtMarginAlign": "Aligner par rapport à la marge",
|
"DE.Views.Toolbar.txtMarginAlign": "Aligner par rapport à la marge",
|
||||||
|
@ -2156,9 +2208,24 @@
|
||||||
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
|
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
|
||||||
"DE.Views.WatermarkSettingsDialog.textBold": "Gras",
|
"DE.Views.WatermarkSettingsDialog.textBold": "Gras",
|
||||||
"DE.Views.WatermarkSettingsDialog.textColor": "Couleur du texte",
|
"DE.Views.WatermarkSettingsDialog.textColor": "Couleur du texte",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonale",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFont": "Police",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFromFile": "Depuis un fichier",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textFromUrl": "D'une URL",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textImageW": "Image en filigrane",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textItalic": "Italique",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textLanguage": "Langue",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textLayout": "Mise en page",
|
||||||
"DE.Views.WatermarkSettingsDialog.textNewColor": "Ajouter une nouvelle couleur personnalisée",
|
"DE.Views.WatermarkSettingsDialog.textNewColor": "Ajouter une nouvelle couleur personnalisée",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textNone": "Aucun",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textScale": "Échelle",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Barré",
|
||||||
"DE.Views.WatermarkSettingsDialog.textText": "Texte",
|
"DE.Views.WatermarkSettingsDialog.textText": "Texte",
|
||||||
"DE.Views.WatermarkSettingsDialog.textTextW": "Filigrane de texte",
|
"DE.Views.WatermarkSettingsDialog.textTextW": "Filigrane de texte",
|
||||||
"DE.Views.WatermarkSettingsDialog.textTitle": "Paramètres de filigrane",
|
"DE.Views.WatermarkSettingsDialog.textTitle": "Paramètres de filigrane",
|
||||||
"DE.Views.WatermarkSettingsDialog.textUnderline": "Souligné"
|
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semi-transparent",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.textUnderline": "Souligné",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.tipFontName": "Nom de la police",
|
||||||
|
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Taille de police"
|
||||||
}
|
}
|
|
@ -314,7 +314,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.<br>Vegye fel a kapcsolatot a Document Server adminisztrátorával.",
|
"DE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.<br>Vegye fel a kapcsolatot a Document Server adminisztrátorával.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Hibás kép URL",
|
"DE.Controllers.Main.errorBadImageUrl": "Hibás kép URL",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Elveszett a kapcsolat a szerverrel. A dokumentum jelenleg nem szerkeszthető.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Elveszett a kapcsolat a szerverrel. A dokumentum jelenleg nem szerkeszthető.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.<br>Ha az 'OK'-ra kattint letöltheti a dokumentumot.<br><br>Bővebb információk a Dokumentum Szerverhez kapcsolódásról <a href=\"%1\" target=\"_blank\">itt</a> találhat.",
|
"DE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.<br>Ha az 'OK'-ra kattint letöltheti a dokumentumot.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Külső hiba.<br>Adatbázis-kapcsolati hiba. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a rendszer támogatással.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Külső hiba.<br>Adatbázis-kapcsolati hiba. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a rendszer támogatással.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.",
|
"DE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Hibás adattartomány.",
|
"DE.Controllers.Main.errorDataRange": "Hibás adattartomány.",
|
||||||
|
|
|
@ -324,7 +324,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
"DE.Controllers.Main.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretto",
|
"DE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretto",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Connessione al server persa. Impossibile modificare il documento.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Connessione al server persa. Impossibile modificare il documento.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore.<br>Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.<br><br>Per maggiori dettagli sulla connessione al Document Server <a href=\"%1\" target=\"_blank\">clicca qui</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore.<br>Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Errore esterno.<br>Errore di connessione a banca dati. Si prega di contattare l'assistenza tecnica nel caso in cui l'errore persiste.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Errore esterno.<br>Errore di connessione a banca dati. Si prega di contattare l'assistenza tecnica nel caso in cui l'errore persiste.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.",
|
"DE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.",
|
"DE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.",
|
||||||
|
|
|
@ -173,7 +173,7 @@
|
||||||
"DE.Controllers.Main.downloadTextText": "ドキュメントのダウンロード中...",
|
"DE.Controllers.Main.downloadTextText": "ドキュメントのダウンロード中...",
|
||||||
"DE.Controllers.Main.downloadTitleText": "ドキュメントのダウンロード中",
|
"DE.Controllers.Main.downloadTitleText": "ドキュメントのダウンロード中",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "サーバーとの接続が失われました。今、文書を編集することができません。",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "サーバーとの接続が失われました。今、文書を編集することができません。",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "文書を保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。<br>OKボタンをクリックするとドキュメントをダウンロードするように求められます。<br><br>ドキュメントサーバーの接続の詳細情報を見つけます:<a href=\"%1\" target=\"_blank\">ここに</a>",
|
"DE.Controllers.Main.errorConnectToServer": "文書を保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。<br>OKボタンをクリックするとドキュメントをダウンロードするように求められます。",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "外部エラーです。<br>データベース接続エラーです。この問題は解決しない場合は、サポートにお問い合わせください。",
|
"DE.Controllers.Main.errorDatabaseConnection": "外部エラーです。<br>データベース接続エラーです。この問題は解決しない場合は、サポートにお問い合わせください。",
|
||||||
"DE.Controllers.Main.errorDataRange": "データ範囲が正しくありません",
|
"DE.Controllers.Main.errorDataRange": "データ範囲が正しくありません",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "エラー コード:%1",
|
"DE.Controllers.Main.errorDefaultMessage": "エラー コード:%1",
|
||||||
|
|
|
@ -298,7 +298,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "권한이없는 작업을 수행하려고합니다. <br> 문서 관리자에게 문의하십시오.",
|
"DE.Controllers.Main.errorAccessDeny": "권한이없는 작업을 수행하려고합니다. <br> 문서 관리자에게 문의하십시오.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.",
|
"DE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 지금 문서를 편집 할 수 없습니다.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 지금 문서를 편집 할 수 없습니다.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.<br>'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.<br ><br>Document Server 연결에 대한 추가 정보 찾기 <a href=\"%1\" target=\"_blank\">여기</a> ",
|
"DE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.<br>'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "외부 오류. <br> 데이터베이스 연결 오류입니다. 오류가 계속 발생하면 지원부에 문의하십시오.",
|
"DE.Controllers.Main.errorDatabaseConnection": "외부 오류. <br> 데이터베이스 연결 오류입니다. 오류가 계속 발생하면 지원부에 문의하십시오.",
|
||||||
"DE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.",
|
"DE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1",
|
"DE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1",
|
||||||
|
|
|
@ -295,7 +295,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Jūs mēģināt veikt darbību, kuru nedrīkstat veikt.<br>Lūdzu, sazinieties ar savu dokumentu servera administratoru.",
|
"DE.Controllers.Main.errorAccessDeny": "Jūs mēģināt veikt darbību, kuru nedrīkstat veikt.<br>Lūdzu, sazinieties ar savu dokumentu servera administratoru.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Nav pareizs attēla URL",
|
"DE.Controllers.Main.errorBadImageUrl": "Nav pareizs attēla URL",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Dokumentu neizdevās noglabāt. Lūdzu, pārbaudiet savienojuma uzstādījumus vai sazinieties ar savu administratoru.<br>Nospiežot \"OK\", jūs varēsit lejupielādēt dokumentu.<br><br>Uzziniet vairāk par dokumentu servera pieslēgšanu <a href=\"%1\" target=\"_blank\">šeit</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Dokumentu neizdevās noglabāt. Lūdzu, pārbaudiet savienojuma uzstādījumus vai sazinieties ar savu administratoru.<br>Nospiežot \"OK\", jūs varēsit lejupielādēt dokumentu.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. Please contact support in case the error persists.",
|
"DE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. Please contact support in case the error persists.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Incorrect data range.",
|
"DE.Controllers.Main.errorDataRange": "Incorrect data range.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Kļūdas kods: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Kļūdas kods: %1",
|
||||||
|
|
|
@ -317,7 +317,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.<br>Neem contact op met de beheerder van de documentserver.",
|
"DE.Controllers.Main.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.<br>Neem contact op met de beheerder van de documentserver.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL afbeelding is onjuist",
|
"DE.Controllers.Main.errorBadImageUrl": "URL afbeelding is onjuist",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server is verbroken. Het document kan op dit moment niet worden bewerkt.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server is verbroken. Het document kan op dit moment niet worden bewerkt.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.<br>Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.<br><br>Meer informatie over verbindingen met de documentserver is <a href=\"%1\" target=\"_blank\">hier</a> te vinden.",
|
"DE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.<br>Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Externe fout.<br>Fout in databaseverbinding. Neem contact op met Support als deze fout zich blijft voordoen.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Externe fout.<br>Fout in databaseverbinding. Neem contact op met Support als deze fout zich blijft voordoen.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.",
|
"DE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Foutcode: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Foutcode: %1",
|
||||||
|
|
|
@ -272,7 +272,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Próbujesz wykonać działanie, na które nie masz uprawnień.<br>Proszę skontaktować się z administratorem serwera dokumentów.",
|
"DE.Controllers.Main.errorAccessDeny": "Próbujesz wykonać działanie, na które nie masz uprawnień.<br>Proszę skontaktować się z administratorem serwera dokumentów.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny",
|
"DE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie można teraz edytować dokumentu.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie można teraz edytować dokumentu.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Nie można zapisać dokumentu. Sprawdź ustawienia połączenia lub skontaktuj się z administratorem.<br>Po kliknięciu przycisku \"OK\" zostanie wyświetlony monit o pobranie dokumentu.<br><br>Dowiedz się więcej o połączeniu serwera dokumentów <a href=\"%1\" target=\"_blank\">tutaj</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Nie można zapisać dokumentu. Sprawdź ustawienia połączenia lub skontaktuj się z administratorem.<br>Po kliknięciu przycisku \"OK\" zostanie wyświetlony monit o pobranie dokumentu.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Błąd zewnętrzny.<br>Błąd połączenia z bazą danych. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Błąd zewnętrzny.<br>Błąd połączenia z bazą danych. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Błędny zakres danych.",
|
"DE.Controllers.Main.errorDataRange": "Błędny zakres danych.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1",
|
||||||
|
|
|
@ -274,7 +274,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Você está tentando executar uma ação que você não tem direitos. <br> Contate o administrador do Servidor de Documentos.",
|
"DE.Controllers.Main.errorAccessDeny": "Você está tentando executar uma ação que você não tem direitos. <br> Contate o administrador do Servidor de Documentos.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL de imagem está incorreta",
|
"DE.Controllers.Main.errorBadImageUrl": "URL de imagem está incorreta",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão com servidor perdida. O documento não pode ser editado neste momento.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão com servidor perdida. O documento não pode ser editado neste momento.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "O documento não pôde ser salvo. Verifique as configurações de conexão ou entre em contato com o administrador.<br>Quando você clicar no botão 'OK', você será solicitado à fazer o download do documento. <br><br>Encontre mais informações sobre como conecta ao Document Server <a href=\"%1\" target=\"_blank\">aqui</a>",
|
"DE.Controllers.Main.errorConnectToServer": "O documento não pôde ser salvo. Verifique as configurações de conexão ou entre em contato com o administrador.<br>Quando você clicar no botão 'OK', você será solicitado à fazer o download do documento.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Erro externo.<br>Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Erro externo.<br>Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Intervalo de dados incorreto.",
|
"DE.Controllers.Main.errorDataRange": "Intervalo de dados incorreto.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Código do erro: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Código do erro: %1",
|
||||||
|
|
|
@ -324,7 +324,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"DE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
|
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Потеряно соединение с сервером. В данный момент нельзя отредактировать документ.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.<br><br>Дополнительную информацию о подключении Сервера документов можно найти <a href=\"%1\" target=\"_blank\">здесь</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка.<br>Ошибка подключения к базе данных. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка.<br>Ошибка подключения к базе данных. Если ошибка повторяется, пожалуйста, обратитесь в службу поддержки.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
|
"DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
|
"DE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
|
||||||
|
@ -333,6 +333,7 @@
|
||||||
"DE.Controllers.Main.errorEditingSaveas": "В ходе работы с документом произошла ошибка.<br>Используйте опцию 'Сохранить как...', чтобы сохранить резервную копию файла на жесткий диск компьютера.",
|
"DE.Controllers.Main.errorEditingSaveas": "В ходе работы с документом произошла ошибка.<br>Используйте опцию 'Сохранить как...', чтобы сохранить резервную копию файла на жесткий диск компьютера.",
|
||||||
"DE.Controllers.Main.errorEmailClient": "Не найден почтовый клиент",
|
"DE.Controllers.Main.errorEmailClient": "Не найден почтовый клиент",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
"DE.Controllers.Main.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
|
||||||
"DE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
|
"DE.Controllers.Main.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
|
"DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек",
|
"DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек",
|
||||||
|
@ -349,7 +350,7 @@
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
"DE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.",
|
"DE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану",
|
"DE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,<br>но не сможете скачать или напечатать его до восстановления подключения.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,<br>но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.",
|
||||||
"DE.Controllers.Main.leavePageText": "Документ содержит несохраненные изменения. Чтобы сохранить их, нажмите \"Остаться на этой странице\", затем \"Сохранить\". Нажмите \"Покинуть эту страницу\", чтобы сбросить все несохраненные изменения.",
|
"DE.Controllers.Main.leavePageText": "Документ содержит несохраненные изменения. Чтобы сохранить их, нажмите \"Остаться на этой странице\", затем \"Сохранить\". Нажмите \"Покинуть эту страницу\", чтобы сбросить все несохраненные изменения.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Загрузка данных...",
|
"DE.Controllers.Main.loadFontsTextText": "Загрузка данных...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Загрузка данных",
|
"DE.Controllers.Main.loadFontsTitleText": "Загрузка данных",
|
||||||
|
@ -421,12 +422,15 @@
|
||||||
"DE.Controllers.Main.txtHyperlink": "Гиперссылка",
|
"DE.Controllers.Main.txtHyperlink": "Гиперссылка",
|
||||||
"DE.Controllers.Main.txtIndTooLarge": "Индекс слишком большой",
|
"DE.Controllers.Main.txtIndTooLarge": "Индекс слишком большой",
|
||||||
"DE.Controllers.Main.txtLines": "Линии",
|
"DE.Controllers.Main.txtLines": "Линии",
|
||||||
|
"DE.Controllers.Main.txtMainDocOnly": "Ошибка! Только основной документ.",
|
||||||
"DE.Controllers.Main.txtMath": "Математические знаки",
|
"DE.Controllers.Main.txtMath": "Математические знаки",
|
||||||
"DE.Controllers.Main.txtMissArg": "Отсутствует аргумент",
|
"DE.Controllers.Main.txtMissArg": "Отсутствует аргумент",
|
||||||
"DE.Controllers.Main.txtMissOperator": "Отсутствует оператор",
|
"DE.Controllers.Main.txtMissOperator": "Отсутствует оператор",
|
||||||
"DE.Controllers.Main.txtNeedSynchronize": "Есть обновления",
|
"DE.Controllers.Main.txtNeedSynchronize": "Есть обновления",
|
||||||
"DE.Controllers.Main.txtNoTableOfContents": "Элементов оглавления не найдено.",
|
"DE.Controllers.Main.txtNoTableOfContents": "Элементов оглавления не найдено.",
|
||||||
|
"DE.Controllers.Main.txtNoText": "Ошибка! В документе отсутствует текст указанного стиля.",
|
||||||
"DE.Controllers.Main.txtNotInTable": "Не в таблице",
|
"DE.Controllers.Main.txtNotInTable": "Не в таблице",
|
||||||
|
"DE.Controllers.Main.txtNotValidBookmark": "Ошибка! Неверная ссылка закладки.",
|
||||||
"DE.Controllers.Main.txtOddPage": "Нечетная страница",
|
"DE.Controllers.Main.txtOddPage": "Нечетная страница",
|
||||||
"DE.Controllers.Main.txtOnPage": "на странице",
|
"DE.Controllers.Main.txtOnPage": "на странице",
|
||||||
"DE.Controllers.Main.txtRectangles": "Прямоугольники",
|
"DE.Controllers.Main.txtRectangles": "Прямоугольники",
|
||||||
|
@ -646,7 +650,6 @@
|
||||||
"DE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
"DE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||||
"DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
"DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||||
"DE.Controllers.Main.txtNoText": "Ошибка! Текст указанного стиля в документе отсутствует.",
|
|
||||||
"DE.Controllers.Navigation.txtBeginning": "Начало документа",
|
"DE.Controllers.Navigation.txtBeginning": "Начало документа",
|
||||||
"DE.Controllers.Navigation.txtGotoBeginning": "Перейти в начало документа",
|
"DE.Controllers.Navigation.txtGotoBeginning": "Перейти в начало документа",
|
||||||
"DE.Controllers.Statusbar.textHasChanges": "Отслежены новые изменения",
|
"DE.Controllers.Statusbar.textHasChanges": "Отслежены новые изменения",
|
||||||
|
@ -990,6 +993,8 @@
|
||||||
"DE.Controllers.Toolbar.txtSymbol_zeta": "Дзета",
|
"DE.Controllers.Toolbar.txtSymbol_zeta": "Дзета",
|
||||||
"DE.Controllers.Viewport.textFitPage": "По размеру страницы",
|
"DE.Controllers.Viewport.textFitPage": "По размеру страницы",
|
||||||
"DE.Controllers.Viewport.textFitWidth": "По ширине",
|
"DE.Controllers.Viewport.textFitWidth": "По ширине",
|
||||||
|
"DE.Views.AddNewCaptionLabelDialog.textLabel": "Подпись:",
|
||||||
|
"DE.Views.AddNewCaptionLabelDialog.textLabelError": "Подпись не должна быть пустой.",
|
||||||
"DE.Views.BookmarksDialog.textAdd": "Добавить",
|
"DE.Views.BookmarksDialog.textAdd": "Добавить",
|
||||||
"DE.Views.BookmarksDialog.textBookmarkName": "Имя закладки",
|
"DE.Views.BookmarksDialog.textBookmarkName": "Имя закладки",
|
||||||
"DE.Views.BookmarksDialog.textClose": "Закрыть",
|
"DE.Views.BookmarksDialog.textClose": "Закрыть",
|
||||||
|
@ -1003,6 +1008,39 @@
|
||||||
"DE.Views.BookmarksDialog.textSort": "Порядок",
|
"DE.Views.BookmarksDialog.textSort": "Порядок",
|
||||||
"DE.Views.BookmarksDialog.textTitle": "Закладки",
|
"DE.Views.BookmarksDialog.textTitle": "Закладки",
|
||||||
"DE.Views.BookmarksDialog.txtInvalidName": "Имя закладки может содержать только буквы, цифры и знаки подчеркивания и должно начинаться с буквы.",
|
"DE.Views.BookmarksDialog.txtInvalidName": "Имя закладки может содержать только буквы, цифры и знаки подчеркивания и должно начинаться с буквы.",
|
||||||
|
"DE.Views.CaptionDialog.textAdd": "Добавить подпись",
|
||||||
|
"DE.Views.CaptionDialog.textAfter": "После",
|
||||||
|
"DE.Views.CaptionDialog.textBefore": "Перед",
|
||||||
|
"DE.Views.CaptionDialog.textCaption": "Название",
|
||||||
|
"DE.Views.CaptionDialog.textChapter": "Начинается со стиля:",
|
||||||
|
"DE.Views.CaptionDialog.textChapterInc": "Включить номер главы",
|
||||||
|
"DE.Views.CaptionDialog.textColon": "двоеточие",
|
||||||
|
"DE.Views.CaptionDialog.textDash": "тире",
|
||||||
|
"DE.Views.CaptionDialog.textDelete": "Удалить подпись",
|
||||||
|
"DE.Views.CaptionDialog.textEquation": "Уравнение",
|
||||||
|
"DE.Views.CaptionDialog.textExamples": "Примеры: Таблица 2-A, Изображение 1.IV",
|
||||||
|
"DE.Views.CaptionDialog.textExclude": "Исключить подпись из названия",
|
||||||
|
"DE.Views.CaptionDialog.textFigure": "Рисунок",
|
||||||
|
"DE.Views.CaptionDialog.textHyphen": "дефис",
|
||||||
|
"DE.Views.CaptionDialog.textInsert": "Вставить",
|
||||||
|
"DE.Views.CaptionDialog.textLabel": "Подпись",
|
||||||
|
"DE.Views.CaptionDialog.textLongDash": "длинное тире",
|
||||||
|
"DE.Views.CaptionDialog.textNumbering": "Нумерация",
|
||||||
|
"DE.Views.CaptionDialog.textPeriod": "точка",
|
||||||
|
"DE.Views.CaptionDialog.textSeparator": "Использовать разделитель",
|
||||||
|
"DE.Views.CaptionDialog.textTable": "Таблица",
|
||||||
|
"DE.Views.CaptionDialog.textTitle": "Вставить название",
|
||||||
|
"DE.Views.CellsAddDialog.textCol": "Столбцы",
|
||||||
|
"DE.Views.CellsAddDialog.textDown": "Под курсором",
|
||||||
|
"DE.Views.CellsAddDialog.textLeft": "Слева",
|
||||||
|
"DE.Views.CellsAddDialog.textRight": "Справа",
|
||||||
|
"DE.Views.CellsAddDialog.textRow": "Строки",
|
||||||
|
"DE.Views.CellsAddDialog.textTitle": "Вставить несколько",
|
||||||
|
"DE.Views.CellsAddDialog.textUp": "Над курсором",
|
||||||
|
"DE.Views.CellsRemoveDialog.textCol": "Удалить весь столбец",
|
||||||
|
"DE.Views.CellsRemoveDialog.textLeft": "Ячейки со сдвигом влево",
|
||||||
|
"DE.Views.CellsRemoveDialog.textRow": "Удалить всю строку",
|
||||||
|
"DE.Views.CellsRemoveDialog.textTitle": "Удалить ячейки",
|
||||||
"DE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
"DE.Views.ChartSettings.textAdvanced": "Дополнительные параметры",
|
||||||
"DE.Views.ChartSettings.textArea": "С областями",
|
"DE.Views.ChartSettings.textArea": "С областями",
|
||||||
"DE.Views.ChartSettings.textBar": "Линейчатая",
|
"DE.Views.ChartSettings.textBar": "Линейчатая",
|
||||||
|
@ -1120,6 +1158,7 @@
|
||||||
"DE.Views.DocumentHolder.textArrangeBackward": "Перенести назад",
|
"DE.Views.DocumentHolder.textArrangeBackward": "Перенести назад",
|
||||||
"DE.Views.DocumentHolder.textArrangeForward": "Перенести вперед",
|
"DE.Views.DocumentHolder.textArrangeForward": "Перенести вперед",
|
||||||
"DE.Views.DocumentHolder.textArrangeFront": "Перенести на передний план",
|
"DE.Views.DocumentHolder.textArrangeFront": "Перенести на передний план",
|
||||||
|
"DE.Views.DocumentHolder.textCells": "Ячейки",
|
||||||
"DE.Views.DocumentHolder.textContentControls": "Элемент управления содержимым",
|
"DE.Views.DocumentHolder.textContentControls": "Элемент управления содержимым",
|
||||||
"DE.Views.DocumentHolder.textContinueNumbering": "Продолжить нумерацию",
|
"DE.Views.DocumentHolder.textContinueNumbering": "Продолжить нумерацию",
|
||||||
"DE.Views.DocumentHolder.textCopy": "Копировать",
|
"DE.Views.DocumentHolder.textCopy": "Копировать",
|
||||||
|
@ -1151,6 +1190,7 @@
|
||||||
"DE.Views.DocumentHolder.textRotate90": "Повернуть на 90° по часовой стрелке",
|
"DE.Views.DocumentHolder.textRotate90": "Повернуть на 90° по часовой стрелке",
|
||||||
"DE.Views.DocumentHolder.textSeparateList": "Разделить список",
|
"DE.Views.DocumentHolder.textSeparateList": "Разделить список",
|
||||||
"DE.Views.DocumentHolder.textSettings": "Настройки",
|
"DE.Views.DocumentHolder.textSettings": "Настройки",
|
||||||
|
"DE.Views.DocumentHolder.textSeveral": "Несколько строк/столбцов",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignBottom": "Выровнять по нижнему краю",
|
"DE.Views.DocumentHolder.textShapeAlignBottom": "Выровнять по нижнему краю",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignCenter": "Выровнять по центру",
|
"DE.Views.DocumentHolder.textShapeAlignCenter": "Выровнять по центру",
|
||||||
"DE.Views.DocumentHolder.textShapeAlignLeft": "Выровнять по левому краю",
|
"DE.Views.DocumentHolder.textShapeAlignLeft": "Выровнять по левому краю",
|
||||||
|
@ -1218,6 +1258,7 @@
|
||||||
"DE.Views.DocumentHolder.txtInsertArgAfter": "Вставить аргумент после",
|
"DE.Views.DocumentHolder.txtInsertArgAfter": "Вставить аргумент после",
|
||||||
"DE.Views.DocumentHolder.txtInsertArgBefore": "Вставить аргумент перед",
|
"DE.Views.DocumentHolder.txtInsertArgBefore": "Вставить аргумент перед",
|
||||||
"DE.Views.DocumentHolder.txtInsertBreak": "Вставить принудительный разрыв",
|
"DE.Views.DocumentHolder.txtInsertBreak": "Вставить принудительный разрыв",
|
||||||
|
"DE.Views.DocumentHolder.txtInsertCaption": "Вставить название",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqAfter": "Вставить уравнение после",
|
"DE.Views.DocumentHolder.txtInsertEqAfter": "Вставить уравнение после",
|
||||||
"DE.Views.DocumentHolder.txtInsertEqBefore": "Вставить уравнение перед",
|
"DE.Views.DocumentHolder.txtInsertEqBefore": "Вставить уравнение перед",
|
||||||
"DE.Views.DocumentHolder.txtKeepTextOnly": "Сохранить только текст",
|
"DE.Views.DocumentHolder.txtKeepTextOnly": "Сохранить только текст",
|
||||||
|
@ -1322,6 +1363,7 @@
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Создайте новый пустой текстовый документ, к которому Вы сможете применить стили и отформатировать при редактировании после того, как он создан. Или выберите один из шаблонов, чтобы создать документ определенного типа или предназначения, где уже предварительно применены некоторые стили.",
|
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Создайте новый пустой текстовый документ, к которому Вы сможете применить стили и отформатировать при редактировании после того, как он создан. Или выберите один из шаблонов, чтобы создать документ определенного типа или предназначения, где уже предварительно применены некоторые стили.",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Новый текстовый документ",
|
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Новый текстовый документ",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Шаблоны отсутствуют",
|
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Шаблоны отсутствуют",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Применить",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Добавить автора",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Добавить автора",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Добавить текст",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Добавить текст",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Приложение",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Приложение",
|
||||||
|
@ -1906,14 +1948,14 @@
|
||||||
"DE.Views.TableSettings.tipRight": "Задать только внешнюю правую границу",
|
"DE.Views.TableSettings.tipRight": "Задать только внешнюю правую границу",
|
||||||
"DE.Views.TableSettings.tipTop": "Задать только внешнюю верхнюю границу",
|
"DE.Views.TableSettings.tipTop": "Задать только внешнюю верхнюю границу",
|
||||||
"DE.Views.TableSettings.txtNoBorders": "Без границ",
|
"DE.Views.TableSettings.txtNoBorders": "Без границ",
|
||||||
"DE.Views.TableSettings.txtTable_TableGrid": "Сетка таблицы",
|
|
||||||
"DE.Views.TableSettings.txtTable_PlainTable": "Таблица простая",
|
|
||||||
"DE.Views.TableSettings.txtTable_GridTable": "Таблица-сетка",
|
|
||||||
"DE.Views.TableSettings.txtTable_ListTable": "Список-таблица",
|
|
||||||
"DE.Views.TableSettings.txtTable_Light": "светлая",
|
|
||||||
"DE.Views.TableSettings.txtTable_Dark": "темная",
|
|
||||||
"DE.Views.TableSettings.txtTable_Colorful": "цветная",
|
|
||||||
"DE.Views.TableSettings.txtTable_Accent": "акцент",
|
"DE.Views.TableSettings.txtTable_Accent": "акцент",
|
||||||
|
"DE.Views.TableSettings.txtTable_Colorful": "цветная",
|
||||||
|
"DE.Views.TableSettings.txtTable_Dark": "темная",
|
||||||
|
"DE.Views.TableSettings.txtTable_GridTable": "Таблица-сетка",
|
||||||
|
"DE.Views.TableSettings.txtTable_Light": "светлая",
|
||||||
|
"DE.Views.TableSettings.txtTable_ListTable": "Список-таблица",
|
||||||
|
"DE.Views.TableSettings.txtTable_PlainTable": "Таблица простая",
|
||||||
|
"DE.Views.TableSettings.txtTable_TableGrid": "Сетка таблицы",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlign": "Выравнивание",
|
"DE.Views.TableSettingsAdvanced.textAlign": "Выравнивание",
|
||||||
"DE.Views.TableSettingsAdvanced.textAlignment": "Выравнивание",
|
"DE.Views.TableSettingsAdvanced.textAlignment": "Выравнивание",
|
||||||
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Интервалы между ячейками",
|
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Интервалы между ячейками",
|
||||||
|
|
|
@ -276,7 +276,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.<br>Prosím, kontaktujte svojho správcu dokumentového servera. ",
|
"DE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.<br>Prosím, kontaktujte svojho správcu dokumentového servera. ",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna",
|
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.<br>Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.<br><br>Viac informácií o pripojení dokumentového servera nájdete <a href=\"%1\" target=\"_blank\">tu</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.<br>Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.<br>Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ",
|
"DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.<br>Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ",
|
||||||
"DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.",
|
"DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||||
|
|
|
@ -170,7 +170,7 @@
|
||||||
"DE.Controllers.Main.downloadTextText": "Prenašanje dokumenta...",
|
"DE.Controllers.Main.downloadTextText": "Prenašanje dokumenta...",
|
||||||
"DE.Controllers.Main.downloadTitleText": "Prenašanje dokumenta",
|
"DE.Controllers.Main.downloadTitleText": "Prenašanje dokumenta",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Povezava s strežnikom izgubljena. Dokument v tem trenutku ne more biti urejen.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Povezava s strežnikom izgubljena. Dokument v tem trenutku ne more biti urejen.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.<br><br>Find more information about connecting Document Server <a href=\"https://api.onlyoffice.com/editors/callback\" target=\"_blank\">here</a>",
|
"DE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Zunanja napaka.<br>Napaka povezave baze podatkov. V primeru, da napaka ni odpravljena, prosim kontaktirajte ekipo za pomoč.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Zunanja napaka.<br>Napaka povezave baze podatkov. V primeru, da napaka ni odpravljena, prosim kontaktirajte ekipo za pomoč.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Nepravilen obseg podatkov.",
|
"DE.Controllers.Main.errorDataRange": "Nepravilen obseg podatkov.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Koda napake: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Koda napake: %1",
|
||||||
|
|
|
@ -251,7 +251,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Hakiniz olmayan bir eylem gerçekleştirmeye çalışıyorsunuz. <br> Lütfen Document Server yöneticinize başvurun.",
|
"DE.Controllers.Main.errorAccessDeny": "Hakiniz olmayan bir eylem gerçekleştirmeye çalışıyorsunuz. <br> Lütfen Document Server yöneticinize başvurun.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış",
|
"DE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin. <br>'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.<br><br>Belge Sunucusuna bağlanma konusunda daha fazla bilgi için <a href=\"%1\" target=\"_blank\">buraya</a> tıklayın",
|
"DE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin. <br>'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Harci hata. <br>Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Harci hata. <br>Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.",
|
"DE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Hata kodu: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Hata kodu: %1",
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
"Common.Controllers.ReviewChanges.textBaseline": "Базова лінія",
|
"Common.Controllers.ReviewChanges.textBaseline": "Базова лінія",
|
||||||
"Common.Controllers.ReviewChanges.textBold": "Жирний",
|
"Common.Controllers.ReviewChanges.textBold": "Жирний",
|
||||||
"Common.Controllers.ReviewChanges.textBreakBefore": "розрив сторінки",
|
"Common.Controllers.ReviewChanges.textBreakBefore": "розрив сторінки",
|
||||||
"Common.Controllers.ReviewChanges.textCaps": "Всі шапки",
|
"Common.Controllers.ReviewChanges.textCaps": "Усі великі",
|
||||||
"Common.Controllers.ReviewChanges.textCenter": "Вирівняти центр",
|
"Common.Controllers.ReviewChanges.textCenter": "Вирівняти центр",
|
||||||
"Common.Controllers.ReviewChanges.textChart": "Діаграма",
|
"Common.Controllers.ReviewChanges.textChart": "Діаграма",
|
||||||
"Common.Controllers.ReviewChanges.textColor": "Колір шрифту",
|
"Common.Controllers.ReviewChanges.textColor": "Колір шрифту",
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
"Common.Controllers.ReviewChanges.textRight": "Вирівняти справа",
|
"Common.Controllers.ReviewChanges.textRight": "Вирівняти справа",
|
||||||
"Common.Controllers.ReviewChanges.textShape": "Форма",
|
"Common.Controllers.ReviewChanges.textShape": "Форма",
|
||||||
"Common.Controllers.ReviewChanges.textShd": "Колір фону",
|
"Common.Controllers.ReviewChanges.textShd": "Колір фону",
|
||||||
"Common.Controllers.ReviewChanges.textSmallCaps": "Малі шапки",
|
"Common.Controllers.ReviewChanges.textSmallCaps": "Зменшені великі",
|
||||||
"Common.Controllers.ReviewChanges.textSpacing": "інтервал",
|
"Common.Controllers.ReviewChanges.textSpacing": "інтервал",
|
||||||
"Common.Controllers.ReviewChanges.textSpacingAfter": "Інтервал після",
|
"Common.Controllers.ReviewChanges.textSpacingAfter": "Інтервал після",
|
||||||
"Common.Controllers.ReviewChanges.textSpacingBefore": "інтервал перед",
|
"Common.Controllers.ReviewChanges.textSpacingBefore": "інтервал перед",
|
||||||
|
@ -145,6 +145,7 @@
|
||||||
"Common.Views.Header.tipDownload": "Завантажити файл",
|
"Common.Views.Header.tipDownload": "Завантажити файл",
|
||||||
"Common.Views.Header.tipGoEdit": "Редагувати поточний файл",
|
"Common.Views.Header.tipGoEdit": "Редагувати поточний файл",
|
||||||
"Common.Views.Header.tipPrint": "Роздрукувати файл",
|
"Common.Views.Header.tipPrint": "Роздрукувати файл",
|
||||||
|
"Common.Views.Header.tipViewSettings": "Налаштування перегляду",
|
||||||
"Common.Views.Header.tipViewUsers": "Переглядайте користувачів та керуйте правами доступу до документів",
|
"Common.Views.Header.tipViewUsers": "Переглядайте користувачів та керуйте правами доступу до документів",
|
||||||
"Common.Views.Header.txtAccessRights": "Змінити права доступу",
|
"Common.Views.Header.txtAccessRights": "Змінити права доступу",
|
||||||
"Common.Views.Header.txtRename": "Перейменувати",
|
"Common.Views.Header.txtRename": "Перейменувати",
|
||||||
|
@ -192,9 +193,12 @@
|
||||||
"Common.Views.ReviewChanges.txtClose": "Закрити",
|
"Common.Views.ReviewChanges.txtClose": "Закрити",
|
||||||
"Common.Views.ReviewChanges.txtDocLang": "Мова",
|
"Common.Views.ReviewChanges.txtDocLang": "Мова",
|
||||||
"Common.Views.ReviewChanges.txtFinal": "Усі зміни прийняті (попередній перегляд)",
|
"Common.Views.ReviewChanges.txtFinal": "Усі зміни прийняті (попередній перегляд)",
|
||||||
|
"Common.Views.ReviewChanges.txtFinalCap": "Фінальний",
|
||||||
"Common.Views.ReviewChanges.txtMarkup": "Усі зміни (редагування)",
|
"Common.Views.ReviewChanges.txtMarkup": "Усі зміни (редагування)",
|
||||||
|
"Common.Views.ReviewChanges.txtMarkupCap": "Зміни",
|
||||||
"Common.Views.ReviewChanges.txtNext": "Наступний",
|
"Common.Views.ReviewChanges.txtNext": "Наступний",
|
||||||
"Common.Views.ReviewChanges.txtOriginal": "Усі зміни відхилено (попередній перегляд)",
|
"Common.Views.ReviewChanges.txtOriginal": "Усі зміни відхилено (попередній перегляд)",
|
||||||
|
"Common.Views.ReviewChanges.txtOriginalCap": "Початковий",
|
||||||
"Common.Views.ReviewChanges.txtPrev": "Попередній",
|
"Common.Views.ReviewChanges.txtPrev": "Попередній",
|
||||||
"Common.Views.ReviewChanges.txtReject": "Відхилити",
|
"Common.Views.ReviewChanges.txtReject": "Відхилити",
|
||||||
"Common.Views.ReviewChanges.txtRejectAll": "Відхилити усі зміни",
|
"Common.Views.ReviewChanges.txtRejectAll": "Відхилити усі зміни",
|
||||||
|
@ -234,7 +238,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Ви намагаєтеся виконати дію, у якої у вас немає прав. <br> Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.",
|
"DE.Controllers.Main.errorAccessDeny": "Ви намагаєтеся виконати дію, у якої у вас немає прав. <br> Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL-адреса зображення невірна",
|
"DE.Controllers.Main.errorBadImageUrl": "URL-адреса зображення невірна",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "З'єднання з сервером втрачено. Документ не можна редагувати прямо зараз.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "З'єднання з сервером втрачено. Документ не можна редагувати прямо зараз.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Не вдалося зберегти документ. Будь ласка, перевірте налаштування з'єднання або зверніться до свого адміністратора.<br>Після натискання кнопки «ОК» вам буде запропоновано завантажити документ. <br><br>Більше інформації про підключення сервера документів <a href=\"%1\" target=\"_blank\">тут</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Не вдалося зберегти документ. Будь ласка, перевірте налаштування з'єднання або зверніться до свого адміністратора.<br>Після натискання кнопки «ОК» вам буде запропоновано завантажити документ.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Зовнішня помилка. <br> Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Зовнішня помилка. <br> Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.",
|
"DE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ",
|
"DE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ",
|
||||||
|
@ -692,7 +696,7 @@
|
||||||
"DE.Views.ChartSettings.textEditData": "Редагувати дату",
|
"DE.Views.ChartSettings.textEditData": "Редагувати дату",
|
||||||
"DE.Views.ChartSettings.textHeight": "Висота",
|
"DE.Views.ChartSettings.textHeight": "Висота",
|
||||||
"DE.Views.ChartSettings.textLine": "Лінія",
|
"DE.Views.ChartSettings.textLine": "Лінія",
|
||||||
"DE.Views.ChartSettings.textOriginalSize": "Розмір за умовчанням",
|
"DE.Views.ChartSettings.textOriginalSize": "За замовчуванням",
|
||||||
"DE.Views.ChartSettings.textPie": "Пиріг",
|
"DE.Views.ChartSettings.textPie": "Пиріг",
|
||||||
"DE.Views.ChartSettings.textPoint": "XY (розсіювання)",
|
"DE.Views.ChartSettings.textPoint": "XY (розсіювання)",
|
||||||
"DE.Views.ChartSettings.textSize": "Розмір",
|
"DE.Views.ChartSettings.textSize": "Розмір",
|
||||||
|
@ -759,7 +763,7 @@
|
||||||
"DE.Views.DocumentHolder.mergeCellsText": "Об'єднати клітинки",
|
"DE.Views.DocumentHolder.mergeCellsText": "Об'єднати клітинки",
|
||||||
"DE.Views.DocumentHolder.moreText": "Більше варіантів...",
|
"DE.Views.DocumentHolder.moreText": "Більше варіантів...",
|
||||||
"DE.Views.DocumentHolder.noSpellVariantsText": "Немає варіантів",
|
"DE.Views.DocumentHolder.noSpellVariantsText": "Немає варіантів",
|
||||||
"DE.Views.DocumentHolder.originalSizeText": "Розмір за умовчанням",
|
"DE.Views.DocumentHolder.originalSizeText": "За замовчуванням",
|
||||||
"DE.Views.DocumentHolder.paragraphText": "Параграф",
|
"DE.Views.DocumentHolder.paragraphText": "Параграф",
|
||||||
"DE.Views.DocumentHolder.removeHyperlinkText": "Видалити гіперпосилання",
|
"DE.Views.DocumentHolder.removeHyperlinkText": "Видалити гіперпосилання",
|
||||||
"DE.Views.DocumentHolder.rightText": "Право",
|
"DE.Views.DocumentHolder.rightText": "Право",
|
||||||
|
@ -944,15 +948,21 @@
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Створіть новий порожній текстовий документ, який ви зможете стильувати та форматувати після його створення під час редагування. Або виберіть один із шаблонів, щоб запустити документ певного типу або мети, де деякі стилі вже були попередньо застосовані.",
|
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Створіть новий порожній текстовий документ, який ви зможете стильувати та форматувати після його створення під час редагування. Або виберіть один із шаблонів, щоб запустити документ певного типу або мети, де деякі стилі вже були попередньо застосовані.",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Новий текстовий документ",
|
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Новий текстовий документ",
|
||||||
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Немає шаблонів",
|
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Немає шаблонів",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Додаток",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Автор",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Змінити права доступу",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Коментар",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Створено",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Завантаження...",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Завантаження...",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Змінив",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Змінено",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Сторінки",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Сторінки",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Параграфи",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Параграфи",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Місцезнаходження",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Місцезнаходження",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Особи, які мають права",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Особи, які мають права",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Символи з пробілами",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Символи з пробілами",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Статистика",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Статистика",
|
||||||
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Символи",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Символи",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва документу",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Назва документу",
|
||||||
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Слова",
|
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Слова",
|
||||||
|
@ -1029,7 +1039,8 @@
|
||||||
"DE.Views.ImageSettings.textFromUrl": "З URL",
|
"DE.Views.ImageSettings.textFromUrl": "З URL",
|
||||||
"DE.Views.ImageSettings.textHeight": "Висота",
|
"DE.Views.ImageSettings.textHeight": "Висота",
|
||||||
"DE.Views.ImageSettings.textInsert": "Замінити зображення",
|
"DE.Views.ImageSettings.textInsert": "Замінити зображення",
|
||||||
"DE.Views.ImageSettings.textOriginalSize": "Розмір за умовчанням",
|
"DE.Views.ImageSettings.textOriginalSize": "За замовчуванням",
|
||||||
|
"DE.Views.ImageSettings.textRotation": "Поворот",
|
||||||
"DE.Views.ImageSettings.textSize": "Розмір",
|
"DE.Views.ImageSettings.textSize": "Розмір",
|
||||||
"DE.Views.ImageSettings.textWidth": "Ширина",
|
"DE.Views.ImageSettings.textWidth": "Ширина",
|
||||||
"DE.Views.ImageSettings.textWrap": "Стиль упаковки",
|
"DE.Views.ImageSettings.textWrap": "Стиль упаковки",
|
||||||
|
@ -1047,6 +1058,7 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Опис",
|
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Опис",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.",
|
"DE.Views.ImageSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Назва",
|
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Назва",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textAngle": "Нахил",
|
||||||
"DE.Views.ImageSettingsAdvanced.textArrows": "Стрілки",
|
"DE.Views.ImageSettingsAdvanced.textArrows": "Стрілки",
|
||||||
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Блокування співвідношення сторін",
|
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Блокування співвідношення сторін",
|
||||||
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Початковий розмір",
|
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Початковий розмір",
|
||||||
|
@ -1064,8 +1076,10 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textEndSize": "Кінець розміру",
|
"DE.Views.ImageSettingsAdvanced.textEndSize": "Кінець розміру",
|
||||||
"DE.Views.ImageSettingsAdvanced.textEndStyle": "Кінець стилю",
|
"DE.Views.ImageSettingsAdvanced.textEndStyle": "Кінець стилю",
|
||||||
"DE.Views.ImageSettingsAdvanced.textFlat": "Площина",
|
"DE.Views.ImageSettingsAdvanced.textFlat": "Площина",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textFlipped": "Віддзеркалено",
|
||||||
"DE.Views.ImageSettingsAdvanced.textHeight": "Висота",
|
"DE.Views.ImageSettingsAdvanced.textHeight": "Висота",
|
||||||
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Горізонтальний",
|
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Горізонтальний",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textHorizontally": "горизонтально",
|
||||||
"DE.Views.ImageSettingsAdvanced.textJoinType": "Приєднати тип",
|
"DE.Views.ImageSettingsAdvanced.textJoinType": "Приєднати тип",
|
||||||
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Сталі пропорції",
|
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Сталі пропорції",
|
||||||
"DE.Views.ImageSettingsAdvanced.textLeft": "Лівий",
|
"DE.Views.ImageSettingsAdvanced.textLeft": "Лівий",
|
||||||
|
@ -1076,7 +1090,7 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textMiter": "Мітер",
|
"DE.Views.ImageSettingsAdvanced.textMiter": "Мітер",
|
||||||
"DE.Views.ImageSettingsAdvanced.textMove": "Перемістити об'єкт з текстом",
|
"DE.Views.ImageSettingsAdvanced.textMove": "Перемістити об'єкт з текстом",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOptions": "Опції",
|
"DE.Views.ImageSettingsAdvanced.textOptions": "Опції",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Розмір за умовчанням",
|
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "За замовчуванням",
|
||||||
"DE.Views.ImageSettingsAdvanced.textOverlap": "Дозволити перекриття",
|
"DE.Views.ImageSettingsAdvanced.textOverlap": "Дозволити перекриття",
|
||||||
"DE.Views.ImageSettingsAdvanced.textPage": "Сторінка",
|
"DE.Views.ImageSettingsAdvanced.textPage": "Сторінка",
|
||||||
"DE.Views.ImageSettingsAdvanced.textParagraph": "Параграф",
|
"DE.Views.ImageSettingsAdvanced.textParagraph": "Параграф",
|
||||||
|
@ -1087,6 +1101,7 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textRight": "Право",
|
"DE.Views.ImageSettingsAdvanced.textRight": "Право",
|
||||||
"DE.Views.ImageSettingsAdvanced.textRightMargin": "праве поле",
|
"DE.Views.ImageSettingsAdvanced.textRightMargin": "праве поле",
|
||||||
"DE.Views.ImageSettingsAdvanced.textRightOf": "праворуч від",
|
"DE.Views.ImageSettingsAdvanced.textRightOf": "праворуч від",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textRotation": "Поворот",
|
||||||
"DE.Views.ImageSettingsAdvanced.textRound": "Круглий",
|
"DE.Views.ImageSettingsAdvanced.textRound": "Круглий",
|
||||||
"DE.Views.ImageSettingsAdvanced.textShape": "Параметри форми",
|
"DE.Views.ImageSettingsAdvanced.textShape": "Параметри форми",
|
||||||
"DE.Views.ImageSettingsAdvanced.textSize": "Розмір",
|
"DE.Views.ImageSettingsAdvanced.textSize": "Розмір",
|
||||||
|
@ -1097,6 +1112,7 @@
|
||||||
"DE.Views.ImageSettingsAdvanced.textTop": "Верх",
|
"DE.Views.ImageSettingsAdvanced.textTop": "Верх",
|
||||||
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Верхнє поле",
|
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Верхнє поле",
|
||||||
"DE.Views.ImageSettingsAdvanced.textVertical": "Вертикальний",
|
"DE.Views.ImageSettingsAdvanced.textVertical": "Вертикальний",
|
||||||
|
"DE.Views.ImageSettingsAdvanced.textVertically": "вертикально",
|
||||||
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Ваги та стрілки",
|
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Ваги та стрілки",
|
||||||
"DE.Views.ImageSettingsAdvanced.textWidth": "Ширина",
|
"DE.Views.ImageSettingsAdvanced.textWidth": "Ширина",
|
||||||
"DE.Views.ImageSettingsAdvanced.textWrap": "Стиль упаковки",
|
"DE.Views.ImageSettingsAdvanced.textWrap": "Стиль упаковки",
|
||||||
|
@ -1205,7 +1221,7 @@
|
||||||
"DE.Views.ParagraphSettings.textNewColor": "Додати новий спеціальний колір",
|
"DE.Views.ParagraphSettings.textNewColor": "Додати новий спеціальний колір",
|
||||||
"DE.Views.ParagraphSettings.txtAutoText": "Авто",
|
"DE.Views.ParagraphSettings.txtAutoText": "Авто",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Вказані вкладки з'являться в цьому полі",
|
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Вказані вкладки з'являться в цьому полі",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Всі шапки",
|
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Усі великі",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Межі та заповнення",
|
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Межі та заповнення",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Розрив сторінки перед",
|
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Розрив сторінки перед",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Подвійне перекреслення",
|
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Подвійне перекреслення",
|
||||||
|
@ -1218,7 +1234,7 @@
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Відступи та розміщення",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Відступи та розміщення",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Розміщення",
|
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Розміщення",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Малі шапки",
|
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Зменшені великі",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Перекреслення",
|
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Перекреслення",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Підрядковий",
|
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Підрядковий",
|
||||||
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Надрядковий",
|
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Надрядковий",
|
||||||
|
@ -1288,6 +1304,7 @@
|
||||||
"DE.Views.ShapeSettings.textNoFill": "Немає заповнення",
|
"DE.Views.ShapeSettings.textNoFill": "Немає заповнення",
|
||||||
"DE.Views.ShapeSettings.textPatternFill": "Візерунок",
|
"DE.Views.ShapeSettings.textPatternFill": "Візерунок",
|
||||||
"DE.Views.ShapeSettings.textRadial": "Радіальний",
|
"DE.Views.ShapeSettings.textRadial": "Радіальний",
|
||||||
|
"DE.Views.ShapeSettings.textRotation": "Поворот",
|
||||||
"DE.Views.ShapeSettings.textSelectTexture": "Обрати",
|
"DE.Views.ShapeSettings.textSelectTexture": "Обрати",
|
||||||
"DE.Views.ShapeSettings.textStretch": "Розтягнути",
|
"DE.Views.ShapeSettings.textStretch": "Розтягнути",
|
||||||
"DE.Views.ShapeSettings.textStyle": "Стиль",
|
"DE.Views.ShapeSettings.textStyle": "Стиль",
|
||||||
|
@ -1544,10 +1561,12 @@
|
||||||
"DE.Views.Toolbar.textSubscript": "Підрядковий",
|
"DE.Views.Toolbar.textSubscript": "Підрядковий",
|
||||||
"DE.Views.Toolbar.textSuperscript": "Надрядковий",
|
"DE.Views.Toolbar.textSuperscript": "Надрядковий",
|
||||||
"DE.Views.Toolbar.textSurface": "Поверхня",
|
"DE.Views.Toolbar.textSurface": "Поверхня",
|
||||||
|
"DE.Views.Toolbar.textTabCollaboration": "Співпраця",
|
||||||
"DE.Views.Toolbar.textTabFile": "Файл",
|
"DE.Views.Toolbar.textTabFile": "Файл",
|
||||||
"DE.Views.Toolbar.textTabHome": "Головна",
|
"DE.Views.Toolbar.textTabHome": "Головна",
|
||||||
"DE.Views.Toolbar.textTabInsert": "Вставити",
|
"DE.Views.Toolbar.textTabInsert": "Вставити",
|
||||||
"DE.Views.Toolbar.textTabLayout": "Макет",
|
"DE.Views.Toolbar.textTabLayout": "Макет",
|
||||||
|
"DE.Views.Toolbar.textTabLinks": "Посилання",
|
||||||
"DE.Views.Toolbar.textTabReview": "Перевірити",
|
"DE.Views.Toolbar.textTabReview": "Перевірити",
|
||||||
"DE.Views.Toolbar.textTitleError": "Помилка",
|
"DE.Views.Toolbar.textTitleError": "Помилка",
|
||||||
"DE.Views.Toolbar.textToCurrent": "До поточної позиції",
|
"DE.Views.Toolbar.textToCurrent": "До поточної позиції",
|
||||||
|
@ -1558,6 +1577,7 @@
|
||||||
"DE.Views.Toolbar.tipAlignLeft": "Вирівняти зліва",
|
"DE.Views.Toolbar.tipAlignLeft": "Вирівняти зліва",
|
||||||
"DE.Views.Toolbar.tipAlignRight": "Вирівняти справа",
|
"DE.Views.Toolbar.tipAlignRight": "Вирівняти справа",
|
||||||
"DE.Views.Toolbar.tipBack": "Назад",
|
"DE.Views.Toolbar.tipBack": "Назад",
|
||||||
|
"DE.Views.Toolbar.tipBlankPage": "Вставити чисту сторінку",
|
||||||
"DE.Views.Toolbar.tipChangeChart": "Змінити тип діаграми",
|
"DE.Views.Toolbar.tipChangeChart": "Змінити тип діаграми",
|
||||||
"DE.Views.Toolbar.tipClearStyle": "Очистити стиль",
|
"DE.Views.Toolbar.tipClearStyle": "Очистити стиль",
|
||||||
"DE.Views.Toolbar.tipColorSchemas": "Змінити кольорову схему",
|
"DE.Views.Toolbar.tipColorSchemas": "Змінити кольорову схему",
|
||||||
|
@ -1567,7 +1587,7 @@
|
||||||
"DE.Views.Toolbar.tipDecFont": "Зменшення розміру шрифту",
|
"DE.Views.Toolbar.tipDecFont": "Зменшення розміру шрифту",
|
||||||
"DE.Views.Toolbar.tipDecPrLeft": "Зменшити відступ",
|
"DE.Views.Toolbar.tipDecPrLeft": "Зменшити відступ",
|
||||||
"DE.Views.Toolbar.tipDropCap": "Вставити буквицю",
|
"DE.Views.Toolbar.tipDropCap": "Вставити буквицю",
|
||||||
"DE.Views.Toolbar.tipEditHeader": "Редагувати заголовок або нижній колонтитул",
|
"DE.Views.Toolbar.tipEditHeader": "Редагувати верхній або нижній колонтитул",
|
||||||
"DE.Views.Toolbar.tipFontColor": "Колір шрифту",
|
"DE.Views.Toolbar.tipFontColor": "Колір шрифту",
|
||||||
"DE.Views.Toolbar.tipFontName": "Шрифт",
|
"DE.Views.Toolbar.tipFontName": "Шрифт",
|
||||||
"DE.Views.Toolbar.tipFontSize": "Розмір шрифта",
|
"DE.Views.Toolbar.tipFontSize": "Розмір шрифта",
|
||||||
|
|
|
@ -235,7 +235,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Bạn đang cố gắng thực hiện hành động mà bạn không có quyền.<br>Vui lòng liên hệ với quản trị viên Server Tài liệu của bạn.",
|
"DE.Controllers.Main.errorAccessDeny": "Bạn đang cố gắng thực hiện hành động mà bạn không có quyền.<br>Vui lòng liên hệ với quản trị viên Server Tài liệu của bạn.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL hình ảnh không chính xác",
|
"DE.Controllers.Main.errorBadImageUrl": "URL hình ảnh không chính xác",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Mất kết nối server. Không thể chỉnh sửa tài liệu ngay lúc này.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Mất kết nối server. Không thể chỉnh sửa tài liệu ngay lúc này.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Không thể lưu tài liệu. Vui lòng kiểm tra cài đặt kết nối hoặc liên hệ với quản trị viên của bạn.<br>Khi bạn nhấp vào nút 'OK', bạn sẽ được nhắc tải xuống tài liệu.<br><br>Tìm thêm thông tin về kết nối Server Tài liệu <a href=\"%1\" target=\"_blank\">ở đây</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Không thể lưu tài liệu. Vui lòng kiểm tra cài đặt kết nối hoặc liên hệ với quản trị viên của bạn.<br>Khi bạn nhấp vào nút 'OK', bạn sẽ được nhắc tải xuống tài liệu.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Lỗi bên ngoài.<br>Lỗi kết nối cơ sở dữ liệu. Vui lòng liên hệ bộ phận hỗ trợ trong trường hợp lỗi vẫn còn.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Lỗi bên ngoài.<br>Lỗi kết nối cơ sở dữ liệu. Vui lòng liên hệ bộ phận hỗ trợ trong trường hợp lỗi vẫn còn.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Phạm vi dữ liệu không chính xác.",
|
"DE.Controllers.Main.errorDataRange": "Phạm vi dữ liệu không chính xác.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Mã lỗi: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Mã lỗi: %1",
|
||||||
|
|
|
@ -321,7 +321,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "您正在尝试执行您没有权限的操作。<br>请联系您的文档服务器管理员.",
|
"DE.Controllers.Main.errorAccessDeny": "您正在尝试执行您没有权限的操作。<br>请联系您的文档服务器管理员.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "图片地址不正确",
|
"DE.Controllers.Main.errorBadImageUrl": "图片地址不正确",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "服务器连接丢失。该文档现在无法编辑",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "服务器连接丢失。该文档现在无法编辑",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "这份文件无法保存。请检查连接设置或联系您的管理员。<br>当你点击“OK”按钮,系统将提示您下载文档。<br><br>找到更多信息连接文件服务器<a href=\"%1\" target=\"平等\">在这里</>",
|
"DE.Controllers.Main.errorConnectToServer": "这份文件无法保存。请检查连接设置或联系您的管理员。<br>当你点击“OK”按钮,系统将提示您下载文档。",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "外部错误。<br>数据库连接错误。如果错误仍然存在,请联系支持人员。",
|
"DE.Controllers.Main.errorDatabaseConnection": "外部错误。<br>数据库连接错误。如果错误仍然存在,请联系支持人员。",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "加密更改已收到,无法对其解密。",
|
"DE.Controllers.Main.errorDataEncrypted": "加密更改已收到,无法对其解密。",
|
||||||
"DE.Controllers.Main.errorDataRange": "数据范围不正确",
|
"DE.Controllers.Main.errorDataRange": "数据范围不正确",
|
||||||
|
|
|
@ -1,35 +1,3 @@
|
||||||
/*
|
|
||||||
*
|
|
||||||
* (c) Copyright Ascensio System SIA 2010-2019
|
|
||||||
*
|
|
||||||
* This program is a free software product. You can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|
||||||
* version 3 as published by the Free Software Foundation. In accordance with
|
|
||||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
|
||||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
|
||||||
* of any third-party rights.
|
|
||||||
*
|
|
||||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|
||||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
|
||||||
*
|
|
||||||
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
|
||||||
* street, Riga, Latvia, EU, LV-1050.
|
|
||||||
*
|
|
||||||
* The interactive user interfaces in modified source and object code versions
|
|
||||||
* of the Program must display Appropriate Legal Notices, as required under
|
|
||||||
* Section 5 of the GNU AGPL version 3.
|
|
||||||
*
|
|
||||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
|
||||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
|
||||||
* grant you any rights under trademark law for use of our trademarks.
|
|
||||||
*
|
|
||||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
|
||||||
* well as technical writing content are licensed under the terms of the
|
|
||||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
|
||||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
function onhyperlinkclick(element) {
|
function onhyperlinkclick(element) {
|
||||||
function _postMessage(msg) {
|
function _postMessage(msg) {
|
||||||
if (window.parent && window.JSON) {
|
if (window.parent && window.JSON) {
|
||||||
|
|
|
@ -150,12 +150,17 @@
|
||||||
|
|
||||||
.doc-placeholder {
|
.doc-placeholder {
|
||||||
background: #fbfbfb;
|
background: #fbfbfb;
|
||||||
width: 100%;
|
width: 796px;
|
||||||
max-width: 796px;
|
|
||||||
margin: 40px auto;
|
margin: 40px auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: 1px solid #dfdfdf;
|
border: 1px solid #dfdfdf;
|
||||||
padding-top: 50px;
|
padding-top: 50px;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
-webkit-animation: flickerAnimation 2s infinite ease-in-out;
|
-webkit-animation: flickerAnimation 2s infinite ease-in-out;
|
||||||
-moz-animation: flickerAnimation 2s infinite ease-in-out;
|
-moz-animation: flickerAnimation 2s infinite ease-in-out;
|
||||||
|
|
|
@ -75,4 +75,9 @@ label {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: none;
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#editor_sdk {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
|
@ -221,7 +221,7 @@ define([
|
||||||
me.api.asc_setLocale(me.editorConfig.lang);
|
me.api.asc_setLocale(me.editorConfig.lang);
|
||||||
|
|
||||||
if (!me.editorConfig.customization || !(me.editorConfig.customization.loaderName || me.editorConfig.customization.loaderLogo))
|
if (!me.editorConfig.customization || !(me.editorConfig.customization.loaderName || me.editorConfig.customization.loaderLogo))
|
||||||
$('#editor_sdk').append('<div class="doc-placeholder"><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div></div>');
|
$('#editor-container').append('<div class="doc-placeholder"><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div><div class="line"></div></div>');
|
||||||
|
|
||||||
// if (this.appOptions.location == 'us' || this.appOptions.location == 'ca')
|
// if (this.appOptions.location == 'us' || this.appOptions.location == 'ca')
|
||||||
// Common.Utils.Metric.setDefaultMetric(Common.Utils.Metric.c_MetricUnits.inch);
|
// Common.Utils.Metric.setDefaultMetric(Common.Utils.Metric.c_MetricUnits.inch);
|
||||||
|
@ -948,7 +948,7 @@ define([
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Asc.c_oAscError.ID.Warning:
|
case Asc.c_oAscError.ID.Warning:
|
||||||
config.msg = this.errorConnectToServer.replace('%1', '{{API_URL_EDITING_CALLBACK}}');
|
config.msg = this.errorConnectToServer;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Asc.c_oAscError.ID.UplImageUrl:
|
case Asc.c_oAscError.ID.UplImageUrl:
|
||||||
|
@ -1399,12 +1399,12 @@ define([
|
||||||
sendMergeTitle: 'Sending Merge',
|
sendMergeTitle: 'Sending Merge',
|
||||||
sendMergeText: 'Sending Merge...',
|
sendMergeText: 'Sending Merge...',
|
||||||
txtArt: 'Your text here',
|
txtArt: 'Your text here',
|
||||||
errorConnectToServer: ' The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the \'OK\' button, you will be prompted to download the document.<br><br>Find more information about connecting Document Server <a href=\"%1\" target=\"_blank\">here</a>',
|
errorConnectToServer: ' The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the \'OK\' button, you will be prompted to download the document.',
|
||||||
textTryUndoRedo: 'The Undo/Redo functions are disabled for the Fast co-editing mode.',
|
textTryUndoRedo: 'The Undo/Redo functions are disabled for the Fast co-editing mode.',
|
||||||
textBuyNow: 'Visit website',
|
textBuyNow: 'Visit website',
|
||||||
textNoLicenseTitle: '%1 open source version',
|
textNoLicenseTitle: '%1 open source version',
|
||||||
textContactUs: 'Contact sales',
|
textContactUs: 'Contact sales',
|
||||||
errorViewerDisconnect: 'Connection is lost. You can still view the document,<br>but will not be able to download until the connection is restored.',
|
errorViewerDisconnect: 'Connection is lost. You can still view the document,<br>but will not be able to download until the connection is restored and page is reloaded.',
|
||||||
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
||||||
titleLicenseExp: 'License expired',
|
titleLicenseExp: 'License expired',
|
||||||
openErrorText: 'An error has occurred while opening the file',
|
openErrorText: 'An error has occurred while opening the file',
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<div class="view view-main">
|
<div class="view view-main">
|
||||||
<div class="pages navbar-through">
|
<div class="pages navbar-through">
|
||||||
<div data-page="index" class="page">
|
<div data-page="index" class="page">
|
||||||
<div id="editor_sdk" class="page-content no-fastclick"></div>
|
<div id="editor-container" class="page-content no-fastclick"><div id="editor_sdk" class="no-fastclick"></div></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -159,7 +159,7 @@ define([
|
||||||
textWrap: 'Wrap',
|
textWrap: 'Wrap',
|
||||||
textReplace: 'Replace',
|
textReplace: 'Replace',
|
||||||
textReorder: 'Reorder',
|
textReorder: 'Reorder',
|
||||||
textDefault: 'Default Size',
|
textDefault: 'Actual Size',
|
||||||
textRemove: 'Remove Image',
|
textRemove: 'Remove Image',
|
||||||
textBack: 'Back',
|
textBack: 'Back',
|
||||||
textToForeground: 'Bring to Foreground',
|
textToForeground: 'Bring to Foreground',
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права. <br> Моля, свържете се с администратора на сървъра за документи.",
|
"DE.Controllers.Main.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права. <br> Моля, свържете се с администратора на сървъра за документи.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL адресът на изображението е неправилен",
|
"DE.Controllers.Main.errorBadImageUrl": "URL адресът на изображението е неправилен",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Връзката със сървъра е загубена. Вече не можете да редактирате.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Връзката със сървъра е загубена. Вече не можете да редактирате.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Документът не може да бъде запасен. Моля, проверете настройките за връзка или се свържете с администратора си.<br>Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа. <br><br>Намерете повече информация за свързването на сървър за документи <a href=\"%1\" target=\"_blank\">тук</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Документът не може да бъде запасен. Моля, проверете настройките за връзка или се свържете с администратора си.<br>Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Външна грешка. <br> Грешка при свързване към база данни. Моля, свържете се с екипа за поддръжка.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Външна грешка. <br> Грешка при свързване към база данни. Моля, свържете се с екипа за поддръжка.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Получени са криптирани промени, които не могат да се дефинират.",
|
"DE.Controllers.Main.errorDataEncrypted": "Получени са криптирани промени, които не могат да се дефинират.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Неправилен обхват от данни.",
|
"DE.Controllers.Main.errorDataRange": "Неправилен обхват от данни.",
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
"DE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná",
|
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové připojení bylo ztraceno. Nadále nemůžete editovat.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové připojení bylo ztraceno. Nadále nemůžete editovat.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím, zkontrolujte nastavení vašeho připojení nebo kontaktujte vašeho administrátora.<br> Při kliknutí na tlačítko \"OK\" budete vyzváni ke stažení dokumentu.<br><br> Více informací o připojení najdete v Dokumentovém serveru <a href=\"%1\" target=\"_blank\">here</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím, zkontrolujte nastavení vašeho připojení nebo kontaktujte vašeho administrátora.<br> Při kliknutí na tlačítko \"OK\" budete vyzváni ke stažení dokumentu.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Externí chyba.<br>Chyba připojení k databázi. Prosím, kontaktujte podporu.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Externí chyba.<br>Chyba připojení k databázi. Prosím, kontaktujte podporu.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.",
|
"DE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Sie versuchen die Änderungen vorzunehemen, für die Sie keine Berechtigungen haben.<br>Wenden Sie sich an Ihren Document Server Serveradministrator.",
|
"DE.Controllers.Main.errorAccessDeny": "Sie versuchen die Änderungen vorzunehemen, für die Sie keine Berechtigungen haben.<br>Wenden Sie sich an Ihren Document Server Serveradministrator.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch",
|
"DE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Sie können nicht mehr editieren.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Sie können nicht mehr editieren.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.<br><br>Mehr Informationen über die Verbindung zum Dokumentenserver finden Sie <a href=\"%1\" target=\"_blank\">hier</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Externer Fehler.<br>Datenbank-Verbindungsfehler. Wenden Sie sich an den Support.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Externer Fehler.<br>Datenbank-Verbindungsfehler. Wenden Sie sich an den Support.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
|
"DE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
"DE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
||||||
|
|
|
@ -58,9 +58,9 @@
|
||||||
"Common.Controllers.Collaboration.textTabs": "Change tabs",
|
"Common.Controllers.Collaboration.textTabs": "Change tabs",
|
||||||
"Common.Controllers.Collaboration.textUnderline": "Underline",
|
"Common.Controllers.Collaboration.textUnderline": "Underline",
|
||||||
"Common.Controllers.Collaboration.textWidow": "Widow control",
|
"Common.Controllers.Collaboration.textWidow": "Widow control",
|
||||||
|
"Common.UI.ThemeColorPalette.textCustomColors": "Custom Colors",
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors",
|
||||||
"Common.UI.ThemeColorPalette.textCustomColors": "Custom Colors",
|
|
||||||
"Common.Utils.Metric.txtCm": "cm",
|
"Common.Utils.Metric.txtCm": "cm",
|
||||||
"Common.Utils.Metric.txtPt": "pt",
|
"Common.Utils.Metric.txtPt": "pt",
|
||||||
"Common.Views.Collaboration.textAcceptAllChanges": "Accept All Changes",
|
"Common.Views.Collaboration.textAcceptAllChanges": "Accept All Changes",
|
||||||
|
@ -141,13 +141,14 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.",
|
"DE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect",
|
"DE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. You can't edit anymore.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. You can't edit anymore.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.<br><br>Find more information about connecting Document Server <a href=\"%1\" target=\"_blank\">here</a>",
|
"DE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
|
"DE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. Please, contact support.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
|
"DE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Incorrect data range.",
|
"DE.Controllers.Main.errorDataRange": "Incorrect data range.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Error code: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Error code: %1",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.<br>Use the 'Download' option to save the file backup copy to your computer hard drive.",
|
"DE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.<br>Use the 'Download' option to save the file backup copy to your computer hard drive.",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.",
|
"DE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
|
"DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
|
"DE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Loading failed",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Loading failed",
|
||||||
|
@ -158,7 +159,7 @@
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
"DE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "The number of users was exceeded",
|
"DE.Controllers.Main.errorUsersExceed": "The number of users was exceeded",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download until the connection is restored.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download it until the connection is restored and page is reloaded.",
|
||||||
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.",
|
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Loading data...",
|
"DE.Controllers.Main.loadFontsTextText": "Loading data...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Loading Data",
|
"DE.Controllers.Main.loadFontsTitleText": "Loading Data",
|
||||||
|
@ -248,7 +249,6 @@
|
||||||
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
"DE.Controllers.Main.warnNoLicense": "This version of %1 editors has certain limitations for concurrent connections to the document server.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
"DE.Controllers.Main.warnNoLicenseUsers": "This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.",
|
||||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||||
"DE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
|
|
||||||
"DE.Controllers.Search.textNoTextFound": "Text not Found",
|
"DE.Controllers.Search.textNoTextFound": "Text not Found",
|
||||||
"DE.Controllers.Search.textReplaceAll": "Replace All",
|
"DE.Controllers.Search.textReplaceAll": "Replace All",
|
||||||
"DE.Controllers.Settings.notcriticalErrorTitle": "Warning",
|
"DE.Controllers.Settings.notcriticalErrorTitle": "Warning",
|
||||||
|
@ -294,12 +294,14 @@
|
||||||
"DE.Views.AddOther.textSectionBreak": "Section Break",
|
"DE.Views.AddOther.textSectionBreak": "Section Break",
|
||||||
"DE.Views.AddOther.textStartFrom": "Start At",
|
"DE.Views.AddOther.textStartFrom": "Start At",
|
||||||
"DE.Views.AddOther.textTip": "Screen Tip",
|
"DE.Views.AddOther.textTip": "Screen Tip",
|
||||||
|
"DE.Views.EditChart.textAddCustomColor": "Add Custom Color",
|
||||||
"DE.Views.EditChart.textAlign": "Align",
|
"DE.Views.EditChart.textAlign": "Align",
|
||||||
"DE.Views.EditChart.textBack": "Back",
|
"DE.Views.EditChart.textBack": "Back",
|
||||||
"DE.Views.EditChart.textBackward": "Move Backward",
|
"DE.Views.EditChart.textBackward": "Move Backward",
|
||||||
"DE.Views.EditChart.textBehind": "Behind",
|
"DE.Views.EditChart.textBehind": "Behind",
|
||||||
"DE.Views.EditChart.textBorder": "Border",
|
"DE.Views.EditChart.textBorder": "Border",
|
||||||
"DE.Views.EditChart.textColor": "Color",
|
"DE.Views.EditChart.textColor": "Color",
|
||||||
|
"DE.Views.EditChart.textCustomColor": "Custom Color",
|
||||||
"DE.Views.EditChart.textDistanceText": "Distance from Text",
|
"DE.Views.EditChart.textDistanceText": "Distance from Text",
|
||||||
"DE.Views.EditChart.textFill": "Fill",
|
"DE.Views.EditChart.textFill": "Fill",
|
||||||
"DE.Views.EditChart.textForward": "Move Forward",
|
"DE.Views.EditChart.textForward": "Move Forward",
|
||||||
|
@ -319,8 +321,6 @@
|
||||||
"DE.Views.EditChart.textTopBottom": "Top and Bottom",
|
"DE.Views.EditChart.textTopBottom": "Top and Bottom",
|
||||||
"DE.Views.EditChart.textType": "Type",
|
"DE.Views.EditChart.textType": "Type",
|
||||||
"DE.Views.EditChart.textWrap": "Wrap",
|
"DE.Views.EditChart.textWrap": "Wrap",
|
||||||
"DE.Views.EditChart.textAddCustomColor": "Add Custom Color",
|
|
||||||
"DE.Views.EditChart.textCustomColor": "Custom Color",
|
|
||||||
"DE.Views.EditHeader.textDiffFirst": "Different first page",
|
"DE.Views.EditHeader.textDiffFirst": "Different first page",
|
||||||
"DE.Views.EditHeader.textDiffOdd": "Different odd and even pages",
|
"DE.Views.EditHeader.textDiffOdd": "Different odd and even pages",
|
||||||
"DE.Views.EditHeader.textFrom": "Start at",
|
"DE.Views.EditHeader.textFrom": "Start at",
|
||||||
|
@ -337,7 +337,7 @@
|
||||||
"DE.Views.EditImage.textBack": "Back",
|
"DE.Views.EditImage.textBack": "Back",
|
||||||
"DE.Views.EditImage.textBackward": "Move Backward",
|
"DE.Views.EditImage.textBackward": "Move Backward",
|
||||||
"DE.Views.EditImage.textBehind": "Behind",
|
"DE.Views.EditImage.textBehind": "Behind",
|
||||||
"DE.Views.EditImage.textDefault": "Default Size",
|
"DE.Views.EditImage.textDefault": "Actual Size",
|
||||||
"DE.Views.EditImage.textDistanceText": "Distance from Text",
|
"DE.Views.EditImage.textDistanceText": "Distance from Text",
|
||||||
"DE.Views.EditImage.textForward": "Move Forward",
|
"DE.Views.EditImage.textForward": "Move Forward",
|
||||||
"DE.Views.EditImage.textFromLibrary": "Picture from Library",
|
"DE.Views.EditImage.textFromLibrary": "Picture from Library",
|
||||||
|
@ -359,6 +359,7 @@
|
||||||
"DE.Views.EditImage.textToForeground": "Bring to Foreground",
|
"DE.Views.EditImage.textToForeground": "Bring to Foreground",
|
||||||
"DE.Views.EditImage.textTopBottom": "Top and Bottom",
|
"DE.Views.EditImage.textTopBottom": "Top and Bottom",
|
||||||
"DE.Views.EditImage.textWrap": "Wrap",
|
"DE.Views.EditImage.textWrap": "Wrap",
|
||||||
|
"DE.Views.EditParagraph.textAddCustomColor": "Add Custom Color",
|
||||||
"DE.Views.EditParagraph.textAdvanced": "Advanced",
|
"DE.Views.EditParagraph.textAdvanced": "Advanced",
|
||||||
"DE.Views.EditParagraph.textAdvSettings": "Advanced settings",
|
"DE.Views.EditParagraph.textAdvSettings": "Advanced settings",
|
||||||
"DE.Views.EditParagraph.textAfter": "After",
|
"DE.Views.EditParagraph.textAfter": "After",
|
||||||
|
@ -366,6 +367,7 @@
|
||||||
"DE.Views.EditParagraph.textBack": "Back",
|
"DE.Views.EditParagraph.textBack": "Back",
|
||||||
"DE.Views.EditParagraph.textBackground": "Background",
|
"DE.Views.EditParagraph.textBackground": "Background",
|
||||||
"DE.Views.EditParagraph.textBefore": "Before",
|
"DE.Views.EditParagraph.textBefore": "Before",
|
||||||
|
"DE.Views.EditParagraph.textCustomColor": "Custom Color",
|
||||||
"DE.Views.EditParagraph.textFirstLine": "First Line",
|
"DE.Views.EditParagraph.textFirstLine": "First Line",
|
||||||
"DE.Views.EditParagraph.textFromText": "Distance from Text",
|
"DE.Views.EditParagraph.textFromText": "Distance from Text",
|
||||||
"DE.Views.EditParagraph.textKeepLines": "Keep Lines Together",
|
"DE.Views.EditParagraph.textKeepLines": "Keep Lines Together",
|
||||||
|
@ -374,14 +376,14 @@
|
||||||
"DE.Views.EditParagraph.textPageBreak": "Page Break Before",
|
"DE.Views.EditParagraph.textPageBreak": "Page Break Before",
|
||||||
"DE.Views.EditParagraph.textPrgStyles": "Paragraph styles",
|
"DE.Views.EditParagraph.textPrgStyles": "Paragraph styles",
|
||||||
"DE.Views.EditParagraph.textSpaceBetween": "Space Between Paragraphs",
|
"DE.Views.EditParagraph.textSpaceBetween": "Space Between Paragraphs",
|
||||||
"DE.Views.EditParagraph.textAddCustomColor": "Add Custom Color",
|
"DE.Views.EditShape.textAddCustomColor": "Add Custom Color",
|
||||||
"DE.Views.EditParagraph.textCustomColor": "Custom Color",
|
|
||||||
"DE.Views.EditShape.textAlign": "Align",
|
"DE.Views.EditShape.textAlign": "Align",
|
||||||
"DE.Views.EditShape.textBack": "Back",
|
"DE.Views.EditShape.textBack": "Back",
|
||||||
"DE.Views.EditShape.textBackward": "Move Backward",
|
"DE.Views.EditShape.textBackward": "Move Backward",
|
||||||
"DE.Views.EditShape.textBehind": "Behind",
|
"DE.Views.EditShape.textBehind": "Behind",
|
||||||
"DE.Views.EditShape.textBorder": "Border",
|
"DE.Views.EditShape.textBorder": "Border",
|
||||||
"DE.Views.EditShape.textColor": "Color",
|
"DE.Views.EditShape.textColor": "Color",
|
||||||
|
"DE.Views.EditShape.textCustomColor": "Custom Color",
|
||||||
"DE.Views.EditShape.textEffects": "Effects",
|
"DE.Views.EditShape.textEffects": "Effects",
|
||||||
"DE.Views.EditShape.textFill": "Fill",
|
"DE.Views.EditShape.textFill": "Fill",
|
||||||
"DE.Views.EditShape.textForward": "Move Forward",
|
"DE.Views.EditShape.textForward": "Move Forward",
|
||||||
|
@ -403,8 +405,7 @@
|
||||||
"DE.Views.EditShape.textTopAndBottom": "Top and Bottom",
|
"DE.Views.EditShape.textTopAndBottom": "Top and Bottom",
|
||||||
"DE.Views.EditShape.textWithText": "Move with Text",
|
"DE.Views.EditShape.textWithText": "Move with Text",
|
||||||
"DE.Views.EditShape.textWrap": "Wrap",
|
"DE.Views.EditShape.textWrap": "Wrap",
|
||||||
"DE.Views.EditShape.textAddCustomColor": "Add Custom Color",
|
"DE.Views.EditTable.textAddCustomColor": "Add Custom Color",
|
||||||
"DE.Views.EditShape.textCustomColor": "Custom Color",
|
|
||||||
"DE.Views.EditTable.textAlign": "Align",
|
"DE.Views.EditTable.textAlign": "Align",
|
||||||
"DE.Views.EditTable.textBack": "Back",
|
"DE.Views.EditTable.textBack": "Back",
|
||||||
"DE.Views.EditTable.textBandedColumn": "Banded Column",
|
"DE.Views.EditTable.textBandedColumn": "Banded Column",
|
||||||
|
@ -412,6 +413,7 @@
|
||||||
"DE.Views.EditTable.textBorder": "Border",
|
"DE.Views.EditTable.textBorder": "Border",
|
||||||
"DE.Views.EditTable.textCellMargins": "Cell Margins",
|
"DE.Views.EditTable.textCellMargins": "Cell Margins",
|
||||||
"DE.Views.EditTable.textColor": "Color",
|
"DE.Views.EditTable.textColor": "Color",
|
||||||
|
"DE.Views.EditTable.textCustomColor": "Custom Color",
|
||||||
"DE.Views.EditTable.textFill": "Fill",
|
"DE.Views.EditTable.textFill": "Fill",
|
||||||
"DE.Views.EditTable.textFirstColumn": "First Column",
|
"DE.Views.EditTable.textFirstColumn": "First Column",
|
||||||
"DE.Views.EditTable.textFlow": "Flow",
|
"DE.Views.EditTable.textFlow": "Flow",
|
||||||
|
@ -430,8 +432,7 @@
|
||||||
"DE.Views.EditTable.textTotalRow": "Total Row",
|
"DE.Views.EditTable.textTotalRow": "Total Row",
|
||||||
"DE.Views.EditTable.textWithText": "Move with Text",
|
"DE.Views.EditTable.textWithText": "Move with Text",
|
||||||
"DE.Views.EditTable.textWrap": "Wrap",
|
"DE.Views.EditTable.textWrap": "Wrap",
|
||||||
"DE.Views.EditTable.textAddCustomColor": "Add Custom Color",
|
"DE.Views.EditText.textAddCustomColor": "Add Custom Color",
|
||||||
"DE.Views.EditTable.textCustomColor": "Custom Color",
|
|
||||||
"DE.Views.EditText.textAdditional": "Additional",
|
"DE.Views.EditText.textAdditional": "Additional",
|
||||||
"DE.Views.EditText.textAdditionalFormat": "Additional Formatting",
|
"DE.Views.EditText.textAdditionalFormat": "Additional Formatting",
|
||||||
"DE.Views.EditText.textAllCaps": "All Caps",
|
"DE.Views.EditText.textAllCaps": "All Caps",
|
||||||
|
@ -442,6 +443,7 @@
|
||||||
"DE.Views.EditText.textCharacterItalic": "I",
|
"DE.Views.EditText.textCharacterItalic": "I",
|
||||||
"DE.Views.EditText.textCharacterStrikethrough": "S",
|
"DE.Views.EditText.textCharacterStrikethrough": "S",
|
||||||
"DE.Views.EditText.textCharacterUnderline": "U",
|
"DE.Views.EditText.textCharacterUnderline": "U",
|
||||||
|
"DE.Views.EditText.textCustomColor": "Custom Color",
|
||||||
"DE.Views.EditText.textDblStrikethrough": "Double Strikethrough",
|
"DE.Views.EditText.textDblStrikethrough": "Double Strikethrough",
|
||||||
"DE.Views.EditText.textDblSuperscript": "Superscript",
|
"DE.Views.EditText.textDblSuperscript": "Superscript",
|
||||||
"DE.Views.EditText.textFontColor": "Font Color",
|
"DE.Views.EditText.textFontColor": "Font Color",
|
||||||
|
@ -457,8 +459,6 @@
|
||||||
"DE.Views.EditText.textSmallCaps": "Small Caps",
|
"DE.Views.EditText.textSmallCaps": "Small Caps",
|
||||||
"DE.Views.EditText.textStrikethrough": "Strikethrough",
|
"DE.Views.EditText.textStrikethrough": "Strikethrough",
|
||||||
"DE.Views.EditText.textSubscript": "Subscript",
|
"DE.Views.EditText.textSubscript": "Subscript",
|
||||||
"DE.Views.EditText.textAddCustomColor": "Add Custom Color",
|
|
||||||
"DE.Views.EditText.textCustomColor": "Custom Color",
|
|
||||||
"DE.Views.Search.textCase": "Case sensitive",
|
"DE.Views.Search.textCase": "Case sensitive",
|
||||||
"DE.Views.Search.textDone": "Done",
|
"DE.Views.Search.textDone": "Done",
|
||||||
"DE.Views.Search.textFind": "Find",
|
"DE.Views.Search.textFind": "Find",
|
||||||
|
|
|
@ -139,7 +139,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con su Administrador del Servidor de Documentos.",
|
"DE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con su Administrador del Servidor de Documentos.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
|
"DE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "La conexión al servidor se ha perdido. Usted ya no puede editar.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "La conexión al servidor se ha perdido. Usted ya no puede editar.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.<br>Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de la conexión de Servidor de Documentos <a href=\"%1\" target=\"_blank\">aquí</a>",
|
"DE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.<br>Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión a la base de datos. Por favor, contacte con el equipo de soporte técnico.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión a la base de datos. Por favor, contacte con el equipo de soporte técnico.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
|
"DE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
"DE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
||||||
|
|
|
@ -70,6 +70,7 @@
|
||||||
"Common.Views.Collaboration.textEditUsers": "Utilisateurs",
|
"Common.Views.Collaboration.textEditUsers": "Utilisateurs",
|
||||||
"Common.Views.Collaboration.textFinal": "Final",
|
"Common.Views.Collaboration.textFinal": "Final",
|
||||||
"Common.Views.Collaboration.textMarkup": "Balisage",
|
"Common.Views.Collaboration.textMarkup": "Balisage",
|
||||||
|
"Common.Views.Collaboration.textNoComments": "Il n'y a pas de commentaires dans ce document",
|
||||||
"Common.Views.Collaboration.textOriginal": "Original",
|
"Common.Views.Collaboration.textOriginal": "Original",
|
||||||
"Common.Views.Collaboration.textRejectAllChanges": "Refuser toutes les modifications ",
|
"Common.Views.Collaboration.textRejectAllChanges": "Refuser toutes les modifications ",
|
||||||
"Common.Views.Collaboration.textReview": "Suivi des modifications",
|
"Common.Views.Collaboration.textReview": "Suivi des modifications",
|
||||||
|
@ -139,13 +140,14 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
"DE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte",
|
"DE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "La connexion au serveur perdue. Désolé, vous ne pouvez plus modifier le document.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "La connexion au serveur perdue. Désolé, vous ne pouvez plus modifier le document.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.<br>Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.<br><br>Trouvez plus d'informations sur la connexion au Serveur de Documents <a href=\"%1\" target=\"_blank\">ici</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.<br>Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Erreur externe.<br>Erreur de connexion à la base de données.Contactez le support.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Erreur externe.<br>Erreur de connexion à la base de données.Contactez le support.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.",
|
"DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.",
|
"DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "Une erreure s'est produite lors du travail sur le document.<br>Utilisez l'option \"Télécharger\" pour enregistrer la copie de sauvegarde sur le disque dur de votre ordinateur.",
|
"DE.Controllers.Main.errorEditingDownloadas": "Une erreure s'est produite lors du travail sur le document.<br>Utilisez l'option \"Télécharger\" pour enregistrer la copie de sauvegarde sur le disque dur de votre ordinateur.",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
|
"DE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
|
"DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré",
|
"DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Échec du chargement",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Échec du chargement",
|
||||||
|
@ -252,6 +254,7 @@
|
||||||
"DE.Controllers.Settings.txtLoading": "Chargement en cours...",
|
"DE.Controllers.Settings.txtLoading": "Chargement en cours...",
|
||||||
"DE.Controllers.Settings.unknownText": "Inconnu",
|
"DE.Controllers.Settings.unknownText": "Inconnu",
|
||||||
"DE.Controllers.Settings.warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.<br>Êtes-vous sûr de vouloir continuer ?",
|
"DE.Controllers.Settings.warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.<br>Êtes-vous sûr de vouloir continuer ?",
|
||||||
|
"DE.Controllers.Settings.warnDownloadAsRTF": "Si vous continuer à sauvegarder dans ce format une partie de la mise en forme peut être supprimée <br>Êtes-vous sûr de vouloir continuer?",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur 'Rester sur cette Page' pour la sauvegarde automatique du document. Cliquez sur 'Quitter cette Page' pour ignorer toutes les modifications non enregistrées.",
|
"DE.Controllers.Toolbar.dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur 'Rester sur cette Page' pour la sauvegarde automatique du document. Cliquez sur 'Quitter cette Page' pour ignorer toutes les modifications non enregistrées.",
|
||||||
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Vous quittez l'application",
|
"DE.Controllers.Toolbar.dlgLeaveTitleText": "Vous quittez l'application",
|
||||||
"DE.Controllers.Toolbar.leaveButtonText": "Quitter cette page",
|
"DE.Controllers.Toolbar.leaveButtonText": "Quitter cette page",
|
||||||
|
@ -455,14 +458,21 @@
|
||||||
"DE.Views.Settings.textAbout": "A propos",
|
"DE.Views.Settings.textAbout": "A propos",
|
||||||
"DE.Views.Settings.textAddress": "adresse",
|
"DE.Views.Settings.textAddress": "adresse",
|
||||||
"DE.Views.Settings.textAdvancedSettings": "Paramètres de l'application",
|
"DE.Views.Settings.textAdvancedSettings": "Paramètres de l'application",
|
||||||
|
"DE.Views.Settings.textApplication": "Application",
|
||||||
"DE.Views.Settings.textAuthor": "Auteur",
|
"DE.Views.Settings.textAuthor": "Auteur",
|
||||||
"DE.Views.Settings.textBack": "Retour",
|
"DE.Views.Settings.textBack": "Retour",
|
||||||
"DE.Views.Settings.textBottom": "En bas",
|
"DE.Views.Settings.textBottom": "En bas",
|
||||||
"DE.Views.Settings.textCentimeter": "Centimètre",
|
"DE.Views.Settings.textCentimeter": "Centimètre",
|
||||||
|
"DE.Views.Settings.textCollaboration": "Collaboration",
|
||||||
"DE.Views.Settings.textColorSchemes": "Jeux de couleurs",
|
"DE.Views.Settings.textColorSchemes": "Jeux de couleurs",
|
||||||
|
"DE.Views.Settings.textComment": "Commentaire",
|
||||||
|
"DE.Views.Settings.textCommentingDisplay": "Affichage des commentaires ",
|
||||||
|
"DE.Views.Settings.textCreated": "Créé",
|
||||||
"DE.Views.Settings.textCreateDate": "Date de création",
|
"DE.Views.Settings.textCreateDate": "Date de création",
|
||||||
"DE.Views.Settings.textCustom": "Personnalisé",
|
"DE.Views.Settings.textCustom": "Personnalisé",
|
||||||
"DE.Views.Settings.textCustomSize": "Taille personnalisée",
|
"DE.Views.Settings.textCustomSize": "Taille personnalisée",
|
||||||
|
"DE.Views.Settings.textDisplayComments": "Commentaires",
|
||||||
|
"DE.Views.Settings.textDisplayResolvedComments": "Commentaires résolus",
|
||||||
"DE.Views.Settings.textDocInfo": "Position actuelle",
|
"DE.Views.Settings.textDocInfo": "Position actuelle",
|
||||||
"DE.Views.Settings.textDocTitle": "Titre du document",
|
"DE.Views.Settings.textDocTitle": "Titre du document",
|
||||||
"DE.Views.Settings.textDocumentFormats": "Formats de document",
|
"DE.Views.Settings.textDocumentFormats": "Formats de document",
|
||||||
|
@ -479,11 +489,15 @@
|
||||||
"DE.Views.Settings.textHiddenTableBorders": "Bordures du tableau cachées",
|
"DE.Views.Settings.textHiddenTableBorders": "Bordures du tableau cachées",
|
||||||
"DE.Views.Settings.textInch": "Pouce",
|
"DE.Views.Settings.textInch": "Pouce",
|
||||||
"DE.Views.Settings.textLandscape": "Paysage",
|
"DE.Views.Settings.textLandscape": "Paysage",
|
||||||
|
"DE.Views.Settings.textLastModified": "Date de dernière modification",
|
||||||
|
"DE.Views.Settings.textLastModifiedBy": "Dernière modification par",
|
||||||
"DE.Views.Settings.textLeft": "A gauche",
|
"DE.Views.Settings.textLeft": "A gauche",
|
||||||
"DE.Views.Settings.textLoading": "Chargement en cours...",
|
"DE.Views.Settings.textLoading": "Chargement en cours...",
|
||||||
|
"DE.Views.Settings.textLocation": "Emplacement",
|
||||||
"DE.Views.Settings.textMargins": "Marges",
|
"DE.Views.Settings.textMargins": "Marges",
|
||||||
"DE.Views.Settings.textNoCharacters": "Caractères non imprimables",
|
"DE.Views.Settings.textNoCharacters": "Caractères non imprimables",
|
||||||
"DE.Views.Settings.textOrientation": "Orientation",
|
"DE.Views.Settings.textOrientation": "Orientation",
|
||||||
|
"DE.Views.Settings.textOwner": "Propriétaire",
|
||||||
"DE.Views.Settings.textPages": "Pages",
|
"DE.Views.Settings.textPages": "Pages",
|
||||||
"DE.Views.Settings.textParagraphs": "Paragraphes",
|
"DE.Views.Settings.textParagraphs": "Paragraphes",
|
||||||
"DE.Views.Settings.textPoint": "Point",
|
"DE.Views.Settings.textPoint": "Point",
|
||||||
|
@ -497,10 +511,13 @@
|
||||||
"DE.Views.Settings.textSpaces": "Espaces",
|
"DE.Views.Settings.textSpaces": "Espaces",
|
||||||
"DE.Views.Settings.textSpellcheck": "Vérification de l'orthographe",
|
"DE.Views.Settings.textSpellcheck": "Vérification de l'orthographe",
|
||||||
"DE.Views.Settings.textStatistic": "Statistique",
|
"DE.Views.Settings.textStatistic": "Statistique",
|
||||||
|
"DE.Views.Settings.textSubject": "Sujet",
|
||||||
"DE.Views.Settings.textSymbols": "Symboles",
|
"DE.Views.Settings.textSymbols": "Symboles",
|
||||||
"DE.Views.Settings.textTel": "Tél.",
|
"DE.Views.Settings.textTel": "Tél.",
|
||||||
|
"DE.Views.Settings.textTitle": "Titre",
|
||||||
"DE.Views.Settings.textTop": "En haut",
|
"DE.Views.Settings.textTop": "En haut",
|
||||||
"DE.Views.Settings.textUnitOfMeasurement": "Unité de mesure",
|
"DE.Views.Settings.textUnitOfMeasurement": "Unité de mesure",
|
||||||
|
"DE.Views.Settings.textUploaded": "Chargé",
|
||||||
"DE.Views.Settings.textVersion": "Version",
|
"DE.Views.Settings.textVersion": "Version",
|
||||||
"DE.Views.Settings.textWords": "Mots",
|
"DE.Views.Settings.textWords": "Mots",
|
||||||
"DE.Views.Settings.unknownText": "Inconnu",
|
"DE.Views.Settings.unknownText": "Inconnu",
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.<br>Vegye fel a kapcsolatot a Document Server adminisztrátorával.",
|
"DE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.<br>Vegye fel a kapcsolatot a Document Server adminisztrátorával.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Hibás kép URL",
|
"DE.Controllers.Main.errorBadImageUrl": "Hibás kép URL",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "A szerver elveszítette a kapcsolatot. A további szerkesztés nem lehetséges.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "A szerver elveszítette a kapcsolatot. A további szerkesztés nem lehetséges.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.<br>Ha az 'OK'-ra kattint letöltheti a dokumentumot.<br><br>Bővebb információk a Dokumentum Szerverhez kapcsolódásról <a href=\"%1\" target=\"_blank\">itt</a> találhat.",
|
"DE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.<br>Ha az 'OK'-ra kattint letöltheti a dokumentumot.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Külső hiba.<br>Adatbázis kapcsolati hiba. Kérem vegye igénybe támogatásunkat.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Külső hiba.<br>Adatbázis kapcsolati hiba. Kérem vegye igénybe támogatásunkat.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.",
|
"DE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Hibás adattartomány.",
|
"DE.Controllers.Main.errorDataRange": "Hibás adattartomány.",
|
||||||
|
|
|
@ -138,13 +138,14 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
"DE.Controllers.Main.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretto",
|
"DE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretto",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Scollegato dal server. Non è possibile modificare.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Scollegato dal server. Non è possibile modificare.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore.<br>Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.<br><br>Per maggiori dettagli sulla connessione al Document Server <a href=\"%1\" target=\"_blank\">clicca qui</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contatta l'Amministratore.<br>Quando clicchi 'OK' Ti verrà richiesto di scaricare il documento.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Errore esterno.<br>Errore di connessione al database. Si prega di contattare il supporto.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Errore esterno.<br>Errore di connessione al database. Si prega di contattare il supporto.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.",
|
"DE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.",
|
"DE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Codice errore: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Codice errore: %1",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore mentre si lavorava sul documento.<br> Utilizzare l'opzione 'Scarica' per salvare la copia di backup del file sul disco rigido del computer.",
|
"DE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore mentre si lavorava sul documento.<br> Utilizzare l'opzione 'Scarica' per salvare la copia di backup del file sul disco rigido del computer.",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
|
"DE.Controllers.Main.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
|
"DE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto",
|
"DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Caricamento non riuscito",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Caricamento non riuscito",
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
"DE.Controllers.Main.downloadTitleText": "문서 다운로드 중",
|
"DE.Controllers.Main.downloadTitleText": "문서 다운로드 중",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.",
|
"DE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 더 이상 편집 할 수 없습니다.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 더 이상 편집 할 수 없습니다.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.<br>'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.<br ><br>Document Server 연결에 대한 추가 정보 찾기 <a href=\"%1\" target=\"_blank\">여기</a> ",
|
"DE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.<br>'확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "외부 오류입니다. <br> 데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.",
|
"DE.Controllers.Main.errorDatabaseConnection": "외부 오류입니다. <br> 데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.",
|
||||||
"DE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.",
|
"DE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1",
|
"DE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1",
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
"DE.Controllers.Main.downloadTitleText": "Dokumenta lejupielāde",
|
"DE.Controllers.Main.downloadTitleText": "Dokumenta lejupielāde",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Nav pareizs attēla URL",
|
"DE.Controllers.Main.errorBadImageUrl": "Nav pareizs attēla URL",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Zudis servera savienojums. Jūs vairs nevarat rediģēt.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Zudis servera savienojums. Jūs vairs nevarat rediģēt.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Dokumentu neizdevās noglabāt. Lūdzu, pārbaudiet savienojuma uzstādījumus vai sazinieties ar savu administratoru.<br>Nospiežot \"OK\", jūs varēsit lejupielādēt dokumentu.<br><br>Uzziniet vairāk par dokumentu servera pieslēgšanu <a href=\"%1\" target=\"_blank\">šeit</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Dokumentu neizdevās noglabāt. Lūdzu, pārbaudiet savienojuma uzstādījumus vai sazinieties ar savu administratoru.<br>Nospiežot \"OK\", jūs varēsit lejupielādēt dokumentu.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Ārējā kļūda.<br>Datubāzes piekļuves kļūda. Lūdzu, sazinieties ar atbalsta daļu.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Ārējā kļūda.<br>Datubāzes piekļuves kļūda. Lūdzu, sazinieties ar atbalsta daļu.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Nepareizs datu diapazons",
|
"DE.Controllers.Main.errorDataRange": "Nepareizs datu diapazons",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Kļūdas kods: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Kļūdas kods: %1",
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.<br>Neem contact op met de beheerder van de documentserver.",
|
"DE.Controllers.Main.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.<br>Neem contact op met de beheerder van de documentserver.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL afbeelding is onjuist",
|
"DE.Controllers.Main.errorBadImageUrl": "URL afbeelding is onjuist",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server verbroken. U kunt niet doorgaan met bewerken.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server verbroken. U kunt niet doorgaan met bewerken.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.<br>Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.<br><br>Meer informatie over verbindingen met de documentserver is <a href=\"%1\" target=\"_blank\">hier</a> te vinden.",
|
"DE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.<br>Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Externe fout.<br>Fout in databaseverbinding. Neem contact op met Support.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Externe fout.<br>Fout in databaseverbinding. Neem contact op met Support.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.",
|
"DE.Controllers.Main.errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik",
|
"DE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik",
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
"DE.Controllers.Main.downloadTitleText": "Pobieranie dokumentu",
|
"DE.Controllers.Main.downloadTitleText": "Pobieranie dokumentu",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny",
|
"DE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie możesz już edytować.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie możesz już edytować.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Nie można zapisać dokumentu. Sprawdź ustawienia połączenia lub skontaktuj się z administratorem.<br>Po kliknięciu przycisku \"OK\" zostanie wyświetlony monit o pobranie dokumentu.<br><br>Dowiedz się więcej o połączeniu serwera dokumentów <a href=\"%1\" target=\"_blank\">tutaj</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Nie można zapisać dokumentu. Sprawdź ustawienia połączenia lub skontaktuj się z administratorem.<br>Po kliknięciu przycisku \"OK\" zostanie wyświetlony monit o pobranie dokumentu.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Zewnętrzny błąd.<br>Błąd połączenia z bazą danych. Proszę skontaktuj się z administratorem.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Zewnętrzny błąd.<br>Błąd połączenia z bazą danych. Proszę skontaktuj się z administratorem.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Błędny zakres danych.",
|
"DE.Controllers.Main.errorDataRange": "Błędny zakres danych.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1",
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
"DE.Controllers.Main.downloadTitleText": "Baixando Documento",
|
"DE.Controllers.Main.downloadTitleText": "Baixando Documento",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL de imagem está incorreta",
|
"DE.Controllers.Main.errorBadImageUrl": "URL de imagem está incorreta",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão ao servidor perdida. Você não pode mais editar.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão ao servidor perdida. Você não pode mais editar.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "O documento não pôde ser salvo. Verifique as configurações de conexão ou entre em contato com o administrador.<br>Quando você clicar no botão 'OK', você será solicitado à fazer o download do documento. <br><br>Encontre mais informações sobre como conecta ao Document Server <a href=\"%1\" target=\"_blank\">aqui</a>",
|
"DE.Controllers.Main.errorConnectToServer": "O documento não pôde ser salvo. Verifique as configurações de conexão ou entre em contato com o administrador.<br>Quando você clicar no botão 'OK', você será solicitado à fazer o download do documento.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Erro externo. <br> Erro de conexão do banco de dados. Entre em contato com o suporte.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Erro externo. <br> Erro de conexão do banco de dados. Entre em contato com o suporte.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Intervalo de dados incorreto.",
|
"DE.Controllers.Main.errorDataRange": "Intervalo de dados incorreto.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Código do Erro: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Código do Erro: %1",
|
||||||
|
|
|
@ -58,6 +58,7 @@
|
||||||
"Common.Controllers.Collaboration.textTabs": "Изменение табуляции",
|
"Common.Controllers.Collaboration.textTabs": "Изменение табуляции",
|
||||||
"Common.Controllers.Collaboration.textUnderline": "Подчёркнутый",
|
"Common.Controllers.Collaboration.textUnderline": "Подчёркнутый",
|
||||||
"Common.Controllers.Collaboration.textWidow": "Запрет висячих строк",
|
"Common.Controllers.Collaboration.textWidow": "Запрет висячих строк",
|
||||||
|
"Common.UI.ThemeColorPalette.textCustomColors": "Пользовательские цвета",
|
||||||
"Common.UI.ThemeColorPalette.textStandartColors": "Стандартные цвета",
|
"Common.UI.ThemeColorPalette.textStandartColors": "Стандартные цвета",
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Цвета темы",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Цвета темы",
|
||||||
"Common.Utils.Metric.txtCm": "см",
|
"Common.Utils.Metric.txtCm": "см",
|
||||||
|
@ -140,13 +141,14 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"DE.Controllers.Main.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
|
"DE.Controllers.Main.errorBadImageUrl": "Неправильный URL-адрес изображения",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Подключение к серверу прервано. Редактирование недоступно.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Подключение к серверу прервано. Редактирование недоступно.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.<br><br>Дополнительную информацию о подключении Сервера документов можно найти <a href=\"%1\" target=\"_blank\">здесь</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.<br>Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка.<br>Ошибка подключения к базе данных. Пожалуйста, обратитесь в службу технической поддержки.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Внешняя ошибка.<br>Ошибка подключения к базе данных. Пожалуйста, обратитесь в службу технической поддержки.",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
|
"DE.Controllers.Main.errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
|
"DE.Controllers.Main.errorDataRange": "Некорректный диапазон данных.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Код ошибки: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Код ошибки: %1",
|
||||||
"DE.Controllers.Main.errorEditingDownloadas": "В ходе работы с документом произошла ошибка.<br>Используйте опцию 'Скачать', чтобы сохранить резервную копию файла на жестком диске компьютера.",
|
"DE.Controllers.Main.errorEditingDownloadas": "В ходе работы с документом произошла ошибка.<br>Используйте опцию 'Скачать', чтобы сохранить резервную копию файла на жестком диске компьютера.",
|
||||||
"DE.Controllers.Main.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
"DE.Controllers.Main.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
||||||
|
"DE.Controllers.Main.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
|
||||||
"DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
|
"DE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа",
|
||||||
"DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек",
|
"DE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек",
|
||||||
"DE.Controllers.Main.errorMailMergeLoadFile": "Сбой при загрузке",
|
"DE.Controllers.Main.errorMailMergeLoadFile": "Сбой при загрузке",
|
||||||
|
@ -157,7 +159,7 @@
|
||||||
"DE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
"DE.Controllers.Main.errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.",
|
||||||
"DE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.",
|
"DE.Controllers.Main.errorUserDrop": "В настоящий момент файл недоступен.",
|
||||||
"DE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей",
|
"DE.Controllers.Main.errorUsersExceed": "Превышено количество пользователей",
|
||||||
"DE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,<br>но не сможете скачать его до восстановления подключения.",
|
"DE.Controllers.Main.errorViewerDisconnect": "Подключение прервано. Вы по-прежнему можете просматривать документ,<br>но не сможете скачать его до восстановления подключения и обновления страницы.",
|
||||||
"DE.Controllers.Main.leavePageText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения документа. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.",
|
"DE.Controllers.Main.leavePageText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения документа. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.",
|
||||||
"DE.Controllers.Main.loadFontsTextText": "Загрузка данных...",
|
"DE.Controllers.Main.loadFontsTextText": "Загрузка данных...",
|
||||||
"DE.Controllers.Main.loadFontsTitleText": "Загрузка данных",
|
"DE.Controllers.Main.loadFontsTitleText": "Загрузка данных",
|
||||||
|
@ -292,12 +294,14 @@
|
||||||
"DE.Views.AddOther.textSectionBreak": "Разрыв раздела",
|
"DE.Views.AddOther.textSectionBreak": "Разрыв раздела",
|
||||||
"DE.Views.AddOther.textStartFrom": "Начать с",
|
"DE.Views.AddOther.textStartFrom": "Начать с",
|
||||||
"DE.Views.AddOther.textTip": "Подсказка",
|
"DE.Views.AddOther.textTip": "Подсказка",
|
||||||
|
"DE.Views.EditChart.textAddCustomColor": "Добавить пользовательский цвет",
|
||||||
"DE.Views.EditChart.textAlign": "Выравнивание",
|
"DE.Views.EditChart.textAlign": "Выравнивание",
|
||||||
"DE.Views.EditChart.textBack": "Назад",
|
"DE.Views.EditChart.textBack": "Назад",
|
||||||
"DE.Views.EditChart.textBackward": "Перенести назад",
|
"DE.Views.EditChart.textBackward": "Перенести назад",
|
||||||
"DE.Views.EditChart.textBehind": "За текстом",
|
"DE.Views.EditChart.textBehind": "За текстом",
|
||||||
"DE.Views.EditChart.textBorder": "Граница",
|
"DE.Views.EditChart.textBorder": "Граница",
|
||||||
"DE.Views.EditChart.textColor": "Цвет",
|
"DE.Views.EditChart.textColor": "Цвет",
|
||||||
|
"DE.Views.EditChart.textCustomColor": "Пользовательский цвет",
|
||||||
"DE.Views.EditChart.textDistanceText": "Расстояние до текста",
|
"DE.Views.EditChart.textDistanceText": "Расстояние до текста",
|
||||||
"DE.Views.EditChart.textFill": "Заливка",
|
"DE.Views.EditChart.textFill": "Заливка",
|
||||||
"DE.Views.EditChart.textForward": "Перенести вперед",
|
"DE.Views.EditChart.textForward": "Перенести вперед",
|
||||||
|
@ -355,6 +359,7 @@
|
||||||
"DE.Views.EditImage.textToForeground": "Перенести на передний план",
|
"DE.Views.EditImage.textToForeground": "Перенести на передний план",
|
||||||
"DE.Views.EditImage.textTopBottom": "Сверху и снизу",
|
"DE.Views.EditImage.textTopBottom": "Сверху и снизу",
|
||||||
"DE.Views.EditImage.textWrap": "Стиль обтекания",
|
"DE.Views.EditImage.textWrap": "Стиль обтекания",
|
||||||
|
"DE.Views.EditParagraph.textAddCustomColor": "Добавить пользовательский цвет",
|
||||||
"DE.Views.EditParagraph.textAdvanced": "Дополнительно",
|
"DE.Views.EditParagraph.textAdvanced": "Дополнительно",
|
||||||
"DE.Views.EditParagraph.textAdvSettings": "Дополнительно",
|
"DE.Views.EditParagraph.textAdvSettings": "Дополнительно",
|
||||||
"DE.Views.EditParagraph.textAfter": "После",
|
"DE.Views.EditParagraph.textAfter": "После",
|
||||||
|
@ -362,6 +367,7 @@
|
||||||
"DE.Views.EditParagraph.textBack": "Назад",
|
"DE.Views.EditParagraph.textBack": "Назад",
|
||||||
"DE.Views.EditParagraph.textBackground": "Фон",
|
"DE.Views.EditParagraph.textBackground": "Фон",
|
||||||
"DE.Views.EditParagraph.textBefore": "Перед",
|
"DE.Views.EditParagraph.textBefore": "Перед",
|
||||||
|
"DE.Views.EditParagraph.textCustomColor": "Пользовательский цвет",
|
||||||
"DE.Views.EditParagraph.textFirstLine": "Первая строка",
|
"DE.Views.EditParagraph.textFirstLine": "Первая строка",
|
||||||
"DE.Views.EditParagraph.textFromText": "Расстояние до текста",
|
"DE.Views.EditParagraph.textFromText": "Расстояние до текста",
|
||||||
"DE.Views.EditParagraph.textKeepLines": "Не разрывать абзац",
|
"DE.Views.EditParagraph.textKeepLines": "Не разрывать абзац",
|
||||||
|
@ -370,12 +376,14 @@
|
||||||
"DE.Views.EditParagraph.textPageBreak": "С новой страницы",
|
"DE.Views.EditParagraph.textPageBreak": "С новой страницы",
|
||||||
"DE.Views.EditParagraph.textPrgStyles": "Стили абзаца",
|
"DE.Views.EditParagraph.textPrgStyles": "Стили абзаца",
|
||||||
"DE.Views.EditParagraph.textSpaceBetween": "Интервал между абзацами",
|
"DE.Views.EditParagraph.textSpaceBetween": "Интервал между абзацами",
|
||||||
|
"DE.Views.EditShape.textAddCustomColor": "Добавить пользовательский цвет",
|
||||||
"DE.Views.EditShape.textAlign": "Выравнивание",
|
"DE.Views.EditShape.textAlign": "Выравнивание",
|
||||||
"DE.Views.EditShape.textBack": "Назад",
|
"DE.Views.EditShape.textBack": "Назад",
|
||||||
"DE.Views.EditShape.textBackward": "Перенести назад",
|
"DE.Views.EditShape.textBackward": "Перенести назад",
|
||||||
"DE.Views.EditShape.textBehind": "За текстом",
|
"DE.Views.EditShape.textBehind": "За текстом",
|
||||||
"DE.Views.EditShape.textBorder": "Граница",
|
"DE.Views.EditShape.textBorder": "Граница",
|
||||||
"DE.Views.EditShape.textColor": "Цвет",
|
"DE.Views.EditShape.textColor": "Цвет",
|
||||||
|
"DE.Views.EditShape.textCustomColor": "Пользовательский цвет",
|
||||||
"DE.Views.EditShape.textEffects": "Эффекты",
|
"DE.Views.EditShape.textEffects": "Эффекты",
|
||||||
"DE.Views.EditShape.textFill": "Заливка",
|
"DE.Views.EditShape.textFill": "Заливка",
|
||||||
"DE.Views.EditShape.textForward": "Перенести вперед",
|
"DE.Views.EditShape.textForward": "Перенести вперед",
|
||||||
|
@ -397,6 +405,7 @@
|
||||||
"DE.Views.EditShape.textTopAndBottom": "Сверху и снизу",
|
"DE.Views.EditShape.textTopAndBottom": "Сверху и снизу",
|
||||||
"DE.Views.EditShape.textWithText": "Перемещать с текстом",
|
"DE.Views.EditShape.textWithText": "Перемещать с текстом",
|
||||||
"DE.Views.EditShape.textWrap": "Стиль обтекания",
|
"DE.Views.EditShape.textWrap": "Стиль обтекания",
|
||||||
|
"DE.Views.EditTable.textAddCustomColor": "Добавить пользовательский цвет",
|
||||||
"DE.Views.EditTable.textAlign": "Выравнивание",
|
"DE.Views.EditTable.textAlign": "Выравнивание",
|
||||||
"DE.Views.EditTable.textBack": "Назад",
|
"DE.Views.EditTable.textBack": "Назад",
|
||||||
"DE.Views.EditTable.textBandedColumn": "Чередовать столбцы",
|
"DE.Views.EditTable.textBandedColumn": "Чередовать столбцы",
|
||||||
|
@ -404,6 +413,7 @@
|
||||||
"DE.Views.EditTable.textBorder": "Граница",
|
"DE.Views.EditTable.textBorder": "Граница",
|
||||||
"DE.Views.EditTable.textCellMargins": "Поля ячейки",
|
"DE.Views.EditTable.textCellMargins": "Поля ячейки",
|
||||||
"DE.Views.EditTable.textColor": "Цвет",
|
"DE.Views.EditTable.textColor": "Цвет",
|
||||||
|
"DE.Views.EditTable.textCustomColor": "Пользовательский цвет",
|
||||||
"DE.Views.EditTable.textFill": "Заливка",
|
"DE.Views.EditTable.textFill": "Заливка",
|
||||||
"DE.Views.EditTable.textFirstColumn": "Первый столбец",
|
"DE.Views.EditTable.textFirstColumn": "Первый столбец",
|
||||||
"DE.Views.EditTable.textFlow": "Плавающая",
|
"DE.Views.EditTable.textFlow": "Плавающая",
|
||||||
|
@ -422,6 +432,7 @@
|
||||||
"DE.Views.EditTable.textTotalRow": "Строка итогов",
|
"DE.Views.EditTable.textTotalRow": "Строка итогов",
|
||||||
"DE.Views.EditTable.textWithText": "Перемещать с текстом",
|
"DE.Views.EditTable.textWithText": "Перемещать с текстом",
|
||||||
"DE.Views.EditTable.textWrap": "Стиль обтекания",
|
"DE.Views.EditTable.textWrap": "Стиль обтекания",
|
||||||
|
"DE.Views.EditText.textAddCustomColor": "Добавить пользовательский цвет",
|
||||||
"DE.Views.EditText.textAdditional": "Дополнительно",
|
"DE.Views.EditText.textAdditional": "Дополнительно",
|
||||||
"DE.Views.EditText.textAdditionalFormat": "Дополнительно",
|
"DE.Views.EditText.textAdditionalFormat": "Дополнительно",
|
||||||
"DE.Views.EditText.textAllCaps": "Все прописные",
|
"DE.Views.EditText.textAllCaps": "Все прописные",
|
||||||
|
@ -432,6 +443,7 @@
|
||||||
"DE.Views.EditText.textCharacterItalic": "К",
|
"DE.Views.EditText.textCharacterItalic": "К",
|
||||||
"DE.Views.EditText.textCharacterStrikethrough": "Т",
|
"DE.Views.EditText.textCharacterStrikethrough": "Т",
|
||||||
"DE.Views.EditText.textCharacterUnderline": "Ч",
|
"DE.Views.EditText.textCharacterUnderline": "Ч",
|
||||||
|
"DE.Views.EditText.textCustomColor": "Пользовательский цвет",
|
||||||
"DE.Views.EditText.textDblStrikethrough": "Двойное зачёркивание",
|
"DE.Views.EditText.textDblStrikethrough": "Двойное зачёркивание",
|
||||||
"DE.Views.EditText.textDblSuperscript": "Надстрочные",
|
"DE.Views.EditText.textDblSuperscript": "Надстрочные",
|
||||||
"DE.Views.EditText.textFontColor": "Цвет шрифта",
|
"DE.Views.EditText.textFontColor": "Цвет шрифта",
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
"DE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu",
|
"DE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna",
|
"DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Spojenie so serverom sa stratilo. Už nemôžete upravovať.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Spojenie so serverom sa stratilo. Už nemôžete upravovať.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.<br>Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.<br><br>Viac informácií o pripojení dokumentového servera nájdete <a href=\"%1\" target=\"_blank\">tu</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.<br>Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.<br>Chyba spojenia databázy. Obráťte sa prosím na podporu.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.<br>Chyba spojenia databázy. Obráťte sa prosím na podporu.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.",
|
"DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
"DE.Controllers.Main.downloadTitleText": "Belge indiriliyor",
|
"DE.Controllers.Main.downloadTitleText": "Belge indiriliyor",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış",
|
"DE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kayboldu. Artık düzenleyemezsiniz.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kayboldu. Artık düzenleyemezsiniz.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin. <br>'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.<br><br>Belge Sunucusuna bağlanma konusunda daha fazla bilgi için <a href=\"%1\" target=\"_blank\">buraya</a> tıklayın",
|
"DE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin. <br>'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Dışsal hata.<br>Veritabanı bağlantı hatası. Lütfen destek ile iletişime geçin.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Dışsal hata.<br>Veritabanı bağlantı hatası. Lütfen destek ile iletişime geçin.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.",
|
"DE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Hata kodu: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Hata kodu: %1",
|
||||||
|
|
|
@ -3,6 +3,10 @@
|
||||||
"Common.UI.ThemeColorPalette.textThemeColors": "Кольорові теми",
|
"Common.UI.ThemeColorPalette.textThemeColors": "Кольорові теми",
|
||||||
"Common.Utils.Metric.txtCm": "см",
|
"Common.Utils.Metric.txtCm": "см",
|
||||||
"Common.Utils.Metric.txtPt": "Пт",
|
"Common.Utils.Metric.txtPt": "Пт",
|
||||||
|
"Common.Views.Collaboration.textCollaboration": "Співпраця",
|
||||||
|
"Common.Views.Collaboration.textFinal": "Фінальний",
|
||||||
|
"Common.Views.Collaboration.textMarkup": "Зміни",
|
||||||
|
"Common.Views.Collaboration.textOriginal": "Початковий",
|
||||||
"DE.Controllers.AddContainer.textImage": "Зображення",
|
"DE.Controllers.AddContainer.textImage": "Зображення",
|
||||||
"DE.Controllers.AddContainer.textOther": "Інший",
|
"DE.Controllers.AddContainer.textOther": "Інший",
|
||||||
"DE.Controllers.AddContainer.textShape": "Форма",
|
"DE.Controllers.AddContainer.textShape": "Форма",
|
||||||
|
@ -53,7 +57,7 @@
|
||||||
"DE.Controllers.Main.downloadTitleText": "Завантаження документу",
|
"DE.Controllers.Main.downloadTitleText": "Завантаження документу",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL-адреса зображення невірна",
|
"DE.Controllers.Main.errorBadImageUrl": "URL-адреса зображення невірна",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "З'єднання з сервером втрачено. Ви більше не можете редагувати.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "З'єднання з сервером втрачено. Ви більше не можете редагувати.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Не вдалося зберегти документ. Будь ласка, перевірте налаштування з'єднання або зверніться до свого адміністратора.<br>Після натискання кнопки «ОК» вам буде запропоновано завантажити документ. <br><br>Більше інформації про підключення сервера документів <a href=\"%1\" target=\"_blank\">тут</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Не вдалося зберегти документ. Будь ласка, перевірте налаштування з'єднання або зверніться до свого адміністратора.<br>Після натискання кнопки «ОК» вам буде запропоновано завантажити документ.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Зовнішня помилка. <br> Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Зовнішня помилка. <br> Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.",
|
"DE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ",
|
"DE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ",
|
||||||
|
@ -221,7 +225,7 @@
|
||||||
"DE.Views.EditImage.textBack": "Назад",
|
"DE.Views.EditImage.textBack": "Назад",
|
||||||
"DE.Views.EditImage.textBackward": "Перемістити назад",
|
"DE.Views.EditImage.textBackward": "Перемістити назад",
|
||||||
"DE.Views.EditImage.textBehind": "Позаду",
|
"DE.Views.EditImage.textBehind": "Позаду",
|
||||||
"DE.Views.EditImage.textDefault": "Розмір за умовчанням",
|
"DE.Views.EditImage.textDefault": "За замовчуванням",
|
||||||
"DE.Views.EditImage.textDistanceText": "Відстань від тексту",
|
"DE.Views.EditImage.textDistanceText": "Відстань від тексту",
|
||||||
"DE.Views.EditImage.textForward": "Перемістити вперед",
|
"DE.Views.EditImage.textForward": "Перемістити вперед",
|
||||||
"DE.Views.EditImage.textFromLibrary": "Зображення з бібліотеки",
|
"DE.Views.EditImage.textFromLibrary": "Зображення з бібліотеки",
|
||||||
|
@ -311,7 +315,7 @@
|
||||||
"DE.Views.EditTable.textWrap": "Обернути",
|
"DE.Views.EditTable.textWrap": "Обернути",
|
||||||
"DE.Views.EditText.textAdditional": "Додатковий",
|
"DE.Views.EditText.textAdditional": "Додатковий",
|
||||||
"DE.Views.EditText.textAdditionalFormat": "Додаткове форматування",
|
"DE.Views.EditText.textAdditionalFormat": "Додаткове форматування",
|
||||||
"DE.Views.EditText.textAllCaps": "Всі шапки",
|
"DE.Views.EditText.textAllCaps": "Усі великі",
|
||||||
"DE.Views.EditText.textAutomatic": "Автоматично",
|
"DE.Views.EditText.textAutomatic": "Автоматично",
|
||||||
"DE.Views.EditText.textBack": "Назад",
|
"DE.Views.EditText.textBack": "Назад",
|
||||||
"DE.Views.EditText.textBullets": "Кулі",
|
"DE.Views.EditText.textBullets": "Кулі",
|
||||||
|
@ -327,7 +331,7 @@
|
||||||
"DE.Views.EditText.textNone": "Жоден",
|
"DE.Views.EditText.textNone": "Жоден",
|
||||||
"DE.Views.EditText.textNumbers": "Номери",
|
"DE.Views.EditText.textNumbers": "Номери",
|
||||||
"DE.Views.EditText.textSize": "Розмір",
|
"DE.Views.EditText.textSize": "Розмір",
|
||||||
"DE.Views.EditText.textSmallCaps": "Малі шапки",
|
"DE.Views.EditText.textSmallCaps": "Зменшені великі",
|
||||||
"DE.Views.EditText.textStrikethrough": "Перекреслення",
|
"DE.Views.EditText.textStrikethrough": "Перекреслення",
|
||||||
"DE.Views.EditText.textSubscript": "Підрядковий",
|
"DE.Views.EditText.textSubscript": "Підрядковий",
|
||||||
"DE.Views.Search.textCase": "Чутливість до регістору символів",
|
"DE.Views.Search.textCase": "Чутливість до регістору символів",
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
"DE.Controllers.Main.downloadTitleText": "Đang tải tài liệu...",
|
"DE.Controllers.Main.downloadTitleText": "Đang tải tài liệu...",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "URL hình ảnh không chính xác",
|
"DE.Controllers.Main.errorBadImageUrl": "URL hình ảnh không chính xác",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Kết nối máy chủ bị mất. Bạn không thể chỉnh sửa nữa.",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Kết nối máy chủ bị mất. Bạn không thể chỉnh sửa nữa.",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "Không thể lưu tài liệu. Vui lòng kiểm tra cài đặt kết nối hoặc liên hệ với quản trị viên của bạn.<br>Khi bạn nhấp vào nút 'OK', bạn sẽ được nhắc tải xuống tài liệu.<br><br>Tìm thêm thông tin về kết nối Server Tài liệu <a href=\"%1\" target=\"_blank\">ở đây</a>",
|
"DE.Controllers.Main.errorConnectToServer": "Không thể lưu tài liệu. Vui lòng kiểm tra cài đặt kết nối hoặc liên hệ với quản trị viên của bạn.<br>Khi bạn nhấp vào nút 'OK', bạn sẽ được nhắc tải xuống tài liệu.",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "Lỗi bên ngoài.<br>Lỗi kết nối cơ sở dữ liệu. Vui lòng liên hệ bộ phận hỗ trợ.",
|
"DE.Controllers.Main.errorDatabaseConnection": "Lỗi bên ngoài.<br>Lỗi kết nối cơ sở dữ liệu. Vui lòng liên hệ bộ phận hỗ trợ.",
|
||||||
"DE.Controllers.Main.errorDataRange": "Phạm vi dữ liệu không chính xác.",
|
"DE.Controllers.Main.errorDataRange": "Phạm vi dữ liệu không chính xác.",
|
||||||
"DE.Controllers.Main.errorDefaultMessage": "Mã lỗi: %1",
|
"DE.Controllers.Main.errorDefaultMessage": "Mã lỗi: %1",
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
"DE.Controllers.Main.errorAccessDeny": "您正在尝试执行您没有权限的操作。<br>请联系您的文档服务器管理员.",
|
"DE.Controllers.Main.errorAccessDeny": "您正在尝试执行您没有权限的操作。<br>请联系您的文档服务器管理员.",
|
||||||
"DE.Controllers.Main.errorBadImageUrl": "图片地址不正确",
|
"DE.Controllers.Main.errorBadImageUrl": "图片地址不正确",
|
||||||
"DE.Controllers.Main.errorCoAuthoringDisconnect": "服务器连接丢失。您无法再进行编辑。",
|
"DE.Controllers.Main.errorCoAuthoringDisconnect": "服务器连接丢失。您无法再进行编辑。",
|
||||||
"DE.Controllers.Main.errorConnectToServer": "这份文件无法保存。请检查连接设置或联系您的管理员。<br>当你点击“OK”按钮,系统将提示您下载文档。<br><br>找到更多信息连接文件服务器<a href=\"%1\" target=\"平等\">在这里</>",
|
"DE.Controllers.Main.errorConnectToServer": "这份文件无法保存。请检查连接设置或联系您的管理员。<br>当你点击“OK”按钮,系统将提示您下载文档。",
|
||||||
"DE.Controllers.Main.errorDatabaseConnection": "外部错误。<br>数据库连接错误。请联系客服支持。",
|
"DE.Controllers.Main.errorDatabaseConnection": "外部错误。<br>数据库连接错误。请联系客服支持。",
|
||||||
"DE.Controllers.Main.errorDataEncrypted": "加密更改已收到,无法对其解密。",
|
"DE.Controllers.Main.errorDataEncrypted": "加密更改已收到,无法对其解密。",
|
||||||
"DE.Controllers.Main.errorDataRange": "数据范围不正确",
|
"DE.Controllers.Main.errorDataRange": "数据范围不正确",
|
||||||
|
|
|
@ -186,16 +186,10 @@ var sdk_dev_scrpipts = [
|
||||||
"../../../../sdkjs/word/Math/operators.js",
|
"../../../../sdkjs/word/Math/operators.js",
|
||||||
"../../../../sdkjs/word/Math/accent.js",
|
"../../../../sdkjs/word/Math/accent.js",
|
||||||
"../../../../sdkjs/word/Math/borderBox.js",
|
"../../../../sdkjs/word/Math/borderBox.js",
|
||||||
"../../../../sdkjs/common/Private/Locks.js",
|
|
||||||
"../../../../sdkjs/common/Private/license.js",
|
|
||||||
"../../../../sdkjs/common/Private/versionHistory.js",
|
|
||||||
"../../../../sdkjs/word/Private/comments.js",
|
|
||||||
"../../../../sdkjs/word/Private/StyleManager.js",
|
|
||||||
"../../../../sdkjs/word/Private/MailMerge.js",
|
|
||||||
"../../../../sdkjs/word/Private/TrackRevisions.js",
|
|
||||||
"../../../../sdkjs/common/applyDocumentChanges.js",
|
"../../../../sdkjs/common/applyDocumentChanges.js",
|
||||||
"../../../../sdkjs/common/Drawings/Format/OleObject.js",
|
"../../../../sdkjs/common/Drawings/Format/OleObject.js",
|
||||||
"../../../../sdkjs/common/Drawings/Format/DrawingContent.js",
|
"../../../../sdkjs/common/Drawings/Format/DrawingContent.js",
|
||||||
|
"../../../../sdkjs/common/versionHistory.js",
|
||||||
"../../../../sdkjs/common/clipboard_base.js",
|
"../../../../sdkjs/common/clipboard_base.js",
|
||||||
"../../../../sdkjs/common/plugins.js",
|
"../../../../sdkjs/common/plugins.js",
|
||||||
"../../../../sdkjs/word/apiBuilder.js",
|
"../../../../sdkjs/word/apiBuilder.js",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"PE.ApplicationController.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
"PE.ApplicationController.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.",
|
"PE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.",
|
||||||
|
"PE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
|
||||||
"PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
"PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
"PE.ApplicationController.notcriticalErrorTitle": "Avertissement",
|
||||||
"PE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
|
"PE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"PE.ApplicationController.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
"PE.ApplicationController.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.<br>Si prega di contattare l'amministratore del Server dei Documenti.",
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Codice errore: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Codice errore: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
|
"PE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.",
|
||||||
|
"PE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.<br>Per i dettagli, contatta l'amministratore del Document server.",
|
||||||
"PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
"PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
"PE.ApplicationController.notcriticalErrorTitle": "Avviso",
|
||||||
"PE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
"PE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"PE.ApplicationController.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
"PE.ApplicationController.errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.<br>Пожалуйста, обратитесь к администратору Сервера документов.",
|
||||||
"PE.ApplicationController.errorDefaultMessage": "Код ошибки: %1",
|
"PE.ApplicationController.errorDefaultMessage": "Код ошибки: %1",
|
||||||
"PE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
"PE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.",
|
||||||
|
"PE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.<br>Обратитесь к администратору Сервера документов для получения дополнительной информации.",
|
||||||
"PE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.",
|
"PE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.",
|
||||||
"PE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
"PE.ApplicationController.notcriticalErrorTitle": "Внимание",
|
||||||
"PE.ApplicationController.scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.",
|
"PE.ApplicationController.scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.",
|
||||||
|
|
|
@ -319,6 +319,7 @@ define([
|
||||||
this.appOptions.canRequestSendNotify = this.editorConfig.canRequestSendNotify;
|
this.appOptions.canRequestSendNotify = this.editorConfig.canRequestSendNotify;
|
||||||
this.appOptions.canRequestSaveAs = this.editorConfig.canRequestSaveAs;
|
this.appOptions.canRequestSaveAs = this.editorConfig.canRequestSaveAs;
|
||||||
this.appOptions.canRequestInsertImage = this.editorConfig.canRequestInsertImage;
|
this.appOptions.canRequestInsertImage = this.editorConfig.canRequestInsertImage;
|
||||||
|
this.appOptions.compatibleFeatures = (typeof (this.appOptions.customization) == 'object') && !!this.appOptions.customization.compatibleFeatures;
|
||||||
|
|
||||||
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
|
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
|
||||||
appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '')
|
appHeader.setCanBack(this.appOptions.canBackToFolder === true, (this.appOptions.canBackToFolder) ? this.editorConfig.customization.goback.text : '')
|
||||||
|
@ -332,7 +333,7 @@ define([
|
||||||
|
|
||||||
if (!( this.editorConfig.customization && ( this.editorConfig.customization.toolbarNoTabs ||
|
if (!( this.editorConfig.customization && ( this.editorConfig.customization.toolbarNoTabs ||
|
||||||
(this.editorConfig.targetApp!=='desktop') && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo)))) {
|
(this.editorConfig.targetApp!=='desktop') && (this.editorConfig.customization.loaderName || this.editorConfig.customization.loaderLogo)))) {
|
||||||
$('#editor_sdk').append('<div class="doc-placeholder"><div class="slide-h"><div class="slide-v"><div class="slide-container"><div class="line"></div><div class="line empty"></div><div class="line"></div></div></div></div></div>');
|
$('#editor-container').append('<div class="doc-placeholder"><div class="slide-h"><div class="slide-v"><div class="slide-container"><div class="line"></div><div class="line empty"></div><div class="line"></div></div></div></div></div>');
|
||||||
}
|
}
|
||||||
|
|
||||||
Common.Controllers.Desktop.init(this.appOptions);
|
Common.Controllers.Desktop.init(this.appOptions);
|
||||||
|
@ -1154,7 +1155,7 @@ define([
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Asc.c_oAscError.ID.Warning:
|
case Asc.c_oAscError.ID.Warning:
|
||||||
config.msg = this.errorConnectToServer.replace('%1', '{{API_URL_EDITING_CALLBACK}}');
|
config.msg = this.errorConnectToServer;
|
||||||
config.closable = false;
|
config.closable = false;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -1954,14 +1955,13 @@ define([
|
||||||
txtYAxis: 'Y Axis',
|
txtYAxis: 'Y Axis',
|
||||||
txtSeries: 'Seria',
|
txtSeries: 'Seria',
|
||||||
txtArt: 'Your text here',
|
txtArt: 'Your text here',
|
||||||
errorConnectToServer: ' The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the \'OK\' button, you will be prompted to download the document.<br><br>' +
|
errorConnectToServer: ' The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the \'OK\' button, you will be prompted to download the document.',
|
||||||
'Find more information about connecting Document Server <a href=\"%1\" target=\"_blank\">here</a>',
|
|
||||||
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.',
|
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.',
|
||||||
textStrict: 'Strict mode',
|
textStrict: 'Strict mode',
|
||||||
textBuyNow: 'Visit website',
|
textBuyNow: 'Visit website',
|
||||||
textNoLicenseTitle: '%1 open source version',
|
textNoLicenseTitle: '%1 open source version',
|
||||||
textContactUs: 'Contact sales',
|
textContactUs: 'Contact sales',
|
||||||
errorViewerDisconnect: 'Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored.',
|
errorViewerDisconnect: 'Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored and page is reloaded.',
|
||||||
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
||||||
titleLicenseExp: 'License expired',
|
titleLicenseExp: 'License expired',
|
||||||
openErrorText: 'An error has occurred while opening the file',
|
openErrorText: 'An error has occurred while opening the file',
|
||||||
|
|
|
@ -55,7 +55,8 @@ define([
|
||||||
'presentationeditor/main/app/view/HeaderFooterDialog',
|
'presentationeditor/main/app/view/HeaderFooterDialog',
|
||||||
'presentationeditor/main/app/view/HyperlinkSettingsDialog',
|
'presentationeditor/main/app/view/HyperlinkSettingsDialog',
|
||||||
'presentationeditor/main/app/view/SlideSizeSettings',
|
'presentationeditor/main/app/view/SlideSizeSettings',
|
||||||
'presentationeditor/main/app/view/SlideshowSettings'
|
'presentationeditor/main/app/view/SlideshowSettings',
|
||||||
|
'presentationeditor/main/app/view/ListSettingsDialog'
|
||||||
], function () { 'use strict';
|
], function () { 'use strict';
|
||||||
|
|
||||||
PE.Controllers.Toolbar = Backbone.Controller.extend(_.extend({
|
PE.Controllers.Toolbar = Backbone.Controller.extend(_.extend({
|
||||||
|
@ -276,6 +277,8 @@ define([
|
||||||
toolbar.btnIncLeftOffset.on('click', _.bind(this.onIncOffset, this));
|
toolbar.btnIncLeftOffset.on('click', _.bind(this.onIncOffset, this));
|
||||||
toolbar.btnMarkers.on('click', _.bind(this.onMarkers, this));
|
toolbar.btnMarkers.on('click', _.bind(this.onMarkers, this));
|
||||||
toolbar.btnNumbers.on('click', _.bind(this.onNumbers, this));
|
toolbar.btnNumbers.on('click', _.bind(this.onNumbers, this));
|
||||||
|
toolbar.mnuMarkerSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 0));
|
||||||
|
toolbar.mnuNumberSettings.on('click', _.bind(this.onMarkerSettingsClick, this, 1));
|
||||||
toolbar.cmbFontName.on('selected', _.bind(this.onFontNameSelect, this));
|
toolbar.cmbFontName.on('selected', _.bind(this.onFontNameSelect, this));
|
||||||
toolbar.cmbFontName.on('show:after', _.bind(this.onComboOpen, this, true));
|
toolbar.cmbFontName.on('show:after', _.bind(this.onComboOpen, this, true));
|
||||||
toolbar.cmbFontName.on('hide:after', _.bind(this.onHideMenus, this));
|
toolbar.cmbFontName.on('hide:after', _.bind(this.onHideMenus, this));
|
||||||
|
@ -470,6 +473,7 @@ define([
|
||||||
case 0:
|
case 0:
|
||||||
this.toolbar.btnMarkers.toggle(true, true);
|
this.toolbar.btnMarkers.toggle(true, true);
|
||||||
this.toolbar.mnuMarkersPicker.selectByIndex(this._state.bullets.subtype, true);
|
this.toolbar.mnuMarkersPicker.selectByIndex(this._state.bullets.subtype, true);
|
||||||
|
this.toolbar.mnuMarkerSettings.setDisabled(this._state.bullets.subtype<0);
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
var idx = 0;
|
var idx = 0;
|
||||||
|
@ -498,6 +502,7 @@ define([
|
||||||
}
|
}
|
||||||
this.toolbar.btnNumbers.toggle(true, true);
|
this.toolbar.btnNumbers.toggle(true, true);
|
||||||
this.toolbar.mnuNumbersPicker.selectByIndex(idx, true);
|
this.toolbar.mnuNumbersPicker.selectByIndex(idx, true);
|
||||||
|
this.toolbar.mnuNumberSettings.setDisabled(idx==0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1092,6 +1097,35 @@ define([
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onMarkerSettingsClick: function(type) {
|
||||||
|
var me = this,
|
||||||
|
props;
|
||||||
|
|
||||||
|
var selectedElements = me.api.getSelectedElements();
|
||||||
|
if (selectedElements && _.isArray(selectedElements)) {
|
||||||
|
for (var i = 0; i< selectedElements.length; i++) {
|
||||||
|
if (Asc.c_oAscTypeSelectElement.Paragraph == selectedElements[i].get_ObjectType()) {
|
||||||
|
props = selectedElements[i].get_ObjectValue();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (props) {
|
||||||
|
(new PE.Views.ListSettingsDialog({
|
||||||
|
props: props,
|
||||||
|
type: type,
|
||||||
|
handler: function(result, value) {
|
||||||
|
if (result == 'ok') {
|
||||||
|
if (me.api) {
|
||||||
|
me.api.paraApply(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Common.NotificationCenter.trigger('edit:complete', me.toolbar);
|
||||||
|
}
|
||||||
|
})).show();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
onComboBlur: function() {
|
onComboBlur: function() {
|
||||||
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
|
||||||
},
|
},
|
||||||
|
@ -1634,6 +1668,8 @@ define([
|
||||||
|
|
||||||
this.toolbar.mnuMarkersPicker.selectByIndex(0, true);
|
this.toolbar.mnuMarkersPicker.selectByIndex(0, true);
|
||||||
this.toolbar.mnuNumbersPicker.selectByIndex(0, true);
|
this.toolbar.mnuNumbersPicker.selectByIndex(0, true);
|
||||||
|
this.toolbar.mnuMarkerSettings.setDisabled(true);
|
||||||
|
this.toolbar.mnuNumberSettings.setDisabled(true);
|
||||||
},
|
},
|
||||||
|
|
||||||
_getApiTextSize: function () {
|
_getApiTextSize: function () {
|
||||||
|
@ -2077,45 +2113,38 @@ define([
|
||||||
compactview = true;
|
compactview = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
me.toolbar.render(_.extend({compactview: compactview}, config));
|
||||||
* Rendering of toolbar makes rendering of header very slow
|
|
||||||
* Temporary wrapped up in setTimeout to process events
|
|
||||||
* */
|
|
||||||
setTimeout(function () {
|
|
||||||
me.toolbar.render(_.extend({compactview: compactview}, config));
|
|
||||||
|
|
||||||
if ( config.isEdit ) {
|
if ( config.isEdit ) {
|
||||||
me.toolbar.setMode(config);
|
me.toolbar.setMode(config);
|
||||||
|
var tab = {action: 'review', caption: me.toolbar.textTabCollaboration};
|
||||||
|
var $panel = me.getApplication().getController('Common.Controllers.ReviewChanges').createToolbarPanel();
|
||||||
|
if ( $panel )
|
||||||
|
me.toolbar.addTab(tab, $panel, 3);
|
||||||
|
|
||||||
var tab = {action: 'review', caption: me.toolbar.textTabCollaboration};
|
me.toolbar.btnSave.on('disabled', _.bind(me.onBtnChangeState, me, 'save:disabled'));
|
||||||
var $panel = me.getApplication().getController('Common.Controllers.ReviewChanges').createToolbarPanel();
|
|
||||||
if ( $panel )
|
|
||||||
me.toolbar.addTab(tab, $panel, 3);
|
|
||||||
|
|
||||||
me.toolbar.btnSave.on('disabled', _.bind(me.onBtnChangeState, me, 'save:disabled'));
|
if (!(config.customization && config.customization.compactHeader)) {
|
||||||
|
// hide 'print' and 'save' buttons group and next separator
|
||||||
|
me.toolbar.btnPrint.$el.parents('.group').hide().next().hide();
|
||||||
|
|
||||||
if (!(config.customization && config.customization.compactHeader)) {
|
// hide 'undo' and 'redo' buttons and get container
|
||||||
// hide 'print' and 'save' buttons group and next separator
|
var $box = me.toolbar.btnUndo.$el.hide().next().hide().parent();
|
||||||
me.toolbar.btnPrint.$el.parents('.group').hide().next().hide();
|
|
||||||
|
|
||||||
// hide 'undo' and 'redo' buttons and get container
|
// move 'paste' button to the container instead of 'undo' and 'redo'
|
||||||
var $box = me.toolbar.btnUndo.$el.hide().next().hide().parent();
|
me.toolbar.btnPaste.$el.detach().appendTo($box);
|
||||||
|
me.toolbar.btnCopy.$el.removeClass('split');
|
||||||
|
}
|
||||||
|
|
||||||
// move 'paste' button to the container instead of 'undo' and 'redo'
|
if ( config.isDesktopApp ) {
|
||||||
me.toolbar.btnPaste.$el.detach().appendTo($box);
|
if ( config.canProtect ) { // don't add protect panel to toolbar
|
||||||
me.toolbar.btnCopy.$el.removeClass('split');
|
tab = {action: 'protect', caption: me.toolbar.textTabProtect};
|
||||||
}
|
$panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel();
|
||||||
|
if ($panel)
|
||||||
if ( config.isDesktopApp ) {
|
me.toolbar.addTab(tab, $panel, 4);
|
||||||
if ( config.canProtect ) { // don't add protect panel to toolbar
|
|
||||||
tab = {action: 'protect', caption: me.toolbar.textTabProtect};
|
|
||||||
$panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel();
|
|
||||||
if ($panel)
|
|
||||||
me.toolbar.addTab(tab, $panel, 4);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, 0);
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onAppReady: function (config) {
|
onAppReady: function (config) {
|
||||||
|
|
|
@ -17,6 +17,11 @@
|
||||||
<button type="button" class="btn btn-text-default" id="image-button-original-size" style="width:100px;"><%= scope.textOriginalSize %></button>
|
<button type="button" class="btn btn-text-default" id="image-button-original-size" style="width:100px;"><%= scope.textOriginalSize %></button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small" colspan=2>
|
||||||
|
<button type="button" class="btn btn-text-default" id="image-button-fit-slide" style="width:100px;"><%= scope.textFitSlide %></button>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="padding-small" colspan=2>
|
<td class="padding-small" colspan=2>
|
||||||
<div id="image-button-crop" style="width: 100px;"></div>
|
<div id="image-button-crop" style="width: 100px;"></div>
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<div id="viewport-hbox-layout" class="layout-ct hbox">
|
<div id="viewport-hbox-layout" class="layout-ct hbox">
|
||||||
<div id="left-menu" class="layout-item" style="width: 40px;"></div>
|
<div id="left-menu" class="layout-item" style="width: 40px;"></div>
|
||||||
<div id="about-menu-panel" class="left-menu-full-ct" style="display:none;"></div>
|
<div id="about-menu-panel" class="left-menu-full-ct" style="display:none;"></div>
|
||||||
<div id="editor_sdk" class="layout-item"></div>
|
<div id="editor-container" class="layout-item"><div id="editor_sdk"></div></div>
|
||||||
<div id="right-menu" class="layout-item"></div>
|
<div id="right-menu" class="layout-item"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1760,6 +1760,11 @@ define([
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
addToLayout: function() {
|
||||||
|
if (this.api)
|
||||||
|
this.api.asc_AddToLayout();
|
||||||
|
},
|
||||||
|
|
||||||
createDelayedElementsViewer: function() {
|
createDelayedElementsViewer: function() {
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
|
@ -1833,6 +1838,17 @@ define([
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var mnuResetSlide = new Common.UI.MenuItem({
|
||||||
|
caption : me.txtResetLayout
|
||||||
|
}).on('click', function(item) {
|
||||||
|
if (me.api){
|
||||||
|
me.api.ResetSlide();
|
||||||
|
|
||||||
|
me.fireEvent('editcomplete', me);
|
||||||
|
Common.component.Analytics.trackEvent('DocumentHolder', 'Reset Slide');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
var mnuChangeTheme = new Common.UI.MenuItem({
|
var mnuChangeTheme = new Common.UI.MenuItem({
|
||||||
caption : me.txtChangeTheme,
|
caption : me.txtChangeTheme,
|
||||||
menu : new Common.UI.Menu({
|
menu : new Common.UI.Menu({
|
||||||
|
@ -1910,11 +1926,12 @@ define([
|
||||||
mnuSlideHide.setChecked(value.isSlideHidden===true);
|
mnuSlideHide.setChecked(value.isSlideHidden===true);
|
||||||
me.slideMenu.items[5].setVisible(value.isSlideSelect===true || value.fromThumbs!==true);
|
me.slideMenu.items[5].setVisible(value.isSlideSelect===true || value.fromThumbs!==true);
|
||||||
mnuChangeSlide.setVisible(value.isSlideSelect===true || value.fromThumbs!==true);
|
mnuChangeSlide.setVisible(value.isSlideSelect===true || value.fromThumbs!==true);
|
||||||
|
mnuResetSlide.setVisible(value.isSlideSelect===true || value.fromThumbs!==true);
|
||||||
mnuChangeTheme.setVisible(value.isSlideSelect===true || value.fromThumbs!==true);
|
mnuChangeTheme.setVisible(value.isSlideSelect===true || value.fromThumbs!==true);
|
||||||
menuSlideSettings.setVisible(value.isSlideSelect===true || value.fromThumbs!==true);
|
menuSlideSettings.setVisible(value.isSlideSelect===true || value.fromThumbs!==true);
|
||||||
menuSlideSettings.options.value = null;
|
menuSlideSettings.options.value = null;
|
||||||
|
|
||||||
for (var i = 9; i < 14; i++) {
|
for (var i = 10; i < 15; i++) {
|
||||||
me.slideMenu.items[i].setVisible(value.fromThumbs===true);
|
me.slideMenu.items[i].setVisible(value.fromThumbs===true);
|
||||||
}
|
}
|
||||||
mnuPrintSelection.setVisible(me.mode.canPrint && value.fromThumbs===true);
|
mnuPrintSelection.setVisible(me.mode.canPrint && value.fromThumbs===true);
|
||||||
|
@ -1943,6 +1960,7 @@ define([
|
||||||
mnuSelectAll.setDisabled(locked || me.slidesCount<2);
|
mnuSelectAll.setDisabled(locked || me.slidesCount<2);
|
||||||
mnuDeleteSlide.setDisabled(lockedDeleted || locked);
|
mnuDeleteSlide.setDisabled(lockedDeleted || locked);
|
||||||
mnuChangeSlide.setDisabled(lockedLayout || locked);
|
mnuChangeSlide.setDisabled(lockedLayout || locked);
|
||||||
|
mnuResetSlide.setDisabled(lockedLayout || locked);
|
||||||
mnuChangeTheme.setDisabled(me._state.themeLock || locked );
|
mnuChangeTheme.setDisabled(me._state.themeLock || locked );
|
||||||
mnuSlideHide.setDisabled(lockedLayout || locked);
|
mnuSlideHide.setDisabled(lockedLayout || locked);
|
||||||
mnuPrintSelection.setDisabled(me.slidesCount<1);
|
mnuPrintSelection.setDisabled(me.slidesCount<1);
|
||||||
|
@ -1975,6 +1993,7 @@ define([
|
||||||
mnuSlideHide,
|
mnuSlideHide,
|
||||||
{caption: '--'},
|
{caption: '--'},
|
||||||
mnuChangeSlide,
|
mnuChangeSlide,
|
||||||
|
mnuResetSlide,
|
||||||
mnuChangeTheme,
|
mnuChangeTheme,
|
||||||
menuSlideSettings,
|
menuSlideSettings,
|
||||||
{caption: '--'},
|
{caption: '--'},
|
||||||
|
@ -2888,6 +2907,10 @@ define([
|
||||||
menuAddCommentImg.hide();
|
menuAddCommentImg.hide();
|
||||||
/** coauthoring end **/
|
/** coauthoring end **/
|
||||||
|
|
||||||
|
var menuAddToLayoutImg = new Common.UI.MenuItem({
|
||||||
|
caption : me.addToLayoutText
|
||||||
|
}).on('click', _.bind(me.addToLayout, me));
|
||||||
|
|
||||||
var menuParaCopy = new Common.UI.MenuItem({
|
var menuParaCopy = new Common.UI.MenuItem({
|
||||||
caption : me.textCopy,
|
caption : me.textCopy,
|
||||||
value : 'copy'
|
value : 'copy'
|
||||||
|
@ -2941,6 +2964,10 @@ define([
|
||||||
caption : '--'
|
caption : '--'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var menuAddToLayoutTable = new Common.UI.MenuItem({
|
||||||
|
caption : me.addToLayoutText
|
||||||
|
}).on('click', _.bind(me.addToLayout, me));
|
||||||
|
|
||||||
me.textMenu = new Common.UI.Menu({
|
me.textMenu = new Common.UI.Menu({
|
||||||
initMenu: function(value){
|
initMenu: function(value){
|
||||||
var isInShape = (value.shapeProps && !_.isNull(value.shapeProps.value));
|
var isInShape = (value.shapeProps && !_.isNull(value.shapeProps.value));
|
||||||
|
@ -3245,7 +3272,9 @@ define([
|
||||||
menuAddCommentTable,
|
menuAddCommentTable,
|
||||||
/** coauthoring end **/
|
/** coauthoring end **/
|
||||||
menuAddHyperlinkTable,
|
menuAddHyperlinkTable,
|
||||||
menuHyperlinkTable
|
menuHyperlinkTable,
|
||||||
|
{ caption: '--' },
|
||||||
|
menuAddToLayoutTable
|
||||||
]
|
]
|
||||||
}).on('hide:after', function(menu, e, isFromInputControl) {
|
}).on('hide:after', function(menu, e, isFromInputControl) {
|
||||||
if (me.suppressEditComplete) {
|
if (me.suppressEditComplete) {
|
||||||
|
@ -3329,8 +3358,10 @@ define([
|
||||||
,menuChartEdit
|
,menuChartEdit
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
,menuCommentSeparatorImg,
|
,menuCommentSeparatorImg,
|
||||||
menuAddCommentImg
|
menuAddCommentImg,
|
||||||
/** coauthoring end **/
|
/** coauthoring end **/
|
||||||
|
{ caption: '--' },
|
||||||
|
menuAddToLayoutImg
|
||||||
]
|
]
|
||||||
}).on('hide:after', function(menu, e, isFromInputControl) {
|
}).on('hide:after', function(menu, e, isFromInputControl) {
|
||||||
if (me.suppressEditComplete) {
|
if (me.suppressEditComplete) {
|
||||||
|
@ -3412,7 +3443,7 @@ define([
|
||||||
mergeCellsText : 'Merge Cells',
|
mergeCellsText : 'Merge Cells',
|
||||||
splitCellsText : 'Split Cell...',
|
splitCellsText : 'Split Cell...',
|
||||||
splitCellTitleText : 'Split Cell',
|
splitCellTitleText : 'Split Cell',
|
||||||
originalSizeText : 'Default Size',
|
originalSizeText : 'Actual Size',
|
||||||
advancedImageText : 'Image Advanced Settings',
|
advancedImageText : 'Image Advanced Settings',
|
||||||
hyperlinkText : 'Hyperlink',
|
hyperlinkText : 'Hyperlink',
|
||||||
editHyperlinkText : 'Edit Hyperlink',
|
editHyperlinkText : 'Edit Hyperlink',
|
||||||
|
@ -3574,7 +3605,9 @@ define([
|
||||||
textCropFill: 'Fill',
|
textCropFill: 'Fill',
|
||||||
textCropFit: 'Fit',
|
textCropFit: 'Fit',
|
||||||
toDictionaryText: 'Add to Dictionary',
|
toDictionaryText: 'Add to Dictionary',
|
||||||
txtPrintSelection: 'Print Selection'
|
txtPrintSelection: 'Print Selection',
|
||||||
|
addToLayoutText: 'Add to Layout',
|
||||||
|
txtResetLayout: 'Reset Slide'
|
||||||
|
|
||||||
}, PE.Views.DocumentHolder || {}));
|
}, PE.Views.DocumentHolder || {}));
|
||||||
});
|
});
|
|
@ -878,6 +878,7 @@ define([
|
||||||
me.authors.push(item);
|
me.authors.push(item);
|
||||||
});
|
});
|
||||||
this.tblAuthor.find('.close').toggleClass('hidden', !this.mode.isEdit);
|
this.tblAuthor.find('.close').toggleClass('hidden', !this.mode.isEdit);
|
||||||
|
!this.mode.isEdit && this._ShowHideInfoItem(this.tblAuthor, !!this.authors.length);
|
||||||
}
|
}
|
||||||
this.SetDisabled();
|
this.SetDisabled();
|
||||||
},
|
},
|
||||||
|
@ -898,6 +899,12 @@ define([
|
||||||
this.inputAuthor.setVisible(mode.isEdit);
|
this.inputAuthor.setVisible(mode.isEdit);
|
||||||
this.btnApply.setVisible(mode.isEdit);
|
this.btnApply.setVisible(mode.isEdit);
|
||||||
this.tblAuthor.find('.close').toggleClass('hidden', !mode.isEdit);
|
this.tblAuthor.find('.close').toggleClass('hidden', !mode.isEdit);
|
||||||
|
if (!mode.isEdit) {
|
||||||
|
this.inputTitle._input.attr('placeholder', '');
|
||||||
|
this.inputSubject._input.attr('placeholder', '');
|
||||||
|
this.inputComment._input.attr('placeholder', '');
|
||||||
|
this.inputAuthor._input.attr('placeholder', '');
|
||||||
|
}
|
||||||
this.SetDisabled();
|
this.SetDisabled();
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
|
@ -61,8 +61,7 @@ define([
|
||||||
style: 'min-width: 230px;',
|
style: 'min-width: 230px;',
|
||||||
cls: 'modal-dlg',
|
cls: 'modal-dlg',
|
||||||
id: 'window-hyperlink-settings',
|
id: 'window-hyperlink-settings',
|
||||||
buttons: ['ok', 'cancel'],
|
buttons: ['ok', 'cancel']
|
||||||
footerCls: 'right'
|
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
|
|
|
@ -176,6 +176,12 @@ define([
|
||||||
this.btnCrop.menu.on('item:click', _.bind(this.onCropMenu, this));
|
this.btnCrop.menu.on('item:click', _.bind(this.onCropMenu, this));
|
||||||
this.lockedControls.push(this.btnCrop);
|
this.lockedControls.push(this.btnCrop);
|
||||||
|
|
||||||
|
this.btnFitSlide = new Common.UI.Button({
|
||||||
|
el: $('#image-button-fit-slide')
|
||||||
|
});
|
||||||
|
this.lockedControls.push(this.btnFitSlide);
|
||||||
|
this.btnFitSlide.on('click', _.bind(this.setFitSlide, this));
|
||||||
|
|
||||||
this.btnRotate270 = new Common.UI.Button({
|
this.btnRotate270 = new Common.UI.Button({
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'rotate-270',
|
iconCls: 'rotate-270',
|
||||||
|
@ -378,6 +384,11 @@ define([
|
||||||
this.fireEvent('editcomplete', this);
|
this.fireEvent('editcomplete', this);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
setFitSlide: function() {
|
||||||
|
this.api && this.api.asc_FitImagesToSlide();
|
||||||
|
this.fireEvent('editcomplete', this);
|
||||||
|
},
|
||||||
|
|
||||||
onBtnRotateClick: function(btn) {
|
onBtnRotateClick: function(btn) {
|
||||||
var properties = new Asc.asc_CImgProperty();
|
var properties = new Asc.asc_CImgProperty();
|
||||||
properties.asc_putRotAdd((btn.options.value==1 ? 90 : 270) * 3.14159265358979 / 180);
|
properties.asc_putRotAdd((btn.options.value==1 ? 90 : 270) * 3.14159265358979 / 180);
|
||||||
|
@ -415,7 +426,7 @@ define([
|
||||||
textSize: 'Size',
|
textSize: 'Size',
|
||||||
textWidth: 'Width',
|
textWidth: 'Width',
|
||||||
textHeight: 'Height',
|
textHeight: 'Height',
|
||||||
textOriginalSize: 'Default Size',
|
textOriginalSize: 'Actual Size',
|
||||||
textInsert: 'Replace Image',
|
textInsert: 'Replace Image',
|
||||||
textFromUrl: 'From URL',
|
textFromUrl: 'From URL',
|
||||||
textFromFile: 'From File',
|
textFromFile: 'From File',
|
||||||
|
@ -431,7 +442,8 @@ define([
|
||||||
textHintFlipH: 'Flip Horizontally',
|
textHintFlipH: 'Flip Horizontally',
|
||||||
textCrop: 'Crop',
|
textCrop: 'Crop',
|
||||||
textCropFill: 'Fill',
|
textCropFill: 'Fill',
|
||||||
textCropFit: 'Fit'
|
textCropFit: 'Fit',
|
||||||
|
textFitSlide: 'Fit to Slide'
|
||||||
|
|
||||||
}, PE.Views.ImageSettings || {}));
|
}, PE.Views.ImageSettings || {}));
|
||||||
});
|
});
|
|
@ -316,7 +316,7 @@ define([ 'text!presentationeditor/main/app/template/ImageSettingsAdvanced.tem
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
textOriginalSize: 'Default Size',
|
textOriginalSize: 'Actual Size',
|
||||||
textPosition: 'Position',
|
textPosition: 'Position',
|
||||||
textSize: 'Size',
|
textSize: 'Size',
|
||||||
textWidth: 'Width',
|
textWidth: 'Width',
|
||||||
|
|
239
apps/presentationeditor/main/app/view/ListSettingsDialog.js
Normal file
239
apps/presentationeditor/main/app/view/ListSettingsDialog.js
Normal file
|
@ -0,0 +1,239 @@
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* (c) Copyright Ascensio System SIA 2010-2019
|
||||||
|
*
|
||||||
|
* This program is a free software product. You can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||||
|
* version 3 as published by the Free Software Foundation. In accordance with
|
||||||
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||||
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||||
|
* of any third-party rights.
|
||||||
|
*
|
||||||
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||||
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||||
|
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||||
|
*
|
||||||
|
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
|
||||||
|
* street, Riga, Latvia, EU, LV-1050.
|
||||||
|
*
|
||||||
|
* The interactive user interfaces in modified source and object code versions
|
||||||
|
* of the Program must display Appropriate Legal Notices, as required under
|
||||||
|
* Section 5 of the GNU AGPL version 3.
|
||||||
|
*
|
||||||
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||||
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||||
|
* grant you any rights under trademark law for use of our trademarks.
|
||||||
|
*
|
||||||
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||||
|
* well as technical writing content are licensed under the terms of the
|
||||||
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||||
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ListSettingsDialog.js
|
||||||
|
*
|
||||||
|
* Created by Julia Radzhabova on 30.10.2019
|
||||||
|
* Copyright (c) 2019 Ascensio System SIA. All rights reserved.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
define([
|
||||||
|
'common/main/lib/component/Window',
|
||||||
|
'common/main/lib/component/MetricSpinner',
|
||||||
|
'common/main/lib/component/ThemeColorPalette',
|
||||||
|
'common/main/lib/component/ColorButton'
|
||||||
|
], function () { 'use strict';
|
||||||
|
|
||||||
|
PE.Views.ListSettingsDialog = Common.UI.Window.extend(_.extend({
|
||||||
|
options: {
|
||||||
|
type: 0, // 0 - markers, 1 - numbers
|
||||||
|
width: 230,
|
||||||
|
height: 156,
|
||||||
|
style: 'min-width: 230px;',
|
||||||
|
cls: 'modal-dlg',
|
||||||
|
split: false,
|
||||||
|
buttons: ['ok', 'cancel']
|
||||||
|
},
|
||||||
|
|
||||||
|
initialize : function(options) {
|
||||||
|
this.type = options.type || 0;
|
||||||
|
|
||||||
|
_.extend(this.options, {
|
||||||
|
title: this.txtTitle,
|
||||||
|
height: this.type==1 ? 190 : 156
|
||||||
|
}, options || {});
|
||||||
|
|
||||||
|
this.template = [
|
||||||
|
'<div class="box">',
|
||||||
|
'<div class="input-row">',
|
||||||
|
'<label class="text" style="width: 70px;">' + this.txtSize + '</label><div id="id-dlg-list-size"></div><label class="text" style="margin-left: 10px;">' + this.txtOfText + '</label>',
|
||||||
|
'</div>',
|
||||||
|
'<div style="margin-top: 10px;">',
|
||||||
|
'<label class="text" style="width: 70px;">' + this.txtColor + '</label><div id="id-dlg-list-color" style="display: inline-block;"></div>',
|
||||||
|
'</div>',
|
||||||
|
'<% if (type == 1) { %>',
|
||||||
|
'<div class="input-row" style="margin-top: 10px;">',
|
||||||
|
'<label class="text" style="width: 70px;">' + this.txtStart + '</label><div id="id-dlg-list-start"></div>',
|
||||||
|
'</div>',
|
||||||
|
'<% } %>',
|
||||||
|
'</div>'
|
||||||
|
].join('');
|
||||||
|
|
||||||
|
this.props = options.props;
|
||||||
|
this.options.tpl = _.template(this.template)(this.options);
|
||||||
|
|
||||||
|
Common.UI.Window.prototype.initialize.call(this, this.options);
|
||||||
|
},
|
||||||
|
|
||||||
|
render: function() {
|
||||||
|
Common.UI.Window.prototype.render.call(this);
|
||||||
|
|
||||||
|
var me = this,
|
||||||
|
$window = this.getChild();
|
||||||
|
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
|
||||||
|
|
||||||
|
this.spnSize = new Common.UI.MetricSpinner({
|
||||||
|
el : $window.find('#id-dlg-list-size'),
|
||||||
|
step : 1,
|
||||||
|
width : 45,
|
||||||
|
value : 100,
|
||||||
|
defaultUnit : '',
|
||||||
|
maxValue : 400,
|
||||||
|
minValue : 25,
|
||||||
|
allowDecimal: false
|
||||||
|
}).on('change', function(field, newValue, oldValue, eOpts){
|
||||||
|
if (me._changedProps) {
|
||||||
|
me._changedProps.asc_putBulletSize(field.getNumberValue());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
this.btnColor = new Common.UI.ColorButton({
|
||||||
|
style: "width:45px;",
|
||||||
|
menu : new Common.UI.Menu({
|
||||||
|
additionalAlign: this.menuAddAlign,
|
||||||
|
items: [
|
||||||
|
{ template: _.template('<div id="id-dlg-list-color-menu" style="width: 169px; height: 220px; margin: 10px;"></div>') },
|
||||||
|
{ template: _.template('<a id="id-dlg-list-color-new" style="padding-left:12px;">' + this.textNewColor + '</a>') }
|
||||||
|
]
|
||||||
|
})
|
||||||
|
});
|
||||||
|
this.btnColor.on('render:after', function(btn) {
|
||||||
|
me.colors = new Common.UI.ThemeColorPalette({
|
||||||
|
el: $('#id-dlg-list-color-menu'),
|
||||||
|
transparent: false
|
||||||
|
});
|
||||||
|
me.colors.on('select', _.bind(me.onColorsSelect, me));
|
||||||
|
});
|
||||||
|
this.btnColor.render($window.find('#id-dlg-list-color'));
|
||||||
|
$('#id-dlg-list-color-new').on('click', _.bind(this.addNewColor, this, this.colors));
|
||||||
|
|
||||||
|
this.menuAddAlign = function(menuRoot, left, top) {
|
||||||
|
var self = this;
|
||||||
|
if (!$window.hasClass('notransform')) {
|
||||||
|
$window.addClass('notransform');
|
||||||
|
menuRoot.addClass('hidden');
|
||||||
|
setTimeout(function() {
|
||||||
|
menuRoot.removeClass('hidden');
|
||||||
|
menuRoot.css({left: left, top: top});
|
||||||
|
self.options.additionalAlign = null;
|
||||||
|
}, 300);
|
||||||
|
} else {
|
||||||
|
menuRoot.css({left: left, top: top});
|
||||||
|
self.options.additionalAlign = null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
this.spnStart = new Common.UI.MetricSpinner({
|
||||||
|
el : $window.find('#id-dlg-list-start'),
|
||||||
|
step : 1,
|
||||||
|
width : 45,
|
||||||
|
value : 1,
|
||||||
|
defaultUnit : '',
|
||||||
|
maxValue : 32767,
|
||||||
|
minValue : 1,
|
||||||
|
allowDecimal: false
|
||||||
|
}).on('change', function(field, newValue, oldValue, eOpts){
|
||||||
|
if (me._changedProps) {
|
||||||
|
me._changedProps.put_NumStartAt(field.getNumberValue());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
this.afterRender();
|
||||||
|
},
|
||||||
|
|
||||||
|
afterRender: function() {
|
||||||
|
this.updateThemeColors();
|
||||||
|
this._setDefaults(this.props);
|
||||||
|
},
|
||||||
|
|
||||||
|
updateThemeColors: function() {
|
||||||
|
this.colors.updateColors(Common.Utils.ThemeColor.getEffectColors(), Common.Utils.ThemeColor.getStandartColors());
|
||||||
|
},
|
||||||
|
|
||||||
|
addNewColor: function(picker, btn) {
|
||||||
|
picker.addNewColor((typeof(btn.color) == 'object') ? btn.color.color : btn.color);
|
||||||
|
},
|
||||||
|
|
||||||
|
onColorsSelect: function(picker, color) {
|
||||||
|
this.btnColor.setColor(color);
|
||||||
|
if (this._changedProps) {
|
||||||
|
this._changedProps.asc_putBulletColor(Common.Utils.ThemeColor.getRgbColor(color));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
_handleInput: function(state) {
|
||||||
|
if (this.options.handler) {
|
||||||
|
this.options.handler.call(this, state, this._changedProps);
|
||||||
|
}
|
||||||
|
this.close();
|
||||||
|
},
|
||||||
|
|
||||||
|
onBtnClick: function(event) {
|
||||||
|
this._handleInput(event.currentTarget.attributes['result'].value);
|
||||||
|
},
|
||||||
|
|
||||||
|
onPrimary: function(event) {
|
||||||
|
this._handleInput('ok');
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
|
||||||
|
_setDefaults: function (props) {
|
||||||
|
if (props) {
|
||||||
|
this.spnSize.setValue(props.asc_getBulletSize() || '', true);
|
||||||
|
this.spnStart.setValue(props.get_NumStartAt() || '', true);
|
||||||
|
var color = props.asc_getBulletColor();
|
||||||
|
if (color) {
|
||||||
|
if (color.get_type() == Asc.c_oAscColor.COLOR_TYPE_SCHEME) {
|
||||||
|
color = {color: Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()), effectValue: color.get_value()};
|
||||||
|
} else {
|
||||||
|
color = Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b());
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
color = 'transparent';
|
||||||
|
this.btnColor.setColor(color);
|
||||||
|
if ( typeof(color) == 'object' ) {
|
||||||
|
var isselected = false;
|
||||||
|
for (var i=0; i<10; i++) {
|
||||||
|
if ( Common.Utils.ThemeColor.ThemeValues[i] == color.effectValue ) {
|
||||||
|
this.colors.select(color,true);
|
||||||
|
isselected = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!isselected) this.colors.clearSelection();
|
||||||
|
} else
|
||||||
|
this.colors.select(color,true);
|
||||||
|
}
|
||||||
|
this._changedProps = new Asc.asc_CParagraphProperty();
|
||||||
|
},
|
||||||
|
|
||||||
|
txtTitle: 'List Settings',
|
||||||
|
txtSize: 'Size',
|
||||||
|
txtColor: 'Color',
|
||||||
|
txtOfText: '% of text',
|
||||||
|
textNewColor: 'Add New Custom Color',
|
||||||
|
txtStart: 'Start at'
|
||||||
|
}, PE.Views.ListSettingsDialog || {}))
|
||||||
|
});
|
|
@ -104,9 +104,9 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced
|
||||||
];
|
];
|
||||||
|
|
||||||
this._arrTabAlign = [
|
this._arrTabAlign = [
|
||||||
{ value: 1, displayValue: this.textTabLeft },
|
{ value: Asc.c_oAscTabType.Left, displayValue: this.textTabLeft },
|
||||||
{ value: 3, displayValue: this.textTabCenter },
|
{ value: Asc.c_oAscTabType.Center, displayValue: this.textTabCenter },
|
||||||
{ value: 2, displayValue: this.textTabRight }
|
{ value: Asc.c_oAscTabType.Right, displayValue: this.textTabRight }
|
||||||
];
|
];
|
||||||
this._arrKeyTabAlign = [];
|
this._arrKeyTabAlign = [];
|
||||||
this._arrTabAlign.forEach(function(item) {
|
this._arrTabAlign.forEach(function(item) {
|
||||||
|
@ -378,7 +378,7 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced
|
||||||
cls : 'input-group-nr',
|
cls : 'input-group-nr',
|
||||||
data : this._arrTabAlign
|
data : this._arrTabAlign
|
||||||
});
|
});
|
||||||
this.cmbAlign.setValue(1);
|
this.cmbAlign.setValue(Asc.c_oAscTabType.Left);
|
||||||
|
|
||||||
this.btnAddTab = new Common.UI.Button({
|
this.btnAddTab = new Common.UI.Button({
|
||||||
el: $('#paraadv-button-add-tab')
|
el: $('#paraadv-button-add-tab')
|
||||||
|
|
|
@ -61,7 +61,7 @@ define([
|
||||||
this.template = [
|
this.template = [
|
||||||
'<div class="box" style="height: 148px;">',
|
'<div class="box" style="height: 148px;">',
|
||||||
'<div class="input-row">',
|
'<div class="input-row">',
|
||||||
'<label class="text columns-text" style="font-weight: bold;">' + this.textSlideSize + '</label>',
|
'<label class="text" style="font-weight: bold;">' + this.textSlideSize + '</label>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div id="slide-size-combo" class="" style="margin-bottom: 10px;"></div>',
|
'<div id="slide-size-combo" class="" style="margin-bottom: 10px;"></div>',
|
||||||
'<table cols="2" style="width: 100%;margin-bottom: 7px;">',
|
'<table cols="2" style="width: 100%;margin-bottom: 7px;">',
|
||||||
|
@ -77,7 +77,7 @@ define([
|
||||||
'</tr>',
|
'</tr>',
|
||||||
'</table>',
|
'</table>',
|
||||||
'<div class="input-row">',
|
'<div class="input-row">',
|
||||||
'<label class="text columns-text" style="font-weight: bold;">' + this.textSlideOrientation + '</label>',
|
'<label class="text" style="font-weight: bold;">' + this.textSlideOrientation + '</label>',
|
||||||
'</div>',
|
'</div>',
|
||||||
'<div id="slide-orientation-combo" class="" style="margin-bottom: 10px;"></div>',
|
'<div id="slide-orientation-combo" class="" style="margin-bottom: 10px;"></div>',
|
||||||
'</div>',
|
'</div>',
|
||||||
|
|
|
@ -1062,7 +1062,12 @@ define([
|
||||||
new Common.UI.Menu({
|
new Common.UI.Menu({
|
||||||
style: 'min-width: 139px',
|
style: 'min-width: 139px',
|
||||||
items: [
|
items: [
|
||||||
{template: _.template('<div id="id-toolbar-menu-markers" class="menu-markers" style="width: 139px; margin: 0 5px;"></div>')}
|
{template: _.template('<div id="id-toolbar-menu-markers" class="menu-markers" style="width: 139px; margin: 0 16px;"></div>')},
|
||||||
|
this.mnuMarkerSettings = new Common.UI.MenuItem({
|
||||||
|
caption: this.textListSettings,
|
||||||
|
disabled: (this.mnuMarkersPicker.conf.index || 0)==0,
|
||||||
|
value: 'settings'
|
||||||
|
})
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
@ -1070,7 +1075,12 @@ define([
|
||||||
this.btnNumbers.setMenu(
|
this.btnNumbers.setMenu(
|
||||||
new Common.UI.Menu({
|
new Common.UI.Menu({
|
||||||
items: [
|
items: [
|
||||||
{template: _.template('<div id="id-toolbar-menu-numbering" class="menu-markers" style="width: 185px; margin: 0 5px;"></div>')}
|
{template: _.template('<div id="id-toolbar-menu-numbering" class="menu-markers" style="width: 185px; margin: 0 16px;"></div>')},
|
||||||
|
this.mnuNumberSettings = new Common.UI.MenuItem({
|
||||||
|
caption: this.textListSettings,
|
||||||
|
disabled: (this.mnuNumbersPicker.conf.index || 0)==0,
|
||||||
|
value: 'settings'
|
||||||
|
})
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
@ -1665,7 +1675,8 @@ define([
|
||||||
tipDateTime: 'Insert current date and time',
|
tipDateTime: 'Insert current date and time',
|
||||||
capBtnInsHeader: 'Header/Footer',
|
capBtnInsHeader: 'Header/Footer',
|
||||||
capBtnSlideNum: 'Slide Number',
|
capBtnSlideNum: 'Slide Number',
|
||||||
capBtnDateTime: 'Date & Time'
|
capBtnDateTime: 'Date & Time',
|
||||||
|
textListSettings: 'List Settings'
|
||||||
}
|
}
|
||||||
}()), PE.Views.Toolbar || {}));
|
}()), PE.Views.Toolbar || {}));
|
||||||
});
|
});
|
|
@ -17,7 +17,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: #f4f4f4;
|
background-color: #e2e2e2;
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,6 +30,7 @@
|
||||||
.loadmask > .brendpanel > div {
|
.loadmask > .brendpanel > div {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel .loading-logo {
|
.loadmask > .brendpanel .loading-logo {
|
||||||
|
@ -49,15 +50,6 @@
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel .circle {
|
|
||||||
vertical-align: middle;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
border-radius: 12px;
|
|
||||||
margin: 4px 10px;
|
|
||||||
background: rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.loadmask > .brendpanel .rect {
|
.loadmask > .brendpanel .rect {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
|
@ -68,8 +60,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar {
|
.loadmask > .sktoolbar {
|
||||||
background: #fafafa;
|
background: #f1f1f1;
|
||||||
border-bottom: 1px solid #e2e2e2;
|
border-bottom: 1px solid #cbcbcb;
|
||||||
height: 46px;
|
height: 46px;
|
||||||
padding: 10px 12px;
|
padding: 10px 12px;
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
|
@ -167,22 +159,22 @@
|
||||||
|
|
||||||
@keyframes flickerAnimation {
|
@keyframes flickerAnimation {
|
||||||
0% { opacity:1; }
|
0% { opacity:1; }
|
||||||
50% { opacity:0.3; }
|
50% { opacity:0.5; }
|
||||||
100% { opacity:1; }
|
100% { opacity:1; }
|
||||||
}
|
}
|
||||||
@-o-keyframes flickerAnimation{
|
@-o-keyframes flickerAnimation{
|
||||||
0% { opacity:1; }
|
0% { opacity:1; }
|
||||||
50% { opacity:0.3; }
|
50% { opacity:0.5; }
|
||||||
100% { opacity:1; }
|
100% { opacity:1; }
|
||||||
}
|
}
|
||||||
@-moz-keyframes flickerAnimation{
|
@-moz-keyframes flickerAnimation{
|
||||||
0% { opacity:1; }
|
0% { opacity:1; }
|
||||||
50% { opacity:0.3; }
|
50% { opacity:0.5; }
|
||||||
100% { opacity:1; }
|
100% { opacity:1; }
|
||||||
}
|
}
|
||||||
@-webkit-keyframes flickerAnimation{
|
@-webkit-keyframes flickerAnimation{
|
||||||
0% { opacity:1; }
|
0% { opacity:1; }
|
||||||
50% { opacity:0.3; }
|
50% { opacity:0.5; }
|
||||||
100% { opacity:1; }
|
100% { opacity:1; }
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -245,7 +237,7 @@
|
||||||
<body>
|
<body>
|
||||||
<div id="loading-mask" class="loadmask">
|
<div id="loading-mask" class="loadmask">
|
||||||
<div class="brendpanel">
|
<div class="brendpanel">
|
||||||
<div><div class="loading-logo"><img src="../../common/main/resources/img/header/header-logo@2x.png"></div><div class="circle"></div><div class="circle"></div><div class="circle"></div><div class="circle"></div><div class="spacer"></div><div class="rect"></div></div><div><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><div class="spacer"></div><span class="circle"></span><span class="circle"></span><span class="circle"></span></div>
|
<div><div class="loading-logo"><img src="../../common/main/resources/img/header/header-logo@2x.png"></div><div class="spacer"></div><div class="rect"></div></div><div><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><div class="spacer"></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="sktoolbar">
|
<div class="sktoolbar">
|
||||||
<ul><li/><li class="space" style="width: 78px;"/><li/><li class="space"/><li style="width: 210px;"/><li class="space"/><li style="width: 120px;"/><li class="space" style="width: 210px;"/><li style="width: 100px;"/><li class="fat"/></ul>
|
<ul><li/><li class="space" style="width: 78px;"/><li/><li class="space"/><li style="width: 210px;"/><li class="space"/><li style="width: 120px;"/><li class="space" style="width: 210px;"/><li style="width: 100px;"/><li class="fat"/></ul>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: #f4f4f4;
|
background-color: #e2e2e2;
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@
|
||||||
.loadmask > .brendpanel > div {
|
.loadmask > .brendpanel > div {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel .loading-logo {
|
.loadmask > .brendpanel .loading-logo {
|
||||||
|
@ -51,15 +52,6 @@
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .brendpanel .circle {
|
|
||||||
vertical-align: middle;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
border-radius: 12px;
|
|
||||||
margin: 4px 10px;
|
|
||||||
background: rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.loadmask > .brendpanel .rect {
|
.loadmask > .brendpanel .rect {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
|
@ -70,8 +62,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.loadmask > .sktoolbar {
|
.loadmask > .sktoolbar {
|
||||||
background: #fafafa;
|
background: #f1f1f1;
|
||||||
border-bottom: 1px solid #e2e2e2;
|
border-bottom: 1px solid #cbcbcb;
|
||||||
height: 46px;
|
height: 46px;
|
||||||
padding: 10px 12px;
|
padding: 10px 12px;
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
|
@ -169,22 +161,22 @@
|
||||||
|
|
||||||
@keyframes flickerAnimation {
|
@keyframes flickerAnimation {
|
||||||
0% { opacity:1; }
|
0% { opacity:1; }
|
||||||
50% { opacity:0.3; }
|
50% { opacity:0.5; }
|
||||||
100% { opacity:1; }
|
100% { opacity:1; }
|
||||||
}
|
}
|
||||||
@-o-keyframes flickerAnimation{
|
@-o-keyframes flickerAnimation{
|
||||||
0% { opacity:1; }
|
0% { opacity:1; }
|
||||||
50% { opacity:0.3; }
|
50% { opacity:0.5; }
|
||||||
100% { opacity:1; }
|
100% { opacity:1; }
|
||||||
}
|
}
|
||||||
@-moz-keyframes flickerAnimation{
|
@-moz-keyframes flickerAnimation{
|
||||||
0% { opacity:1; }
|
0% { opacity:1; }
|
||||||
50% { opacity:0.3; }
|
50% { opacity:0.5; }
|
||||||
100% { opacity:1; }
|
100% { opacity:1; }
|
||||||
}
|
}
|
||||||
@-webkit-keyframes flickerAnimation{
|
@-webkit-keyframes flickerAnimation{
|
||||||
0% { opacity:1; }
|
0% { opacity:1; }
|
||||||
50% { opacity:0.3; }
|
50% { opacity:0.5; }
|
||||||
100% { opacity:1; }
|
100% { opacity:1; }
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -251,7 +243,7 @@
|
||||||
<body>
|
<body>
|
||||||
<div id="loading-mask" class="loadmask">
|
<div id="loading-mask" class="loadmask">
|
||||||
<div class="brendpanel">
|
<div class="brendpanel">
|
||||||
<div><div class="loading-logo"><img src="../../../apps/presentationeditor/main/resources/img/header/header-logo@2x.png"></div><div class="circle"></div><div class="circle"></div><div class="circle"></div><div class="circle"></div><div class="spacer"></div><div class="rect"></div></div><div><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><div class="spacer"></div><span class="circle"></span><span class="circle"></span><span class="circle"></span></div>
|
<div><div class="loading-logo"><img src="../../../apps/presentationeditor/main/resources/img/header/header-logo@2x.png"></div><div class="spacer"></div><div class="rect"></div></div><div><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><span class="rect"></span><div class="spacer"></div></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="sktoolbar">
|
<div class="sktoolbar">
|
||||||
<ul><li/><li class="space" style="width: 78px;"/><li/><li class="space"/><li style="width: 210px;"/><li class="space"/><li style="width: 120px;"/><li class="space" style="width: 210px;"/><li style="width: 100px;"/><li class="fat"/></ul>
|
<ul><li/><li class="space" style="width: 78px;"/><li/><li class="space"/><li style="width: 210px;"/><li class="space"/><li style="width: 120px;"/><li class="space" style="width: 210px;"/><li style="width: 100px;"/><li class="fat"/></ul>
|
||||||
|
|
|
@ -230,7 +230,7 @@
|
||||||
"PE.Controllers.Main.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права. <br> Моля, свържете се с администратора на сървъра за документи.",
|
"PE.Controllers.Main.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права. <br> Моля, свържете се с администратора на сървъра за документи.",
|
||||||
"PE.Controllers.Main.errorBadImageUrl": "URL адресът на изображението е неправилен",
|
"PE.Controllers.Main.errorBadImageUrl": "URL адресът на изображението е неправилен",
|
||||||
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Връзката със сървъра е загубена. Документът не може да бъде редактиран в момента.",
|
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Връзката със сървъра е загубена. Документът не може да бъде редактиран в момента.",
|
||||||
"PE.Controllers.Main.errorConnectToServer": "Документът не може да бъде запасен. Моля, проверете настройките за връзка или се свържете с администратора си.<br>Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа. <br><br>Намерете повече информация за свързването на сървър за документи <a href=\"%1\" target=\"_blank\">тук</a>",
|
"PE.Controllers.Main.errorConnectToServer": "Документът не може да бъде запасен. Моля, проверете настройките за връзка или се свържете с администратора си.<br>Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа.",
|
||||||
"PE.Controllers.Main.errorDatabaseConnection": "Външна грешка. <br> Грешка при свързване към база данни. Моля, свържете се с екипа за поддръжка, в случай че грешката продължава.",
|
"PE.Controllers.Main.errorDatabaseConnection": "Външна грешка. <br> Грешка при свързване към база данни. Моля, свържете се с екипа за поддръжка, в случай че грешката продължава.",
|
||||||
"PE.Controllers.Main.errorDataEncrypted": "Получени са криптирани промени, които не могат да бъдат дешифрирани.",
|
"PE.Controllers.Main.errorDataEncrypted": "Получени са криптирани промени, които не могат да бъдат дешифрирани.",
|
||||||
"PE.Controllers.Main.errorDataRange": "Неправилен обхват от данни.",
|
"PE.Controllers.Main.errorDataRange": "Неправилен обхват от данни.",
|
||||||
|
@ -1608,7 +1608,7 @@
|
||||||
"PE.Views.Toolbar.capTabFile": "Файл",
|
"PE.Views.Toolbar.capTabFile": "Файл",
|
||||||
"PE.Views.Toolbar.capTabHome": "У дома",
|
"PE.Views.Toolbar.capTabHome": "У дома",
|
||||||
"PE.Views.Toolbar.capTabInsert": "Вмъкни",
|
"PE.Views.Toolbar.capTabInsert": "Вмъкни",
|
||||||
"PE.Views.Toolbar.mniCustomTable": "Вмъкване на персонализирана таблица",
|
"PE.Views.Toolbar.mniCustomTable": "Персонализирана таблица",
|
||||||
"PE.Views.Toolbar.mniImageFromFile": "Изображение от файла",
|
"PE.Views.Toolbar.mniImageFromFile": "Изображение от файла",
|
||||||
"PE.Views.Toolbar.mniImageFromStorage": "Изображение от хранилището",
|
"PE.Views.Toolbar.mniImageFromStorage": "Изображение от хранилището",
|
||||||
"PE.Views.Toolbar.mniImageFromUrl": "Изображение от URL адрес",
|
"PE.Views.Toolbar.mniImageFromUrl": "Изображение от URL адрес",
|
||||||
|
|
|
@ -127,7 +127,7 @@
|
||||||
"PE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
"PE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.<br>Prosím, kontaktujte administrátora vašeho Dokumentového serveru.",
|
||||||
"PE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná",
|
"PE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná",
|
||||||
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Spojení se serverem ztraceno. Dokument nyní nelze upravovat.",
|
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Spojení se serverem ztraceno. Dokument nyní nelze upravovat.",
|
||||||
"PE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím, zkontrolujte nastavení vašeho připojení nebo kontaktujte vašeho administrátora.<br> Při kliknutí na tlačítko \"OK\" budete vyzváni ke stažení dokumentu.<br><br> Více informací o připojení najdete v Dokumentovém serveru <a href=\"%1\" target=\"_blank\">here</a>",
|
"PE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím, zkontrolujte nastavení vašeho připojení nebo kontaktujte vašeho administrátora.<br> Při kliknutí na tlačítko \"OK\" budete vyzváni ke stažení dokumentu.",
|
||||||
"PE.Controllers.Main.errorDatabaseConnection": "Externí chyba.<br>Chyba spojení s databází. Prosím kontaktujte podporu, pokud chyba přetrvává.",
|
"PE.Controllers.Main.errorDatabaseConnection": "Externí chyba.<br>Chyba spojení s databází. Prosím kontaktujte podporu, pokud chyba přetrvává.",
|
||||||
"PE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.",
|
"PE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.",
|
||||||
"PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
"PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1",
|
||||||
|
|
|
@ -230,7 +230,7 @@
|
||||||
"PE.Controllers.Main.errorAccessDeny": "Sie haben versucht die Änderungen im Dokument, zu dem Sie keine Berechtigungen haben, vorzunehemen.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
"PE.Controllers.Main.errorAccessDeny": "Sie haben versucht die Änderungen im Dokument, zu dem Sie keine Berechtigungen haben, vorzunehemen.<br>Wenden Sie sich an Ihren Serveradministrator.",
|
||||||
"PE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch",
|
"PE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch",
|
||||||
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server verloren. Das Dokument kann momentan nicht bearbeitet werden.",
|
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server verloren. Das Dokument kann momentan nicht bearbeitet werden.",
|
||||||
"PE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.<br><br>Mehr Informationen über die Verbindung zum Dokumentenserver finden Sie <a href=\"%1\" target=\"_blank\">hier</a>",
|
"PE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.<br>Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.",
|
||||||
"PE.Controllers.Main.errorDatabaseConnection": "Externer Fehler.<br>Fehler beim Verbinden zur Datenbank. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.",
|
"PE.Controllers.Main.errorDatabaseConnection": "Externer Fehler.<br>Fehler beim Verbinden zur Datenbank. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.",
|
||||||
"PE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
|
"PE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.",
|
||||||
"PE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
"PE.Controllers.Main.errorDataRange": "Falscher Datenbereich.",
|
||||||
|
|
|
@ -239,7 +239,7 @@
|
||||||
"PE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.",
|
"PE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.",
|
||||||
"PE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect",
|
"PE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect",
|
||||||
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.",
|
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.",
|
||||||
"PE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.<br><br>Find more information about connecting Document Server <a href=\"%1\" target=\"_blank\">here</a>",
|
"PE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.",
|
||||||
"PE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. Please contact support in case the error persists.",
|
"PE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. Please contact support in case the error persists.",
|
||||||
"PE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
|
"PE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
|
||||||
"PE.Controllers.Main.errorDataRange": "Incorrect data range.",
|
"PE.Controllers.Main.errorDataRange": "Incorrect data range.",
|
||||||
|
@ -263,7 +263,7 @@
|
||||||
"PE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
"PE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||||
"PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
"PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||||
"PE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
"PE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||||
"PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print until the connection is restored.",
|
"PE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
|
||||||
"PE.Controllers.Main.leavePageText": "You have unsaved changes in this presentation. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
|
"PE.Controllers.Main.leavePageText": "You have unsaved changes in this presentation. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
|
||||||
"PE.Controllers.Main.loadFontsTextText": "Loading data...",
|
"PE.Controllers.Main.loadFontsTextText": "Loading data...",
|
||||||
"PE.Controllers.Main.loadFontsTitleText": "Loading Data",
|
"PE.Controllers.Main.loadFontsTitleText": "Loading Data",
|
||||||
|
@ -939,6 +939,7 @@
|
||||||
"PE.Views.DateTimeDialog.txtTitle": "Date & Time",
|
"PE.Views.DateTimeDialog.txtTitle": "Date & Time",
|
||||||
"PE.Views.DocumentHolder.aboveText": "Above",
|
"PE.Views.DocumentHolder.aboveText": "Above",
|
||||||
"PE.Views.DocumentHolder.addCommentText": "Add Comment",
|
"PE.Views.DocumentHolder.addCommentText": "Add Comment",
|
||||||
|
"PE.Views.DocumentHolder.addToLayoutText": "Add to Layout",
|
||||||
"PE.Views.DocumentHolder.advancedImageText": "Image Advanced Settings",
|
"PE.Views.DocumentHolder.advancedImageText": "Image Advanced Settings",
|
||||||
"PE.Views.DocumentHolder.advancedParagraphText": "Text Advanced Settings",
|
"PE.Views.DocumentHolder.advancedParagraphText": "Text Advanced Settings",
|
||||||
"PE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings",
|
"PE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings",
|
||||||
|
@ -975,7 +976,7 @@
|
||||||
"PE.Views.DocumentHolder.mergeCellsText": "Merge Cells",
|
"PE.Views.DocumentHolder.mergeCellsText": "Merge Cells",
|
||||||
"PE.Views.DocumentHolder.moreText": "More variants...",
|
"PE.Views.DocumentHolder.moreText": "More variants...",
|
||||||
"PE.Views.DocumentHolder.noSpellVariantsText": "No variants",
|
"PE.Views.DocumentHolder.noSpellVariantsText": "No variants",
|
||||||
"PE.Views.DocumentHolder.originalSizeText": "Default Size",
|
"PE.Views.DocumentHolder.originalSizeText": "Actual Size",
|
||||||
"PE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink",
|
"PE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink",
|
||||||
"PE.Views.DocumentHolder.rightText": "Right",
|
"PE.Views.DocumentHolder.rightText": "Right",
|
||||||
"PE.Views.DocumentHolder.rowText": "Row",
|
"PE.Views.DocumentHolder.rowText": "Row",
|
||||||
|
@ -987,7 +988,7 @@
|
||||||
"PE.Views.DocumentHolder.textArrangeBack": "Send to Background",
|
"PE.Views.DocumentHolder.textArrangeBack": "Send to Background",
|
||||||
"PE.Views.DocumentHolder.textArrangeBackward": "Send Backward",
|
"PE.Views.DocumentHolder.textArrangeBackward": "Send Backward",
|
||||||
"PE.Views.DocumentHolder.textArrangeForward": "Bring Forward",
|
"PE.Views.DocumentHolder.textArrangeForward": "Bring Forward",
|
||||||
"PE.Views.DocumentHolder.textArrangeFront": "Bring To Foreground",
|
"PE.Views.DocumentHolder.textArrangeFront": "Bring to Foreground",
|
||||||
"PE.Views.DocumentHolder.textCopy": "Copy",
|
"PE.Views.DocumentHolder.textCopy": "Copy",
|
||||||
"PE.Views.DocumentHolder.textCrop": "Crop",
|
"PE.Views.DocumentHolder.textCrop": "Crop",
|
||||||
"PE.Views.DocumentHolder.textCropFill": "Fill",
|
"PE.Views.DocumentHolder.textCropFill": "Fill",
|
||||||
|
@ -1093,6 +1094,7 @@
|
||||||
"PE.Views.DocumentHolder.txtRemScripts": "Remove scripts",
|
"PE.Views.DocumentHolder.txtRemScripts": "Remove scripts",
|
||||||
"PE.Views.DocumentHolder.txtRemSubscript": "Remove subscript",
|
"PE.Views.DocumentHolder.txtRemSubscript": "Remove subscript",
|
||||||
"PE.Views.DocumentHolder.txtRemSuperscript": "Remove superscript",
|
"PE.Views.DocumentHolder.txtRemSuperscript": "Remove superscript",
|
||||||
|
"PE.Views.DocumentHolder.txtResetLayout": "Reset Slide",
|
||||||
"PE.Views.DocumentHolder.txtScriptsAfter": "Scripts after text",
|
"PE.Views.DocumentHolder.txtScriptsAfter": "Scripts after text",
|
||||||
"PE.Views.DocumentHolder.txtScriptsBefore": "Scripts before text",
|
"PE.Views.DocumentHolder.txtScriptsBefore": "Scripts before text",
|
||||||
"PE.Views.DocumentHolder.txtSelectAll": "Select All",
|
"PE.Views.DocumentHolder.txtSelectAll": "Select All",
|
||||||
|
@ -1249,6 +1251,7 @@
|
||||||
"PE.Views.ImageSettings.textCropFit": "Fit",
|
"PE.Views.ImageSettings.textCropFit": "Fit",
|
||||||
"PE.Views.ImageSettings.textEdit": "Edit",
|
"PE.Views.ImageSettings.textEdit": "Edit",
|
||||||
"PE.Views.ImageSettings.textEditObject": "Edit Object",
|
"PE.Views.ImageSettings.textEditObject": "Edit Object",
|
||||||
|
"PE.Views.ImageSettings.textFitSlide": "Fit to Slide",
|
||||||
"PE.Views.ImageSettings.textFlip": "Flip",
|
"PE.Views.ImageSettings.textFlip": "Flip",
|
||||||
"PE.Views.ImageSettings.textFromFile": "From File",
|
"PE.Views.ImageSettings.textFromFile": "From File",
|
||||||
"PE.Views.ImageSettings.textFromUrl": "From URL",
|
"PE.Views.ImageSettings.textFromUrl": "From URL",
|
||||||
|
@ -1258,7 +1261,7 @@
|
||||||
"PE.Views.ImageSettings.textHintFlipH": "Flip Horizontally",
|
"PE.Views.ImageSettings.textHintFlipH": "Flip Horizontally",
|
||||||
"PE.Views.ImageSettings.textHintFlipV": "Flip Vertically",
|
"PE.Views.ImageSettings.textHintFlipV": "Flip Vertically",
|
||||||
"PE.Views.ImageSettings.textInsert": "Replace Image",
|
"PE.Views.ImageSettings.textInsert": "Replace Image",
|
||||||
"PE.Views.ImageSettings.textOriginalSize": "Default Size",
|
"PE.Views.ImageSettings.textOriginalSize": "Actual Size",
|
||||||
"PE.Views.ImageSettings.textRotate90": "Rotate 90°",
|
"PE.Views.ImageSettings.textRotate90": "Rotate 90°",
|
||||||
"PE.Views.ImageSettings.textRotation": "Rotation",
|
"PE.Views.ImageSettings.textRotation": "Rotation",
|
||||||
"PE.Views.ImageSettings.textSize": "Size",
|
"PE.Views.ImageSettings.textSize": "Size",
|
||||||
|
@ -1272,7 +1275,7 @@
|
||||||
"PE.Views.ImageSettingsAdvanced.textHeight": "Height",
|
"PE.Views.ImageSettingsAdvanced.textHeight": "Height",
|
||||||
"PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally",
|
"PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally",
|
||||||
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "Constant proportions",
|
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "Constant proportions",
|
||||||
"PE.Views.ImageSettingsAdvanced.textOriginalSize": "Default Size",
|
"PE.Views.ImageSettingsAdvanced.textOriginalSize": "Actual Size",
|
||||||
"PE.Views.ImageSettingsAdvanced.textPlacement": "Placement",
|
"PE.Views.ImageSettingsAdvanced.textPlacement": "Placement",
|
||||||
"PE.Views.ImageSettingsAdvanced.textPosition": "Position",
|
"PE.Views.ImageSettingsAdvanced.textPosition": "Position",
|
||||||
"PE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
|
"PE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
|
||||||
|
@ -1290,6 +1293,12 @@
|
||||||
"PE.Views.LeftMenu.tipTitles": "Titles",
|
"PE.Views.LeftMenu.tipTitles": "Titles",
|
||||||
"PE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE",
|
"PE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE",
|
||||||
"PE.Views.LeftMenu.txtTrial": "TRIAL MODE",
|
"PE.Views.LeftMenu.txtTrial": "TRIAL MODE",
|
||||||
|
"PE.Views.ListSettingsDialog.textNewColor": "Add New Custom Color",
|
||||||
|
"PE.Views.ListSettingsDialog.txtColor": "Color",
|
||||||
|
"PE.Views.ListSettingsDialog.txtOfText": "% of text",
|
||||||
|
"PE.Views.ListSettingsDialog.txtSize": "Size",
|
||||||
|
"PE.Views.ListSettingsDialog.txtStart": "Start at",
|
||||||
|
"PE.Views.ListSettingsDialog.txtTitle": "List Settings",
|
||||||
"PE.Views.ParagraphSettings.strLineHeight": "Line Spacing",
|
"PE.Views.ParagraphSettings.strLineHeight": "Line Spacing",
|
||||||
"PE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing",
|
"PE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing",
|
||||||
"PE.Views.ParagraphSettings.strSpacingAfter": "After",
|
"PE.Views.ParagraphSettings.strSpacingAfter": "After",
|
||||||
|
@ -1599,6 +1608,14 @@
|
||||||
"PE.Views.TableSettings.tipRight": "Set outer right border only",
|
"PE.Views.TableSettings.tipRight": "Set outer right border only",
|
||||||
"PE.Views.TableSettings.tipTop": "Set outer top border only",
|
"PE.Views.TableSettings.tipTop": "Set outer top border only",
|
||||||
"PE.Views.TableSettings.txtNoBorders": "No borders",
|
"PE.Views.TableSettings.txtNoBorders": "No borders",
|
||||||
|
"PE.Views.TableSettings.txtTable_Accent": "Accent",
|
||||||
|
"PE.Views.TableSettings.txtTable_DarkStyle": "Dark Style",
|
||||||
|
"PE.Views.TableSettings.txtTable_LightStyle": "Light Style",
|
||||||
|
"PE.Views.TableSettings.txtTable_MediumStyle": "Medium Style",
|
||||||
|
"PE.Views.TableSettings.txtTable_NoGrid": "No Grid",
|
||||||
|
"PE.Views.TableSettings.txtTable_NoStyle": "No Style",
|
||||||
|
"PE.Views.TableSettings.txtTable_TableGrid": "Table Grid",
|
||||||
|
"PE.Views.TableSettings.txtTable_ThemedStyle": "Themed Style",
|
||||||
"PE.Views.TableSettingsAdvanced.textAlt": "Alternative Text",
|
"PE.Views.TableSettingsAdvanced.textAlt": "Alternative Text",
|
||||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Description",
|
"PE.Views.TableSettingsAdvanced.textAltDescription": "Description",
|
||||||
"PE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
|
"PE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.",
|
||||||
|
@ -1612,14 +1629,6 @@
|
||||||
"PE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings",
|
"PE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings",
|
||||||
"PE.Views.TableSettingsAdvanced.textTop": "Top",
|
"PE.Views.TableSettingsAdvanced.textTop": "Top",
|
||||||
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margins",
|
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margins",
|
||||||
"PE.Views.TableSettings.txtTable_NoStyle": "No Style",
|
|
||||||
"PE.Views.TableSettings.txtTable_NoGrid": "No Grid",
|
|
||||||
"PE.Views.TableSettings.txtTable_TableGrid": "Table Grid",
|
|
||||||
"PE.Views.TableSettings.txtTable_ThemedStyle": "Themed Style",
|
|
||||||
"PE.Views.TableSettings.txtTable_LightStyle": "Light Style",
|
|
||||||
"PE.Views.TableSettings.txtTable_MediumStyle": "Medium Style",
|
|
||||||
"PE.Views.TableSettings.txtTable_DarkStyle": "Dark Style",
|
|
||||||
"PE.Views.TableSettings.txtTable_Accent": "Accent",
|
|
||||||
"PE.Views.TextArtSettings.strBackground": "Background color",
|
"PE.Views.TextArtSettings.strBackground": "Background color",
|
||||||
"PE.Views.TextArtSettings.strColor": "Color",
|
"PE.Views.TextArtSettings.strColor": "Color",
|
||||||
"PE.Views.TextArtSettings.strFill": "Fill",
|
"PE.Views.TextArtSettings.strFill": "Fill",
|
||||||
|
@ -1695,13 +1704,14 @@
|
||||||
"PE.Views.Toolbar.textArrangeBack": "Send to Background",
|
"PE.Views.Toolbar.textArrangeBack": "Send to Background",
|
||||||
"PE.Views.Toolbar.textArrangeBackward": "Send Backward",
|
"PE.Views.Toolbar.textArrangeBackward": "Send Backward",
|
||||||
"PE.Views.Toolbar.textArrangeForward": "Bring Forward",
|
"PE.Views.Toolbar.textArrangeForward": "Bring Forward",
|
||||||
"PE.Views.Toolbar.textArrangeFront": "Bring To Foreground",
|
"PE.Views.Toolbar.textArrangeFront": "Bring to Foreground",
|
||||||
"PE.Views.Toolbar.textBar": "Bar",
|
"PE.Views.Toolbar.textBar": "Bar",
|
||||||
"PE.Views.Toolbar.textBold": "Bold",
|
"PE.Views.Toolbar.textBold": "Bold",
|
||||||
"PE.Views.Toolbar.textCharts": "Charts",
|
"PE.Views.Toolbar.textCharts": "Charts",
|
||||||
"PE.Views.Toolbar.textColumn": "Column",
|
"PE.Views.Toolbar.textColumn": "Column",
|
||||||
"PE.Views.Toolbar.textItalic": "Italic",
|
"PE.Views.Toolbar.textItalic": "Italic",
|
||||||
"PE.Views.Toolbar.textLine": "Line",
|
"PE.Views.Toolbar.textLine": "Line",
|
||||||
|
"PE.Views.Toolbar.textListSettings": "List Settings",
|
||||||
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
"PE.Views.Toolbar.textNewColor": "Custom Color",
|
||||||
"PE.Views.Toolbar.textPie": "Pie",
|
"PE.Views.Toolbar.textPie": "Pie",
|
||||||
"PE.Views.Toolbar.textPoint": "XY (Scatter)",
|
"PE.Views.Toolbar.textPoint": "XY (Scatter)",
|
||||||
|
|
|
@ -231,7 +231,7 @@
|
||||||
"PE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con el Administrador del Servidor de Documentos.",
|
"PE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.<br> Por favor, contacte con el Administrador del Servidor de Documentos.",
|
||||||
"PE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
|
"PE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto",
|
||||||
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. El documento no puede ser editado ahora.",
|
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. El documento no puede ser editado ahora.",
|
||||||
"PE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.<br>Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.<br><br>Encuentre más información acerca de la conexión de Servidor de Documentos <a href=\"%1\" target=\"_blank\">aquí</a>",
|
"PE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.<br>Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.",
|
||||||
"PE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión de base de datos. Por favor póngase en contacto con soporte si el error se mantiene.",
|
"PE.Controllers.Main.errorDatabaseConnection": "Error externo.<br>Error de conexión de base de datos. Por favor póngase en contacto con soporte si el error se mantiene.",
|
||||||
"PE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
|
"PE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.",
|
||||||
"PE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
"PE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.",
|
||||||
|
|
|
@ -231,7 +231,7 @@
|
||||||
"PE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
"PE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.<br>Veuillez contacter l'administrateur de Document Server.",
|
||||||
"PE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte",
|
"PE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte",
|
||||||
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Connexion au serveur perdue. Le document ne peut être modifié en ce moment.",
|
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Connexion au serveur perdue. Le document ne peut être modifié en ce moment.",
|
||||||
"PE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.<br>Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.<br><br>Trouvez plus d'informations sur la connexion au Serveur de Documents <a href=\"%1\" target=\"_blank\">ici</a>",
|
"PE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.<br>Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.",
|
||||||
"PE.Controllers.Main.errorDatabaseConnection": "Erreur externe.<br>Erreur de connexion à la base de données. Si l'erreur persiste veillez contactez l'assistance technique.",
|
"PE.Controllers.Main.errorDatabaseConnection": "Erreur externe.<br>Erreur de connexion à la base de données. Si l'erreur persiste veillez contactez l'assistance technique.",
|
||||||
"PE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.",
|
"PE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.",
|
||||||
"PE.Controllers.Main.errorDataRange": "Plage de données incorrecte.",
|
"PE.Controllers.Main.errorDataRange": "Plage de données incorrecte.",
|
||||||
|
@ -240,6 +240,7 @@
|
||||||
"PE.Controllers.Main.errorEditingSaveas": "Une erreure s'est produite lors du travail avec le document.<br>Utilisez l'option 'Enregistrer comme...' pour enregistrer une copie de sauvegarde sur le disque dur de votre ordinateur. ",
|
"PE.Controllers.Main.errorEditingSaveas": "Une erreure s'est produite lors du travail avec le document.<br>Utilisez l'option 'Enregistrer comme...' pour enregistrer une copie de sauvegarde sur le disque dur de votre ordinateur. ",
|
||||||
"PE.Controllers.Main.errorEmailClient": "Pas de client messagerie trouvé",
|
"PE.Controllers.Main.errorEmailClient": "Pas de client messagerie trouvé",
|
||||||
"PE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
|
"PE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.",
|
||||||
|
"PE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.<br>Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ",
|
||||||
"PE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
|
"PE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.",
|
||||||
"PE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
|
"PE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu",
|
||||||
"PE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré",
|
"PE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré",
|
||||||
|
@ -1006,6 +1007,7 @@
|
||||||
"PE.Views.DocumentHolder.textSlideSettings": "Paramètres de diapositive",
|
"PE.Views.DocumentHolder.textSlideSettings": "Paramètres de diapositive",
|
||||||
"PE.Views.DocumentHolder.textUndo": "Annuler",
|
"PE.Views.DocumentHolder.textUndo": "Annuler",
|
||||||
"PE.Views.DocumentHolder.tipIsLocked": "Cet élément est en cours d'édition par un autre utilisateur.",
|
"PE.Views.DocumentHolder.tipIsLocked": "Cet élément est en cours d'édition par un autre utilisateur.",
|
||||||
|
"PE.Views.DocumentHolder.toDictionaryText": "Ajouter au dictionnaire",
|
||||||
"PE.Views.DocumentHolder.txtAddBottom": "Ajouter bordure inférieure",
|
"PE.Views.DocumentHolder.txtAddBottom": "Ajouter bordure inférieure",
|
||||||
"PE.Views.DocumentHolder.txtAddFractionBar": "Ajouter barre de fraction",
|
"PE.Views.DocumentHolder.txtAddFractionBar": "Ajouter barre de fraction",
|
||||||
"PE.Views.DocumentHolder.txtAddHor": "Ajouter une ligne horizontale",
|
"PE.Views.DocumentHolder.txtAddHor": "Ajouter une ligne horizontale",
|
||||||
|
@ -1075,6 +1077,7 @@
|
||||||
"PE.Views.DocumentHolder.txtPasteSourceFormat": "Garder la mise en forme source",
|
"PE.Views.DocumentHolder.txtPasteSourceFormat": "Garder la mise en forme source",
|
||||||
"PE.Views.DocumentHolder.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien",
|
"PE.Views.DocumentHolder.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien",
|
||||||
"PE.Views.DocumentHolder.txtPreview": "Démarrer le diaporama",
|
"PE.Views.DocumentHolder.txtPreview": "Démarrer le diaporama",
|
||||||
|
"PE.Views.DocumentHolder.txtPrintSelection": "Imprimer la sélection",
|
||||||
"PE.Views.DocumentHolder.txtRemFractionBar": "Supprimer la barre de fraction",
|
"PE.Views.DocumentHolder.txtRemFractionBar": "Supprimer la barre de fraction",
|
||||||
"PE.Views.DocumentHolder.txtRemLimit": "Supprimer la limite",
|
"PE.Views.DocumentHolder.txtRemLimit": "Supprimer la limite",
|
||||||
"PE.Views.DocumentHolder.txtRemoveAccentChar": "Supprimer le caractère d'accent",
|
"PE.Views.DocumentHolder.txtRemoveAccentChar": "Supprimer le caractère d'accent",
|
||||||
|
@ -1134,6 +1137,7 @@
|
||||||
"PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Créez une nouvelle présentation vièrge que vous serez en mesure de styliser et de formater après sa création au cours de la modification. Ou choisissez un des modèles où certains styles sont déjà pré-appliqués pour commencer une présentation d'un certain type ou objectif.",
|
"PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Créez une nouvelle présentation vièrge que vous serez en mesure de styliser et de formater après sa création au cours de la modification. Ou choisissez un des modèles où certains styles sont déjà pré-appliqués pour commencer une présentation d'un certain type ou objectif.",
|
||||||
"PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nouvelle présentation",
|
"PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nouvelle présentation",
|
||||||
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Pas de modèles",
|
"PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Pas de modèles",
|
||||||
|
"PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Appliquer",
|
||||||
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Ajouter un auteur",
|
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Ajouter un auteur",
|
||||||
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Ajouter du texte",
|
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Ajouter du texte",
|
||||||
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
|
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
|
||||||
|
@ -1203,6 +1207,7 @@
|
||||||
"PE.Views.HeaderFooterDialog.applyText": "Appliquer",
|
"PE.Views.HeaderFooterDialog.applyText": "Appliquer",
|
||||||
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Avertissement",
|
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Avertissement",
|
||||||
"PE.Views.HeaderFooterDialog.textDateTime": "Date et heure",
|
"PE.Views.HeaderFooterDialog.textDateTime": "Date et heure",
|
||||||
|
"PE.Views.HeaderFooterDialog.textFixed": "Corrigé",
|
||||||
"PE.Views.HeaderFooterDialog.textFooter": "Texte en pied de page",
|
"PE.Views.HeaderFooterDialog.textFooter": "Texte en pied de page",
|
||||||
"PE.Views.HeaderFooterDialog.textFormat": "Formats",
|
"PE.Views.HeaderFooterDialog.textFormat": "Formats",
|
||||||
"PE.Views.HeaderFooterDialog.textLang": "Langue",
|
"PE.Views.HeaderFooterDialog.textLang": "Langue",
|
||||||
|
@ -1289,19 +1294,31 @@
|
||||||
"PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
|
"PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Majuscules",
|
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Majuscules",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré",
|
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche",
|
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite",
|
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Après",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Avant",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Spécial",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Police",
|
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Police",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Retraits et emplacement",
|
"PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Retraits et emplacement",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Petites majuscules",
|
"PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Petites majuscules",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.strSpacing": "Espacement",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strStrike": "Barré",
|
"PE.Views.ParagraphSettingsAdvanced.strStrike": "Barré",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strSubscript": "Indice",
|
"PE.Views.ParagraphSettingsAdvanced.strSubscript": "Indice",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Exposant",
|
"PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Exposant",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation",
|
"PE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement",
|
"PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.textAuto": "Plusieurs",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
|
"PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut",
|
"PE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
|
"PE.Views.ParagraphSettingsAdvanced.textEffects": "Effets",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.textExact": "Exactement",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Première ligne",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.textHanging": "Suspendu",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.textJustified": "Justifié",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(aucun)",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.textRemove": "Supprimer",
|
"PE.Views.ParagraphSettingsAdvanced.textRemove": "Supprimer",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout",
|
"PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier",
|
"PE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier",
|
||||||
|
@ -1310,6 +1327,7 @@
|
||||||
"PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position",
|
"PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite",
|
"PE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite",
|
||||||
"PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés",
|
"PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés",
|
||||||
|
"PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
|
||||||
"PE.Views.RightMenu.txtChartSettings": "Paramètres du graphique",
|
"PE.Views.RightMenu.txtChartSettings": "Paramètres du graphique",
|
||||||
"PE.Views.RightMenu.txtImageSettings": "Paramètres de l'image",
|
"PE.Views.RightMenu.txtImageSettings": "Paramètres de l'image",
|
||||||
"PE.Views.RightMenu.txtParagraphSettings": "Paramètres du texte",
|
"PE.Views.RightMenu.txtParagraphSettings": "Paramètres du texte",
|
||||||
|
@ -1571,6 +1589,14 @@
|
||||||
"PE.Views.TableSettings.tipRight": "Seulement bordure extérieure droite",
|
"PE.Views.TableSettings.tipRight": "Seulement bordure extérieure droite",
|
||||||
"PE.Views.TableSettings.tipTop": "Seulement bordure extérieure supérieure",
|
"PE.Views.TableSettings.tipTop": "Seulement bordure extérieure supérieure",
|
||||||
"PE.Views.TableSettings.txtNoBorders": "Pas de bordures",
|
"PE.Views.TableSettings.txtNoBorders": "Pas de bordures",
|
||||||
|
"PE.Views.TableSettings.txtTable_Accent": "Accentuation",
|
||||||
|
"PE.Views.TableSettings.txtTable_DarkStyle": "Style Foncé",
|
||||||
|
"PE.Views.TableSettings.txtTable_LightStyle": "Style Claire",
|
||||||
|
"PE.Views.TableSettings.txtTable_MediumStyle": "Style Moyen",
|
||||||
|
"PE.Views.TableSettings.txtTable_NoGrid": "Pas de grille",
|
||||||
|
"PE.Views.TableSettings.txtTable_NoStyle": "Pas de style",
|
||||||
|
"PE.Views.TableSettings.txtTable_TableGrid": "Grille du tableau",
|
||||||
|
"PE.Views.TableSettings.txtTable_ThemedStyle": "Style à thème",
|
||||||
"PE.Views.TableSettingsAdvanced.textAlt": "Texte de remplacement",
|
"PE.Views.TableSettingsAdvanced.textAlt": "Texte de remplacement",
|
||||||
"PE.Views.TableSettingsAdvanced.textAltDescription": "Description",
|
"PE.Views.TableSettingsAdvanced.textAltDescription": "Description",
|
||||||
"PE.Views.TableSettingsAdvanced.textAltTip": "La représentation textuelle alternative des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de l’image, de la forme automatique, du graphique ou du tableau.",
|
"PE.Views.TableSettingsAdvanced.textAltTip": "La représentation textuelle alternative des informations sur l’objet visuel, qui sera lue aux personnes avec des déficiences cognitives ou visuelles pour les aider à mieux comprendre l'information de l’image, de la forme automatique, du graphique ou du tableau.",
|
||||||
|
@ -1628,6 +1654,9 @@
|
||||||
"PE.Views.TextArtSettings.txtWood": "Wood",
|
"PE.Views.TextArtSettings.txtWood": "Wood",
|
||||||
"PE.Views.Toolbar.capAddSlide": "Ajouter une diapositive",
|
"PE.Views.Toolbar.capAddSlide": "Ajouter une diapositive",
|
||||||
"PE.Views.Toolbar.capBtnComment": "Commentaire",
|
"PE.Views.Toolbar.capBtnComment": "Commentaire",
|
||||||
|
"PE.Views.Toolbar.capBtnDateTime": "Date & heure",
|
||||||
|
"PE.Views.Toolbar.capBtnInsHeader": "En-tête/Pied de page",
|
||||||
|
"PE.Views.Toolbar.capBtnSlideNum": "Numéro de diapositive",
|
||||||
"PE.Views.Toolbar.capInsertChart": "Graphique",
|
"PE.Views.Toolbar.capInsertChart": "Graphique",
|
||||||
"PE.Views.Toolbar.capInsertEquation": "Équation",
|
"PE.Views.Toolbar.capInsertEquation": "Équation",
|
||||||
"PE.Views.Toolbar.capInsertHyperlink": "Lien hypertexte",
|
"PE.Views.Toolbar.capInsertHyperlink": "Lien hypertexte",
|
||||||
|
@ -1696,7 +1725,9 @@
|
||||||
"PE.Views.Toolbar.tipColorSchemas": "Modifier le jeu de couleurs",
|
"PE.Views.Toolbar.tipColorSchemas": "Modifier le jeu de couleurs",
|
||||||
"PE.Views.Toolbar.tipCopy": "Copier",
|
"PE.Views.Toolbar.tipCopy": "Copier",
|
||||||
"PE.Views.Toolbar.tipCopyStyle": "Copier le style",
|
"PE.Views.Toolbar.tipCopyStyle": "Copier le style",
|
||||||
|
"PE.Views.Toolbar.tipDateTime": "Inserer la date et l'heure actuelle",
|
||||||
"PE.Views.Toolbar.tipDecPrLeft": "Diminuer le retrait",
|
"PE.Views.Toolbar.tipDecPrLeft": "Diminuer le retrait",
|
||||||
|
"PE.Views.Toolbar.tipEditHeader": "Modifier l'en-tête ou le pied de page",
|
||||||
"PE.Views.Toolbar.tipFontColor": "Couleur de la police",
|
"PE.Views.Toolbar.tipFontColor": "Couleur de la police",
|
||||||
"PE.Views.Toolbar.tipFontName": "Police",
|
"PE.Views.Toolbar.tipFontName": "Police",
|
||||||
"PE.Views.Toolbar.tipFontSize": "Taille de la police",
|
"PE.Views.Toolbar.tipFontSize": "Taille de la police",
|
||||||
|
@ -1721,6 +1752,7 @@
|
||||||
"PE.Views.Toolbar.tipSaveCoauth": "Enregistrez vos modifications pour que les autres utilisateurs puissent les voir.",
|
"PE.Views.Toolbar.tipSaveCoauth": "Enregistrez vos modifications pour que les autres utilisateurs puissent les voir.",
|
||||||
"PE.Views.Toolbar.tipShapeAlign": "Aligner une forme",
|
"PE.Views.Toolbar.tipShapeAlign": "Aligner une forme",
|
||||||
"PE.Views.Toolbar.tipShapeArrange": "Organiser une forme",
|
"PE.Views.Toolbar.tipShapeArrange": "Organiser une forme",
|
||||||
|
"PE.Views.Toolbar.tipSlideNum": "Inserer le numéro de diapositive",
|
||||||
"PE.Views.Toolbar.tipSlideSize": "Sélectionner la taille de la diapositive",
|
"PE.Views.Toolbar.tipSlideSize": "Sélectionner la taille de la diapositive",
|
||||||
"PE.Views.Toolbar.tipSlideTheme": "Thème de diapositive",
|
"PE.Views.Toolbar.tipSlideTheme": "Thème de diapositive",
|
||||||
"PE.Views.Toolbar.tipUndo": "Annuler",
|
"PE.Views.Toolbar.tipUndo": "Annuler",
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue