summaryrefslogtreecommitdiff
path: root/src/sync/googlesynchandler.cpp
diff options
context:
space:
mode:
authorPino Toscano <pino@kde.org>2013-06-07 09:54:38 +0200
committerPino Toscano <pino@kde.org>2013-06-07 09:54:38 +0200
commit43d4fc732abb294a89127ce55b80d7f78fd606c7 (patch)
treea36eee0653f737df1f8254d2f6a901c72b426cda /src/sync/googlesynchandler.cpp
parentFix behavior on unloaded sites (diff)
downloadrekonq-43d4fc732abb294a89127ce55b80d7f78fd606c7.tar.xz
i18n fixes
- remove string puzzles when possible - remove exclamation marks - remove contractions ("don't" -> "do not", etc) - lowercase "NOT" (do not shout to the user) - remove extra spaces, or add them where needed - few style/spelling fixes
Diffstat (limited to 'src/sync/googlesynchandler.cpp')
-rw-r--r--src/sync/googlesynchandler.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/sync/googlesynchandler.cpp b/src/sync/googlesynchandler.cpp
index f2e23da8..44388803 100644
--- a/src/sync/googlesynchandler.cpp
+++ b/src/sync/googlesynchandler.cpp
@@ -83,12 +83,12 @@ void GoogleSyncHandler::initialLoadAndCheck()
if (ReKonfig::syncHistory())
{
- emit syncStatus(Rekonq::History, false, i18n("Not supported!"));
+ emit syncStatus(Rekonq::History, false, i18n("Not supported"));
}
if (ReKonfig::syncHistory())
{
- emit syncStatus(Rekonq::Passwords, false, i18n("Not supported!"));
+ emit syncStatus(Rekonq::Passwords, false, i18n("Not supported"));
}
}
@@ -111,7 +111,7 @@ bool GoogleSyncHandler::syncRelativeEnabled(bool check)
void GoogleSyncHandler::syncHistory()
{
kDebug() << "Syncing history not supported!";
- emit syncStatus(Rekonq::History, false, i18n("Syncing history not supported!"));
+ emit syncStatus(Rekonq::History, false, i18n("Syncing history not supported"));
emit syncHistoryFinished(false);
}
@@ -119,7 +119,7 @@ void GoogleSyncHandler::syncHistory()
void GoogleSyncHandler::syncPasswords()
{
kDebug() << "Syncing passwords not supported!";
- emit syncStatus(Rekonq::Passwords, false, i18n("Syncing passwords not supported!"));
+ emit syncStatus(Rekonq::Passwords, false, i18n("Syncing passwords not supported"));
emit syncPasswordsFinished(false);
}
@@ -141,7 +141,7 @@ void GoogleSyncHandler::startLogin()
if (ReKonfig::syncUser().isEmpty() || ReKonfig::syncPass().isEmpty())
{
kDebug() << "No username or password!";
- emit syncStatus(Rekonq::Bookmarks, false, i18n("No username or password!"));
+ emit syncStatus(Rekonq::Bookmarks, false, i18n("No username or password"));
emit syncBookmarksFinished(false);
return;
}
@@ -161,7 +161,7 @@ void GoogleSyncHandler::loadFinished(bool ok)
if (!ok)
{
kDebug() << "Error loading: " << _webPage.mainFrame()->url();
- emit syncStatus(Rekonq::Bookmarks, false, i18n("Error loading: " + _webPage.mainFrame()->url().toEncoded()));
+ emit syncStatus(Rekonq::Bookmarks, false, i18n("Error loading: %1", _webPage.mainFrame()->url().toEncoded()));
_isSyncing = false;
return;
@@ -201,7 +201,7 @@ void GoogleSyncHandler::loadFinished(bool ok)
}
else if (path == QL1S("/ServiceLoginAuth") )
{
- emit syncStatus(Rekonq::Bookmarks, false, i18n("Login failed!"));
+ emit syncStatus(Rekonq::Bookmarks, false, i18n("Login failed"));
_isSyncing = false;
}
else if (path == QL1S("/bookmarks/mark") )
@@ -260,7 +260,7 @@ void GoogleSyncHandler::loadFinished(bool ok)
else if (path == QL1S("/Logout") )
{
//Session finished
- emit syncStatus(Rekonq::Bookmarks, true, i18n("Done!"));
+ emit syncStatus(Rekonq::Bookmarks, true, i18n("Done"));
emit syncBookmarksFinished(true);
_isSyncing = false;
}
@@ -299,7 +299,7 @@ void GoogleSyncHandler::fetchingBookmarksFinished()
{
//Add bookmark
kDebug() << "Add bookmark";
- emit syncStatus(Rekonq::Bookmarks, true, i18n("Adding bookmark "));
+ emit syncStatus(Rekonq::Bookmarks, true, i18n("Adding bookmark"));
root.addBookmark(title.isEmpty() ? url : title, KUrl(url));
manager->manager()->emitChanged(root);
}