diff options
author | Gehad elrobey <gehadelrobey@gmail.com> | 2015-02-27 03:07:25 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-27 06:31:12 +0100 |
commit | 90d68ead31e5471549eb4a537e3714e1eead8f86 (patch) | |
tree | 1e42b6f1736a50fded4ed5ebdffe61407ac5064f /qt-ui/divelogexportdialog.cpp | |
parent | f61b59d961a5188dde3121ce83af055421fa82b0 (diff) | |
download | subsurface-90d68ead31e5471549eb4a537e3714e1eead8f86.tar.gz |
Show translated String.
Translated notifications are always better.
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelogexportdialog.cpp')
-rw-r--r-- | qt-ui/divelogexportdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/divelogexportdialog.cpp b/qt-ui/divelogexportdialog.cpp index ff8317062..2237fb908 100644 --- a/qt-ui/divelogexportdialog.cpp +++ b/qt-ui/divelogexportdialog.cpp @@ -315,7 +315,7 @@ void DiveLogExportDialog::on_buttonBox_accepted() // the non XSLT exports are called directly above, the XSLT based ons are called here if (!stylesheet.isEmpty()) { future = QtConcurrent::run(export_dives_xslt, filename.toUtf8(), ui->exportSelected->isChecked(), ui->CSVUnits_2->currentIndex(), stylesheet.toUtf8()); - MainWindow::instance()->getNotificationWidget()->showNotification("Exporting...", KMessageWidget::Information); + MainWindow::instance()->getNotificationWidget()->showNotification(tr("Please Wait, Exporting..."), KMessageWidget::Information); MainWindow::instance()->getNotificationWidget()->setFuture(future); } } |