(fix) adjusted JS files regarding translation updates

This commit is contained in:
Ludovic Marcotte
2016-01-13 11:29:41 -05:00
parent 1a1f74b5d0
commit 230688bf4e
6 changed files with 20 additions and 20 deletions
+2 -2
View File
@@ -220,7 +220,7 @@ function createPasswordChangeDialog() {
createElement("span", "passwordError", null, null, null, fields);
var fieldNames = [ "newPassword", "newPassword2" ];
var fieldLabels = [ _("New password:"), _("Confirmation:") ];
var fieldLabels = [ _("New password"), _("Confirmation") ];
for (var i = 0; i < fieldNames.length; i++) {
var label = createElement("label", null, null, null, null, fields);
label.appendChild(document.createTextNode(fieldLabels[i]));
@@ -240,7 +240,7 @@ function createPasswordChangeDialog() {
var dialog = createDialog("passwordChangeDialog",
_("Change your Password"),
_("Your password has expired, please enter a new one below:"),
_("Your password has expired, please enter a new one below"),
fields,
"right");