aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/ffmpeg/translations/ffmpeg_plugin_lt.ts
Commit message (Expand)AuthorAgeFilesLines
* updated Lithuanian translation (author: Algirdas Butkus)trialuser022012-08-011-6/+6
* updated linguist filestrialuser022012-06-271-4/+4
* updated linguist filestrialuser022012-01-171-14/+22
* added vqf supporttrialuser022011-12-011-14/+19
* EAC3, DTS, and Dolby TrueHD support (patch by Makis Kalofolias)trialuser022011-08-151-7/+17
* fixed translationstrialuser022011-05-201-10/+5
* updated linguist filestrialuser022011-05-121-6/+6
* updated translation filestrialuser022011-05-101-3/+3
* updated Chinese Traditional and Chinese Simplified translations (author: lon)trialuser022011-05-071-6/+6
* ac3 supporttrialuser022011-04-251-6/+11
* updated *.ts filestrialuser022011-04-151-14/+14
* updated Lithuanian translation (author: Algirdas Butkus)trialuser022011-03-141-1/+1
* fixed typostrialuser022011-03-031-1/+1
* some api changes, partial mpris 2.0 implementationtrialuser022010-11-241-6/+6
* added shorten audio formattrialuser022010-05-111-6/+11
* added mms plugin (experimental) (Closes issue 273)trialuser022010-04-051-6/+6
* updated *.ts filestrialuser022010-01-061-16/+16
* updated Lithuanian translation (author: Algirdas Butkus)trialuser022009-12-121-16/+16
* fixed typotrialuser022009-09-291-1/+1
* ported ffmpeg plugin (Closes issue 170)trialuser022009-09-231-23/+23
* ffmpeg plugin: added unified details dialogtrialuser022009-08-081-90/+21
* added Lithuanian translation (author: Algirdas Butkus)trialuser022009-07-271-0/+202
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65




















                                                                             
                      
                           






                                                      
                                 

                                  
                                         







                                            
                                                        
 
                                      



                                           




                                                                                                 




                                                          
                                              



                                                        
                                 
/***************************************************************************
 *   Copyright (C) 2009 by Ilya Kotov                                      *
 *   forkotov02@hotmail.ru                                                 *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/

#include <QtGui>
#include <qmmp/qmmp.h>
#include "settingsdialog.h"
#include "halplugin.h"
#include "halfactory.h"

const GeneralProperties HalFactory::properties() const
{
    GeneralProperties properties;
    properties.name = tr("HAL Plugin");
    properties.shortName = "hal";
    properties.hasAbout = true;
    properties.hasSettings = true;
    properties.visibilityControl = false;
    return properties;
}

General *HalFactory::create(QObject *parent)
{
    return new HalPlugin(parent);
}

QDialog *HalFactory::createConfigDialog(QWidget *parent)
{
    return new SettingsDialog(parent);
}

void HalFactory::showAbout(QWidget *parent)
{
    QMessageBox::about (parent, tr("About HAL Plugin"),
                        tr("Qmmp HAL Plugin") + "\n" +
                        tr("This plugin provides removable devices detection using HAL") + "\n" +
                        tr("Writen by: Ilya Kotov <forkotov02@hotmail.ru>") + "\n" +
                        tr("Based on Solid (KDE hardware library)"));
}

QTranslator *HalFactory::createTranslator(QObject *parent)
{
    QTranslator *translator = new QTranslator(parent);
    QString locale = Qmmp::systemLanguageID();
    translator->load(QString(":/hal_plugin_") + locale);
    return translator;
}

Q_EXPORT_PLUGIN2(hal, HalFactory)