Merge branch hotfix/v5.6.0 into master
This commit is contained in:
commit
a4dcc7f152
|
@ -342,6 +342,7 @@
|
|||
}
|
||||
|
||||
if (typeof _config.document.fileType === 'string' && _config.document.fileType != '') {
|
||||
_config.document.fileType = _config.document.fileType.toLowerCase();
|
||||
var type = /^(?:(xls|xlsx|ods|csv|xlst|xlsy|gsheet|xlsm|xlt|xltm|xltx|fods|ots)|(pps|ppsx|ppt|pptx|odp|pptt|ppty|gslides|pot|potm|potx|ppsm|pptm|fodp|otp)|(doc|docx|doct|odt|gdoc|txt|rtf|pdf|mht|htm|html|epub|djvu|xps|docm|dot|dotm|dotx|fodt|ott))$/
|
||||
.exec(_config.document.fileType);
|
||||
if (!type) {
|
||||
|
|
|
@ -209,11 +209,11 @@ define([
|
|||
Common.NotificationCenter.trigger('app:config', {canUndock: true});
|
||||
}
|
||||
|
||||
native.execCommand('webapps:features', JSON.stringify(
|
||||
{version: config.version, eventloading:true, titlebuttons:true, viewmode:!mode.isEdit, crypted:mode.isCrypted} ));
|
||||
|
||||
titlebuttons = {};
|
||||
if ( !mode.isEdit ) {
|
||||
native.execCommand('webapps:features', JSON.stringify(
|
||||
{version: config.version, eventloading:true, titlebuttons:true, viewmode:true} ));
|
||||
} else {
|
||||
if ( mode.isEdit ) {
|
||||
var header = webapp.getController('Viewport').getView('Common.Views.Header');
|
||||
if (!!header.btnSave) {
|
||||
titlebuttons['save'] = {btn: header.btnSave};
|
||||
|
|
|
@ -74,7 +74,8 @@ define([
|
|||
|
||||
var templateRightBox = '<section>' +
|
||||
'<section id="box-doc-name">' +
|
||||
'<input type="text" id="rib-doc-name" spellcheck="false" data-can-copy="false" style="pointer-events: none;" disabled="disabled">' +
|
||||
// '<input type="text" id="rib-doc-name" spellcheck="false" data-can-copy="false" style="pointer-events: none;" disabled="disabled">' +
|
||||
'<label id="rib-doc-name" />' +
|
||||
'</section>' +
|
||||
'<a id="rib-save-status" class="status-label locked"><%= textSaveEnd %></a>' +
|
||||
'<div class="hedset">' +
|
||||
|
@ -115,8 +116,10 @@ define([
|
|||
'<div class="btn-slot" id="slot-btn-dt-undo"></div>' +
|
||||
'<div class="btn-slot" id="slot-btn-dt-redo"></div>' +
|
||||
'</div>' +
|
||||
'<div class="lr-separator"></div>' +
|
||||
'<input type="text" id="title-doc-name" spellcheck="false" data-can-copy="false" style="pointer-events: none;" disabled="disabled">' +
|
||||
'<div class="lr-separator" id="id-box-doc-name">' +
|
||||
// '<input type="text" id="title-doc-name" spellcheck="false" data-can-copy="false" style="pointer-events: none;" disabled="disabled">' +
|
||||
'<label id="title-doc-name" />' +
|
||||
'</div>' +
|
||||
'<label id="title-user-name" style="pointer-events: none;"></label>' +
|
||||
'</section>';
|
||||
|
||||
|
@ -202,7 +205,14 @@ define([
|
|||
}
|
||||
}
|
||||
|
||||
function onAppShowed(config) {}
|
||||
function onAppShowed(config) {
|
||||
if ( config.isCrypted && this.labelDocName ) {
|
||||
this.labelDocName.before(
|
||||
'<div class="inner-box-icon crypted">' +
|
||||
'<svg class="icon"><use xlink:href="#svg-icon-crypted"></use></svg>' +
|
||||
'</div>');
|
||||
}
|
||||
}
|
||||
|
||||
function onAppReady(mode) {
|
||||
appConfig = mode;
|
||||
|
@ -463,11 +473,6 @@ define([
|
|||
|
||||
if ( !me.labelDocName ) {
|
||||
me.labelDocName = $html.find('#rib-doc-name');
|
||||
// this.labelDocName.attr('maxlength', 50);
|
||||
me.labelDocName.text = function (text) {
|
||||
this.val(text).attr('size', text.length);
|
||||
}
|
||||
|
||||
if ( me.documentCaption ) {
|
||||
me.labelDocName.text(me.documentCaption);
|
||||
}
|
||||
|
@ -511,8 +516,7 @@ define([
|
|||
var $html = $(_.template(templateTitleBox)());
|
||||
|
||||
!!me.labelDocName && me.labelDocName.hide().off(); // hide document title if it was created in right box
|
||||
me.labelDocName = $html.find('> #title-doc-name');
|
||||
me.labelDocName.text = function (str) {this.val(str);}; // redefine text function to lock temporaly rename docuemnt option
|
||||
me.labelDocName = $html.find('#title-doc-name');
|
||||
me.labelDocName.text( me.documentCaption );
|
||||
|
||||
me.labelUserName = $('> #title-user-name', $html);
|
||||
|
|
|
@ -53,7 +53,7 @@ define([
|
|||
Common.Views.ListSettingsDialog = Common.UI.Window.extend(_.extend({
|
||||
options: {
|
||||
type: 0, // 0 - markers, 1 - numbers
|
||||
width: 230,
|
||||
width: 250,
|
||||
height: 200,
|
||||
style: 'min-width: 240px;',
|
||||
cls: 'modal-dlg',
|
||||
|
|
|
@ -181,4 +181,7 @@
|
|||
<path d="M22 3V12H6V3H5V12C5 12.6 5.4 13 6 13H22C22.6 13 23 12.6 23 12V3H22Z"/>
|
||||
<path d="M6 19H22V25H23V19C23 18.4 22.6 18 22 18H6C5.4 18 5 18.4 5 19V25H6V19Z"/>
|
||||
</symbol>
|
||||
<symbol id="svg-icon-crypted" viewBox="0 0 20 20">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 3.00049C6.99987 4.99948 4 5.00023 4 5.00023V8.50023C4 10.5001 4.56284 15.9767 9.99961 17.0001C15.4364 15.9767 16 10.5001 16 8.50023V5.00023C16 5.00023 13.0001 4.99948 10 3.00049ZM14.0232 7.96528L12.9768 7.03517L9.42726 11.0284L6.94813 8.96247L6.05187 10.038L9.57274 12.972L14.0232 7.96528Z" fill="white"/>
|
||||
</symbol>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
@ -280,8 +280,8 @@
|
|||
.combo-pivot-template {
|
||||
.combo-template(60px);
|
||||
|
||||
margin-top: -6px;
|
||||
margin-bottom: -6px;
|
||||
top: -7px;
|
||||
position: absolute;
|
||||
|
||||
.view .dataview {
|
||||
padding: 1px;
|
||||
|
|
|
@ -89,6 +89,7 @@
|
|||
#box-doc-name {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#rib-doc-name {
|
||||
|
@ -102,19 +103,19 @@
|
|||
background-color: transparent;
|
||||
border: 0 none;
|
||||
cursor: default;
|
||||
line-height: 32px;
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
border: 1px solid @gray-dark;
|
||||
background-color: rgba(255,255,255,0.2);
|
||||
}
|
||||
|
||||
&:focus:not(:active) {
|
||||
border: 1px solid @gray-dark;
|
||||
cursor: text;
|
||||
background-color: white;
|
||||
color: @gray-deep;
|
||||
}
|
||||
width: 100%;
|
||||
//&:hover:not(:disabled) {
|
||||
// border: 1px solid @gray-dark;
|
||||
// background-color: rgba(255,255,255,0.2);
|
||||
//}
|
||||
//
|
||||
//&:focus:not(:active) {
|
||||
// border: 1px solid @gray-dark;
|
||||
// cursor: text;
|
||||
// background-color: white;
|
||||
// color: @gray-deep;
|
||||
//}
|
||||
}
|
||||
|
||||
#rib-save-status {
|
||||
|
@ -374,15 +375,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
#id-box-doc-name {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#title-doc-name {
|
||||
position: absolute;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
line-height: 28px;
|
||||
background-color: transparent;
|
||||
border: 0 none;
|
||||
cursor: default;
|
||||
|
@ -403,3 +408,18 @@
|
|||
flex-grow: 1;
|
||||
}
|
||||
}
|
||||
|
||||
#box-doc-name, #box-document-title {
|
||||
.inner-box-icon.crypted {
|
||||
width: 20px;
|
||||
position: relative;
|
||||
|
||||
> svg {
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
top: 50%;
|
||||
margin-top: -10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -324,9 +324,11 @@ define([
|
|||
}
|
||||
|
||||
me.defaultTitleText = '{{APP_TITLE_TEXT}}';
|
||||
me.warnNoLicense = me.warnNoLicense.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicense = me.warnNoLicense.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseExceeded = me.warnLicenseExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseUsersExceeded = me.warnLicenseUsersExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
},
|
||||
|
||||
loadConfig: function(data) {
|
||||
|
@ -363,7 +365,7 @@ define([
|
|||
this.appOptions.canRequestSharingSettings = this.editorConfig.canRequestSharingSettings;
|
||||
this.appOptions.compatibleFeatures = (typeof (this.appOptions.customization) == 'object') && !!this.appOptions.customization.compatibleFeatures;
|
||||
this.appOptions.canFeatureComparison = !!this.api.asc_isSupportFeature("comparison");
|
||||
this.appOptions.canFeatureContentControl = !!this.api.asc_isSupportFeature("content-сontrols");
|
||||
this.appOptions.canFeatureContentControl = !!this.api.asc_isSupportFeature("content-controls");
|
||||
this.appOptions.mentionShare = !((typeof (this.appOptions.customization) == 'object') && (this.appOptions.customization.mentionShare==false));
|
||||
|
||||
appHeader = this.getApplication().getController('Viewport').getView('Common.Views.Header');
|
||||
|
@ -1179,6 +1181,7 @@ define([
|
|||
this.appOptions.canCoAuthoring = !this.appOptions.isLightVersion;
|
||||
/** coauthoring end **/
|
||||
this.appOptions.isOffline = this.api.asc_isOffline();
|
||||
this.appOptions.isCrypted = this.api.asc_isCrypto();
|
||||
this.appOptions.isReviewOnly = this.permissions.review === true && this.permissions.edit === false;
|
||||
this.appOptions.canRequestEditRights = this.editorConfig.canRequestEditRights;
|
||||
this.appOptions.canEdit = (this.permissions.edit !== false || this.permissions.review === true) && // can edit or review
|
||||
|
@ -2275,7 +2278,7 @@ define([
|
|||
textStrict: 'Strict mode',
|
||||
txtErrorLoadHistory: 'Loading history failed',
|
||||
textBuyNow: 'Visit website',
|
||||
textNoLicenseTitle: '%1 connection limitation',
|
||||
textNoLicenseTitle: 'License limit reached',
|
||||
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 and page is reloaded.',
|
||||
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
||||
|
@ -2326,10 +2329,10 @@ define([
|
|||
txtNoTableOfContents: "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
|
||||
txtTableOfContents: "Table of Contents",
|
||||
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
|
||||
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.',
|
||||
warnNoLicenseUsers: 'This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.',
|
||||
warnLicenseExceeded: 'The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnLicenseUsersExceeded: 'The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnNoLicense: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
warnNoLicenseUsers: "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
warnLicenseExceeded: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
warnLicenseUsersExceeded: "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
errorDataEncrypted: 'Encrypted changes have been received, they cannot be deciphered.',
|
||||
textClose: 'Close',
|
||||
textPaidFeature: 'Paid feature',
|
||||
|
|
|
@ -339,6 +339,8 @@ define([
|
|||
$('#id-save-style-plus, #id-save-style-link', toolbar.$el).on('click', this.onMenuSaveStyle.bind(this));
|
||||
|
||||
this.onSetupCopyStyleButton();
|
||||
this.onBtnChangeState('undo:disabled', toolbar.btnUndo, toolbar.btnUndo.isDisabled());
|
||||
this.onBtnChangeState('redo:disabled', toolbar.btnRedo, toolbar.btnRedo.isDisabled());
|
||||
},
|
||||
|
||||
setApi: function(api) {
|
||||
|
@ -3382,4 +3384,4 @@ define([
|
|||
textInsert: 'Insert'
|
||||
|
||||
}, DE.Controllers.Toolbar || {}));
|
||||
});
|
||||
});
|
||||
|
|
|
@ -457,7 +457,7 @@
|
|||
"DE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren",
|
||||
"DE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Dokument wird geladen...",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "%1 Verbindungsbeschränkung",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht",
|
||||
"DE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion",
|
||||
"DE.Controllers.Main.textShape": "Form",
|
||||
"DE.Controllers.Main.textStrict": "Formaler Modus",
|
||||
|
@ -714,11 +714,11 @@
|
|||
"DE.Controllers.Main.waitText": "Bitte warten...",
|
||||
"DE.Controllers.Main.warnBrowserIE9": "Die Applkation hat geringte Fähigkeiten in IE9. Nutzen Sie IE10 oder höher.",
|
||||
"DE.Controllers.Main.warnBrowserZoom": "Die aktuelle Zoom-Einstellung Ihres Webbrowsers wird nicht völlig unterstützt. Bitte stellen Sie die Standardeinstellung mithilfe der Tastenkombination Strg+0 wieder her.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Die Anzahl gleichzeitiger Verbindungen zum Document Server wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.<br>Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Die Anzahl der gleichzeitigen Benutzer wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Diese Version von %1 Editoren hat gewisse Einschränkungen für gleichzeitige Verbindungen zum Dokumentenserver.<br>Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Diese Version von %1 Editoren hat bestimmte Einschränkungen für gleichzeitige Benutzer. <br> Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Anfang des Dokuments",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Zum Anfang des Dokuments übergehnen",
|
||||
|
@ -1408,7 +1408,7 @@
|
|||
"DE.Views.DropcapSettingsAdvanced.textLeft": "Links",
|
||||
"DE.Views.DropcapSettingsAdvanced.textMargin": "Rand",
|
||||
"DE.Views.DropcapSettingsAdvanced.textMove": "Mit Text verschieben",
|
||||
"DE.Views.DropcapSettingsAdvanced.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||
"DE.Views.DropcapSettingsAdvanced.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"DE.Views.DropcapSettingsAdvanced.textNone": "Kein",
|
||||
"DE.Views.DropcapSettingsAdvanced.textPage": "Seite",
|
||||
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Absatz",
|
||||
|
@ -1701,7 +1701,7 @@
|
|||
"DE.Views.ListSettingsDialog.textCenter": "Zentriert",
|
||||
"DE.Views.ListSettingsDialog.textLeft": "Links",
|
||||
"DE.Views.ListSettingsDialog.textLevel": "Ebene",
|
||||
"DE.Views.ListSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||
"DE.Views.ListSettingsDialog.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"DE.Views.ListSettingsDialog.textPreview": "Vorschau",
|
||||
"DE.Views.ListSettingsDialog.textRight": "Rechts",
|
||||
"DE.Views.ListSettingsDialog.txtAlign": "Ausrichtung",
|
||||
|
@ -1826,7 +1826,7 @@
|
|||
"DE.Views.ParagraphSettings.textAuto": "Mehrfach",
|
||||
"DE.Views.ParagraphSettings.textBackColor": "Hintergrundfarbe",
|
||||
"DE.Views.ParagraphSettings.textExact": "Genau",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||
"DE.Views.ParagraphSettings.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
|
||||
"DE.Views.ParagraphSettingsAdvanced.noTabs": "Die festgelegten Registerkarten werden in diesem Feld erscheinen",
|
||||
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Alle Großbuchstaben",
|
||||
|
@ -1876,7 +1876,7 @@
|
|||
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Füllzeichen",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Links",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Ebene",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textNone": "Kein",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(kein)",
|
||||
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
|
||||
|
@ -1937,7 +1937,7 @@
|
|||
"DE.Views.ShapeSettings.textHintFlipV": "Vertikal kippen",
|
||||
"DE.Views.ShapeSettings.textImageTexture": "Bild oder Textur",
|
||||
"DE.Views.ShapeSettings.textLinear": "Linear",
|
||||
"DE.Views.ShapeSettings.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||
"DE.Views.ShapeSettings.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"DE.Views.ShapeSettings.textNoFill": "Keine Füllung",
|
||||
"DE.Views.ShapeSettings.textPatternFill": "Muster",
|
||||
"DE.Views.ShapeSettings.textRadial": "Radial",
|
||||
|
@ -2373,7 +2373,7 @@
|
|||
"DE.Views.WatermarkSettingsDialog.textItalic": "Kursiv",
|
||||
"DE.Views.WatermarkSettingsDialog.textLanguage": "Sprache",
|
||||
"DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
|
||||
"DE.Views.WatermarkSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||
"DE.Views.WatermarkSettingsDialog.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"DE.Views.WatermarkSettingsDialog.textNone": "Kein",
|
||||
"DE.Views.WatermarkSettingsDialog.textScale": "Maßstab",
|
||||
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Durchgestrichen",
|
||||
|
|
|
@ -457,7 +457,7 @@
|
|||
"DE.Controllers.Main.textContactUs": "Contact sales",
|
||||
"DE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.<br>Please contact our Sales Department to get a quote.",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Loading document",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "%1 connection limitation",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "License limit reached",
|
||||
"DE.Controllers.Main.textPaidFeature": "Paid feature",
|
||||
"DE.Controllers.Main.textShape": "Shape",
|
||||
"DE.Controllers.Main.textStrict": "Strict mode",
|
||||
|
@ -714,11 +714,11 @@
|
|||
"DE.Controllers.Main.waitText": "Please, wait...",
|
||||
"DE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher",
|
||||
"DE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"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.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
|
||||
|
|
|
@ -457,7 +457,7 @@
|
|||
"DE.Controllers.Main.textContactUs": "Contacter l'équipe de ventes",
|
||||
"DE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.<br>Veuillez contacter notre Service des Ventes pour obtenir le devis.",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Chargement du document",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Limitation de connexion ONLYOFFICE",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte",
|
||||
"DE.Controllers.Main.textPaidFeature": "Fonction payée",
|
||||
"DE.Controllers.Main.textShape": "Forme",
|
||||
"DE.Controllers.Main.textStrict": "Mode strict",
|
||||
|
@ -714,11 +714,11 @@
|
|||
"DE.Controllers.Main.waitText": "Veuillez patienter...",
|
||||
"DE.Controllers.Main.warnBrowserIE9": "L'application est peu compatible avec IE9. Utilisez IE10 ou version plus récente",
|
||||
"DE.Controllers.Main.warnBrowserZoom": "Le paramètre actuel de zoom de votre navigateur n'est pas accepté. Veuillez rétablir le niveau de zoom par défaut en appuyant sur Ctrl+0.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Le nombre de connexions simultanées a été dépassée et le document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.<br>Veuillez mettre à jour votre licence et actualisez la page.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Le nombre d'utilisateurs simultanés a été dépassé et le document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Cette version de %1 editors a certaines limitations pour les connexions simultanées au serveur de documents.<br>Si vous avez besoin de plus, considérez la possibilité de mettre à jour votre licence actuelle ou d'acheter une licence commerciale.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Cette version de %1 editors a certaines limitations pour les utilisateurs simultanés.<br>Si vous avez besoin de plus, considérez la possibilité de mettre à jour votre licence actuelle ou d'acheter une licence commerciale.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez votre administrateur pour en savoir davantage.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Début du document",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Aller au début du document",
|
||||
|
|
|
@ -457,7 +457,7 @@
|
|||
"DE.Controllers.Main.textContactUs": "Contatta il team di vendite",
|
||||
"DE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. <br> Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Caricamento del documento",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto",
|
||||
"DE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
|
||||
"DE.Controllers.Main.textShape": "Forma",
|
||||
"DE.Controllers.Main.textStrict": "Modalità Rigorosa",
|
||||
|
@ -714,11 +714,11 @@
|
|||
"DE.Controllers.Main.waitText": "Per favore, attendi...",
|
||||
"DE.Controllers.Main.warnBrowserIE9": "L'applicazione è poco compatibile con IE9. Usa IE10 o più recente",
|
||||
"DE.Controllers.Main.warnBrowserZoom": "Le impostazioni correnti di zoom del tuo browser non sono completamente supportate. Per favore, ritorna allo zoom predefinito premendo Ctrl+0.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Il numero di connessioni simultanee al server dei documenti è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Contattare l'amministratore per ulteriori informazioni.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.<br>Si prega di aggiornare la licenza e ricaricare la pagina.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Per ulteriori informazioni, contattare l'amministratore.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Questa versione di %1 editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Questa versione di %1 editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta l’amministratore per saperne di più.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Ci stato negato il diritto alla modifica del file.",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Inizio del documento",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Vai all'inizio del documento",
|
||||
|
|
|
@ -438,7 +438,7 @@
|
|||
"DE.Controllers.Main.textContactUs": "Contate as vendas",
|
||||
"DE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador. <br> Por favor, contate o Departamento de Vendas para fazer cotação.",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Carregando documento",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE versão open source",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido",
|
||||
"DE.Controllers.Main.textPaidFeature": "Recurso pago",
|
||||
"DE.Controllers.Main.textShape": "Forma",
|
||||
"DE.Controllers.Main.textStrict": "Modo estrito",
|
||||
|
@ -545,11 +545,11 @@
|
|||
"DE.Controllers.Main.waitText": "Aguarde...",
|
||||
"DE.Controllers.Main.warnBrowserIE9": "O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior",
|
||||
"DE.Controllers.Main.warnBrowserZoom": "A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "O número de conexões concomitantes ao Servidor de Documentos foi excedido e o documento será aberto apenas para exibição. <br> Por favor, contate seu administrador para mais informações.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Sua licença expirou.<br>Atualize sua licença e refresque a página.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "O número de usuários concomitantes foi excedido e o documento será aberto somente para exibição. <br> Por favor, contate seu administrador para mais informações.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Você está usando uma versão de código aberto de %1. A versão tem limitações para conexões simultâneas com servidor de documentos (20 conexões por vez). <br> Se você precisar de mais, por favor considere a compra de uma licença comercial.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Você está usando uma versão de código aberto de %1. A versão tem limitações para conexões simultâneas com servidor de documentos (20 conexões por vez). <br> Se você precisar de mais, por favor considere a compra de uma licença comercial.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com seu administrador para saber mais.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Início do documento",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento",
|
||||
|
|
|
@ -457,7 +457,7 @@
|
|||
"DE.Controllers.Main.textContactUs": "Связаться с отделом продаж",
|
||||
"DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Загрузка документа",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение",
|
||||
"DE.Controllers.Main.textPaidFeature": "Платная функция",
|
||||
"DE.Controllers.Main.textShape": "Фигура",
|
||||
"DE.Controllers.Main.textStrict": "Строгий режим",
|
||||
|
@ -714,11 +714,11 @@
|
|||
"DE.Controllers.Main.waitText": "Пожалуйста, подождите...",
|
||||
"DE.Controllers.Main.warnBrowserIE9": "В IE9 приложение имеет низкую производительность. Используйте IE10 или более позднюю версию.",
|
||||
"DE.Controllers.Main.warnBrowserZoom": "Текущее значение масштаба страницы в браузере поддерживается не полностью. Вернитесь к масштабу по умолчанию, нажав Ctrl+0.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Превышено допустимое число одновременных подключений к серверу документов, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||
"DE.Controllers.Navigation.txtBeginning": "Начало документа",
|
||||
"DE.Controllers.Navigation.txtGotoBeginning": "Перейти в начало документа",
|
||||
|
|
|
@ -186,9 +186,11 @@ define([
|
|||
}
|
||||
|
||||
me.defaultTitleText = '{{APP_TITLE_TEXT}}';
|
||||
me.warnNoLicense = me.warnNoLicense.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicense = me.warnNoLicense.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseExceeded = me.warnLicenseExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseUsersExceeded = me.warnLicenseUsersExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
},
|
||||
|
||||
loadConfig: function(data) {
|
||||
|
@ -1436,7 +1438,7 @@ define([
|
|||
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.',
|
||||
textBuyNow: 'Visit website',
|
||||
textNoLicenseTitle: '%1 open source version',
|
||||
textNoLicenseTitle: 'License limit reached',
|
||||
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 and page is reloaded.',
|
||||
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
||||
|
@ -1478,10 +1480,10 @@ define([
|
|||
txtHeader: "Header",
|
||||
txtFooter: "Footer",
|
||||
txtProtected: 'Once you enter the password and open the file, the current password to the file will be reset',
|
||||
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.',
|
||||
warnNoLicenseUsers: 'This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.',
|
||||
warnLicenseExceeded: 'The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnLicenseUsersExceeded: 'The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnNoLicense: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
warnNoLicenseUsers: "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
warnLicenseExceeded: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
warnLicenseUsersExceeded: "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
errorDataEncrypted: 'Encrypted changes have been received, they cannot be deciphered.',
|
||||
closeButtonText: 'Close File',
|
||||
scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.',
|
||||
|
@ -1492,7 +1494,7 @@ define([
|
|||
waitText: 'Please, wait...',
|
||||
errorFileSizeExceed: 'The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.',
|
||||
errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.',
|
||||
errorOpensource: 'Files can be opened for viewing only. Mobile web editors are not available in the Open Source version.'
|
||||
errorOpensource: 'Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.'
|
||||
}
|
||||
})(), DE.Controllers.Main || {}))
|
||||
});
|
|
@ -69,6 +69,12 @@ define([
|
|||
return out;
|
||||
};
|
||||
|
||||
function iOSVersion() {
|
||||
var ua = navigator.userAgent;
|
||||
var m;
|
||||
return (m = /(iPad|iPhone|iphone).*?(OS |os |OS\_)(\d+((_|\.)\d)?((_|\.)\d)?)/.exec(ua)) ? parseFloat(m[3]) : 0;
|
||||
}
|
||||
|
||||
return {
|
||||
models: [],
|
||||
collections: [],
|
||||
|
@ -99,8 +105,14 @@ define([
|
|||
var me = this;
|
||||
me.createView('Search').render();
|
||||
|
||||
$('#editor_sdk').single('mousedown touchstart', _.bind(me.onEditorTouchStart, me));
|
||||
$('#editor_sdk').single('mouseup touchend', _.bind(me.onEditorTouchEnd, me));
|
||||
if (iOSVersion()<13) {
|
||||
$('#editor_sdk').single('mousedown touchstart', _.bind(me.onEditorTouchStart, me));
|
||||
$('#editor_sdk').single('mouseup touchend', _.bind(me.onEditorTouchEnd, me));
|
||||
} else {
|
||||
$('#editor_sdk').single('pointerdown', _.bind(me.onEditorTouchStart, me));
|
||||
$('#editor_sdk').single('pointerup', _.bind(me.onEditorTouchEnd, me));
|
||||
}
|
||||
|
||||
Common.NotificationCenter.on('readermode:change', function (reader) {
|
||||
_startPoint = {};
|
||||
});
|
||||
|
|
|
@ -202,7 +202,7 @@
|
|||
"DE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
|
||||
"DE.Controllers.Main.textDone": "Fertig",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Dokument wird geladen",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "%1 Verbindungsbeschränkung",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht",
|
||||
"DE.Controllers.Main.textOK": "OK",
|
||||
"DE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion",
|
||||
"DE.Controllers.Main.textPassword": "Kennwort",
|
||||
|
@ -246,11 +246,11 @@
|
|||
"DE.Controllers.Main.uploadImageTextText": "Bild wird hochgeladen...",
|
||||
"DE.Controllers.Main.uploadImageTitleText": "Bild wird hochgeladen",
|
||||
"DE.Controllers.Main.waitText": "Bitte warten...",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Die Anzahl gleichzeitiger Verbindungen zum Document Server wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.<br>Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Die Anzahl der gleichzeitigen Benutzer wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Diese Version von %1 Editoren hat gewisse Einschränkungen für gleichzeitige Verbindungen zum Dokumentenserver.<br>Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Diese Version von %1 Editoren hat bestimmte Einschränkungen für gleichzeitige Benutzer. <br> Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.",
|
||||
"DE.Controllers.Search.textNoTextFound": "Der Text wurde nicht gefunden.",
|
||||
"DE.Controllers.Search.textReplaceAll": "Alle ersetzen",
|
||||
|
|
|
@ -164,6 +164,7 @@
|
|||
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"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 it until the connection is restored and page is reloaded.",
|
||||
"DE.Controllers.Main.errorOpensource": "Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"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.loadFontsTitleText": "Loading Data",
|
||||
|
@ -203,7 +204,7 @@
|
|||
"DE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.<br>Please contact our Sales Department to get a quote.",
|
||||
"DE.Controllers.Main.textDone": "Done",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Loading document",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "%1 connection limitation",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "License limit reached",
|
||||
"DE.Controllers.Main.textOK": "OK",
|
||||
"DE.Controllers.Main.textPaidFeature": "Paid feature",
|
||||
"DE.Controllers.Main.textPassword": "Password",
|
||||
|
@ -247,11 +248,11 @@
|
|||
"DE.Controllers.Main.uploadImageTextText": "Uploading image...",
|
||||
"DE.Controllers.Main.uploadImageTitleText": "Uploading Image",
|
||||
"DE.Controllers.Main.waitText": "Please, wait...",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"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.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"DE.Controllers.Search.textNoTextFound": "Text not Found",
|
||||
"DE.Controllers.Search.textReplaceAll": "Replace All",
|
||||
|
|
|
@ -202,7 +202,7 @@
|
|||
"DE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.<br>Veuillez contacter notre Service des Ventes pour obtenir le devis.",
|
||||
"DE.Controllers.Main.textDone": "Terminé",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Chargement du document",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Limitation de connexion ONLYOFFICE",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte",
|
||||
"DE.Controllers.Main.textOK": "OK",
|
||||
"DE.Controllers.Main.textPaidFeature": "Fonction payée",
|
||||
"DE.Controllers.Main.textPassword": "Mot de passe",
|
||||
|
@ -246,11 +246,11 @@
|
|||
"DE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...",
|
||||
"DE.Controllers.Main.uploadImageTitleText": "Chargement d'une image",
|
||||
"DE.Controllers.Main.waitText": "Veuillez patienter...",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Le nombre de connexions simultanées sur le serveur de documents a été dépassée et le document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.<br>Veuillez mettre à jour votre licence et actualisez la page.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Le nombre d'utilisateurs simultanés a été dépassé et le document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Cette version de %1 editors a certaines limitations pour les connexions simultanées au serveur de documents.<br>Si vous avez besoin de plus, pensez à mettre à jour votre licence actuelle ou à acheter une licence commerciale.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Cette version de %1 editors a certaines limitations pour les utilisateurs simultanés.<br>Si vous avez besoin de plus, pensez à mettre à jour votre licence actuelle ou à acheter une licence commerciale.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez votre administrateur pour en savoir davantage.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.",
|
||||
"DE.Controllers.Search.textNoTextFound": "Le texte est introuvable",
|
||||
"DE.Controllers.Search.textReplaceAll": "Remplacer tout",
|
||||
|
|
|
@ -202,7 +202,7 @@
|
|||
"DE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. <br> Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
|
||||
"DE.Controllers.Main.textDone": "Fatto",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Caricamento del documento",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto",
|
||||
"DE.Controllers.Main.textOK": "OK",
|
||||
"DE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
|
||||
"DE.Controllers.Main.textPassword": "Password",
|
||||
|
@ -246,11 +246,11 @@
|
|||
"DE.Controllers.Main.uploadImageTextText": "Caricamento dell'immagine in corso...",
|
||||
"DE.Controllers.Main.uploadImageTitleText": "Caricamento dell'immagine",
|
||||
"DE.Controllers.Main.waitText": "Per favore, attendi...",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Il numero di connessioni simultanee al server dei documenti è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Contattare l'amministratore per ulteriori informazioni.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.<br>Si prega di aggiornare la licenza e ricaricare la pagina.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Per ulteriori informazioni, contattare l'amministratore.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Questa versione di %1 editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Questa versione di %1 editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta l’amministratore per saperne di più.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.",
|
||||
"DE.Controllers.Search.textNoTextFound": "Testo non trovato",
|
||||
"DE.Controllers.Search.textReplaceAll": "Sostituisci tutto",
|
||||
|
|
|
@ -203,7 +203,7 @@
|
|||
"DE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador. <br> Por favor, contate o Departamento de Vendas para fazer cotação.",
|
||||
"DE.Controllers.Main.textDone": "Concluído",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Carregando documento",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "%1 Limitação de conexão",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido",
|
||||
"DE.Controllers.Main.textOK": "OK",
|
||||
"DE.Controllers.Main.textPaidFeature": "Recurso pago",
|
||||
"DE.Controllers.Main.textPassword": "Senha",
|
||||
|
@ -247,11 +247,11 @@
|
|||
"DE.Controllers.Main.uploadImageTextText": "Carregando imagem...",
|
||||
"DE.Controllers.Main.uploadImageTitleText": "Carregando imagem",
|
||||
"DE.Controllers.Main.waitText": "Aguarde...",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "O número de conexões concomitantes ao Servidor de Documentos foi excedido e o documento será aberto apenas para exibição. <br> Por favor, contate seu administrador para mais informações.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Sua licença expirou.<br>Atualize sua licença e atualize a página.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "O número de usuários concomitantes foi excedido e o documento será aberto somente para exibição. <br> Por favor, contate seu administrador para mais informações.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Você está usando uma versão de código aberto do %1. A versão tem limitações para conexões simultâneas com servidor de documentos (20 conexões por vez).<br>Se você precisar de mais, considere a compra de uma licença comercial.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Esta versão de %1 editores tem limitações para usuários concomitantes. <br> Se você precisar de mais, por favor, considere comprar uma licença comercial.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com seu administrador para saber mais.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
|
||||
"DE.Controllers.Search.textNoTextFound": "Texto não encontrado",
|
||||
"DE.Controllers.Search.textReplaceAll": "Substituir tudo",
|
||||
|
|
|
@ -203,7 +203,7 @@
|
|||
"DE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
|
||||
"DE.Controllers.Main.textDone": "Готово",
|
||||
"DE.Controllers.Main.textLoadingDocument": "Загрузка документа",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
|
||||
"DE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение",
|
||||
"DE.Controllers.Main.textOK": "OK",
|
||||
"DE.Controllers.Main.textPaidFeature": "Платная функция",
|
||||
"DE.Controllers.Main.textPassword": "Пароль",
|
||||
|
@ -247,11 +247,11 @@
|
|||
"DE.Controllers.Main.uploadImageTextText": "Загрузка рисунка...",
|
||||
"DE.Controllers.Main.uploadImageTitleText": "Загрузка рисунка",
|
||||
"DE.Controllers.Main.waitText": "Пожалуйста, подождите...",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Превышено допустимое число одновременных подключений к серверу документов, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"DE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"DE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"DE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"DE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||
"DE.Controllers.Search.textNoTextFound": "Текст не найден",
|
||||
"DE.Controllers.Search.textReplaceAll": "Заменить все",
|
||||
|
|
|
@ -292,9 +292,11 @@ define([
|
|||
}
|
||||
|
||||
me.defaultTitleText = '{{APP_TITLE_TEXT}}';
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicense = me.warnNoLicense.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicense = me.warnNoLicense.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseExceeded = me.warnLicenseExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseUsersExceeded = me.warnLicenseUsersExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
},
|
||||
|
||||
loadConfig: function(data) {
|
||||
|
@ -911,6 +913,7 @@ define([
|
|||
this.permissions.edit = false;
|
||||
|
||||
this.appOptions.isOffline = this.api.asc_isOffline();
|
||||
this.appOptions.isCrypted = this.api.asc_isCrypto();
|
||||
this.appOptions.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit);
|
||||
this.appOptions.isLightVersion = params.asc_getIsLight();
|
||||
/** coauthoring begin **/
|
||||
|
@ -1985,7 +1988,7 @@ define([
|
|||
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',
|
||||
textBuyNow: 'Visit website',
|
||||
textNoLicenseTitle: '%1 open source version',
|
||||
textNoLicenseTitle: 'License limit reached',
|
||||
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 and page is reloaded.',
|
||||
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
||||
|
@ -2034,10 +2037,10 @@ define([
|
|||
txtTheme_basic: 'Basic',
|
||||
txtTheme_green_leaf: 'Green leaf',
|
||||
txtTheme_office_theme: 'Office Theme',
|
||||
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.',
|
||||
warnNoLicenseUsers: 'This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.',
|
||||
warnLicenseExceeded: 'The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnLicenseUsersExceeded: 'The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnNoLicense: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
warnNoLicenseUsers: "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
warnLicenseExceeded: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
warnLicenseUsersExceeded: "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
errorDataEncrypted: 'Encrypted changes have been received, they cannot be deciphered.',
|
||||
textClose: 'Close',
|
||||
textPaidFeature: 'Paid feature',
|
||||
|
|
|
@ -117,9 +117,9 @@
|
|||
"Common.Views.InsertTableDialog.txtTitle": "Größe der Tabelle",
|
||||
"Common.Views.InsertTableDialog.txtTitleSplit": "Zelle teilen",
|
||||
"Common.Views.LanguageDialog.labelSelect": "Sprache des Dokuments wählen",
|
||||
"Common.Views.ListSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||
"Common.Views.ListSettingsDialog.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"Common.Views.ListSettingsDialog.tipChange": "Aufzählungszeichen ändern",
|
||||
"Common.Views.ListSettingsDialog.txtBullet": "Aufzählungszeichen",
|
||||
"Common.Views.ListSettingsDialog.txtBullet": "Zeichen",
|
||||
"Common.Views.ListSettingsDialog.txtColor": "Farbe",
|
||||
"Common.Views.ListSettingsDialog.txtOfText": "% des Textes",
|
||||
"Common.Views.ListSettingsDialog.txtSize": "Größe",
|
||||
|
@ -327,7 +327,7 @@
|
|||
"PE.Controllers.Main.textContactUs": "Verkaufsteam kontaktieren",
|
||||
"PE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Präsentation wird geladen ",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "%1 Verbindungsbeschränkung",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht",
|
||||
"PE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion",
|
||||
"PE.Controllers.Main.textShape": "Form",
|
||||
"PE.Controllers.Main.textStrict": "Formaler Modus",
|
||||
|
@ -596,11 +596,11 @@
|
|||
"PE.Controllers.Main.waitText": "Bitte warten...",
|
||||
"PE.Controllers.Main.warnBrowserIE9": "Die Anwendung hat geringe Fähigkeiten in IE9. Nutzen Sie IE10 oder höher.",
|
||||
"PE.Controllers.Main.warnBrowserZoom": "Die aktuelle Zoom-Einstellung Ihres Webbrowsers wird nicht völlig unterstützt. Bitte stellen Sie die Standardeinstellung mithilfe der Tastenkombination Strg+0 wieder her.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Die Anzahl gleichzeitiger Verbindungen zum Document Server wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.<br>Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Die Anzahl der gleichzeitigen Benutzer wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Diese Version von %1 Editoren hat gewisse Einschränkungen für gleichzeitige Verbindungen zum Dokumentenserver.<br>Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Diese Version von %1 Editoren hat bestimmte Einschränkungen für gleichzeitige Benutzer. <br> Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.",
|
||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||
"PE.Controllers.Toolbar.confirmAddFontName": "Die Schriftart, die Sie verwenden wollen, ist auf diesem Gerät nicht verfügbar.<br>Der Textstil wird mit einer der Systemschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.<br>Wollen Sie fortsetzen?",
|
||||
|
|
|
@ -327,7 +327,7 @@
|
|||
"PE.Controllers.Main.textContactUs": "Contact sales",
|
||||
"PE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.<br>Please contact our Sales Department to get a quote.",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Loading presentation",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "%1 connection limitation",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "License limit reached",
|
||||
"PE.Controllers.Main.textPaidFeature": "Paid feature",
|
||||
"PE.Controllers.Main.textShape": "Shape",
|
||||
"PE.Controllers.Main.textStrict": "Strict mode",
|
||||
|
@ -596,11 +596,11 @@
|
|||
"PE.Controllers.Main.waitText": "Please, wait...",
|
||||
"PE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher",
|
||||
"PE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"PE.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.",
|
||||
"PE.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.",
|
||||
"PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||
"PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.<br>The text style will be displayed using one of the system fonts, the saved font will be used when it is available.<br>Do you want to continue?",
|
||||
|
|
|
@ -327,7 +327,7 @@
|
|||
"PE.Controllers.Main.textContactUs": "Contacter l'équipe de ventes",
|
||||
"PE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.<br>Veuillez contacter notre Service des Ventes pour obtenir le devis.",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Chargement de présentation",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Limitation de connexion ONLYOFFICE",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte",
|
||||
"PE.Controllers.Main.textPaidFeature": "Fonction payée",
|
||||
"PE.Controllers.Main.textShape": "Forme",
|
||||
"PE.Controllers.Main.textStrict": "Mode strict",
|
||||
|
@ -596,11 +596,11 @@
|
|||
"PE.Controllers.Main.waitText": "Veuillez patienter...",
|
||||
"PE.Controllers.Main.warnBrowserIE9": "L'application est peu compatible avec IE9. Utilisez IE10 ou version plus récente",
|
||||
"PE.Controllers.Main.warnBrowserZoom": "Le paramètre actuel de zoom de votre navigateur n'est pas accepté. Veuillez rétablir le niveau de zoom par défaut en appuyant sur Ctrl+0.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Le nombre de connexions simultanées sur le serveur de documents a été dépassée et le document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.<br>Veuillez mettre à jour votre licence et actualisez la page.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Le nombre d'utilisateurs simultanés a été dépassé et le document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Cette version de %1 editors a certaines limitations pour les connexions simultanées au serveur de documents.<br>Si vous avez besoin de plus, considérez la possibilité de mettre à jour votre licence actuelle ou d'acheter une licence commerciale.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Cette version de %1 editors a certaines limitations pour les utilisateurs simultanés.<br>Si vous avez besoin de plus, considérez la possibilité de mettre à jour votre licence actuelle ou d'acheter une licence commerciale.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez votre administrateur pour en savoir davantage.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.",
|
||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||
"PE.Controllers.Toolbar.confirmAddFontName": "La police que vous allez enregistrer n'est pas disponible sur l'appareil actuel.<br>Le style du texte sera affiché à l'aide de l'une des polices de système, la police sauvée sera utilisée lorsqu'elle est disponible.<br>Voulez-vous continuer?",
|
||||
|
|
|
@ -327,7 +327,7 @@
|
|||
"PE.Controllers.Main.textContactUs": "Contatta il reparto vendite.",
|
||||
"PE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. <br> Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Caricamento della presentazione",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto",
|
||||
"PE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
|
||||
"PE.Controllers.Main.textShape": "Forma",
|
||||
"PE.Controllers.Main.textStrict": "Modalità Rigorosa",
|
||||
|
@ -596,11 +596,11 @@
|
|||
"PE.Controllers.Main.waitText": "Per favore, attendi...",
|
||||
"PE.Controllers.Main.warnBrowserIE9": "L'applicazione è poco compatibile con IE9. Usa IE10 o più recente",
|
||||
"PE.Controllers.Main.warnBrowserZoom": "Le impostazioni correnti di zoom del tuo browser non sono completamente supportate. Per favore, ritorna allo zoom predefinito premendo Ctrl+0.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Il numero di connessioni simultanee al server dei documenti è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Contattare l'amministratore per ulteriori informazioni.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.<br>Si prega di aggiornare la licenza e ricaricare la pagina.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Per ulteriori informazioni, contattare l'amministratore.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Questa versione di %1 editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Questa versione di %1 presenta alcune limitazioni per gli utenti simultanei.<br> Se hai bisogno di più, ti preghiamo di considerare l'aggiornamento della tua licenza attuale o l'acquisto di una licenza commerciale.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta l’amministratore per saperne di più.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Ci stato negato il diritto alla modifica del file.",
|
||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||
"PE.Controllers.Toolbar.confirmAddFontName": "Il carattere che vuoi salvare non è accessibile su questo dispositivo.<br>Lo stile di testo sarà visualizzato usando uno dei caratteri di sistema, il carattere salvato sarà usato quando accessibile.<br>Vuoi continuare?",
|
||||
|
|
|
@ -190,7 +190,7 @@
|
|||
"PE.Controllers.Main.textCloseTip": "Clique para fechar a dica",
|
||||
"PE.Controllers.Main.textContactUs": "Entre em contato com o departamento de vendas",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Carregando apresentação",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Versão open source do ONLYOFFICE",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido",
|
||||
"PE.Controllers.Main.textShape": "Forma",
|
||||
"PE.Controllers.Main.textStrict": "Strict mode",
|
||||
"PE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.<br>Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.",
|
||||
|
@ -272,7 +272,10 @@
|
|||
"PE.Controllers.Main.warnBrowserIE9": "O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior",
|
||||
"PE.Controllers.Main.warnBrowserZoom": "A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Sua licença expirou.<br>Atualize sua licença e atualize a página.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Você está usando uma versão de código aberto do %1. A versão tem limitações para conexões simultâneas com servidor de documentos (20 conexões por vez).<br>Se você precisar de mais, considere a compra de uma licença comercial.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com seu administrador para saber mais.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
|
||||
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
|
||||
"PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.<br>The text style will be displayed using one of the device fonts, the saved font will be used when it is available.<br>Do you want to continue?",
|
||||
|
|
|
@ -327,7 +327,7 @@
|
|||
"PE.Controllers.Main.textContactUs": "Связаться с отделом продаж",
|
||||
"PE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Загрузка презентации",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение",
|
||||
"PE.Controllers.Main.textPaidFeature": "Платная функция",
|
||||
"PE.Controllers.Main.textShape": "Фигура",
|
||||
"PE.Controllers.Main.textStrict": "Строгий режим",
|
||||
|
@ -596,11 +596,11 @@
|
|||
"PE.Controllers.Main.waitText": "Пожалуйста, подождите...",
|
||||
"PE.Controllers.Main.warnBrowserIE9": "В IE9 приложение имеет низкую производительность. Используйте IE10 или более позднюю версию.",
|
||||
"PE.Controllers.Main.warnBrowserZoom": "Текущее значение масштаба страницы в браузере поддерживается не полностью. Вернитесь к масштабу по умолчанию, нажав Ctrl+0",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Превышено допустимое число одновременных подключений к серверу документов, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||
"PE.Controllers.Statusbar.zoomText": "Масштаб {0}%",
|
||||
"PE.Controllers.Toolbar.confirmAddFontName": "Шрифт, который вы хотите сохранить, недоступен на этом устройстве.<br>Стиль текста будет отображаться с помощью одного из системных шрифтов. Сохраненный шрифт будет использоваться, когда он станет доступен.<br>Вы хотите продолжить?",
|
||||
|
|
|
@ -189,9 +189,11 @@ define([
|
|||
|
||||
me.initNames();
|
||||
me.defaultTitleText = '{{APP_TITLE_TEXT}}';
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicense = me.warnNoLicense.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicense = me.warnNoLicense.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseExceeded = me.warnLicenseExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseUsersExceeded = me.warnLicenseUsersExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
},
|
||||
|
||||
loadConfig: function(data) {
|
||||
|
@ -1390,7 +1392,7 @@ define([
|
|||
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.',
|
||||
textBuyNow: 'Visit website',
|
||||
textNoLicenseTitle: '%1 open source version',
|
||||
textNoLicenseTitle: 'License limit reached',
|
||||
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 and page is reloaded.',
|
||||
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
||||
|
@ -1424,10 +1426,10 @@ define([
|
|||
txtSlideSubtitle: 'Slide subtitle',
|
||||
txtSlideTitle: 'Slide title',
|
||||
txtProtected: 'Once you enter the password and open the file, the current password to the file will be reset',
|
||||
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.',
|
||||
warnNoLicenseUsers: 'This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.',
|
||||
warnLicenseExceeded: 'The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnLicenseUsersExceeded: 'The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnNoLicense: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
warnNoLicenseUsers: "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
warnLicenseExceeded: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
warnLicenseUsersExceeded: "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
errorDataEncrypted: 'Encrypted changes have been received, they cannot be deciphered.',
|
||||
closeButtonText: 'Close File',
|
||||
scriptLoadError: 'The connection is too slow, some of the components could not be loaded. Please reload the page.',
|
||||
|
@ -1438,7 +1440,7 @@ define([
|
|||
waitText: 'Please, wait...',
|
||||
errorFileSizeExceed: 'The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.',
|
||||
errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.',
|
||||
errorOpensource: 'Files can be opened for viewing only. Mobile web editors are not available in the Open Source version.'
|
||||
errorOpensource: 'Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.'
|
||||
}
|
||||
})(), PE.Controllers.Main || {}))
|
||||
});
|
|
@ -69,6 +69,12 @@ define([
|
|||
return out;
|
||||
};
|
||||
|
||||
function iOSVersion() {
|
||||
var ua = navigator.userAgent;
|
||||
var m;
|
||||
return (m = /(iPad|iPhone|iphone).*?(OS |os |OS\_)(\d+((_|\.)\d)?((_|\.)\d)?)/.exec(ua)) ? parseFloat(m[3]) : 0;
|
||||
}
|
||||
|
||||
return {
|
||||
models: [],
|
||||
collections: [],
|
||||
|
@ -99,8 +105,13 @@ define([
|
|||
var me = this;
|
||||
me.createView('Search').render();
|
||||
|
||||
$('#editor_sdk').single('mousedown touchstart', _.bind(me.onEditorTouchStart, me));
|
||||
$('#editor_sdk').single('mouseup touchend', _.bind(me.onEditorTouchEnd, me));
|
||||
if (iOSVersion()<13) {
|
||||
$('#editor_sdk').single('mousedown touchstart', _.bind(me.onEditorTouchStart, me));
|
||||
$('#editor_sdk').single('mouseup touchend', _.bind(me.onEditorTouchEnd, me));
|
||||
} else {
|
||||
$('#editor_sdk').single('pointerdown', _.bind(me.onEditorTouchStart, me));
|
||||
$('#editor_sdk').single('pointerup', _.bind(me.onEditorTouchEnd, me));
|
||||
}
|
||||
},
|
||||
|
||||
showSearch: function () {
|
||||
|
|
|
@ -139,7 +139,7 @@
|
|||
"PE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
|
||||
"PE.Controllers.Main.textDone": "Fertig",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Präsentation wird geladen ",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "%1 Verbindungsbeschränkung",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht",
|
||||
"PE.Controllers.Main.textOK": "OK",
|
||||
"PE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion",
|
||||
"PE.Controllers.Main.textPassword": "Kennwort",
|
||||
|
@ -222,11 +222,11 @@
|
|||
"PE.Controllers.Main.uploadImageTextText": "Bild wird hochgeladen...",
|
||||
"PE.Controllers.Main.uploadImageTitleText": "Bild wird hochgeladen",
|
||||
"PE.Controllers.Main.waitText": "Bitte warten...",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Die Anzahl gleichzeitiger Verbindungen zum Document Server wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.<br>Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Die Anzahl der gleichzeitigen Benutzer wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Diese Version von %1 Editoren hat gewisse Einschränkungen für gleichzeitige Verbindungen zum Dokumentenserver.<br>Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Diese Version von %1 Editoren hat bestimmte Einschränkungen für gleichzeitige Benutzer. <br> Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.",
|
||||
"PE.Controllers.Search.textNoTextFound": "Der Text wurde nicht gefunden.",
|
||||
"PE.Controllers.Search.textReplaceAll": "Alles ersetzen",
|
||||
|
|
|
@ -96,6 +96,7 @@
|
|||
"PE.Controllers.Main.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
|
||||
"PE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||
"PE.Controllers.Main.errorOpensource": "Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"PE.Controllers.Main.errorUsersExceed": "The number of users was exceeded",
|
||||
"PE.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.",
|
||||
|
@ -140,7 +141,7 @@
|
|||
"PE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.<br>Please contact our Sales Department to get a quote.",
|
||||
"PE.Controllers.Main.textDone": "Done",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Loading presentation",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "%1 connection limitation",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "License limit reached",
|
||||
"PE.Controllers.Main.textOK": "OK",
|
||||
"PE.Controllers.Main.textPaidFeature": "Paid feature",
|
||||
"PE.Controllers.Main.textPassword": "Password",
|
||||
|
@ -223,11 +224,11 @@
|
|||
"PE.Controllers.Main.uploadImageTextText": "Uploading image...",
|
||||
"PE.Controllers.Main.uploadImageTitleText": "Uploading Image",
|
||||
"PE.Controllers.Main.waitText": "Please, wait...",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"PE.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.",
|
||||
"PE.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.",
|
||||
"PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"PE.Controllers.Search.textNoTextFound": "Text not Found",
|
||||
"PE.Controllers.Search.textReplaceAll": "Replace All",
|
||||
|
|
|
@ -139,7 +139,7 @@
|
|||
"PE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.<br>Veuillez contacter notre Service des Ventes pour obtenir le devis.",
|
||||
"PE.Controllers.Main.textDone": "Terminé",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Chargement de la présentation",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Limitation de connexion ONLYOFFICE",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte",
|
||||
"PE.Controllers.Main.textOK": "OK",
|
||||
"PE.Controllers.Main.textPaidFeature": "Fonction payée",
|
||||
"PE.Controllers.Main.textPassword": "Mot de passe",
|
||||
|
@ -222,11 +222,11 @@
|
|||
"PE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...",
|
||||
"PE.Controllers.Main.uploadImageTitleText": "Chargement d'une image",
|
||||
"PE.Controllers.Main.waitText": "Veuillez patienter...",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Le nombre de connexions simultanées a été dépassée et le document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.<br>Veuillez mettre à jour votre licence et actualisez la page.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Le nombre d'utilisateurs simultanés a été dépassé et le document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Cette version de %1 editors a certaines limitations pour les connexions simultanées au serveur de documents.<br>Si vous avez besoin de plus, considérez la possibilité de mettre à jour votre licence actuelle ou d'acheter une licence commerciale.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Cette version de %1 editors a certaines limitations pour les utilisateurs simultanés.<br>Si vous avez besoin de plus, considérez la possibilité de mettre à jour votre licence actuelle ou d'acheter une licence commerciale.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez votre administrateur pour en savoir davantage.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.",
|
||||
"PE.Controllers.Search.textNoTextFound": "Le texte est introuvable",
|
||||
"PE.Controllers.Search.textReplaceAll": "Remplacer tout",
|
||||
|
|
|
@ -139,7 +139,7 @@
|
|||
"PE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. <br> Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
|
||||
"PE.Controllers.Main.textDone": "Fatto",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Caricamento della presentazione",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto",
|
||||
"PE.Controllers.Main.textOK": "OK",
|
||||
"PE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
|
||||
"PE.Controllers.Main.textPassword": "Password",
|
||||
|
@ -222,11 +222,11 @@
|
|||
"PE.Controllers.Main.uploadImageTextText": "Caricamento dell'immagine in corso...",
|
||||
"PE.Controllers.Main.uploadImageTitleText": "Caricamento dell'immagine",
|
||||
"PE.Controllers.Main.waitText": "Per favore, attendi...",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Il numero di connessioni simultanee al server dei documenti è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Contattare l'amministratore per ulteriori informazioni.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.<br>Si prega di aggiornare la licenza e ricaricare la pagina.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Per ulteriori informazioni, contattare l'amministratore.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Questa versione di %1 editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Questa versione di %1 editors presenta alcune limitazioni per gli utenti simultanei. <br>Se hai bisogno di più, ti preghiamo di considerare l'aggiornamento della tua licenza attuale o l'acquisto di una licenza commerciale.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta l’amministratore per saperne di più.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.",
|
||||
"PE.Controllers.Search.textNoTextFound": "Testo non trovato",
|
||||
"PE.Controllers.Search.textReplaceAll": "Sostituisci tutto",
|
||||
|
|
|
@ -140,7 +140,7 @@
|
|||
"PE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador. <br> Por favor, contate o Departamento de Vendas para fazer cotação.",
|
||||
"PE.Controllers.Main.textDone": "Concluído",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Carregando apresentação",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "%1 Limitação de conexão",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido",
|
||||
"PE.Controllers.Main.textOK": "OK",
|
||||
"PE.Controllers.Main.textPaidFeature": "Recurso pago",
|
||||
"PE.Controllers.Main.textPassword": "Senha",
|
||||
|
@ -223,11 +223,11 @@
|
|||
"PE.Controllers.Main.uploadImageTextText": "Carregando imagem...",
|
||||
"PE.Controllers.Main.uploadImageTitleText": "Carregando imagem",
|
||||
"PE.Controllers.Main.waitText": "Aguarde...",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "O número de conexões concomitantes ao Servidor de Documentos foi excedido e o documento será aberto apenas para exibição. <br> Por favor, contate seu administrador para mais informações.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Sua licença expirou.<br>Atualize sua licença e atualize a página.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "O número de usuários concomitantes foi excedido e o documento será aberto somente para exibição. <br> Por favor, contate seu administrador para mais informações.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Você está usando uma versão de código aberto do %1. A versão tem limitações para conexões simultâneas com servidor de documentos (20 conexões por vez).<br>Se você precisar de mais, considere a compra de uma licença comercial.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Esta versão de %1 editores tem limitações para usuários concomitantes. <br> Se você precisar de mais, por favor, considere comprar uma licença comercial.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com seu administrador para saber mais.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
|
||||
"PE.Controllers.Search.textNoTextFound": "Texto não encontrado",
|
||||
"PE.Controllers.Search.textReplaceAll": "Substituir tudo",
|
||||
|
|
|
@ -140,7 +140,7 @@
|
|||
"PE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
|
||||
"PE.Controllers.Main.textDone": "Готово",
|
||||
"PE.Controllers.Main.textLoadingDocument": "Загрузка презентации",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
|
||||
"PE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение",
|
||||
"PE.Controllers.Main.textOK": "OK",
|
||||
"PE.Controllers.Main.textPaidFeature": "Платная функция",
|
||||
"PE.Controllers.Main.textPassword": "Пароль",
|
||||
|
@ -223,11 +223,11 @@
|
|||
"PE.Controllers.Main.uploadImageTextText": "Загрузка рисунка...",
|
||||
"PE.Controllers.Main.uploadImageTitleText": "Загрузка рисунка",
|
||||
"PE.Controllers.Main.waitText": "Пожалуйста, подождите...",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Превышено допустимое число одновременных подключений к серверу документов, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"PE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"PE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"PE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"PE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||
"PE.Controllers.Search.textNoTextFound": "Текст не найден",
|
||||
"PE.Controllers.Search.textReplaceAll": "Заменить все",
|
||||
|
|
|
@ -304,9 +304,11 @@ define([
|
|||
});
|
||||
|
||||
me.defaultTitleText = '{{APP_TITLE_TEXT}}';
|
||||
me.warnNoLicense = me.warnNoLicense.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicense = me.warnNoLicense.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseExceeded = me.warnLicenseExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseUsersExceeded = me.warnLicenseUsersExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
},
|
||||
|
||||
loadConfig: function(data) {
|
||||
|
@ -967,6 +969,7 @@ define([
|
|||
this.appOptions.canAnalytics = params.asc_getIsAnalyticsEnable();
|
||||
|
||||
this.appOptions.isOffline = this.api.asc_isOffline();
|
||||
this.appOptions.isCrypted = this.api.asc_isCrypto();
|
||||
this.appOptions.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit);
|
||||
this.appOptions.isLightVersion = params.asc_getIsLight();
|
||||
/** coauthoring begin **/
|
||||
|
@ -1108,7 +1111,7 @@ define([
|
|||
statusbarController.getView('Statusbar').changeViewMode(true);
|
||||
}
|
||||
|
||||
if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram && !me.appOptions.isOffline)
|
||||
if (!me.appOptions.isEditMailMerge && !me.appOptions.isEditDiagram)
|
||||
application.getController('PivotTable').setMode(me.appOptions).setConfig({config: me.editorConfig}, me.api);
|
||||
|
||||
var viewport = this.getApplication().getController('Viewport').getView('Viewport');
|
||||
|
@ -2237,7 +2240,7 @@ define([
|
|||
errorOpenWarning: 'The length of one of the formulas in the file exceeded<br>the allowed number of characters and it was removed.',
|
||||
errorFrmlWrongReferences: 'The function refers to a sheet that does not exist.<br>Please check the data and try again.',
|
||||
textBuyNow: 'Visit website',
|
||||
textNoLicenseTitle: '%1 open source version',
|
||||
textNoLicenseTitle: 'License limit reached',
|
||||
textContactUs: 'Contact sales',
|
||||
confirmPutMergeRange: 'The source data contains merged cells.<br>They will be unmerged before they are pasted into the table.',
|
||||
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.',
|
||||
|
@ -2280,10 +2283,10 @@ define([
|
|||
txtStyle_Comma: 'Comma',
|
||||
errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.",
|
||||
errorMaxPoints: "The maximum number of points in series per chart is 4096.",
|
||||
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.',
|
||||
warnNoLicenseUsers: 'This version of %1 Editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.',
|
||||
warnLicenseExceeded: 'The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnLicenseUsersExceeded: 'The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnNoLicense: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
warnNoLicenseUsers: "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
warnLicenseExceeded: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
warnLicenseUsersExceeded: "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
errorDataEncrypted: 'Encrypted changes have been received, they cannot be deciphered.',
|
||||
textClose: 'Close',
|
||||
textPaidFeature: 'Paid feature',
|
||||
|
|
|
@ -3175,13 +3175,11 @@ define([
|
|||
me.toolbar.btnsFormula = formulatab.getButtons('formula');
|
||||
Array.prototype.push.apply(me.toolbar.lockControls, formulatab.getButtons());
|
||||
|
||||
if ( !config.isOffline ) {
|
||||
var tab = {action: 'pivot', caption: me.textPivot};
|
||||
var $panel = me.getApplication().getController('PivotTable').createToolbarPanel();
|
||||
if ($panel) {
|
||||
me.toolbar.addTab(tab, $panel, 5);
|
||||
me.toolbar.setVisible('pivot', true);
|
||||
}
|
||||
var tab = {action: 'pivot', caption: me.textPivot};
|
||||
var $panel = me.getApplication().getController('PivotTable').createToolbarPanel();
|
||||
if ($panel) {
|
||||
me.toolbar.addTab(tab, $panel, 5);
|
||||
me.toolbar.setVisible('pivot', true);
|
||||
}
|
||||
|
||||
if (!(config.customization && config.customization.compactHeader)) {
|
||||
|
|
|
@ -1718,19 +1718,19 @@ define([
|
|||
{
|
||||
caption : this.textInsideBorders,
|
||||
iconCls : 'menu__icon btn-border-inside',
|
||||
icls : 'btn-border-center',
|
||||
icls : 'btn-border-inside',
|
||||
borderId : 'inner'
|
||||
},
|
||||
{
|
||||
caption : this.textCenterBorders,
|
||||
iconCls : 'menu__icon btn-border-insidevert',
|
||||
icls : 'btn-border-vmiddle',
|
||||
icls : 'btn-border-insidevert',
|
||||
borderId : Asc.c_oAscBorderOptions.InnerV
|
||||
},
|
||||
{
|
||||
caption : this.textMiddleBorders,
|
||||
iconCls : 'menu__icon btn-border-insidehor',
|
||||
icls : 'btn-border-hmiddle',
|
||||
icls : 'btn-border-insidehor',
|
||||
borderId : Asc.c_oAscBorderOptions.InnerH
|
||||
},
|
||||
{
|
||||
|
|
|
@ -107,9 +107,9 @@
|
|||
"Common.Views.ImageFromUrlDialog.textUrl": "Bild-URL einfügen:",
|
||||
"Common.Views.ImageFromUrlDialog.txtEmpty": "Dieses Feld ist erforderlich",
|
||||
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Dieses Feld muss eine URL im Format \"http://www.example.com\" enthalten",
|
||||
"Common.Views.ListSettingsDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||
"Common.Views.ListSettingsDialog.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"Common.Views.ListSettingsDialog.tipChange": "Aufzählungszeichen ändern",
|
||||
"Common.Views.ListSettingsDialog.txtBullet": "Aufzählungszeichen",
|
||||
"Common.Views.ListSettingsDialog.txtBullet": "Zeichen",
|
||||
"Common.Views.ListSettingsDialog.txtColor": "Farbe",
|
||||
"Common.Views.ListSettingsDialog.txtOfText": "% des Textes",
|
||||
"Common.Views.ListSettingsDialog.txtSize": "Größe",
|
||||
|
@ -526,7 +526,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Tabelle wird geladen",
|
||||
"SSE.Controllers.Main.textNo": "Nein",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "%1 Verbindungsbeschränkung",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion",
|
||||
"SSE.Controllers.Main.textPleaseWait": "Der Vorgang könnte mehr Zeit in Anspruch nehmen als erwartet. Bitte warten...",
|
||||
"SSE.Controllers.Main.textRecalcFormulas": "Formeln werden berechnet...",
|
||||
|
@ -768,11 +768,11 @@
|
|||
"SSE.Controllers.Main.waitText": "Bitte warten...",
|
||||
"SSE.Controllers.Main.warnBrowserIE9": "Die Anwendung hat geringe Fähigkeiten in IE9. Nutzen Sie IE10 oder höher.",
|
||||
"SSE.Controllers.Main.warnBrowserZoom": "Die aktuelle Zoom-Einstellung Ihres Webbrowsers wird nicht völlig unterstützt. Bitte stellen Sie die Standardeinstellung mithilfe der Tastenkombination STRG+0 wieder her.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Die Anzahl gleichzeitiger Verbindungen zum Document Server wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.<br>Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Die Anzahl der gleichzeitigen Benutzer wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Diese Version von %1 Editoren hat gewisse Einschränkungen für gleichzeitige Verbindungen zum Dokumentenserver.<br>Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Diese Version von %1 Editoren hat bestimmte Einschränkungen für gleichzeitige Benutzer. <br> Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.",
|
||||
"SSE.Controllers.Print.strAllSheets": "Alle Blätter",
|
||||
"SSE.Controllers.Print.textWarning": "Achtung",
|
||||
|
@ -1684,7 +1684,7 @@
|
|||
"SSE.Views.HeaderFooterDialog.textItalic": "Kursiv",
|
||||
"SSE.Views.HeaderFooterDialog.textLeft": "Links",
|
||||
"SSE.Views.HeaderFooterDialog.textMaxError": "Die eingegebene Textzeichenfolge ist zu lang. Verringern Sie die Anzahl der verwendeten Zeichen.",
|
||||
"SSE.Views.HeaderFooterDialog.textNewColor": "Neue benutzerdefinierte Farbe hinzufügen",
|
||||
"SSE.Views.HeaderFooterDialog.textNewColor": "Benutzerdefinierte Farbe",
|
||||
"SSE.Views.HeaderFooterDialog.textOdd": "Ungerade Seite",
|
||||
"SSE.Views.HeaderFooterDialog.textPageCount": "Anzahl der Seiten",
|
||||
"SSE.Views.HeaderFooterDialog.textPageNum": "Seitenzahl",
|
||||
|
|
|
@ -526,7 +526,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.<br>Please contact our Sales Department to get a quote.",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Loading spreadsheet",
|
||||
"SSE.Controllers.Main.textNo": "No",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "%1 connection limitation",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "License limit reached",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Paid feature",
|
||||
"SSE.Controllers.Main.textPleaseWait": "The operation might take more time than expected. Please wait...",
|
||||
"SSE.Controllers.Main.textRecalcFormulas": "Calculating formulas...",
|
||||
|
@ -768,11 +768,11 @@
|
|||
"SSE.Controllers.Main.waitText": "Please, wait...",
|
||||
"SSE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher",
|
||||
"SSE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"SSE.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.",
|
||||
"SSE.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.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"SSE.Controllers.Print.strAllSheets": "All Sheets",
|
||||
"SSE.Controllers.Print.textWarning": "Warning",
|
||||
|
|
|
@ -526,7 +526,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.<br>Veuillez contacter notre Service des Ventes pour obtenir le devis.",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Chargement d'une feuille de calcul",
|
||||
"SSE.Controllers.Main.textNo": "Non",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Limitation de connexion ONLYOFFICE",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Fonction payante",
|
||||
"SSE.Controllers.Main.textPleaseWait": "L'opération peut prendre plus de temps que prévu. Veuillez patienter...",
|
||||
"SSE.Controllers.Main.textRecalcFormulas": "Calcul des formules...",
|
||||
|
@ -768,11 +768,11 @@
|
|||
"SSE.Controllers.Main.waitText": "Veuillez patienter...",
|
||||
"SSE.Controllers.Main.warnBrowserIE9": "L'application est peu compatible avec IE9. Utilisez IE10 ou version plus récente",
|
||||
"SSE.Controllers.Main.warnBrowserZoom": "Le paramètre actuel de zoom de votre navigateur n'est pas accepté. Veuillez rétablir le niveau de zoom par défaut en appuyant sur Ctrl+0.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Le nombre de connexions simultanées a été dépassé et le document sera ouvert en lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.<br>Veuillez mettre à jour votre licence et actualisez la page.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Le nombre d'utilisateurs simultanés a été dépassé et le document sera ouvert en lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Cette version de %1 editors est limitée en terme de connexions simultanées au serveur de documents.<br>Pour supprimer cette limite, vous pouvez acheter une licence commerciale.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Cette version de %1 editors est limitée en terme d'utilisateurs simultanés.<br>Pour supprimer cette limite, vous pouvez acheter une licence commerciale.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez votre administrateur pour en savoir davantage.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.",
|
||||
"SSE.Controllers.Print.strAllSheets": "Toutes les feuilles",
|
||||
"SSE.Controllers.Print.textWarning": "Avertissement",
|
||||
|
|
|
@ -526,7 +526,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. <br> Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Caricamento del foglio di calcolo",
|
||||
"SSE.Controllers.Main.textNo": "No",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
|
||||
"SSE.Controllers.Main.textPleaseWait": "L'operazione può richiedere più tempo. Per favore, attendi...",
|
||||
"SSE.Controllers.Main.textRecalcFormulas": "Calcolo delle formule in corso...",
|
||||
|
@ -768,11 +768,11 @@
|
|||
"SSE.Controllers.Main.waitText": "Per favore, attendi...",
|
||||
"SSE.Controllers.Main.warnBrowserIE9": "L'applicazione è poco compatibile con IE9. Usa IE10 o più recente",
|
||||
"SSE.Controllers.Main.warnBrowserZoom": "Le impostazioni correnti di zoom del tuo browser non sono completamente supportate. Per favore, ritorna allo zoom predefinito premendo Ctrl+0.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Il numero di connessioni simultanee al server dei documenti è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Contattare l'amministratore per ulteriori informazioni.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.<br>Si prega di aggiornare la licenza e ricaricare la pagina.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Per ulteriori informazioni, contattare l'amministratore.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Questa versione di %1 editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Questa versione di %1 presenta alcune limitazioni per gli utenti simultanei.<br> Se hai bisogno di più, ti preghiamo di considerare l'aggiornamento della tua licenza attuale o l'acquisto di una licenza commerciale.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta l’amministratore per saperne di più.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Ci stato negato il diritto alla modifica del file.",
|
||||
"SSE.Controllers.Print.strAllSheets": "Tutti i fogli",
|
||||
"SSE.Controllers.Print.textWarning": "Avviso",
|
||||
|
|
|
@ -337,7 +337,7 @@
|
|||
"SSE.Controllers.Main.textContactUs": "Contate as vendas",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Carregando planilha",
|
||||
"SSE.Controllers.Main.textNo": "Não",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Versão open source do ONLYOFFICE",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido",
|
||||
"SSE.Controllers.Main.textPleaseWait": "A operação pode demorar mais tempo do que o esperado. Aguarde...",
|
||||
"SSE.Controllers.Main.textRecalcFormulas": "Calculando fórmulas...",
|
||||
"SSE.Controllers.Main.textShape": "Forma",
|
||||
|
@ -395,7 +395,10 @@
|
|||
"SSE.Controllers.Main.warnBrowserIE9": "O aplicativo tem baixa capacidade no IE9. Usar IE10 ou superior",
|
||||
"SSE.Controllers.Main.warnBrowserZoom": "A configuração de zoom atual de seu navegador não é completamente suportada. Redefina para o zoom padrão pressionando Ctrl+0.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Sua licença expirou.<br>Atualize sua licença e atualize a página.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Você está usando uma versão de código aberto do %1. A versão tem limitações para conexões simultâneas com servidor de documentos (20 conexões por vez).<br>Se você precisar de mais, considere a compra de uma licença comercial.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com seu administrador para saber mais.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
|
||||
"SSE.Controllers.Print.strAllSheets": "Todas as folhas",
|
||||
"SSE.Controllers.Print.textWarning": "Aviso",
|
||||
|
|
|
@ -526,7 +526,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Загрузка таблицы",
|
||||
"SSE.Controllers.Main.textNo": "Нет",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Платная функция",
|
||||
"SSE.Controllers.Main.textPleaseWait": "Операция может занять больше времени, чем предполагалось. Пожалуйста, подождите...",
|
||||
"SSE.Controllers.Main.textRecalcFormulas": "Вычисление формул...",
|
||||
|
@ -768,11 +768,11 @@
|
|||
"SSE.Controllers.Main.waitText": "Пожалуйста, подождите...",
|
||||
"SSE.Controllers.Main.warnBrowserIE9": "В IE9 приложение имеет низкую производительность. Используйте IE10 или более позднюю версию.",
|
||||
"SSE.Controllers.Main.warnBrowserZoom": "Текущее значение масштаба страницы в браузере поддерживается не полностью. Вернитесь к масштабу по умолчанию, нажав Ctrl+0",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Превышено допустимое число одновременных подключений к серверу документов, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||
"SSE.Controllers.Print.strAllSheets": "Все листы",
|
||||
"SSE.Controllers.Print.textWarning": "Предупреждение",
|
||||
|
|
|
@ -192,9 +192,11 @@ define([
|
|||
}
|
||||
|
||||
me.defaultTitleText = '{{APP_TITLE_TEXT}}';
|
||||
me.warnNoLicense = me.warnNoLicense.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace('%1', '{{COMPANY_NAME}}');
|
||||
me.warnNoLicense = me.warnNoLicense.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnNoLicenseUsers = me.warnNoLicenseUsers.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.textNoLicenseTitle = me.textNoLicenseTitle.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseExceeded = me.warnLicenseExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
me.warnLicenseUsersExceeded = me.warnLicenseUsersExceeded.replace(/%1/g, '{{COMPANY_NAME}}');
|
||||
},
|
||||
|
||||
loadConfig: function(data) {
|
||||
|
@ -1564,7 +1566,7 @@ define([
|
|||
textStrict: 'Strict mode',
|
||||
txtErrorLoadHistory: 'Loading history failed',
|
||||
textBuyNow: 'Visit website',
|
||||
textNoLicenseTitle: '%1 open source version',
|
||||
textNoLicenseTitle: 'License limit reached',
|
||||
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 and page is reloaded.',
|
||||
warnLicenseExp: 'Your license has expired.<br>Please update your license and refresh the page.',
|
||||
|
@ -1619,10 +1621,10 @@ define([
|
|||
txtStyle_Comma: 'Comma',
|
||||
errorMaxPoints: 'The maximum number of points in series per chart is 4096.',
|
||||
txtProtected: 'Once you enter the password and open the file, the current password to the file will be reset',
|
||||
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.',
|
||||
warnNoLicenseUsers: 'This version of %1 editors has certain limitations for concurrent users.<br>If you need more please consider purchasing a commercial license.',
|
||||
warnLicenseExceeded: 'The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnLicenseUsersExceeded: 'The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.',
|
||||
warnNoLicense: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
warnNoLicenseUsers: "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
warnLicenseExceeded: "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
warnLicenseUsersExceeded: "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
errorDataEncrypted: 'Encrypted changes have been received, they cannot be deciphered.',
|
||||
pastInMergeAreaError: 'Cannot change part of a merged cell',
|
||||
errorWrongBracketsCount: 'Found an error in the formula entered.<br>Wrong cout of brackets.',
|
||||
|
@ -1663,7 +1665,7 @@ define([
|
|||
waitText: 'Please, wait...',
|
||||
errorFileSizeExceed: 'The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.',
|
||||
errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.',
|
||||
errorOpensource: 'Files can be opened for viewing only. Mobile web editors are not available in the Open Source version.'
|
||||
errorOpensource: 'Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.'
|
||||
}
|
||||
})(), SSE.Controllers.Main || {}))
|
||||
});
|
|
@ -68,6 +68,12 @@ define([
|
|||
return out;
|
||||
};
|
||||
|
||||
function iOSVersion() {
|
||||
var ua = navigator.userAgent;
|
||||
var m;
|
||||
return (m = /(iPad|iPhone|iphone).*?(OS |os |OS\_)(\d+((_|\.)\d)?((_|\.)\d)?)/.exec(ua)) ? parseFloat(m[3]) : 0;
|
||||
}
|
||||
|
||||
return {
|
||||
models: [],
|
||||
collections: [],
|
||||
|
@ -100,8 +106,13 @@ define([
|
|||
var me = this;
|
||||
me.createView('Search').render();
|
||||
|
||||
$('#editor_sdk').single('mousedown touchstart', _.bind(me.onEditorTouchStart, me));
|
||||
$('#editor_sdk').single('mouseup touchend', _.bind(me.onEditorTouchEnd, me));
|
||||
if (iOSVersion()<13) {
|
||||
$('#editor_sdk').single('mousedown touchstart', _.bind(me.onEditorTouchStart, me));
|
||||
$('#editor_sdk').single('mouseup touchend', _.bind(me.onEditorTouchEnd, me));
|
||||
} else {
|
||||
$('#editor_sdk').single('pointerdown', _.bind(me.onEditorTouchStart, me));
|
||||
$('#editor_sdk').single('pointerup', _.bind(me.onEditorTouchEnd, me));
|
||||
}
|
||||
},
|
||||
|
||||
showSearch: function () {
|
||||
|
|
|
@ -220,7 +220,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln. <br> Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.",
|
||||
"SSE.Controllers.Main.textDone": "Fertig",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Tabelle wird geladen",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "%1 Verbindungsbeschränkung",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht",
|
||||
"SSE.Controllers.Main.textOK": "OK",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion",
|
||||
"SSE.Controllers.Main.textPassword": "Kennwort",
|
||||
|
@ -283,11 +283,11 @@
|
|||
"SSE.Controllers.Main.uploadImageTextText": "Bild wird hochgeladen...",
|
||||
"SSE.Controllers.Main.uploadImageTitleText": "Bild wird hochgeladen",
|
||||
"SSE.Controllers.Main.waitText": "Bitte warten...",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Die Anzahl gleichzeitiger Verbindungen zum Document Server wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.<br>Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Die Anzahl der gleichzeitigen Benutzer wurde überschritten und das Dokument wird nur zum Anzeigen geöffnet. <br> Wenden Sie sich an den Administrator, um weitere Informationen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Diese Version von %1 Editoren hat gewisse Einschränkungen für gleichzeitige Verbindungen zum Dokumentenserver.<br>Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Diese Version von %1 Editoren hat bestimmte Einschränkungen für gleichzeitige Benutzer. <br> Wenn Sie mehr Verbindungen benötigen, erwerben Sie eine kommerzielle Lizenz.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.<br>Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Der Text wurde nicht gefunden.",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Alle ersetzen",
|
||||
|
|
|
@ -176,6 +176,7 @@
|
|||
"SSE.Controllers.Main.errorUnexpectedGuid": "External error.<br>Unexpected GUID. Please contact support in case the error persists.",
|
||||
"SSE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
|
||||
"SSE.Controllers.Main.errorOpensource": "Using the free Community version you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"SSE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
|
||||
"SSE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
|
||||
"SSE.Controllers.Main.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.",
|
||||
|
@ -221,7 +222,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.<br>Please contact our Sales Department to get a quote.",
|
||||
"SSE.Controllers.Main.textDone": "Done",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Loading spreadsheet",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "%1 connection limitation",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "License limit reached",
|
||||
"SSE.Controllers.Main.textOK": "OK",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Paid feature",
|
||||
"SSE.Controllers.Main.textPassword": "Password",
|
||||
|
@ -284,11 +285,11 @@
|
|||
"SSE.Controllers.Main.uploadImageTextText": "Uploading image...",
|
||||
"SSE.Controllers.Main.uploadImageTitleText": "Uploading Image",
|
||||
"SSE.Controllers.Main.waitText": "Please, wait...",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "The number of concurrent connections to the document server has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "The number of concurrent users has been exceeded and the document will be opened for viewing only.<br>Please contact your administrator for more information.",
|
||||
"SSE.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.",
|
||||
"SSE.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.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact your administrator to learn more.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Text not found",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Replace All",
|
||||
|
|
|
@ -220,7 +220,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.<br>Veuillez contacter notre Service des Ventes pour obtenir le devis.",
|
||||
"SSE.Controllers.Main.textDone": "Terminé",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Chargement feuille de calcul",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Limitation de connexion ONLYOFFICE",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte",
|
||||
"SSE.Controllers.Main.textOK": "OK",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Fonction payée",
|
||||
"SSE.Controllers.Main.textPassword": "Mot de passe",
|
||||
|
@ -283,11 +283,11 @@
|
|||
"SSE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...",
|
||||
"SSE.Controllers.Main.uploadImageTitleText": "Chargement d'une image",
|
||||
"SSE.Controllers.Main.waitText": "Veuillez patienter...",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Le nombre de connexions simultanées a été dépassée et le document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.<br>Veuillez mettre à jour votre licence et actualisez la page.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Le nombre d'utilisateurs simultanés a été dépassé et le document sera ouvert en mode lecture seule.<br>Veuillez contacter votre administrateur pour plus d'informations.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Cette version de %1 editors a certaines limitations pour les connexions simultanées au serveur de documents.<br>Si vous avez besoin de plus, pensez à mettre à jour votre licence actuelle ou à acheter une licence commerciale.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Cette version de %1 editors a certaines limitations pour les utilisateurs simultanés.<br>Si vous avez besoin de plus, pensez à mettre à jour votre licence actuelle ou à acheter une licence commerciale.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez votre administrateur pour en savoir davantage.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.<br>Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Le texte est introuvable",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Remplacer tout",
|
||||
|
|
|
@ -220,7 +220,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Si noti che in base ai termini della licenza non si ha il diritto di cambiare il caricatore. <br> Si prega di contattare il nostro ufficio vendite per ottenere un preventivo.",
|
||||
"SSE.Controllers.Main.textDone": "Fatto",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Caricamento del foglio di calcolo",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "%1 limite connessione",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto",
|
||||
"SSE.Controllers.Main.textOK": "OK",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Caratteristica a pagamento",
|
||||
"SSE.Controllers.Main.textPassword": "Password",
|
||||
|
@ -283,11 +283,11 @@
|
|||
"SSE.Controllers.Main.uploadImageTextText": "Caricamento dell'immagine in corso...",
|
||||
"SSE.Controllers.Main.uploadImageTitleText": "Caricamento dell'immagine",
|
||||
"SSE.Controllers.Main.waitText": "Per favore, attendi...",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Il numero di connessioni simultanee al server dei documenti è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Contattare l'amministratore per ulteriori informazioni.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.<br>Si prega di aggiornare la licenza e ricaricare la pagina.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Il numero di utenti simultaei è stato superato e il documento verrà aperto solo per la visualizzazione. <br>Per ulteriori informazioni, contattare l'amministratore.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Questa versione di %1 editors presenta delle limitazioni per le connessioni simultanee al server dei documenti.<br>Se necessiti di avere di più, considera l'acquisto di una licenza commerciale.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Questa versione di %1 presenta alcune limitazioni per gli utenti simultanei.<br> Se hai bisogno di più, ti preghiamo di considerare l'aggiornamento della tua licenza attuale o l'acquisto di una licenza commerciale.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta l’amministratore per saperne di più.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.<br>Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta il team di vendita di %1 per i termini di aggiornamento personali.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Testo non trovato",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Sostituisci tutto",
|
||||
|
|
|
@ -219,7 +219,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador. <br> Por favor, contate o Departamento de Vendas para fazer cotação.",
|
||||
"SSE.Controllers.Main.textDone": "Concluído",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Carregando planilha",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "%1 Limitação de conexão",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido",
|
||||
"SSE.Controllers.Main.textOK": "OK",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Recurso pago",
|
||||
"SSE.Controllers.Main.textPassword": "Senha",
|
||||
|
@ -282,11 +282,11 @@
|
|||
"SSE.Controllers.Main.uploadImageTextText": "Carregando imagem...",
|
||||
"SSE.Controllers.Main.uploadImageTitleText": "Carregando imagem",
|
||||
"SSE.Controllers.Main.waitText": "Aguarde...",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "O número de conexões concomitantes ao Servidor de Documentos foi excedido e o documento será aberto apenas para exibição. <br> Por favor, contate seu administrador para mais informações.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Sua licença expirou.<br>Atualize sua licença e atualize a página.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "O número de usuários concomitantes foi excedido e o documento será aberto somente para exibição. <br> Por favor, contate seu administrador para mais informações.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Você está usando uma versão de código aberto do %1. A versão tem limitações para conexões simultâneas com servidor de documentos (20 conexões por vez).<br>Se você precisar de mais, considere a compra de uma licença comercial.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Esta versão de %1 editores tem limitações para usuários concomitantes. <br> Se você precisar de mais, por favor, considere comprar uma licença comercial.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com seu administrador para saber mais.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.<br>Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Texto não encontrado",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Substituir tudo",
|
||||
|
|
|
@ -221,7 +221,7 @@
|
|||
"SSE.Controllers.Main.textCustomLoader": "Обратите внимание, что по условиям лицензии у вас нет прав изменять экран, отображаемый при загрузке.<br>Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.",
|
||||
"SSE.Controllers.Main.textDone": "Готово",
|
||||
"SSE.Controllers.Main.textLoadingDocument": "Загрузка таблицы",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Ограничение по числу подключений %1",
|
||||
"SSE.Controllers.Main.textNoLicenseTitle": "Лицензионное ограничение",
|
||||
"SSE.Controllers.Main.textOK": "OK",
|
||||
"SSE.Controllers.Main.textPaidFeature": "Платная функция",
|
||||
"SSE.Controllers.Main.textPassword": "Пароль",
|
||||
|
@ -284,11 +284,11 @@
|
|||
"SSE.Controllers.Main.uploadImageTextText": "Загрузка рисунка...",
|
||||
"SSE.Controllers.Main.uploadImageTitleText": "Загрузка рисунка",
|
||||
"SSE.Controllers.Main.waitText": "Пожалуйста, подождите...",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Превышено допустимое число одновременных подключений к серверу документов, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"SSE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Превышено допустимое число одновременно работающих пользователей, и документ откроется только на просмотр.<br>Обратитесь к администратору за дополнительной информацией.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Эта версия редакторов %1 имеет некоторые ограничения по количеству одновременных подключений к серверу документов.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Эта версия редакторов %1 имеет некоторые ограничения по числу одновременно работающих пользователей.<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
|
||||
"SSE.Controllers.Main.warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"SSE.Controllers.Main.warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1.<br>Свяжитесь с администратором, чтобы узнать больше.",
|
||||
"SSE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"SSE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.<br>Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.",
|
||||
"SSE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
|
||||
"SSE.Controllers.Search.textNoTextFound": "Текст не найден",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Заменить все",
|
||||
|
|
Loading…
Reference in a new issue