smol tweaks

This commit is contained in:
Jonathan Jenne 2020-03-11 12:19:37 +01:00
parent 0d4c6192dd
commit 50713e61b6
3 changed files with 4112 additions and 2264 deletions

View File

@ -865,7 +865,7 @@ Partial Class frmAdministration
resources.ApplyResources(Me.XtraTabControl3, "XtraTabControl3")
Me.XtraTabControl3.Name = "XtraTabControl3"
Me.XtraTabControl3.SelectedTabPage = Me.XtraTabPage1
Me.XtraTabControl3.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPage1, Me.XtraTabPage2})
Me.XtraTabControl3.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPage2, Me.XtraTabPage1})
'
'XtraTabPage1
'

File diff suppressed because it is too large Load Diff

View File

@ -1010,9 +1010,9 @@ Public Class frmAdministration
Dim result As MsgBoxResult
If USER_LANGUAGE = "de-DE" Then
result = MessageBox.Show("Sind Sie sicher dass Sie diese Dokumentart löschen wollen?", "Bestätigung erforderlich:", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
result = MessageBox.Show("Sind Sie sicher dass Sie dieses Profil löschen wollen?", Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question)
Else
result = MessageBox.Show("Are you sure you want to delete this documenttype", "Confirmation needed:", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
result = MessageBox.Show("Are you sure you want to delete this profile?", Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question)
End If
If result = MsgBoxResult.Yes Then
@ -1023,9 +1023,9 @@ Public Class frmAdministration
If USER_LANGUAGE = "de-DE" Then
MsgBox("Die Dokumentart wurde erfolgreich gelöscht!", MsgBoxStyle.Information)
MsgBox("Das Profil wurde erfolgreich gelöscht!", MsgBoxStyle.Information)
Else
MsgBox("Documenttype successfully deleted!", MsgBoxStyle.Information)
MsgBox("Profile successfully deleted!", MsgBoxStyle.Information)
End If
End If