mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-02-23 11:55:48 -05:00
fix(i18n): add forgotten translatable string (#6701)
- Bug of 75ce1e2ac1
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6701
Reviewed-by: 0ko <0ko@noreply.codeberg.org>
Co-authored-by: Gusted <postmaster@gusted.xyz>
Co-committed-by: Gusted <postmaster@gusted.xyz>
This commit is contained in:
parent
5e92674ec4
commit
b69755b417
2 changed files with 2 additions and 1 deletions
|
@ -1431,6 +1431,7 @@ editor.user_no_push_to_branch = User cannot push to branch
|
||||||
editor.require_signed_commit = Branch requires a signed commit
|
editor.require_signed_commit = Branch requires a signed commit
|
||||||
editor.cherry_pick = Cherry-pick %s onto:
|
editor.cherry_pick = Cherry-pick %s onto:
|
||||||
editor.revert = Revert %s onto:
|
editor.revert = Revert %s onto:
|
||||||
|
editor.commit_email = Commit email
|
||||||
|
|
||||||
commits.desc = Browse source code change history.
|
commits.desc = Browse source code change history.
|
||||||
commits.commits = Commits
|
commits.commits = Commits
|
||||||
|
|
|
@ -67,7 +67,7 @@
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
</div>
|
||||||
<div class="field {{if .Err_CommitMailID}}error{{end}}">
|
<div class="field {{if .Err_CommitMailID}}error{{end}}">
|
||||||
<label for="commit_mail_id">Commit email</label>
|
<label for="commit_mail_id">{{ctx.Locale.Tr "repo.editor.commit_email"}}</label>
|
||||||
<select class="ui selection dropdown" name="commit_mail_id">
|
<select class="ui selection dropdown" name="commit_mail_id">
|
||||||
{{range .CommitMails}}
|
{{range .CommitMails}}
|
||||||
<option{{if eq $.DefaultCommitMail .Email}} selected="selected"{{end}} value="{{.ID}}">{{.Email}}</option>
|
<option{{if eq $.DefaultCommitMail .Email}} selected="selected"{{end}} value="{{.ID}}">{{.Email}}</option>
|
||||||
|
|
Loading…
Add table
Reference in a new issue