Commit 795c1793 authored by Alexey Golubev's avatar Alexey Golubev

v4.4.2

parents a4d56ab0 9f6cbe65
...@@ -49,23 +49,24 @@ Common.Utils = _.extend(new(function() { ...@@ -49,23 +49,24 @@ Common.Utils = _.extend(new(function() {
return (is && (m = regex.exec(userAgent))) ? parseFloat(m[1]) : 0; return (is && (m = regex.exec(userAgent))) ? parseFloat(m[1]) : 0;
}, },
docMode = document.documentMode, docMode = document.documentMode,
isEdge = check(/edge/),
isOpera = check(/opera/), isOpera = check(/opera/),
isOpera10_5 = isOpera && check(/version\/10\.5/), isOpera10_5 = isOpera && check(/version\/10\.5/),
isChrome = check(/\bchrome\b/), isIE = !isOpera && (check(/msie/) || check(/trident/) || check(/edge/)),
isWebKit = check(/webkit/),
isSafari = !isChrome && check(/safari/),
isSafari2 = isSafari && check(/applewebkit\/4/), // unique to Safari 2
isSafari3 = isSafari && check(/version\/3/),
isSafari4 = isSafari && check(/version\/4/),
isSafari5_0 = isSafari && check(/version\/5\.0/),
isSafari5 = isSafari && check(/version\/5/),
isIE = !isOpera && (check(/msie/) || check(/trident/)),
isIE7 = isIE && ((check(/msie 7/) && docMode != 8 && docMode != 9 && docMode != 10) || docMode == 7), isIE7 = isIE && ((check(/msie 7/) && docMode != 8 && docMode != 9 && docMode != 10) || docMode == 7),
isIE8 = isIE && ((check(/msie 8/) && docMode != 7 && docMode != 9 && docMode != 10) || docMode == 8), isIE8 = isIE && ((check(/msie 8/) && docMode != 7 && docMode != 9 && docMode != 10) || docMode == 8),
isIE9 = isIE && ((check(/msie 9/) && docMode != 7 && docMode != 8 && docMode != 10) || docMode == 9), isIE9 = isIE && ((check(/msie 9/) && docMode != 7 && docMode != 8 && docMode != 10) || docMode == 9),
isIE10 = isIE && ((check(/msie 10/) && docMode != 7 && docMode != 8 && docMode != 9) || docMode == 10), isIE10 = isIE && ((check(/msie 10/) && docMode != 7 && docMode != 8 && docMode != 9) || docMode == 10),
isIE11 = isIE && ((check(/trident\/7\.0/) && docMode != 7 && docMode != 8 && docMode != 9 && docMode != 10) || docMode == 11), isIE11 = isIE && ((check(/trident\/7\.0/) && docMode != 7 && docMode != 8 && docMode != 9 && docMode != 10) || docMode == 11),
isIE6 = isIE && check(/msie 6/), isIE6 = isIE && check(/msie 6/),
isChrome = !isIE && check(/\bchrome\b/),
isWebKit = !isIE && check(/webkit/),
isSafari = !isIE && !isChrome && check(/safari/),
isSafari2 = isSafari && check(/applewebkit\/4/), // unique to Safari 2
isSafari3 = isSafari && check(/version\/3/),
isSafari4 = isSafari && check(/version\/4/),
isSafari5_0 = isSafari && check(/version\/5\.0/),
isSafari5 = isSafari && check(/version\/5/),
isGecko = !isWebKit && !isIE && check(/gecko/), // IE11 adds "like gecko" into the user agent string isGecko = !isWebKit && !isIE && check(/gecko/), // IE11 adds "like gecko" into the user agent string
isGecko3 = isGecko && check(/rv:1\.9/), isGecko3 = isGecko && check(/rv:1\.9/),
isGecko4 = isGecko && check(/rv:2\.0/), isGecko4 = isGecko && check(/rv:2\.0/),
......
...@@ -603,7 +603,7 @@ define([ ...@@ -603,7 +603,7 @@ define([
if (action) { if (action) {
this.setLongActionView(action) this.setLongActionView(action)
} else { } else {
if (id==Asc.c_oAscAsyncAction['Save'] || id==Asc.c_oAscAsyncAction['ForceSaveButton']) { if ((id==Asc.c_oAscAsyncAction['Save'] || id==Asc.c_oAscAsyncAction['ForceSaveButton']) && !this.appOptions.isOffline) {
if (this._state.fastCoauth && this._state.usersCount>1) { if (this._state.fastCoauth && this._state.usersCount>1) {
var me = this; var me = this;
me._state.timerSave = setTimeout(function () { me._state.timerSave = setTimeout(function () {
...@@ -642,8 +642,8 @@ define([ ...@@ -642,8 +642,8 @@ define([
case Asc.c_oAscAsyncAction['ForceSaveButton']: case Asc.c_oAscAsyncAction['ForceSaveButton']:
clearTimeout(this._state.timerSave); clearTimeout(this._state.timerSave);
force = true; force = true;
title = this.saveTitleText; title = (!this.appOptions.isOffline) ? this.saveTitleText : '';
text = this.saveTextText; text = (!this.appOptions.isOffline) ? this.saveTextText : '';
break; break;
case Asc.c_oAscAsyncAction['ForceSaveTimeout']: case Asc.c_oAscAsyncAction['ForceSaveTimeout']:
......
...@@ -52,7 +52,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem ...@@ -52,7 +52,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
DE.Views.ParagraphSettingsAdvanced = Common.Views.AdvancedSettingsWindow.extend(_.extend({ DE.Views.ParagraphSettingsAdvanced = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: { options: {
contentWidth: 325, contentWidth: 335,
height: 394, height: 394,
toggleGroup: 'paragraph-adv-settings-group', toggleGroup: 'paragraph-adv-settings-group',
storageName: 'de-para-settings-adv-category' storageName: 'de-para-settings-adv-category'
...@@ -1063,6 +1063,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem ...@@ -1063,6 +1063,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
}); });
if (rec) { if (rec) {
rec.set('tabAlign', align); rec.set('tabAlign', align);
this._tabListChanged = true;
} else { } else {
rec = new Common.UI.DataViewModel(); rec = new Common.UI.DataViewModel();
rec.set({ rec.set({
......
This diff is collapsed.
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
"Common.Views.Comments.textCancel": "Annuler", "Common.Views.Comments.textCancel": "Annuler",
"Common.Views.Comments.textClose": "Fermer", "Common.Views.Comments.textClose": "Fermer",
"Common.Views.Comments.textComments": "Commentaires", "Common.Views.Comments.textComments": "Commentaires",
"Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEdit": "Modifier",
"Common.Views.Comments.textEnterCommentHint": "Entrez votre commentaire ici", "Common.Views.Comments.textEnterCommentHint": "Entrez votre commentaire ici",
"Common.Views.Comments.textOpenAgain": "Ouvrir à nouveau", "Common.Views.Comments.textOpenAgain": "Ouvrir à nouveau",
"Common.Views.Comments.textReply": "Répondre", "Common.Views.Comments.textReply": "Répondre",
...@@ -291,6 +291,22 @@ ...@@ -291,6 +291,22 @@
"DE.Controllers.Main.txtRectangles": "Rectangles", "DE.Controllers.Main.txtRectangles": "Rectangles",
"DE.Controllers.Main.txtSeries": "Série", "DE.Controllers.Main.txtSeries": "Série",
"DE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans", "DE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
"DE.Controllers.Main.txtStyle_Normal": "Normal",
"DE.Controllers.Main.txtStyle_Quote": "Quote",
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
"DE.Controllers.Main.txtStyle_Title": "Title",
"DE.Controllers.Main.txtXAxis": "Axe X", "DE.Controllers.Main.txtXAxis": "Axe X",
"DE.Controllers.Main.txtYAxis": "Axe Y", "DE.Controllers.Main.txtYAxis": "Axe Y",
"DE.Controllers.Main.unknownErrorText": "Erreur inconnue.", "DE.Controllers.Main.unknownErrorText": "Erreur inconnue.",
...@@ -658,6 +674,7 @@ ...@@ -658,6 +674,7 @@
"DE.Views.ChartSettings.textSize": "Taille", "DE.Views.ChartSettings.textSize": "Taille",
"DE.Views.ChartSettings.textStock": "Boursier", "DE.Views.ChartSettings.textStock": "Boursier",
"DE.Views.ChartSettings.textStyle": "Style", "DE.Views.ChartSettings.textStyle": "Style",
"DE.Views.ChartSettings.textSurface": "Surface",
"DE.Views.ChartSettings.textUndock": "Détacher du panneau", "DE.Views.ChartSettings.textUndock": "Détacher du panneau",
"DE.Views.ChartSettings.textWidth": "Largeur", "DE.Views.ChartSettings.textWidth": "Largeur",
"DE.Views.ChartSettings.textWrap": "Style d'habillage", "DE.Views.ChartSettings.textWrap": "Style d'habillage",
...@@ -669,6 +686,12 @@ ...@@ -669,6 +686,12 @@
"DE.Views.ChartSettings.txtTight": "Rapproché", "DE.Views.ChartSettings.txtTight": "Rapproché",
"DE.Views.ChartSettings.txtTitle": "Graphique", "DE.Views.ChartSettings.txtTitle": "Graphique",
"DE.Views.ChartSettings.txtTopAndBottom": "Haut et bas", "DE.Views.ChartSettings.txtTopAndBottom": "Haut et bas",
"DE.Views.CustomColumnsDialog.cancelButtonText": "Cancel",
"DE.Views.CustomColumnsDialog.okButtonText": "Ok",
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
"DE.Views.CustomColumnsDialog.textTitle": "Columns",
"DE.Views.DocumentHolder.aboveText": "Au-dessus", "DE.Views.DocumentHolder.aboveText": "Au-dessus",
"DE.Views.DocumentHolder.addCommentText": "Ajouter un commentaire", "DE.Views.DocumentHolder.addCommentText": "Ajouter un commentaire",
"DE.Views.DocumentHolder.advancedFrameText": "Paramètres avancés du cadre", "DE.Views.DocumentHolder.advancedFrameText": "Paramètres avancés du cadre",
...@@ -1475,6 +1498,7 @@ ...@@ -1475,6 +1498,7 @@
"DE.Views.Toolbar.textBottom": "En bas: ", "DE.Views.Toolbar.textBottom": "En bas: ",
"DE.Views.Toolbar.textCharts": "Graphiques", "DE.Views.Toolbar.textCharts": "Graphiques",
"DE.Views.Toolbar.textColumn": "Colonne", "DE.Views.Toolbar.textColumn": "Colonne",
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns",
"DE.Views.Toolbar.textColumnsLeft": "A gauche", "DE.Views.Toolbar.textColumnsLeft": "A gauche",
"DE.Views.Toolbar.textColumnsOne": "Un", "DE.Views.Toolbar.textColumnsOne": "Un",
"DE.Views.Toolbar.textColumnsRight": "A droite", "DE.Views.Toolbar.textColumnsRight": "A droite",
...@@ -1528,6 +1552,7 @@ ...@@ -1528,6 +1552,7 @@
"DE.Views.Toolbar.textStyleMenuUpdate": "Mettre à jour selon la sélection", "DE.Views.Toolbar.textStyleMenuUpdate": "Mettre à jour selon la sélection",
"DE.Views.Toolbar.textSubscript": "Indice", "DE.Views.Toolbar.textSubscript": "Indice",
"DE.Views.Toolbar.textSuperscript": "Exposant", "DE.Views.Toolbar.textSuperscript": "Exposant",
"DE.Views.Toolbar.textSurface": "Surface",
"DE.Views.Toolbar.textTitleError": "Erreur", "DE.Views.Toolbar.textTitleError": "Erreur",
"DE.Views.Toolbar.textToCurrent": "À la position actuelle", "DE.Views.Toolbar.textToCurrent": "À la position actuelle",
"DE.Views.Toolbar.textTop": "En haut: ", "DE.Views.Toolbar.textTop": "En haut: ",
......
...@@ -1498,7 +1498,7 @@ ...@@ -1498,7 +1498,7 @@
"DE.Views.Toolbar.textBottom": "Нижнее: ", "DE.Views.Toolbar.textBottom": "Нижнее: ",
"DE.Views.Toolbar.textCharts": "Диаграммы", "DE.Views.Toolbar.textCharts": "Диаграммы",
"DE.Views.Toolbar.textColumn": "Гистограмма", "DE.Views.Toolbar.textColumn": "Гистограмма",
"DE.Views.Toolbar.textColumnsCustom": "Custom Columns", "DE.Views.Toolbar.textColumnsCustom": "Настраиваемые колонки",
"DE.Views.Toolbar.textColumnsLeft": "Слева", "DE.Views.Toolbar.textColumnsLeft": "Слева",
"DE.Views.Toolbar.textColumnsOne": "Одна", "DE.Views.Toolbar.textColumnsOne": "Одна",
"DE.Views.Toolbar.textColumnsRight": "Справа", "DE.Views.Toolbar.textColumnsRight": "Справа",
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -342,9 +342,9 @@ ...@@ -342,9 +342,9 @@
<td>Maintain the proportions of the selected object when resizing.</td> <td>Maintain the proportions of the selected object when resizing.</td>
</tr> </tr>
<tr> <tr>
<td>Movement by three-pixel increments</td> <td>Movement by one-pixel increments</td>
<td>Ctrl</td> <td>Ctrl</td>
<td>Hold down the Ctrl key and use the keybord arrows to move the selected object by three pixels at a time.</td> <td>Hold down the Ctrl key and use the keybord arrows to move the selected object by one pixel at a time.</td>
</tr> </tr>
</table> </table>
</div> </div>
......
...@@ -340,9 +340,9 @@ ...@@ -340,9 +340,9 @@
<td>Сохранять пропорции выбранного объекта при изменении размера.</td> <td>Сохранять пропорции выбранного объекта при изменении размера.</td>
</tr> </tr>
<tr> <tr>
<td>Перемещение с шагом в три пикселя</td> <td>Перемещение с шагом в один пиксель</td>
<td>Ctrl</td> <td>Ctrl</td>
<td>Удерживайте клавишу Ctrl и используйте стрелки на клавиатуре, чтобы перемещать выбранный объект на три пикселя за раз.</td> <td>Удерживайте клавишу Ctrl и используйте стрелки на клавиатуре, чтобы перемещать выбранный объект на один пиксель за раз.</td>
</tr> </tr>
</table> </table>
</div> </div>
......
...@@ -484,8 +484,6 @@ define([ ...@@ -484,8 +484,6 @@ define([
me.api.asc_setSpellCheck(false); // don't use spellcheck for mobile mode me.api.asc_setSpellCheck(false); // don't use spellcheck for mobile mode
Common.localStorage.setItem("de-settings-showsnaplines", me.api.get_ShowSnapLines() ? 1 : 0);
me.api.asc_registerCallback('asc_onStartAction', _.bind(me.onLongActionBegin, me)); me.api.asc_registerCallback('asc_onStartAction', _.bind(me.onLongActionBegin, me));
me.api.asc_registerCallback('asc_onEndAction', _.bind(me.onLongActionEnd, me)); me.api.asc_registerCallback('asc_onEndAction', _.bind(me.onLongActionEnd, me));
me.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(me.onCoAuthoringDisconnect, me)); me.api.asc_registerCallback('asc_onCoAuthoringDisconnect', _.bind(me.onCoAuthoringDisconnect, me));
......
This diff is collapsed.
...@@ -120,6 +120,22 @@ ...@@ -120,6 +120,22 @@
"DE.Controllers.Main.txtDiagramTitle": "Diagrammtitel", "DE.Controllers.Main.txtDiagramTitle": "Diagrammtitel",
"DE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus einschalten...", "DE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus einschalten...",
"DE.Controllers.Main.txtSeries": "Reihen", "DE.Controllers.Main.txtSeries": "Reihen",
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intensives Zitat",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Listenabsatz",
"DE.Controllers.Main.txtStyle_No_Spacing": "Kein Abstand",
"DE.Controllers.Main.txtStyle_Normal": "Normal",
"DE.Controllers.Main.txtStyle_Quote": "Zitat",
"DE.Controllers.Main.txtStyle_Subtitle": "Untertitel",
"DE.Controllers.Main.txtStyle_Title": "Titel",
"DE.Controllers.Main.txtXAxis": "x-Achse", "DE.Controllers.Main.txtXAxis": "x-Achse",
"DE.Controllers.Main.txtYAxis": "y-Achse", "DE.Controllers.Main.txtYAxis": "y-Achse",
"DE.Controllers.Main.unknownErrorText": "Unbekannter Fehler.", "DE.Controllers.Main.unknownErrorText": "Unbekannter Fehler.",
...@@ -348,6 +364,7 @@ ...@@ -348,6 +364,7 @@
"DE.Views.Settings.textPages": "Seiten", "DE.Views.Settings.textPages": "Seiten",
"DE.Views.Settings.textParagraphs": "Absätze", "DE.Views.Settings.textParagraphs": "Absätze",
"DE.Views.Settings.textPortrait": "Hochformat", "DE.Views.Settings.textPortrait": "Hochformat",
"DE.Views.Settings.textPoweredBy": "Betrieben von",
"DE.Views.Settings.textReader": "Lesemodus", "DE.Views.Settings.textReader": "Lesemodus",
"DE.Views.Settings.textSettings": "Einstellungen", "DE.Views.Settings.textSettings": "Einstellungen",
"DE.Views.Settings.textSpaces": "Abstände", "DE.Views.Settings.textSpaces": "Abstände",
......
...@@ -120,6 +120,22 @@ ...@@ -120,6 +120,22 @@
"DE.Controllers.Main.txtDiagramTitle": "Chart Title", "DE.Controllers.Main.txtDiagramTitle": "Chart Title",
"DE.Controllers.Main.txtEditingMode": "Set editing mode...", "DE.Controllers.Main.txtEditingMode": "Set editing mode...",
"DE.Controllers.Main.txtSeries": "Series", "DE.Controllers.Main.txtSeries": "Series",
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
"DE.Controllers.Main.txtStyle_Normal": "Normal",
"DE.Controllers.Main.txtStyle_Quote": "Quote",
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
"DE.Controllers.Main.txtStyle_Title": "Title",
"DE.Controllers.Main.txtXAxis": "X Axis", "DE.Controllers.Main.txtXAxis": "X Axis",
"DE.Controllers.Main.txtYAxis": "Y Axis", "DE.Controllers.Main.txtYAxis": "Y Axis",
"DE.Controllers.Main.unknownErrorText": "Unknown error.", "DE.Controllers.Main.unknownErrorText": "Unknown error.",
...@@ -132,22 +148,6 @@ ...@@ -132,22 +148,6 @@
"DE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.", "DE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
"DE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.", "DE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.",
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
"DE.Controllers.Main.txtStyle_Normal": "Normal",
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
"DE.Controllers.Main.txtStyle_Title": "Title",
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
"DE.Controllers.Main.txtStyle_Quote": "Quote",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
"DE.Controllers.Search.textNoTextFound": "Text not Found", "DE.Controllers.Search.textNoTextFound": "Text not Found",
"DE.Controllers.Search.textReplaceAll": "Replace All", "DE.Controllers.Search.textReplaceAll": "Replace All",
"DE.Controllers.Settings.notcriticalErrorTitle": "Warning", "DE.Controllers.Settings.notcriticalErrorTitle": "Warning",
......
This diff is collapsed.
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
"DE.Controllers.Main.advTxtOptions": "Choisir les options TXT", "DE.Controllers.Main.advTxtOptions": "Choisir les options TXT",
"DE.Controllers.Main.applyChangesTextText": "Chargement des données...", "DE.Controllers.Main.applyChangesTextText": "Chargement des données...",
"DE.Controllers.Main.applyChangesTitleText": "Chargement des données", "DE.Controllers.Main.applyChangesTitleText": "Chargement des données",
"DE.Controllers.Main.convertationTimeoutText": "Expiration du délai de conversion.", "DE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.",
"DE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.", "DE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.",
"DE.Controllers.Main.criticalErrorTitle": "Erreur", "DE.Controllers.Main.criticalErrorTitle": "Erreur",
"DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor", "DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor",
...@@ -120,6 +120,22 @@ ...@@ -120,6 +120,22 @@
"DE.Controllers.Main.txtDiagramTitle": "Titre du graphique", "DE.Controllers.Main.txtDiagramTitle": "Titre du graphique",
"DE.Controllers.Main.txtEditingMode": "Définition du mode d'édition...", "DE.Controllers.Main.txtEditingMode": "Définition du mode d'édition...",
"DE.Controllers.Main.txtSeries": "Séries", "DE.Controllers.Main.txtSeries": "Séries",
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
"DE.Controllers.Main.txtStyle_Normal": "Normal",
"DE.Controllers.Main.txtStyle_Quote": "Quote",
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
"DE.Controllers.Main.txtStyle_Title": "Title",
"DE.Controllers.Main.txtXAxis": "Axe X", "DE.Controllers.Main.txtXAxis": "Axe X",
"DE.Controllers.Main.txtYAxis": "Axe Y", "DE.Controllers.Main.txtYAxis": "Axe Y",
"DE.Controllers.Main.unknownErrorText": "Erreur inconnue.", "DE.Controllers.Main.unknownErrorText": "Erreur inconnue.",
...@@ -348,6 +364,7 @@ ...@@ -348,6 +364,7 @@
"DE.Views.Settings.textPages": "Pages", "DE.Views.Settings.textPages": "Pages",
"DE.Views.Settings.textParagraphs": "Paragraphes", "DE.Views.Settings.textParagraphs": "Paragraphes",
"DE.Views.Settings.textPortrait": "Portrait", "DE.Views.Settings.textPortrait": "Portrait",
"DE.Views.Settings.textPoweredBy": "Powered by",
"DE.Views.Settings.textReader": "Mode de lecture", "DE.Views.Settings.textReader": "Mode de lecture",
"DE.Views.Settings.textSettings": "Paramètres", "DE.Views.Settings.textSettings": "Paramètres",
"DE.Views.Settings.textSpaces": "Espaces", "DE.Views.Settings.textSpaces": "Espaces",
......
...@@ -120,6 +120,22 @@ ...@@ -120,6 +120,22 @@
"DE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы", "DE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы",
"DE.Controllers.Main.txtEditingMode": "Установка режима редактирования...", "DE.Controllers.Main.txtEditingMode": "Установка режима редактирования...",
"DE.Controllers.Main.txtSeries": "Ряд", "DE.Controllers.Main.txtSeries": "Ряд",
"DE.Controllers.Main.txtStyle_Heading_1": "Заголовок 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Заголовок 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Заголовок 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Заголовок 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Заголовок 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Заголовок 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Заголовок 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Заголовок 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Заголовок 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Выделенная цитата",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Абзац списка",
"DE.Controllers.Main.txtStyle_No_Spacing": "Без интервала",
"DE.Controllers.Main.txtStyle_Normal": "Обычный",
"DE.Controllers.Main.txtStyle_Quote": "Цитата",
"DE.Controllers.Main.txtStyle_Subtitle": "Подзаголовок",
"DE.Controllers.Main.txtStyle_Title": "Название",
"DE.Controllers.Main.txtXAxis": "Ось X", "DE.Controllers.Main.txtXAxis": "Ось X",
"DE.Controllers.Main.txtYAxis": "Ось Y", "DE.Controllers.Main.txtYAxis": "Ось Y",
"DE.Controllers.Main.unknownErrorText": "Неизвестная ошибка.", "DE.Controllers.Main.unknownErrorText": "Неизвестная ошибка.",
...@@ -132,22 +148,6 @@ ...@@ -132,22 +148,6 @@
"DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.", "DE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
"DE.Controllers.Main.warnNoLicense": "Вы используете open source версию ONLYOFFICE. Эта версия имеет ограничения по количеству одновременных подключений к серверу документов (20 подключений одновременно).<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.", "DE.Controllers.Main.warnNoLicense": "Вы используете open source версию ONLYOFFICE. Эта версия имеет ограничения по количеству одновременных подключений к серверу документов (20 подключений одновременно).<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.", "DE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"DE.Controllers.Main.txtStyle_Normal": "Обычный",
"DE.Controllers.Main.txtStyle_No_Spacing": "Без интервала",
"DE.Controllers.Main.txtStyle_Heading_1": "Заголовок 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Заголовок 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Заголовок 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Заголовок 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Заголовок 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Заголовок 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Заголовок 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Заголовок 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Заголовок 9",
"DE.Controllers.Main.txtStyle_Title": "Название",
"DE.Controllers.Main.txtStyle_Subtitle": "Подзаголовок",
"DE.Controllers.Main.txtStyle_Quote": "Цитата",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Выделенная цитата",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Абзац списка",
"DE.Controllers.Search.textNoTextFound": "Текст не найден", "DE.Controllers.Search.textNoTextFound": "Текст не найден",
"DE.Controllers.Search.textReplaceAll": "Заменить все", "DE.Controllers.Search.textReplaceAll": "Заменить все",
"DE.Controllers.Settings.notcriticalErrorTitle": "Внимание", "DE.Controllers.Settings.notcriticalErrorTitle": "Внимание",
...@@ -364,6 +364,7 @@ ...@@ -364,6 +364,7 @@
"DE.Views.Settings.textPages": "Страницы", "DE.Views.Settings.textPages": "Страницы",
"DE.Views.Settings.textParagraphs": "Абзацы", "DE.Views.Settings.textParagraphs": "Абзацы",
"DE.Views.Settings.textPortrait": "Книжная", "DE.Views.Settings.textPortrait": "Книжная",
"DE.Views.Settings.textPoweredBy": "Powered by",
"DE.Views.Settings.textReader": "Режим чтения", "DE.Views.Settings.textReader": "Режим чтения",
"DE.Views.Settings.textSettings": "Настройки", "DE.Views.Settings.textSettings": "Настройки",
"DE.Views.Settings.textSpaces": "Пробелы", "DE.Views.Settings.textSpaces": "Пробелы",
......
This diff is collapsed.
...@@ -120,6 +120,22 @@ ...@@ -120,6 +120,22 @@
"DE.Controllers.Main.txtDiagramTitle": "图表标题", "DE.Controllers.Main.txtDiagramTitle": "图表标题",
"DE.Controllers.Main.txtEditingMode": "设置编辑模式..", "DE.Controllers.Main.txtEditingMode": "设置编辑模式..",
"DE.Controllers.Main.txtSeries": "系列", "DE.Controllers.Main.txtSeries": "系列",
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote",
"DE.Controllers.Main.txtStyle_List_Paragraph": "List Paragraph",
"DE.Controllers.Main.txtStyle_No_Spacing": "No Spacing",
"DE.Controllers.Main.txtStyle_Normal": "Normal",
"DE.Controllers.Main.txtStyle_Quote": "Quote",
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
"DE.Controllers.Main.txtStyle_Title": "Title",
"DE.Controllers.Main.txtXAxis": "X轴", "DE.Controllers.Main.txtXAxis": "X轴",
"DE.Controllers.Main.txtYAxis": "Y轴", "DE.Controllers.Main.txtYAxis": "Y轴",
"DE.Controllers.Main.unknownErrorText": "示知错误", "DE.Controllers.Main.unknownErrorText": "示知错误",
...@@ -348,6 +364,7 @@ ...@@ -348,6 +364,7 @@
"DE.Views.Settings.textPages": "页面", "DE.Views.Settings.textPages": "页面",
"DE.Views.Settings.textParagraphs": "段落", "DE.Views.Settings.textParagraphs": "段落",
"DE.Views.Settings.textPortrait": "肖像", "DE.Views.Settings.textPortrait": "肖像",
"DE.Views.Settings.textPoweredBy": "Powered by",
"DE.Views.Settings.textReader": "阅读模式", "DE.Views.Settings.textReader": "阅读模式",
"DE.Views.Settings.textSettings": "设置", "DE.Views.Settings.textSettings": "设置",
"DE.Views.Settings.textSpaces": "间隔", "DE.Views.Settings.textSpaces": "间隔",
......
...@@ -421,7 +421,7 @@ define([ ...@@ -421,7 +421,7 @@ define([
if (action) { if (action) {
this.setLongActionView(action) this.setLongActionView(action)
} else { } else {
if (id==Asc.c_oAscAsyncAction['Save'] || id==Asc.c_oAscAsyncAction['ForceSaveButton']) { if ((id==Asc.c_oAscAsyncAction['Save'] || id==Asc.c_oAscAsyncAction['ForceSaveButton']) && !this.appOptions.isOffline) {
if (this._state.fastCoauth && this._state.usersCount>1) { if (this._state.fastCoauth && this._state.usersCount>1) {
var me = this; var me = this;
me._state.timerSave = setTimeout(function () { me._state.timerSave = setTimeout(function () {
...@@ -458,8 +458,8 @@ define([ ...@@ -458,8 +458,8 @@ define([
case Asc.c_oAscAsyncAction['ForceSaveButton']: case Asc.c_oAscAsyncAction['ForceSaveButton']:
clearTimeout(this._state.timerSave); clearTimeout(this._state.timerSave);
force = true; force = true;
title = this.saveTitleText; title = (!this.appOptions.isOffline) ? this.saveTitleText : '';
text = this.saveTextText; text = (!this.appOptions.isOffline) ? this.saveTextText : '';
break; break;
case Asc.c_oAscAsyncAction['ForceSaveTimeout']: case Asc.c_oAscAsyncAction['ForceSaveTimeout']:
......
...@@ -507,6 +507,7 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced ...@@ -507,6 +507,7 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced
}); });
if (rec) { if (rec) {
rec.set('tabAlign', align); rec.set('tabAlign', align);
this._tabListChanged = true;
} else { } else {
rec = new Common.UI.DataViewModel(); rec = new Common.UI.DataViewModel();
rec.set({ rec.set({
......
...@@ -496,9 +496,10 @@ define([ ...@@ -496,9 +496,10 @@ define([
this._state.no_paragraph = true; this._state.no_paragraph = true;
var i = -1; var i = -1;
while (++i < selectedObjects.length) { while (++i < selectedObjects.length) {
if (selectedObjects[i].get_ObjectType() == Asc.c_oAscTypeSelectElement.Paragraph) { var type = selectedObjects[i].get_ObjectType();
if (type == Asc.c_oAscTypeSelectElement.Paragraph || type == Asc.c_oAscTypeSelectElement.Shape || type == Asc.c_oAscTypeSelectElement.Chart || type == Asc.c_oAscTypeSelectElement.Table) {
this._state.no_paragraph = selectedObjects[i].get_ObjectValue().get_Locked(); this._state.no_paragraph = selectedObjects[i].get_ObjectValue().get_Locked();
break; if (this._state.no_paragraph) break; // break if one of the objects is locked
} }
} }
this._state.no_paragraph = this._state.no_paragraph || this.langMenu.items.length<1; this._state.no_paragraph = this._state.no_paragraph || this.langMenu.items.length<1;
......
This diff is collapsed.
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
"Common.Views.Comments.textCancel": "Annuler", "Common.Views.Comments.textCancel": "Annuler",
"Common.Views.Comments.textClose": "Fermer", "Common.Views.Comments.textClose": "Fermer",
"Common.Views.Comments.textComments": "Commentaires", "Common.Views.Comments.textComments": "Commentaires",
"Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEdit": "Modifier",
"Common.Views.Comments.textEnterCommentHint": "Entrez votre commentaire ici", "Common.Views.Comments.textEnterCommentHint": "Entrez votre commentaire ici",
"Common.Views.Comments.textOpenAgain": "Ouvrir à nouveau", "Common.Views.Comments.textOpenAgain": "Ouvrir à nouveau",
"Common.Views.Comments.textReply": "Répondre", "Common.Views.Comments.textReply": "Répondre",
...@@ -192,12 +192,20 @@ ...@@ -192,12 +192,20 @@
"PE.Controllers.Main.txtButtons": "Boutons", "PE.Controllers.Main.txtButtons": "Boutons",
"PE.Controllers.Main.txtCallouts": "Légendes", "PE.Controllers.Main.txtCallouts": "Légendes",
"PE.Controllers.Main.txtCharts": "Graphiques", "PE.Controllers.Main.txtCharts": "Graphiques",
"PE.Controllers.Main.txtClipArt": "Clip Art",
"PE.Controllers.Main.txtDateTime": "Date and time",
"PE.Controllers.Main.txtDiagram": "SmartArt",
"PE.Controllers.Main.txtDiagramTitle": "Titre du graphique", "PE.Controllers.Main.txtDiagramTitle": "Titre du graphique",
"PE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", "PE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...",
"PE.Controllers.Main.txtFiguredArrows": "Flèches figurées", "PE.Controllers.Main.txtFiguredArrows": "Flèches figurées",
"PE.Controllers.Main.txtFooter": "Footer",
"PE.Controllers.Main.txtHeader": "Header",
"PE.Controllers.Main.txtImage": "Image",
"PE.Controllers.Main.txtLines": "Lignes", "PE.Controllers.Main.txtLines": "Lignes",
"PE.Controllers.Main.txtMath": "Maths", "PE.Controllers.Main.txtMath": "Maths",
"PE.Controllers.Main.txtMedia": "Media",
"PE.Controllers.Main.txtNeedSynchronize": "Vous avez des mises à jour", "PE.Controllers.Main.txtNeedSynchronize": "Vous avez des mises à jour",
"PE.Controllers.Main.txtPicture": "Picture",
"PE.Controllers.Main.txtRectangles": "Rectangles", "PE.Controllers.Main.txtRectangles": "Rectangles",
"PE.Controllers.Main.txtSeries": "Série", "PE.Controllers.Main.txtSeries": "Série",
"PE.Controllers.Main.txtSldLtTBlank": "Vide", "PE.Controllers.Main.txtSldLtTBlank": "Vide",
...@@ -236,6 +244,10 @@ ...@@ -236,6 +244,10 @@
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Titre vertical et texte", "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Titre vertical et texte",
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titre vertical et texte sur graphique", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titre vertical et texte sur graphique",
"PE.Controllers.Main.txtSldLtTVertTx": "Texte vertical", "PE.Controllers.Main.txtSldLtTVertTx": "Texte vertical",
"PE.Controllers.Main.txtSlideNumber": "Slide number",
"PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle",
"PE.Controllers.Main.txtSlideText": "Slide text",
"PE.Controllers.Main.txtSlideTitle": "Slide title",
"PE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans", "PE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
"PE.Controllers.Main.txtXAxis": "Axe X", "PE.Controllers.Main.txtXAxis": "Axe X",
"PE.Controllers.Main.txtYAxis": "Axe Y", "PE.Controllers.Main.txtYAxis": "Axe Y",
...@@ -598,6 +610,7 @@ ...@@ -598,6 +610,7 @@
"PE.Views.ChartSettings.textSize": "Taille", "PE.Views.ChartSettings.textSize": "Taille",
"PE.Views.ChartSettings.textStock": "Boursier", "PE.Views.ChartSettings.textStock": "Boursier",
"PE.Views.ChartSettings.textStyle": "Style", "PE.Views.ChartSettings.textStyle": "Style",
"PE.Views.ChartSettings.textSurface": "Surface",
"PE.Views.ChartSettings.textWidth": "Largeur", "PE.Views.ChartSettings.textWidth": "Largeur",
"PE.Views.ChartSettingsAdvanced.cancelButtonText": "Annuler", "PE.Views.ChartSettingsAdvanced.cancelButtonText": "Annuler",
"PE.Views.ChartSettingsAdvanced.okButtonText": "OK", "PE.Views.ChartSettingsAdvanced.okButtonText": "OK",
...@@ -1270,6 +1283,7 @@ ...@@ -1270,6 +1283,7 @@
"PE.Views.Toolbar.textStrikeout": "Barré", "PE.Views.Toolbar.textStrikeout": "Barré",
"PE.Views.Toolbar.textSubscript": "Indice", "PE.Views.Toolbar.textSubscript": "Indice",
"PE.Views.Toolbar.textSuperscript": "Exposant", "PE.Views.Toolbar.textSuperscript": "Exposant",
"PE.Views.Toolbar.textSurface": "Surface",
"PE.Views.Toolbar.textTitleError": "Erreur", "PE.Views.Toolbar.textTitleError": "Erreur",
"PE.Views.Toolbar.textUnderline": "Souligné", "PE.Views.Toolbar.textUnderline": "Souligné",
"PE.Views.Toolbar.textZoom": "Zoom", "PE.Views.Toolbar.textZoom": "Zoom",
......
This diff is collapsed.
...@@ -456,8 +456,6 @@ define([ ...@@ -456,8 +456,6 @@ define([
var zf = (value!==null) ? parseInt(value) : (me.appOptions.customization && me.appOptions.customization.zoom ? parseInt(me.appOptions.customization.zoom) : -1); var zf = (value!==null) ? parseInt(value) : (me.appOptions.customization && me.appOptions.customization.zoom ? parseInt(me.appOptions.customization.zoom) : -1);
(zf == -1) ? me.api.zoomFitToPage() : ((zf == -2) ? me.api.zoomFitToWidth() : me.api.zoom(zf>0 ? zf : 100)); (zf == -1) ? me.api.zoomFitToPage() : ((zf == -2) ? me.api.zoomFitToWidth() : me.api.zoom(zf>0 ? zf : 100));
Common.localStorage.setItem("pe-settings-showsnaplines", me.api.get_ShowSnapLines() ? 1 : 0);
me.api.asc_setSpellCheck(false); // don't use spellcheck for mobile mode me.api.asc_setSpellCheck(false); // don't use spellcheck for mobile mode
me.api.asc_registerCallback('asc_onStartAction', _.bind(me.onLongActionBegin, me)); me.api.asc_registerCallback('asc_onStartAction', _.bind(me.onLongActionBegin, me));
...@@ -480,8 +478,6 @@ define([ ...@@ -480,8 +478,6 @@ define([
me.api.asc_SetFastCollaborative(me._state.fastCoauth); me.api.asc_SetFastCollaborative(me._state.fastCoauth);
/** coauthoring end **/ /** coauthoring end **/
Common.localStorage.setItem("pe-settings-showsnaplines", me.api.get_ShowSnapLines() ? 1 : 0);
if (me.appOptions.isEdit) { if (me.appOptions.isEdit) {
value = me._state.fastCoauth; // Common.localStorage.getItem("de-settings-autosave"); value = me._state.fastCoauth; // Common.localStorage.getItem("de-settings-autosave");
value = (!me._state.fastCoauth && value!==null) ? parseInt(value) : (me.appOptions.canCoAuthoring ? 1 : 0); value = (!me._state.fastCoauth && value!==null) ? parseInt(value) : (me.appOptions.canCoAuthoring ? 1 : 0);
......
This diff is collapsed.
...@@ -136,12 +136,20 @@ ...@@ -136,12 +136,20 @@
"PE.Controllers.Main.txtButtons": "Buttons", "PE.Controllers.Main.txtButtons": "Buttons",
"PE.Controllers.Main.txtCallouts": "Legenden", "PE.Controllers.Main.txtCallouts": "Legenden",
"PE.Controllers.Main.txtCharts": "Diagramme", "PE.Controllers.Main.txtCharts": "Diagramme",
"PE.Controllers.Main.txtClipArt": "ClipArt",
"PE.Controllers.Main.txtDateTime": "Datum und Zeit",
"PE.Controllers.Main.txtDiagram": "SmartArt",
"PE.Controllers.Main.txtDiagramTitle": "Diagrammtitel", "PE.Controllers.Main.txtDiagramTitle": "Diagrammtitel",
"PE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus einschalten...", "PE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus einschalten...",
"PE.Controllers.Main.txtFiguredArrows": "Geformte Pfeile", "PE.Controllers.Main.txtFiguredArrows": "Geformte Pfeile",
"PE.Controllers.Main.txtFooter": "Fußzeile",
"PE.Controllers.Main.txtHeader": "Kopfzeile",
"PE.Controllers.Main.txtImage": "Bild",
"PE.Controllers.Main.txtLines": "Linien", "PE.Controllers.Main.txtLines": "Linien",
"PE.Controllers.Main.txtMath": "Mathematik", "PE.Controllers.Main.txtMath": "Mathematik",
"PE.Controllers.Main.txtMedia": "Medien",
"PE.Controllers.Main.txtNeedSynchronize": "Änderungen wurden vorgenommen", "PE.Controllers.Main.txtNeedSynchronize": "Änderungen wurden vorgenommen",
"PE.Controllers.Main.txtPicture": "Bild",
"PE.Controllers.Main.txtRectangles": "Rechtecke", "PE.Controllers.Main.txtRectangles": "Rechtecke",
"PE.Controllers.Main.txtSeries": "Reihen", "PE.Controllers.Main.txtSeries": "Reihen",
"PE.Controllers.Main.txtSldLtTBlank": "Leer", "PE.Controllers.Main.txtSldLtTBlank": "Leer",
...@@ -180,6 +188,10 @@ ...@@ -180,6 +188,10 @@
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikaler Titel und Text", "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikaler Titel und Text",
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikaler Titel und Text über Diagramm", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikaler Titel und Text über Diagramm",
"PE.Controllers.Main.txtSldLtTVertTx": "Vertikaler Text", "PE.Controllers.Main.txtSldLtTVertTx": "Vertikaler Text",
"PE.Controllers.Main.txtSlideNumber": "Foliennummer",
"PE.Controllers.Main.txtSlideSubtitle": "Folienuntertitel",
"PE.Controllers.Main.txtSlideText": "Folientext",
"PE.Controllers.Main.txtSlideTitle": "Folientitel",
"PE.Controllers.Main.txtStarsRibbons": "Sterne & Bänder", "PE.Controllers.Main.txtStarsRibbons": "Sterne & Bänder",
"PE.Controllers.Main.txtXAxis": "x-Achse", "PE.Controllers.Main.txtXAxis": "x-Achse",
"PE.Controllers.Main.txtYAxis": "y-Achse", "PE.Controllers.Main.txtYAxis": "y-Achse",
...@@ -420,6 +432,7 @@ ...@@ -420,6 +432,7 @@
"PE.Views.Settings.textFind": "Suchen", "PE.Views.Settings.textFind": "Suchen",
"PE.Views.Settings.textHelp": "Hilfe", "PE.Views.Settings.textHelp": "Hilfe",
"PE.Views.Settings.textLoading": "Ladevorgang...", "PE.Views.Settings.textLoading": "Ladevorgang...",
"PE.Views.Settings.textPoweredBy": "Betrieben von",
"PE.Views.Settings.textPresentInfo": "Päsentation Infos", "PE.Views.Settings.textPresentInfo": "Päsentation Infos",
"PE.Views.Settings.textPresentSetup": "Präsentation-Einstellungen", "PE.Views.Settings.textPresentSetup": "Präsentation-Einstellungen",
"PE.Views.Settings.textPresentTitle": "Titel der Präsentation", "PE.Views.Settings.textPresentTitle": "Titel der Präsentation",
......
...@@ -136,12 +136,20 @@ ...@@ -136,12 +136,20 @@
"PE.Controllers.Main.txtButtons": "Buttons", "PE.Controllers.Main.txtButtons": "Buttons",
"PE.Controllers.Main.txtCallouts": "Callouts", "PE.Controllers.Main.txtCallouts": "Callouts",
"PE.Controllers.Main.txtCharts": "Charts", "PE.Controllers.Main.txtCharts": "Charts",
"PE.Controllers.Main.txtClipArt": "Clip Art",
"PE.Controllers.Main.txtDateTime": "Date and time",
"PE.Controllers.Main.txtDiagram": "SmartArt",
"PE.Controllers.Main.txtDiagramTitle": "Chart Title", "PE.Controllers.Main.txtDiagramTitle": "Chart Title",
"PE.Controllers.Main.txtEditingMode": "Set editing mode...", "PE.Controllers.Main.txtEditingMode": "Set editing mode...",
"PE.Controllers.Main.txtFiguredArrows": "Figured Arrows", "PE.Controllers.Main.txtFiguredArrows": "Figured Arrows",
"PE.Controllers.Main.txtFooter": "Footer",
"PE.Controllers.Main.txtHeader": "Header",
"PE.Controllers.Main.txtImage": "Image",
"PE.Controllers.Main.txtLines": "Lines", "PE.Controllers.Main.txtLines": "Lines",
"PE.Controllers.Main.txtMath": "Math", "PE.Controllers.Main.txtMath": "Math",
"PE.Controllers.Main.txtMedia": "Media",
"PE.Controllers.Main.txtNeedSynchronize": "You have updates", "PE.Controllers.Main.txtNeedSynchronize": "You have updates",
"PE.Controllers.Main.txtPicture": "Picture",
"PE.Controllers.Main.txtRectangles": "Rectangles", "PE.Controllers.Main.txtRectangles": "Rectangles",
"PE.Controllers.Main.txtSeries": "Series", "PE.Controllers.Main.txtSeries": "Series",
"PE.Controllers.Main.txtSldLtTBlank": "Blank", "PE.Controllers.Main.txtSldLtTBlank": "Blank",
...@@ -180,6 +188,10 @@ ...@@ -180,6 +188,10 @@
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertical Title and Text", "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertical Title and Text",
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertical Title and Text Over Chart", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertical Title and Text Over Chart",
"PE.Controllers.Main.txtSldLtTVertTx": "Vertical Text", "PE.Controllers.Main.txtSldLtTVertTx": "Vertical Text",
"PE.Controllers.Main.txtSlideNumber": "Slide number",
"PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle",
"PE.Controllers.Main.txtSlideText": "Slide text",
"PE.Controllers.Main.txtSlideTitle": "Slide title",
"PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", "PE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons",
"PE.Controllers.Main.txtXAxis": "X Axis", "PE.Controllers.Main.txtXAxis": "X Axis",
"PE.Controllers.Main.txtYAxis": "Y Axis", "PE.Controllers.Main.txtYAxis": "Y Axis",
...@@ -193,18 +205,6 @@ ...@@ -193,18 +205,6 @@
"PE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.", "PE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
"PE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.", "PE.Controllers.Main.warnNoLicense": "You are using an open source version of ONLYOFFICE. The version has limitations for concurrent connections to the document server (20 connections at a time).<br>If you need more please consider purchasing a commercial license.",
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
"PE.Controllers.Main.txtSlideText": "Slide text",
"PE.Controllers.Main.txtClipArt": "ClipArt",
"PE.Controllers.Main.txtDiagram": "SmartArt",
"PE.Controllers.Main.txtDateTime": "Date and time",
"PE.Controllers.Main.txtFooter": "Footer",
"PE.Controllers.Main.txtHeader": "Header",
"PE.Controllers.Main.txtMedia": "Media",
"PE.Controllers.Main.txtPicture": "Picture",
"PE.Controllers.Main.txtImage": "Image",
"PE.Controllers.Main.txtSlideNumber": "Slide number",
"PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle",
"PE.Controllers.Main.txtSlideTitle": "Slide title",
"PE.Controllers.Search.textNoTextFound": "Text not Found", "PE.Controllers.Search.textNoTextFound": "Text not Found",
"PE.Controllers.Settings.notcriticalErrorTitle": "Warning", "PE.Controllers.Settings.notcriticalErrorTitle": "Warning",
"PE.Controllers.Settings.txtLoading": "Loading...", "PE.Controllers.Settings.txtLoading": "Loading...",
......
This diff is collapsed.
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
"PE.Controllers.Main.advDRMPassword": " Mot de passe", "PE.Controllers.Main.advDRMPassword": " Mot de passe",
"PE.Controllers.Main.applyChangesTextText": "Chargement des données en cours...", "PE.Controllers.Main.applyChangesTextText": "Chargement des données en cours...",
"PE.Controllers.Main.applyChangesTitleText": "Chargement des données", "PE.Controllers.Main.applyChangesTitleText": "Chargement des données",
"PE.Controllers.Main.convertationTimeoutText": "Expiration du délai de conversion.", "PE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.",
"PE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.", "PE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.",
"PE.Controllers.Main.criticalErrorTitle": "Erreur", "PE.Controllers.Main.criticalErrorTitle": "Erreur",
"PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor", "PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Presentation Editor",
...@@ -136,12 +136,20 @@ ...@@ -136,12 +136,20 @@
"PE.Controllers.Main.txtButtons": "Boutons", "PE.Controllers.Main.txtButtons": "Boutons",
"PE.Controllers.Main.txtCallouts": "Légendes", "PE.Controllers.Main.txtCallouts": "Légendes",
"PE.Controllers.Main.txtCharts": "Graphiques", "PE.Controllers.Main.txtCharts": "Graphiques",
"PE.Controllers.Main.txtClipArt": "Clip Art",
"PE.Controllers.Main.txtDateTime": "Date and time",
"PE.Controllers.Main.txtDiagram": "SmartArt",
"PE.Controllers.Main.txtDiagramTitle": "Titre du graphique", "PE.Controllers.Main.txtDiagramTitle": "Titre du graphique",
"PE.Controllers.Main.txtEditingMode": "Définition du mode d'édition...", "PE.Controllers.Main.txtEditingMode": "Définition du mode d'édition...",
"PE.Controllers.Main.txtFiguredArrows": "Flèches figurées", "PE.Controllers.Main.txtFiguredArrows": "Flèches figurées",
"PE.Controllers.Main.txtFooter": "Footer",
"PE.Controllers.Main.txtHeader": "Header",
"PE.Controllers.Main.txtImage": "Image",
"PE.Controllers.Main.txtLines": "Lignes", "PE.Controllers.Main.txtLines": "Lignes",
"PE.Controllers.Main.txtMath": "Maths", "PE.Controllers.Main.txtMath": "Maths",
"PE.Controllers.Main.txtMedia": "Media",
"PE.Controllers.Main.txtNeedSynchronize": "Vous avez des mises à jour", "PE.Controllers.Main.txtNeedSynchronize": "Vous avez des mises à jour",
"PE.Controllers.Main.txtPicture": "Picture",
"PE.Controllers.Main.txtRectangles": "Rectangles", "PE.Controllers.Main.txtRectangles": "Rectangles",
"PE.Controllers.Main.txtSeries": "Série", "PE.Controllers.Main.txtSeries": "Série",
"PE.Controllers.Main.txtSldLtTBlank": "Vide", "PE.Controllers.Main.txtSldLtTBlank": "Vide",
...@@ -180,6 +188,10 @@ ...@@ -180,6 +188,10 @@
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Titre vertical et texte", "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Titre vertical et texte",
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titre vertical et texte sur graphique", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titre vertical et texte sur graphique",
"PE.Controllers.Main.txtSldLtTVertTx": "Texte vertical", "PE.Controllers.Main.txtSldLtTVertTx": "Texte vertical",
"PE.Controllers.Main.txtSlideNumber": "Slide number",
"PE.Controllers.Main.txtSlideSubtitle": "Slide subtitle",
"PE.Controllers.Main.txtSlideText": "Slide text",
"PE.Controllers.Main.txtSlideTitle": "Slide title",
"PE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans", "PE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans",
"PE.Controllers.Main.txtXAxis": "Axe X", "PE.Controllers.Main.txtXAxis": "Axe X",
"PE.Controllers.Main.txtYAxis": "Axe Y", "PE.Controllers.Main.txtYAxis": "Axe Y",
...@@ -420,6 +432,7 @@ ...@@ -420,6 +432,7 @@
"PE.Views.Settings.textFind": "Trouver", "PE.Views.Settings.textFind": "Trouver",
"PE.Views.Settings.textHelp": "Aide", "PE.Views.Settings.textHelp": "Aide",
"PE.Views.Settings.textLoading": "Chargement en cours...", "PE.Views.Settings.textLoading": "Chargement en cours...",
"PE.Views.Settings.textPoweredBy": "Powered by",
"PE.Views.Settings.textPresentInfo": "Infos sur présentation", "PE.Views.Settings.textPresentInfo": "Infos sur présentation",
"PE.Views.Settings.textPresentSetup": "Paramètres de la présentation", "PE.Views.Settings.textPresentSetup": "Paramètres de la présentation",
"PE.Views.Settings.textPresentTitle": "Titre de la présentation", "PE.Views.Settings.textPresentTitle": "Titre de la présentation",
......
...@@ -136,12 +136,20 @@ ...@@ -136,12 +136,20 @@
"PE.Controllers.Main.txtButtons": "Кнопки", "PE.Controllers.Main.txtButtons": "Кнопки",
"PE.Controllers.Main.txtCallouts": "Выноски", "PE.Controllers.Main.txtCallouts": "Выноски",
"PE.Controllers.Main.txtCharts": "Схемы", "PE.Controllers.Main.txtCharts": "Схемы",
"PE.Controllers.Main.txtClipArt": "Картинка",
"PE.Controllers.Main.txtDateTime": "Дата и время",
"PE.Controllers.Main.txtDiagram": "Рисунок SmartArt",
"PE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы", "PE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы",
"PE.Controllers.Main.txtEditingMode": "Установка режима редактирования...", "PE.Controllers.Main.txtEditingMode": "Установка режима редактирования...",
"PE.Controllers.Main.txtFiguredArrows": "Фигурные стрелки", "PE.Controllers.Main.txtFiguredArrows": "Фигурные стрелки",
"PE.Controllers.Main.txtFooter": "Нижний колонтитул",
"PE.Controllers.Main.txtHeader": "Верхний колонтитул",
"PE.Controllers.Main.txtImage": "Образ слайда",
"PE.Controllers.Main.txtLines": "Линии", "PE.Controllers.Main.txtLines": "Линии",
"PE.Controllers.Main.txtMath": "Математические знаки", "PE.Controllers.Main.txtMath": "Математические знаки",
"PE.Controllers.Main.txtMedia": "Клип мультимедиа",
"PE.Controllers.Main.txtNeedSynchronize": "Есть обновления", "PE.Controllers.Main.txtNeedSynchronize": "Есть обновления",
"PE.Controllers.Main.txtPicture": "Рисунок",
"PE.Controllers.Main.txtRectangles": "Прямоугольники", "PE.Controllers.Main.txtRectangles": "Прямоугольники",
"PE.Controllers.Main.txtSeries": "Ряд", "PE.Controllers.Main.txtSeries": "Ряд",
"PE.Controllers.Main.txtSldLtTBlank": "Пустой слайд", "PE.Controllers.Main.txtSldLtTBlank": "Пустой слайд",
...@@ -180,6 +188,10 @@ ...@@ -180,6 +188,10 @@
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Вертикальный заголовок и текст", "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Вертикальный заголовок и текст",
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Вертикальный заголовок и текст над диаграммой", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Вертикальный заголовок и текст над диаграммой",
"PE.Controllers.Main.txtSldLtTVertTx": "Вертикальный текст", "PE.Controllers.Main.txtSldLtTVertTx": "Вертикальный текст",
"PE.Controllers.Main.txtSlideNumber": "Номер слайда",
"PE.Controllers.Main.txtSlideSubtitle": "Подзаголовок слайда",
"PE.Controllers.Main.txtSlideText": "Текст слайда",
"PE.Controllers.Main.txtSlideTitle": "Заголовок слайда",
"PE.Controllers.Main.txtStarsRibbons": "Звезды и ленты", "PE.Controllers.Main.txtStarsRibbons": "Звезды и ленты",
"PE.Controllers.Main.txtXAxis": "Ось X", "PE.Controllers.Main.txtXAxis": "Ось X",
"PE.Controllers.Main.txtYAxis": "Ось Y", "PE.Controllers.Main.txtYAxis": "Ось Y",
...@@ -193,18 +205,6 @@ ...@@ -193,18 +205,6 @@
"PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.", "PE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.<br>Обновите лицензию, а затем обновите страницу.",
"PE.Controllers.Main.warnNoLicense": "Вы используете open source версию ONLYOFFICE. Эта версия имеет ограничения по количеству одновременных подключений к серверу документов (20 подключений одновременно).<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.", "PE.Controllers.Main.warnNoLicense": "Вы используете open source версию ONLYOFFICE. Эта версия имеет ограничения по количеству одновременных подключений к серверу документов (20 подключений одновременно).<br>Если требуется больше, рассмотрите вопрос о покупке коммерческой лицензии.",
"PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.", "PE.Controllers.Main.warnProcessRightsChange": "Вам было отказано в праве на редактирование этого файла.",
"PE.Controllers.Main.txtSlideText": "Текст слайда",
"PE.Controllers.Main.txtClipArt": "Картинка",
"PE.Controllers.Main.txtDiagram": "Рисунок SmartArt",
"PE.Controllers.Main.txtDateTime": "Дата и время",
"PE.Controllers.Main.txtFooter": "Нижний колонтитул",
"PE.Controllers.Main.txtHeader": "Верхний колонтитул",
"PE.Controllers.Main.txtMedia": "Клип мультимедиа",
"PE.Controllers.Main.txtPicture": "Рисунок",
"PE.Controllers.Main.txtImage": "Образ слайда",
"PE.Controllers.Main.txtSlideNumber": "Номер слайда",
"PE.Controllers.Main.txtSlideSubtitle": "Подзаголовок слайда",
"PE.Controllers.Main.txtSlideTitle": "Заголовок слайда",
"PE.Controllers.Search.textNoTextFound": "Текст не найден", "PE.Controllers.Search.textNoTextFound": "Текст не найден",
"PE.Controllers.Settings.notcriticalErrorTitle": "Внимание", "PE.Controllers.Settings.notcriticalErrorTitle": "Внимание",
"PE.Controllers.Settings.txtLoading": "Загрузка...", "PE.Controllers.Settings.txtLoading": "Загрузка...",
...@@ -432,6 +432,7 @@ ...@@ -432,6 +432,7 @@
"PE.Views.Settings.textFind": "Найти", "PE.Views.Settings.textFind": "Найти",
"PE.Views.Settings.textHelp": "Справка", "PE.Views.Settings.textHelp": "Справка",
"PE.Views.Settings.textLoading": "Загрузка...", "PE.Views.Settings.textLoading": "Загрузка...",
"PE.Views.Settings.textPoweredBy": "Powered by",
"PE.Views.Settings.textPresentInfo": "Информация о презентации", "PE.Views.Settings.textPresentInfo": "Информация о презентации",
"PE.Views.Settings.textPresentSetup": "Настройка презентации", "PE.Views.Settings.textPresentSetup": "Настройка презентации",
"PE.Views.Settings.textPresentTitle": "Название презентации", "PE.Views.Settings.textPresentTitle": "Название презентации",
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment