[#3] Services: Update 'upload successful' message
All checks were successful
Test / Run tests (push) Successful in 2m24s

This commit is contained in:
2024-07-27 23:53:59 +02:00
parent 53d3affefe
commit 38315cd928
2 changed files with 2 additions and 2 deletions

View File

@ -604,7 +604,7 @@ namespace Elwig.Services {
} else {
await ElwigData.Export(path, list, filterNames);
await Utils.UploadExportData(path, App.Config.SyncUrl, App.Config.SyncUsername, App.Config.SyncPassword);
MessageBox.Show($"Lieferungen erfolgreich hochgeladen!", "Lieferungen hochgeladen",
MessageBox.Show($"Hochladen von {list.Count} Lieferungen erfolgreich!", "Lieferungen hochgeladen",
MessageBoxButton.OK, MessageBoxImage.Information);
}
} catch (Exception exc) {

View File

@ -450,7 +450,7 @@ namespace Elwig.Services {
} else {
await ElwigData.Export(path, list, filterNames);
await Utils.UploadExportData(path, App.Config.SyncUrl, App.Config.SyncUsername, App.Config.SyncPassword);
MessageBox.Show($"Mitglieder erfolgreich hochgeladen!", "Mitglieder hochgeladen",
MessageBox.Show($"Hochladen von {list.Count} Mitgliedern erfolgreich!", "Mitglieder hochgeladen",
MessageBoxButton.OK, MessageBoxImage.Information);
}
} catch (Exception exc) {