diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini
index da2457ccb7..c23397904a 100644
--- a/options/locale/locale_en-US.ini
+++ b/options/locale/locale_en-US.ini
@@ -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.cherry_pick = Cherry-pick %s onto:
 editor.revert = Revert %s onto:
+editor.commit_email = Commit email
 
 commits.desc = Browse source code change history.
 commits.commits = Commits
diff --git a/templates/repo/editor/commit_form.tmpl b/templates/repo/editor/commit_form.tmpl
index fc04289b70..c42eed69a5 100644
--- a/templates/repo/editor/commit_form.tmpl
+++ b/templates/repo/editor/commit_form.tmpl
@@ -67,7 +67,7 @@
 			{{end}}
 		</div>
 		<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">
 			{{range .CommitMails}}
 				<option{{if eq $.DefaultCommitMail .Email}} selected="selected"{{end}} value="{{.ID}}">{{.Email}}</option>