i18n: unify FileDialog wildcard string annotations

This commit is contained in:
zhaoweny
2020-06-23 01:16:42 +08:00
parent 2d97f0952e
commit 85c3158e98
4 changed files with 75 additions and 75 deletions

View File

@@ -115,7 +115,7 @@ class ItemParams(wx.Panel):
with wx.FileDialog(
self, _t("Save CSV file"), "", exportFileName,
_t("CSV files (*.csv)|*.csv"), wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT
_t("CSV files") + " (*.csv)|*.csv", wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT
) as dlg:
if dlg.ShowModal() == wx.ID_CANCEL: