Fix missing i18n in FFlag add dialog

This commit is contained in:
pizzaboxer 2024-06-19 20:49:24 +01:00
parent 339ae5301e
commit 42725102ee
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8
3 changed files with 13 additions and 1 deletions

View File

@ -305,6 +305,15 @@ namespace Bloxstrap.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Add single.
/// </summary>
public static string Common_AddSingle {
get {
return ResourceManager.GetString("Common.AddSingle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Browse.
/// </summary>

View File

@ -202,6 +202,9 @@ Your ReShade configuration files will still be saved, and you can locate them by
<data name="Bootstrapper.WMFNotFound" xml:space="preserve">
<value>Roblox requires the use of Windows Media Foundation components. You appear to be missing them, likely because you are using an N edition of Windows. Please install them first, and then launch Roblox.</value>
</data>
<data name="Common.AddSingle" xml:space="preserve">
<value>Add single</value>
</data>
<data name="Common.Browse" xml:space="preserve">
<value>Browse</value>
</data>

View File

@ -30,7 +30,7 @@
<ui:TitleBar Grid.Row="0" Grid.ColumnSpan="2" Padding="8" Title="{x:Static resources:Strings.Dialog_AddFastFlag_Title}" ShowMinimize="False" ShowMaximize="False" CanMaximize="False" KeyboardNavigation.TabNavigation="None" />
<TabControl x:Name="Tabs" Grid.Row="1" Margin="16">
<TabItem Header="Add single">
<TabItem Header="{x:Static resources:Strings.Common_AddSingle}">
<Grid Grid.Row="1" Margin="16">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />