[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [choqok] /: i18n fixes
From:       Pino Toscano <pino () kde ! org>
Date:       2014-01-19 15:41:36
Message-ID: E1W4uVE-0005tm-3G () scm ! kde ! org
[Download RAW message or body]

Git commit ad3346938e060dca0202c3de93163d235e61b662 by Pino Toscano.
Committed on 19/01/2014 at 15:41.
Pushed by pino into branch 'master'.

i18n fixes

- improve capitalization
- add few contexts where needed
- improve wording in few messages
- spell "Twitter" correctly

M  +1    -1    choqok/config/appearance/appearanceconfig_base.ui
M  +1    -1    choqok/config/behavior/behaviorconfig_shorten.cpp
M  +2    -2    helperlibs/twitterapihelper/twitterapimicroblog.cpp
M  +1    -1    libchoqok/passwordmanager.cpp
M  +1    -1    libchoqok/ui/quickpost.cpp
M  +2    -2    libchoqok/ui/textbrowser.cpp
M  +1    -1    microblogs/ocs/ocsconfigurebase.ui
M  +2    -2    microblogs/pumpio/pumpioeditaccountwidget.ui
M  +1    -1    microblogs/pumpio/pumpiomicroblog.cpp
M  +1    -1    microblogs/pumpio/pumpiopostwidget.cpp
M  +2    -2    microblogs/twitter/twittereditaccount_base.ui
M  +2    -2    microblogs/twitter/twitterlistdialog_base.ui
M  +1    -1    plugins/betternotify/notifyprefs.ui
M  +3    -3    plugins/filter/addeditfilter_base.ui
M  +2    -2    plugins/filter/filterprefs.ui
M  +2    -2    plugins/shorteners/bit_ly/bit_ly.cpp
M  +1    -1    plugins/shorteners/bit_ly/bit_ly_config.cpp
M  +2    -2    plugins/shorteners/bit_ly/bit_ly_prefs.ui
M  +4    -4    plugins/shorteners/goo_gl/goo_gl.cpp
M  +3    -3    plugins/shorteners/is_gd/is_gd.cpp
M  +2    -2    plugins/shorteners/three_ly/three_ly.cpp
M  +1    -1    plugins/translator/translator.cpp
M  +1    -1    plugins/uploaders/mobypicture/mobypictureconfig.cpp
M  +1    -1    plugins/uploaders/posterous/posterousconfig.cpp
M  +1    -1    plugins/uploaders/twitgoo/twitgooconfig.cpp
M  +1    -1    plugins/uploaders/twitpic/twitpicconfig.cpp

http://commits.kde.org/choqok/ad3346938e060dca0202c3de93163d235e61b662

diff --git a/choqok/config/appearance/appearanceconfig_base.ui \
b/choqok/config/appearance/appearanceconfig_base.ui index 734bf1b..66c7f63 100644
--- a/choqok/config/appearance/appearanceconfig_base.ui
+++ b/choqok/config/appearance/appearanceconfig_base.ui
@@ -73,7 +73,7 @@
             <bool>false</bool>
            </property>
            <property name="text">
-            <string>Post Font:</string>
+            <string>Post font:</string>
            </property>
           </widget>
          </item>
diff --git a/choqok/config/behavior/behaviorconfig_shorten.cpp \
b/choqok/config/behavior/behaviorconfig_shorten.cpp index 63aadfc..a529c53 100644
--- a/choqok/config/behavior/behaviorconfig_shorten.cpp
+++ b/choqok/config/behavior/behaviorconfig_shorten.cpp
@@ -79,7 +79,7 @@ void BehaviorConfig_Shorten::load()
 {
     QList<KPluginInfo> plugins = Choqok::PluginManager::self()->availablePlugins("Shorteners");
     shortenPlugins->clear();
-    shortenPlugins->addItem( i18n("None"), QLatin1String("none") );
+    shortenPlugins->addItem( i18nc("No shortener service", "None"), QLatin1String("none") );
     foreach(const KPluginInfo& plugin, plugins){
         shortenPlugins->addItem( KIcon(plugin.icon()), plugin.name(), plugin.pluginName());
         availablePlugins.insert(plugin.pluginName(), plugin);
diff --git a/helperlibs/twitterapihelper/twitterapimicroblog.cpp \
b/helperlibs/twitterapihelper/twitterapimicroblog.cpp index 8878eea..f0c8296 100644
--- a/helperlibs/twitterapihelper/twitterapimicroblog.cpp
+++ b/helperlibs/twitterapihelper/twitterapimicroblog.cpp
@@ -697,7 +697,7 @@ void TwitterApiMicroBlog::requestFriendsScreenName(TwitterApiAccount* theAccount
     mJobsAccount[job] = theAccount;
     connect( job, SIGNAL( result( KJob* ) ), this, SLOT( slotRequestFriendsScreenName(KJob*) ) );
     job->start();
-    Choqok::UI::Global::mainWindow()->showStatusMessage( i18n("Updating friends list for account %1 \
...", theAccount->username()) ); +    Choqok::UI::Global::mainWindow()->showStatusMessage( i18n("Updating \
friends list for account %1...", theAccount->username()) );  }
 
 void TwitterApiMicroBlog::slotRequestFriendsScreenName(KJob* job)
@@ -809,7 +809,7 @@ void TwitterApiMicroBlog::slotRequestTimeline ( KJob *job )
     if ( job->error() ) {
         kDebug() << "Job Error: " << job->errorString();
         emit error( theAccount, CommunicationError,
-                    i18n("Timeline update failed, %1", job->errorString()), Low );
+                    i18n("Timeline update failed: %1", job->errorString()), Low );
         return;
     }
     QString type = mRequestTimelineMap.take(job);
diff --git a/libchoqok/passwordmanager.cpp b/libchoqok/passwordmanager.cpp
index bb56501..6ad9c7c 100644
--- a/libchoqok/passwordmanager.cpp
+++ b/libchoqok/passwordmanager.cpp
@@ -70,7 +70,7 @@ public:
             cfg = new KConfig( "choqok/secretsrc", KConfig::NoGlobals, "data" );
             conf = new KConfigGroup(cfg, QString::fromLatin1( "Secrets" ));
             KMessageBox::information(Choqok::UI::Global::mainWindow(),
-                               i18n("Cannot open KDE Wallet manager, your secrets will be stored as \
plain text, install KWallet to fix this."), QString(), "DontShowKWalletProblem", +                        \
i18n("Cannot open KDE Wallet manager, your secrets will be stored as plain text. You can install KWallet \
to fix this."), QString(), "DontShowKWalletProblem",  KMessageBox::Dangerous );
         }
         return false;
diff --git a/libchoqok/ui/quickpost.cpp b/libchoqok/ui/quickpost.cpp
index b68c077..0d1deb5 100644
--- a/libchoqok/ui/quickpost.cpp
+++ b/libchoqok/ui/quickpost.cpp
@@ -89,7 +89,7 @@ void QuickPost::setupUi()
     this->setMainWidget( wdg );
 
     this->resize( Choqok::BehaviorSettings::quickPostDialogSize() );
-    d->all = new QCheckBox( i18n("All"), this);
+    d->all = new QCheckBox( i18nc("All accounts", "All"), this);
     d->comboAccounts = new KComboBox(this);
     d->attach = new KPushButton(KIcon("mail-attachment"), QString(), this);
     d->attach->setMaximumWidth(d->attach->height());
diff --git a/libchoqok/ui/textbrowser.cpp b/libchoqok/ui/textbrowser.cpp
index 0d719f8..756f1a5 100644
--- a/libchoqok/ui/textbrowser.cpp
+++ b/libchoqok/ui/textbrowser.cpp
@@ -109,7 +109,7 @@ void TextBrowser::resizeEvent(QResizeEvent* e)
 void TextBrowser::contextMenuEvent(QContextMenuEvent* event)
 {
     KMenu *menu = new KMenu(this);
-    KAction *copy = new KAction( i18n("Copy"), this );
+    KAction *copy = new KAction( i18nc("Copy text", "Copy"), this );
 //     copy->setShortcut( KShortcut( Qt::ControlModifier | Qt::Key_C ) );
     connect( copy, SIGNAL(triggered(bool)), SLOT(slotCopyPostContent()) );
     menu->addAction(copy);
@@ -120,7 +120,7 @@ void TextBrowser::contextMenuEvent(QContextMenuEvent* event)
         connect( copyLink, SIGNAL(triggered(bool)), SLOT(slotCopyLink()) );
         menu->addAction(copyLink);
     }
-    KAction *selectAll = new KAction(i18n("Select All"), this);
+    KAction *selectAll = new KAction(i18nc("Select all text", "Select All"), this);
 //     selectAll->setShortcut( KShortcut( Qt::ControlModifier | Qt::Key_A ) );
     connect( selectAll, SIGNAL(triggered(bool)), SLOT(selectAll()) );
     menu->addAction(selectAll);
diff --git a/microblogs/ocs/ocsconfigurebase.ui b/microblogs/ocs/ocsconfigurebase.ui
index acc0b42..ceacd1c 100644
--- a/microblogs/ocs/ocsconfigurebase.ui
+++ b/microblogs/ocs/ocsconfigurebase.ui
@@ -80,7 +80,7 @@ p, li { white-space: pre-wrap; }
       <item>
        <widget class="QLabel" name="label_2">
         <property name="text">
-         <string>You can manage Social Desktop providers in KDE Social Desktop configurations.</string>
+         <string>You can manage Social Desktop providers in the KDE Social Desktop \
configuration.</string>  </property>
         <property name="wordWrap">
          <bool>true</bool>
diff --git a/microblogs/pumpio/pumpioeditaccountwidget.ui b/microblogs/pumpio/pumpioeditaccountwidget.ui
index 1abacde..5e5ecb1 100644
--- a/microblogs/pumpio/pumpioeditaccountwidget.ui
+++ b/microblogs/pumpio/pumpioeditaccountwidget.ui
@@ -140,10 +140,10 @@ p, li { white-space: pre-wrap; }
           <item row="2" column="0" colspan="2">
            <widget class="KPushButton" name="kcfg_authorize">
             <property name="toolTip">
-             <string>Verify Credentials</string>
+             <string>Verify credentials</string>
             </property>
             <property name="text">
-             <string>&amp;Authenticate with Pump.io service</string>
+             <string>&amp;Authenticate with Pump.io Service</string>
             </property>
             <property name="icon">
              <iconset theme="object-locked">
diff --git a/microblogs/pumpio/pumpiomicroblog.cpp b/microblogs/pumpio/pumpiomicroblog.cpp
index 8bf917c..909b9cd 100644
--- a/microblogs/pumpio/pumpiomicroblog.cpp
+++ b/microblogs/pumpio/pumpiomicroblog.cpp
@@ -655,7 +655,7 @@ void PumpIOMicroBlog::slotFavorite(KJob* job)
     if (job->error()) {
         kDebug() << "Job Error: " << job->errorString();
         emit error(theAccount, Choqok::MicroBlog::CommunicationError,
-                   i18n("Cannot set the post as (un)favorite. %1", job->errorString()));
+                   i18n("Cannot set/unset the post as favorite. %1", job->errorString()));
     } else {
         post->isFavorited = !post->isFavorited;
         emit favorite(theAccount, post);
diff --git a/microblogs/pumpio/pumpiopostwidget.cpp b/microblogs/pumpio/pumpiopostwidget.cpp
index 993b811..ba24ea9 100644
--- a/microblogs/pumpio/pumpiopostwidget.cpp
+++ b/microblogs/pumpio/pumpiopostwidget.cpp
@@ -115,7 +115,7 @@ QString PumpIOPostWidget::generateSign()
 
         if (!post->cc.isEmpty()) {
             ss += " - ";
-            ss += i18n("Cc:") + ' ';
+            ss += i18n("CC:") + ' ';
 
             Q_FOREACH (const QString& id, post->cc) {
                 if (id == "http://activityschema.org/collection/public") {
diff --git a/microblogs/twitter/twittereditaccount_base.ui \
b/microblogs/twitter/twittereditaccount_base.ui index ff8dfb0..928ee40 100644
--- a/microblogs/twitter/twittereditaccount_base.ui
+++ b/microblogs/twitter/twittereditaccount_base.ui
@@ -148,10 +148,10 @@ p, li { white-space: pre-wrap; }
           <item row="2" column="0" colspan="2">
            <widget class="KPushButton" name="kcfg_authorize">
             <property name="toolTip">
-             <string>Verify Credentials</string>
+             <string>Verify credentials</string>
             </property>
             <property name="text">
-             <string>&amp;Authenticate with Twitter service</string>
+             <string>&amp;Authenticate with Twitter Service</string>
             </property>
            </widget>
           </item>
diff --git a/microblogs/twitter/twitterlistdialog_base.ui b/microblogs/twitter/twitterlistdialog_base.ui
index 25b6df0..3c4d832 100644
--- a/microblogs/twitter/twitterlistdialog_base.ui
+++ b/microblogs/twitter/twitterlistdialog_base.ui
@@ -72,10 +72,10 @@
     </rect>
    </property>
    <property name="toolTip">
-    <string>Load User Lists</string>
+    <string>Load user lists</string>
    </property>
    <property name="text">
-    <string>Load lists</string>
+    <string>Load Lists</string>
    </property>
   </widget>
  </widget>
diff --git a/plugins/betternotify/notifyprefs.ui b/plugins/betternotify/notifyprefs.ui
index 46f26bf..b049bad 100644
--- a/plugins/betternotify/notifyprefs.ui
+++ b/plugins/betternotify/notifyprefs.ui
@@ -120,7 +120,7 @@
          <item>
           <widget class="KPushButton" name="adjustPosition">
            <property name="text">
-            <string>Adjust notification's position</string>
+            <string>Adjust Notification's Position</string>
            </property>
           </widget>
          </item>
diff --git a/plugins/filter/addeditfilter_base.ui b/plugins/filter/addeditfilter_base.ui
index 0cfebd0..373316d 100644
--- a/plugins/filter/addeditfilter_base.ui
+++ b/plugins/filter/addeditfilter_base.ui
@@ -17,7 +17,7 @@
    <item row="0" column="0">
     <widget class="QLabel" name="label">
      <property name="text">
-      <string>Filter &amp;Field:</string>
+      <string>Filter &amp;field:</string>
      </property>
      <property name="buddy">
       <cstring>filterField</cstring>
@@ -30,7 +30,7 @@
    <item row="1" column="0">
     <widget class="QLabel" name="label_2">
      <property name="text">
-      <string>Filter &amp;Type:</string>
+      <string>Filter &amp;type:</string>
      </property>
      <property name="buddy">
       <cstring>filterType</cstring>
@@ -56,7 +56,7 @@
    <item row="4" column="0">
     <widget class="QLabel" name="label_4">
      <property name="text">
-      <string>Filter Action:</string>
+      <string>Filter action:</string>
      </property>
     </widget>
    </item>
diff --git a/plugins/filter/filterprefs.ui b/plugins/filter/filterprefs.ui
index 12415eb..abea591 100644
--- a/plugins/filter/filterprefs.ui
+++ b/plugins/filter/filterprefs.ui
@@ -121,7 +121,7 @@
           <string>You will see just replies came to you, or mentions you.</string>
          </property>
          <property name="text">
-          <string>Just show replies to me.</string>
+          <string>Just show replies to me</string>
          </property>
         </widget>
        </item>
@@ -131,7 +131,7 @@
           <string>You will see just replies between your friends.</string>
          </property>
          <property name="text">
-          <string>Just show replies to me and my friends.</string>
+          <string>Just show replies to me and my friends</string>
          </property>
         </widget>
        </item>
diff --git a/plugins/shorteners/bit_ly/bit_ly.cpp b/plugins/shorteners/bit_ly/bit_ly.cpp
index 80b2235..55c64c4 100644
--- a/plugins/shorteners/bit_ly/bit_ly.cpp
+++ b/plugins/shorteners/bit_ly/bit_ly.cpp
@@ -86,10 +86,10 @@ QString Bit_ly::shorten( const QString& url )
         if ( output.startsWith( QString( "RATE_LIMIT_EXCEEDED" ) ) )
              err = i18n( "Rate limit exceeded. Try another shortener." );
 
-        Choqok::NotifyManager::error( err, i18n( "bit.ly error" ) );
+        Choqok::NotifyManager::error( err, i18n( "bit.ly Error" ) );
     }
     else {
-        Choqok::NotifyManager::error( job->errorString(), i18n( "bit.ly error" ) );
+        Choqok::NotifyManager::error( job->errorString(), i18n( "bit.ly Error" ) );
     }
     return url;
 }
diff --git a/plugins/shorteners/bit_ly/bit_ly_config.cpp b/plugins/shorteners/bit_ly/bit_ly_config.cpp
index 01ed611..22b535a 100644
--- a/plugins/shorteners/bit_ly/bit_ly_config.cpp
+++ b/plugins/shorteners/bit_ly/bit_ly_config.cpp
@@ -129,7 +129,7 @@ void Bit_ly_Config::slotValidate()
              KMessageBox::information( this, i18n ( "You entered valid information." ) );
     }
     else {
-        Choqok::NotifyManager::error( job->errorString(), i18n( "bit.ly config error" ) );
+        Choqok::NotifyManager::error( job->errorString(), i18n( "bit.ly Config Error" ) );
     }
 
     ui.validate_button->setEnabled( true );
diff --git a/plugins/shorteners/bit_ly/bit_ly_prefs.ui b/plugins/shorteners/bit_ly/bit_ly_prefs.ui
index 73a1547..924454d 100644
--- a/plugins/shorteners/bit_ly/bit_ly_prefs.ui
+++ b/plugins/shorteners/bit_ly/bit_ly_prefs.ui
@@ -16,7 +16,7 @@
      <item row="0" column="0">
       <widget class="QLabel" name="login">
        <property name="text">
-        <string>Bit.ly Login:</string>
+        <string>Bit.ly login:</string>
        </property>
        <property name="alignment">
         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
@@ -29,7 +29,7 @@
      <item row="1" column="0">
       <widget class="QLabel" name="api_key">
        <property name="text">
-        <string>Bit.ly API Key:</string>
+        <string>Bit.ly API key:</string>
        </property>
        <property name="alignment">
         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
diff --git a/plugins/shorteners/goo_gl/goo_gl.cpp b/plugins/shorteners/goo_gl/goo_gl.cpp
index b71c6f2..b9cddbf 100644
--- a/plugins/shorteners/goo_gl/goo_gl.cpp
+++ b/plugins/shorteners/goo_gl/goo_gl.cpp
@@ -58,7 +58,7 @@ QString Goo_gl::shorten( const QString& url )
 
     KIO::StoredTransferJob *job = KIO::storedHttpPost ( req, KUrl("http://goo.gl/api/url"), \
KIO::HideProgressInfo ) ;    if (!job){
-      Choqok::NotifyManager::error( i18n("Error when creating job"), i18n("Goo.gl error") );
+      Choqok::NotifyManager::error( i18n("Error when creating job"), i18n("Goo.gl Error") );
       return url;
     }
     job->setMetaData(KIO::MetaData(metaData));
@@ -72,14 +72,14 @@ QString Goo_gl::shorten( const QString& url )
 
         if ( ok ) {
             if ( !map[ "error" ].toString().isEmpty() ) {
-                Choqok::NotifyManager::error( map[ "error" ].toString(), i18n("Goo.gl error") );
+                Choqok::NotifyManager::error( map[ "error" ].toString(), i18n("Goo.gl Error") );
                 return url;
             }
             return map[ "short_url" ].toString();
         }
-        Choqok::NotifyManager::error( i18n("Malformed response\n"), i18n("Goo.gl error")  );
+        Choqok::NotifyManager::error( i18n("Malformed response"), i18n("Goo.gl Error")  );
     } else {
-        Choqok::NotifyManager::error( i18n("Cannot create a short URL.\n%1", job->errorString()), \
i18n("Goo.gl error") ); +        Choqok::NotifyManager::error( i18n("Cannot create a short URL.\n%1", \
job->errorString()), i18n("Goo.gl Error") );  }
     return url;
 }
