mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-06-04 02:02:42 +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:
@@ -118,7 +118,9 @@ void QRImageWidget::saveImage()
|
||||
return;
|
||||
QString fn = GUIUtil::getSaveFileName(
|
||||
this, tr("Save QR Code"), QString(),
|
||||
tr("PNG Image", "Name of PNG file format") + QLatin1String(" (*.png)"), nullptr);
|
||||
/*: Expanded name of the PNG file format.
|
||||
See https://en.wikipedia.org/wiki/Portable_Network_Graphics */
|
||||
tr("PNG Image") + QLatin1String(" (*.png)"), nullptr);
|
||||
if (!fn.isEmpty())
|
||||
{
|
||||
exportImage().save(fn);
|
||||
|
||||
Reference in New Issue
Block a user