diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 16bea8c85..26180b49c 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -706,6 +706,8 @@ define([ '', '', '', + '', + '', '', '', '', @@ -782,6 +784,7 @@ define([ this.inputTitle = new Common.UI.InputField({ el : $('#id-info-title'), style : 'width: 200px;', + placeHolder : this.txtAddText, validateOnBlur: false }).on('changed:after', function() { // me.api && me.api.asc_setDocumentTitle(me.inputTitle.getValue()); @@ -789,6 +792,7 @@ define([ this.inputSubject = new Common.UI.InputField({ el : $('#id-info-subject'), style : 'width: 200px;', + placeHolder : this.txtAddText, validateOnBlur: false }).on('changed:after', function() { // me.api && me.api.asc_setDocumentSubject(me.inputSubject.getValue()); @@ -796,6 +800,7 @@ define([ this.inputComment = new Common.UI.InputField({ el : $('#id-info-comment'), style : 'width: 200px;', + placeHolder : this.txtAddText, validateOnBlur: false }).on('changed:after', function() { // me.api && me.api.asc_setDocumentComment(me.inputComment.getValue()); @@ -1026,8 +1031,8 @@ define([ this.lblTitle.text((name) ? name : '-'); }, - txtPlacement: 'File Location', - txtOwner: 'Owner on cloud', + txtPlacement: 'Location', + txtOwner: 'Owner', txtUploaded: 'Uploaded', txtPages: 'Pages', txtWords: 'Words', @@ -1044,7 +1049,8 @@ define([ txtModifyBy: 'Last Modified By', txtDate: 'Created', txtAuthor: 'Author', - txtAddAuthor: 'Add Author' + txtAddAuthor: 'Add Author', + txtAddText: 'Add Text' }, DE.Views.FileMenuPanels.DocumentInfo || {})); DE.Views.FileMenuPanels.DocumentRights = Common.UI.BaseView.extend(_.extend({