field-descs.none.tmpl 7.35 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
[%# The contents of this file are subject to the Mozilla Public
  # License Version 1.1 (the "License"); you may not use this file
  # except in compliance with the License. You may obtain a copy of
  # the License at http://www.mozilla.org/MPL/
  #
  # Software distributed under the License is distributed on an "AS
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  # implied. See the License for the specific language governing
  # rights and limitations under the License.
  #
  # The Original Code is the Bugzilla Bug Tracking System.
  #
  # The Initial Developer of the Original Code is Netscape Communications
  # Corporation. Portions created by Netscape are
  # Copyright (C) 1998 Netscape Communications Corporation. All
  # Rights Reserved.
  #
  # Contributor(s): Gervase Markham <gerv@gerv.net>
19
  #                 Elliotte Martin <elliotte_martin@yahoo.com>
20 21 22
  #%]

[%# Remember to PROCESS rather than INCLUDE this template. %]
23 24 25

[% PROCESS global/variables.none.tmpl %]

26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
[% SET search_descs = {
  "noop"           => "---",
  "equals"         => "is equal to",
  "notequals"      => "is not equal to",
  "anyexact"       => "is equal to any of the strings",
  "substring"      => "contains the string",
  "casesubstring"  => "contains the string (exact case)",
  "notsubstring"   => "does not contain the string",
  "anywordssubstr" => "contains any of the strings",
  "allwordssubstr" => "contains all of the strings",
  "nowordssubstr"  => "contains none of the strings",
  "regexp"         => "matches regular expression",
  "notregexp"      => "does not match regular expression",
  "lessthan"       => "is less than",
  "lessthaneq"     => "is less than or equal to",
  "greaterthan"    => "is greater than",
  "greaterthaneq"  => "is greater than or equal to",
  "anywords"       => "contains any of the words",
  "allwords"       => "contains all of the words",
  "nowords"        => "contains none of the words",
  "changedbefore"  => "changed before",
  "changedafter"   => "changed after",
  "changedfrom"    => "changed from",
  "changedto"      => "changed to",
  "changedby"      => "changed by",
  "matches"        => "matches",
52
  "notmatches"      => "does not match",
53 54
} %]

55 56
[% field_types = { ${constants.FIELD_TYPE_UNKNOWN}       => "Unknown Type",
                   ${constants.FIELD_TYPE_FREETEXT}      => "Free Text",
57 58
                   ${constants.FIELD_TYPE_SINGLE_SELECT} => "Drop Down",
                   ${constants.FIELD_TYPE_MULTI_SELECT}  => "Multiple-Selection Box",
59
                   ${constants.FIELD_TYPE_TEXTAREA}      => "Large Text Box",
60
                   ${constants.FIELD_TYPE_DATETIME}      => "Date/Time",
61
                   ${constants.FIELD_TYPE_BUG_ID}        => "$terms.Bug ID",
62
                } %]
63

64 65 66 67 68 69 70
[%# You can use this hash to localize (translate) the values displayed
  # for drop-down and multiple-select fields. Lines starting with "#"
  # are comments.
  #%]
[% value_descs = {
  "bug_status" => {
    # "UNCONFIRMED" => "UNCO",
71
    # "CONFIRMED"   => "ITSABUG",
72
  },
73

74
  "resolution" => {
75
    ""        => "---",
76 77
    # "FIXED"      => "NO LONGER AN ISSUE",
    # "WORKSFORME" => "NOTMYPROBLEM!",
78 79
  },
} %]
80

81 82 83 84 85 86 87 88 89 90
[%# We use "FILTER none" here because only the caller can know how to
  # filter the result appropriately. 
  #%]
[% MACRO display_value(field_name, value_name) BLOCK %][% FILTER trim %]
  [% IF value_descs.${field_name}.${value_name}.defined %]
    [% value_descs.${field_name}.${value_name} FILTER none %]
  [% ELSE %]
    [% value_name FILTER none %]
  [% END %]
[% END %][% END %]
91

92 93 94 95 96 97 98 99 100 101 102
[% IF in_template_var %]
  [% vars.terms = terms %]

  [%# field_descs is loaded as a global template variable and cached
    # across all templates--see VARIABLES in Bugzilla/Template.pm.
    #%]
  [% vars.field_descs = {
    "[Bug creation]"          => "[$terms.Bug creation]",
     "actual_time"             => "Actual Hours",
     "alias"                   => "Alias",
     "assigned_to"             => "Assignee",
103
     "assigned_to_realname"    => "Assignee Real Name",
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
     "attach_data.thedata"     => "Attachment data",
     "attachments.description" => "Attachment description",
     "attachments.filename"    => "Attachment filename",
     "attachments.mimetype"    => "Attachment mime type",
     "attachments.ispatch"     => "Attachment is patch",
     "attachments.isobsolete"  => "Attachment is obsolete",
     "attachments.isprivate"   => "Attachment is private",
     "attachments.submitter"   => "Attachment creator",
     "blocked"                 => "Blocks",
     "bug_file_loc"            => "URL",
     "bug_group"               => "Group",
     "bug_id"                  => "$terms.Bug ID",
     "bug_severity"            => "Severity",
     "bug_status"              => "Status",
     "changeddate"             => "Changed",
     "cc"                      => "CC",
     "classification"          => "Classification",
     "cclist_accessible"       => "CC list accessible",
     "commenter"               => "Commenter",
     "component_id"            => "Component ID",
     "component"               => "Component",
     "content"                 => "Content",
     "creation_ts"             => "Creation date",
     "deadline"                => "Deadline",
     "delta_ts"                => "Changed",
     "dependson"               => "Depends on",
     "dup_id"                  => "Duplicate",
     "estimated_time"          => "Orig. Est.",
     "everconfirmed"           => "Ever confirmed",
     "flagtypes.name"          => "Flags",
     "keywords"                => "Keywords",
     "longdesc"                => "Comment",
136
     "longdescs.count"         => "Number of Comments",
137 138 139 140 141 142 143 144 145 146
     "longdescs.isprivate"     => "Comment is private",
     "newcc"                   => "CC",
     "op_sys"                  => "OS",
     "opendate"                => "Opened",
     "owner_idle_time"         => "Time Since Assignee Touched",
     "percentage_complete"     => "%Complete",
     "priority"                => "Priority",
     "product_id"              => "Product ID",
     "product"                 => "Product",
     "qa_contact"              => "QA Contact",
147
     "qa_contact_realname"     => "QA Contact Real Name",
148 149 150 151
     "remaining_time"          => "Hours Left",
     "rep_platform"            => "Hardware",
     "reporter"                => "Reporter",
     "reporter_accessible"     => "Reporter accessible",
152
     "reporter_realname"       => "Reporter Real Name",
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
     "requestees.login_name"   => "Flag Requestee",
     "resolution"              => "Resolution",
     "see_also"                => "See Also",
     "setters.login_name"      => "Flag Setter",
     "setting"                 => "Setting",
     "settings"                => "Settings",
     "short_desc"              => "Summary",
     "status_whiteboard"       => "Whiteboard",
     "target_milestone"        => "Target Milestone",
     "version"                 => "Version",
     "work_time"               => "Hours Worked",
  } %]

  [%# Also include any custom fields or fields which don't have a
      Description here, by copying their Description from the
      database. If you want to override this for your language
      or your installation, just use a hook. %]
  [% UNLESS Param('shutdownhtml') %]
    [% FOREACH bz_field = bug_fields.values %]
      [% SET vars.field_descs.${bz_field.name} = bz_field.description
         IF !vars.field_descs.${bz_field.name}.defined %]
    [% END %]
  [% END %]
[% END %]

178
[% Hook.process("end") %]