diff --git a/apps/documenteditor/main/app/view/RoleEditDlg.js b/apps/documenteditor/main/app/view/RoleEditDlg.js index 98b698dd80..e527130e55 100644 --- a/apps/documenteditor/main/app/view/RoleEditDlg.js +++ b/apps/documenteditor/main/app/view/RoleEditDlg.js @@ -90,6 +90,7 @@ define([ allowBlank : false, blankError : me.textEmptyError, style : 'width: 100%;', + placeHolder: me.textNameEx, validateOnBlur: false, validation : function(value) { value = value.trim(); @@ -214,6 +215,7 @@ define([ textName: 'Role name', textEmptyError: 'Role name must not be empty.', textNoHighlight: 'No highlighting', - errNameExists: 'Role with such a name already exists.' + errNameExists: 'Role with such a name already exists.', + textNameEx: 'Example: Applicant, Client, Sales Rep' }, DE.Views.RoleEditDlg || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index d10422f1ba..e62730292d 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -2805,6 +2805,7 @@ "DE.Views.RoleEditDlg.textNoHighlight": "No highlighting", "DE.Views.RoleEditDlg.txtTitleEdit": "Edit Role", "DE.Views.RoleEditDlg.txtTitleNew": "Create New Role", + "DE.Views.RoleEditDlg.textNameEx": "Example: Applicant, Client, Sales Rep", "DE.Views.RolesManagerDlg.closeButtonText": "Close", "DE.Views.RolesManagerDlg.textAnyone": "Anyone", "DE.Views.RolesManagerDlg.textDelete": "Delete",