diff options
author | Tim Wootton <tim@tee-jay.demon.co.uk> | 2014-07-11 00:06:44 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-07-10 16:26:54 -0700 |
commit | 2db9c97530e8f12893d1db7af8342a74c9808c0a (patch) | |
tree | d950d12236a873f0c306e739aadab91bb04960a2 /qt-ui | |
parent | 8e7b7fafdaf7c4f91038c57088e34e0f67362357 (diff) | |
download | subsurface-2db9c97530e8f12893d1db7af8342a74c9808c0a.tar.gz |
Add diveloexportdialog explaination strings for translation
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/divelogexportdialog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qt-ui/divelogexportdialog.cpp b/qt-ui/divelogexportdialog.cpp index 47795ec0a..1ff07862e 100644 --- a/qt-ui/divelogexportdialog.cpp +++ b/qt-ui/divelogexportdialog.cpp @@ -55,15 +55,15 @@ DiveLogExportDialog::~DiveLogExportDialog() void DiveLogExportDialog::showExplanation() { if (ui->exportUDDF->isChecked()) { - ui->description->setText("Generic format that is used for data exchange between a variety of diving related programs."); + ui->description->setText(tr("Generic format that is used for data exchange between a variety of diving related programs.")); } else if (ui->exportCSV->isChecked()) { - ui->description->setText("Comma separated values that include the most relevant information of the dive profile."); + ui->description->setText(tr("Comma separated values that include the most relevant information of the dive profile.")); } else if (ui->exportDivelogs->isChecked()) { - ui->description->setText("Send the dive data to divelogs.de website."); + ui->description->setText(tr("Send the dive data to divelogs.de website.")); } else if (ui->exportWorldMap->isChecked()) { - ui->description->setText("HTML export of the dive locations, visualized on a world map."); + ui->description->setText(tr("HTML export of the dive locations, visualized on a world map.")); } else if (ui->exportSubsurfaceXML->isChecked()) { - ui->description->setText("Subsurface native XML format."); + ui->description->setText(tr("Subsurface native XML format.")); } } |