mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-06-04 02:02:42 +02:00
qt: Do not translate file extensions
This commit is contained in:
@@ -120,7 +120,9 @@ void QRImageWidget::saveImage()
|
||||
{
|
||||
if (!GUIUtil::HasPixmap(this))
|
||||
return;
|
||||
QString fn = GUIUtil::getSaveFileName(this, tr("Save QR Code"), QString(), tr("PNG Image (*.png)"), nullptr);
|
||||
QString fn = GUIUtil::getSaveFileName(
|
||||
this, tr("Save QR Code"), QString(),
|
||||
tr("PNG Image", "Name of PNG file format") + QLatin1String(" (*.png)"), nullptr);
|
||||
if (!fn.isEmpty())
|
||||
{
|
||||
exportImage().save(fn);
|
||||
|
||||
Reference in New Issue
Block a user