aboutsummaryrefslogtreecommitdiff
path: root/src/qt/qrcodedialog.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-06 16:24:15 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-09 09:06:51 +0200
commit50a38550826a3c73583dd75375d80645d342ef99 (patch)
treecc9cd29219666959e7353092420ded35aa7f8b4f /src/qt/qrcodedialog.cpp
parent9e11cb53dda23a3064e756c59ba0328230b5a0e5 (diff)
downloadbitcoin-50a38550826a3c73583dd75375d80645d342ef99.tar.xz
harmonize the use of ellipsis ("...") to be used in menus, but not on buttons / update some strings to be more informative
Diffstat (limited to 'src/qt/qrcodedialog.cpp')
-rw-r--r--src/qt/qrcodedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/qrcodedialog.cpp b/src/qt/qrcodedialog.cpp
index 2a428fb79e..d8e2007a2f 100644
--- a/src/qt/qrcodedialog.cpp
+++ b/src/qt/qrcodedialog.cpp
@@ -118,7 +118,7 @@ void QRCodeDialog::on_lnMessage_textChanged(const QString &arg1)
void QRCodeDialog::on_btnSaveAs_clicked()
{
- QString fn = GUIUtil::getSaveFileName(this, tr("Save Image..."), QString(), tr("PNG Images (*.png)"));
+ QString fn = GUIUtil::getSaveFileName(this, tr("Save QR Code"), QString(), tr("PNG Images (*.png)"));
if (!fn.isEmpty())
myImage.scaled(EXPORT_IMAGE_SIZE, EXPORT_IMAGE_SIZE).save(fn);
}