aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2023-05-05 02:46:47 +0800
committerGitHub <noreply@github.com>2023-05-04 14:46:47 -0400
commit747e9f735cfe654a1cb7cd4babf0689f5a978cb7 (patch)
treec15aea7fa564a51ce92eff232fa019de3bad1c97
parent7abe958f5b507efa676fb3b2e27d30517f6d1908 (diff)
downloadgitea-747e9f735cfe654a1cb7cd4babf0689f5a978cb7.tar.gz
gitea-747e9f735cfe654a1cb7cd4babf0689f5a978cb7.zip
Fix incorrectly quoted translation (#24514)
Looks like crowdin cannot recognize a value starting with a double quote but not end with a double quote.
-rw-r--r--options/locale/locale_en-US.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini
index 83b978bee5..a90c236944 100644
--- a/options/locale/locale_en-US.ini
+++ b/options/locale/locale_en-US.ini
@@ -1181,7 +1181,7 @@ editor.filename_is_invalid = The filename is invalid: "%s".
editor.branch_does_not_exist = Branch "%s" does not exist in this repository.
editor.branch_already_exists = Branch "%s" already exists in this repository.
editor.directory_is_a_file = Directory name "%s" is already used as a filename in this repository.
-editor.file_is_a_symlink = "%s" is a symbolic link. Symbolic links cannot be edited in the web editor
+editor.file_is_a_symlink = `"%s" is a symbolic link. Symbolic links cannot be edited in the web editor`
editor.filename_is_a_directory = Filename "%s" is already used as a directory name in this repository.
editor.file_editing_no_longer_exists = The file being edited, "%s", no longer exists in this repository.
editor.file_deleting_no_longer_exists = The file being deleted, "%s", no longer exists in this repository.