add version string format

This commit is contained in:
bluepilledgreat 2025-01-24 14:21:55 +00:00
parent 5a8e7dd609
commit 167a8cd38f

View File

@ -193,6 +193,10 @@ namespace Bloxstrap.UI.Elements.Bootstrapper
return text; // can't be translated (not in the correct format)
string resourceName = text[1..^1];
if (resourceName == "Version")
return App.Version;
return Strings.ResourceManager.GetStringSafe(resourceName);
}