Skip to content

Commit

Permalink
Merge pull request #3018 from ONLYOFFICE/fix/translation
Browse files Browse the repository at this point in the history
Fix/translation
  • Loading branch information
JuliaRadzhabova authored May 30, 2024
2 parents 721192d + 9682194 commit 083bfd8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/documenteditor/forms/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
"DE.Views.ApplicationView.textPaste": "Paste",
"DE.Views.ApplicationView.textPrintSel": "Print selection",
"DE.Views.ApplicationView.textRedo": "Redo",
"DE.Views.ApplicationView.textSubmit": "Submit",
"DE.Views.ApplicationView.textSubmit": "Complete & Submit",
"DE.Views.ApplicationView.textUndo": "Undo",
"DE.Views.ApplicationView.textZoom": "Zoom",
"DE.Views.ApplicationView.tipRedo": "Redo",
Expand Down
2 changes: 1 addition & 1 deletion apps/documenteditor/main/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2312,7 +2312,7 @@
"DE.Views.FormsTab.capBtnRadioBox": "Radio Button",
"DE.Views.FormsTab.capBtnSaveForm": "Save As PDF",
"DE.Views.FormsTab.capBtnSaveFormDesktop": "Save As...",
"DE.Views.FormsTab.capBtnSubmit": "Submit",
"DE.Views.FormsTab.capBtnSubmit": "Complete & Submit",
"DE.Views.FormsTab.capBtnText": "Text Field",
"DE.Views.FormsTab.capBtnView": "View Form",
"DE.Views.FormsTab.capCreditCard": "Credit Card",
Expand Down
8 changes: 6 additions & 2 deletions apps/spreadsheeteditor/main/app/controller/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,9 @@ define([
'None': this.txtNone,
'Slicer': this.txtSlicer,
'Info': this.txtInfo,
'Picture': this.txtPicture
'Picture': this.txtPicture,
'PivotTable': this.txtPivotTable,
'View': this.txtView
};

styleNames.forEach(function(item){
Expand Down Expand Up @@ -3992,7 +3994,9 @@ define([
txtScheme_Violet_II: 'Violet II',
txtScheme_Violet: 'Violet',
txtScheme_Yellow_Orange: 'Yellow Orange',
txtScheme_Yellow: 'Yellow'
txtScheme_Yellow: 'Yellow',
txtPivotTable: 'PivotTable',
txtView: 'View'
}
})(), SSE.Controllers.Main || {}))
});
2 changes: 2 additions & 0 deletions apps/spreadsheeteditor/main/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1427,6 +1427,8 @@
"SSE.Controllers.Main.txtScheme_Violet": "Violet",
"SSE.Controllers.Main.txtScheme_Yellow_Orange": "Yellow Orange",
"SSE.Controllers.Main.txtScheme_Yellow": "Yellow",
"SSE.Controllers.Main.txtPivotTable": "PivotTable",
"SSE.Controllers.Main.txtView": "View",
"SSE.Controllers.PivotTable.strSheet": "Sheet",
"SSE.Controllers.Print.strAllSheets": "All Sheets",
"SSE.Controllers.Print.textFirstCol": "First column",
Expand Down

0 comments on commit 083bfd8

Please sign in to comment.