diff options
author | zeripath <art27@cantab.net> | 2020-09-06 17:24:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-06 12:24:24 -0400 |
commit | f727e3e1c9c3c73fa0b00d0ebaf373488ac349f0 (patch) | |
tree | aa2eb0ef1cc802ee50337f1701b0c0f7b8857a21 | |
parent | 3408fb73b67a4ef4687fa95098bc476f486fe220 (diff) | |
download | gitea-f727e3e1c9c3c73fa0b00d0ebaf373488ac349f0.tar.gz gitea-f727e3e1c9c3c73fa0b00d0ebaf373488ac349f0.zip |
Fix editor.commit_empty_file_text locale string (#12744)
editor.commit_empty_file_text should read `about to commit`
not `about commit`
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
-rw-r--r-- | options/locale/locale_en-US.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index 91c1cbd8b2..9dd49b06c8 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -833,7 +833,7 @@ editor.file_deleting_no_longer_exists = The file being deleted, '%s', no longer editor.file_changed_while_editing = The file contents have changed since you started editing. <a target="_blank" rel="noopener noreferrer" href="%s">Click here</a> to see them or <strong>Commit Changes again</strong> to overwrite them. editor.file_already_exists = A file named '%s' already exists in this repository. editor.commit_empty_file_header = Commit an empty file -editor.commit_empty_file_text = The file you're about commit is empty. Proceed? +editor.commit_empty_file_text = The file you're about to commit is empty. Proceed? editor.no_changes_to_show = There are no changes to show. editor.fail_to_update_file = Failed to update/create file '%s' with error: %v editor.push_rejected_no_message = The change was rejected by the server without a message. Please check githooks. |