Übersetzungen ergänzt

This commit is contained in:
2023-12-07 14:00:59 +01:00
parent 2d49e4704d
commit cd7af973a1
18 changed files with 1975 additions and 1414 deletions

View File

@@ -23,7 +23,7 @@ Partial Public Class frmFieldEditor
Public Property SelectedReceiver As EnvelopeReceiver = Nothing
Public Property State As State
Private Const SIGNATURE_LABEL = "Signatur"
Private SIGNATURE_LABEL As String = Resources.Envelope.Signature '"Signatur"
Private Const SIGNATURE_WIDTH As Single = 1
Private Const SIGNATURE_HEIGHT As Single = 0.5
@@ -35,7 +35,7 @@ Partial Public Class frmFieldEditor
LogConfig = New LogConfig(LogConfig.PathType.CustomPath, Application.StartupPath, CompanyName:="Digital Data", ProductName:="EnvelopeGenerator")
Logger = LogConfig.GetLogger()
Me.Text = State.DbConfig.ExternalProgramName + " - Signatur-Editor"
Me.Text = State.DbConfig.ExternalProgramName + " - " + Resources.Envelope.Signature_Editor
If Document Is Nothing Then
Throw New ArgumentNullException("Document")
@@ -236,7 +236,7 @@ Partial Public Class frmFieldEditor
Exit Sub
End If
If MsgBox("Wollen Sie die Signatur löschen?", MsgBoxStyle.YesNo Or MsgBoxStyle.Question, Text) = DialogResult.Yes Then
If MsgBox(Resources.Envelope.Do_you_want_to_delete_the_signature, MsgBoxStyle.YesNo Or MsgBoxStyle.Question, Text) = DialogResult.Yes Then
Dim oAnnotation = GDViewer.GetAnnotationFromIdx(oSelected)
Dim oElement = Controller.GetElement(oAnnotation)