diff --git a/Global_Indexer/frmIndex.vb b/Global_Indexer/frmIndex.vb index 9876eb8..210159e 100644 --- a/Global_Indexer/frmIndex.vb +++ b/Global_Indexer/frmIndex.vb @@ -2405,7 +2405,12 @@ Public Class frmIndex Next Me.Cursor = Cursors.Default If err = False Then - MsgBox("Alle Dateien wurden mit Multiindexing erfolgreich verarbeitet!", MsgBoxStyle.Information, "Erfolgsmeldung:") + If USER_LANGUAGE = "de-DE" Then + MsgBox("Alle Dateien wurden mit Multiindexing erfolgreich verarbeitet!", MsgBoxStyle.Information, "Erfolgsmeldung:") + Else + MsgBox("All files were successfully processed through Multiindexing", MsgBoxStyle.Information, "Success") + End If + DTACTUAL_FILES.Clear() Me.Close() End If @@ -2415,7 +2420,11 @@ Public Class frmIndex If WORK_FILE() = True Then Me.Cursor = Cursors.Default If My.Settings.Show_IndexResult = True Then - MsgBox("Die Datei wurde erfolgreich verarbeitet!" & vbNewLine & "Ablagepfad:" & vbNewLine & CURRENT_NEWFILENAME, MsgBoxStyle.Information, "Erfolgsmeldung") + If USER_LANGUAGE = "de-DE" Then + MsgBox("Die Datei wurde erfolgreich verarbeitet!" & vbNewLine & "Ablagepfad:" & vbNewLine & CURRENT_NEWFILENAME, MsgBoxStyle.Information, "Erfolgsmeldung") + Else + MsgBox("File sucessfully processed!" & vbNewLine & "Path:" & vbNewLine & CURRENT_NEWFILENAME, MsgBoxStyle.Information, "Success") + End If End If Me.Close()