aboutsummaryrefslogtreecommitdiff
path: root/src/qt/qrimagewidget.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-05-15 16:02:43 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-05-16 01:06:22 +0300
commit8b7713365134022475e7e5d24d3ca73149bd10e1 (patch)
tree9db21518f590b023e1811e37532052ae8cd74464 /src/qt/qrimagewidget.cpp
parentc8571486364d6e9ca8c86bd1c81e230ca64f8904 (diff)
downloadbitcoin-8b7713365134022475e7e5d24d3ca73149bd10e1.tar.xz
qt: Replace disambiguation strings with translator comments
Translator comments is the right way to pass context to translators.
Diffstat (limited to 'src/qt/qrimagewidget.cpp')
-rw-r--r--src/qt/qrimagewidget.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/qt/qrimagewidget.cpp b/src/qt/qrimagewidget.cpp
index 3e1964915d..f5200bb5c0 100644
--- a/src/qt/qrimagewidget.cpp
+++ b/src/qt/qrimagewidget.cpp
@@ -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);