diff --git a/template/en/default/global/field-descs.none.tmpl b/template/en/default/global/field-descs.none.tmpl index 378ae7c34..ab7b9c7d2 100644 --- a/template/en/default/global/field-descs.none.tmpl +++ b/template/en/default/global/field-descs.none.tmpl @@ -23,7 +23,7 @@ [% PROCESS global/variables.none.tmpl %] -[% SET search_descs = { +[% search_descs = { "noop" => "---", "equals" => "is equal to", "notequals" => "is not equal to", @@ -54,6 +54,35 @@ "notinsearch" => "not matched by saved search", } %] +[% search_shown_types = { + 'notequals' => 1, + 'regexp' => 1, + 'notregexp' => 1, + 'lessthan' => 1, + 'lessthaneq' => 1, + 'greaterthan' => 1, + 'greaterthaneq' => 1, + 'changedbefore' => 1, + 'changedafter' => 1, + 'changedfrom' => 1, + 'changedto' => 1, + 'changedby' => 1, + 'notsubstring' => 1, + 'nowords' => 1, + 'nowordssubstr' => 1, + 'notmatches' => 1, +} %] + +[% search_multi_types = { + 'anyexact' => 1, + 'anywordssubstr' => 1, + 'allwordssubstr' => 1, + 'nowordssubstr' => 1, + 'anywords' => 1, + 'allwords' => 1, + 'nowords' => 1, +} %] + [% field_types = { ${constants.FIELD_TYPE_UNKNOWN} => "Unknown Type", ${constants.FIELD_TYPE_FREETEXT} => "Free Text", ${constants.FIELD_TYPE_SINGLE_SELECT} => "Drop Down",