harmonize the use of ellipsis ("...") to be used in menus, but not on buttons / update some strings to be more informative

This commit is contained in:
Philip Kaufmann
2012-05-06 16:24:15 +02:00
parent 9e11cb53dd
commit 50a3855082
5 changed files with 9 additions and 9 deletions

View File

@@ -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);
}