diff --git a/plugins/shorteners/is_gd/is_gd.cpp b/plugins/shorteners/is_gd/is_gd.cpp
index a40918d..d9eac60 100644
--- a/plugins/shorteners/is_gd/is_gd.cpp
+++ b/plugins/shorteners/is_gd/is_gd.cpp
@@ -72,7 +72,7 @@ QString Is_gd::shorten( const QString& url )
 
         if ( ok ) {
             if ( !map[ "errorcode" ].toString().isEmpty() ) {
-                Choqok::NotifyManager::error( map[ "errormessage" ].toString(), i18n("is.gd error") );
+                Choqok::NotifyManager::error( map[ "errormessage" ].toString(), i18n("is.gd Error") );
                 return url;
             }
             QString shorturl = map[ "shorturl" ].toString();
@@ -80,11 +80,11 @@ QString Is_gd::shorten( const QString& url )
                 return shorturl;
             }
         } else {
-            Choqok::NotifyManager::error( i18n("Malformed response\n"), i18n("is.gd error")  );
+            Choqok::NotifyManager::error( i18n("Malformed response"), i18n("is.gd Error")  );
         }
     }
     else {
-        Choqok::NotifyManager::error( i18n("Cannot create a short URL.\n%1", job->errorString()), \
i18n("is.gd error") ); +        Choqok::NotifyManager::error( i18n("Cannot create a short URL.\n%1", \
job->errorString()), i18n("is.gd Error") );  }
     return url;
 }
