From 740370b106e28b90e0c4c6dc34a011933fca5594 Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Thu, 27 Sep 2012 11:37:15 +0200 Subject: [PATCH 1/2] Do not translate application name, it's a brand Another reason: File system and registry names depend on it --- src/mirall/owncloudtheme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mirall/owncloudtheme.cpp b/src/mirall/owncloudtheme.cpp index 801f779a18..f3e1b7044b 100644 --- a/src/mirall/owncloudtheme.cpp +++ b/src/mirall/owncloudtheme.cpp @@ -33,7 +33,7 @@ QString ownCloudTheme::appName() const * because the value is used by QDesktopServices to find the config * file. Be aware. */ - return QApplication::translate("appname", "ownCloud"); + return QLatin1String("appname", "ownCloud"); } QString ownCloudTheme::configFileName() const From 32579dd25ad494c750f1eaffd0e4a84f1744e1d4 Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Thu, 27 Sep 2012 12:22:27 +0200 Subject: [PATCH 2/2] Brown paper bag fix. --- src/mirall/owncloudtheme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mirall/owncloudtheme.cpp b/src/mirall/owncloudtheme.cpp index f3e1b7044b..87a42b966a 100644 --- a/src/mirall/owncloudtheme.cpp +++ b/src/mirall/owncloudtheme.cpp @@ -33,7 +33,7 @@ QString ownCloudTheme::appName() const * because the value is used by QDesktopServices to find the config * file. Be aware. */ - return QLatin1String("appname", "ownCloud"); + return QLatin1String("ownCloud"); } QString ownCloudTheme::configFileName() const