diff --git a/client/WEB-INF/classes/resources/messages.properties b/client/WEB-INF/classes/resources/messages.properties index d3cc4d0073e..957fae51278 100644 --- a/client/WEB-INF/classes/resources/messages.properties +++ b/client/WEB-INF/classes/resources/messages.properties @@ -2214,3 +2214,4 @@ message.removed.ssh.key.pair=Removed a SSH Key Pair message.please.select.ssh.key.pair.use.with.this.vm=Please select a ssh key pair you want this VM to use: message.configure.firewall.rules.allow.traffic=Configure the rules to allow Traffic message.configure.firewall.rules.block.traffic=Configure the rules to block Traffic +message.ldap.group.import=All The users from the given group name will be imported diff --git a/ui/dictionary2.jsp b/ui/dictionary2.jsp index d2bb6831675..984a03aab57 100644 --- a/ui/dictionary2.jsp +++ b/ui/dictionary2.jsp @@ -1122,6 +1122,7 @@ under the License. 'label.ssh.key.pairs': '', 'message.desc.create.ssh.key.pair': '', 'message.removed.ssh.key.pair': '', -'message.please.select.ssh.key.pair.use.with.this.vm': '' +'message.please.select.ssh.key.pair.use.with.this.vm': '', +'message.ldap.group.import': '' }); diff --git a/ui/scripts/ui-custom/accountsWizard.js b/ui/scripts/ui-custom/accountsWizard.js index 93492340835..c9e1e455603 100644 --- a/ui/scripts/ui-custom/accountsWizard.js +++ b/ui/scripts/ui-custom/accountsWizard.js @@ -114,7 +114,7 @@ var $table = $wizard.find('.ldap-account-choice tbody'); $("#label_ldap_group_name").live("keypress", function(event) { if ($table.find("#tr-groupname-message").length === 0) { - $("").appendTo($table).append("All The users from the given group name will be imported"); + $("").appendTo($table).append(""+_l('message.ldap.group.import')+""); } $table.find("tr").hide(); $table.find("#tr-groupname-message").show(); @@ -323,7 +323,7 @@ } return $wizard.dialog({ - title: ldapStatus ? _l('Add LDAP Account') : _l('label.add.account'), + title: ldapStatus ? _l('label.add.LDAP.account') : _l('label.add.account'), width: ldapStatus ? 800 : 330, height: ldapStatus ? 500 : 500, closeOnEscape: false,