diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2018-07-13 20:46:45 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-07-15 09:38:12 -0700 |
commit | 669277d49004fefc320906297a1c08a26e6d99d7 (patch) | |
tree | ef3e8b0c510f39bf80753838d5955314958a8c13 /desktop-widgets/findmovedimagesdialog.cpp | |
parent | 80761beb936903d7f0017c54be070b4ed2e4eaa2 (diff) | |
download | subsurface-669277d49004fefc320906297a1c08a26e6d99d7.tar.gz |
UI change of "images"/"photo" to "media" or "media files"
This changes the above mentioned terms everywhere in the UI to
reflect the fact that Subsurface now also supports video files on top
of image files.
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'desktop-widgets/findmovedimagesdialog.cpp')
-rw-r--r-- | desktop-widgets/findmovedimagesdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop-widgets/findmovedimagesdialog.cpp b/desktop-widgets/findmovedimagesdialog.cpp index 18a9565b1..32f885fca 100644 --- a/desktop-widgets/findmovedimagesdialog.cpp +++ b/desktop-widgets/findmovedimagesdialog.cpp @@ -170,7 +170,7 @@ void FindMovedImagesDialog::on_scanButton_clicked() // TODO: is lastUsedImageDir really well-placed in DiveListView? QString dirName = QFileDialog::getExistingDirectory(this, - tr("Traverse image directories"), + tr("Traverse media directories"), DiveListView::lastUsedImageDir(), QFileDialog::ShowDirsOnly); if (dirName.isEmpty()) @@ -251,7 +251,7 @@ void FindMovedImagesDialog::searchDone() stopScanning = 0; } if (matches.isEmpty()) { - text += "<i>" + tr("No matching images found") + "</i>"; + text += "<i>" + tr("No matching media files found") + "</i>"; } else { QString matchesText; for (const Match &match: matches) { @@ -263,9 +263,9 @@ void FindMovedImagesDialog::searchDone() } int numUnchanged = matches.size() - numChanged; if (numUnchanged > 0) - text += tr("Found <b>%1</b> images at their current place.").arg(numUnchanged) + "<br/>"; + text += tr("Found <b>%1</b> media files at their current place.").arg(numUnchanged) + "<br/>"; if (numChanged > 0) { - text += tr("Found <b>%1</b> images at new locations:").arg(numChanged) + "<br/>"; + text += tr("Found <b>%1</b> media files at new locations:").arg(numChanged) + "<br/>"; text += matchesText; } } |