"Bug Number" => ["bug_id"],
"Importance" => ["priority", "bug_severity"],
"Assignee" => ["assigned_to", "bug_status", "priority", "bug_id"],
- "Last Changed" =>
+ "Last Updated" =>
["changeddate", "bug_status", "priority", "assigned_to", "bug_id"],
);
if ($order_types{$match_params->{order}}) {
"Bug Number" => ["bug_id"],
"Importance" => ["priority", "bug_severity"],
"Assignee" => ["assigned_to", "bug_status", "priority", "bug_id"],
- "Last Changed" =>
+ "Last Updated" =>
["changeddate", "bug_status", "priority", "assigned_to", "bug_id"],
);
if ($order_types{$order}) {
each non-terminal bug on the tree view, using the [-]/[+] buttons that
appear before the summary.
-*Reported:*
+*Opened:*
The person who filed the bug, and the date and time they did it.
-*Modified:*
+*Updated:*
The date and time the bug was last changed.
*CC List:*
[%# creation time %]
[% WRAPPER bug_modal/field.html.tmpl
field = bug_fields.creation_ts
- label = "Reported"
+ label = "Opened"
view_only = 1
help = "https://wiki.mozilla.org/BMO/UserGuide/BugFields#creation_ts"
%]
[%# last modified %]
[% WRAPPER bug_modal/field.html.tmpl
field = bug_fields.delta_ts
- label = "Modified"
+ label = "Updated"
view_only = 1
help = "https://wiki.mozilla.org/BMO/UserGuide/BugFields#delta_ts"
%]
if (!$last_resolved) {
Bugzilla::Field->create({
name => 'cf_last_resolved',
- description => 'Last Resolved',
+ description => 'Closed',
type => FIELD_TYPE_DATETIME,
mailhead => 0,
enter_bug => 0,
my ($self, $args) = @_;
my $columns = $args->{columns};
$columns->{'cf_last_resolved'}
- = {name => 'bugs.cf_last_resolved', title => 'Last Resolved',};
+ = {name => 'bugs.cf_last_resolved', title => 'Closed',};
}
__PACKAGE__->NAME;
#%]
[% IF in_template_var %]
- [% vars.field_descs.cf_last_resolved = "Last Resolved" %]
+ [% vars.field_descs.cf_last_resolved = "Closed" %]
[% END %]
# Sort order
my $deforder;
-my @orders = ('Bug Number', 'Importance', 'Assignee', 'Last Changed');
+my @orders = ('Bug Number', 'Importance', 'Assignee', 'Last Updated');
if ($cgi->cookie('LASTORDER')) {
$deforder = "Reuse same sort as last time";
[% BLOCK section_dates %]
<tr>
<th class="field_label">
- Reported:
+ Opened:
</th>
<td>
[% bug.creation_ts FILTER time("%Y-%m-%d %H:%M %Z") %] by [% INCLUDE global/user.html.tmpl who = bug.reporter %]
<tr>
<th class="field_label">
- Modified:
+ Updated:
</th>
<td>
[% bug.delta_ts FILTER time("%Y-%m-%d %H:%M %Z") %]
"bug_severity" => "Severity",
"bug_status" => "Status",
"bug_type" => "Type",
- "changeddate" => "Changed",
+ "changeddate" => "Updated",
"cc" => "CC",
"classification" => "Classification",
"cclist_accessible" => "CC list accessible",
"component_id" => "Component ID",
"component" => "Component",
"content" => "Content",
- "creation_ts" => "Creation date",
+ "creation_ts" => "Opened",
"days_elapsed" => "Days since $terms->{bug} changed",
"deadline" => "Deadline",
- "delta_ts" => "Changed",
+ "delta_ts" => "Updated",
"dependson" => "Depends on",
"dup_id" => "Duplicate",
"estimated_time" => "Orig. Est.",
"attachment" => "Attachment" ,
"requester" => "Requester" ,
"requestee" => "Requestee" ,
- "created" => "Created" ,
+ "created" => "Opened" ,
"category" => "Product/Component" } %]
[% DEFAULT display_columns = ["requester", "requestee", "type", "bug", "attachment", "created"]
"Bug Number" => "$terms.Bug Number",
"Importance" => "Importance",
"Assignee" => "Assignee",
- "Last Changed" => "Last Changed" } %]
+ "Last Updated" => "Last Updated" } %]
<input type="hidden" name="cmdtype" value="doit">
[% IF user.id %]