loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(i18n): add forgotten translatable string (#6701)

- Bug of 75ce1e2ac12042cf00713353055ab1d40b53b798

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>

authored by

Gusted
Gusted
and committed by
Gusted
b69755b4 5e92674e

+2 -1
+1
options/locale/locale_en-US.ini
··· 1431 1431 editor.require_signed_commit = Branch requires a signed commit 1432 1432 editor.cherry_pick = Cherry-pick %s onto: 1433 1433 editor.revert = Revert %s onto: 1434 + editor.commit_email = Commit email 1434 1435 1435 1436 commits.desc = Browse source code change history. 1436 1437 commits.commits = Commits
+1 -1
templates/repo/editor/commit_form.tmpl
··· 67 67 {{end}} 68 68 </div> 69 69 <div class="field {{if .Err_CommitMailID}}error{{end}}"> 70 - <label for="commit_mail_id">Commit email</label> 70 + <label for="commit_mail_id">{{ctx.Locale.Tr "repo.editor.commit_email"}}</label> 71 71 <select class="ui selection dropdown" name="commit_mail_id"> 72 72 {{range .CommitMails}} 73 73 <option{{if eq $.DefaultCommitMail .Email}} selected="selected"{{end}} value="{{.ID}}">{{.Email}}</option>