diff options
author | Byron Jones <bjones@mozilla.com> | 2013-07-24 10:33:09 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-07-24 10:33:09 +0200 |
commit | 2fe3e064fdeabf1d86b18a71b97cb506a023605b (patch) | |
tree | 862d9f4e34c6dc95eb159c46926d38750adbcf57 /template/en/default | |
parent | 7585e73d0dddc9693e7b86fe39e14808d46048b1 (diff) | |
download | bugzilla-2fe3e064fdeabf1d86b18a71b97cb506a023605b.tar.gz bugzilla-2fe3e064fdeabf1d86b18a71b97cb506a023605b.tar.xz |
Bug 345194: Add "is empty" and "is not empty" search operators to the boolean chart
r=LpSolit, a=sgreen
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/global/field-descs.none.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/list/list.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/search/boolean-charts.html.tmpl | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/template/en/default/global/field-descs.none.tmpl b/template/en/default/global/field-descs.none.tmpl index 948ee5efa..34c4dc9ed 100644 --- a/template/en/default/global/field-descs.none.tmpl +++ b/template/en/default/global/field-descs.none.tmpl @@ -34,7 +34,9 @@ "changedto" => "changed to", "changedby" => "changed by", "matches" => "matches", - "notmatches" => "does not match", + "notmatches" => "does not match", + "isempty" => "is empty", + "isnotempty" => "is not empty", } %] [% field_types = { ${constants.FIELD_TYPE_UNKNOWN} => "Unknown Type", diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index dcc140cf2..6e1755fed 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -103,7 +103,7 @@ 'notequals', 'regexp', 'notregexp', 'lessthan', 'lessthaneq', 'greaterthan', 'greaterthaneq', 'changedbefore', 'changedafter', 'changedfrom', 'changedto', 'changedby', 'notsubstring', 'nowords', - 'nowordssubstr', 'notmatches', + 'nowordssubstr', 'notmatches', 'isempty', 'isnotempty' ] %] <a id="search_description_controller" class="bz_default_hidden" href="javascript:TUI_toggle_class('search_description')">Hide Search Description</a> diff --git a/template/en/default/search/boolean-charts.html.tmpl b/template/en/default/search/boolean-charts.html.tmpl index 508e11c65..901de0501 100644 --- a/template/en/default/search/boolean-charts.html.tmpl +++ b/template/en/default/search/boolean-charts.html.tmpl @@ -33,6 +33,8 @@ "changedby", "matches", "notmatches", + "isempty", + "isnotempty", ] %] <div class="bz_section_title" id="custom_search_filter"> |