1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 00:24:12 +02:00

Give things better and more consistent description text

This commit is contained in:
Jason Herskowitz
2014-09-21 17:17:18 -04:00
parent aa02fdb01f
commit bc45cbdc93
4 changed files with 4 additions and 4 deletions

View File

@@ -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 );
};

View File

@@ -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; }

View File

@@ -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 ); }

View File

@@ -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;