diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js index 227c64f83..f37620373 100644 --- a/apps/documenteditor/forms/app/controller/ApplicationController.js +++ b/apps/documenteditor/forms/app/controller/ApplicationController.js @@ -537,7 +537,7 @@ define([ me.view.btnDownload.setVisible(this.appOptions.canDownload && this.appOptions.canFillForms && !this.appOptions.canSubmitForms); if (me.appOptions.canRequestSaveAs || !!me.appOptions.saveAsUrl) { me.view.btnDownload.setCaption(me.textSaveAs); - me.view.btnDownload.updateHint(me.textTipSaveAs); + me.view.btnDownload.updateHint(me.textSaveAs); } if (!this.appOptions.canFillForms) { me.view.btnPrev.setVisible(false); @@ -1780,8 +1780,7 @@ define([ errorSessionToken: 'The connection to the server has been interrupted. Please reload the page.', errorBadImageUrl: 'Image url is incorrect', errorDataEncrypted: 'Encrypted changes have been received, they cannot be deciphered.', - textSaveAs: 'Save as', - textTipSaveAs: 'Save as pdf' + textSaveAs: 'Save as PDF' }, DE.Controllers.ApplicationController)); diff --git a/apps/documenteditor/forms/locale/en.json b/apps/documenteditor/forms/locale/en.json index 231b23dd9..ea5e4f7a7 100644 --- a/apps/documenteditor/forms/locale/en.json +++ b/apps/documenteditor/forms/locale/en.json @@ -139,8 +139,7 @@ "DE.Controllers.ApplicationController.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.", "DE.Controllers.ApplicationController.errorBadImageUrl": "Image URL is incorrect", "DE.Controllers.ApplicationController.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "DE.Controllers.ApplicationController.textSaveAs": "Save as", - "DE.Controllers.ApplicationController.textTipSaveAs": "Save as pdf", + "DE.Controllers.ApplicationController.textSaveAs": "Save as PDF", "DE.Views.ApplicationView.textClear": "Clear All Fields", "DE.Views.ApplicationView.textCopy": "Copy", "DE.Views.ApplicationView.textCut": "Cut",