aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/CommandLineOptions/StatusOption/translations/status_plugin_pt.ts
Commit message (Expand)AuthorAgeFilesLines
* updated Portuguese translation (Sérgio Marques)trialuser022015-03-091-1/+1
* updated .ts filestrialuser022015-03-091-11/+16
* updated .ts filestrialuser022014-09-251-15/+15
* updated Portuguese translation (Sérgio Marques)trialuser022014-09-171-1/+1
* added Portuguese translation (Sérgio Marques)trialuser022014-09-131-0/+97
* Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef DECODERAACFACTORY_H #define DECODERAACFACTORY_H #include <qmmp/decoderfactory.h> class DecoderAACFactory : public QObject, DecoderFactory { Q_OBJECT Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0") Q_INTERFACES(DecoderFactory) public: bool canDecode(QIODevice *input) const override; DecoderProperties properties() const override; Decoder *create(const QString&, QIODevice *) override; QList<TrackInfo *> createPlayList(const QString &path, TrackInfo::Parts parts, QStringList *) override; MetaDataModel* createMetaDataModel(const QString &path, bool readOnly) override; void showSettings(QWidget *parent) override; void showAbout(QWidget *parent) override; QString translation() const override; }; #endif