qt: Do not translate file extensions

This commit is contained in:
Hennadii Stepanov
2021-02-23 17:17:24 +02:00
parent 84f6c695c6
commit 88df300f20
6 changed files with 8 additions and 6 deletions

View File

@@ -295,7 +295,7 @@ void AddressBookPage::on_exportButton_clicked()
// CSV is currently the only supported format
QString filename = GUIUtil::getSaveFileName(this,
tr("Export Address List"), QString(),
tr("Comma separated file (*.csv)"), nullptr);
tr("Comma separated file", "Name of CSV file format") + QLatin1String(" (*.csv)"), nullptr);
if (filename.isNull())
return;