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)
{
Frontend.ShowMessageBox(
"The Bloxstrap menu is already open.",
Bloxstrap.Resources.Strings.Menu_MenuAlreadyRunning,
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>
/// Looks up a localized string similar to Manage and apply file mods to the Roblox game client..
/// </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">
<value>Integrations</value>
</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">
<value>Manage and apply file mods to the Roblox game client.</value>
</data>