diff --git a/src/accounts/google/GoogleWrapper.h b/src/accounts/google/GoogleWrapper.h index 33487eef4..0bb47587a 100644 --- a/src/accounts/google/GoogleWrapper.h +++ b/src/accounts/google/GoogleWrapper.h @@ -41,7 +41,7 @@ public: virtual QString prettyName() const { return "Google"; } virtual QString factoryId() const { return "googleaccount"; } - QString description() const { return tr( "Connect to Google Talk to find your friends" ); } + QString description() const { return tr( "Login to directly connect to your Google Talk contacts that also use Tomahawk." ); } virtual QPixmap icon() const; virtual Account* createAccount( const QString& pluginId ); }; diff --git a/src/accounts/hatchet/account/HatchetAccount.h b/src/accounts/hatchet/account/HatchetAccount.h index 5034de69c..779b4dbb0 100644 --- a/src/accounts/hatchet/account/HatchetAccount.h +++ b/src/accounts/hatchet/account/HatchetAccount.h @@ -48,7 +48,7 @@ public: virtual QString factoryId() const { return "hatchetaccount"; } virtual QString prettyName() const { return "Hatchet"; } - virtual QString description() const { return tr( "Connect to your Hatchet account" ); } + virtual QString description() const { return tr( "Connect to your Hatchet account to record you playback history, sync your playlists to Android and more." ); } virtual bool isUnique() const { return true; } AccountTypes types() const { return AccountTypes( SipType ); } // virtual bool allowUserCreation() const { return false; } diff --git a/src/accounts/xmpp/XmppAccount.h b/src/accounts/xmpp/XmppAccount.h index d7752db56..33ae1fa23 100644 --- a/src/accounts/xmpp/XmppAccount.h +++ b/src/accounts/xmpp/XmppAccount.h @@ -50,7 +50,7 @@ public: virtual ~XmppAccountFactory() {} QString prettyName() const { return "Jabber (XMPP)"; } - QString description() const { return tr( "Log on to your Jabber/XMPP account to connect to your friends" ); } + QString description() const { return tr( "Login to connect to your Jabber/XMPP contacts that also use Tomahawk." ); } QString factoryId() const { return "xmppaccount"; } QPixmap icon() const { return QPixmap( ":/xmpp-account/xmpp-icon.png" ); } AccountTypes types() const { return AccountTypes( SipType | StatusPushType ); } diff --git a/src/accounts/zeroconf/ZeroconfAccount.h b/src/accounts/zeroconf/ZeroconfAccount.h index 59a14e07d..a08ce414a 100644 --- a/src/accounts/zeroconf/ZeroconfAccount.h +++ b/src/accounts/zeroconf/ZeroconfAccount.h @@ -43,7 +43,7 @@ public: virtual QString factoryId() const { return "zeroconfaccount"; } virtual QString prettyName() const { return tr( "Local Network" ); } - QString description() const { return tr( "Automatically connect to Tomahawks on the local network" ); } + QString description() const { return tr( "Automatically connect to Tomahawk users on the same local network." ); } virtual bool isUnique() const { return true; } AccountTypes types() const { return AccountTypes( SipType ); }; virtual QPixmap icon() const;