From f925c183d011886e9e56224e4331ab2470ff1dd7 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Mardelle Date: Thu, 24 Nov 2011 22:18:58 +0100 Subject: [PATCH] Update a few strings for better user info --- src/clipmanager.cpp | 5 ++--- src/projectlist.h | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/clipmanager.cpp b/src/clipmanager.cpp index f4d22a5c..8937aaf4 100644 --- a/src/clipmanager.cpp +++ b/src/clipmanager.cpp @@ -280,7 +280,7 @@ void ClipManager::slotGetAudioThumbs() for (int z = (int) frame; z < (int)(frame + lengthInFrames) && producer.is_valid() && !m_abortAudioThumb; z++) { val = (int)((z - frame) / (frame + lengthInFrames) * 100.0); if (last_val != val && val > 1) { - setThumbsProgress(i18n("Creating thumbnail for %1", url.fileName()), val); + setThumbsProgress(i18n("Creating audio thumbnail for %1", url.fileName()), val); last_val = val; } producer.seek(z); @@ -303,8 +303,7 @@ void ClipManager::slotGetAudioThumbs() delete mlt_frame; } f.close(); - //TODO: post 8.2.1, change text to AUDIO thumbnails - setThumbsProgress(i18n("Creating thumbnail for %1", url.fileName()), -1); + setThumbsProgress(i18n("Creating audio thumbnail for %1", url.fileName()), -1); if (m_abortAudioThumb) { f.remove(); } else { diff --git a/src/projectlist.h b/src/projectlist.h index 423b3df9..36e43878 100644 --- a/src/projectlist.h +++ b/src/projectlist.h @@ -135,8 +135,7 @@ public: QBrush brush; QColor color; if (proxy > 0) { - proxyText = QString::number(proxy) + "% "; - proxyText.append(i18n("Generating proxy ...")); + proxyText = i18n("Proxy %1\%", proxy); brush = option.palette.highlight(); color = option.palette.color(QPalette::HighlightedText); -- 2.39.2