[#3] Services: Use .elwig.zip as export extension everywhere

This commit is contained in:
2024-07-30 12:44:21 +02:00
parent 39f93da0ba
commit 1c2e0baa68
3 changed files with 5 additions and 5 deletions

View File

@ -414,8 +414,8 @@ namespace Elwig.Services {
} else if (exportMode == ExportMode.Export) {
var d = new SaveFileDialog() {
FileName = $"Mitglieder_{DateTime.Now:yyyy-MM-dd_HH-mm-ss}_{App.ZwstId}.elwig.zip",
DefaultExt = "zip",
Filter = "ZIP-Datei (*.zip)|*.zip",
DefaultExt = ".elwig.zip",
Filter = "Elwig-Export-Datei (*.elwig.zip)|*.elwig.zip",
Title = $"{MemberList.Name} speichern unter - Elwig"
};
if (d.ShowDialog() == true) {