diff options
author | Unknwon <u@gogs.io> | 2016-07-25 16:55:51 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-07-25 16:55:51 +0800 |
commit | 2295fafb34e2467f3b380a4db8832aa2c70ecc5a (patch) | |
tree | d5bbb31afcea7385493b4f0baef5f63b50131e8a /templates/repo/settings | |
parent | a562228c5e1dd139cd8900a8c997bd2ce9e37b00 (diff) | |
download | gitea-2295fafb34e2467f3b380a4db8832aa2c70ecc5a.tar.gz gitea-2295fafb34e2467f3b380a4db8832aa2c70ecc5a.zip |
repo/settings/options: take naming style examples out of locale string
Diffstat (limited to 'templates/repo/settings')
-rw-r--r-- | templates/repo/settings/options.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index dd44928b8e..3c3507d522 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -128,13 +128,13 @@ <div class="field"> <div class="ui radio checkbox"> <input class="hidden" tabindex="0" name="tracker_issue_style" type="radio" value="numeric" {{if eq .Repository.ExternalTrackerStyle "numeric"}}checked=""{{end}}/> - <label>{{.i18n.Tr "repo.settings.tracker_issue_style.numeric" | Safe}}</label> + <label>{{.i18n.Tr "repo.settings.tracker_issue_style.numeric"}} <span class="ui light grey text">(#1234)</span></label> </div> </div> <div class="field"> <div class="ui radio checkbox"> <input class="hidden" tabindex="0" name="tracker_issue_style" type="radio" value="alphanumeric" {{if eq .Repository.ExternalTrackerStyle "alphanumeric"}}checked=""{{end}}/> - <label>{{.i18n.Tr "repo.settings.tracker_issue_style.alphanumeric" | Safe}}</label> + <label>{{.i18n.Tr "repo.settings.tracker_issue_style.alphanumeric"}} <span class="ui light grey text">(ABC-123, DEFG-234)</span></label> </div> </div> </div> |