Skip to content

Commit 342432e

Browse files
SimonPistachelunny
andauthored
fix(#34076):replace assgniee translation key (#34077)
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 <[email protected]>
1 parent 741b53e commit 342432e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

options/locale/locale_en-US.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1551,7 +1551,7 @@ issues.filter_project = Project
15511551
issues.filter_project_all = All projects
15521552
issues.filter_project_none = No project
15531553
issues.filter_assignee = Assignee
1554-
issues.filter_assginee_no_assignee = Assigned to nobody
1554+
issues.filter_assignee_no_assignee = Assigned to nobody
15551555
issues.filter_assignee_any_assignee = Assigned to anybody
15561556
issues.filter_poster = Author
15571557
issues.filter_user_placeholder = Search users

templates/projects/view.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"UserSearchList" $.Assignees
1414
"SelectedUserId" $.AssigneeID
1515
"TextFilterTitle" (ctx.Locale.Tr "repo.issues.filter_assignee")
16-
"TextFilterMatchNone" (ctx.Locale.Tr "repo.issues.filter_assginee_no_assignee")
16+
"TextFilterMatchNone" (ctx.Locale.Tr "repo.issues.filter_assignee_no_assignee")
1717
"TextFilterMatchAny" (ctx.Locale.Tr "repo.issues.filter_assignee_any_assignee")
1818
}}
1919
</div>

templates/repo/issue/filter_list.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
"UserSearchList" $.Assignees
9595
"SelectedUserId" $.AssigneeID
9696
"TextFilterTitle" (ctx.Locale.Tr "repo.issues.filter_assignee")
97-
"TextFilterMatchNone" (ctx.Locale.Tr "repo.issues.filter_assginee_no_assignee")
97+
"TextFilterMatchNone" (ctx.Locale.Tr "repo.issues.filter_assignee_no_assignee")
9898
"TextFilterMatchAny" (ctx.Locale.Tr "repo.issues.filter_assignee_any_assignee")
9999
}}
100100

0 commit comments

Comments
 (0)