mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-11 08:34:34 +02:00
Give things better and more consistent description text
This commit is contained in:
@@ -41,7 +41,7 @@ public:
|
|||||||
|
|
||||||
virtual QString prettyName() const { return "Google"; }
|
virtual QString prettyName() const { return "Google"; }
|
||||||
virtual QString factoryId() const { return "googleaccount"; }
|
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 QPixmap icon() const;
|
||||||
virtual Account* createAccount( const QString& pluginId );
|
virtual Account* createAccount( const QString& pluginId );
|
||||||
};
|
};
|
||||||
|
@@ -48,7 +48,7 @@ public:
|
|||||||
|
|
||||||
virtual QString factoryId() const { return "hatchetaccount"; }
|
virtual QString factoryId() const { return "hatchetaccount"; }
|
||||||
virtual QString prettyName() const { return "Hatchet"; }
|
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; }
|
virtual bool isUnique() const { return true; }
|
||||||
AccountTypes types() const { return AccountTypes( SipType ); }
|
AccountTypes types() const { return AccountTypes( SipType ); }
|
||||||
// virtual bool allowUserCreation() const { return false; }
|
// virtual bool allowUserCreation() const { return false; }
|
||||||
|
@@ -50,7 +50,7 @@ public:
|
|||||||
virtual ~XmppAccountFactory() {}
|
virtual ~XmppAccountFactory() {}
|
||||||
|
|
||||||
QString prettyName() const { return "Jabber (XMPP)"; }
|
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"; }
|
QString factoryId() const { return "xmppaccount"; }
|
||||||
QPixmap icon() const { return QPixmap( ":/xmpp-account/xmpp-icon.png" ); }
|
QPixmap icon() const { return QPixmap( ":/xmpp-account/xmpp-icon.png" ); }
|
||||||
AccountTypes types() const { return AccountTypes( SipType | StatusPushType ); }
|
AccountTypes types() const { return AccountTypes( SipType | StatusPushType ); }
|
||||||
|
@@ -43,7 +43,7 @@ public:
|
|||||||
|
|
||||||
virtual QString factoryId() const { return "zeroconfaccount"; }
|
virtual QString factoryId() const { return "zeroconfaccount"; }
|
||||||
virtual QString prettyName() const { return tr( "Local Network" ); }
|
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; }
|
virtual bool isUnique() const { return true; }
|
||||||
AccountTypes types() const { return AccountTypes( SipType ); };
|
AccountTypes types() const { return AccountTypes( SipType ); };
|
||||||
virtual QPixmap icon() const;
|
virtual QPixmap icon() const;
|
||||||
|
Reference in New Issue
Block a user