summaryrefslogtreecommitdiff
path: root/src/mobile/bookshelfmanager/installsources.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mobile/bookshelfmanager/installsources.cpp')
-rw-r--r--src/mobile/bookshelfmanager/installsources.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mobile/bookshelfmanager/installsources.cpp b/src/mobile/bookshelfmanager/installsources.cpp
index 6f6fa91..076b295 100644
--- a/src/mobile/bookshelfmanager/installsources.cpp
+++ b/src/mobile/bookshelfmanager/installsources.cpp
@@ -2,7 +2,7 @@
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
-* Copyright 1999-2014 by the BibleTime developers.
+* Copyright 1999-2016 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
@@ -52,9 +52,8 @@ void InstallSources::refreshWorks(const QStringList& sourceNames) {
break;
QString sourceName = sourceNames.at(i);
int percent = 10 + 90 *((double)i/sourceCount);
- QString title = "Refreshing " + sourceName;
+ QString title = tr("Refreshing") + " " + sourceName;
emit percentComplete(percent, title);
- qDebug() << title << percent;
sword::InstallSource source = BtInstallBackend::source(sourceName);
bool result = (m_iMgr->refreshRemoteSource(&source) == 0);
if (result) {
@@ -69,7 +68,6 @@ void InstallSources::refreshWorks(const QStringList& sourceNames) {
void InstallSources::cancel() {
m_canceled = true;
- qDebug() << "IS canceled";
}
}