From f1b34dfa4242c409c3687b75abfb597f16c7b18a Mon Sep 17 00:00:00 2001 From: OlgunR Date: Tue, 17 Feb 2026 16:46:43 +0100 Subject: [PATCH] Use localized status messages from Resources.Envelope Replaced hardcoded status messages with resource-based strings for "Initializing Configuration" and "Starting Application" to improve internationalization and maintainability. --- EnvelopeGenerator.Form/frmSplashScreen.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EnvelopeGenerator.Form/frmSplashScreen.vb b/EnvelopeGenerator.Form/frmSplashScreen.vb index 0c22ece8..e3ec2748 100644 --- a/EnvelopeGenerator.Form/frmSplashScreen.vb +++ b/EnvelopeGenerator.Form/frmSplashScreen.vb @@ -75,7 +75,7 @@ Public Class frmSplashScreen DB_DD_ECM = MyState.Database End If - Worker.ReportProgress(40, "Initializing Configuration") + Worker.ReportProgress(40, Resources.Envelope.Initializing_Configuration) Thread.Sleep(300) Dim oSQl = "SELECT * FROM TBDD_SQL_COMMANDS" @@ -124,7 +124,7 @@ Public Class frmSplashScreen End If MYUSER = oUser - Worker.ReportProgress(100, "Starting Application") + Worker.ReportProgress(100, Resources.Envelope.Starting_Application) Thread.Sleep(300) MyState.User = oUser