mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-06-08 21:59:10 +02:00
qt: Replace disambiguation strings with translator comments
Translator comments is the right way to pass context to translators.
This commit is contained in:
@@ -336,7 +336,9 @@ void TransactionView::exportClicked()
|
||||
// CSV is currently the only supported format
|
||||
QString filename = GUIUtil::getSaveFileName(this,
|
||||
tr("Export Transaction History"), QString(),
|
||||
tr("Comma separated file", "Name of CSV file format") + QLatin1String(" (*.csv)"), nullptr);
|
||||
/*: Expanded name of the CSV file format.
|
||||
See https://en.wikipedia.org/wiki/Comma-separated_values */
|
||||
tr("Comma separated file") + QLatin1String(" (*.csv)"), nullptr);
|
||||
|
||||
if (filename.isNull())
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user