[ci skip] chore: UI: Add localization key for LDN Game Viewer filters dropdown button heading

This commit is contained in:
GreemDev
2025-08-30 22:13:38 -05:00
parent 01a9b636af
commit 7347ee2212
2 changed files with 33 additions and 8 deletions

View File

@@ -24518,7 +24518,32 @@
}
},
{
"ID": "LdnGameListOnlyShowPublicGames",
"ID": "LdnGameListFiltersHeading",
"Translations": {
"ar_SA": "",
"de_DE": "",
"el_GR": "",
"en_US": "Filters",
"es_ES": "",
"fr_FR": "",
"he_IL": "",
"it_IT": "",
"ja_JP": "",
"ko_KR": "",
"no_NO": "",
"pl_PL": "",
"pt_BR": "",
"ru_RU": "",
"sv_SE": "",
"th_TH": "",
"tr_TR": "",
"uk_UA": "",
"zh_CN": "",
"zh_TW": ""
}
},
{
"ID": "LdnGameListFiltersOnlyShowPublicGames",
"Translations": {
"ar_SA": "",
"de_DE": "",
@@ -24543,7 +24568,7 @@
}
},
{
"ID": "LdnGameListOnlyShowJoinableGames",
"ID": "LdnGameListFiltersOnlyShowJoinableGames",
"Translations": {
"ar_SA": "",
"de_DE": "",

View File

@@ -115,7 +115,7 @@
Margin="10, 0, 148, 0"
HorizontalAlignment="Right"
VerticalAlignment="Center"
Content="Filters"
Content="{ext:Locale LdnGameListFiltersHeading}"
DockPanel.Dock="Right">
<DropDownButton.Flyout>
<Flyout Placement="Bottom">
@@ -124,10 +124,10 @@
<TextBlock Text="{ext:Locale CompatibilityListOnlyShowOwnedGames}" />
</CheckBox>
<CheckBox IsChecked="{Binding OnlyShowPublicGames}">
<TextBlock Text="{ext:Locale LdnGameListOnlyShowPublicGames}" />
<TextBlock Text="{ext:Locale LdnGameListFiltersOnlyShowPublicGames}" />
</CheckBox>
<CheckBox IsChecked="{Binding OnlyShowJoinableGames}">
<TextBlock Text="{ext:Locale LdnGameListOnlyShowJoinableGames}" />
<TextBlock Text="{ext:Locale LdnGameListFiltersOnlyShowJoinableGames}" />
</CheckBox>
</StackPanel>
</Flyout>
@@ -213,7 +213,7 @@
Margin="10, 5, 20, 5"
HorizontalAlignment="Right"
VerticalAlignment="Center"
Content="Filters"
Content="{ext:Locale LdnGameListFiltersHeading}"
DockPanel.Dock="Right">
<DropDownButton.Flyout>
<Flyout Placement="Bottom">
@@ -222,10 +222,10 @@
<TextBlock Text="{ext:Locale CompatibilityListOnlyShowOwnedGames}" />
</CheckBox>
<CheckBox IsChecked="{Binding OnlyShowPublicGames}">
<TextBlock Text="{ext:Locale LdnGameListOnlyShowPublicGames}" />
<TextBlock Text="{ext:Locale LdnGameListFiltersOnlyShowPublicGames}" />
</CheckBox>
<CheckBox IsChecked="{Binding OnlyShowJoinableGames}">
<TextBlock Text="{ext:Locale LdnGameListOnlyShowJoinableGames}" />
<TextBlock Text="{ext:Locale LdnGameListFiltersOnlyShowJoinableGames}" />
</CheckBox>
</StackPanel>
</Flyout>