diff options
author | Byron Jones <glob@mozilla.com> | 2014-08-14 08:05:54 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-08-14 08:05:54 +0200 |
commit | 2cb85ad6cba30c44bdaf3d9c5cc7c1ad1fadd416 (patch) | |
tree | 4f8aa626e5e030d2d03d079d1acbf4d3450a6fd1 /js | |
parent | 424b21e37cd9aeac01588ce0defd3ee665944b1d (diff) | |
download | bugzilla-2cb85ad6cba30c44bdaf3d9c5cc7c1ad1fadd416.tar.gz bugzilla-2cb85ad6cba30c44bdaf3d9c5cc7c1ad1fadd416.tar.xz |
Bug 1047405: Comment tagging GUI not fully localizable because of text in Javascript instead of template
r=sgreen,a=glob
Diffstat (limited to 'js')
-rw-r--r-- | js/comment-tagging.js | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/js/comment-tagging.js b/js/comment-tagging.js index 987dfd8da..f488000e1 100644 --- a/js/comment-tagging.js +++ b/js/comment-tagging.js @@ -20,6 +20,10 @@ YAHOO.bugzilla.commentTagging = { can_edit : false, pending : {}, + label : '', + min_len_error: '', + max_len_error: '', + init : function(can_edit) { this.can_edit = can_edit; this.ctag_div = Dom.get('bz_ctag_div'); @@ -185,7 +189,7 @@ YAHOO.bugzilla.commentTagging = { tags.sort(); if (tags.length) { var div = document.createElement('div'); - div.appendChild(document.createTextNode('Comment Tags:')); + div.appendChild(document.createTextNode(this.label)); var ul = document.createElement('ul'); ul.id = 'comment_tags_collapse_expand'; div.appendChild(ul); @@ -260,9 +264,9 @@ YAHOO.bugzilla.commentTagging = { if (tag == '') continue; if (tag.length < YAHOO.bugzilla.commentTagging.min_len) - throw new Error("Comment tags must be at least " + this.min_len + " characters."); + throw new Error(this.min_len_error) if (tag.length > YAHOO.bugzilla.commentTagging.max_len) - throw new Error("Comment tags cannot be longer than " + this.min_len + " characters."); + throw new Error(this.max_len_error) // append new tag if (bz_isValueInArrayIgnoreCase(tags, tag)) continue; |