diff --git a/plugins/shorteners/three_ly/three_ly.cpp b/plugins/shorteners/three_ly/three_ly.cpp
index 7b26f3f..aad32a5 100644
--- a/plugins/shorteners/three_ly/three_ly.cpp
+++ b/plugins/shorteners/three_ly/three_ly.cpp
@@ -62,10 +62,10 @@ QString Three_ly::shorten( const QString& url )
         if( !output.isEmpty() ) {
             return output;
         }
-        Choqok::NotifyManager::error( QString( data ), i18n("3.ly error") );
+        Choqok::NotifyManager::error( QString( data ), i18n("3.ly Error") );
     }
     else {
-        Choqok::NotifyManager::error( i18n("Cannot create a short URL.\n%1", job->errorString()) );
+        Choqok::NotifyManager::error( i18n("Cannot create a short URL.\n%1", job->errorString()), \
i18n("3.ly Error") );  kDebug() << "Cannot create a shorten url.\t" << "KJob ERROR";
     }
     return url;
diff --git a/plugins/translator/translator.cpp b/plugins/translator/translator.cpp
index 6a9c130..8e25046 100644
--- a/plugins/translator/translator.cpp
+++ b/plugins/translator/translator.cpp
@@ -51,7 +51,7 @@ Translator::Translator(QObject* parent, const QList< QVariant >& )
     :Choqok::Plugin(MyPluginFactory::componentData(), parent)
 {
     kDebug();
-    translateAction = new KAction(i18n("Translate to ..."), this);
+    translateAction = new KAction(i18n("Translate to..."), this);
     Choqok::UI::PostWidget::addAction(translateAction);
     translateAction->setMenu(setupTranslateMenu());
     connect(TranslatorSettings::self(), SIGNAL(configChanged()), SLOT(slotUpdateMenu()));
diff --git a/plugins/uploaders/mobypicture/mobypictureconfig.cpp \
b/plugins/uploaders/mobypicture/mobypictureconfig.cpp index 7f8be86..de28529 100644
--- a/plugins/uploaders/mobypicture/mobypictureconfig.cpp
+++ b/plugins/uploaders/mobypicture/mobypictureconfig.cpp
@@ -84,7 +84,7 @@ void MobypictureConfig::save()
         kDebug() << MobypictureSettings::alias();
     } else {
         MobypictureSettings::setAlias ( QString() );
-        KMessageBox::error ( this, i18n ( "You have to configure at least one twitter account to use \
this plugin." ) ); +        KMessageBox::error ( this, i18n ( "You have to configure at least one Twitter \
account to use this plugin." ) );  }
     
     MobypictureSettings::setBasic(ui.cfg_basic->isChecked());
