mirror of https://github.com/go-gitea/gitea.git
Fix the typo on the `filter_assginee_no_assigne` key used in translations. The typo itself doesn't produce a bug (as it's there both on the code and on the locales) Side Note: Github UI is not the best to bulk change this :/ Squashing commits on the PR should be adequate. Closes #34076 . --------- Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>pull/34052/head^2
parent
741b53eb30
commit
342432e52a
|
@ -1551,7 +1551,7 @@ issues.filter_project = Project
|
||||||
issues.filter_project_all = All projects
|
issues.filter_project_all = All projects
|
||||||
issues.filter_project_none = No project
|
issues.filter_project_none = No project
|
||||||
issues.filter_assignee = Assignee
|
issues.filter_assignee = Assignee
|
||||||
issues.filter_assginee_no_assignee = Assigned to nobody
|
issues.filter_assignee_no_assignee = Assigned to nobody
|
||||||
issues.filter_assignee_any_assignee = Assigned to anybody
|
issues.filter_assignee_any_assignee = Assigned to anybody
|
||||||
issues.filter_poster = Author
|
issues.filter_poster = Author
|
||||||
issues.filter_user_placeholder = Search users
|
issues.filter_user_placeholder = Search users
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"UserSearchList" $.Assignees
|
"UserSearchList" $.Assignees
|
||||||
"SelectedUserId" $.AssigneeID
|
"SelectedUserId" $.AssigneeID
|
||||||
"TextFilterTitle" (ctx.Locale.Tr "repo.issues.filter_assignee")
|
"TextFilterTitle" (ctx.Locale.Tr "repo.issues.filter_assignee")
|
||||||
"TextFilterMatchNone" (ctx.Locale.Tr "repo.issues.filter_assginee_no_assignee")
|
"TextFilterMatchNone" (ctx.Locale.Tr "repo.issues.filter_assignee_no_assignee")
|
||||||
"TextFilterMatchAny" (ctx.Locale.Tr "repo.issues.filter_assignee_any_assignee")
|
"TextFilterMatchAny" (ctx.Locale.Tr "repo.issues.filter_assignee_any_assignee")
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -94,7 +94,7 @@
|
||||||
"UserSearchList" $.Assignees
|
"UserSearchList" $.Assignees
|
||||||
"SelectedUserId" $.AssigneeID
|
"SelectedUserId" $.AssigneeID
|
||||||
"TextFilterTitle" (ctx.Locale.Tr "repo.issues.filter_assignee")
|
"TextFilterTitle" (ctx.Locale.Tr "repo.issues.filter_assignee")
|
||||||
"TextFilterMatchNone" (ctx.Locale.Tr "repo.issues.filter_assginee_no_assignee")
|
"TextFilterMatchNone" (ctx.Locale.Tr "repo.issues.filter_assignee_no_assignee")
|
||||||
"TextFilterMatchAny" (ctx.Locale.Tr "repo.issues.filter_assignee_any_assignee")
|
"TextFilterMatchAny" (ctx.Locale.Tr "repo.issues.filter_assignee_any_assignee")
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue