diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 05fa533bb5..0f95b8b93f 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -135,7 +135,16 @@ define([ 'First Slide': this.txtFirstSlide, 'Previous Slide': this.txtPrevSlide, 'Next Slide': this.txtNextSlide, - 'Last Slide': this.txtLastSlide + 'Last Slide': this.txtLastSlide, + 'Animation Pane': this.txtAnimationPane, + 'Stop': this.txtStop, + 'Play All': this.txtPlayAll, + 'Play From': this.txtPlayFrom, + 'Play Selected': this.txtPlaySelected, + 'Zoom': this.txtZoom, + 'Start: ${0}s': this.txtStart, + 'End: ${0}s': this.txtEnd, + 'Loop: ${0}s': this.txtLoop }; themeNames.forEach(function(item){ @@ -3291,6 +3300,15 @@ define([ txtPrevSlide: 'Previous slide', txtFirstSlide: 'First slide', txtLastSlide: 'Last slide', + txtAnimationPane: 'Animation Pane', + txtStop: 'Stop', + txtPlayAll: 'Play All', + txtPlayFrom: 'Play From', + txtPlaySelected: 'Play Selected', + txtZoom: 'Zoom', + txtStart: 'Start: ${0}s', + txtEnd: 'End: ${0}s', + txtLoop: 'Loop: ${0}s' } })(), PE.Controllers.Main || {})) }); diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index b5e0961f7f..b3bfecd5a2 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -1308,6 +1308,15 @@ "PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
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.warnProcessRightsChange": "You have been denied the right to edit the file.", + "PE.Controllers.Main.txtAnimationPane": "Animation Pane", + "PE.Controllers.Main.txtStop": "Stop", + "PE.Controllers.Main.txtPlayAll": "Play All", + "PE.Controllers.Main.txtPlayFrom": "Play From", + "PE.Controllers.Main.txtPlaySelected": "Play Selected", + "PE.Controllers.Main.txtZoom": "Zoom", + "PE.Controllers.Main.txtStart": "Start: ${0}s", + "PE.Controllers.Main.txtEnd": "End: ${0}s", + "PE.Controllers.Main.txtLoop": "Loop: ${0}s", "PE.Controllers.Print.txtPrintRangeInvalid": "Invalid print range", "PE.Controllers.Print.txtPrintRangeSingleRange": "Enter either a single slide number or a single slide range (for example, 5-12). Or you can Print to PDF.", "PE.Controllers.Search.notcriticalErrorTitle": "Warning",