MS Bestätigung Einladung versendet

This commit is contained in:
SchreiberM 2023-12-04 16:15:32 +01:00
parent cb44e25fea
commit 62d88d6770
8 changed files with 32 additions and 7 deletions

View File

@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' indem Sie "*" wie unten gezeigt eingeben: ' indem Sie "*" wie unten gezeigt eingeben:
' <Assembly: AssemblyVersion("1.0.*")> ' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.3.4.0")> <Assembly: AssemblyVersion("1.3.5.0")>
<Assembly: AssemblyFileVersion("1.3.4.0")> <Assembly: AssemblyFileVersion("1.3.5.0")>

View File

@ -138,6 +138,9 @@
<data name="Envelope could not be sent" xml:space="preserve"> <data name="Envelope could not be sent" xml:space="preserve">
<value>Envelope could not be sent!</value> <value>Envelope could not be sent!</value>
</data> </data>
<data name="Envelope successfully sent" xml:space="preserve">
<value>The invitations were successfully prepared for dispatch.</value>
</data>
<data name="Error sending the envelope" xml:space="preserve"> <data name="Error sending the envelope" xml:space="preserve">
<value>Error sending the envelope:</value> <value>Error sending the envelope:</value>
</data> </data>

View File

@ -138,6 +138,9 @@
<data name="Envelope could not be sent" xml:space="preserve"> <data name="Envelope could not be sent" xml:space="preserve">
<value>Umschlag konnte nicht gesendet werden!</value> <value>Umschlag konnte nicht gesendet werden!</value>
</data> </data>
<data name="Envelope successfully sent" xml:space="preserve">
<value>Die Einladungen wurden erfolgreich zum Versand bereitgestellt.</value>
</data>
<data name="Error sending the envelope" xml:space="preserve"> <data name="Error sending the envelope" xml:space="preserve">
<value>Fehler beim Senden des Umschlags:</value> <value>Fehler beim Senden des Umschlags:</value>
</data> </data>

View File

@ -117,7 +117,7 @@ Namespace My.Resources
Return ResourceManager.GetString("Envelope already sent", resourceCulture) Return ResourceManager.GetString("Envelope already sent", resourceCulture)
End Get End Get
End Property End Property
'''<summary> '''<summary>
''' Sucht eine lokalisierte Zeichenfolge, die Umschlag konnte nicht gesendet werden! ähnelt. ''' Sucht eine lokalisierte Zeichenfolge, die Umschlag konnte nicht gesendet werden! ähnelt.
'''</summary> '''</summary>
@ -126,7 +126,24 @@ Namespace My.Resources
Return ResourceManager.GetString("Envelope could not be sent", resourceCulture) Return ResourceManager.GetString("Envelope could not be sent", resourceCulture)
End Get End Get
End Property End Property
'''<summary>
''' Sucht eine lokalisierte Zeichenfolge, die Umschlag konnte nicht gesendet werden! ähnelt.
'''</summary>
Public Shared ReadOnly Property Envelope_Invitations_Sent() As String
Get
Return ResourceManager.GetString("Envelope successfully sent", resourceCulture)
End Get
End Property
'''<summary>
''' Sucht eine lokalisierte Zeichenfolge, die Die Einladungen wurden erfolgreich zum Versand bereitgestellt. ähnelt.
'''</summary>
Public Shared ReadOnly Property Envelope_successfully_sent() As String
Get
Return ResourceManager.GetString("Envelope successfully sent", resourceCulture)
End Get
End Property
'''<summary> '''<summary>
''' Sucht eine lokalisierte Zeichenfolge, die Fehler beim Senden des Umschlags: ähnelt. ''' Sucht eine lokalisierte Zeichenfolge, die Fehler beim Senden des Umschlags: ähnelt.
'''</summary> '''</summary>

View File

@ -164,7 +164,7 @@ Namespace My.Resources
End Property End Property
'''<summary> '''<summary>
''' Sucht eine lokalisierte Zeichenfolge, die Teil signiert ähnelt. ''' Sucht eine lokalisierte Zeichenfolge, die Teil-Signiert ähnelt.
'''</summary> '''</summary>
Friend Shared ReadOnly Property EnvelopePartlySigned() As String Friend Shared ReadOnly Property EnvelopePartlySigned() As String
Get Get

View File

@ -151,7 +151,7 @@
<value>Gelöscht</value> <value>Gelöscht</value>
</data> </data>
<data name="EnvelopePartlySigned" xml:space="preserve"> <data name="EnvelopePartlySigned" xml:space="preserve">
<value>Teil signiert</value> <value>Teil-Signiert</value>
</data> </data>
<data name="EnvelopeQueued" xml:space="preserve"> <data name="EnvelopeQueued" xml:space="preserve">
<value>Umschlag in Queue</value> <value>Umschlag in Queue</value>

View File

@ -247,7 +247,7 @@
</value> </value>
</data> </data>
<data name="btnSendEnvelope.Caption" xml:space="preserve"> <data name="btnSendEnvelope.Caption" xml:space="preserve">
<value>Umschlag senden</value> <value>Einladungen versenden</value>
</data> </data>
<data name="btnSendEnvelope.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="btnSendEnvelope.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>

View File

@ -302,6 +302,8 @@ Partial Public Class frmEnvelopeEditor
If Controller.SendEnvelope() = False Then If Controller.SendEnvelope() = False Then
MsgBox(Resources.Envelope.Envelope_could_not_be_sent, MsgBoxStyle.Critical, Text) MsgBox(Resources.Envelope.Envelope_could_not_be_sent, MsgBoxStyle.Critical, Text)
Else
MsgBox(Resources.Envelope.Envelope_Invitations_Sent, MsgBoxStyle.Information, Text)
End If End If
End Sub End Sub