Translate UI into English and french; Extend resources and outsource hardcoded String form codebase into resources.

This commit is contained in:
OlgunR
2026-02-16 15:05:54 +01:00
parent c0b2ad0d9b
commit 676598450d
58 changed files with 12409 additions and 5445 deletions

View File

@@ -35,7 +35,7 @@ Public Class frmEnvelopeMainData
Dim oTypes = EnvelopeTypeModel.List()
If oTypes.Count = 0 Then
MsgBox("No templates in Database!", MsgBoxStyle.Exclamation, Text)
MsgBox(Resources.Envelope.No_template, MsgBoxStyle.Exclamation, Text)
Close()
Exit Sub
End If
@@ -91,7 +91,7 @@ Public Class frmEnvelopeMainData
cmbEmailToReceivers.SelectedIndex = Convert.ToInt32(Envelope.FinalEmailToReceivers)
End If
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Critical, "Unexpected Error loading form:")
MsgBox(ex.Message, MsgBoxStyle.Critical, Resources.Envelope.Unexpected_Error)
End Try