diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2024-09-04 12:53:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 12:53:55 +0800 |
commit | a366af4b7a067227386184067e203091923b5b10 (patch) | |
tree | 9869271bb5657a860c7747060b0697ad8f154cb2 /options/locale | |
parent | 7eef261c3ebf9bfe37fe0dceb51bde9a79bbaf17 (diff) | |
download | gitea-a366af4b7a067227386184067e203091923b5b10.tar.gz gitea-a366af4b7a067227386184067e203091923b5b10.zip |
Remove html tags from create tag and branch translation (#31973)
Follow #31950 and Fix the display bug of #31966 .
This will only fix the English version. I will update all these
translation files in crowdin after this merged so that all the languages
can be fixed.
And all these files should be backported together.
This PR remove the bold effect around the name when creating a new tag
or branch.
Diffstat (limited to 'options/locale')
-rw-r--r-- | options/locale/locale_en-US.ini | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index a79a487392..8d51864d3d 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -2642,7 +2642,7 @@ branch.delete_desc = Deleting a branch is permanent. Although the deleted branch branch.deletion_success = Branch "%s" has been deleted. branch.deletion_failed = Failed to delete branch "%s". branch.delete_branch_has_new_commits = Branch "%s" cannot be deleted because new commits have been added after merging. -branch.create_branch = Create branch <strong>%s</strong> +branch.create_branch = Create branch %s branch.create_from = from "%s" branch.create_success = Branch "%s" has been created. branch.branch_already_exists = Branch "%s" already exists in this repository. @@ -2668,7 +2668,7 @@ branch.new_branch = Create new branch branch.new_branch_from = Create new branch from "%s" branch.renamed = Branch %s was renamed to %s. -tag.create_tag = Create tag <strong>%s</strong> +tag.create_tag = Create tag %s tag.create_tag_operation = Create tag tag.confirm_create_tag = Create tag tag.create_tag_from = Create new tag from "%s" |