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.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user