You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/11/01 19:10:29 UTC

git commit: updated refs/heads/4.4 to d5b2014

Repository: cloudstack
Updated Branches:
  refs/heads/4.4 48a042b9c -> d5b201462


CLOUDSTACK-7526: Fix missing localization on 'add' button

(cherry picked from commit b04cc750652642e8e2593128c7c0f5de3ef6b0d7)


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/d5b20146
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d5b20146
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d5b20146

Branch: refs/heads/4.4
Commit: d5b201462664ed323e430628d07a3ddc88afeb76
Parents: 48a042b
Author: Brian Federle <br...@citrix.com>
Authored: Mon Sep 15 13:02:27 2014 -0700
Committer: Daan Hoogland <da...@onecht.net>
Committed: Sat Nov 1 19:10:07 2014 +0100

----------------------------------------------------------------------
 ui/scripts/ui/widgets/tagger.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/d5b20146/ui/scripts/ui/widgets/tagger.js
----------------------------------------------------------------------
diff --git a/ui/scripts/ui/widgets/tagger.js b/ui/scripts/ui/widgets/tagger.js
index 3ffd80b..a77d6c5 100644
--- a/ui/scripts/ui/widgets/tagger.js
+++ b/ui/scripts/ui/widgets/tagger.js
@@ -42,7 +42,7 @@
             var $valueField = $('<div>').addClass('field value');
             var $valueLabel = $('<label>').attr('for', 'value').html(_l('label.value') + ':');
             var $value = $('<input>').addClass('value disallowSpecialCharacters').attr('name', 'value');
-            var $submit = $('<input>').attr('type', 'submit').val('label.add');
+            var $submit = $('<input>').attr('type', 'submit').val(_l('label.add'));
 
             $keyField.append($keyLabel, $key);
             $valueField.append($valueLabel, $value);