add to strings

This commit is contained in:
bluepilledgreat 2024-02-03 13:25:52 +00:00
parent 635d4492aa
commit d7966f4385
3 changed files with 13 additions and 1 deletions

View File

@ -172,7 +172,7 @@ namespace Bloxstrap
if (!menuLock.IsAcquired) if (!menuLock.IsAcquired)
{ {
Frontend.ShowMessageBox( Frontend.ShowMessageBox(
"The Bloxstrap menu is already open.", Bloxstrap.Resources.Strings.Menu_MenuAlreadyRunning,
MessageBoxImage.Error MessageBoxImage.Error
); );
} }

View File

@ -2457,6 +2457,15 @@ namespace Bloxstrap.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to The Bloxstrap menu is already open..
/// </summary>
public static string Menu_MenuAlreadyRunning {
get {
return ResourceManager.GetString("Menu.MenuAlreadyRunning", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Manage and apply file mods to the Roblox game client.. /// Looks up a localized string similar to Manage and apply file mods to the Roblox game client..
/// </summary> /// </summary>

View File

@ -930,6 +930,9 @@ Selecting 'No' will ignore this warning and continue installation.</value>
<data name="Menu.Integrations.Title" xml:space="preserve"> <data name="Menu.Integrations.Title" xml:space="preserve">
<value>Integrations</value> <value>Integrations</value>
</data> </data>
<data name="Menu.MenuAlreadyRunning" xml:space="preserve">
<value>The Bloxstrap menu is already open.</value>
</data>
<data name="Menu.Mods.Description" xml:space="preserve"> <data name="Menu.Mods.Description" xml:space="preserve">
<value>Manage and apply file mods to the Roblox game client.</value> <value>Manage and apply file mods to the Roblox game client.</value>
</data> </data>