diff options
author | jocuri%softhome.net <> | 2006-02-22 01:00:29 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2006-02-22 01:00:29 +0100 |
commit | edc8b211152a8e3bcb45f8ff089e3fead0fe1c51 (patch) | |
tree | 251fbdc1c8d7a4cfe8393ea9494f6f0c3ca57370 /template/en/default/attachment | |
parent | 2ce4b59a775854584384e5e8d240dc90352d7bda (diff) | |
download | bugzilla-edc8b211152a8e3bcb45f8ff089e3fead0fe1c51.tar.gz bugzilla-edc8b211152a8e3bcb45f8ff089e3fead0fe1c51.tar.xz |
Patch for bug 97868: Rename the "Edit" action (for attachments) to something else (use "Details"); patch by timeless <timeless@bemail.org>, r=mkanat, a=justdave.
Diffstat (limited to 'template/en/default/attachment')
5 files changed, 7 insertions, 7 deletions
diff --git a/template/en/default/attachment/created.html.tmpl b/template/en/default/attachment/created.html.tmpl index ef318f575..3114b2963 100644 --- a/template/en/default/attachment/created.html.tmpl +++ b/template/en/default/attachment/created.html.tmpl @@ -55,7 +55,7 @@ <b>Note:</b> [% terms.Bugzilla %] automatically detected the content type <em>[% contenttype %]</em> for this attachment. If this is incorrect, correct the value by - <a href="attachment.cgi?id=[% attachid %]&action=edit">editing the attachment</a>. + editing the attachment's <a href="attachment.cgi?id=[% attachid %]&action=edit">details</a>. </p> [% END %] </td> diff --git a/template/en/default/attachment/diff-header.html.tmpl b/template/en/default/attachment/diff-header.html.tmpl index f42d286ef..45bf202a9 100644 --- a/template/en/default/attachment/diff-header.html.tmpl +++ b/template/en/default/attachment/diff-header.html.tmpl @@ -242,7 +242,7 @@ tbody.file pre:empty { [%# HEADER %] [% IF headers %] <a href="[% PROCESS viewurl id=attachid %]">View</a> - | <a href="[% PROCESS editurl id=attachid %]">Edit</a> + | <a href="[% PROCESS editurl id=attachid %]">Details</a> | <a href="[% PROCESS diffurl id=attachid %]&context=[% context FILTER url_quote %]&collapsed=[% collapsed FILTER url_quote %]&headers=[% headers FILTER url_quote %]&format=raw">Raw Unified</a> [% END %] [% IF other_patches.size > 0 %] diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl index 747675f01..eefe141f8 100644 --- a/template/en/default/attachment/edit.html.tmpl +++ b/template/en/default/attachment/edit.html.tmpl @@ -24,10 +24,10 @@ [%# Define strings that will serve as the title and header of this page %] [% title = BLOCK %] - Edit Attachment [% attachment.id %] for [% terms.Bug %] [%+ attachment.bug_id %] + Attachment [% attachment.id %] Details for [% terms.Bug %] [%+ attachment.bug_id %] [% END %] [% h1 = BLOCK %] - Edit Attachment [% attachment.id %] for + Attachment [% attachment.id %] Details for [%+ GetBugLink(attachment.bug_id, "$terms.Bug ${attachment.bug_id}") %] [% END %] [% h2 = BLOCK %][% bugsummary FILTER html %][% END %] @@ -267,7 +267,7 @@ <textarea id="editFrame" name="comment" wrap="soft" cols="80" style="height: 400px; width: 100%; display: none;"></textarea> <iframe id="viewFrame" src="attachment.cgi?id=[% attachment.id %]" style="height: 400px; width: 100%;"> - <b>You cannot view the attachment while editing it because your browser does not support IFRAMEs. + <b>You cannot view the attachment while viewing its details because your browser does not support IFRAMEs. <a href="attachment.cgi?id=[% attachment.id %]">View the attachment on a separate page</a>.</b> </iframe> <script type="text/javascript"> diff --git a/template/en/default/attachment/list.html.tmpl b/template/en/default/attachment/list.html.tmpl index 7de5fb371..8734487a6 100644 --- a/template/en/default/attachment/list.html.tmpl +++ b/template/en/default/attachment/list.html.tmpl @@ -77,7 +77,7 @@ [% END %] <td valign="top"> - <a href="attachment.cgi?id=[% attachment.id %]&action=edit">Edit</a> + <a href="attachment.cgi?id=[% attachment.id %]&action=edit">Details</a> [% IF attachment.ispatch && patchviewerinstalled %] | <a href="attachment.cgi?id=[% attachment.id %]&action=diff">Diff</a> [% END %] diff --git a/template/en/default/attachment/show-multiple.html.tmpl b/template/en/default/attachment/show-multiple.html.tmpl index e7043a142..e2c918dbb 100644 --- a/template/en/default/attachment/show-multiple.html.tmpl +++ b/template/en/default/attachment/show-multiple.html.tmpl @@ -78,7 +78,7 @@ </td> <td valign="top"> - <a href="attachment.cgi?id=[% a.attachid %]&action=edit">Edit</a> + <a href="attachment.cgi?id=[% a.attachid %]&action=edit">Details</a> </td> </tr> </table> |