diff options
author | Vladimir Panteleev <github.private@thecybershadow.net> | 2018-03-16 02:50:21 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-03-16 02:50:21 +0100 |
commit | c69c2ea66b912005ac8e88ef443a03ea101bebdf (patch) | |
tree | eff2df3c0de260f206098c4aa320f0b196577929 /template | |
parent | e1f49345ba1055a9d2f365760da9ede4ed4d7498 (diff) | |
download | bugzilla-c69c2ea66b912005ac8e88ef443a03ea101bebdf.tar.gz bugzilla-c69c2ea66b912005ac8e88ef443a03ea101bebdf.tar.xz |
Bug 1446236 - Allow customizing link to bug writing guidelines
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/create/user-message.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/bug/new_bug.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/global/variables.none.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/index.html.tmpl | 2 |
4 files changed, 6 insertions, 4 deletions
diff --git a/template/en/default/bug/create/user-message.html.tmpl b/template/en/default/bug/create/user-message.html.tmpl index fa42ace81..51e787870 100644 --- a/template/en/default/bug/create/user-message.html.tmpl +++ b/template/en/default/bug/create/user-message.html.tmpl @@ -30,7 +30,7 @@ [% PROCESS global/variables.none.tmpl %] Before reporting [% terms.abug %], please read the -<a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines"> +<a href="[% terms.BugWritingGuidelinesURL %]"> [% terms.bug %] writing guidelines</a>, please look at the list of <a href="duplicates.cgi">most frequently reported [% terms.bugs %]</a>, and please <a href="query.cgi">search</a> for the [% terms.bug %]. diff --git a/template/en/default/bug/new_bug.html.tmpl b/template/en/default/bug/new_bug.html.tmpl index ef5e361c0..fcbe7edd4 100644 --- a/template/en/default/bug/new_bug.html.tmpl +++ b/template/en/default/bug/new_bug.html.tmpl @@ -27,7 +27,7 @@ <h2>Create New [% terms.Bug %]</h2> <p> Before reporting a [% terms.bug %], make sure you've read our - <a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines"> + <a href="[% terms.BugWritingGuidelinesURL %]"> [% terms.bug %] writing guidelines</a> and double checked that your [% terms.bug %] hasn't already been reported. Consult our list of <a href="https://bugzilla.mozilla.org/duplicates.cgi"> most frequently reported [% terms.bugs %]</a> and <a href="https://bugzilla.mozilla.org/query.cgi"> diff --git a/template/en/default/global/variables.none.tmpl b/template/en/default/global/variables.none.tmpl index faf1a5427..93002efa3 100644 --- a/template/en/default/global/variables.none.tmpl +++ b/template/en/default/global/variables.none.tmpl @@ -37,7 +37,9 @@ "bugs" => "bugs", "Bugs" => "Bugs", "zeroSearchResults" => "Zarro Boogs found", - "Bugzilla" => "Bugzilla" + "Bugzilla" => "Bugzilla", + + "BugWritingGuidelinesURL" => "https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines", } %] diff --git a/template/en/default/index.html.tmpl b/template/en/default/index.html.tmpl index 3c42ce71e..14cdb599a 100644 --- a/template/en/default/index.html.tmpl +++ b/template/en/default/index.html.tmpl @@ -75,7 +75,7 @@ <a href="page.cgi?id=etiquette.html">[%- terms.Bugzilla %] Etiquette</a> </li> <li> - | <a href="https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines">[%- terms.Bug %] Writing Guidelines</a> + | <a href="[% terms.BugWritingGuidelinesURL %]">[%- terms.Bug %] Writing Guidelines</a> </li> [% Hook.process('additional_links') %] </ul> |