diff --git a/plugins/uploaders/posterous/posterousconfig.cpp \
b/plugins/uploaders/posterous/posterousconfig.cpp index f2ca006..309f549 100644
--- a/plugins/uploaders/posterous/posterousconfig.cpp
+++ b/plugins/uploaders/posterous/posterousconfig.cpp
@@ -84,7 +84,7 @@ void PosterousConfig::save()
         kDebug() << PosterousSettings::alias();
     } else {
         PosterousSettings::setAlias ( QString() );
-        KMessageBox::error ( this, i18n ( "You have to configure at least one twitter account to use \
this plugin." ) ); +        KMessageBox::error ( this, i18n ( "You have to configure at least one Twitter \
account to use this plugin." ) );  }
 
     PosterousSettings::setBasic ( ui.cfg_basic->isChecked() );
diff --git a/plugins/uploaders/twitgoo/twitgooconfig.cpp b/plugins/uploaders/twitgoo/twitgooconfig.cpp
index d9db152..a7bf340 100644
--- a/plugins/uploaders/twitgoo/twitgooconfig.cpp
+++ b/plugins/uploaders/twitgoo/twitgooconfig.cpp
@@ -74,7 +74,7 @@ void TwitgooConfig::save()
         kDebug() << TwitgooSettings::alias();
     } else {
         TwitgooSettings::setAlias ( QString() );
-        KMessageBox::error ( this, i18n ( "You have to configure at least one twitter account to use \
this plugin." ) ); +        KMessageBox::error ( this, i18n ( "You have to configure at least one Twitter \
account to use this plugin." ) );  }
     TwitgooSettings::setDirectLink ( ui.cfg_directLink->isChecked() );
     TwitgooSettings::self()->writeConfig();
diff --git a/plugins/uploaders/twitpic/twitpicconfig.cpp b/plugins/uploaders/twitpic/twitpicconfig.cpp
index 3783858..d788b38 100644
--- a/plugins/uploaders/twitpic/twitpicconfig.cpp
+++ b/plugins/uploaders/twitpic/twitpicconfig.cpp
@@ -74,7 +74,7 @@ void TwitpicConfig::save()
         kDebug()<<TwitpicSettings::alias();
     } else {
         TwitpicSettings::setAlias(QString());
-        KMessageBox::error(this, i18n("You have to configure at least one twitter account to use this \
plugin.")); +        KMessageBox::error(this, i18n("You have to configure at least one Twitter account to \
use this plugin."));  }
     TwitpicSettings::self()->writeConfig();
     KCModule::save();


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic