diff --git a/Bloxstrap/UI/Elements/Bootstrapper/CustomDialog.Utilities.cs b/Bloxstrap/UI/Elements/Bootstrapper/CustomDialog.Utilities.cs index 948b460..56875b3 100644 --- a/Bloxstrap/UI/Elements/Bootstrapper/CustomDialog.Utilities.cs +++ b/Bloxstrap/UI/Elements/Bootstrapper/CustomDialog.Utilities.cs @@ -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); }