returned the deleted field
This commit is contained in:
parent
6d37d79cc7
commit
df1c7613e8
@ -2722,6 +2722,31 @@
|
|||||||
"zh_TW": "建立桌面捷徑,啟動選取的應用程式"
|
"zh_TW": "建立桌面捷徑,啟動選取的應用程式"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"ID": "GameListContextMenuEditGameConfiguration",
|
||||||
|
"Translations": {
|
||||||
|
"ar_SA": "تعديل تكوين اللعبة",
|
||||||
|
"de_DE": "Spielkonfiguration bearbeiten",
|
||||||
|
"el_GR": "Επεξεργασία ρυθμίσεων παιχνιδιού",
|
||||||
|
"en_US": "Edit Game Configuration",
|
||||||
|
"es_ES": "Editar configuración del juego",
|
||||||
|
"fr_FR": "Modifier la configuration du jeu",
|
||||||
|
"he_IL": "ערוך את הגדרת המשחק",
|
||||||
|
"it_IT": "Modifica configurazione gioco",
|
||||||
|
"ja_JP": "ゲーム設定を編集",
|
||||||
|
"ko_KR": "게임 설정 편집",
|
||||||
|
"no_NO": "Rediger spillkonfig.",
|
||||||
|
"pl_PL": "Edytuj konfigurację gry",
|
||||||
|
"pt_BR": "Editar configuração do jogo",
|
||||||
|
"ru_RU": "Редактировать конфигурацию игры",
|
||||||
|
"sv_SE": "Redigera spelkonfiguration",
|
||||||
|
"th_TH": "แก้ไขการตั้งค่าเกม",
|
||||||
|
"tr_TR": "Oyunun yapılandırmasını düzenle",
|
||||||
|
"uk_UA": "Редагувати конфігурацію гри",
|
||||||
|
"zh_CN": "编辑游戏配置",
|
||||||
|
"zh_TW": "編輯遊戲設定"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"ID": "GameListContextMenuCreateShortcutToolTipMacOS",
|
"ID": "GameListContextMenuCreateShortcutToolTipMacOS",
|
||||||
"Translations": {
|
"Translations": {
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
ToolTip.Tip="{OnPlatform Default={ext:Locale GameListContextMenuCreateShortcutToolTip}, macOS={ext:Locale GameListContextMenuCreateShortcutToolTipMacOS}}" />
|
ToolTip.Tip="{OnPlatform Default={ext:Locale GameListContextMenuCreateShortcutToolTip}, macOS={ext:Locale GameListContextMenuCreateShortcutToolTipMacOS}}" />
|
||||||
<MenuItem
|
<MenuItem
|
||||||
Click="EditGameConfiguration_Click"
|
Click="EditGameConfiguration_Click"
|
||||||
Header="Edit Game Configuration"
|
Header="{ext:Locale GameListContextMenuEditGameConfiguration}"
|
||||||
Icon="{ext:Icon fa-solid fa-gear}"
|
Icon="{ext:Icon fa-solid fa-gear}"
|
||||||
ToolTip.Tip="{ext:Locale EditGameConfigurationToolTip}" />
|
ToolTip.Tip="{ext:Locale EditGameConfigurationToolTip}" />
|
||||||
<MenuItem
|
<MenuItem
|
||||||
|
@ -97,6 +97,24 @@
|
|||||||
Foreground="{DynamicResource FavoriteApplicationIconColor}"
|
Foreground="{DynamicResource FavoriteApplicationIconColor}"
|
||||||
IsVisible="{Binding Favorite}"
|
IsVisible="{Binding Favorite}"
|
||||||
Symbol="StarFilled" />
|
Symbol="StarFilled" />
|
||||||
|
<Grid IsVisible="{Binding !$parent[UserControl].((viewModels:MainWindowViewModel)DataContext).ShowNames}">
|
||||||
|
<Border
|
||||||
|
Margin="15,35,5,15"
|
||||||
|
HorizontalAlignment="Left"
|
||||||
|
VerticalAlignment="Bottom"
|
||||||
|
Width="90"
|
||||||
|
Height="20"
|
||||||
|
CornerRadius="4"
|
||||||
|
IsVisible="{Binding UserConfig}"
|
||||||
|
Background="{DynamicResource ThemeContentBackgroundColor}">
|
||||||
|
<TextBlock
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="{ext:Locale UserConfigurationHeader}"
|
||||||
|
TextAlignment="Center"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
</DataTemplate>
|
</DataTemplate>
|
||||||
</ListBox.ItemTemplate>
|
</ListBox.ItemTemplate>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user