aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Output/jack/translations/jack_plugin_lt.ts
blob: bd24588f673aa60476234a328c57864b95cc3566 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="lt">
<context>
    <name>OutputJACKFactory</name>
    <message>
        <location filename="../outputjackfactory.cpp" line="30"/>
        <source>JACK Plugin</source>
        <translation>JACK Įskiepis</translation>
    </message>
    <message>
        <location filename="../outputjackfactory.cpp" line="53"/>
        <source>About Jack Output Plugin</source>
        <translation>Apie JACK išvesties įskiepį</translation>
    </message>
    <message>
        <location filename="../outputjackfactory.cpp" line="54"/>
        <source>Qmmp Jack Output Plugin</source>
        <translation>Qmmp Jack išvesties įskiepis</translation>
    </message>
    <message>
        <location filename="../outputjackfactory.cpp" line="55"/>
        <source>Written by: Yuriy Zhuravlev &lt;slalkerg@gmail.com&gt;</source>
        <translation>Sukūrė: Yuriy Zhuravlev &lt;slalkerg@gmail.com&gt;</translation>
    </message>
</context>
</TS>
* * * * 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., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef SETTINGSDIALOG_H #define SETTINGSDIALOG_H #include <QDialog> #include "ui_settingsdialog.h" /** @author Ilya Kotov <forkotov02@hotmail.ru> */ class SettingsDialog : public QDialog { Q_OBJECT public: SettingsDialog(QWidget *parent = 0); ~SettingsDialog(); private slots: void writeSettings(); void setPreamp(int); void exec(QAbstractButton *); private: Ui::SettingsDialog ui; }; #endif